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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
#include "ftnoir_tracker_base/ftnoir_tracker_base.h"
#include "ui_ftnoir_ftnclientcontrols.h"
#include <QThread>
#include <QUdpSocket>
#include <QMessageBox>
#include <QSettings>
#include <QMutex>
#include <QWaitCondition>
#include <math.h>
#include "facetracknoir/global-settings.h"
#include "facetracknoir/options.h"
using namespace options;
struct settings {
pbundle b;
value<int> port;
value<bool> enable_roll, enable_pitch, enable_yaw,
enable_x, enable_y, enable_z;
settings() :
b(bundle("udp-tracker")),
port(b, "port", 4242),
enable_roll(b, "enable-roll", true),
enable_pitch(b, "enable-pitch", true),
enable_yaw(b, "enable-yaw", true),
enable_x(b, "enable-x", true),
enable_y(b, "enable-y", true),
enable_z(b, "enable-y", true)
{}
};
class FTNoIR_Tracker : public ITracker, public QThread
{
public:
FTNoIR_Tracker();
~FTNoIR_Tracker();
void StartTracker(QFrame *);
void GetHeadPoseData(double *data);
volatile bool should_quit;
protected:
void run(); // qthread override run method
private:
QUdpSocket inSocket;
QHostAddress destIP;
QHostAddress srcIP;
double newHeadPose[6];
QMutex mutex;
settings s;
};
// Widget that has controls for FTNoIR protocol client-settings.
class TrackerControls: public QWidget, public ITrackerDialog
{
Q_OBJECT
public:
explicit TrackerControls();
void registerTracker(ITracker *) {}
void unRegisterTracker() {}
private:
Ui::UICFTNClientControls ui;
settings s;
private slots:
void doOK();
void doCancel();
};
//*******************************************************************************************************
// FaceTrackNoIR Tracker DLL. Functions used to get general info on the Tracker
//*******************************************************************************************************
class FTNoIR_TrackerDll : public Metadata
{
public:
void getFullName(QString *strToBeFilled);
void getShortName(QString *strToBeFilled);
void getDescription(QString *strToBeFilled);
void getIcon(QIcon *icon);
private:
QString trackerFullName; // Trackers' name and description
QString trackerShortName;
QString trackerDescription;
};
|