From 3004bca85c245c2ec77c4c1bd9343c96191c7ccf Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 1 Sep 2019 14:45:42 -0400 Subject: made all formatting match --- src/gamerun.hpp | 68 ++++++++++++++++++++++++++++++--------------------------- 1 file changed, 36 insertions(+), 32 deletions(-) (limited to 'src/gamerun.hpp') diff --git a/src/gamerun.hpp b/src/gamerun.hpp index efe6ed9..ceb0716 100644 --- a/src/gamerun.hpp +++ b/src/gamerun.hpp @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -#ifndef GAMERUN_HPP_ -#define GAMERUN_HPP_ +#ifndef SYSTEM_GAMERUN_HPP_ +#define SYSTEM_GAMERUN_HPP_ #include "input.hpp" @@ -33,44 +33,48 @@ * Listens for a key event to tell the game to exit. */ class GameRunSystem : public entityx::System, - public entityx::Receiver { + public entityx::Receiver +{ private: - std::atomic_bool shouldRunFlag; + std::atomic_bool shouldRunFlag; public: - /** - * Configures the system to wait for the exit event. - */ - void configure([[maybe_unused]] entityx::EntityManager& entities, - entityx::EventManager& events) { - shouldRunFlag.store(true); + /** + * Configures the system to wait for the exit event. + */ + void configure([[maybe_unused]] entityx::EntityManager& entities, + entityx::EventManager& events) + { + shouldRunFlag.store(true); - events.subscribe(*this); + events.subscribe(*this); - std::cout << "Press escape to exit." << std::endl; - } + std::cout << "Press escape to exit." << std::endl; + } - // Unused - void update([[maybe_unused]] entityx::EntityManager& entities, - [[maybe_unused]] entityx::EventManager& events, - [[maybe_unused]] entityx::TimeDelta dt) final {} + // Unused + void update([[maybe_unused]] entityx::EntityManager& entities, + [[maybe_unused]] entityx::EventManager& events, + [[maybe_unused]] entityx::TimeDelta dt) final {} - /** - * Receiver for key release events, used to listen for game exit key. - */ - void receive(const KeyUpEvent& kue) { - if (kue.sym == SDLK_ESCAPE) - shouldRunFlag.store(false); - } + /** + * Receiver for key release events, used to listen for game exit key. + */ + void receive(const KeyUpEvent& kue) + { + if (kue.sym == SDLK_ESCAPE) + shouldRunFlag.store(false); + } - /** - * Checks if the game exit key has been pressed. - * @return True if the game should exit - */ - inline bool shouldRun(void) const { - return shouldRunFlag.load(); - } + /** + * Checks if the game exit key has been pressed. + * @return True if the game should exit + */ + bool shouldRun(void) const + { + return shouldRunFlag.load(); + } }; -#endif // GAMERUN_HPP_ +#endif // SYSTEM_GAMERUN_HPP_ -- cgit v1.2.3