summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2015-11-29aruco: rework timeout logicopentrack-2.3-rc21p2Stanislaw Halik
- cycle otsu twice before selecting new box size don't cycle otsu each frame. - slower backoff from timeout value before new box size on occasional detections need at least 5 successes for each failure to not exceed. - select more sensible timeout per box size of .35 seconds. this is enough also with 30 Hz webcams, but too little for 15 Hz modes.
2015-11-29api/joystick: drop locking, add commentStanislaw Halik
2015-11-29api/joystick: oops, access the right 'joys' variableStanislaw Halik
2015-11-29api/joystick: reduce mutex contentionStanislaw Halik
Don't look for changes in hotplug joysticks by freezing up polling for joysticks' axis and button. Issue: #267
2015-11-29qfc: use cross cursor when hovering over a pointStanislaw Halik
2015-11-29fixup! qfc: use euclidean distance to pointStanislaw Halik
Don't use rectangle bounding box for circles
2015-11-29qfc: use euclidean distance to pointStanislaw Halik
Don't use rectangle bounding box for circles
2015-11-26tracker/rs adjusted UI to reflect SDK updateXavier Hallade
2015-11-26tracker/rs: updated RealSense SDK to R5-HF1Xavier Hallade
2015-11-26api/shortcuts: remove pointless "friend" declarationsStanislaw Halik
2015-11-26api/shortcuts: move to separate definitionStanislaw Halik
There's no need to have definitions in header for non-template classes
2015-11-24Update README.mdStanisław Halik
2015-11-24api/shortcuts: don't unacquire joy handle pointlesslyStanislaw Halik
2015-11-22api/shortcuts: fix copy-paste erroropentrack-2.3-rc21p1Stanislaw Halik
2015-11-22cmake: build osx .app only after installStanislaw Halik
By accident tarball was build prior to install qxt-mini.
2015-11-22api/shortcuts: don't provide guard/stubs for non-win32Stanislaw Halik
The worker class is win32-only. Don't guard there, consumers are expected only to include it on _WIN32. For the same reason don't provide a stub for the keybinding worker.
2015-11-22api/joy: guard _WIN32 properlyStanislaw Halik
2015-11-22api/shortcuts: hopefully guard joystick _WIN32Stanislaw Halik
2015-11-22opentrack/joystick: rename header to clarify usageStanislaw Halik
2015-11-22cmake: default to tarball build at -j4Stanislaw Halik
2015-11-22api/shortcuts: add missing win32 delete key definitionStanislaw Halik
2015-11-22tracker/joy: don't save joy friendly nameStanislaw Halik
We don't need it for joy selection
2015-11-22api/shortcuts, tracker/joy: adapt to synchronized joy apiStanislaw Halik
2015-11-22api/joy: protect dinput with mutex in all casesStanislaw Halik
Also practice object-oriented information hiding to avoid accesses without the mutex. Also provide basic joy information (guid, name) without exposing dinput handles and so on.
2015-11-22compat/options: no need to heap-alloc hereStanislaw Halik
2015-11-22tracker/joy: use the centralized joystick state workerStanislaw Halik
Most of the code can be removed.
2015-11-22api/joy: implement a central joystick workerStanislaw Halik
- Make the dinput handle a singleton also across module boundaries. - Provide axis values per connected stick. - Robustify in case of sudden unplug.
2015-11-22work: use the centralized keypress workerStanislaw Halik
2015-11-22api/keyboard: implement a central workerStanislaw Halik
DirectInput dies when two LPDIRECTINPUT8 handles are obtained. Implement a singleton worker providing keypress events.
2015-11-19tracker-rs: updated RealSense SDK version to R5Xavier Hallade
2015-11-19tracker/joystick: avoid recursive acquire of non-recursive mutexStanislaw Halik
2015-11-19shortcuts: nix single-use mutexStanislaw Halik
It also slept with lock held. Good riddance.
2015-11-16tracker/win32-joy: forgot to save stick indexStanislaw Halik
Issue: #267
2015-11-12joy: remove branchingStanislaw Halik
2015-11-12joy: for newly plugged sticks, only emit events after 3 secondsStanislaw Halik
My X65 emits modeswitch events only a while after getting plugged in. This only affects newly hotplugged joysticks. Ones plugged in before listening start start processing events immediately. Issue: #118
2015-11-11installer: fix path to icon onlyStanislaw Halik
2015-11-11joy: guard _WIN32. retab.opentrack-2.3-rc21Stanislaw Halik
2015-11-11options: stringify keyboard mods for joy buttonsStanislaw Halik
2015-11-11shortcuts: alloy kbd mods for joystick buttonsStanislaw Halik
2015-11-11joy: slurp keys on startupStanislaw Halik
2015-11-11joy: add cheap debug infoStanislaw Halik
2015-11-11joy: memset won't hurtStanislaw Halik
2015-11-11joy: pass shortcut only if pressed, not depressedStanislaw Halik
Issue: #118 Reported-by: @Len62
2015-11-11joy: refresh immediately once on startupStanislaw Halik
2015-11-11shortcuts: register joysticks every 250 ms, not 2 secondsStanislaw Halik
Issue: #118
2015-11-11shortcuts: map joystick buttons on depress onlyStanislaw Halik
Some buttons like the X65 mode switch are held all the time. Prevent them from hogging all the keybindings. Issue: #118
2015-11-11options: konst korrektnessStanislaw Halik
2015-11-11allow for binding joystick buttons to shortcut functionsStanislaw Halik
Win32 only Issue: #118
2015-11-06spline: snap x, y coordinates to gridStanislaw Halik
2015-11-06qfc: always ensure at least one point existsStanislaw Halik
Previously, insertion of the lone point was postponed until opening the mapping window.