Ankush's Garage
A collection of stuff made by Ankush Roy
Loading...
Searching...
No Matches
EventHandler.h
Go to the documentation of this file.
1#ifndef INCLUDE_CORE_EVENTHANDLER_H_
2#define INCLUDE_CORE_EVENTHANDLER_H_
3
4#include "Common/pch.h"
5
6namespace Core
7{
8
20
28
30{
31 public:
32 std::array<KEY_STATE, Core::KEY::COUNT> Keys {};
33
35 void updateKey(KEY action, bool pressed);
36 void endFrame();
37};
38
39namespace EventHandler
40{
41SDL_AppResult handleEvents(SDL_Event *event, InputHandler &inputHandler);
42}
43
44} // namespace Core
45
46#endif // INCLUDE_CORE_EVENTHANDLER_H_
Definition EventHandler.h:30
void updateKey(KEY action, bool pressed)
Definition EventHandler.cpp:11
std::array< KEY_STATE, Core::KEY::COUNT > Keys
Definition EventHandler.h:32
InputHandler()
Definition EventHandler.cpp:6
void endFrame()
Definition EventHandler.cpp:32
Definition EventHandler.h:40
SDL_AppResult handleEvents(SDL_Event *event, InputHandler &inputHandler)
Definition EventHandler.cpp:43
Definition Console.cpp:4
KEY
Definition EventHandler.h:10
@ COUNT
Definition EventHandler.h:18
@ A
Definition EventHandler.h:16
@ RIGHT
Definition EventHandler.h:12
@ LEFT
Definition EventHandler.h:13
@ D
Definition EventHandler.h:17
@ DOWN
Definition EventHandler.h:15
@ UP
Definition EventHandler.h:14
@ RESIZE_PROJECT_WINDOW
Definition EventHandler.h:11
KEY_STATE
Definition EventHandler.h:22
@ HELD
Definition EventHandler.h:25
@ PRESSED
Definition EventHandler.h:24
@ IDLE
Definition EventHandler.h:23
@ RELEASED
Definition EventHandler.h:26