blob: d65e1cf162ae6f5cde32da9894f9511baa9017e2 (
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
|
#pragma once
#include <atomic>
#include <vector>
#include "./timer.hpp"
#include "./plugin-support.h"
#include "./mappings.hpp"
#include "./pose.hpp"
#include "../qfunctionconfigurator/functionconfig.h"
#include "./main-settings.hpp"
#include "./options.h"
#include <QMutex>
#include <QThread>
class Tracker : protected QThread {
Q_OBJECT
private:
QMutex mtx;
main_settings& s;
// XXX can be const-cast when functionconfig const-correct -sh 20141004
Mappings& m;
Timer t;
Pose output_pose, raw_6dof;
std::atomic<bool> centerp;
std::atomic<bool> enabledp;
std::atomic<bool> should_quit;
static void get_curve(double pos, double& out, Mapping& axis);
static void t_compensate(const double* input, double* output, bool rz);
protected:
void run() override;
public:
Tracker(main_settings& s, Mappings& m);
~Tracker();
void get_raw_and_mapped_poses(double* mapped, double* raw) const;
void start() { QThread::start(); }
void toggle_enabled() { enabledp.store(!enabledp.load()); }
void center() { centerp.store(!centerp.load()); }
};
|