forked from elishacloud/dinputto8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dinputto8.cpp
173 lines (130 loc) · 4.52 KB
/
dinputto8.cpp
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/**
* Copyright (C) 2020 Elisha Riedlinger
*
* This software is provided 'as-is', without any express or implied warranty. In no event will the
* authors be held liable for any damages arising from the use of this software.
* Permission is granted to anyone to use this software for any purpose, including commercial
* applications, and to alter it and redistribute it freely, subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented; you must not claim that you wrote the
* original software. If you use this software in a product, an acknowledgment in the product
* documentation would be appreciated but is not required.
* 2. Altered source versions must be plainly marked as such, and must not be misrepresented as
* being the original software.
* 3. This notice may not be removed or altered from any source distribution.
*/
#include "resource.h"
#include "dinputto8.h"
std::ofstream LOG;
bool InitFlag = false;
DWORD diVersion = 0;
AddressLookupTableDinput<void> ProxyAddressLookupTable = AddressLookupTableDinput<void>();
DirectInput8CreateProc m_pDirectInput8Create = nullptr;
DllCanUnloadNowProc m_pDllCanUnloadNow = nullptr;
DllGetClassObjectProc m_pDllGetClassObject = nullptr;
DllRegisterServerProc m_pDllRegisterServer = nullptr;
DllUnregisterServerProc m_pDllUnregisterServer = nullptr;
HRESULT WINAPI DirectInputCreateEx(HINSTANCE hinst, DWORD dwVersion, REFIID riid, LPVOID * lplpDD, LPUNKNOWN punkOuter);
void InitDinput8()
{
// Check if already initialized
if (InitFlag)
{
return;
}
InitFlag = true;
// Init logs
#ifdef NOLOGGING
Logging::EnableLogging = false;
#else
Logging::Open("dinput.log");
Logging::Log() << "Starting dinputto8 v" << APP_VERSION;
Logging::LogComputerManufacturer();
Logging::LogOSVersion();
Logging::LogProcessNameAndPID();
Logging::LogGameType();
#endif
// Load dll
HMODULE dinput8dll = LoadLibraryA("dinput8.dll");
// Get function addresses
m_pDirectInput8Create = (DirectInput8CreateProc)GetProcAddress(dinput8dll, "DirectInput8Create");
m_pDllCanUnloadNow = (DllCanUnloadNowProc)GetProcAddress(dinput8dll, "DllCanUnloadNow");
m_pDllGetClassObject = (DllGetClassObjectProc)GetProcAddress(dinput8dll, "DllGetClassObject");
m_pDllRegisterServer = (DllRegisterServerProc)GetProcAddress(dinput8dll, "DllRegisterServer");
m_pDllUnregisterServer = (DllUnregisterServerProc)GetProcAddress(dinput8dll, "DllUnregisterServer");
}
HRESULT WINAPI DirectInputCreateA(HINSTANCE hinst, DWORD dwVersion, LPDIRECTINPUTA* lplpDirectInput, LPUNKNOWN punkOuter)
{
InitDinput8();
LOG_LIMIT(1, __FUNCTION__);
return DirectInputCreateEx(hinst, dwVersion, IID_IDirectInputA, (LPVOID*)lplpDirectInput, punkOuter);
}
HRESULT WINAPI DirectInputCreateW(HINSTANCE hinst, DWORD dwVersion, LPDIRECTINPUTW* lplpDirectInput, LPUNKNOWN punkOuter)
{
InitDinput8();
LOG_LIMIT(1, __FUNCTION__);
return DirectInputCreateEx(hinst, dwVersion, IID_IDirectInputW, (LPVOID*)lplpDirectInput, punkOuter);
}
HRESULT WINAPI DirectInputCreateEx(HINSTANCE hinst, DWORD dwVersion, REFIID riid, LPVOID * lplpDD, LPUNKNOWN punkOuter)
{
InitDinput8();
LOG_LIMIT(1, __FUNCTION__);
if (!m_pDirectInput8Create)
{
return DIERR_GENERIC;
}
LOG_LIMIT(3, "Redirecting 'DirectInputCreate' " << riid << " version " << Logging::hex(dwVersion) << " to --> 'DirectInput8Create'");
HRESULT hr = m_pDirectInput8Create(hinst, 0x0800, ConvertREFIID(riid), lplpDD, punkOuter);
if (SUCCEEDED(hr) && lplpDD)
{
diVersion = dwVersion;
m_IDirectInputX *Interface = new m_IDirectInputX((IDirectInput8W*)*lplpDD, riid);
*lplpDD = Interface->GetWrapperInterfaceX(GetGUIDVersion(riid));
}
return hr;
}
HRESULT WINAPI DllCanUnloadNow()
{
InitDinput8();
LOG_LIMIT(1, __FUNCTION__);
if (!m_pDllCanUnloadNow)
{
return DIERR_GENERIC;
}
return m_pDllCanUnloadNow();
}
HRESULT WINAPI DllGetClassObject(IN REFCLSID rclsid, IN REFIID riid, OUT LPVOID FAR* ppv)
{
InitDinput8();
LOG_LIMIT(1, __FUNCTION__);
if (!m_pDllGetClassObject)
{
return DIERR_GENERIC;
}
HRESULT hr = m_pDllGetClassObject(ConvertREFCLSID(rclsid), ConvertREFIID(riid), ppv);
if (SUCCEEDED(hr) && ppv)
{
genericQueryInterface(riid, ppv);
}
return hr;
}
HRESULT WINAPI DllRegisterServer()
{
InitDinput8();
LOG_LIMIT(1, __FUNCTION__);
if (!m_pDllRegisterServer)
{
return DIERR_GENERIC;
}
return m_pDllRegisterServer();
}
HRESULT WINAPI DllUnregisterServer()
{
InitDinput8();
LOG_LIMIT(1, __FUNCTION__);
if (!m_pDllUnregisterServer)
{
return DIERR_GENERIC;
}
return m_pDllUnregisterServer();
}