PolycodeVR.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. Copyright (C) 2016 by Ivan Safrin
  3. Permission is hereby granted, free of charge, to any person obtaining a copy
  4. of this software and associated documentation files (the "Software"), to deal
  5. in the Software without restriction, including without limitation the rights
  6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. copies of the Software, and to permit persons to whom the Software is
  8. furnished to do so, subject to the following conditions:
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  14. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  15. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  16. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  17. THE SOFTWARE.
  18. */
  19. #pragma once
  20. #include <openvr.h>
  21. #include "Polycode.h"
  22. using namespace Polycode;
  23. class PolycodeVR {
  24. public:
  25. PolycodeVR();
  26. int shutdownVR();
  27. int initVR(Core *core, Scene *targetScene);
  28. void processEvents();
  29. void Update();
  30. void Render();
  31. void submitToCompositorLeft();
  32. void submitToCompositorRight();
  33. std::mutex updateMutex;
  34. private:
  35. static void VRRenderCallbackLeft(void *data);
  36. static void VRRenderCallbackRight(void *data);
  37. Matrix4 GetHMDMatrixProjectionEye(vr::Hmd_Eye nEye, Number nearClip, Number farClip);
  38. Matrix4 GetHMDMatrixPoseEye(vr::Hmd_Eye nEye);
  39. void UpdateHMDMatrixPose();
  40. Matrix4 ConvertSteamVRMatrixToMatrix4(const vr::HmdMatrix34_t &matPose);
  41. void ProcessVREvent(const vr::VREvent_t & event);
  42. vr::IVRSystem *m_pHMD;
  43. vr::TrackedDevicePose_t m_rTrackedDevicePose[vr::k_unMaxTrackedDeviceCount];
  44. std::string m_strPoseClasses;
  45. Matrix4 m_rmat4DevicePose[vr::k_unMaxTrackedDeviceCount];
  46. char m_rDevClassChar[vr::k_unMaxTrackedDeviceCount];
  47. Matrix4 m_mat4HMDPose;
  48. float lastTicks;
  49. int m_iTrackedControllerCount;
  50. int m_iValidPoseCount;
  51. int m_iValidPoseCount_Last;
  52. Camera *leftEyeCamera;
  53. Camera *rightEyeCamera;
  54. Core *core;
  55. Scene *targetScene;
  56. std::shared_ptr<RenderBuffer> leftRenderTexture;
  57. std::shared_ptr<RenderBuffer> rightRenderTexture;
  58. };