summaryrefslogtreecommitdiffhomepage
path: root/dinput/dinput.hpp
blob: 7128229bddbe5da461817f9e945b2c793c492d8c (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
/* 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"

#include <atomic>

#undef DIRECTINPUT_VERSION
#define DIRECTINPUT_VERSION 0x800

#include <dinput.h>

using diptr = IDirectInput8A*;

class OTR_DINPUT_EXPORT di_t final
{
    static void unref_di();
    static void ref_di();

    static diptr handle;
    static int refcnt;
    static std::atomic_flag lock;
    static diptr init_di_();

public:
    di_t();
    ~di_t();
    di_t(const di_t&) : di_t() {}
    di_t& operator=(const di_t&) = default;

    diptr operator->() const { return handle; }
    operator bool() { return handle != nullptr; }

    // for debugging bad usages. must use a dependent name.
    template<typename t = void>
    explicit operator void*() const
    {
        static_assert(sizeof(t) == -1);
        static_assert(sizeof(t) == 0);

        return nullptr;
    }
};