aboutsummaryrefslogtreecommitdiffstats
path: root/include/entities.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/entities.hpp')
-rw-r--r--include/entities.hpp26
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
/**