aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-25 11:54:06 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-25 11:54:06 +0100
commitfd7dfd2202c9435b86ac10ed96c6515f2505daa8 (patch)
tree0e734d6684f5ea247697bf3db5502e39ae9b188c /src/crepe/system
parent48015cd425b26eb68eb07f4e4b1adf71e81e11b1 (diff)
changed enum name
Diffstat (limited to 'src/crepe/system')
-rw-r--r--src/crepe/system/InputSystem.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/crepe/system/InputSystem.cpp b/src/crepe/system/InputSystem.cpp
index 7f7f9ec..2a47bdd 100644
--- a/src/crepe/system/InputSystem.cpp
+++ b/src/crepe/system/InputSystem.cpp
@@ -13,20 +13,20 @@ void InputSystem::update() {
for (const SDLContext::EventData & event : event_list) {
switch (event.event_type) {
- case SDLContext::Event::KEYDOWN: {
+ case SDLContext::EventType::KEYDOWN: {
event_mgr.queue_event<KeyPressEvent>(KeyPressEvent{
.repeat = event.key_repeat,
.key = event.key,
});
break;
}
- case SDLContext::Event::KEYUP: {
+ case SDLContext::EventType::KEYUP: {
event_mgr.queue_event<KeyReleaseEvent>(KeyReleaseEvent{
.key = event.key,
});
break;
}
- case SDLContext::Event::MOUSEDOWN: {
+ case SDLContext::EventType::MOUSEDOWN: {
event_mgr.queue_event<MousePressEvent>(MousePressEvent{
.mouse_x = event.mouse_position.first,
.mouse_y = event.mouse_position.second,
@@ -36,7 +36,7 @@ void InputSystem::update() {
last_mouse_button = event.mouse_button;
break;
}
- case SDLContext::Event::MOUSEUP: {
+ case SDLContext::EventType::MOUSEUP: {
MouseReleaseEvent mouse_release_event = MouseReleaseEvent{
.mouse_x = event.mouse_position.first,
.mouse_y = event.mouse_position.second,
@@ -61,7 +61,7 @@ void InputSystem::update() {
}
break;
}
- case SDLContext::Event::MOUSEMOVE: {
+ case SDLContext::EventType::MOUSEMOVE: {
event_mgr.queue_event<MouseMoveEvent>(MouseMoveEvent{
.mouse_x = event.mouse_position.first,
.mouse_y = event.mouse_position.second,
@@ -71,7 +71,7 @@ void InputSystem::update() {
handle_move(event);
break;
}
- case SDLContext::Event::MOUSEWHEEL: {
+ case SDLContext::EventType::MOUSEWHEEL: {
event_mgr.queue_event<MouseScrollEvent>(MouseScrollEvent{
.scroll_x = event.wheel_delta,
.scroll_y = 0,
@@ -79,7 +79,7 @@ void InputSystem::update() {
});
break;
}
- case SDLContext::Event::SHUTDOWN: {
+ case SDLContext::EventType::SHUTDOWN: {
event_mgr.queue_event<ShutDownEvent>(ShutDownEvent{});
break;
}