summaryrefslogtreecommitdiffhomepage
path: root/tracker-hatire/ftnoir_tracker_hat_settings.h
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-05-09 16:21:32 +0200
committerStanislaw Halik <sthalik@misaki.pl>2016-05-09 16:21:32 +0200
commitfd0ad89c7c6f61aa14d6e908e9217121f4afa5c6 (patch)
tree5274ef7761b249c5ee48a823a48b2c744c4df593 /tracker-hatire/ftnoir_tracker_hat_settings.h
parente6fb571266c22f120c0111731da1f2e6bf4d812d (diff)
tracker/hatire: move to opentrack settings API
Diffstat (limited to 'tracker-hatire/ftnoir_tracker_hat_settings.h')
-rwxr-xr-x[-rw-r--r--]tracker-hatire/ftnoir_tracker_hat_settings.h109
1 files changed, 61 insertions, 48 deletions
diff --git a/tracker-hatire/ftnoir_tracker_hat_settings.h b/tracker-hatire/ftnoir_tracker_hat_settings.h
index 06d54e34..92dacd42 100644..100755
--- a/tracker-hatire/ftnoir_tracker_hat_settings.h
+++ b/tracker-hatire/ftnoir_tracker_hat_settings.h
@@ -7,54 +7,67 @@
#pragma once
-#include <QtSerialPort/QSerialPort>
+#include <QSerialPort>
+#include "opentrack-compat/options.hpp"
-struct TrackerSettings
+using namespace options;
+
+struct TrackerSettings : opts
{
- void load_ini();
- void save_ini() const;
-
- bool EnableRoll;
- bool EnablePitch;
- bool EnableYaw;
- bool EnableX;
- bool EnableY;
- bool EnableZ;
-
- bool InvertRoll;
- bool InvertPitch;
- bool InvertYaw;
- bool InvertX;
- bool InvertY;
- bool InvertZ;
-
- int RollAxis;
- int PitchAxis;
- int YawAxis;
- int XAxis;
- int YAxis;
- int ZAxis;
-
- QString CmdStart;
- QString CmdStop;
- QString CmdInit;
- QString CmdReset;
- QString CmdCenter;
- QString CmdZero;
-
- int DelayInit;
- int DelayStart;
- int DelaySeq;
-
- bool BigEndian;
- bool EnableLogging;
-
- QString SerialPortName;
- QSerialPort::BaudRate pBaudRate;
- QSerialPort::DataBits pDataBits;
- QSerialPort::Parity pParity;
- QSerialPort::StopBits pStopBits;
- QSerialPort::FlowControl pFlowControl;
-
- int FPSArduino;
+ value<bool> EnableRoll, EnablePitch, EnableYaw, EnableX, EnableY, EnableZ;
+ value<bool> InvertRoll, InvertPitch, InvertYaw, InvertX, InvertY, InvertZ;
+ value<int> RollAxis, PitchAxis, YawAxis, XAxis, YAxis, ZAxis;
+
+ value<QString> CmdStart, CmdStop, CmdInit, CmdReset, CmdCenter, CmdZero;
+
+ value<int> DelayInit, DelayStart, DelaySeq;
+
+ value<bool> BigEndian, EnableLogging;
+
+ value<QString> QSerialPortName;
+
+ value<QSerialPort::BaudRate> pBaudRate;
+ value<QSerialPort::DataBits> pDataBits;
+ value<QSerialPort::Parity> pParity;
+ value<QSerialPort::StopBits> pStopBits;
+ value<QSerialPort::FlowControl> pFlowControl;
+
+ TrackerSettings() :
+ opts("hatire-tracker"),
+ EnableRoll(b, "enable-roll", true),
+ EnablePitch(b, "enable-pitch", true),
+ EnableYaw(b, "enable-yaw", true),
+ EnableX(b, "enable-x", false),
+ EnableY(b, "enable-y", false),
+ EnableZ(b, "enable-z", false),
+ InvertRoll(b, "invert-roll", false),
+ InvertPitch(b, "invert-pitch", false),
+ InvertYaw(b, "invert-yaw", false),
+ InvertX(b, "invert-x", false),
+ InvertY(b, "invert-y", false),
+ InvertZ(b, "invert-z", false),
+ RollAxis(b, "roll-axis", 1),
+ PitchAxis(b, "pitch-axis", 2),
+ YawAxis(b, "pitch-axis", 0),
+ XAxis(b, "x-axis", 0),
+ YAxis(b, "y-axis", 2),
+ ZAxis(b, "z-axis", 1),
+ CmdStart(b, "start-command", ""),
+ CmdStop(b, "stop-command", ""),
+ CmdInit(b, "init-command", ""),
+ CmdReset(b, "reset-command", ""),
+ CmdCenter(b, "center-command", ""),
+ CmdZero(b, "zero-command", ""),
+ DelayInit(b, "init-delay", 0),
+ DelayStart(b, "start-delay", 0),
+ DelaySeq(b, "after-start-delay", 0),
+ BigEndian(b, "is-big-endian", false),
+ EnableLogging(b, "enable-logging", false),
+ QSerialPortName(b, "serial-port-name", ""),
+ pBaudRate(b, "baud-rate", QSerialPort::Baud115200),
+ pDataBits(b, "data-bits", QSerialPort::Data8),
+ pParity(b, "parity", QSerialPort::NoParity),
+ pStopBits(b, "stop-bits", QSerialPort::OneStop),
+ pFlowControl(b, "flow-control", QSerialPort::HardwareControl)
+ {}
};