mirror of
https://github.com/DrBeef/RTCWQuest.git
synced 2024-11-15 09:01:32 +00:00
062682addd
Not there yet, but good progress!
80 lines
No EOL
2 KiB
C
80 lines
No EOL
2 KiB
C
#if !defined(vrcommon_h)
|
|
#define vrcommon_h
|
|
|
|
#include <VrApi_Input.h>
|
|
|
|
#include <android/log.h>
|
|
|
|
#include "mathlib.h"
|
|
#include "VrClientInfo.h"
|
|
|
|
#define LOG_TAG "RTCWVR"
|
|
|
|
#ifndef NDEBUG
|
|
#define DEBUG 1
|
|
#endif
|
|
|
|
#define ALOGE(...) __android_log_print( ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__ )
|
|
|
|
#if DEBUG
|
|
#define ALOGV(...) __android_log_print( ANDROID_LOG_VERBOSE, LOG_TAG, __VA_ARGS__ )
|
|
#else
|
|
#define ALOGV(...)
|
|
#endif
|
|
|
|
qboolean rtcw_initialised;
|
|
|
|
long long global_time;
|
|
|
|
float playerHeight;
|
|
float playerYaw;
|
|
|
|
qboolean showingScreenLayer;
|
|
|
|
ovrTracking2 tracking;
|
|
|
|
#define DUCK_NOTDUCKED 0
|
|
#define DUCK_BUTTON 1
|
|
#define DUCK_CROUCHED 2
|
|
int ducked;
|
|
|
|
qboolean player_moving;
|
|
int resyncClientYawWithGameYaw;
|
|
|
|
vr_client_info_t vr;
|
|
|
|
|
|
float radians(float deg);
|
|
float degrees(float rad);
|
|
qboolean isMultiplayer();
|
|
double GetTimeInMilliSeconds();
|
|
float length(float x, float y);
|
|
float nonLinearFilter(float in);
|
|
qboolean between(float min, float val, float max);
|
|
void rotateAboutOrigin(float v1, float v2, float rotation, vec2_t out);
|
|
void QuatToYawPitchRoll(ovrQuatf q, vec3_t rotation, vec3_t out);
|
|
void handleTrackedControllerButton(ovrInputStateTrackedRemote * trackedRemoteState, ovrInputStateTrackedRemote * prevTrackedRemoteState, uint32_t button, int key);
|
|
void interactWithTouchScreen(qboolean reset, ovrInputStateTrackedRemote *newState, ovrInputStateTrackedRemote *oldState);
|
|
|
|
|
|
//Called from engine code
|
|
qboolean RTCWVR_useScreenLayer();
|
|
void RTCWVR_GetScreenRes(int *width, int *height);
|
|
void RTCWVR_Vibrate(float duration, int channel, float intensity );
|
|
qboolean RTCWVR_processMessageQueue();
|
|
void RTCWVR_FrameSetup();
|
|
void RTCWVR_setUseScreenLayer(qboolean use);
|
|
void RTCWVR_processHaptics();
|
|
void RTCWVR_getHMDOrientation();
|
|
void RTCWVR_getTrackedRemotesOrientation();
|
|
void RTCWVR_ResyncClientYawWithGameYaw();
|
|
void RTCWVR_incrementFrameIndex();
|
|
|
|
void RTCWVR_prepareEyeBuffer(int eye );
|
|
void RTCWVR_finishEyeBuffer(int eye );
|
|
void RTCWVR_submitFrame();
|
|
|
|
void GPUDropSync();
|
|
void GPUWaitSync();
|
|
|
|
#endif //vrcommon_h
|