mirror of
https://github.com/DrBeef/Doom3Quest.git
synced 2024-11-28 06:42:12 +00:00
7df7a5410d
- Corrected chainsaw orientation - Added cvars for smooth turn / snap turn - Made the scontrol scheme cvar actually work - Laser sight controlled only by cvar - No tracking while in big screen mode to avoid nausea - Some code tidy up of stuff not used
44 lines
No EOL
1.4 KiB
C
44 lines
No EOL
1.4 KiB
C
|
|
#if !defined(vrinput_h)
|
|
#define vrinput_h
|
|
|
|
#include "VrCommon.h"
|
|
|
|
//New control scheme definitions to be defined L1VR_SurfaceView.c enumeration
|
|
enum control_scheme;
|
|
|
|
#define STABILISATION_DISTANCE 0.5
|
|
#define FLASHLIGHT_HOLSTER_DISTANCE 0.15
|
|
#define VELOCITY_TRIGGER 1.6
|
|
|
|
ovrInputStateTrackedRemote leftTrackedRemoteState_old;
|
|
ovrInputStateTrackedRemote leftTrackedRemoteState_new;
|
|
ovrTracking leftRemoteTracking_new;
|
|
|
|
ovrInputStateTrackedRemote rightTrackedRemoteState_old;
|
|
ovrInputStateTrackedRemote rightTrackedRemoteState_new;
|
|
ovrTracking rightRemoteTracking_new;
|
|
|
|
ovrDeviceID controllerIDs[2];
|
|
|
|
float remote_movementSideways;
|
|
float remote_movementForward;
|
|
float remote_movementUp;
|
|
float positional_movementSideways;
|
|
float positional_movementForward;
|
|
float snapTurn;
|
|
|
|
void sendButtonAction(const char* action, long buttonDown);
|
|
void sendButtonActionSimple(const char* action);
|
|
|
|
void acquireTrackedRemotesData(ovrMobile *Ovr, double displayTime);
|
|
|
|
void HandleInput_Default( int controlscheme, ovrInputStateTrackedRemote *pDominantTrackedRemoteNew, ovrInputStateTrackedRemote *pDominantTrackedRemoteOld, ovrTracking* pDominantTracking,
|
|
ovrInputStateTrackedRemote *pOffTrackedRemoteNew, ovrInputStateTrackedRemote *pOffTrackedRemoteOld, ovrTracking* pOffTracking,
|
|
int domButton1, int domButton2, int offButton1, int offButton2 );
|
|
|
|
|
|
|
|
void updateScopeAngles();
|
|
|
|
#endif //vrinput_h
|