forked from serpentiem/ddmk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdinput8.cpp
More file actions
236 lines (157 loc) · 2.8 KB
/
dinput8.cpp
File metadata and controls
236 lines (157 loc) · 2.8 KB
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
import Core;
#include "Core/Macros.h"
import Windows;
import DI8;
using namespace Windows;
using namespace DI8;
#include <stdio.h>
#include <string.h>
#define debug false
namespaceStart(DI8);
typedef decltype(DirectInput8Create) * DirectInput8Create_t;
namespaceEnd();
namespaceStart(Base::DI8);
::DI8::DirectInput8Create_t DirectInput8Create = 0;
namespaceEnd();
namespaceStart(Hook::DI8);
HRESULT DirectInput8Create
(
HINSTANCE hinst,
DWORD dwVersion,
const IID& riidltf,
LPVOID* ppvOut,
LPUNKNOWN punkOuter
)
{
#pragma comment(linker, "/EXPORT:DirectInput8Create=" DECORATED_FUNCTION_NAME)
return ::Base::DI8::DirectInput8Create
(
hinst,
dwVersion,
riidltf,
ppvOut,
punkOuter
);
}
namespaceEnd();
void Init()
{
LogFunction();
byte32 error = 0;
const char * libName = "dinput8.dll";
char directory[128];
char location[512];
GetSystemDirectoryA
(
directory,
sizeof(directory)
);
snprintf
(
location,
sizeof(location),
"%s\\%s",
directory,
libName
);
SetLastError(0);
auto lib = LoadLibraryA(location);
if (!lib)
{
error = GetLastError();
Log("LoadLibraryA failed. %s %X", location, error);
return;
}
// DirectInput8Create
{
const char * funcName = "DirectInput8Create";
SetLastError(0);
auto funcAddr = GetProcAddress(lib, funcName);
if (!funcAddr)
{
error = GetLastError();
Log("GetProcAddress failed. %s %X", funcName, error);
return;
}
::Base::DI8::DirectInput8Create = reinterpret_cast<::DI8::DirectInput8Create_t>(funcAddr);
Log("DirectInput8Create %X", DirectInput8Create);
}
}
void Load()
{
LogFunction();
byte32 error = 0;
MODULEENTRY32 me32 = {};
me32.dwSize = sizeof(MODULEENTRY32);
auto snapshot = CreateToolhelp32Snapshot
(
TH32CS_SNAPMODULE,
0
);
Module32First(snapshot, &me32);
const char * names[][2] =
{
{
"dmc1.exe",
"Eva.dll",
},
{
"dmc2.exe",
"Lucia.dll",
},
{
"dmc3.exe",
"Mary.dll",
},
{
"dmc4.exe",
"Kyrie.dll",
},
{
"DevilMayCry4SpecialEdition.exe",
"Kyrie.dll",
}
};
for_all(index, countof(names))
{
auto appName = names[index][0];
auto libName = names[index][1];
if
(
strncmp
(
me32.szModule,
appName,
sizeof(appName) // @Research: Pretty sure that should be strlen. sizeof includes the terminating zero, strlen doesn't.
) == 0
)
{
Log("%s %s", appName, libName);
SetLastError(0);
auto lib = LoadLibraryA(libName);
if (!lib)
{
error = GetLastError();
Log("LoadLibraryA failed. %s %X", libName, error);
}
return;
}
}
Log("No Match");
}
byte32 DllMain
(
HINSTANCE instance,
byte32 reason,
void * reserved
)
{
if (reason == DLL_PROCESS_ATTACH)
{
InitLog("logs", "dinput8.txt");
Log("Session started.");
Init();
Load();
}
return 1;
}