summaryrefslogtreecommitdiffhomepage
path: root/tracker-rift-025/ftnoir_tracker_rift_025.h
blob: 18b3cb8d3f35045e44edf537d571b0f9deb5b102 (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
61
62
63
64
65
66
#pragma once
#include "ui_ftnoir_rift_clientcontrols_025.h"
#include "api/plugin-api.hpp"
#include "options/options.hpp"
#include <OVR.h>
#include <cmath>
#include <memory>
#include <QMessageBox>
#include <QWaitCondition>
using namespace options;

struct settings : opts {
    value<bool> useYawSpring;
    value<double> constant_drift, persistence, deadzone;
    settings() :
        opts("Rift-025"),
        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_025 : public QObject, public ITracker
{
    Q_OBJECT

public:
    rift_tracker_025();
    virtual ~rift_tracker_025() override;
    module_status start_tracker(QFrame *) override;
    void data(double *data) override;
private:
    double old_yaw;
    settings s;
    static bool isInitialised;
    OVR::DeviceManager* pManager;
    OVR::SensorDevice* pSensor;
    OVR::SensorFusion* pSFusion;
};

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

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

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

class rift_025Dll : public Metadata
{
    Q_OBJECT

    QString name() { return tr("Oculus Rift runtime 0.2.5 -- HMD"); }
    QIcon icon() { return QIcon(":/images/rift_tiny.png"); }
};