From 02d436f8020e6f05193b4cbc96fc1b6b568f31f0 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Mon, 23 Mar 2020 21:22:44 +1100 Subject: [PATCH] Change Next/Previous Weapon button handling for Duke and RR games. - Resolves inability to change weapons under SDL-based environments as reported at https://forum.zdoom.org/viewtopic.php?f=340&t=67232#p1142970 --- source/duke3d/src/player.cpp | 10 ++++++++-- source/rr/src/player.cpp | 10 ++++++++-- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/source/duke3d/src/player.cpp b/source/duke3d/src/player.cpp index e59ac32df..b9521f322 100644 --- a/source/duke3d/src/player.cpp +++ b/source/duke3d/src/player.cpp @@ -3202,10 +3202,16 @@ void P_GetInput(int const playerNum) weaponSelection = 14; else if (buttonMap.ButtonDown(gamefunc_Alt_Weapon)) weaponSelection = 13; - else if (buttonMap.ButtonDown(gamefunc_Next_Weapon) || (buttonMap.ButtonDown(gamefunc_Dpad_Select) && input.fvel > 0)) + else if (buttonMap.ButtonPressed(gamefunc_Next_Weapon) || (buttonMap.ButtonDown(gamefunc_Dpad_Select) && input.fvel > 0)) + { weaponSelection = 12; - else if (buttonMap.ButtonDown(gamefunc_Previous_Weapon) || (buttonMap.ButtonDown(gamefunc_Dpad_Select) && input.fvel < 0)) + buttonMap.ClearButton(gamefunc_Next_Weapon); + } + else if (buttonMap.ButtonPressed(gamefunc_Previous_Weapon) || (buttonMap.ButtonDown(gamefunc_Dpad_Select) && input.fvel < 0)) + { weaponSelection = 11; + buttonMap.ClearButton(gamefunc_Previous_Weapon); + } else if (weaponSelection == gamefunc_Weapon_1-1) weaponSelection = 0; diff --git a/source/rr/src/player.cpp b/source/rr/src/player.cpp index 05ac28654..759276af4 100644 --- a/source/rr/src/player.cpp +++ b/source/rr/src/player.cpp @@ -3383,10 +3383,16 @@ void P_GetInput(int const playerNum) weaponSelection = 14; else if (buttonMap.ButtonDown(gamefunc_Alt_Weapon)) weaponSelection = 13; - else if (buttonMap.ButtonDown(gamefunc_Next_Weapon) || (buttonMap.ButtonDown(gamefunc_Dpad_Select) && input.fvel > 0)) + else if (buttonMap.ButtonPressed(gamefunc_Next_Weapon) || (buttonMap.ButtonDown(gamefunc_Dpad_Select) && input.fvel > 0)) + { weaponSelection = 12; - else if (buttonMap.ButtonDown(gamefunc_Previous_Weapon) || (buttonMap.ButtonDown(gamefunc_Dpad_Select) && input.fvel < 0)) + buttonMap.ClearButton(gamefunc_Next_Weapon); + } + else if (buttonMap.ButtonPressed(gamefunc_Previous_Weapon) || (buttonMap.ButtonDown(gamefunc_Dpad_Select) && input.fvel < 0)) + { weaponSelection = 11; + buttonMap.ClearButton(gamefunc_Previous_Weapon); + } else if (weaponSelection == gamefunc_Weapon_1-1) weaponSelection = 0;