summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_tracker_udp/ftnoir_tracker_udp.h
blob: 1ec63866bbce69efdff4824b05568b0a11777e4e (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
#pragma once
#include "ui_ftnoir_ftnclientcontrols.h"
#include <QUdpSocket>
#include <QThread>
#include <cmath>
#include "facetracknoir/plugin-api.hpp"
#include "facetracknoir/options.h"
using namespace options;

struct settings {
    pbundle b;
    value<int> port;
    settings() :
        b(bundle("udp-tracker")),
        port(b, "port", 4242)
    {}
};

class FTNoIR_Tracker : public ITracker, protected QThread
{
public:
	FTNoIR_Tracker();
    ~FTNoIR_Tracker();
    void start_tracker(QFrame *);
    void data(double *data);
protected:
	void run() override;
private:
    QUdpSocket sock;
    double last_recv_pose[6];
    QMutex mutex;
    settings s;
    volatile bool should_quit;
};

class TrackerControls: public ITrackerDialog
{
    Q_OBJECT
public:
	TrackerControls();
    void register_tracker(ITracker *) {}
    void unregister_tracker() {}
private:
	Ui::UICFTNClientControls ui;
    settings s;
private slots:
	void doOK();
	void doCancel();
};

class FTNoIR_TrackerDll : public Metadata
{
public:
    QString name() { return QString("UDP sender"); }
    QIcon icon() { return QIcon(":/images/facetracknoir.png"); }
};