From 791f8376b641d3c464e2cf690f3c810a84f52951 Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Tue, 13 Aug 2019 09:15:58 +0000 Subject: [PATCH] Implement contoller analog 0 in menus very hackishly git-svn-id: https://svn.eduke32.com/eduke32@7970 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/duke3d/src/input.cpp | 8 ++++++ source/mact/include/_control.h | 1 + source/mact/include/control.h | 5 ++++ source/mact/src/control.cpp | 50 ++++++++++++++++++++++++++++++++-- 4 files changed, 62 insertions(+), 2 deletions(-) diff --git a/source/duke3d/src/input.cpp b/source/duke3d/src/input.cpp index 11d9cf257..40eb1086d 100644 --- a/source/duke3d/src/input.cpp +++ b/source/duke3d/src/input.cpp @@ -169,6 +169,7 @@ int32_t I_MenuUp(void) || BUTTON(gamefunc_Move_Forward) || (JOYSTICK_GetHat(0)&HAT_UP) || (JOYSTICK_GetGameControllerButtons()&(1< 0) { + set[axis].digitalClearedN = 0; + if (set[axis].analog > THRESHOLD || (set[axis].analog > MINTHRESHOLD && lastset[axis].digital == 1)) set[axis].digital = 1; + else + set[axis].digitalClearedP = 0; + } + else if (set[axis].analog < 0) + { + set[axis].digitalClearedP = 0; + + if (set[axis].analog < -THRESHOLD || (set[axis].analog < -MINTHRESHOLD && lastset[axis].digital == -1)) + set[axis].digital = -1; + else + set[axis].digitalClearedN = 0; } else { - if (set[axis].analog < -THRESHOLD || (set[axis].analog < -MINTHRESHOLD && lastset[axis].digital == -1)) - set[axis].digital = -1; + set[axis].digitalClearedN = 0; + set[axis].digitalClearedP = 0; } } @@ -744,6 +760,36 @@ void CONTROL_ClearAllButtons(void) c.cleared = TRUE; } +int32_t CONTROL_GetGameControllerDigitalAxisPos(int32_t axis) +{ + if (!joystick.isGameController) + return 0; + + return CONTROL_JoyAxes[axis].digital > 0 && !CONTROL_JoyAxes[axis].digitalClearedP; +} +int32_t CONTROL_GetGameControllerDigitalAxisNeg(int32_t axis) +{ + if (!joystick.isGameController) + return 0; + + return CONTROL_JoyAxes[axis].digital < 0 && !CONTROL_JoyAxes[axis].digitalClearedN; +} + +void CONTROL_ClearGameControllerDigitalAxisPos(int32_t axis) +{ + if (!joystick.isGameController) + return; + + CONTROL_JoyAxes[axis].digitalClearedP = 1; +} +void CONTROL_ClearGameControllerDigitalAxisNeg(int32_t axis) +{ + if (!joystick.isGameController) + return; + + CONTROL_JoyAxes[axis].digitalClearedN = 1; +} + void CONTROL_ProcessBinds(void) { if (!CONTROL_BindsEnabled)