summaryrefslogtreecommitdiffhomepage
path: root/facetracknoir/tracker.h
blob: 3d9a3858c79976f5c116c00077863e2d9bee89d9 (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
#ifndef __TRACKER_H__
#define __TRACKER_H__

#include <QThread>
#include <QMessageBox>
#include <QLineEdit>
#include <QPoint>
#include <QWaitCondition>
#include <QList>
#include <QPainterPath>
#include <QDebug>
#include <QMutex>
#include "plugin-support.h"
#include "mappings.hpp"

#include <vector>
#include <atomic>

#include <qfunctionconfigurator/functionconfig.h>
#include "tracker_types.h"
#include "facetracknoir/main-settings.hpp"
#include "facetracknoir/options.h"
#include "facetracknoir/timer.hpp"

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;
    T6DOF 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);
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 center() { centerp.store(true); }
    void toggle_enabled() { enabledp.store(!enabledp.load()); }
};
#endif