summaryrefslogtreecommitdiffhomepage
path: root/proto-simconnect/ftnoir_protocol_sc.h
AgeCommit message (Collapse)Author
2023-06-13Move the call to simconnect_set6DOF() into the pipeline thread, potentially ↵Tom Brazier
reducing jitter and reduce the simconnect thread to keepalive work
2019-09-22api: expose raw data to protocolsStanislaw Halik
Issue: #975
2019-02-09proto/simconnect: cleanupStanislaw Halik
Issue: #804 - don't call simconnect_close without a valid handle - remove magic numbers - fix event handle logic. only use it for checking whether we're timing out. - add more informative stderr output - don't hardcode QFunctionPointer type alias - remove awful VirtPos/Rot...
2019-02-09random nonsense onlyStanislaw Halik
2019-02-03proto/simconnect: bump copyright dateStanislaw Halik
2019-02-03proto/simconnect: fix activation context againStanislaw Halik
Issue: #804
2019-01-16proto/simconnect: crapStanislaw Halik
2019-01-16clang-tidy fixes onlyStanislaw Halik
Maybe global `-Wcomma' is too harsh. There should be no functional changes whatsoever.
2018-06-26modernize C++ syntaxStanislaw Halik
No visible changes (hopefully).
2018-04-05modules: now use i18nStanislaw Halik
2018-02-12proto/simconnect: fix i18n warningStanislaw Halik
2017-12-18plugins: rename check_status -> initializeStanislaw Halik
It's a contract for plugin invocation that the particular function fills the role of initialization. Rename accordingly.
2017-12-09many: use otr_tr for non-qobject translationStanislaw Halik
I haven't even compile-tested Linux and OSX-specific bits.
2017-12-04api: add status check for modulesStanislaw Halik
2017-07-07proto/simconnect: fix WinSxS library versionsStanislaw Halik
We had all the wrong versions assigned to comboboxen. With the correct versions, Prepar3D works with its own SimConnect redist named "SP2-XPACK". The library version is the same as SP2 and the combobox item exists only to help users.
2017-06-18get rid of "volatile" abuseStanislaw Halik
We heavily used "volatile bool" to check if the thread loop should stop. But this functionality is already provided by Qt5's QThread::requestInterruption. In other cases, "volatile" is wonderfully underspecified so it's better to ditch its usage in favor of std::atomic<t>. At the time we don't appear to be using the "volatile" keyword except when calling win32's Interlocked*() family of functions as necessary. In freetrackclient's header the "volatile" qualifier was used as part of a typedef. This doesn't work. Use it as part of data declaration.
2017-06-07proto/simconnect: adjust debug messagesStanislaw Halik
2017-04-07rename several protocols from abbreviated namesStanislaw Halik