diff options
author | Andy <drumsetmonkey@gmail.com> | 2016-12-23 08:42:15 -0500 |
---|---|---|
committer | Andy <drumsetmonkey@gmail.com> | 2016-12-23 08:42:15 -0500 |
commit | d7d1b397197893f0ce49b28f762711b7a9ef1087 (patch) | |
tree | 6a14f9daf59cb1640f09e7f82c6325d93d0a62dc /include/player.hpp | |
parent | 691411cdb214178f2d10ab589943993039fe080e (diff) | |
parent | 6dd6d03bb1af3c1c482a67355446998eccc3288c (diff) |
Sprites are good. Merged.
Diffstat (limited to 'include/player.hpp')
-rw-r--r-- | include/player.hpp | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/include/player.hpp b/include/player.hpp index 59d6368..85dc821 100644 --- a/include/player.hpp +++ b/include/player.hpp @@ -1,3 +1,8 @@ +/** + * @file player.hpp + * @brief The player system + */ + #ifndef PLAYER_HPP_ #define PLAYER_HPP_ @@ -8,8 +13,15 @@ #include <components.hpp> #include <common.hpp> +/** + * The constant velocity the player is given when moved with the arrow keys. + */ constexpr const float PLAYER_SPEED_CONSTANT = 0.15f; +/** + * @class PlayerSystem + * Controls a player, with keyboard and stuff. + */ class PlayerSystem : public entityx::System<PlayerSystem>, public entityx::Receiver<PlayerSystem> { private: entityx::Entity player; @@ -23,18 +35,50 @@ public: PlayerSystem(void) : moveLeft(false), moveRight(false), speed(1.0f) {} + /** + * Creates the player, adding it to the entity system. + */ void create(void); + /** + * Configures events for use with the entity system. + */ void configure(entityx::EventManager&); + /** + * Updates the player, mainly the player's velocity. + */ void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; + /** + * Handles key up events for the player. + * @param kue key up event data + */ void receive(const KeyUpEvent&); + + /** + * Handles key down events for the player. + * @param kde key down event data + */ void receive(const KeyDownEvent&); + /** + * Gets the player's position. + * @return the player's position + */ vec2 getPosition(void) const; + + /** + * Sets the player's X coordinate. + * @param x the x coordinate to give the player + */ 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 { return game::entities.component<Solid>(player.id())->width; } }; |