summaryrefslogtreecommitdiffhomepage
path: root/dinput/dinput.hpp
blob: afc29d29040bab2942bf781d0ce3bc6e37b62596 (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
/* Copyright (c) 2016, 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"

#ifdef Q_MOC_RUN
typedef void* LPDIRECTINPUT8;
#else
#ifndef DIRECTINPUT_VERSION
#   define DIRECTINPUT_VERSION 0x800
#include <dinput.h>
#endif
#include <atomic>
#endif

#if defined(_MSC_VER)
    template struct __declspec(dllexport) std::atomic<int>;
#endif

class OTR_DINPUT_EXPORT dinput_handle final
{
public:
    class di_t;

private:
    static std::atomic<int> refcnt;
    static std::atomic_flag init_lock;

    static LPDIRECTINPUT8& init_di();
public:
    class di_t final
    {
        friend class dinput_handle;

        LPDIRECTINPUT8* handle;

        di_t(LPDIRECTINPUT8& handle);
        void free_di();
        void unref_di();
        void ref_di();

    public:
        LPDIRECTINPUT8 operator->() { return *handle; }
        operator LPDIRECTINPUT8() { return *handle; }
        LPDIRECTINPUT8 di() { return *handle; }
        di_t& operator=(const di_t& new_di);
        di_t();
        ~di_t();
    };

    static di_t make_di();
    dinput_handle() = delete;
};