aboutsummaryrefslogtreecommitdiffstats
path: root/include/player.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-04-29 18:28:28 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-04-29 18:28:28 -0400
commit40d164ea3d8437cd5a06a06d5b89bd938d3dd906 (patch)
treeec22853ca9a18706a3318ea9d16464d9a36a7419 /include/player.hpp
parent18380eb2e6443c2736b4958b01e7ba2fe2cfa318 (diff)
no more getSystem
Diffstat (limited to 'include/player.hpp')
-rw-r--r--include/player.hpp23
1 files changed, 11 insertions, 12 deletions
diff --git a/include/player.hpp b/include/player.hpp
index efac984..17ce2c1 100644
--- a/include/player.hpp
+++ b/include/player.hpp
@@ -23,22 +23,21 @@ constexpr const float PLAYER_SPEED_CONSTANT = 0.03f;
*/
class PlayerSystem : public entityx::System<PlayerSystem>, public entityx::Receiver<PlayerSystem> {
private:
- entityx::Entity player;
+ static entityx::Entity player;
- bool moveLeft;
- bool moveRight;
-
- float speed;
+ static bool moveLeft;
+ static bool moveRight;
+ static float speed;
public:
- PlayerSystem(void)
- : moveLeft(false), moveRight(false), speed(1.0f) {}
+ PlayerSystem(void);
/**
* Creates the player, adding it to the entity system.
*/
- void create(void);
- inline auto getId(void) const { return player.id(); }
+ static void create(void);
+ static inline auto getId(void)
+ { return player.id(); }
/**
* Configures events for use with the entity system.
@@ -68,20 +67,20 @@ public:
* Gets the player's position.
* @return the player's position
*/
- vec2 getPosition(void) const;
+ static vec2 getPosition(void);
/**
* Sets the player's X coordinate.
* @param x the x coordinate to give the player
*/
- inline void setX(const float& x)
+ static inline void setX(const float& x)
{ player.component<Position>().get()->x = x; }
/**
* Gets the width of the player.
* @return the player's width, according to its sprite
*/
- inline float getWidth(void) const
+ static inline float getWidth(void)
{ return game::entities.component<Solid>(player.id())->width; }
};