Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-11-02 | logic/shortcuts: fix build | Stanislaw Halik | |
2017-10-27 | logic: use c++14-style in-line initializers | Stanislaw Halik | |
2017-10-21 | logic/tracker: rename to pipeline | Stanislaw Halik | |
Could use a better name. | |||
2017-10-20 | options/scoped: use raii | Stanislaw Halik | |
2017-10-20 | logic, spline: more spline work/fixes | Stanislaw 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-20 | options, migration: simplify | Stanislaw Halik | |
2017-10-20 | spline: allow switch pitch mapping max Y 90/180 | Stanislaw Halik | |
2017-10-20 | logic/main-settings: simplify | Stanislaw Halik | |
2017-10-13 | whitespace | Stanislaw Halik | |
2017-10-08 | logic: add extension support | Stanislaw Halik | |
It's missing a dialog and testing. | |||
2017-10-02 | logic: split extension handling to own file | Stanislaw Halik | |
2017-09-30 | remove camel case | Stanislaw Halik | |
2017-09-25 | logic: remove camel case | Stanislaw Halik | |
2017-09-25 | api, logic: support "extensions" for pose transform | Stanislaw Halik | |
2017-09-23 | play with thread priorities | Stanislaw Halik | |
2017-07-24 | logic/shortcuts: fix signed vs unsigned comparison | Stanislaw Halik | |
2017-07-24 | dinput: less boilerplate | Stanislaw Halik | |
2017-07-06 | logic/shortcuts: reformat etc | Stanislaw Halik | |
2017-07-06 | gui, logic: allow for binding Caps Lock and Tab | Stanislaw Halik | |
Issue: #646 | |||
2017-06-18 | logic/tracker: fix sleep always for 0 ms | Stanislaw 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-18 | logic/tracker: wraparound degrees over 360 | Stanislaw Halik | |
2017-06-18 | get rid of "volatile" abuse | Stanislaw 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-18 | compat/time: don't use "long long" for milliseconds | Stanislaw Halik | |
2017-06-13 | logic/tracker: only unrotate for camera case | Stanislaw Halik | |
2017-06-12 | logic/tracker: unrotate position data | Stanislaw Halik | |
2017-06-12 | logic/tracker: add multimedia timer again | Stanislaw Halik | |
2017-06-12 | cleanup | Stanislaw Halik | |
2017-06-10 | timer-resolution: remove | Stanislaw Halik | |
2017-06-10 | get rid of camera angle position rotation | Stanislaw Halik | |
It doesn't work well enough anyway | |||
2017-06-10 | logic/tracker: fix typo | Stanislaw Halik | |
Was sending zero pose to proto. | |||
2017-06-10 | compat/timer-resolution: we want higher timer resolution | Stanislaw Halik | |
Windows scheduler performs badly with 1000 Hz. | |||
2017-05-30 | logic/tracker: allow for "hold-toggle" hold-enable | Stanislaw Halik | |
Must press "keypress-toggle" to toggle (uh) that mode. | |||
2017-05-30 | fix linux hotkeys | Stanislaw Halik | |
Requested-by: @miniskipper and many others | |||
2017-05-16 | logic/tracker: remove dead code | Stanislaw Halik | |
2017-05-16 | logic: remove height in "dynamic neck" | Stanislaw Halik | |
It doesn't help any. Leave the depth only. | |||
2017-05-14 | logic/tracker: cast to milliseconds before getting raw count | Stanislaw Halik | |
Previously it wasn't portable. | |||
2017-05-12 | logic/tracker: use std::chrono | Stanislaw Halik | |
2017-05-10 | get rid of the silly mem -> shared_ptr alias | Stanislaw Halik | |
2017-05-10 | options: don't create QSettings all the time | Stanislaw Halik | |
Update usages. | |||
2017-05-02 | compat/timer-resolution: use undocumented windows API | Stanislaw Halik | |
Unlike timeBeginPeriod in winmm, this one sets the timer resolution for the calling process, only. | |||
2017-04-18 | logic/tracker: fix option not used in logic | Stanislaw Halik | |
2017-04-14 | logic/tracker.cpp: explicit set to zeros with custom center | Stanislaw Halik | |
cf. https://github.com/opentrack/opentrack/issues/352#issuecomment-293885962 | |||
2017-04-13 | logic/tracker: fix typo | Stanislaw Halik | |
2017-04-13 | logic/tracker: call center() before data() | Stanislaw Halik | |
For real this time. Issue: #352 | |||
2017-04-13 | logic/tracker: zero at the right pipeline stage | Stanislaw Halik | |
2017-04-12 | logic/tracker: no need for timeBeginPeriod | Stanislaw Halik | |
There's jitter of up to 3 ms. Increasing timer resolution pessimizes overall performance. For Falcon BMS it costs about a dozen frames. | |||
2017-04-12 | matrix -> euler: prevent gimbal lock multiple solutions harder | Stanislaw Halik | |
2017-04-12 | gui/mapping: allow for up to 100 cm translation | Stanislaw Halik | |
Defaults to 30 cm as before. Changes X snap value for larger max value. Related-to: #352 | |||
2017-04-06 | logic/tracker: call IFilter::center() | Stanislaw Halik | |
Issue: #540 | |||
2017-03-29 | logic/tracker: call center() before data() | Stanislaw Halik | |