mirror of
https://github.com/DrBeef/Doom3Quest.git
synced 2024-11-23 12:22:20 +00:00
Joysticks switch with hands (not stick shifts)
This commit is contained in:
parent
99eb192003
commit
1e6120c5b4
1 changed files with 21 additions and 16 deletions
|
@ -82,11 +82,20 @@ void HandleInput_Default( int controlscheme, int switchsticks, ovrInputStateTrac
|
||||||
uint32_t primaryButtonsOld;
|
uint32_t primaryButtonsOld;
|
||||||
uint32_t secondaryButtonsNew;
|
uint32_t secondaryButtonsNew;
|
||||||
uint32_t secondaryButtonsOld;
|
uint32_t secondaryButtonsOld;
|
||||||
|
uint32_t weaponButtonsNew;
|
||||||
|
uint32_t weaponButtonsOld;
|
||||||
|
uint32_t offhandButtonsNew;
|
||||||
|
uint32_t offhandButtonsOld;
|
||||||
int primaryButton1;
|
int primaryButton1;
|
||||||
int primaryButton2;
|
int primaryButton2;
|
||||||
int secondaryButton1;
|
int secondaryButton1;
|
||||||
int secondaryButton2;
|
int secondaryButton2;
|
||||||
|
|
||||||
|
weaponButtonsNew = pDominantTrackedRemoteNew->Buttons;
|
||||||
|
weaponButtonsOld = pDominantTrackedRemoteOld->Buttons;
|
||||||
|
offhandButtonsNew = pOffTrackedRemoteNew->Buttons;
|
||||||
|
offhandButtonsOld = pOffTrackedRemoteOld->Buttons;
|
||||||
|
|
||||||
if ((controlscheme == 0 &&switchsticks == 1) ||
|
if ((controlscheme == 0 &&switchsticks == 1) ||
|
||||||
(controlscheme == 1 &&switchsticks == 0))
|
(controlscheme == 1 &&switchsticks == 0))
|
||||||
{
|
{
|
||||||
|
@ -467,9 +476,9 @@ void HandleInput_Default( int controlscheme, int switchsticks, ovrInputStateTrac
|
||||||
|
|
||||||
|
|
||||||
if (dominantGripPushed) {
|
if (dominantGripPushed) {
|
||||||
if (((secondaryButtonsNew & ovrButton_Joystick) !=
|
if (((offhandButtonsNew & ovrButton_Joystick) !=
|
||||||
(secondaryButtonsOld & ovrButton_Joystick)) &&
|
(offhandButtonsOld & ovrButton_Joystick)) &&
|
||||||
(secondaryButtonsNew & ovrButton_Joystick)) {
|
(offhandButtonsNew & ovrButton_Joystick)) {
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
//Android_SetCommand("give all");
|
//Android_SetCommand("give all");
|
||||||
if(give_weapon_count == 1){
|
if(give_weapon_count == 1){
|
||||||
|
@ -521,34 +530,30 @@ void HandleInput_Default( int controlscheme, int switchsticks, ovrInputStateTrac
|
||||||
Android_SetImpulse(UB_IMPULSE32);
|
Android_SetImpulse(UB_IMPULSE32);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (((primaryButtonsNew & ovrButton_Joystick) !=
|
if (((weaponButtonsNew & ovrButton_Joystick) !=
|
||||||
(primaryButtonsOld & ovrButton_Joystick)) &&
|
(weaponButtonsOld & ovrButton_Joystick)) &&
|
||||||
(primaryButtonsNew & ovrButton_Joystick)) {
|
(weaponButtonsNew & ovrButton_Joystick)) {
|
||||||
//Toggle Torch Mode
|
//Toggle Torch Mode
|
||||||
Android_SetImpulse(UB_IMPULSE35);
|
Android_SetImpulse(UB_IMPULSE35);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (((primaryButtonsNew & ovrButton_Joystick) !=
|
if (((weaponButtonsNew & ovrButton_Joystick) !=
|
||||||
(primaryButtonsOld & ovrButton_Joystick)) &&
|
(weaponButtonsOld & ovrButton_Joystick)) &&
|
||||||
(primaryButtonsNew & ovrButton_Joystick)) {
|
(weaponButtonsNew & ovrButton_Joystick)) {
|
||||||
|
|
||||||
//Toggle Body
|
//Toggle Body
|
||||||
Android_SetImpulse(UB_IMPULSE34);
|
Android_SetImpulse(UB_IMPULSE34);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (((secondaryButtonsNew & ovrButton_Joystick) !=
|
if (((offhandButtonsNew & ovrButton_Joystick) !=
|
||||||
(secondaryButtonsOld & ovrButton_Joystick)) &&
|
(offhandButtonsOld & ovrButton_Joystick)) &&
|
||||||
(secondaryButtonsNew & ovrButton_Joystick)) {
|
(offhandButtonsNew & ovrButton_Joystick)) {
|
||||||
|
|
||||||
//Turn on Flashlight
|
//Turn on Flashlight
|
||||||
Android_SetImpulse(UB_IMPULSE16);
|
Android_SetImpulse(UB_IMPULSE16);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//We need to record if we have started firing primary so that releasing trigger will stop definitely firing, if user has pushed grip
|
//We need to record if we have started firing primary so that releasing trigger will stop definitely firing, if user has pushed grip
|
||||||
//in meantime, then it wouldn't stop the gun firing and it would get stuck
|
//in meantime, then it wouldn't stop the gun firing and it would get stuck
|
||||||
handleTrackedControllerButton_AsButton(pOffTrackedRemoteNew->Buttons, pOffTrackedRemoteOld->Buttons, false, ovrButton_Trigger, UB_SPEED);
|
handleTrackedControllerButton_AsButton(pOffTrackedRemoteNew->Buttons, pOffTrackedRemoteOld->Buttons, false, ovrButton_Trigger, UB_SPEED);
|
||||||
|
|
Loading…
Reference in a new issue