From fa802f8fbc62910b37002bcdd2f7c110f488e392 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 17 Dec 2016 20:13:43 -0500 Subject: ui cleaning, docs --- include/player.hpp | 44 ++++++++++++++++++++++++++++++++++++++++++++ include/ui.hpp | 8 +++----- 2 files changed, 47 insertions(+), 5 deletions(-) (limited to 'include') 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 #include +/** + * 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, public entityx::Receiver { 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().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(player.id())->width; } }; diff --git a/include/ui.hpp b/include/ui.hpp index 8d517c7..519d259 100644 --- a/include/ui.hpp +++ b/include/ui.hpp @@ -39,8 +39,8 @@ ** The UI namespace ** --------------------------------------------------------------------------*/ -void setControl(unsigned int index, SDL_Keycode key); -SDL_Keycode getControl(unsigned int index); +void setControl(int index, SDL_Keycode key); +SDL_Keycode getControl(int index); #include @@ -92,7 +92,7 @@ namespace ui { void setFontFace(const char *ttf); void setFontSize(unsigned int size); - void setFontColor(unsigned char r,unsigned char g,unsigned char b, unsigned char a); + void setFontColor(int r, int g, int b, int a); void setFontZ(float z); /* @@ -145,8 +145,6 @@ namespace ui { void drawFade(void); void fadeUpdate(void); - void quitGame(); - /* * Toggle the black overlay thing. */ -- cgit v1.2.3