summaryrefslogtreecommitdiffhomepage
path: root/logic
AgeCommit message (Collapse)Author
2018-01-10many: get rid of trailing type specifiersStanislaw Halik
2018-01-10many: spring cleanupStanislaw Halik
2018-01-10logic, cv: fix header namespace pollutionStanislaw Halik
We've had "using namespace options;" in headers for a while now.
2018-01-10logic/pipeline: conditionalizeStanislaw Halik
Will activate only when looking down or backward. When activating or deactivating, will slowly slide into the new position, no instant movement involved. Issue: #712
2018-01-03logic/pipeline: simplify NaN check control flowStanislaw Halik
2017-12-29logic/pipeline: don't emit data on disabled axisStanislaw Halik
Issue: #707
2017-12-26compat: use gettext convention for tr()Stanislaw Halik
2017-12-18compat, x-plane: get rid of attribute unused macroStanislaw 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-12-02logic: remove center_method settingStanislaw Halik
2017-11-02logic/shortcuts: fix buildStanislaw Halik
2017-10-27logic: use c++14-style in-line initializersStanislaw Halik
2017-10-21logic/tracker: rename to pipelineStanislaw Halik
Could use a better name.
2017-10-20options/scoped: use raiiStanislaw Halik
2017-10-20logic, spline: more spline work/fixesStanislaw Halik
- mapping window clamps are now value<max_clamp> in spline - clamp won't mess up saved spline content - clean up artifacts on spline widget
2017-10-20options, migration: simplifyStanislaw Halik
2017-10-20spline: allow switch pitch mapping max Y 90/180Stanislaw Halik
2017-10-20logic/main-settings: simplifyStanislaw Halik
2017-10-13whitespaceStanislaw Halik
2017-10-08logic: add extension supportStanislaw Halik
It's missing a dialog and testing.
2017-10-02logic: split extension handling to own fileStanislaw Halik
2017-09-30remove camel caseStanislaw Halik
2017-09-25logic: remove camel caseStanislaw Halik
2017-09-25api, logic: support "extensions" for pose transformStanislaw Halik
2017-09-23play with thread prioritiesStanislaw Halik
2017-07-24logic/shortcuts: fix signed vs unsigned comparisonStanislaw Halik
2017-07-24dinput: less boilerplateStanislaw Halik
2017-07-06logic/shortcuts: reformat etcStanislaw Halik
2017-07-06gui, logic: allow for binding Caps Lock and TabStanislaw Halik
Issue: #646
2017-06-18logic/tracker: fix sleep always for 0 msStanislaw Halik
On @mrSanchos' machine the `const_sleep_ms' variable was zero-initializer rather than set to the right value. Workaround this by dropping the `static' storage duration.
2017-06-18logic/tracker: wraparound degrees over 360Stanislaw Halik
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-18compat/time: don't use "long long" for millisecondsStanislaw Halik
2017-06-13logic/tracker: only unrotate for camera caseStanislaw Halik
2017-06-12logic/tracker: unrotate position dataStanislaw Halik
2017-06-12logic/tracker: add multimedia timer againStanislaw Halik
2017-06-12cleanupStanislaw Halik
2017-06-10timer-resolution: removeStanislaw Halik
2017-06-10get rid of camera angle position rotationStanislaw Halik
It doesn't work well enough anyway
2017-06-10logic/tracker: fix typoStanislaw Halik
Was sending zero pose to proto.
2017-06-10compat/timer-resolution: we want higher timer resolutionStanislaw Halik
Windows scheduler performs badly with 1000 Hz.
2017-05-30logic/tracker: allow for "hold-toggle" hold-enableStanislaw Halik
Must press "keypress-toggle" to toggle (uh) that mode.
2017-05-30fix linux hotkeysStanislaw Halik
Requested-by: @miniskipper and many others
2017-05-16logic/tracker: remove dead codeStanislaw Halik
2017-05-16logic: remove height in "dynamic neck"Stanislaw Halik
It doesn't help any. Leave the depth only.
2017-05-14logic/tracker: cast to milliseconds before getting raw countStanislaw Halik
Previously it wasn't portable.
2017-05-12logic/tracker: use std::chronoStanislaw Halik
2017-05-10get rid of the silly mem -> shared_ptr aliasStanislaw Halik