]> git.localhorst.tv Git - gworm.git/blob - src/world/World.h
basic entities
[gworm.git] / src / world / World.h
1 #ifndef GWORM_WORLD_H_
2 #define GWORM_WORLD_H_
3
4 #include "Entity.h"
5 #include "../graphics/Color.h"
6 #include "../graphics/Vector.h"
7
8 #include <list>
9 #include <vector>
10
11
12 namespace gworm {
13
14 class World {
15
16 public:
17         World(Vector<int> size);
18
19 public:
20         Vector<int> Size() const { return size; }
21
22 public:
23         void Update(float dt);
24
25         int Index(Vector<int> pos) const { return pos.x * size.y + pos.y; }
26
27         float MassAt(Vector<int> pos) const { return masses[Index(pos)]; }
28         void SetMass(Vector<int> pos, float m) { masses[Index(pos)] = m; }
29         Color ColorAt(Vector<int> pos) const { return colors[Index(pos)]; }
30         void SetColor(Vector<int> pos, Color c) { colors[Index(pos)] = c; }
31
32         const std::list<Entity> &Entities() const { return entities; }
33         Entity &AddEntity(const Entity &);
34
35         Vector<float> ForceAt(Vector<float>, float m) const;
36
37 private:
38         Vector<int> size;
39         int count;
40
41         std::vector<float> masses;
42         std::vector<Color> colors;
43
44         std::list<Entity> entities;
45
46 };
47
48 }
49
50 #endif