Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-12-19 | modules: build on Intel arch only | Stanislaw Halik | |
2018-10-25 | cleanups only | Stanislaw Halik | |
2018-07-13 | appease analyzer | Stanislaw Halik | |
2018-07-08 | modernize only | Stanislaw Halik | |
2018-07-02 | nothing important | Stanislaw Halik | |
2018-06-26 | modernize C++ syntax | Stanislaw Halik | |
No visible changes (hopefully). | |||
2018-06-26 | compat/macros: rename portability macros | Stanislaw Halik | |
use `cc_xx' rather than awkward synonyms. | |||
2018-06-13 | switch to structured bindings | Stanislaw Halik | |
2018-05-03 | tracker/{rift,steamvr}: rename reserved identifier | Stanislaw Halik | |
Could be declared as macro. Issue: #771 | |||
2018-05-03 | tracker/steamvr: fix GNU libc typedef conflict | Stanislaw Halik | |
Really sometimes they should be less intrusive. Reported-by: @zanoni-mbdyn Issue: #771 | |||
2018-04-27 | tracker/steamvr: issue #771 | Stanislaw Halik | |
2018-04-05 | i18n: update strings | Stanislaw Halik | |
2018-04-05 | modules: now use i18n | Stanislaw Halik | |
2018-03-10 | tracker/steamvr: inconsequential cleanup | Stanislaw Halik | |
2018-03-10 | tracker/steamvr: reduce indentation | Stanislaw Halik | |
No functional changes. | |||
2018-03-10 | tracker/steamvr: update SDK API | Stanislaw Halik | |
2018-02-12 | cmake: add zh_CN | Stanislaw Halik | |
cf. #746 | |||
2018-02-12 | modules: stop saving line information | Stanislaw Halik | |
Now i18n regen won't make a mess. | |||
2018-02-09 | update translation source files -- #743 | Stanislaw Halik | |
2018-01-20 | rename our Qt .png icon | Stanislaw Halik | |
facetracknoir.png -> opentrack.png | |||
2018-01-18 | compat/util: retire | Stanislaw Halik | |
Adjust usages. | |||
2017-12-09 | many: use otr_tr for non-qobject translation | Stanislaw Halik | |
I haven't even compile-tested Linux and OSX-specific bits. | |||
2017-12-04 | api: add status check for modules | Stanislaw Halik | |
2017-10-29 | static constexpr -> constexpr | Stanislaw Halik | |
2017-07-24 | tracker/steamvr: fix friend decl for GNU | Stanislaw Halik | |
2017-06-22 | misc irrelevant | Stanislaw Halik | |
2017-05-21 | tracker/steamvr: cleanup stale comments | Stanislaw Halik | |
We'll do gimbal lock avoidance in the compat module. | |||
2017-05-21 | tracker/steamvr: fix formulae, pitch is/was broken | Stanislaw Halik | |
@KydDynoMyte said on reddit pitch goes +180 on yaw over 90. It must be invalid matrix elements used in the call to atan2. Replace with the version from April. cf. https://www.reddit.com/r/Vive/comments/63qula/opentracks_almostdone_vive_support/dhrgh5l/?context=3 | |||
2017-05-18 | tracker/steamvr: fall back to old yaw formula | Stanislaw Halik | |
User reports max 90 yaw. | |||
2017-05-18 | tracker/steamvr: add "[disconnected]" in device list | Stanislaw Halik | |
2017-05-10 | tracker/steamvr: expose all valid devices | Stanislaw Halik | |
2017-04-14 | tracker/steamvr: use double promotion for all arithmetic | Stanislaw Halik | |
The computation order isn't defined so parts might only get promoted to double after arithmetic. Promote all parts manually before arithmetic. | |||
2017-04-14 | tracker/steamvr: don't reset seated pose for non-HMD | Stanislaw Halik | |
cf. https://github.com/opentrack/opentrack/issues/352#issuecomment-293885962 | |||
2017-04-13 | tracker/steamvr: use normal center for controllers | Stanislaw Halik | |
Issue: #352 | |||
2017-04-13 | tracker/steamvr: use doubles for intermediate computation | Stanislaw Halik | |
2017-04-09 | tracker/steamvr: add copyright | Stanislaw Halik | |
Issue: #352 | |||
2017-04-10 | tracker/steamvr: Fix rotation issues | Anthony Coddington | |
Use well known matrix to euler decomposition formula, fixing some incorrect accesses. May need gimbal lock avoidance. Don't use opentrack centering as ResetSeatedZeroPose preserves calibrated real world up (Y) vector. Note: controllers are centered to HMD seated position. fixes most remaining issues in #352 | |||
2017-04-07 | tracker/steamvr: make static | Stanislaw Halik | |
2017-04-06 | tracker/steamvr: return more precise radian result | Stanislaw Halik | |
While atan2's input is limited to single-float precision, extend result precision to double-float precision. The result's in radians. Why didn't gradians get popular? | |||
2017-04-06 | tracker/steamvr: determine device uniqueness harder | Stanislaw Halik | |
Use "type-model-serial" as the discriminator. The API might present a single device with two types as the same model and serial or something similarly stupid. | |||
2017-04-06 | tracker/steamvr: revert to asin formula | Stanislaw Halik | |
2017-04-06 | tracker/steamvr: show device type before serial | Stanislaw Halik | |
2017-04-06 | tracker/steamvr: put serial number as userdata | Stanislaw Halik | |
2017-04-06 | tracker/steamvr: fix build | Stanislaw Halik | |
2017-04-06 | tracker/steamvr: remove unused | Stanislaw Halik | |
2017-04-06 | tracker/steamvr: remove needless once_only macro usage | Stanislaw Halik | |
2017-04-06 | tracker/steamvr: use strerror from right namespace | Stanislaw Halik | |
Also use in device_list method to be explicit. | |||
2017-04-06 | tracker/steamvr: add missing return in error path | Stanislaw Halik | |
2017-04-06 | tracker/steamvr: support choosing device by its serial number | Stanislaw Halik | |
Since the vr handle is accessed on the GUI and pipeline threads now, had to add implicit locking. This sadly reorganizes most of the file. Sadly this refactor likely broke things. cf. https://github.com/opentrack/opentrack/issues/352#issuecomment-290252520 | |||
2017-04-06 | tracker/steamvr: add center() override | Stanislaw Halik | |