diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-10 19:17:19 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-10 19:17:19 -0500 |
commit | b19265bfa91e55c564b75aadcabd212ac89cf349 (patch) | |
tree | fab3a34fc96d52fc634ca0d507fdbaf5d3546b8e /include/entities.hpp | |
parent | 1f762f82f929cfd21222739a627a32e6199c34a9 (diff) |
the revival, entityx
Diffstat (limited to 'include/entities.hpp')
-rw-r--r-- | include/entities.hpp | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/include/entities.hpp b/include/entities.hpp index 1bb2924..5f85c26 100644 --- a/include/entities.hpp +++ b/include/entities.hpp @@ -134,7 +134,7 @@ public: belongsTo = false; following = nullptr; - flame = false; + flame = false; } Light(vec2 l, float r, Color c) @@ -159,7 +159,7 @@ public: { flame = true; } - + void createFromXML(XMLElement *e); }; @@ -303,7 +303,7 @@ public: virtual void createFromXML(XMLElement *e, World *w=nullptr) =0; virtual void saveToXML(void) =0; -/* Entity +/* Entity ** * Forces the given entity to follow this one. @@ -498,6 +498,26 @@ constexpr Merchant *Merchantp(Entity *e) { return (Merchant *)e; } +#include <entityx/entityx.h> +#include <events.hpp> + +class PlayerSystem : public entityx::System<PlayerSystem>, public entityx::Receiver<PlayerSystem> { +private: + Player **m_Player; + bool m_MoveLeft, m_MoveRight; + +public: + PlayerSystem(Player **p) + : m_Player(p), m_MoveLeft(false), m_MoveRight(false) {} + + void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; + + void configure(entityx::EventManager &ev); + void receive(const KeyDownEvent &kde); + void receive(const KeyUpEvent &kue); +}; + + #endif // ENTITIES_H /** |