summaryrefslogtreecommitdiffhomepage
path: root/proto-ft/ftnoir_protocol_ft.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-12-09 17:59:57 +0100
committerStanislaw Halik <sthalik@misaki.pl>2017-12-09 17:59:57 +0100
commit89f104782e673cfacec0eab016dc22a51533f113 (patch)
tree9fe9dfdbcf1051a49d749a5d77daa8260faa3948 /proto-ft/ftnoir_protocol_ft.cpp
parent61bf0f0ec4b836981b39910f4719cc526da5c415 (diff)
proto/freetrack: cleanup
- set zeros in shm, for NPClient.dll tracking detection - remove tirviews support - remove registry cleanup on exit support
Diffstat (limited to 'proto-ft/ftnoir_protocol_ft.cpp')
-rw-r--r--proto-ft/ftnoir_protocol_ft.cpp60
1 files changed, 11 insertions, 49 deletions
diff --git a/proto-ft/ftnoir_protocol_ft.cpp b/proto-ft/ftnoir_protocol_ft.cpp
index d03ca59a..a0272115 100644
--- a/proto-ft/ftnoir_protocol_ft.cpp
+++ b/proto-ft/ftnoir_protocol_ft.cpp
@@ -17,28 +17,18 @@
#include <cmath>
#include <windows.h>
-check_for_first_run freetrack::runonce_check = check_for_first_run();
-
-freetrack::freetrack() :
- shm(FREETRACK_HEAP, FREETRACK_MUTEX, sizeof(FTHeap)),
- pMemData((FTHeap*) shm.ptr()),
- viewsStart(nullptr),
- viewsStop(nullptr),
- intGameID(-1)
+freetrack::freetrack()
{
- runonce_check.set_enabled(s.close_protocols_on_exit);
- QObject::connect(&s.close_protocols_on_exit,
- static_cast<void (base_value::*)(bool) const>(&value<bool>::valueChanged),
- [] (bool flag) -> void { runonce_check.set_enabled(flag); });
- runonce_check.try_runonce();
}
freetrack::~freetrack()
{
- if (viewsStop != NULL) {
- viewsStop();
- FTIRViewsLib.unload();
+ if (shm.success())
+ {
+ const double tmp[6] {};
+ pose(tmp);
}
+
dummyTrackIR.close();
}
@@ -81,7 +71,7 @@ void freetrack::pose(const double* headpose)
// HACK: Falcon BMS makes a "bump" if pitch is over the value -sh 20170615
const bool is_crossing_90 = std::fabs(headpose[Pitch] - 90) < 1e-4;
- const float pitch = -degrees_to_rads(is_crossing_90 ? 89.86 : headpose[Pitch]);
+ const float pitch = -degrees_to_rads(is_crossing_90 ? 89.85 : headpose[Pitch]);
FTHeap volatile* ft = pMemData;
FTData volatile* data = &ft->data;
@@ -112,14 +102,14 @@ void freetrack::pose(const double* headpose)
const std::uintptr_t addr = (std::uintptr_t)(void*)&pMemData->table[0];
const std::uintptr_t addr_ = addr & ~(sizeof(LONG)-1u);
+ static_assert(sizeof(LONG) == 4, "");
+
// the data `happens' to be aligned by virtue of element ordering
// inside FTHeap. there's no deeper reason behind it.
-
if (addr != addr_)
assert(!"unaligned access");
- static_assert(sizeof(LONG) == 4, "");
-
+ // no unaligned atomic access for `char'
for (unsigned k = 0; k < 2; k++)
store(*(std::int32_t volatile*)&pMemData->table_ints[k], t.ints[k]);
}
@@ -141,33 +131,8 @@ float freetrack::degrees_to_rads(double degrees)
return float(degrees*M_PI/180);
}
-void freetrack::start_tirviews()
+void freetrack::start_dummy()
{
- QString aFileName = OPENTRACK_BASE_PATH + OPENTRACK_LIBRARY_PATH "TIRViews.dll";
- if ( QFile::exists( aFileName )) {
- FTIRViewsLib.setFileName(aFileName);
- FTIRViewsLib.load();
-
- viewsStart = (importTIRViewsStart) FTIRViewsLib.resolve("TIRViewsStart");
- if (viewsStart == NULL) {
- qDebug() << "FTServer::run() says: TIRViewsStart function not found in DLL!";
- }
- else {
- qDebug() << "FTServer::run() says: TIRViewsStart executed!";
- viewsStart();
- }
-
- //
- // Load the Stop function from TIRViews.dll. Call it when terminating the thread.
- //
- viewsStop = (importTIRViewsStop) FTIRViewsLib.resolve("TIRViewsStop");
- if (viewsStop == NULL) {
- qDebug() << "FTServer::run() says: TIRViewsStop function not found in DLL!";
- }
- }
-}
-
-void freetrack::start_dummy() {
static const QString program = OPENTRACK_BASE_PATH + OPENTRACK_LIBRARY_PATH "TrackIR.exe";
dummyTrackIR.setProgram("\"" + program + "\"");
dummyTrackIR.start();
@@ -216,9 +181,6 @@ module_status freetrack::check_status()
set_protocols(use_ft, use_npclient);
- if (s.useTIRViews && use_npclient)
- start_tirviews();
-
pMemData->data.DataID = 1;
pMemData->data.CamWidth = 100;
pMemData->data.CamHeight = 250;