aboutsummaryrefslogtreecommitdiffstats
path: root/include/player.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-10-20 20:16:21 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-10-20 20:16:21 -0500
commit17b4275fae1f6c5642156c73784622772d235c42 (patch)
tree73028c2a8193b2fd983e4a2e04dd2dcc35cff960 /include/player.hpp
parent7a4bc1d9e6b73471cb2e20d2ab0611a507979f30 (diff)
playersystem, move cat
Diffstat (limited to 'include/player.hpp')
-rw-r--r--include/player.hpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/include/player.hpp b/include/player.hpp
new file mode 100644
index 0000000..430173f
--- /dev/null
+++ b/include/player.hpp
@@ -0,0 +1,32 @@
+#ifndef PLAYER_HPP_
+#define PLAYER_HPP_
+
+#include <entityx/entityx.h>
+
+#include <events.hpp>
+
+class PlayerSystem : public entityx::System<PlayerSystem>, public entityx::Receiver<PlayerSystem> {
+private:
+ entityx::Entity::Id pid;
+
+ bool moveLeft;
+ bool moveRight;
+
+ float speed;
+
+public:
+ PlayerSystem(void)
+ : moveLeft(false), moveRight(false), speed(1.0f) {}
+
+ void configure(entityx::EventManager&);
+
+ void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override;
+
+ void receive(const KeyUpEvent&);
+ void receive(const KeyDownEvent&);
+
+ inline void setPlayer(const entityx::Entity& e)
+ { pid = e.id(); }
+};
+
+#endif // PLAYER_HPP_