-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathPlatform_Windows.cpp
346 lines (291 loc) · 9.21 KB
/
Platform_Windows.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
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
#define WIN32_LEAN_AND_MEAN
#include "Diablo2.hpp"
#include "Platform.hpp"
#include "FileSystem.hpp"
#include "Logging.hpp"
#include <Windows.h>
#include <stdlib.h>
#include <cstdio>
#include <shlobj.h>
#include <crtdbg.h>
#include <winsock2.h>
#include <iphlpapi.h>
// Link with Iphlpapi.lib
#pragma comment(lib, "IPHLPAPI.lib")
#define D2REGISTRY_BETA_KEY "SOFTWARE\\Blizzard Entertainment\\Diablo II Beta"
#define D2REGISTRY_KEY "SOFTWARE\\Blizzard Entertainment\\Diablo II"
#define REGISTRY_KEY_SIZE 2048
//////////////////////////////////////////////////////////////
//
// Data Structures
struct D2ModuleInternal
{
HMODULE dwModule;
D2ModuleExportStrc* pExports;
};
//////////////////////////////////////////////////////////////
//
// Global variables
static D2ModuleInternal gModules[MODULE_MAX]{ 0 };
//////////////////////////////////////////////////////////////
//
// Platform-Specific Functions
namespace Sys
{
/*
* Copy registry keys (and delete them) from the Diablo II beta to the retail game.
* This step is done before anything else.
* Never really gets used anymore, but since we're in the business of replicating base game behavior...
*/
void CopyBetaRegistryKeys()
{
HKEY betakey;
HKEY key;
int i;
DWORD type;
BYTE data;
DWORD cbdata = 0;
LSTATUS status;
char keybuffer[REGISTRY_KEY_SIZE]{ 0 };
DWORD keybufferSize = REGISTRY_KEY_SIZE;
if (!RegOpenKeyA(HKEY_LOCAL_MACHINE, D2REGISTRY_BETA_KEY, &betakey))
{ // We had the Diablo II beta installed. Copy the keys and delete the old ones.
RegCreateKeyA(HKEY_LOCAL_MACHINE, D2REGISTRY_KEY, &key);
i = 0;
do
{
status = RegEnumValueA(betakey, i++, keybuffer, &keybufferSize, 0, &type, &data, &cbdata);
} while (status == 0 && RegSetValueExA(key, keybuffer, 0, type, &data, cbdata));
RegCloseKey(betakey);
RegCloseKey(key);
RegDeleteKeyA(HKEY_LOCAL_MACHINE, D2REGISTRY_BETA_KEY);
}
}
/*
* Copy registry keys from the retail game and make them available in D2.ini
* This step has to be done after we've initialized the file system
*/
void CopySettings()
{
}
/*
* Get topmost adapter IP address
*/
#define ADAPTER_LIST_SIZE 15000
char16_t* GetAdapterIP()
{
IP_ADAPTER_ADDRESSES* addresses = (IP_ADAPTER_ADDRESSES*)malloc(ADAPTER_LIST_SIZE);
PIP_ADAPTER_ADDRESSES currAddress;
DWORD dwSize = ADAPTER_LIST_SIZE;
static char16_t szAddress[32];
if (GetAdaptersAddresses(AF_INET, 0, nullptr, addresses, &dwSize) != ERROR_BUFFER_OVERFLOW)
{
currAddress = (PIP_ADAPTER_ADDRESSES)addresses;
while (currAddress)
{
if (currAddress->OperStatus == IfOperStatusUp && currAddress->Ipv4Enabled &&
currAddress->FirstUnicastAddress)
{ // current adapter is operational, is IPv4 enabled and has TCP (unicast) capabilities
DWORD dwOffset = 0;
for (int i = 2; i < 6; i++)
{
size_t dwWritten = 0;
if (i != 2)
{ // add dots between the numbers
szAddress[dwOffset++] = u'.';
}
// put the number on
D2Lib::qnitoa((BYTE)currAddress->FirstUnicastAddress->Address.lpSockaddr->sa_data[i],
szAddress + dwOffset, 32 - dwOffset, 10, dwWritten);
dwOffset += dwWritten;
}
free(addresses);
return szAddress;
}
currAddress = currAddress->Next;
}
}
free(addresses);
D2Lib::qsnprintf(szAddress, 32, u"0.0.0.0");
return szAddress;
}
/*
* Get default homepath
*/
void DefaultHomepath(char* szBuffer, size_t dwBufferLen)
{
TCHAR homeDirectory[MAX_PATH];
if (!SUCCEEDED(SHGetFolderPath(NULL, CSIDL_PERSONAL, NULL, 0, homeDirectory)))
{ // Couldn't find it, I guess?
return;
}
snprintf(szBuffer, dwBufferLen, "%s/My Games/" GAME_HOMEPATH, homeDirectory);
}
/*
* Get current working directory
*/
void GetWorkingDirectory(char* szBuffer, size_t dwBufferLen)
{
GetCurrentDirectoryA(dwBufferLen, szBuffer);
}
/*
* Given a buffer and an amount of memory, writes to the buffer "X MB (Y GB)"
*/
static void FormatMemory(char* buffer, DWORD dwBufferLen, DWORDLONG ullMemory)
{
double fMemoryKB = ullMemory / 1024.0;
double fMemoryMB = fMemoryKB / 1024.0;
double fMemoryGB = fMemoryMB / 1024.0;
snprintf(buffer, dwBufferLen, "%.0f MB (%.2f GB)", fMemoryMB, fMemoryGB);
}
/*
* Get system info from the operating system
* @author eezstreet
*/
void GetSystemInfo(D2SystemInfoStrc* pInfo)
{
DWORD dwWriteSize;
OSVERSIONINFO osi;
osi.dwOSVersionInfoSize = sizeof(osi);
GetWorkingDirectory(pInfo->szWorkingDirectory, MAX_D2PATH_ABSOLUTE);
dwWriteSize = 64;
GetComputerName(pInfo->szComputerName, &dwWriteSize);
dwWriteSize = 128;
GetVersionEx(&osi);
// Version string is tricky because Microsoft is bad at numbering
switch (osi.dwPlatformId)
{
case VER_PLATFORM_WIN32s:
D2Lib::strncpyz(pInfo->szOSName, "Windows 3.x", dwWriteSize);
break;
case VER_PLATFORM_WIN32_NT:
snprintf(pInfo->szOSName, dwWriteSize,
"Windows NT (Version %i.%i) %s",
osi.dwMajorVersion, osi.dwMinorVersion, osi.szCSDVersion);
break;
case VER_PLATFORM_WIN32_WINDOWS:
D2Lib::strncpyz(pInfo->szOSName, osi.dwMinorVersion == 0 ? "Windows 95" : "Windows 98", dwWriteSize);
break;
default:
D2Lib::strncpyz(pInfo->szOSName, "{unknown}", dwWriteSize);
break;
}
// RAM is pretty straightforward
MEMORYSTATUSEX ms;
ms.dwLength = sizeof(MEMORYSTATUSEX);
GlobalMemoryStatusEx(&ms);
dwWriteSize = 64;
FormatMemory(pInfo->szRAMPhysical, dwWriteSize, ms.ullTotalPhys);
FormatMemory(pInfo->szRAMPaging, dwWriteSize, ms.ullTotalPageFile);
FormatMemory(pInfo->szRAMVirtual, dwWriteSize, ms.ullTotalVirtual);
// Windows Strikes Again with the poor options to grab processor information.
// The best way seems to be to pull it out of the registry, so we'll go with that.
HKEY key = 0;
if (RegOpenKeyEx(HKEY_LOCAL_MACHINE,
"HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\0",
0, KEY_QUERY_VALUE, &key) == 0)
{
DWORD MHz = 0;
dwWriteSize = 32;
RegQueryValueEx(key, "VendorIdentifier", NULL, NULL, (LPBYTE)pInfo->szProcessorVendor, &dwWriteSize);
dwWriteSize = 64;
RegQueryValueEx(key, "ProcessorNameString", NULL, NULL, (LPBYTE)pInfo->szProcessorModel, &dwWriteSize);
RegQueryValueEx(key, "Identifier", NULL, NULL, (LPBYTE)pInfo->szProcessorIdentifier, &dwWriteSize);
dwWriteSize = sizeof(DWORD);
RegQueryValueEx(key, "~MHz", NULL, NULL, (LPBYTE)&MHz, &dwWriteSize);
RegCloseKey(key);
dwWriteSize = 64;
snprintf(pInfo->szProcessorSpeed, dwWriteSize, "~%i MHz (approx.)", MHz);
}
else
{
D2Lib::strncpyz(pInfo->szProcessorVendor, "{unknown}", 32);
D2Lib::strncpyz(pInfo->szProcessorModel, "{unknown}", 64);
D2Lib::strncpyz(pInfo->szProcessorSpeed, "{unknown}", 64);
}
}
/*
* Create directory if it doesn't already exist
*/
#ifdef CreateDirectory
#undef CreateDirectory
#endif
bool CreateDirectory(char* szPath)
{
return ::CreateDirectoryA(szPath, NULL);
}
/*
* Build a list of files with an extension filter.
* If the extension filter is *.*, there is essentially no filter.
* @author eezstreet
*/
void ListFilesInDirectory(char* szPath, char* szExtensionFilter, char* szOriginalPath, int* nFiles, char(*szList)[MAX_FILE_LIST_SIZE][MAX_D2PATH_ABSOLUTE])
{
char szFullPath[MAX_D2PATH_ABSOLUTE]{ 0 };
HANDLE hFile;
WIN32_FIND_DATA findData;
snprintf(szFullPath, MAX_D2PATH_ABSOLUTE, "%s/%s", szPath, szExtensionFilter);
// Find the first file.
hFile = FindFirstFile(szFullPath, &findData);
if (hFile == INVALID_HANDLE_VALUE)
{
return;
}
// Iterate through the list of files, adding them to the szList
do
{
snprintf((*szList)[*nFiles], MAX_D2PATH_ABSOLUTE, "%s/%s", szOriginalPath, findData.cFileName);
*nFiles = *nFiles + 1;
} while (FindNextFile(hFile, &findData) == TRUE);
}
/*
* Gets the API of a module
* Note: This doesn't validate the API version etc, we need to do this manually afterward.
*/
D2ModuleExportStrc* OpenModule(OpenD2Modules nModule, D2ModuleImportStrc* pImports)
{
char szModulePath[MAX_D2PATH_ABSOLUTE]{ 0 };
bool bModuleFound = false;
if (gModules[nModule].dwModule != 0)
{
return gModules[nModule].pExports;
}
if (nModule == MODULE_CLIENT)
{
bModuleFound = FS::Find("D2Client.dll", szModulePath, MAX_D2PATH_ABSOLUTE);
}
else if (nModule == MODULE_SERVER)
{
bModuleFound = FS::Find("D2Server.dll", szModulePath, MAX_D2PATH_ABSOLUTE);
}
Log_ErrorAssertReturn(bModuleFound, nullptr);
gModules[nModule].dwModule = LoadLibrary(szModulePath);
DWORD error = GetLastError();
Log_ErrorAssertReturn(gModules[nModule].dwModule != 0, nullptr);
GetAPIType ModuleAPI;
ModuleAPI = (GetAPIType)GetProcAddress(gModules[nModule].dwModule, "GetModuleAPI");
Log_ErrorAssertReturn(ModuleAPI != nullptr, nullptr);
return ModuleAPI(pImports);
}
/*
* Closes a single module
*/
void CloseModule(OpenD2Modules nModule)
{
if (gModules[nModule].dwModule == 0)
{
return;
}
FreeLibrary(gModules[nModule].dwModule);
memset(&gModules[nModule], 0, sizeof(D2ModuleInternal));
}
}
/*
* The main entrypoint of the program (on Windows)
*/
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, char* szCmdLine, int nShowCmd)
{
// TODO: copy fields from registry and put them in D2.ini, which we also need to load and parse..
Sys::CopyBetaRegistryKeys();
return InitGame(__argc, __argv);
}