-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathUtils.cpp
More file actions
190 lines (160 loc) · 5.66 KB
/
Utils.cpp
File metadata and controls
190 lines (160 loc) · 5.66 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
#include <Windows.h>
#include <cstdint>
#include <fstream>
#include <algorithm>
#include <cctype>
#include "Utils.h"
#include <vector>
#include <regex>
#include "D2Tables.h"
#include "D2Structs.h"
#include "D2Ptrs.h"
#include "mINI.h"
#pragma comment(lib, "Version.Lib")
#define D2SE_SETUP_FILE "D2SE_SETUP.ini"
D2Version InitGameVersion(LPCVOID pVersionResource) {
UINT uLen;
VS_FIXEDFILEINFO* ptFixedFileInfo;
if (!VerQueryValue(pVersionResource, L"\\", (LPVOID*)&ptFixedFileInfo, &uLen))
return D2Version::NONE;
if (uLen == 0)
return D2Version::ERR;
WORD major = HIWORD(ptFixedFileInfo->dwFileVersionMS);
WORD minor = LOWORD(ptFixedFileInfo->dwFileVersionMS);
WORD revision = HIWORD(ptFixedFileInfo->dwFileVersionLS);
WORD subrevision = LOWORD(ptFixedFileInfo->dwFileVersionLS);
if (major != 1)
return D2Version::ERR;
if (minor == 0 && revision == 13 && subrevision == 60) return D2Version::V113c;
if (minor == 14 && revision == 3 && subrevision == 71) return D2Version::V114d;
if (minor == 0 && revision == 10 && subrevision == 39) return D2Version::V110f;
return D2Version::ERR;
}
D2Version InitGameVersion() {
mINI::INIFile file(D2SE_SETUP_FILE);
mINI::INIStructure coredata;
bool exists = std::filesystem::exists(D2SE_SETUP_FILE);
if (!exists) {
HMODULE hModule = GetModuleHandle(NULL);
HRSRC hResInfo = FindResource(hModule, MAKEINTRESOURCE(VS_VERSION_INFO), RT_VERSION);
if (!hResInfo) {
return D2Version::ERR;
}
HGLOBAL hResData = LoadResource(hModule, hResInfo);
if (!hResData) {
return D2Version::ERR;
}
LPVOID pVersionResource = LockResource(hResData);
D2Version version = InitGameVersion(pVersionResource);
FreeResource(hResData);
return version;
}
else {
file.read(coredata);
const auto& core = coredata["Protected"]["D2Core"];
if (core == "1.10f") return D2Version::V110f;
if (core == "1.13c") return D2Version::V113c;
return D2Version::ERR;
}
}
D2Version GetGameVersion() {
static D2Version GameVersion = InitGameVersion();
return GameVersion;
}
void PrintGameString(const std::wstring& wStr, TextColor color) {
if (GetGameVersion() == D2Version::V114d || GetGameVersion() == D2Version::V110f) {
D2CLIENT_PrintGameStringe_114d(wStr.c_str(), color);
} else {
D2CLIENT_PrintGameString(wStr.c_str(), color);
}
}
Unit* FindUnitFromTable(uint32_t unitId, UnitType type) {
UnitHashTable serverSideUnitTable = D2CLIENT_ServerSideUnitHashTables[static_cast<int32_t>(type)];
Unit* unit = serverSideUnitTable.table[unitId];
if (unit == NULL) {
UnitHashTable clientSideUnitTable = D2CLIENT_ClientSideUnitHashTables[static_cast<int32_t>(type)];
unit = clientSideUnitTable.table[unitId];
}
return unit;
}
Unit* FindUnit(uint32_t unitId, UnitType type) {
Unit* unit = D2CLIENT_FindServerSideUnit(unitId, type);
if (unit == NULL) {
unit = D2CLIENT_FindClientSideUnit(unitId, type);
}
return unit;
}
uint32_t __fastcall GetDllOffset(uint32_t baseAddress, int offset) {
DEBUG_LOG(std::format(L"baseAddress: {}\n", baseAddress));
DEBUG_LOG(std::format(L"offset: {}\n", offset));
DEBUG_LOG(std::format(L"return: {}\n", baseAddress + offset));
if (offset < 0)
return (uint32_t)GetProcAddress((HMODULE)baseAddress, (LPCSTR)(-offset));
return baseAddress + offset;
}
std::wstring_view ltrim(std::wstring_view s) {
s.remove_prefix(std::distance(s.cbegin(), std::find_if(s.cbegin(), s.cend(),
[](wchar_t c) {return !iswspace(c); })));
return s;
}
std::wstring_view rtrim(std::wstring_view s) {
s.remove_suffix(std::distance(s.crbegin(), std::find_if(s.crbegin(), s.crend(),
[](wchar_t c) {return !iswspace(c); })));
return s;
}
std::wstring_view trim(std::wstring_view s) {
return ltrim(rtrim(s));
}
std::wstring ltrim_copy(std::wstring_view s) {
return std::wstring(ltrim(s));
}
// trim from end (copying)
std::wstring rtrim_copy(std::wstring_view s) {
return std::wstring(rtrim(s));
}
// trim from both ends (copying)
std::wstring trim_copy(std::wstring_view s) {
return std::wstring(trim(s));
}
void replace(std::wstring& subject, std::wstring_view search, std::wstring_view replace) {
size_t pos = 0;
while ((pos = subject.find(search, pos)) != std::wstring_view::npos) {
subject.replace(pos, search.length(), replace);
pos += replace.length();
}
}
std::vector<std::wstring> split(std::wstring_view stringToSplit, std::wstring_view regexPattern)
{
std::vector<std::wstring> result;
const std::wregex rgx(regexPattern.begin(), regexPattern.end());
std::regex_token_iterator<std::wstring_view::iterator> iter(stringToSplit.begin(), stringToSplit.end(), rgx, -1);
for (std::regex_token_iterator<std::wstring_view::iterator> end; iter != end; ++iter)
{
result.emplace_back(iter->str());
}
return result;
}
ItemsTxt* GetItemsTxt(Unit* pUnit) {
return &D2COMMON_ItemDataTbl->pItemsTxt[pUnit->dwLineId];
}
std::wstring GetItemCode(Unit* pUnit) {
ItemsTxt* pItemTxt = GetItemsTxt(pUnit);
std::wstring wCode = std::wstring(4, L' ');
mbstowcs(&wCode[0], pItemTxt->szCode, 4);
wCode = trim(wCode);
return wCode;
}
int32_t GetQualityLevel(Unit* pItem) {
ItemsTxt* pItemTxt = GetItemsTxt(pItem);
int32_t quality = -1;
if (pItemTxt->dwCode == pItemTxt->dwUltraCode) {
quality = 2;
}
else if (pItemTxt->dwCode == pItemTxt->dwUberCode) {
quality = 1;
}
else if (pItemTxt->dwCode == pItemTxt->dwNormCode) {
quality = 0;
}
return quality;
}