2022-11-06 10:30:27 +00:00
|
|
|
#define _USE_MATH_DEFINES
|
|
|
|
#include <cmath>
|
|
|
|
|
2022-07-12 16:53:46 +00:00
|
|
|
#include "VRBase.h"
|
2022-07-17 12:45:02 +00:00
|
|
|
#include "VRInput.h"
|
2022-07-12 16:53:46 +00:00
|
|
|
#include "VRRenderer.h"
|
2022-11-06 14:37:58 +00:00
|
|
|
#include "OpenXRLoader.h"
|
2022-07-12 16:53:46 +00:00
|
|
|
|
2022-10-17 16:39:02 +00:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstring>
|
2022-07-12 16:53:46 +00:00
|
|
|
|
2022-09-20 16:57:58 +00:00
|
|
|
XrFovf fov;
|
2022-07-12 16:53:46 +00:00
|
|
|
XrView* projections;
|
2022-07-15 13:41:21 +00:00
|
|
|
XrPosef invViewTransform[2];
|
|
|
|
XrFrameState frameState = {};
|
2022-09-12 23:39:44 +00:00
|
|
|
bool initialized = false;
|
|
|
|
bool stageSupported = false;
|
2022-11-06 10:30:27 +00:00
|
|
|
int vrConfig[VR_CONFIG_MAX] = {};
|
|
|
|
float vrConfigFloat[VR_CONFIG_FLOAT_MAX] = {};
|
2022-07-17 12:45:02 +00:00
|
|
|
|
2022-08-01 15:11:23 +00:00
|
|
|
XrVector3f hmdorientation;
|
2022-07-12 16:53:46 +00:00
|
|
|
|
2023-06-17 14:33:21 +00:00
|
|
|
XrPassthroughFB passthrough = XR_NULL_HANDLE;
|
|
|
|
XrPassthroughLayerFB passthroughLayer = XR_NULL_HANDLE;
|
2024-02-26 11:56:14 +00:00
|
|
|
bool passthroughRunning = false;
|
2023-06-17 14:33:21 +00:00
|
|
|
DECL_PFN(xrCreatePassthroughFB);
|
|
|
|
DECL_PFN(xrDestroyPassthroughFB);
|
|
|
|
DECL_PFN(xrPassthroughStartFB);
|
|
|
|
DECL_PFN(xrPassthroughPauseFB);
|
|
|
|
DECL_PFN(xrCreatePassthroughLayerFB);
|
|
|
|
DECL_PFN(xrDestroyPassthroughLayerFB);
|
|
|
|
DECL_PFN(xrPassthroughLayerPauseFB);
|
|
|
|
DECL_PFN(xrPassthroughLayerResumeFB);
|
|
|
|
|
2022-07-12 16:53:46 +00:00
|
|
|
void VR_UpdateStageBounds(ovrApp* pappState) {
|
2022-07-24 12:25:04 +00:00
|
|
|
XrExtent2Df stageBounds = {};
|
2022-07-12 16:53:46 +00:00
|
|
|
|
2022-07-24 12:25:04 +00:00
|
|
|
XrResult result;
|
2022-08-28 19:09:02 +00:00
|
|
|
OXR(result = xrGetReferenceSpaceBoundsRect(pappState->Session, XR_REFERENCE_SPACE_TYPE_STAGE, &stageBounds));
|
2022-07-24 12:25:04 +00:00
|
|
|
if (result != XR_SUCCESS) {
|
|
|
|
stageBounds.width = 1.0f;
|
|
|
|
stageBounds.height = 1.0f;
|
|
|
|
pappState->CurrentSpace = pappState->FakeStageSpace;
|
|
|
|
}
|
2022-07-12 16:53:46 +00:00
|
|
|
}
|
|
|
|
|
2022-07-23 11:14:53 +00:00
|
|
|
void VR_GetResolution(engine_t* engine, int *pWidth, int *pHeight) {
|
2022-07-12 16:53:46 +00:00
|
|
|
static int width = 0;
|
|
|
|
static int height = 0;
|
2022-07-24 12:25:04 +00:00
|
|
|
|
2022-07-23 11:14:53 +00:00
|
|
|
if (engine) {
|
2022-07-24 12:25:04 +00:00
|
|
|
// Enumerate the viewport configurations.
|
|
|
|
uint32_t viewportConfigTypeCount = 0;
|
|
|
|
OXR(xrEnumerateViewConfigurations(
|
|
|
|
engine->appState.Instance, engine->appState.SystemId, 0, &viewportConfigTypeCount, NULL));
|
|
|
|
|
|
|
|
XrViewConfigurationType* viewportConfigurationTypes =
|
|
|
|
(XrViewConfigurationType*)malloc(viewportConfigTypeCount * sizeof(XrViewConfigurationType));
|
|
|
|
|
|
|
|
OXR(xrEnumerateViewConfigurations(
|
|
|
|
engine->appState.Instance,
|
|
|
|
engine->appState.SystemId,
|
|
|
|
viewportConfigTypeCount,
|
|
|
|
&viewportConfigTypeCount,
|
|
|
|
viewportConfigurationTypes));
|
|
|
|
|
|
|
|
ALOGV("Available Viewport Configuration Types: %d", viewportConfigTypeCount);
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < viewportConfigTypeCount; i++) {
|
|
|
|
const XrViewConfigurationType viewportConfigType = viewportConfigurationTypes[i];
|
|
|
|
|
|
|
|
ALOGV(
|
|
|
|
"Viewport configuration type %d : %s",
|
|
|
|
viewportConfigType,
|
|
|
|
viewportConfigType == XR_VIEW_CONFIGURATION_TYPE_PRIMARY_STEREO ? "Selected" : "");
|
|
|
|
|
|
|
|
XrViewConfigurationProperties viewportConfig;
|
|
|
|
viewportConfig.type = XR_TYPE_VIEW_CONFIGURATION_PROPERTIES;
|
|
|
|
OXR(xrGetViewConfigurationProperties(
|
|
|
|
engine->appState.Instance, engine->appState.SystemId, viewportConfigType, &viewportConfig));
|
|
|
|
ALOGV(
|
|
|
|
"FovMutable=%s ConfigurationType %d",
|
|
|
|
viewportConfig.fovMutable ? "true" : "false",
|
|
|
|
viewportConfig.viewConfigurationType);
|
|
|
|
|
|
|
|
uint32_t viewCount;
|
|
|
|
OXR(xrEnumerateViewConfigurationViews(
|
|
|
|
engine->appState.Instance, engine->appState.SystemId, viewportConfigType, 0, &viewCount, NULL));
|
|
|
|
|
|
|
|
if (viewCount > 0) {
|
|
|
|
XrViewConfigurationView* elements =
|
|
|
|
(XrViewConfigurationView*)malloc(viewCount * sizeof(XrViewConfigurationView));
|
|
|
|
|
|
|
|
for (uint32_t e = 0; e < viewCount; e++) {
|
|
|
|
elements[e].type = XR_TYPE_VIEW_CONFIGURATION_VIEW;
|
|
|
|
elements[e].next = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
OXR(xrEnumerateViewConfigurationViews(
|
|
|
|
engine->appState.Instance,
|
|
|
|
engine->appState.SystemId,
|
|
|
|
viewportConfigType,
|
|
|
|
viewCount,
|
|
|
|
&viewCount,
|
|
|
|
elements));
|
|
|
|
|
|
|
|
// Cache the view config properties for the selected config type.
|
|
|
|
if (viewportConfigType == XR_VIEW_CONFIGURATION_TYPE_PRIMARY_STEREO) {
|
|
|
|
assert(viewCount == ovrMaxNumEyes);
|
|
|
|
for (uint32_t e = 0; e < viewCount; e++) {
|
|
|
|
engine->appState.ViewConfigurationView[e] = elements[e];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(elements);
|
|
|
|
} else {
|
|
|
|
ALOGE("Empty viewport configuration type: %d", viewCount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(viewportConfigurationTypes);
|
|
|
|
|
|
|
|
*pWidth = width = engine->appState.ViewConfigurationView[0].recommendedImageRectWidth;
|
|
|
|
*pHeight = height = engine->appState.ViewConfigurationView[0].recommendedImageRectHeight;
|
2022-07-23 11:14:53 +00:00
|
|
|
} else {
|
2022-07-12 16:53:46 +00:00
|
|
|
//use cached values
|
|
|
|
*pWidth = width;
|
|
|
|
*pHeight = height;
|
|
|
|
}
|
2024-07-13 20:39:00 +00:00
|
|
|
|
2024-07-17 08:36:05 +00:00
|
|
|
*pWidth = (int)(*pWidth * VR_GetConfigFloat(VR_CONFIG_VIEWPORT_SUPERSAMPLING));
|
|
|
|
*pHeight = (int)(*pHeight * VR_GetConfigFloat(VR_CONFIG_VIEWPORT_SUPERSAMPLING));
|
2022-07-12 16:53:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void VR_Recenter(engine_t* engine) {
|
|
|
|
|
2022-07-24 12:25:04 +00:00
|
|
|
// Calculate recenter reference
|
|
|
|
XrReferenceSpaceCreateInfo spaceCreateInfo = {};
|
|
|
|
spaceCreateInfo.type = XR_TYPE_REFERENCE_SPACE_CREATE_INFO;
|
|
|
|
spaceCreateInfo.poseInReferenceSpace.orientation.w = 1.0f;
|
|
|
|
if (engine->appState.CurrentSpace != XR_NULL_HANDLE) {
|
|
|
|
XrSpaceLocation loc = {};
|
|
|
|
loc.type = XR_TYPE_SPACE_LOCATION;
|
|
|
|
OXR(xrLocateSpace(engine->appState.HeadSpace, engine->appState.CurrentSpace, engine->predictedDisplayTime, &loc));
|
2022-08-01 15:11:23 +00:00
|
|
|
hmdorientation = XrQuaternionf_ToEulerAngles(loc.pose.orientation);
|
2022-07-24 12:25:04 +00:00
|
|
|
|
2022-11-06 10:30:27 +00:00
|
|
|
VR_SetConfigFloat(VR_CONFIG_RECENTER_YAW, VR_GetConfigFloat(VR_CONFIG_RECENTER_YAW) + hmdorientation.y);
|
|
|
|
float recenterYaw = ToRadians(VR_GetConfigFloat(VR_CONFIG_RECENTER_YAW));
|
2022-07-24 12:25:04 +00:00
|
|
|
spaceCreateInfo.poseInReferenceSpace.orientation.x = 0;
|
2022-11-06 10:30:27 +00:00
|
|
|
spaceCreateInfo.poseInReferenceSpace.orientation.y = sinf(recenterYaw / 2);
|
2022-07-24 12:25:04 +00:00
|
|
|
spaceCreateInfo.poseInReferenceSpace.orientation.z = 0;
|
2022-11-06 10:30:27 +00:00
|
|
|
spaceCreateInfo.poseInReferenceSpace.orientation.w = cosf(recenterYaw / 2);
|
2022-07-24 12:25:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete previous space instances
|
|
|
|
if (engine->appState.StageSpace != XR_NULL_HANDLE) {
|
|
|
|
OXR(xrDestroySpace(engine->appState.StageSpace));
|
|
|
|
}
|
|
|
|
if (engine->appState.FakeStageSpace != XR_NULL_HANDLE) {
|
|
|
|
OXR(xrDestroySpace(engine->appState.FakeStageSpace));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a default stage space to use if SPACE_TYPE_STAGE is not
|
|
|
|
// supported, or calls to xrGetReferenceSpaceBoundsRect fail.
|
|
|
|
spaceCreateInfo.referenceSpaceType = XR_REFERENCE_SPACE_TYPE_LOCAL;
|
2024-08-26 20:06:53 +00:00
|
|
|
spaceCreateInfo.poseInReferenceSpace = {};
|
|
|
|
spaceCreateInfo.poseInReferenceSpace.orientation.w = 1.0;
|
2022-11-06 13:37:56 +00:00
|
|
|
if (VR_GetPlatformFlag(VR_PLATFORM_TRACKING_FLOOR)) {
|
2022-11-04 13:22:42 +00:00
|
|
|
spaceCreateInfo.poseInReferenceSpace.position.y = -1.6750f;
|
|
|
|
}
|
2022-07-24 12:25:04 +00:00
|
|
|
OXR(xrCreateReferenceSpace(engine->appState.Session, &spaceCreateInfo, &engine->appState.FakeStageSpace));
|
|
|
|
ALOGV("Created fake stage space from local space with offset");
|
|
|
|
engine->appState.CurrentSpace = engine->appState.FakeStageSpace;
|
|
|
|
|
|
|
|
if (stageSupported) {
|
|
|
|
spaceCreateInfo.referenceSpaceType = XR_REFERENCE_SPACE_TYPE_STAGE;
|
2024-08-26 20:06:53 +00:00
|
|
|
spaceCreateInfo.poseInReferenceSpace = {};
|
|
|
|
spaceCreateInfo.poseInReferenceSpace.orientation.w = 1.0;
|
2022-07-24 12:25:04 +00:00
|
|
|
OXR(xrCreateReferenceSpace(engine->appState.Session, &spaceCreateInfo, &engine->appState.StageSpace));
|
|
|
|
ALOGV("Created stage space");
|
2022-11-06 13:37:56 +00:00
|
|
|
if (VR_GetPlatformFlag(VR_PLATFORM_TRACKING_FLOOR)) {
|
2022-11-04 13:22:42 +00:00
|
|
|
engine->appState.CurrentSpace = engine->appState.StageSpace;
|
|
|
|
}
|
2022-07-24 12:25:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update menu orientation
|
2022-11-06 10:30:27 +00:00
|
|
|
VR_SetConfigFloat(VR_CONFIG_MENU_PITCH, hmdorientation.x);
|
|
|
|
VR_SetConfigFloat(VR_CONFIG_MENU_YAW, 0.0f);
|
2022-07-12 16:53:46 +00:00
|
|
|
}
|
|
|
|
|
2024-06-24 15:00:56 +00:00
|
|
|
void VR_InitRenderer( engine_t* engine ) {
|
2022-08-16 14:47:31 +00:00
|
|
|
if (initialized) {
|
|
|
|
VR_DestroyRenderer(engine);
|
|
|
|
}
|
|
|
|
|
2023-06-17 14:33:21 +00:00
|
|
|
if (VR_GetPlatformFlag(VRPlatformFlag::VR_PLATFORM_EXTENSION_PASSTHROUGH)) {
|
|
|
|
INIT_PFN(xrCreatePassthroughFB);
|
|
|
|
INIT_PFN(xrDestroyPassthroughFB);
|
|
|
|
INIT_PFN(xrPassthroughStartFB);
|
|
|
|
INIT_PFN(xrPassthroughPauseFB);
|
|
|
|
INIT_PFN(xrCreatePassthroughLayerFB);
|
|
|
|
INIT_PFN(xrDestroyPassthroughLayerFB);
|
|
|
|
INIT_PFN(xrPassthroughLayerPauseFB);
|
|
|
|
INIT_PFN(xrPassthroughLayerResumeFB);
|
|
|
|
}
|
|
|
|
|
2022-07-12 16:53:46 +00:00
|
|
|
int eyeW, eyeH;
|
2022-07-24 12:25:04 +00:00
|
|
|
VR_GetResolution(engine, &eyeW, &eyeH);
|
2022-11-06 10:30:27 +00:00
|
|
|
VR_SetConfig(VR_CONFIG_VIEWPORT_WIDTH, eyeW);
|
|
|
|
VR_SetConfig(VR_CONFIG_VIEWPORT_HEIGHT, eyeH);
|
2022-07-12 16:53:46 +00:00
|
|
|
|
2022-07-24 12:25:04 +00:00
|
|
|
// Get the viewport configuration info for the chosen viewport configuration type.
|
|
|
|
engine->appState.ViewportConfig.type = XR_TYPE_VIEW_CONFIGURATION_PROPERTIES;
|
2022-08-29 20:06:59 +00:00
|
|
|
OXR(xrGetViewConfigurationProperties(engine->appState.Instance, engine->appState.SystemId, XR_VIEW_CONFIGURATION_TYPE_PRIMARY_STEREO, &engine->appState.ViewportConfig));
|
2022-07-12 16:53:46 +00:00
|
|
|
|
2022-07-24 12:25:04 +00:00
|
|
|
uint32_t numOutputSpaces = 0;
|
|
|
|
OXR(xrEnumerateReferenceSpaces(engine->appState.Session, 0, &numOutputSpaces, NULL));
|
2022-08-29 20:06:59 +00:00
|
|
|
XrReferenceSpaceType* referenceSpaces = (XrReferenceSpaceType*)malloc(numOutputSpaces * sizeof(XrReferenceSpaceType));
|
|
|
|
OXR(xrEnumerateReferenceSpaces(engine->appState.Session, numOutputSpaces, &numOutputSpaces, referenceSpaces));
|
2022-07-12 16:53:46 +00:00
|
|
|
|
2022-07-24 12:25:04 +00:00
|
|
|
for (uint32_t i = 0; i < numOutputSpaces; i++) {
|
|
|
|
if (referenceSpaces[i] == XR_REFERENCE_SPACE_TYPE_STAGE) {
|
2022-09-12 23:39:44 +00:00
|
|
|
stageSupported = true;
|
2022-07-24 12:25:04 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2022-07-12 16:53:46 +00:00
|
|
|
|
2022-07-24 12:25:04 +00:00
|
|
|
free(referenceSpaces);
|
2022-07-12 16:53:46 +00:00
|
|
|
|
2022-07-24 12:25:04 +00:00
|
|
|
if (engine->appState.CurrentSpace == XR_NULL_HANDLE) {
|
|
|
|
VR_Recenter(engine);
|
|
|
|
}
|
2022-07-12 16:53:46 +00:00
|
|
|
|
2022-07-24 12:25:04 +00:00
|
|
|
projections = (XrView*)(malloc(ovrMaxNumEyes * sizeof(XrView)));
|
2024-03-20 11:23:54 +00:00
|
|
|
for (int eye = 0; eye < ovrMaxNumEyes; eye++) {
|
|
|
|
memset(&projections[eye], 0, sizeof(XrView));
|
|
|
|
projections[eye].type = XR_TYPE_VIEW;
|
|
|
|
}
|
2022-07-12 16:53:46 +00:00
|
|
|
|
2022-09-14 17:53:55 +00:00
|
|
|
void* vulkanContext = nullptr;
|
2022-11-06 13:37:56 +00:00
|
|
|
if (VR_GetPlatformFlag(VR_PLATFORM_RENDERER_VULKAN)) {
|
2022-09-14 17:53:55 +00:00
|
|
|
vulkanContext = &engine->graphicsBindingVulkan;
|
|
|
|
}
|
2024-07-13 20:39:00 +00:00
|
|
|
ovrRenderer_Create(engine->appState.Session, &engine->appState.Renderer, eyeW, eyeH, vulkanContext);
|
2023-06-17 14:33:21 +00:00
|
|
|
|
|
|
|
if (VR_GetPlatformFlag(VRPlatformFlag::VR_PLATFORM_EXTENSION_PASSTHROUGH)) {
|
|
|
|
XrPassthroughCreateInfoFB ptci = {XR_TYPE_PASSTHROUGH_CREATE_INFO_FB};
|
|
|
|
XrResult result;
|
|
|
|
OXR(result = xrCreatePassthroughFB(engine->appState.Session, &ptci, &passthrough));
|
|
|
|
|
|
|
|
if (XR_SUCCEEDED(result)) {
|
|
|
|
XrPassthroughLayerCreateInfoFB plci = {XR_TYPE_PASSTHROUGH_LAYER_CREATE_INFO_FB};
|
|
|
|
plci.passthrough = passthrough;
|
|
|
|
plci.purpose = XR_PASSTHROUGH_LAYER_PURPOSE_RECONSTRUCTION_FB;
|
|
|
|
OXR(xrCreatePassthroughLayerFB(engine->appState.Session, &plci, &passthroughLayer));
|
|
|
|
}
|
|
|
|
|
|
|
|
OXR(xrPassthroughStartFB(passthrough));
|
|
|
|
}
|
2022-09-12 23:39:44 +00:00
|
|
|
initialized = true;
|
2022-07-12 16:53:46 +00:00
|
|
|
}
|
|
|
|
|
2022-07-23 11:14:53 +00:00
|
|
|
void VR_DestroyRenderer( engine_t* engine ) {
|
2023-06-17 14:33:21 +00:00
|
|
|
if (VR_GetPlatformFlag(VRPlatformFlag::VR_PLATFORM_EXTENSION_PASSTHROUGH)) {
|
2024-02-26 11:56:14 +00:00
|
|
|
if (passthroughRunning) {
|
|
|
|
OXR(xrPassthroughLayerPauseFB(passthroughLayer));
|
|
|
|
}
|
2023-06-17 14:33:21 +00:00
|
|
|
OXR(xrPassthroughPauseFB(passthrough));
|
|
|
|
OXR(xrDestroyPassthroughFB(passthrough));
|
|
|
|
passthrough = XR_NULL_HANDLE;
|
|
|
|
}
|
2022-07-24 12:25:04 +00:00
|
|
|
ovrRenderer_Destroy(&engine->appState.Renderer);
|
|
|
|
free(projections);
|
2022-09-12 23:39:44 +00:00
|
|
|
initialized = false;
|
2022-07-12 16:53:46 +00:00
|
|
|
}
|
|
|
|
|
2022-09-04 10:36:52 +00:00
|
|
|
bool VR_InitFrame( engine_t* engine ) {
|
2022-09-12 23:39:44 +00:00
|
|
|
bool stageBoundsDirty = true;
|
2022-07-24 12:25:04 +00:00
|
|
|
if (ovrApp_HandleXrEvents(&engine->appState)) {
|
|
|
|
VR_Recenter(engine);
|
|
|
|
}
|
2022-09-12 23:39:44 +00:00
|
|
|
if (engine->appState.SessionActive == false) {
|
2022-08-19 14:59:39 +00:00
|
|
|
return false;
|
2022-07-24 12:25:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (stageBoundsDirty) {
|
|
|
|
VR_UpdateStageBounds(&engine->appState);
|
2022-09-12 23:39:44 +00:00
|
|
|
stageBoundsDirty = false;
|
2022-07-24 12:25:04 +00:00
|
|
|
}
|
|
|
|
|
2024-02-26 11:56:14 +00:00
|
|
|
// Update passthrough
|
2024-04-06 10:04:45 +00:00
|
|
|
if (passthroughRunning != (VR_GetConfig(VR_CONFIG_PASSTHROUGH) != 0)) {
|
2024-02-26 11:56:14 +00:00
|
|
|
if (VR_GetConfig(VR_CONFIG_PASSTHROUGH)) {
|
|
|
|
OXR(xrPassthroughLayerResumeFB(passthroughLayer));
|
|
|
|
} else {
|
|
|
|
OXR(xrPassthroughLayerPauseFB(passthroughLayer));
|
|
|
|
}
|
2024-04-06 10:04:45 +00:00
|
|
|
passthroughRunning = (VR_GetConfig(VR_CONFIG_PASSTHROUGH) != 0);
|
2024-02-26 11:56:14 +00:00
|
|
|
}
|
|
|
|
|
2022-07-24 12:25:04 +00:00
|
|
|
// NOTE: OpenXR does not use the concept of frame indices. Instead,
|
|
|
|
// XrWaitFrame returns the predicted display time.
|
|
|
|
XrFrameWaitInfo waitFrameInfo = {};
|
|
|
|
waitFrameInfo.type = XR_TYPE_FRAME_WAIT_INFO;
|
|
|
|
waitFrameInfo.next = NULL;
|
|
|
|
|
|
|
|
frameState.type = XR_TYPE_FRAME_STATE;
|
|
|
|
frameState.next = NULL;
|
|
|
|
|
|
|
|
OXR(xrWaitFrame(engine->appState.Session, &waitFrameInfo, &frameState));
|
|
|
|
engine->predictedDisplayTime = frameState.predictedDisplayTime;
|
|
|
|
|
|
|
|
XrViewLocateInfo projectionInfo = {};
|
|
|
|
projectionInfo.type = XR_TYPE_VIEW_LOCATE_INFO;
|
2024-03-20 11:23:54 +00:00
|
|
|
projectionInfo.next = NULL;
|
2022-07-24 12:25:04 +00:00
|
|
|
projectionInfo.viewConfigurationType = engine->appState.ViewportConfig.viewConfigurationType;
|
|
|
|
projectionInfo.displayTime = frameState.predictedDisplayTime;
|
|
|
|
projectionInfo.space = engine->appState.CurrentSpace;
|
|
|
|
|
|
|
|
XrViewState viewState = {XR_TYPE_VIEW_STATE, NULL};
|
|
|
|
|
|
|
|
uint32_t projectionCapacityInput = ovrMaxNumEyes;
|
|
|
|
uint32_t projectionCountOutput = projectionCapacityInput;
|
|
|
|
|
|
|
|
OXR(xrLocateViews(
|
|
|
|
engine->appState.Session,
|
|
|
|
&projectionInfo,
|
|
|
|
&viewState,
|
|
|
|
projectionCapacityInput,
|
|
|
|
&projectionCountOutput,
|
|
|
|
projections));
|
2023-06-26 15:26:56 +00:00
|
|
|
|
2024-03-20 11:23:54 +00:00
|
|
|
// Get the HMD pose, predicted for the middle of the time period during which
|
|
|
|
// the new eye images will be displayed. The number of frames predicted ahead
|
|
|
|
// depends on the pipeline depth of the engine and the synthesis rate.
|
|
|
|
// The better the prediction, the less black will be pulled in at the edges.
|
|
|
|
XrFrameBeginInfo beginFrameDesc = {};
|
|
|
|
beginFrameDesc.type = XR_TYPE_FRAME_BEGIN_INFO;
|
|
|
|
beginFrameDesc.next = NULL;
|
|
|
|
OXR(xrBeginFrame(engine->appState.Session, &beginFrameDesc));
|
2022-07-24 12:25:04 +00:00
|
|
|
|
2022-09-20 16:57:58 +00:00
|
|
|
fov = {};
|
2022-07-24 12:25:04 +00:00
|
|
|
for (int eye = 0; eye < ovrMaxNumEyes; eye++) {
|
2022-09-20 16:57:58 +00:00
|
|
|
fov.angleLeft += projections[eye].fov.angleLeft / 2.0f;
|
|
|
|
fov.angleRight += projections[eye].fov.angleRight / 2.0f;
|
|
|
|
fov.angleUp += projections[eye].fov.angleUp / 2.0f;
|
|
|
|
fov.angleDown += projections[eye].fov.angleDown / 2.0f;
|
2022-07-24 12:25:04 +00:00
|
|
|
invViewTransform[eye] = projections[eye].pose;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update HMD and controllers
|
2022-08-01 15:11:23 +00:00
|
|
|
hmdorientation = XrQuaternionf_ToEulerAngles(invViewTransform[0].orientation);
|
2022-07-17 12:45:02 +00:00
|
|
|
IN_VRInputFrame(engine);
|
2022-07-12 16:53:46 +00:00
|
|
|
|
2022-07-24 12:25:04 +00:00
|
|
|
engine->appState.LayerCount = 0;
|
|
|
|
memset(engine->appState.Layers, 0, sizeof(ovrCompositorLayer_Union) * ovrMaxLayerCount);
|
2022-09-04 10:36:52 +00:00
|
|
|
return true;
|
|
|
|
}
|
2022-07-12 16:53:46 +00:00
|
|
|
|
2022-09-04 10:36:52 +00:00
|
|
|
void VR_BeginFrame( engine_t* engine, int fboIndex ) {
|
|
|
|
vrConfig[VR_CONFIG_CURRENT_FBO] = fboIndex;
|
2022-09-12 23:39:44 +00:00
|
|
|
ovrFramebuffer_Acquire(&engine->appState.Renderer.FrameBuffer[fboIndex]);
|
2022-07-15 13:41:21 +00:00
|
|
|
}
|
2022-07-12 16:53:46 +00:00
|
|
|
|
2022-07-24 12:14:21 +00:00
|
|
|
void VR_EndFrame( engine_t* engine ) {
|
2022-09-04 10:36:52 +00:00
|
|
|
int fboIndex = vrConfig[VR_CONFIG_CURRENT_FBO];
|
2022-08-19 14:59:39 +00:00
|
|
|
VR_BindFramebuffer(engine);
|
2022-07-24 12:25:04 +00:00
|
|
|
|
2022-09-01 16:08:08 +00:00
|
|
|
// Show mouse cursor
|
2022-10-16 18:28:45 +00:00
|
|
|
int vrMode = vrConfig[VR_CONFIG_MODE];
|
|
|
|
bool screenMode = (vrMode == VR_MODE_MONO_SCREEN) || (vrMode == VR_MODE_STEREO_SCREEN);
|
2022-11-17 17:26:18 +00:00
|
|
|
if (screenMode && (vrConfig[VR_CONFIG_MOUSE_SIZE] > 0)) {
|
2022-09-12 23:39:44 +00:00
|
|
|
int x = vrConfig[VR_CONFIG_MOUSE_X];
|
|
|
|
int y = vrConfig[VR_CONFIG_MOUSE_Y];
|
2022-11-17 17:26:18 +00:00
|
|
|
int sx = vrConfig[VR_CONFIG_MOUSE_SIZE];
|
2022-11-21 13:54:48 +00:00
|
|
|
int sy = (int)((float)sx * VR_GetConfigFloat(VR_CONFIG_CANVAS_ASPECT));
|
2022-11-17 17:26:18 +00:00
|
|
|
ovrRenderer_MouseCursor(&engine->appState.Renderer, x, y, sx, sy);
|
2022-09-01 16:08:08 +00:00
|
|
|
}
|
|
|
|
|
2022-10-12 14:21:54 +00:00
|
|
|
ovrFramebuffer_Release(&engine->appState.Renderer.FrameBuffer[fboIndex]);
|
2022-09-04 10:36:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void VR_FinishFrame( engine_t* engine ) {
|
|
|
|
int vrMode = vrConfig[VR_CONFIG_MODE];
|
2022-07-24 12:25:04 +00:00
|
|
|
XrCompositionLayerProjectionView projection_layer_elements[2] = {};
|
2024-07-22 11:33:03 +00:00
|
|
|
bool headTracking = (vrMode == VR_MODE_MONO_6DOF) || (vrMode == VR_MODE_SBS_6DOF) || (vrMode == VR_MODE_STEREO_6DOF);
|
|
|
|
bool reprojection = vrConfig[VR_CONFIG_REPROJECTION];
|
|
|
|
if (headTracking && reprojection) {
|
2022-11-06 10:30:27 +00:00
|
|
|
VR_SetConfigFloat(VR_CONFIG_MENU_YAW, hmdorientation.y);
|
2022-07-24 12:25:04 +00:00
|
|
|
|
2024-06-24 15:00:56 +00:00
|
|
|
for (int eye = 0; eye < ovrMaxNumEyes; eye++) {;
|
2022-09-04 10:36:52 +00:00
|
|
|
ovrFramebuffer* frameBuffer = &engine->appState.Renderer.FrameBuffer[0];
|
2022-09-21 14:44:31 +00:00
|
|
|
XrPosef pose = invViewTransform[0];
|
2024-06-24 15:38:17 +00:00
|
|
|
if (vrMode != VR_MODE_MONO_6DOF) {
|
|
|
|
pose = invViewTransform[eye];
|
|
|
|
}
|
2024-06-24 15:26:38 +00:00
|
|
|
if (vrMode == VR_MODE_STEREO_6DOF) {
|
|
|
|
frameBuffer = &engine->appState.Renderer.FrameBuffer[eye];
|
2022-07-24 12:25:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
memset(&projection_layer_elements[eye], 0, sizeof(XrCompositionLayerProjectionView));
|
|
|
|
projection_layer_elements[eye].type = XR_TYPE_COMPOSITION_LAYER_PROJECTION_VIEW;
|
2022-09-21 14:44:31 +00:00
|
|
|
projection_layer_elements[eye].pose = pose;
|
2022-07-25 17:42:28 +00:00
|
|
|
projection_layer_elements[eye].fov = fov;
|
2022-07-24 12:25:04 +00:00
|
|
|
|
|
|
|
memset(&projection_layer_elements[eye].subImage, 0, sizeof(XrSwapchainSubImage));
|
|
|
|
projection_layer_elements[eye].subImage.swapchain = frameBuffer->ColorSwapChain.Handle;
|
|
|
|
projection_layer_elements[eye].subImage.imageRect.offset.x = 0;
|
|
|
|
projection_layer_elements[eye].subImage.imageRect.offset.y = 0;
|
|
|
|
projection_layer_elements[eye].subImage.imageRect.extent.width = frameBuffer->ColorSwapChain.Width;
|
|
|
|
projection_layer_elements[eye].subImage.imageRect.extent.height = frameBuffer->ColorSwapChain.Height;
|
2024-06-24 15:00:56 +00:00
|
|
|
projection_layer_elements[eye].subImage.imageArrayIndex = 0;
|
2024-06-24 15:26:38 +00:00
|
|
|
|
|
|
|
if (vrMode == VR_MODE_SBS_6DOF) {
|
|
|
|
projection_layer_elements[eye].subImage.imageRect.extent.width /= 2;
|
|
|
|
if (eye == 1) {
|
|
|
|
projection_layer_elements[eye].subImage.imageRect.offset.x += frameBuffer->ColorSwapChain.Width / 2;
|
|
|
|
}
|
|
|
|
}
|
2022-07-24 12:25:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
XrCompositionLayerProjection projection_layer = {};
|
|
|
|
projection_layer.type = XR_TYPE_COMPOSITION_LAYER_PROJECTION;
|
|
|
|
projection_layer.layerFlags = XR_COMPOSITION_LAYER_BLEND_TEXTURE_SOURCE_ALPHA_BIT;
|
|
|
|
projection_layer.layerFlags |= XR_COMPOSITION_LAYER_CORRECT_CHROMATIC_ABERRATION_BIT;
|
|
|
|
projection_layer.space = engine->appState.CurrentSpace;
|
|
|
|
projection_layer.viewCount = ovrMaxNumEyes;
|
|
|
|
projection_layer.views = projection_layer_elements;
|
|
|
|
|
|
|
|
engine->appState.Layers[engine->appState.LayerCount++].Projection = projection_layer;
|
2024-07-22 11:33:03 +00:00
|
|
|
} else {
|
2022-07-24 12:25:04 +00:00
|
|
|
|
2022-10-16 18:28:45 +00:00
|
|
|
// Flat screen pose
|
2023-07-12 17:33:29 +00:00
|
|
|
float distance = VR_GetConfigFloat(VR_CONFIG_CANVAS_DISTANCE) / 4.0f - 1.0f;
|
2022-11-06 10:30:27 +00:00
|
|
|
float menuPitch = ToRadians(VR_GetConfigFloat(VR_CONFIG_MENU_PITCH));
|
|
|
|
float menuYaw = ToRadians(VR_GetConfigFloat(VR_CONFIG_MENU_YAW));
|
2023-07-12 17:33:29 +00:00
|
|
|
XrVector3f pos = {-sinf(menuYaw) * distance, 0, -cosf(menuYaw) * distance};
|
|
|
|
if (!VR_GetConfig(VR_CONFIG_CANVAS_6DOF)) {
|
|
|
|
pos.x += invViewTransform[0].position.x;
|
|
|
|
pos.y += invViewTransform[0].position.y;
|
|
|
|
pos.z += invViewTransform[0].position.z;
|
|
|
|
}
|
2022-09-01 16:08:08 +00:00
|
|
|
XrQuaternionf pitch = XrQuaternionf_CreateFromVectorAngle({1, 0, 0}, -menuPitch);
|
|
|
|
XrQuaternionf yaw = XrQuaternionf_CreateFromVectorAngle({0, 1, 0}, menuYaw);
|
2022-10-16 18:28:45 +00:00
|
|
|
|
|
|
|
// Setup the cylinder layer
|
|
|
|
XrCompositionLayerCylinderKHR cylinder_layer = {};
|
|
|
|
cylinder_layer.type = XR_TYPE_COMPOSITION_LAYER_CYLINDER_KHR;
|
|
|
|
cylinder_layer.layerFlags = XR_COMPOSITION_LAYER_BLEND_TEXTURE_SOURCE_ALPHA_BIT;
|
|
|
|
cylinder_layer.space = engine->appState.CurrentSpace;
|
|
|
|
memset(&cylinder_layer.subImage, 0, sizeof(XrSwapchainSubImage));
|
|
|
|
cylinder_layer.subImage.imageRect.offset.x = 0;
|
|
|
|
cylinder_layer.subImage.imageRect.offset.y = 0;
|
|
|
|
cylinder_layer.subImage.imageRect.extent.width = engine->appState.Renderer.FrameBuffer[0].ColorSwapChain.Width;
|
|
|
|
cylinder_layer.subImage.imageRect.extent.height = engine->appState.Renderer.FrameBuffer[0].ColorSwapChain.Height;
|
|
|
|
cylinder_layer.subImage.swapchain = engine->appState.Renderer.FrameBuffer[0].ColorSwapChain.Handle;
|
|
|
|
cylinder_layer.subImage.imageArrayIndex = 0;
|
2022-08-15 17:55:09 +00:00
|
|
|
cylinder_layer.pose.orientation = XrQuaternionf_Multiply(pitch, yaw);
|
2022-07-24 12:25:04 +00:00
|
|
|
cylinder_layer.pose.position = pos;
|
2023-07-12 17:33:29 +00:00
|
|
|
cylinder_layer.radius = 2.0f;
|
2022-11-06 10:30:27 +00:00
|
|
|
cylinder_layer.centralAngle = (float)(M_PI * 0.5);
|
2022-11-17 16:30:29 +00:00
|
|
|
cylinder_layer.aspectRatio = VR_GetConfigFloat(VR_CONFIG_CANVAS_ASPECT);
|
2024-07-22 11:33:03 +00:00
|
|
|
if (headTracking && !reprojection) {
|
|
|
|
float width = engine->appState.ViewConfigurationView[0].recommendedImageRectWidth;
|
|
|
|
float height = engine->appState.ViewConfigurationView[0].recommendedImageRectHeight;
|
|
|
|
cylinder_layer.aspectRatio = 2.0f * width / height;
|
|
|
|
cylinder_layer.centralAngle = (float)(M_PI);
|
|
|
|
}
|
2022-07-24 12:25:04 +00:00
|
|
|
|
2022-10-16 18:28:45 +00:00
|
|
|
// Build the cylinder layer
|
2024-07-22 11:33:03 +00:00
|
|
|
if ((vrMode == VR_MODE_MONO_SCREEN) || (vrMode == VR_MODE_MONO_6DOF)) {
|
2022-10-16 18:28:45 +00:00
|
|
|
cylinder_layer.eyeVisibility = XR_EYE_VISIBILITY_BOTH;
|
|
|
|
engine->appState.Layers[engine->appState.LayerCount++].Cylinder = cylinder_layer;
|
2024-07-22 11:33:03 +00:00
|
|
|
} else if ((vrMode == VR_MODE_SBS_SCREEN) || (vrMode == VR_MODE_SBS_6DOF)) {
|
2024-06-24 15:26:38 +00:00
|
|
|
cylinder_layer.eyeVisibility = XR_EYE_VISIBILITY_LEFT;
|
|
|
|
cylinder_layer.subImage.imageRect.extent.width /= 2;
|
|
|
|
engine->appState.Layers[engine->appState.LayerCount++].Cylinder = cylinder_layer;
|
|
|
|
cylinder_layer.eyeVisibility = XR_EYE_VISIBILITY_RIGHT;
|
|
|
|
cylinder_layer.subImage.imageRect.offset.x += cylinder_layer.subImage.imageRect.extent.width;
|
|
|
|
engine->appState.Layers[engine->appState.LayerCount++].Cylinder = cylinder_layer;
|
2022-10-16 18:28:45 +00:00
|
|
|
} else {
|
|
|
|
cylinder_layer.eyeVisibility = XR_EYE_VISIBILITY_LEFT;
|
|
|
|
engine->appState.Layers[engine->appState.LayerCount++].Cylinder = cylinder_layer;
|
|
|
|
cylinder_layer.eyeVisibility = XR_EYE_VISIBILITY_RIGHT;
|
|
|
|
cylinder_layer.subImage.swapchain = engine->appState.Renderer.FrameBuffer[1].ColorSwapChain.Handle;
|
|
|
|
engine->appState.Layers[engine->appState.LayerCount++].Cylinder = cylinder_layer;
|
|
|
|
}
|
2022-07-24 12:25:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Compose the layers for this frame.
|
|
|
|
const XrCompositionLayerBaseHeader* layers[ovrMaxLayerCount] = {};
|
|
|
|
for (int i = 0; i < engine->appState.LayerCount; i++) {
|
|
|
|
layers[i] = (const XrCompositionLayerBaseHeader*)&engine->appState.Layers[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
XrFrameEndInfo endFrameInfo = {};
|
|
|
|
endFrameInfo.type = XR_TYPE_FRAME_END_INFO;
|
|
|
|
endFrameInfo.displayTime = frameState.predictedDisplayTime;
|
|
|
|
endFrameInfo.environmentBlendMode = XR_ENVIRONMENT_BLEND_MODE_OPAQUE;
|
|
|
|
endFrameInfo.layerCount = engine->appState.LayerCount;
|
|
|
|
endFrameInfo.layers = layers;
|
|
|
|
OXR(xrEndFrame(engine->appState.Session, &endFrameInfo));
|
2022-08-17 17:14:36 +00:00
|
|
|
}
|
2022-07-15 13:41:21 +00:00
|
|
|
|
2022-07-27 17:47:11 +00:00
|
|
|
int VR_GetConfig( VRConfig config ) {
|
|
|
|
return vrConfig[config];
|
2022-07-24 18:04:29 +00:00
|
|
|
}
|
|
|
|
|
2022-07-27 17:47:11 +00:00
|
|
|
void VR_SetConfig( VRConfig config, int value) {
|
|
|
|
vrConfig[config] = value;
|
2022-07-26 15:20:46 +00:00
|
|
|
}
|
|
|
|
|
2022-11-06 10:30:27 +00:00
|
|
|
float VR_GetConfigFloat(VRConfigFloat config) {
|
|
|
|
return vrConfigFloat[config];
|
|
|
|
}
|
|
|
|
|
|
|
|
void VR_SetConfigFloat(VRConfigFloat config, float value) {
|
|
|
|
vrConfigFloat[config] = value;
|
|
|
|
}
|
|
|
|
|
2022-10-12 14:21:54 +00:00
|
|
|
void* VR_BindFramebuffer(engine_t *engine) {
|
|
|
|
if (!initialized) return nullptr;
|
2022-11-06 10:30:27 +00:00
|
|
|
int fboIndex = VR_GetConfig(VR_CONFIG_CURRENT_FBO);
|
2022-10-12 14:21:54 +00:00
|
|
|
return ovrFramebuffer_SetCurrent(&engine->appState.Renderer.FrameBuffer[fboIndex]);
|
2022-07-24 12:14:21 +00:00
|
|
|
}
|
|
|
|
|
2022-11-06 21:06:27 +00:00
|
|
|
XrView VR_GetView(int eye) {
|
|
|
|
return projections[eye];
|
2022-07-15 13:41:21 +00:00
|
|
|
}
|
2023-01-28 10:50:46 +00:00
|
|
|
|
|
|
|
XrVector3f VR_GetHMDAngles() {
|
|
|
|
return hmdorientation;
|
|
|
|
}
|