From 1228cb60446bbf1339e8776cae2922a2f2da4be7 Mon Sep 17 00:00:00 2001 From: Mitch Richters Date: Fri, 19 Nov 2021 08:11:32 +1100 Subject: [PATCH] - `InputState::AddEvent()`: Partially revert changes performed in 4d629e7de8f04b2e82dccd98605b16f478d021a7 that were believed not necessary. This functionality is still needed in some of Exhumed's cutscenes that are performed in-engine and not as a screenjob. --- source/core/inputstate.cpp | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/source/core/inputstate.cpp b/source/core/inputstate.cpp index 156930ad4..c0b55dec5 100644 --- a/source/core/inputstate.cpp +++ b/source/core/inputstate.cpp @@ -80,14 +80,32 @@ void InputState::GetMouseDelta(ControlInfo * hidInput) // //========================================================================== +static int exclKeys[] = { KEY_VOLUMEDOWN, KEY_VOLUMEUP }; + void InputState::AddEvent(const event_t *ev) { if (ev->type == EV_KeyDown || ev->type == EV_KeyUp) { int key = ev->data1; bool state = ev->type == EV_KeyDown; + bool ignore = false; KeyStatus[key] = (uint8_t)state; - if (state && !(key > KEY_LASTJOYBUTTON && key < KEY_PAD_LTHUMB_RIGHT)) + + // Check if key is to be excluded from setting AnyKeyStatus. + for (int i = 0; i < 2; i++) + { + if (exclKeys[i] == key) + { + ignore = true; + break; + } + } + if (key > KEY_LASTJOYBUTTON && key < KEY_PAD_LTHUMB_RIGHT) + { + ignore = true; + } + + if (state && !ignore) AnyKeyStatus = true; } }