From 4d6419732a22ba270fa0363499143c40dcead6e3 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Wed, 22 Mar 2023 20:32:06 +1100 Subject: [PATCH] - Duke: Add CVAR to allow disabling pitch reset with pitch input. * Need to add this to the menu to address #853. --- source/core/gamecvars.cpp | 1 + source/core/gamecvars.h | 1 + source/games/duke/src/duke3d.h | 2 +- source/games/duke/src/input.cpp | 15 +++++++++++++++ 4 files changed, 18 insertions(+), 1 deletion(-) diff --git a/source/core/gamecvars.cpp b/source/core/gamecvars.cpp index 5e1b75d96..9681f3f95 100644 --- a/source/core/gamecvars.cpp +++ b/source/core/gamecvars.cpp @@ -91,6 +91,7 @@ CVARD(Bool, cl_bloodweapinterp, false, CVAR_ARCHIVE, "enable/disable Blood's wea CVARD(Bool, cl_bloodoldweapbalance, false, CVAR_ARCHIVE, "enable/disable legacy 1.0 weapon handling for Blood") CVARD(Bool, cl_loadingscreens, true, CVAR_ARCHIVE|CVAR_GLOBALCONFIG, "enable/disable loading screens for games") CVARD(Bool, cl_clampedpitch, true, CVAR_ARCHIVE, "clamp the view pitch to original ranges") +CVARD(Bool, cl_dukelockpitchreturn, true, CVAR_ARCHIVE, "enable/disable Duke's pitch input when returning to centre") CUSTOM_CVARD(Int, cl_autoaim, 1, CVAR_ARCHIVE|CVAR_USERINFO, "enable/disable weapon autoaim") diff --git a/source/core/gamecvars.h b/source/core/gamecvars.h index 7c3b1de55..99078798b 100644 --- a/source/core/gamecvars.h +++ b/source/core/gamecvars.h @@ -36,6 +36,7 @@ EXTERN_CVAR(Bool, cl_bloodweapinterp) EXTERN_CVAR(Bool, cl_bloodoldweapbalance) EXTERN_CVAR(Bool, cl_loadingscreens) EXTERN_CVAR(Bool, cl_clampedpitch) +EXTERN_CVAR(Bool, cl_dukelockpitchreturn) EXTERN_CVAR(Bool, demorec_seeds_cvar) EXTERN_CVAR(Bool, demoplay_diffs) diff --git a/source/games/duke/src/duke3d.h b/source/games/duke/src/duke3d.h index 6f3716d78..9dca0d704 100644 --- a/source/games/duke/src/duke3d.h +++ b/source/games/duke/src/duke3d.h @@ -39,7 +39,7 @@ struct GameInterface : public ::GameInterface void SerializeGameState(FSerializer& arc) override; void ExitFromMenu() override; void DrawPlayerSprite(const DVector2& origin, bool onteam) override; - void reapplyInputBits(InputPacket* const input) override { input->actions |= ps[myconnectindex].sync.actions & SB_CENTERVIEW; } + void reapplyInputBits(InputPacket* const input) override; void GetInput(HIDInput* const hidInput, InputPacket* const inputBuffer, InputPacket* const currInput, const double scaleAdjust) override; void UpdateSounds() override; void Startup() override; diff --git a/source/games/duke/src/input.cpp b/source/games/duke/src/input.cpp index 28d3e4a55..ac12c0f65 100644 --- a/source/games/duke/src/input.cpp +++ b/source/games/duke/src/input.cpp @@ -610,6 +610,21 @@ static void processVehicleInput(player_struct *p, HIDInput* const hidInput, Inpu } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + +void GameInterface::reapplyInputBits(InputPacket* const input) +{ + if ((ps[myconnectindex].sync.actions & SB_CENTERVIEW) && (cl_dukelockpitchreturn || !input->avel)) + { + input->actions |= SB_CENTERVIEW; + } +} + + //--------------------------------------------------------------------------- // // External entry point