diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-08-10 12:02:00 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-08-10 12:02:00 +0200 |
commit | 6e7af85c52e994fada7f989f4af2a6e793dedac9 (patch) | |
tree | f5e70bdd6e376f282bc625274fd2cece30f62020 /opentrack-logic/keybinding-worker.hpp | |
parent | 8ee2337bc9e9285fac8bada710a2e39629ce5050 (diff) |
dinput: split from logic module
For use in the joystick module.
Diffstat (limited to 'opentrack-logic/keybinding-worker.hpp')
-rw-r--r-- | opentrack-logic/keybinding-worker.hpp | 80 |
1 files changed, 0 insertions, 80 deletions
diff --git a/opentrack-logic/keybinding-worker.hpp b/opentrack-logic/keybinding-worker.hpp deleted file mode 100644 index e38e5046..00000000 --- a/opentrack-logic/keybinding-worker.hpp +++ /dev/null @@ -1,80 +0,0 @@ -/* Copyright (c) 2014-2015, Stanislaw Halik <sthalik@misaki.pl> - - * Permission to use, copy, modify, and/or distribute this - * software for any purpose with or without fee is hereby granted, - * provided that the above copyright notice and this permission - * notice appear in all copies. - */ - -#pragma once - -#include "export.hpp" - -#include "opentrack-compat/timer.hpp" -#include "win32-joystick.hpp" -#include "dinput.hpp" -#include <QThread> -#include <QMutex> -#include <QWidget> -#include <QMainWindow> -#include <functional> -#include <vector> - -#undef DIRECTINPUT_VERSION -#define DIRECTINPUT_VERSION 0x0800 -#include <windows.h> -#include <dinput.h> -struct Key { - BYTE keycode; - QString guid; - bool shift; - bool ctrl; - bool alt; - bool held; - bool enabled; - Timer timer; -public: - Key() : keycode(0), shift(false), ctrl(false), alt(false), held(true), enabled(true) {} - - bool should_process(); -}; - -struct OPENTRACK_LOGIC_EXPORT KeybindingWorker : private QThread -{ - using fun = std::function<void(const Key&)>; - -private: - LPDIRECTINPUTDEVICE8 dinkeyboard; - win32_joy_ctx joy_ctx; - std::vector<std::unique_ptr<fun>> receivers; - QMutex mtx; - QMainWindow fake_main_window; - volatile bool should_quit; - - void run() override; - KeybindingWorker(); - - static KeybindingWorker& make(); - fun* _add_receiver(fun &receiver); - void remove_receiver(fun* pos); - ~KeybindingWorker(); - - KeybindingWorker(const KeybindingWorker&) = delete; - KeybindingWorker& operator=(KeybindingWorker&) = delete; -public: - class Token - { - fun* pos; - Token(const Token&) = delete; - Token& operator=(Token&) = delete; - public: - ~Token() - { - make().remove_receiver(pos); - } - Token(fun receiver) - { - pos = make()._add_receiver(receiver); - } - }; -}; |