Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-01-18 | compat: split/cleanup util.hpp | Stanislaw Halik | |
Some of the headers are clearly useless. Remove them. Move what's inside util.hpp into separate headers. Adjust usages. Will remove util.hpp. | |||
2018-01-16 | proto/freetrack: typedefs are volatile, cleanup | Stanislaw Halik | |
2018-01-14 | proto/freetrack: rename following npclient change | Stanislaw Halik | |
2018-01-10 | proto/ft: fix logic error | Stanislaw Halik | |
2018-01-10 | proto/freetrack, npclient: change deactivation method | Stanislaw Halik | |
- deactivates on its own after about 30 seconds no matter what - deactivates on opentrack stop - returns to neutral pose on deactivation - works with origin (all zeros) pose | |||
2017-12-26 | proto/freetrack: cleanup | Stanislaw Halik | |
2017-12-18 | plugins: rename check_status -> initialize | Stanislaw Halik | |
It's a contract for plugin invocation that the particular function fills the role of initialization. Rename accordingly. | |||
2017-12-09 | proto/freetrack: cleanup | Stanislaw Halik | |
- set zeros in shm, for NPClient.dll tracking detection - remove tirviews support - remove registry cleanup on exit support | |||
2017-12-04 | api: add status check for modules | Stanislaw Halik | |
2017-10-29 | static constexpr -> constexpr | Stanislaw Halik | |
2017-10-28 | freetrackclient: mark volatile | Stanislaw Halik | |
2017-09-30 | remove camel case | Stanislaw Halik | |
2017-07-28 | proto/freetrack: fix build with mingw-w64 with llvm | Stanislaw Halik | |
2017-07-23 | proto/freetrack: fix typo | Stanislaw Halik | |
2017-07-06 | proto/ft: include explicitly for `never_inline' etc | Stanislaw Halik | |
2017-06-22 | misc irrelevant | Stanislaw Halik | |
2017-06-18 | proto/ft: use explicit atomic load/store | Stanislaw Halik | |
"volatile" is too underspecified. Also cleanup some old code. | |||
2017-06-18 | proto/freetrack: workaround falcon bms 90 pitch limit | Stanislaw Halik | |
2017-03-27 | cmake: rename project's function prefix | Stanislaw Halik | |
It's not annoying having to type it anymore. Also "otr_boilerplate" -> "otr_module". | |||
2017-02-27 | remove unfinished polish translation files | Stanislaw Halik | |
Polish speakers typically know English well enough and translations are awkward. | |||
2017-02-21 | modules: add .ts files | Stanislaw Halik | |
2016-12-08 | Translate remaining strings in filter-accela/proto-ft/tracker-pt | Alexander Orokhovatskiy | |
2016-11-05 | delete empty .ts | Stanislaw Halik | |
2016-11-05 | modules: make more strings translatable | Stanislaw Halik | |
2016-11-04 | modules: make names unique | Stanislaw Halik | |
2016-11-04 | modules: add autogenerated translation files | Stanislaw Halik | |
2016-09-21 | many: remove compat/pi-constant.hpp | Stanislaw Halik | |
With -D_USE_MATH_DEFINES MSVC defines the standard M_PI and friends. Since this preprocessor definition is now always passed as part of the build system for MSVC. We can use M_PI as if on a mission. | |||
2016-08-18 | options: add base_value signal const | Stanislaw Halik | |
2016-08-17 | move options framework into its own library | Stanislaw Halik | |
- adjust usages - add support for QList signals and metatype | |||
2016-08-12 | all: rename modules s#^opentrack-##. and opentrack -> api | Stanislaw Halik | |
Adjust usages. | |||
2016-07-19 | proto/{ft,wine}: simplify qprocess killing logic | Stanislaw Halik | |
2016-07-19 | some: replace hardcoded pi values with the same pi constant | Stanislaw Halik | |
We can't depend on M_PI existing after including cmath. | |||
2016-07-18 | proto/ft: cleanup deg->rad conversionopentrack-2.3-rc49p9 | Stanislaw Halik | |
2016-07-18 | some: adjust install paths and invocations | Stanislaw Halik | |
2016-06-24 | csv, proto/ft: workaround link bug on win32 with no lto | Stanislaw Halik | |
Need link dynamic, otherwise symbol lookup failure. | |||
2016-06-14 | proto/freetrack: less noise if registry clearing disabled | Stanislaw Halik | |
2016-06-14 | csv: code quality fixes | Stanislaw Halik | |
- use std::move where applicable - reformat more - make const stuff static, use QStringLiteral - fix regexes to make progress more - always move further into file even if regexes fail - apply less defensive coding, but still enough - remove stuff we don't use | |||
2016-06-09 | proto/freetrack: get rid of float <-> double promotions | Stanislaw Halik | |
2016-05-26 | many modules: trivial cleanups only | Stanislaw Halik | |
- Remove "this->" where it's not needed. Possibly rename shadowed vars. - Don't reload the options bundle manually since `options::opts' exists for that very reason. - Remove '^ \+$' whitespace - :retab | |||
2016-05-22 | proto/freetrack: runonce check can be a static member | Stanislaw Halik | |
Now that we have -fuse-cxa-atexit static dtors for modules are called as they should be. | |||
2016-05-15 | many: remove executable bit from source files | Stanislaw Halik | |
We no longer have this recurring problem since I enabled ignoring executable bit changes on the Windows workstation. | |||
2016-04-23 | proto/ft: comment how to make "clear registry key on exit" work at all | Stanislaw Halik | |
Issue: #332 | |||
2016-04-06 | proto/ft: only clear registry path on program exit | Stanislaw Halik | |
Clear registry path when opentrack exits, not merely tracking is stopped. This is still controlled by the checkbox, while checking for being the first instance happens always regardless. Also update dialog description. Issue: #332 | |||
2016-04-06 | proto/ft: make clear registry path on quit optional | Stanislaw Halik | |
Make clearing the dll path optional, defaulting to false. See previous commit. It has a side effect of games started before opentrack not seeing any dll path, and loading nothing. That is, opentrack only functions when tracking is started before a game is started. Issue: #332 | |||
2016-04-06 | proto/ft: don't make games think opentrack is running after it quits | Stanislaw Halik | |
Some background: Our dll's for freetrack and npclient protocols don't support indication whether opentrack is running or not. Worse yet, they're whitelisted on Arma's anticheat system so we can't modify them at arbitrary times. It's possible to run multiple opentrack instances at a time and we can't have multiple instances stepping upon each other's toes. It's kind of pointless to run multiple sessions but hey. Implementation: Guard with a mutex against multiple instances. Only the first instance (that uses the freetrack protocol at all) gets to control whether the dll's are accessible. Remove the registry keys after either freetrack protocol exits or software exits, but only if we're the first opentrack instance running freetrack protocol at all. Issue: #332 | |||
2015-11-01 | all: adjust options.hpp move to compat | Stanislaw Halik | |
2015-10-30 | also rename protocol -> proto | Stanislaw Halik | |