summaryrefslogtreecommitdiffhomepage
path: root/tracker-rift-140/rift-140.hpp
blob: 47eb7cd2f338d7f267e9484620c4c85c397c1f17 (plain)
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
#pragma once
#include "ui_dialog.h"
#include "api/plugin-api.hpp"
#include "options/options.hpp"
#include <OVR_CAPI.h>
#include <cmath>
#include <QMessageBox>
#include <QWaitCondition>
using namespace options;

struct settings : opts {
    value<bool> useYawSpring;
    value<double> constant_drift, persistence, deadzone;
    settings() :
        opts("Rift-140"),
        useYawSpring(b, "yaw-spring", false),
        constant_drift(b, "constant-drift", 0.000005),
        persistence(b, "persistence", 0.99999),
        deadzone(b, "deadzone", 0.02)
    {}
};

class rift_tracker_140 : public ITracker
{
public:
    rift_tracker_140();
    ~rift_tracker_140() override;
    void start_tracker(QFrame *) override;
    void data(double *data) override;
private:
    double old_yaw;
    ovrSession hmd;
    ovrGraphicsLuid luid;
    settings s;
};

class dialog_rift_140: public ITrackerDialog
{
    Q_OBJECT
public:
    dialog_rift_140();

    void register_tracker(ITracker *) {}
    void unregister_tracker() {}

private:
    Ui::dialog_rift_140 ui;
    settings s;
private slots:
    void doOK();
    void doCancel();
};

class rift_140Dll : public Metadata
{
public:
    QString name() { return QString(QCoreApplication::translate("rift_140Dll", "Oculus Rift runtime 1.4.0 -- HMD")); }
    QIcon icon() { return QIcon(":/images/rift_tiny.png"); }
};