diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-12-21 21:40:05 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-12-21 21:40:05 -0500 |
commit | ae9ceadaa184f5e9775135ae264c8bbffd4efa9d (patch) | |
tree | 3707642bda2646ede6d4c77f33b9d8a0326b0636 /include | |
parent | a44540462145212f7f2cc3ea2690308c58f60358 (diff) | |
parent | fa802f8fbc62910b37002bcdd2f7c110f488e392 (diff) |
Merge branch 'master' of https://github.com/tcsullivan/gamedev
Diffstat (limited to 'include')
-rw-r--r-- | include/brice.hpp | 39 | ||||
-rw-r--r-- | include/common.hpp | 5 | ||||
-rw-r--r-- | include/components.hpp | 23 | ||||
-rw-r--r-- | include/config.hpp | 49 | ||||
-rw-r--r-- | include/engine.hpp | 58 | ||||
-rw-r--r-- | include/gametime.hpp | 36 | ||||
-rw-r--r-- | include/player.hpp | 44 | ||||
-rw-r--r-- | include/save_util.hpp | 36 | ||||
-rw-r--r-- | include/shader_utils.hpp | 3 | ||||
-rw-r--r-- | include/ui.hpp | 8 | ||||
-rw-r--r-- | include/ui_quest.hpp | 19 |
11 files changed, 255 insertions, 65 deletions
diff --git a/include/brice.hpp b/include/brice.hpp index dc3ea96..1c4eccf 100644 --- a/include/brice.hpp +++ b/include/brice.hpp @@ -1,20 +1,59 @@ +/** + * @file brice.hpp + * @brief A system for saving player information. + */ + #ifndef BRICE_H_ #define BRICE_H_ #include <string> namespace game { + + /** + * Allows the player to jump, if set to true. + */ extern bool canJump; + + /** + * Allows the player to sprint, if set to true. + */ extern bool canSprint; + /** + * Gets a value from the saved brice and returns it. + * @param id the id of the value + * @return the string value + */ std::string getValue(const std::string& id); + /** + * Sets a value in the brice, creating it if it doesn't exist. + * @param id the id of the value + * @param value the value + * @return true if the value was updated, not created + */ bool setValue(const std::string& id, const std::string& value); + /** + * Resets the brice to it's default values. + * Note: these are hardcoded into the program. + */ void briceClear(void); + + /** + * Saves the brice to it's file (brice.dat). + */ void briceSave(void); + + /** + * Loads the brice from it's file (brice.dat). + */ void briceLoad(void); + /** + * Reloads the brice. + */ void briceUpdate(void); } diff --git a/include/common.hpp b/include/common.hpp index df41aa1..7028296 100644 --- a/include/common.hpp +++ b/include/common.hpp @@ -58,10 +58,7 @@ typedef unsigned int uint; #define BREAKPOINT __asm__("int $3") -inline const char* coalesce(const char * p1, const char * p2) -{ - return ((p1 == nullptr) ? p2 : p1); -} +#define coalesce(v1, v2) ((v1 != nullptr) ? v1 : v2) /** * Creates a coordinate of integers. diff --git a/include/components.hpp b/include/components.hpp index f6521f8..bbf153a 100644 --- a/include/components.hpp +++ b/include/components.hpp @@ -147,7 +147,7 @@ struct Sprite { Sprite(bool left = false) : faceLeft(left) {} - std::vector<std::pair<SpriteData, vec2>> getSprite() { + Frame getSprite() { return sprite; } @@ -214,21 +214,24 @@ struct Animate { // COMMENT std::vector<Frame> frame; // COMMENT - std::vector<Frame>::iterator currentFrame; + uint index; Animate(){ - currentFrame = std::begin(frame); + index = 0; } // COMMENT Frame nextFrame() { - std::rotate(frame.begin(), frame.begin()+1, frame.end()); - return frame[0]; - /*if (currentFrame < std::end(frame)) - return (*currentFrame++); - else - currentFrame = std::begin(frame); - return (*currentFrame);*/ + if (index < frame.size() - 1) { + index++; + } else { + index = 0; + } + return frame.at(index); + } + + Frame firstFrame() { + return frame.front(); } }; diff --git a/include/config.hpp b/include/config.hpp index bc9d052..908c376 100644 --- a/include/config.hpp +++ b/include/config.hpp @@ -1,23 +1,72 @@ +/** + * @file config.hpp + * @brief Functions for loading/saving game settings. + */ + #ifndef CONFIG_H #define CONFIG_H #include <string> namespace game { + /** + * The size of an HLINE, according to the save file. + * This is the default "unit of measurement" in the game. Drawing scales to + * this, and it is used in game logic. + */ extern unsigned int HLINE; + + /** + * The width of the screen, in pixels. + */ extern unsigned int SCREEN_WIDTH; + + /** + * The height of the screen, in pixels. + */ extern unsigned int SCREEN_HEIGHT; + + /** + * The window is fullscreen if this is true. + */ extern bool FULLSCREEN; namespace config { + /** + * The current volume level of the master channel. + * Volumes are percentages, 0 to 100. + */ extern float VOLUME_MASTER; + + /** + * Volume level of the background music (BGM). + */ extern float VOLUME_MUSIC; + + /** + * Volume level of game sound effects. + */ extern float VOLUME_SFX; + /** + * The path of the folder to load world XML files from. + */ extern std::string xmlFolder; + /** + * Reads the settings file (config/settings.xml) into the game. + * Default values are hardcoded in (see src/config.cpp). + */ void read(void); + + /** + * Updates settings with the current values. + */ void update(void); + + /** + * Saves the current settings to the settings file. + */ void save(void); } } diff --git a/include/engine.hpp b/include/engine.hpp index 6e0c5a0..52569e7 100644 --- a/include/engine.hpp +++ b/include/engine.hpp @@ -1,8 +1,13 @@ +/** + * @file engine.hpp + * @brief The main game engine, and functions to assist it. + */ + #ifndef ENGINE_HPP_ #define ENGINE_HPP_ #include <entityx/entityx.h> -#include "entityx/deps/Dependencies.h" +#include <entityx/deps/Dependencies.h> #include <texture.hpp> #include <components.hpp> @@ -10,27 +15,55 @@ //game::engine::Systems->add<entityx::deps::Dependency<Visible, Sprite>>(); +/** + * @class Engine + * The main game engine class. Only one instance of this should be created, it + * handles everything game-related. + */ class Engine : public entityx::Receiver<Engine> { public: + /** + * A flag to indicate if a thread should continue to run. + */ bool shouldRun; + /** + * Handles game systems. + */ entityx::SystemManager systems; explicit Engine(void); + /** + * Initializes the game engine, and all systems used within it. + */ void init(void); + + /** + * Updates all rendering systems. + * @param dt the delta time + */ void render(entityx::TimeDelta dt); + + /** + * Updates all logic systems. + * @param dt the delta time + */ void update(entityx::TimeDelta dt); + /** + * A shortcut to get a system, for calling system-specific functions. + * Takes the type of the desired system. + */ template<typename T> inline T* getSystem(void) { return dynamic_cast<T*>(systems.system<T>().get()); } - /*void configure(entityx::EventManager &ev) { - (void)ev; - }*/ - + /** + * A handler for the game ending event. + * @param gee game end event data + */ inline void receive(const GameEndEvent &gee) { shouldRun = !(gee.really); } @@ -38,16 +71,27 @@ public: namespace game { + /** + * Handles all game events. + */ extern entityx::EventManager events; + + /** + * Handles entity data. + */ extern entityx::EntityManager entities; + /** + * An instance of the main game engine. + */ extern Engine engine; + /** + * Ends the game. + */ inline void endGame(void) { events.emit<GameEndEvent>(); } - - //extern SpriteLoader sprite_l; } diff --git a/include/gametime.hpp b/include/gametime.hpp index a809ef9..988533a 100644 --- a/include/gametime.hpp +++ b/include/gametime.hpp @@ -1,16 +1,52 @@ +/** + * @file gametime.hpp + * @brief Handles time related operations + */ + #ifndef GAMETIME_H_ #define GAMETIME_H_ namespace game { namespace time { + /** + * Sets the game's tick count to the desired amount. + * @param t desired tick count + */ void setTickCount(unsigned int t); + + /** + * Gets the current tick count. + * @return the tick count + */ unsigned int getTickCount(void); + + /** + * Calculates and returns the delta time. + * @return the delta time + */ unsigned int getDeltaTime(void); + /** + * Increments the game's tick count. + */ void tick(void); + + /** + * Increments the game's tick count by the given amount of ticks. + * @param ticks the number of ticks to add + */ void tick(unsigned int ticks); + + /** + * Determines if a tick has passed since the last call to this function. + * @return if a tick has passed + */ bool tickHasPassed(void); + /** + * Handles time updating. + * This should be called from the game's main loop. + */ void mainLoopHandler(void); } } 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; } }; diff --git a/include/save_util.hpp b/include/save_util.hpp deleted file mode 100644 index 3d5cf54..0000000 --- a/include/save_util.hpp +++ /dev/null @@ -1,36 +0,0 @@ -#ifndef SAVE_UTIL_H_ -#define SAVE_UTIL_H_ - -/* - * Save macros. - */ - -#define E_SAVE_COORDS { xmle->SetAttribute("x", loc.x); xmle->SetAttribute("y", loc.y); } - -#define E_SAVE_HEALTH xmle->SetAttribute("health", health); - -/* - * Load macos. - */ - -#define E_LOAD_COORDS(yy) { float n; \ - if (xmle->QueryFloatAttribute("x", &n) == XML_NO_ERROR) \ - spawn(n, yy); \ - else \ - spawn(xmle->FloatAttribute("spawnx"), 100); \ - \ - if (xmle->QueryFloatAttribute("y", &n) == XML_NO_ERROR) \ - loc.y = n; } - -#define E_LOAD_HEALTH { float n; \ - \ - if (xmle->QueryFloatAttribute("maxHealth", &n) != XML_NO_ERROR) \ - maxHealth = 1; \ - \ - if (xmle->QueryFloatAttribute("health", &n) == XML_NO_ERROR) \ - health = n; \ - else \ - health = maxHealth; } - - -#endif // SAVE_UTIL_H_ diff --git a/include/shader_utils.hpp b/include/shader_utils.hpp index 243b3d4..08ca7b3 100644 --- a/include/shader_utils.hpp +++ b/include/shader_utils.hpp @@ -1,8 +1,11 @@ /** + * @file shader_utils.hpp + * @brief Utilities to use to handle GLSL shaders. * From the OpenGL Programming wikibook: http://en.wikibooks.org/wiki/OpenGL_Programming * This file is in the public domain. * Contributors: Sylvain Beucler, Guus Sliepen */ + #ifndef _CREATE_SHADER_H #define _CREATE_SHADER_H 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 <entityx/entityx.h> @@ -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. */ diff --git a/include/ui_quest.hpp b/include/ui_quest.hpp index 8582b67..d770011 100644 --- a/include/ui_quest.hpp +++ b/include/ui_quest.hpp @@ -1,3 +1,8 @@ +/** + * @file ui_quest.hpp + * @brief Handles UI elements related to quests. + */ + #ifndef UI_QUEST_HPP_ #define UI_QUEST_HPP_ @@ -6,12 +11,20 @@ namespace ui { namespace quest { + /** + * A flag to determine if the UI should be drawn. + */ bool _toggle = false; - void toggle(void) { - _toggle ^= true; - } + /** + * Toggles displaying of the UI. + */ + inline void toggle(void) + { _toggle ^= true; } + /** + * Draws the quest UI to the screen, if enabled. + */ void draw(void) { static unsigned int textWrap = 40; |