From d454455d2236d88ed57c821ca4b0a888efe8242e Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Tue, 4 Apr 2023 20:01:21 +1000 Subject: [PATCH] - Move `invertmouse` CVARs into common code. * Removes duplication of CVAR definitions between Raze and GZDoom. --- source/common/engine/d_event.cpp | 5 +++++ source/core/gameinput.cpp | 4 ---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/source/common/engine/d_event.cpp b/source/common/engine/d_event.cpp index f10ff0b19..b63c13ce1 100644 --- a/source/common/engine/d_event.cpp +++ b/source/common/engine/d_event.cpp @@ -50,6 +50,8 @@ event_t events[MAXEVENTS]; CVAR(Float, m_sensitivity_x, 4.f, CVAR_ARCHIVE | CVAR_GLOBALCONFIG) CVAR(Float, m_sensitivity_y, 2.f, CVAR_ARCHIVE | CVAR_GLOBALCONFIG) +CVAR(Bool, invertmouse, false, CVAR_GLOBALCONFIG | CVAR_ARCHIVE); // Invert mouse look down/up? +CVAR(Bool, invertmousex, false, CVAR_GLOBALCONFIG | CVAR_ARCHIVE); // Invert mouse look left/right? //========================================================================== @@ -171,6 +173,9 @@ void PostMouseMove(int xx, int yy) ev.x = float(xx) * m_sensitivity_x; ev.y = -float(yy) * m_sensitivity_y; + if (invertmousex) ev.x = -ev.x; + if (invertmouse) ev.y = -ev.y; + if (ev.x || ev.y) { ev.type = EV_Mouse; diff --git a/source/core/gameinput.cpp b/source/core/gameinput.cpp index b6f98c3a3..e0fe9974f 100644 --- a/source/core/gameinput.cpp +++ b/source/core/gameinput.cpp @@ -37,8 +37,6 @@ CVAR(Float, m_pitch, 1.f, CVAR_GLOBALCONFIG | CVAR_ARCHIVE) CVAR(Float, m_yaw, 1.f, CVAR_GLOBALCONFIG | CVAR_ARCHIVE) CVAR(Float, m_forward, 1.f, CVAR_GLOBALCONFIG | CVAR_ARCHIVE) CVAR(Float, m_side, 1.f, CVAR_GLOBALCONFIG | CVAR_ARCHIVE) -CVARD(Bool, invertmousex, false, CVAR_ARCHIVE | CVAR_GLOBALCONFIG, "invert horizontal mouse movement") -CVARD(Bool, invertmouse, false, CVAR_ARCHIVE | CVAR_GLOBALCONFIG, "invert vertical mouse movement") //--------------------------------------------------------------------------- @@ -230,8 +228,6 @@ void GameInput::processVehicle(PlayerAngles* const plrAngles, const float scaleA void GameInput::prepareHidInput() { I_GetAxes(joyAxes); - if (invertmousex) mouseInput.X = -mouseInput.X; - if (invertmouse) mouseInput.Y = -mouseInput.Y; } void GameInput::resetHidInput()