summaryrefslogtreecommitdiffhomepage
path: root/opentrack-logic/dinput.cpp
blob: 4958e862beb62d0c452c8e8a4a2c44642b97b23c (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
#ifdef _WIN32

#include "dinput.hpp"
#include <QDebug>

dinput_handle dinput_handle::self;

dinput_handle::dinput_handle() : handle(init_di())
{
}

dinput_handle::~dinput_handle()
{
    if (handle)
    {
        handle->Release();
        handle = nullptr;
    }
}

dinput_handle::di_t dinput_handle::init_di()
{
    HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
    if (FAILED(hr))
        qDebug() << "dinput: failed CoInitializeEx" << hr << GetLastError();

    static LPDIRECTINPUT8 di_ = nullptr;
    if (di_ == nullptr)
    {
        if (SUCCEEDED(DirectInput8Create(GetModuleHandle(NULL), DIRECTINPUT_VERSION, IID_IDirectInput8, (void**)&di_, NULL)))
        {
            qDebug() << "made dinput8 handle";
            return di_;
        }
        else
        {
            return di_ = nullptr;
        }
    }
    return di_;
}

dinput_handle::di_t dinput_handle::make_di()
{
    return self.handle;
}

#endif