-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIH.Loader.cpp
More file actions
315 lines (266 loc) · 7.25 KB
/
IH.Loader.cpp
File metadata and controls
315 lines (266 loc) · 7.25 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
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
#include "IH.Loader.h"
#include "IH.Config.h"
#include "IH.Initial.h"
#include "IH.InitialService.h"
#include "EC.Misc.h"
#include "SyringeEx.h"
#include <Windows.h>
#include <string_view>
#ifndef IHCore
void MyInit(InitResult& Result);
#include <iostream>
#include <cstdio>
#endif
namespace SyringeData
{
void InitRemoteData();
}
namespace Init
{
bool Initialize();
bool __cdecl RegisterEntry(LibFuncHandle Entry);
}
LibFuncHandle __cdecl ListenerAccess(const char* Name);
void RegisterLoadSaveInterface();
struct ECRTTIInfo;
namespace Init
{
bool InitAvailable{ false };
bool VeryFirst{ true };
HMODULE LibListDLL;
InitInput* LibInput;
InitResult Result;
bool Internal_EnableSaveLoad{ true };
bool(__cdecl* _RegisterEntry)(LibFuncHandle);
const LibFuncHandle* (__cdecl* _GetEntries)(void);
void(__cdecl* _ServiceRequest)(IHInitialLoadService);
void(__cdecl* _QueryServiceRequest)(const char*, PArray<IHInitialLoadService>&);
ConfData* (__cdecl* _GetConfData)(void);
unsigned int(__cdecl* _RandomUINT)(void);
int (__cdecl* _GenerateID)(void);
LPCVOID(__cdecl* _GetNamedPointer)(const char* Usage, const char* Name);
void (__cdecl* _SetNamedPointer)(const char* Usage, const char* Name, LPCVOID Pointer);
const char* (__cdecl* _NamedPointer_GetName)(const char* Usage, LPCVOID Pointer);
bool IsSyringeReadingHooks()
{
char Buf[1000];
return GetEnvironmentVariableA("HERE_IS_SYRINGE", Buf, 1000) ? true : false;
}
bool LoaderLoaded{ false };
struct IHLibListLoader
{
void Load()
{
if (LibListDLL || LoaderLoaded || IsSyringeReadingHooks())return;
LibListDLL = LoadLibraryW(L"Patches\\IHLibList.dll");
if (LibListDLL == NULL)LibListDLL = LoadLibraryW(L"IHLibList.dll");
if (LibListDLL == NULL)return;
#define ____GetFunc(x) {_ ## x=(decltype(_ ## x))GetProcAddress(LibListDLL, #x);\
if(_ ## x==nullptr)return;}
____GetFunc(RegisterEntry);
____GetFunc(GetEntries);
____GetFunc(ServiceRequest);
____GetFunc(QueryServiceRequest);
____GetFunc(GetConfData);
____GetFunc(RandomUINT);
____GetFunc(GenerateID);
____GetFunc(GetNamedPointer);
____GetFunc(SetNamedPointer);
____GetFunc(NamedPointer_GetName);
#undef ____GetFunc
LoaderLoaded = true;
}
IHLibListLoader() { Load(); }
void Rely() { Load(); };
}Loader;
#ifndef IHCore
void BindConsole();
InitResult* __cdecl InitFn(InitInput* Input)
{
LibInput = Input;
BindConsole();
MyInit(Result);
#ifndef EC_NoObjBase
#ifndef SIWIC
if(Init::Internal_EnableSaveLoad)RegisterLoadSaveInterface();
#endif
#endif
return &Result;
}
void RegisterListenerImpl()
{
InitialLoad::CreateRequestAndSubmit<InitialLoadParam_RegisterFunction>("EC::Internal::ListenerAccess", _strdup(RandStr(12).c_str()), ListenerAccess);
}
void BindConsole()
{
if (GetConsoleWindow() != NULL) {
FILE* fp;
freopen_s(&fp, "CONOUT$", "w", stdout);
freopen_s(&fp, "CONOUT$", "w", stderr);
freopen_s(&fp, "CONIN$", "r", stdin);
std::ios::sync_with_stdio(true);
std::cout.clear();
std::cin.clear();
std::cerr.clear();
}
}
bool Initialize()
{
if (IsSyringeReadingHooks())return false;
SyringeData::InitRemoteData();
if (InitAvailable)return true;
InitAvailable = true;
RegisterListenerImpl();
RegisterEntry(InitFn);
return true;
}
#else
void RegisterListenerImpl()
{
InitialLoad::CreateRequestAndSubmit<InitialLoadParam_RegisterFunction>("EC::Internal::ListenerAccess", "EC::Internal::IHCore", ListenerAccess);
RegisterLoadSaveInterface();
}
bool Initialize()
{
if (IsSyringeReadingHooks())return false;
SyringeData::InitRemoteData();
if (InitAvailable)return true;
InitAvailable = true;
RegisterListenerImpl();
return true;
}
#endif
bool __cdecl RegisterEntry(LibFuncHandle Entry)
{
if (InitAvailable)return _RegisterEntry(Entry);
else return false;
}
ConfData* GetConfData()
{
if (_GetConfData)return _GetConfData();
else return nullptr;
}
PArray<IHInitialLoadService> __cdecl QueryServiceRequest(const char* Name)
{
if (InitAvailable)
{
PArray<IHInitialLoadService> pa;
_QueryServiceRequest(Name, pa);
return pa;
}
else return PArray<IHInitialLoadService>();
}
}
bool CanInvokeAsCommand(FuncType Type)
{
switch (Type)
{
case FuncType::Condition:
case FuncType::Action:
case FuncType::Callback:
case FuncType::Procedure:
case FuncType::ConditionAlt:
case FuncType::ActionAlt:
case FuncType::Remote:
return true;
default:
return false;
}
}
ConfData& GetConfigData()
{
auto ptr = Init::GetConfData();
if (!ptr)MessageBoxA(Game::hWnd, "Init::GetConfData() == nullptr", "EC SDK", MB_OK);
return *ptr;
}
void UseOriginalFileClass(bool Option)
{
GetConfigData().UseOriginalCCFile = Option;
}
bool UseOriginalFileClass()
{
return GetConfigData().UseOriginalCCFile;
}
void DisableLoadSave()
{
Init::Internal_EnableSaveLoad = false;
}
const char* Internal_GetLibRegName()
{
#ifdef IHCore
return "IHCore";
#else
return Init::Result.Info->LibName;
#endif
}
int Internal_GetLibVersion()
{
#ifdef IHCore
#include "..\IHCore\Version.h"
return PRODUCT_VERSION;
#else
return Init::Result.Info->Version;
#endif
}
void Internal_DebugLog(const char* pFormat, ...)
{
JMP_STD(0x4068E0);
}
int Internal_GenerateID()
{
return Init::_GenerateID();
}
void Internal_RegisterExportRTTI(const char* ClassName, const ECRTTIInfo* pInfo)
{
Init::Loader.Rely();
//if (!Init::_SetNamedPointer)MessageBoxA(Game::hWnd, "Init::_SetNamedPointer == nullptr", "EC SDK", MB_OK);
Init::_SetNamedPointer("EC::RTTI", ClassName, pInfo);
}
const ECRTTIInfo* Internal_GetRTTIInfo(const char* ClassName)
{
Init::Loader.Rely();
//if (!Init::_GetNamedPointer)MessageBoxA(Game::hWnd, "Init::_GetNamedPointer == nullptr", "EC SDK", MB_OK);
return reinterpret_cast<const ECRTTIInfo*>(Init::_GetNamedPointer("EC::RTTI", ClassName));
}
const char* Internal_GetRTTIClassName(const ECRTTIInfo* pInfo)
{
Init::Loader.Rely();
//if (!Init::_NamedPointer_GetName)MessageBoxA(Game::hWnd, "Init::_NamedPointer_GetName == nullptr", "EC SDK", MB_OK);
return Init::_NamedPointer_GetName("EC::RTTI", pInfo);
}
void Internal_SetGlobalVarString(const char* Usage, const char* Key, const char* Value)
{
Init::Loader.Rely();
Init::_SetNamedPointer(Usage, Key, Value);
}
const char* Internal_GetGlobalVarString(const char* Usage, const char* Key)
{
Init::Loader.Rely();
return (const char*)Init::_GetNamedPointer(Usage, Key);
}
void Internal_SetGlobalVarPtr(const char* Usage, const char* Key, LPCVOID Ptr)
{
Init::Loader.Rely();
Init::_SetNamedPointer(Usage, Key, Ptr);
}
LPCVOID Internal_GetGlobalVarPtr(const char* Usage, const char* Key)
{
Init::Loader.Rely();
return Init::_GetNamedPointer(Usage, Key);
}
namespace InitialLoad
{
void ServiceRequest(IHInitialLoadService IService)
{
if (Init::InitAvailable)Init::_ServiceRequest(IService);
}
unsigned int RandomUINT()
{
if (Init::_RandomUINT)return Init::_RandomUINT();
else return (unsigned)rand();//regardless of quality when IHLibList version is low
}
}
bool IHAvailable()
{
return Init::InitAvailable;
}