diff options
Diffstat (limited to 'mwe/events/include/inputSystem.h')
-rw-r--r-- | mwe/events/include/inputSystem.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/mwe/events/include/inputSystem.h b/mwe/events/include/inputSystem.h new file mode 100644 index 0000000..c20562d --- /dev/null +++ b/mwe/events/include/inputSystem.h @@ -0,0 +1,24 @@ +#pragma once +#include <vector> +#include "uiObject.h" +#include "event.h" +#include "keyCodes.h" +#include "eventManager.h" +class InputSystem { +public: + InputSystem(); + void registerButton(Button* button); + void registerText(Text* label); + void registerTextInput(TextInput* input); + void processInput(); + +private: + std::vector<Button*> buttons; + std::vector<TextInput*> textInputs; + std::vector<Text*> texts; + void processMouseClick(int mouseX, int mouseY); + void processInputField(int mouseX, int mouseY); + void processKeyPress(Keycode); + void processTextInput(const std::string& text); + +}; |