summaryrefslogtreecommitdiffhomepage
path: root/dinput/keybinding-worker.hpp
blob: 6b7d6882cc6dc1355f8bf7b88a7a82cc3b444a34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* 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 "compat/timer.hpp"
#include "win32-joystick.hpp"
#include "dinput.hpp"
#include <QThread>
#include <QMutex>
#include <QWidget>
#include <QMainWindow>
#include <QDebug>
#include <functional>
#include <vector>

struct OTR_DINPUT_EXPORT Key
{
    QString guid;
    int keycode = 0;
    bool shift = false;
    bool ctrl = false;
    bool alt = false;
    bool held = true;
    bool enabled = true;
    Timer timer;
public:
    Key();

    bool should_process();
};

struct OTR_DINPUT_EXPORT KeybindingWorker : private QThread
{
    using fun = std::function<void(const Key&)>;

private:
    LPDIRECTINPUTDEVICE8 dinkeyboard { nullptr };
    win32_joy_ctx joy_ctx;
    std::vector<std::unique_ptr<fun>> receivers;
    QMutex mtx;
    QMainWindow fake_main_window;
    di_t din;

    bool keystate[256] {};
    bool old_keystate[256] {};

    void run() override;
    bool init();
    KeybindingWorker();

    static KeybindingWorker& make();
    fun* _add_receiver(fun &receiver);
    void remove_receiver(fun* pos);
    ~KeybindingWorker();

    static constexpr int num_keyboard_states = 16;
    DIDEVICEOBJECTDATA keyboard_states[num_keyboard_states] {};

    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);
        }
    };
};