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
|
/********************************************************************************
* FaceTrackNoIR This program is a private project of some enthusiastic *
* gamers from Holland, who don't like to pay much for *
* head-tracking. *
* *
* Copyright (C) 2012 Wim Vriend (Developing) *
* Ron Hendriks (Researching and Testing) *
* *
* Homepage: http://facetracknoir.sourceforge.net/home/default.htm *
* *
* 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/>. *
* *
********************************************************************************/
#include <QCoreApplication>
#include <QSettings>
#include "ftnoir_tracker_hat_settings.h"
void TrackerSettings::load_ini()
{
qDebug("TrackerSettings::load_ini()");
QSettings settings("Abbequerque Inc.", "FaceTrackNoIR"); // Registry settings (in HK_USER)
QString currentFile = settings.value( "SettingsFile", QCoreApplication::applicationDirPath() + "/Settings/default.ini" ).toString();
QSettings iniFile( currentFile, QSettings::IniFormat ); // Application settings (in INI-file)
iniFile.beginGroup( "HAT" );
SerialPortName=iniFile.value ( "PortName" ).toString();
EnableRoll = iniFile.value( "EnableRoll", 1 ).toBool();
EnablePitch = iniFile.value( "EnablePitch", 1 ).toBool();
EnableYaw = iniFile.value( "EnableYaw", 1 ).toBool();
EnableX = iniFile.value( "EnableX", 0 ).toBool();
EnableY = iniFile.value( "EnableY", 0 ).toBool();
EnableZ = iniFile.value( "EnableZ", 0 ).toBool();
InvertRoll = iniFile.value( "InvertRoll", 1 ).toBool();
InvertPitch = iniFile.value( "InvertPitch", 1 ).toBool();
InvertYaw = iniFile.value( "InvertYaw", 1 ).toBool();
InvertX = iniFile.value( "InvertX", 0 ).toBool();
InvertY = iniFile.value( "InvertY", 0 ).toBool();
InvertZ = iniFile.value( "InvertZ", 0 ).toBool();
RollAxe=iniFile.value("RollAxe",1).toInt();
PitchAxe=iniFile.value("PitchAxe",2).toInt();
YawAxe=iniFile.value("YawAxe",0).toInt();
XAxe=iniFile.value("XAxe",1).toInt();
YAxe=iniFile.value("YAxe",2).toInt();
ZAxe=iniFile.value("ZAxe",0).toInt();
iniFile.endGroup();
}
void TrackerSettings::save_ini() const
{
qDebug("TrackerSettings::save_ini()");
QSettings settings("Abbequerque Inc.", "FaceTrackNoIR"); // Registry settings (in HK_USER)
QString currentFile = settings.value( "SettingsFile", QCoreApplication::applicationDirPath() + "/Settings/default.ini" ).toString();
QSettings iniFile( currentFile, QSettings::IniFormat ); // Application settings (in INI-file)
iniFile.beginGroup ( "HAT" );
iniFile.setValue ( "PortName",SerialPortName );
iniFile.setValue( "EnableRoll", EnableRoll );
iniFile.setValue( "EnablePitch", EnablePitch );
iniFile.setValue( "EnableYaw", EnableYaw );
iniFile.setValue( "EnableX", EnableX );
iniFile.setValue( "EnableY", EnableY );
iniFile.setValue( "EnableZ", EnableZ );
iniFile.setValue( "InvertRoll", InvertRoll );
iniFile.setValue( "InvertPitch", InvertPitch );
iniFile.setValue( "InvertYaw", InvertYaw );
iniFile.setValue( "InvertX", InvertX );
iniFile.setValue( "InvertY", InvertY );
iniFile.setValue( "InvertZ", InvertZ );
iniFile.setValue ( "RollAxe", RollAxe );
iniFile.setValue ( "PitchAxe", PitchAxe );
iniFile.setValue ( "YawAxe",YawAxe );
iniFile.setValue ( "XAxe", XAxe );
iniFile.setValue ( "YAxe", YAxe );
iniFile.setValue ( "ZAxe", ZAxe );
iniFile.endGroup();
}
|