aboutsummaryrefslogtreecommitdiffstats
path: root/src/input.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2020-05-09 09:42:18 -0400
committerClyne Sullivan <clyne@bitgloo.com>2020-05-09 09:42:18 -0400
commitda0913771538fd9b1ca538615fd9aa0388608466 (patch)
tree18b23720b0a9c24e05a8f3eceb6b03b0b858fcb2 /src/input.hpp
parentf461087223a80cd06619517e355690654f406d63 (diff)
Merge audio; handle mouse events
Diffstat (limited to 'src/input.hpp')
-rw-r--r--src/input.hpp33
1 files changed, 11 insertions, 22 deletions
diff --git a/src/input.hpp b/src/input.hpp
index fa92c39..6180388 100644
--- a/src/input.hpp
+++ b/src/input.hpp
@@ -1,5 +1,5 @@
/**
- * @file window.hpp
+ * @file input.hpp
* Handles user input received from SDL.
*
* Copyright (C) 2019 Clyne Sullivan
@@ -56,34 +56,23 @@ struct KeyDownEvent {
class InputSystem : public entityx::System<InputSystem>
{
public:
+ InputSystem();
+
/**
* Prepares the system for running.
*/
- void configure([[maybe_unused]] entityx::EntityManager& entities,
- [[maybe_unused]] entityx::EventManager& events) final {}
+ void configure(entityx::EntityManager& entities,
+ entityx::EventManager& events) final;
/**
* Updates the system by checking for SDL events.
*/
- void update([[maybe_unused]] entityx::EntityManager& entities,
- [[maybe_unused]] entityx::EventManager& events,
- [[maybe_unused]] entityx::TimeDelta dt) final
- {
- for (SDL_Event event; SDL_PollEvent(&event);) {
- switch (event.type) {
- case SDL_KEYUP:
- if (auto key = event.key; key.repeat == 0)
- events.emit<KeyUpEvent>(key.keysym);
- break;
- case SDL_KEYDOWN:
- if (auto key = event.key; key.repeat == 0)
- events.emit<KeyDownEvent>(key.keysym);
- break;
- default:
- break;
- }
- }
- }
+ void update(entityx::EntityManager& entities,
+ entityx::EventManager& events,
+ entityx::TimeDelta dt) final;
+
+private:
+ bool isMouseDown;
};
#endif // SYSTEM_INPUT_HPP_