From 63a230ae2152a23c576adf0a241a3d74c9700e7a Mon Sep 17 00:00:00 2001 From: Mikael Rasmussen Date: Fri, 26 Oct 2018 13:05:34 +0200 Subject: [PATCH 1/2] Vr example runs, but does not render properly --- .gitignore | 1 + Bindings/Raylib.cs | 84 +++++++++++++++++++++++++++++- Examples/core/core_vr_simulator.cs | 5 +- 3 files changed, 85 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index acb8c16..3526b78 100644 --- a/.gitignore +++ b/.gitignore @@ -475,3 +475,4 @@ $RECYCLE.BIN/ # End of https://www.gitignore.io/api/git,linux,csharp,windows,visualstudio Test +/Examples/core/storage.data diff --git a/Bindings/Raylib.cs b/Bindings/Raylib.cs index 238ab7e..2da4353 100644 --- a/Bindings/Raylib.cs +++ b/Bindings/Raylib.cs @@ -2201,9 +2201,89 @@ namespace Raylib public static extern void EndBlendMode(); // VR control functions + // TODO: fix this, it's not using the original raylib dll function // Get VR device information for some standard devices - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern VrDeviceInfo GetVrDeviceInfo(int vrDeviceType); + //[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + //public static extern VrDeviceInfo GetVrDeviceInfo(int vrDeviceType); + public static VrDeviceInfo GetVrDeviceInfo(VrDeviceType vrDeviceType) + { + VrDeviceInfo hmd = new VrDeviceInfo(); // Current VR device info + + switch (vrDeviceType) + { + case VrDeviceType.HMD_DEFAULT_DEVICE: + case VrDeviceType.HMD_OCULUS_RIFT_CV1: + { + // Oculus Rift CV1 parameters + // NOTE: CV1 represents a complete HMD redesign compared to previous versions, + // new Fresnel-hybrid-asymmetric lenses have been added and, consequently, + // previous parameters (DK2) and distortion shader (DK2) doesn't work any more. + // I just defined a set of parameters for simulator that approximate to CV1 stereo rendering + // but result is not the same obtained with Oculus PC SDK. + hmd.hResolution = 2160; // HMD horizontal resolution in pixels + hmd.vResolution = 1200; // HMD vertical resolution in pixels + hmd.hScreenSize = 0.133793f; // HMD horizontal size in meters + hmd.vScreenSize = 0.0669f; // HMD vertical size in meters + hmd.vScreenCenter = 0.04678f; // HMD screen center in meters + hmd.eyeToScreenDistance = 0.041f; // HMD distance between eye and display in meters + hmd.lensSeparationDistance = 0.07f; // HMD lens separation distance in meters + hmd.interpupillaryDistance = 0.07f; // HMD IPD (distance between pupils) in meters + hmd.lensDistortionValues[0] = 1.0f; // HMD lens distortion constant parameter 0 + hmd.lensDistortionValues[1] = 0.22f; // HMD lens distortion constant parameter 1 + hmd.lensDistortionValues[2] = 0.24f; // HMD lens distortion constant parameter 2 + hmd.lensDistortionValues[3] = 0.0f; // HMD lens distortion constant parameter 3 + hmd.chromaAbCorrection[0] = 0.996f; // HMD chromatic aberration correction parameter 0 + hmd.chromaAbCorrection[1] = -0.004f; // HMD chromatic aberration correction parameter 1 + hmd.chromaAbCorrection[2] = 1.014f; // HMD chromatic aberration correction parameter 2 + hmd.chromaAbCorrection[3] = 0.0f; // HMD chromatic aberration correction parameter 3 + + TraceLog((int)LogType.LOG_INFO, "Initializing VR Simulator (Oculus Rift CV1)"); + } + break; + case VrDeviceType.HMD_OCULUS_RIFT_DK2: + { + // Oculus Rift DK2 parameters + hmd.hResolution = 1280; // HMD horizontal resolution in pixels + hmd.vResolution = 800; // HMD vertical resolution in pixels + hmd.hScreenSize = 0.14976f; // HMD horizontal size in meters + hmd.vScreenSize = 0.09356f; // HMD vertical size in meters + hmd.vScreenCenter = 0.04678f; // HMD screen center in meters + hmd.eyeToScreenDistance = 0.041f; // HMD distance between eye and display in meters + hmd.lensSeparationDistance = 0.0635f; // HMD lens separation distance in meters + hmd.interpupillaryDistance = 0.064f; // HMD IPD (distance between pupils) in meters + hmd.lensDistortionValues[0] = 1.0f; // HMD lens distortion constant parameter 0 + hmd.lensDistortionValues[1] = 0.22f; // HMD lens distortion constant parameter 1 + hmd.lensDistortionValues[2] = 0.24f; // HMD lens distortion constant parameter 2 + hmd.lensDistortionValues[3] = 0.0f; // HMD lens distortion constant parameter 3 + hmd.chromaAbCorrection[0] = 0.996f; // HMD chromatic aberration correction parameter 0 + hmd.chromaAbCorrection[1] = -0.004f; // HMD chromatic aberration correction parameter 1 + hmd.chromaAbCorrection[2] = 1.014f; // HMD chromatic aberration correction parameter 2 + hmd.chromaAbCorrection[3] = 0.0f; // HMD chromatic aberration correction parameter 3 + + TraceLog((int)LogType.LOG_INFO, "Initializing VR Simulator (Oculus Rift DK2)"); + } + break; + case VrDeviceType.HMD_OCULUS_GO: + { + // TODO: Provide device display and lens parameters + break; + } + case VrDeviceType.HMD_VALVE_HTC_VIVE: + { + // TODO: Provide device display and lens parameters + break; + } + case VrDeviceType.HMD_SONY_PSVR: + { + // TODO: Provide device display and lens parameters + break; + } + default: break; + } + + return hmd; + } + // Init VR simulator for selected device parameters [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] diff --git a/Examples/core/core_vr_simulator.cs b/Examples/core/core_vr_simulator.cs index 63a58b7..f570f45 100644 --- a/Examples/core/core_vr_simulator.cs +++ b/Examples/core/core_vr_simulator.cs @@ -29,9 +29,8 @@ public partial class core_vr_simulator InitWindow(screenWidth, screenHeight, "raylib [core] example - vr simulator"); - // Init VR simulator (Oculus Rift CV1 parameters) - // fails? - InitVrSimulator(GetVrDeviceInfo((int)HMD_OCULUS_RIFT_CV1)); + // Init VR simulator (Oculus Rift CV1 parameters) + InitVrSimulator(GetVrDeviceInfo(HMD_OCULUS_RIFT_CV1)); // Define the camera to look into our 3d world Camera3D camera; From 907da7f6140c72467193d0e7583e76b19493ad3c Mon Sep 17 00:00:00 2001 From: Mikael Rasmussen Date: Fri, 26 Oct 2018 19:19:28 +0200 Subject: [PATCH 2/2] pre define distorion values --- Bindings/Raylib.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bindings/Raylib.cs b/Bindings/Raylib.cs index ea2f2d7..e7a42fc 100644 --- a/Bindings/Raylib.cs +++ b/Bindings/Raylib.cs @@ -711,8 +711,8 @@ namespace Raylib public float eyeToScreenDistance; public float lensSeparationDistance; public float interpupillaryDistance; - public IntPtr lensDistortionValues; - public IntPtr chromaAbCorrection; + public float[] lensDistortionValues = new float[4]; + public float[] chromaAbCorrection = new float[4]; } #endregion