diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/events.hpp | 24 | ||||
-rw-r--r-- | include/ui.hpp | 5 | ||||
-rw-r--r-- | include/window.hpp | 1 |
3 files changed, 30 insertions, 0 deletions
diff --git a/include/events.hpp b/include/events.hpp index 8a09638..975855c 100644 --- a/include/events.hpp +++ b/include/events.hpp @@ -12,6 +12,10 @@ class World; +////////////////////////// +/// INPUT EVENTS +////////////////////////// + struct MouseScrollEvent { MouseScrollEvent(int sd = 0) : scrollDistance(sd) {} @@ -41,6 +45,10 @@ struct KeyUpEvent { SDL_Keycode keycode; }; +////////////////////////// +/// ENGINE EVENTS +////////////////////////// + struct GameEndEvent { GameEndEvent(bool r = true) : really(r) {} @@ -48,6 +56,10 @@ struct GameEndEvent { bool really; }; +////////////////////////// +/// WORLD EVENTS +////////////////////////// + struct BGMToggleEvent { BGMToggleEvent(std::string f = "", World *w = nullptr) : file(f), world(w) {} @@ -56,6 +68,10 @@ struct BGMToggleEvent { World *world; }; +////////////////////////// +/// WINDOW EVENTS +////////////////////////// + struct WindowResizeEvent { WindowResizeEvent(int w = 640, int h = 480) : x(w), y(h) {} @@ -64,4 +80,12 @@ struct WindowResizeEvent { int y; }; +struct ScreenshotEvent { + ScreenshotEvent(int w = game::SCREEN_HEIGHT, int h = game::SCREEN_WIDTH) + : w(w), h(h) {} + + int w; + int h; +}; + #endif // EVENTS_HPP_ diff --git a/include/ui.hpp b/include/ui.hpp index c7a69b6..64aa274 100644 --- a/include/ui.hpp +++ b/include/ui.hpp @@ -156,6 +156,11 @@ namespace ui { void waitForCover(void); void waitForUncover(void); + /* + * Takes a screenshot of the game + */ + + void takeScreenshot(GLubyte *pixels); } #endif // UI_H diff --git a/include/window.hpp b/include/window.hpp index 364ac8f..55cbe1c 100644 --- a/include/window.hpp +++ b/include/window.hpp @@ -20,6 +20,7 @@ public: void configure(entityx::EventManager &ev); void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; void receive(const WindowResizeEvent&); + void receive(const ScreenshotEvent&); }; #endif // WINDOW_HPP_ |