diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/components.hpp | 14 | ||||
-rw-r--r-- | include/world.hpp | 22 |
2 files changed, 19 insertions, 17 deletions
diff --git a/include/components.hpp b/include/components.hpp index 34a1906..5a638de 100644 --- a/include/components.hpp +++ b/include/components.hpp @@ -60,6 +60,20 @@ struct Physics { }; /** + * @struct Health + * @brief Gives and entity health and stuff. + */ +struct Health { + /** + * Constructor that sets the variables, with 0 health as default. + */ + Health(int h = 0, int m = 0) : health(h), maxHealth(m) {} + + int health; + int maxHealth; +}; + +/** * @struct Solid * @brief Allows an entity to collide with other objects. * When an entity has this component it can collide with the world and other objects. diff --git a/include/world.hpp b/include/world.hpp index a99affa..a574401 100644 --- a/include/world.hpp +++ b/include/world.hpp @@ -175,6 +175,11 @@ public: { return weather; } void setWeather(const std::string &s); + + void singleDetect(Entity *e, entityx::TimeDelta dt); + void detect(entityx::TimeDelta dt); + + void detect2(entityx::TimeDelta dt); }; @@ -254,11 +259,6 @@ public: std::vector<Entity *> entityPending; /** - * Handles death, gravity, etc. for a single entity - */ - virtual void singleDetect(Entity *e); - - /** * Destroys entities and clears vectors that contain them. * This function is only called in the world destructor. */ @@ -307,18 +307,6 @@ public: virtual void draw(Player *p); /** - * Handles physics for all entities and the player. - * - * @see singleDetect() - */ - void detect(Player *p); - - /** - * Updates entity positions, time of day, and music. - */ - void update(Player *p, unsigned int delta); - - /** * Gets the width of the world, presumably in pixels. * TODO */ |