summaryrefslogtreecommitdiffhomepage
path: root/tracker-rift-080/ftnoir_tracker_rift_080.h
blob: e5e92e3dc55b89f678be787d8e0446f1935040c4 (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
#pragma once
#include "ui_ftnoir_rift_clientcontrols_080.h"
#include "api/plugin-api.hpp"
#include "options/options.hpp"
#include <OVR.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-080"),
        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_080 : public ITracker
{
public:
    rift_tracker_080();
    ~rift_tracker_080() override;
    module_status start_tracker(QFrame *) override;
    void data(double *data) override;
private:
    double old_yaw;
    ovrSession hmd;
    settings s;
};

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

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

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

class rift_080Dll : public Metadata
{
public:
    QString name() { return otr_tr("Oculus Rift runtime 0.8.0 -- HMD"); }
    QIcon icon() { return QIcon(":/images/rift_tiny.png"); }
};