diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-20 20:16:21 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-20 20:16:21 -0500 |
commit | 17b4275fae1f6c5642156c73784622772d235c42 (patch) | |
tree | 73028c2a8193b2fd983e4a2e04dd2dcc35cff960 /include | |
parent | 7a4bc1d9e6b73471cb2e20d2ab0611a507979f30 (diff) |
playersystem, move cat
Diffstat (limited to 'include')
-rw-r--r-- | include/engine.hpp | 2 | ||||
-rw-r--r-- | include/player.hpp | 32 |
2 files changed, 33 insertions, 1 deletions
diff --git a/include/engine.hpp b/include/engine.hpp index e564691..d4b1e34 100644 --- a/include/engine.hpp +++ b/include/engine.hpp @@ -51,7 +51,7 @@ namespace game { inline void endGame(void) { events.emit<GameEndEvent>(); } - + extern SpriteLoader sprite_l; } 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_ |