summaryrefslogtreecommitdiffhomepage
path: root/FaceTrackNoIR/FTServer.h
blob: ba1dfeb20361a2493759820cccef31e30e08ebe2 (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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/********************************************************************************
* FTServer			FTServer is the Class, that communicates headpose-data		*
*					to games, using the FreeTrackClient.dll.         			*
*					It was (very) loosely translated from FTServer.pas.			*
*					which was created by the FreeTrack-team.					*
*																				*
* Copyright (C) 2010	Wim Vriend (Developing)									*
*						Ron Hendriks (Testing and Research)						*
*																				*
* Homepage				<http://www.free-track.net>								*
*																				*
* This program is free software; you can redistribute it and/or modify it		*
* under the terms of the GNU General Public License as published by the			*
* Free Software Foundation; either version 3 of the License, or (at your		*
* option) any later version.													*
*																				*
* This program is distributed in the hope that it will be useful, but			*
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY	*
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for	*
* more details.																	*
*																				*
* You should have received a copy of the GNU General Public License along		*
* with this program; if not, see <http://www.gnu.org/licenses/>.				*
*																				*
* We would like to extend our grattitude to the creators of SweetSpotter,		*
* which has become the basis of this program: "Great work guys!"				*
********************************************************************************/
#pragma once
#ifndef INCLUDED_FTSERVER_H
#define INCLUDED_FTSERVER_H
 
#include "FTNoIR_cxx_protocolserver.h"
#include "FTTypes.h"
#include <QString>
#include <QMessageBox>
#include <QSettings>
#include <QFile>
#include <QApplication>
#include <QDebug>
#include <QThread>
#include <QMutex>
#include <QLibrary>
#include <QUdpSocket>

typedef char *(WINAPI *importProvider)(void);
typedef bool (WINAPI *importGetData)(TFreeTrackData * data);
typedef HANDLE (WINAPI *importGetMapHandle)(void);

using namespace std;
using namespace v4friend::ftnoir;

class FTServer : public ProtocolServerBase {
	Q_OBJECT

public: 

	// public member methods
	FTServer();
	~FTServer();

	QString GetProgramName();

	// protected member methods
protected:
//	void run();
	bool checkServerInstallationOK( HANDLE handle );
	void sendHeadposeToGame();

private:
	bool FTCreateMapping(HANDLE handle);
	void FTDestroyMapping();

	HANDLE hFTMemMap;
	FTMemMap *pMemData;
	HANDLE hFTMutex;

	/** member varables for saving the head pose **/
	bool confid;

	// Private properties
	QString ProgramName;
	QLibrary FTClientLib;

public:
	void setHeadRotX(float x) { headRotX = getRadsFromDegrees(x); }
	void setHeadRotY(float y) { headRotY = getRadsFromDegrees(y); }
	void setHeadRotZ(float z) { headRotZ = getRadsFromDegrees(z); }
	void setHeadPosX(float x) { headPosX = x * 10; }
	void setHeadPosY(float y) { headPosY = y * 10; }
	void setHeadPosZ(float z) { headPosZ = z * 10; }

	void setVirtRotX(float rot) { virtRotX = getRadsFromDegrees(rot); }
	void setVirtRotY(float rot) { virtRotY = getRadsFromDegrees(rot); }
	void setVirtRotZ(float rot) { virtRotZ = getRadsFromDegrees(rot); }
	void setVirtPosX(float pos) { virtPosX = pos * 10; }
	void setVirtPosY(float pos) { virtPosY = pos * 10; }
	void setVirtPosZ(float pos) { virtPosZ = pos * 10; }

	float getRadsFromDegrees ( float degrees ) { return (degrees * 0.017453f); }

};


#endif//INCLUDED_FTSERVER_H
//END