blob: ace9fa3ca0ecb5fd411b9358f4d45278f42f2b25 (
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
|
#pragma once
#include <vector>
#include "timer.hpp"
#include "plugin-support.h"
#include "mappings.hpp"
#include "pose.hpp"
#include "simple-mat.hpp"
#include "../qfunctionconfigurator/functionconfig.h"
#include "main-settings.hpp"
#include "options.hpp"
#include <QMutex>
#include <QThread>
class Tracker : private QThread {
Q_OBJECT
private:
QMutex mtx;
main_settings& s;
Mappings& m;
Timer t;
Pose output_pose, raw_6dof;
double newpose[6];
volatile bool centerp;
volatile bool enabledp;
volatile bool zero_;
volatile bool should_quit;
SelectedLibraries const& libs;
using rmat = dmat<3, 3>;
dmat<3, 3> r_b;
double t_b[3];
double map(double pos, Mapping& axis);
void logic();
void t_compensate(const dmat<3, 3>& rmat, const double* ypr, double* output, bool rz);
void run() override;
public:
Tracker(main_settings& s, Mappings& m, SelectedLibraries& libs);
~Tracker();
void get_raw_and_mapped_poses(double* mapped, double* raw) const;
void start() { QThread::start(); }
void toggle_enabled() { enabledp = !enabledp; }
void center() { centerp = !centerp; }
void zero() { zero_ = !zero_; }
};
|