mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
These get reconverted to masked byte patterns at runtime. With the signature map cache system, this will only happen when building the cache.
56 lines
2.3 KiB
C++
56 lines
2.3 KiB
C++
#ifndef LAUNCHER_H
|
|
#define LAUNCHER_H
|
|
|
|
inline CMemory p_WinMain;
|
|
inline auto v_WinMain = p_WinMain.RCast<int (*)(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd)>();
|
|
|
|
inline CMemory p_LauncherMain;
|
|
inline auto v_LauncherMain = p_LauncherMain.RCast<int(*)(HINSTANCE hInstance)>();
|
|
|
|
#if !defined (GAMEDLL_S0) && !defined (GAMEDLL_S1)
|
|
inline CMemory p_RemoveSpuriousGameParameters;
|
|
inline auto v_RemoveSpuriousGameParameters = p_RemoveSpuriousGameParameters.RCast<void* (*)(void)>();
|
|
#endif // !GAMEDLL_S0 || !GAMEDLL_S1
|
|
|
|
void AppendSDKParametersPreInit();
|
|
string LoadConfigFile(const string& svConfig);
|
|
void ParseAndApplyConfigFile(const string& svConfig);
|
|
const char* ExitCodeToString(int nCode);
|
|
|
|
void Launcher_Attach();
|
|
void Launcher_Detach();
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
class VLauncher : public IDetour
|
|
{
|
|
virtual void GetAdr(void) const
|
|
{
|
|
spdlog::debug("| FUN: WinMain : {:#18x} |\n", p_WinMain.GetPtr());
|
|
spdlog::debug("| FUN: LauncherMain : {:#18x} |\n", p_LauncherMain.GetPtr());
|
|
#if !defined (GAMEDLL_S0) && !defined (GAMEDLL_S1)
|
|
spdlog::debug("| FUN: RemoveSpuriousGameParameters : {:#18x} |\n", p_RemoveSpuriousGameParameters.GetPtr());
|
|
#endif // !GAMEDLL_S0 || !GAMEDLL_S1
|
|
spdlog::debug("+----------------------------------------------------------------+\n");
|
|
}
|
|
virtual void GetFun(void) const
|
|
{
|
|
p_WinMain = g_GameDll.FindPatternSIMD("48 89 5C 24 ?? 48 89 6C 24 ?? 48 89 74 24 ?? 57 48 83 EC 20 41 8B D9 49 8B F8");
|
|
v_WinMain = p_WinMain.RCast<int (*)(HINSTANCE, HINSTANCE, LPSTR, int)>();
|
|
|
|
p_LauncherMain = g_GameDll.GetExportedFunction("LauncherMain");
|
|
v_LauncherMain = p_LauncherMain.RCast<int(*)(HINSTANCE)>();
|
|
|
|
#if !defined (GAMEDLL_S0) && !defined (GAMEDLL_S1)
|
|
p_RemoveSpuriousGameParameters = g_GameDll.FindPatternSIMD("48 89 5C 24 ?? 48 89 6C 24 ?? 48 89 74 24 ?? 57 48 81 EC ?? ?? ?? ?? 33 ED 48 8D 3D ?? ?? ?? ??");
|
|
v_RemoveSpuriousGameParameters = p_RemoveSpuriousGameParameters.RCast<void* (*)(void)>();
|
|
#endif // !GAMEDLL_S0 || !GAMEDLL_S1
|
|
}
|
|
virtual void GetVar(void) const { }
|
|
virtual void GetCon(void) const { }
|
|
virtual void Attach(void) const { }
|
|
virtual void Detach(void) const { }
|
|
};
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
REGISTER(VLauncher);
|
|
#endif // LAUNCHER_H
|