]> git.tdb.fi Git - libs/vr.git/blob - source/oculusriftcamera.cpp
db07bce716b7ba070e0afb118d832c12bce0d318
[libs/vr.git] / source / oculusriftcamera.cpp
1 #include "oculusriftcamera.h"
2 #include "oculusriftdevice.h"
3 #include "oculusriftdevice_private.h"
4
5 namespace Msp {
6 namespace VR {
7
8 OculusRiftCamera::OculusRiftCamera(const OculusRiftDevice &d, const GL::Camera &c):
9         device(d),
10         base_camera(c)
11 {
12         const OculusRiftDevice::Private &dev_priv = device.get_private();
13         unsigned supported = ovrTrackingCap_Orientation|ovrTrackingCap_MagYawCorrection;
14         ovrHmd_ConfigureTracking(dev_priv.ovr_hmd, supported, 0);
15 }
16
17 void OculusRiftCamera::update()
18 {
19         ovrTrackingState state = ovrHmd_GetTrackingState(device.get_private().ovr_hmd, ovr_GetTimeInSeconds());
20         OVR::Posef head_pose = state.HeadPose.ThePose;
21         OVR::Matrix4f tracking_matrix(head_pose.Rotation);
22         const float *m = &tracking_matrix.M[0][0];
23
24         const GL::Vector3 &base_look = base_camera.get_look_direction();
25         GL::Vector3 base_right = normalize(cross(base_look, base_camera.get_up_direction()));
26         GL::Vector3 base_up = normalize(cross(base_right, base_look));
27
28         set_position(base_camera.get_position());
29         set_up_direction(base_right*m[1]+base_up*m[5]-base_look*m[9]);
30         set_look_direction(-base_right*m[2]-base_up*m[6]+base_look*m[10]);
31         set_depth_clip(base_camera.get_near_clip(), base_camera.get_far_clip());
32         set_field_of_view(base_camera.get_field_of_view());
33         set_aspect(base_camera.get_aspect());
34 }
35
36 } // namespace VR
37 } // namespace Msp