summaryrefslogtreecommitdiffhomepage
path: root/opentrack
AgeCommit message (Collapse)Author
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-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-19shortcuts: nix single-use mutexStanislaw Halik
It also slept with lock held. Good riddance.
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-11joy: guard _WIN32. retab.opentrack-2.3-rc21Stanislaw 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-11allow for binding joystick buttons to shortcut functionsStanislaw Halik
Win32 only Issue: #118
2015-11-01simple-mat: nix porked ctorStanislaw Halik
2015-11-01shortcuts: separate keybinding worker to another fileStanislaw Halik
2015-11-01shortcuts: cleanupStanislaw Halik
2015-11-01options: don't define options singleton in every moduleStanislaw Halik
Instead, define in opentrack-api.so only. Also, move to opentrack-compat to break a circular dependency
2015-11-01all: adjust options.hpp move to compatStanislaw Halik
2015-11-01cmake: fix spline widget linkageStanislaw Halik
2015-11-01cmake: less boilerplate, link dynamicallyStanislaw Halik
2015-10-30shortcuts: fix crash on LinuxStanislaw Halik
2015-10-30move to subdirectory-based build systemStanislaw Halik
Closes #224
2015-10-26main: use camera-based centering by defaultStanislaw Halik
2015-10-25win32: try win_key with modifier firstStanislaw Halik
2015-10-25shortcuts: remove obsolete code on win32Stanislaw Halik
Now that dinput catches keystrokes, it's not needed
2015-10-25shortcuts: allow for numpad on win32Stanislaw Halik
Closes #259
2015-10-25shortcuts: allow for numlock on win32Stanislaw Halik
2015-10-24shortcuts: allow for binding same key to multiple functionsStanislaw Halik
Closes #258
2015-10-20shortcuts: fix osx/linux keystrokes persistingopentrack-2.3-rc19p2Stanislaw Halik
2015-10-20all: update copyright where appropriateStanislaw Halik
2015-10-18tracker: initialize newposeStanislaw Halik
In newpose[i] = elide_nan(tmp[i], newpose[i]); uninitialized memory can be used.
2015-10-17cmake: generate version.ccStanislaw Halik
2015-10-17tracker: check for NaN valuesStanislaw Halik
Issue: #255
2015-10-17shortcuts: actually print screen binding worksStanislaw Halik
It works only if Dropbox doesn't hook the key Issue: #257
2015-10-17shortcuts: alias right modifier keys to left modifier keysStanislaw Halik
Issue: #257 Closes #257
2015-10-17shortcuts: allow for binding scroll lock and pause/breakStanislaw Halik
Print screen doesn't seem to work. Issue: #257
2015-10-16allow for filter immediate centerStanislaw Halik
2015-10-16win32-shortcuts: drop null keycodeStanislaw Halik
2015-10-12version: drop volatile, not neededStanislaw Halik
2015-10-11shortcuts: fix short keypressesStanislaw Halik
Issue: #253
2015-10-07shortcuts: sleep less, drop less keystrokesStanislaw Halik
2015-10-06main, ui: fix sort orderStanislaw Halik
Sort order was applied only to combobox but not to tracker list. Reported-by: @nanospork cf. https://github.com/opentrack/opentrack/issues/231#issuecomment-145741998
2015-10-02main: add relative and absolute center optionsStanislaw Halik
Closes #237
2015-10-02main: keybinding for "zero" should reset to PERFECTLY forwardStanislaw Halik
Closes #242
2015-10-02shortcuts: use our own timer, other one is thread-boundStanislaw Halik
2015-10-02shortcuts: implement dinput -> qt conversionStanislaw Halik