1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
/* Copyright (c) 2013 mm0zct
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include "ftnoir_tracker_rift_025.h"
#include "api/plugin-api.hpp"
#include <OVR.h>
#include <cstdio>
#include <cmath>
using namespace OVR;
rift_tracker_025::rift_tracker_025()
{
pManager = NULL;
pSensor = NULL;
pSFusion = NULL;
old_yaw = 0;
}
rift_tracker_025::~rift_tracker_025()
{
if (pSensor)
pSensor->Release();
if (pSFusion)
delete pSFusion;
if (pManager)
pManager->Release();
System::Destroy();
}
void rift_tracker_025::start_tracker(QFrame*)
{
System::Init(Log::ConfigureDefaultLog(LogMask_All));
pManager = DeviceManager::Create();
if (pManager != NULL)
{
DeviceEnumerator<OVR::SensorDevice> enumerator = pManager->EnumerateDevices<OVR::SensorDevice>();
if (enumerator.IsAvailable())
{
pSensor = enumerator.CreateDevice();
if (pSensor)
{
pSFusion = new OVR::SensorFusion();
pSFusion->Reset();
pSFusion->AttachToSensor(pSensor);
}
else
{
QMessageBox::warning(nullptr,
QCoreApplication::translate("rift_tracker_025", "Error"),
QCoreApplication::translate("rift_tracker_025", "Unable to create Rift sensor"),
QMessageBox::Ok,QMessageBox::NoButton);
}
}
else
{
QMessageBox::warning(nullptr,
QCoreApplication::translate("rift_tracker_025", "Error"),
QCoreApplication::translate("rift_tracker_025", "Unable to enumerate Rift tracker"),
QMessageBox::Ok,QMessageBox::NoButton);
}
}
else
{
QMessageBox::warning(nullptr,
QCoreApplication::translate("rift_tracker_025", "Error"),
QCoreApplication::translate("rift_tracker_025", "Unable to start Rift tracker"),
QMessageBox::Ok,QMessageBox::NoButton);
}
}
void rift_tracker_025::data(double *data)
{
if (pSFusion != NULL && pSensor != NULL)
{
Quatf rot = pSFusion->GetOrientation();
static constexpr float c_mult = 8;
static constexpr float c_div = 1/c_mult;
Vector3f axis;
float angle;
rot.GetAxisAngle(&axis, &angle);
angle *= c_div;
float yaw, pitch, roll;
Quatf(axis, angle).GetEulerAngles<Axis_Y, Axis_X, Axis_Z>(&yaw, &pitch, &roll);
double yaw_ = double(yaw);
if (s.useYawSpring)
{
yaw_ = old_yaw*s.persistence + (yaw_-old_yaw);
if (yaw_ > s.deadzone)
yaw_ -= s.constant_drift;
if (yaw_ < -s.deadzone)
yaw_ += s.constant_drift;
old_yaw = yaw_;
}
static constexpr double r2d = 180 / M_PI;
data[Yaw] = yaw_ * r2d;
data[Pitch] = double(pitch) * r2d;
data[Roll] = double(roll) * r2d;
}
}
OPENTRACK_DECLARE_TRACKER(rift_tracker_025, dialog_rift_025, rift_025Dll)
|