From 2c7aaf531f6b6bfba42e624ca3c07f293d3b3089 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Mon, 22 Aug 2022 03:53:38 +0200 Subject: [PATCH] Host_Changelevel_f rebuild --- r5dev/ebisusdk/EbisuSDK.cpp | 19 +++++++++++++++++++ r5dev/ebisusdk/EbisuSDK.h | 14 ++++++++++++++ r5dev/engine/host_cmd.h | 23 +++++++++++++++-------- r5dev/engine/host_state.h | 7 +++++++ r5dev/server/vengineserver_impl.h | 2 +- r5dev/tier1/cmd.cpp | 4 +++- r5dev/vstdlib/callback.cpp | 24 ++++++++++++++++++++++++ r5dev/vstdlib/callback.h | 1 + 8 files changed, 84 insertions(+), 10 deletions(-) diff --git a/r5dev/ebisusdk/EbisuSDK.cpp b/r5dev/ebisusdk/EbisuSDK.cpp index ff044f89..205a05bb 100644 --- a/r5dev/ebisusdk/EbisuSDK.cpp +++ b/r5dev/ebisusdk/EbisuSDK.cpp @@ -1,6 +1,25 @@ #include "core/stdafx.h" #include "ebisusdk/EbisuSDK.h" +//----------------------------------------------------------------------------- +// Purpose: +//----------------------------------------------------------------------------- +bool IsOriginInitialized() +{ +#ifndef DEDICATED + //if ((!(*g_OriginErrorLevel) + // && (*g_bEbisuSDKInitialized) + // && (*g_NucleusID) + // && (*g_bEbisuSDKCvarInitialized) + // && (*g_OriginAuthCode) + // && (g_OriginNucleusToken[0]))) +#endif // DEDICATED + { + return true; + } + return false; +} + //----------------------------------------------------------------------------- // Purpose: sets the EbisuSDK globals for dedicated to satisfy command callbacks //----------------------------------------------------------------------------- diff --git a/r5dev/ebisusdk/EbisuSDK.h b/r5dev/ebisusdk/EbisuSDK.h index 905e865e..8ca7b356 100644 --- a/r5dev/ebisusdk/EbisuSDK.h +++ b/r5dev/ebisusdk/EbisuSDK.h @@ -13,11 +13,15 @@ inline CMemory p_EbisuSDK_SetState; inline auto EbisuSDK_SetState = p_EbisuSDK_SetState.RCast(); inline uint64_t* g_NucleusID = nullptr; +inline int* g_OriginErrorLevel = nullptr; +inline char* g_OriginAuthCode = nullptr; /*SIZE = 256*/ +inline char* g_OriginNucleusToken = nullptr; /*SIZE = 1024*/ inline bool* g_bEbisuSDKInitialized = nullptr; inline bool* g_bEbisuSDKCvarInitialized = nullptr; //#endif // DEDICATED /////////////////////////////////////////////////////////////////////////////// +bool IsOriginInitialized(); void HEbisuSDK_Init(); void EbisuSDK_Attach(); @@ -33,6 +37,9 @@ class VEbisuSDK : public IDetour spdlog::debug("| FUN: EbisuSDK_CVar_Init : {:#18x} |\n", p_EbisuSDK_CVar_Init.GetPtr()); spdlog::debug("| FUN: EbisuSDK_SetState : {:#18x} |\n", p_EbisuSDK_SetState.GetPtr()); spdlog::debug("| VAR: g_NucleusID : {:#18x} |\n", reinterpret_cast(g_NucleusID)); + spdlog::debug("| VAR: g_OriginErrorLevel : {:#18x} |\n", reinterpret_cast(g_OriginErrorLevel)); + spdlog::debug("| VAR: g_OriginAuthCode : {:#18x} |\n", reinterpret_cast(g_OriginAuthCode)); + spdlog::debug("| VAR: g_OriginNucleusToken : {:#18x} |\n", reinterpret_cast(g_OriginNucleusToken)); spdlog::debug("| VAR: g_bEbisuSDKInitialized : {:#18x} |\n", reinterpret_cast(g_bEbisuSDKInitialized)); spdlog::debug("| VAR: g_bEbisuSDKCvarInitialized : {:#18x} |\n", reinterpret_cast(g_bEbisuSDKCvarInitialized)); spdlog::debug("+----------------------------------------------------------------+\n"); @@ -51,8 +58,15 @@ class VEbisuSDK : public IDetour virtual void GetVar(void) const { g_NucleusID = p_EbisuSDK_CVar_Init.Offset(0x20).FindPatternSelf("4C 89 05", CMemory::Direction::DOWN, 150).ResolveRelativeAddressSelf(0x3, 0x7).RCast(); + g_OriginErrorLevel = p_EbisuSDK_SetState.Offset(0x20).FindPatternSelf("89 05", CMemory::Direction::DOWN, 150).ResolveRelativeAddressSelf(0x2, 0x6).RCast(); g_bEbisuSDKInitialized = p_EbisuSDK_Tier0_Init.Offset(0x0).FindPatternSelf("80 3D", CMemory::Direction::DOWN, 150).ResolveRelativeAddressSelf(0x2, 0x7).RCast(); g_bEbisuSDKCvarInitialized = p_EbisuSDK_CVar_Init.Offset(0x12A).FindPatternSelf("C6 05", CMemory::Direction::DOWN, 150).ResolveRelativeAddressSelf(0x2, 0x7).RCast(); +#if defined (GAMEDLL_S0) || defined (GAMEDLL_S1) + g_OriginNucleusToken = p_EbisuSDK_SetState.Offset(0x1EF).FindPatternSelf("38 1D", CMemory::Direction::DOWN, 150).ResolveRelativeAddressSelf(0x2, 0x6).RCast(); // !TODO: TEST! +#elif defined (GAMEDLL_S2) || defined (GAMEDLL_S3) + g_OriginNucleusToken = p_EbisuSDK_SetState.Offset(0x1EF).FindPatternSelf("80 3D", CMemory::Direction::DOWN, 150).ResolveRelativeAddressSelf(0x2, 0x7).RCast(); +#endif + g_OriginAuthCode = p_EbisuSDK_SetState.Offset(0x1BF).FindPatternSelf("0F B6", CMemory::Direction::DOWN, 150).ResolveRelativeAddressSelf(0x3, 0x7).RCast(); } virtual void GetCon(void) const { } virtual void Attach(void) const { } diff --git a/r5dev/engine/host_cmd.h b/r5dev/engine/host_cmd.h index 7296563b..04b2fbb8 100644 --- a/r5dev/engine/host_cmd.h +++ b/r5dev/engine/host_cmd.h @@ -1,5 +1,7 @@ #pragma once +#include "tier1/cmd.h" #include "launcher/IApplication.h" + struct EngineParms_t { char* baseDirectory; @@ -20,7 +22,9 @@ inline auto Host_NewGame = p_Host_NewGame.RCast(); -inline CMemory g_pEngineParmsBuffer; +inline CMemory p_SetLaunchOptions; +inline auto v_SetLaunchOptions = p_SetLaunchOptions.RCast(); + extern EngineParms_t* g_pEngineParms; @@ -32,7 +36,8 @@ class VHostCmd : public IDetour spdlog::debug("| FUN: Host_Init : {:#18x} |\n", p_Host_Init.GetPtr()); spdlog::debug("| FUN: Host_NewGame : {:#18x} |\n", p_Host_NewGame.GetPtr()); spdlog::debug("| FUN: Host_ChangeLevel : {:#18x} |\n", p_Host_ChangeLevel.GetPtr()); - spdlog::debug("| VAR: g_pEngineParms : {:#18x} |\n", g_pEngineParmsBuffer.GetPtr()); + spdlog::debug("| FUN: SetLaunchOptions : {:#18x} |\n", p_SetLaunchOptions.GetPtr()); + spdlog::debug("| VAR: g_pEngineParms : {:#18x} |\n", reinterpret_cast(g_pEngineParms)); spdlog::debug("+----------------------------------------------------------------+\n"); } virtual void GetFun(void) const @@ -41,23 +46,25 @@ class VHostCmd : public IDetour p_Host_Init = g_GameDll.FindPatternSIMD(reinterpret_cast("\x48\x89\x5C\x24\x00\x48\x89\x6C\x24\x00\x48\x89\x74\x24\x00\x57\x41\x54\x41\x55\x41\x56\x41\x57\x48\x81\xEC\x00\x00\x00\x00\x48\x8B\xD9\xFF\x15\x00\x00\x00\x00"), "xxxx?xxxx?xxxx?xxxxxxxxxxxx????xxxxx????"); p_Host_NewGame = g_GameDll.FindPatternSIMD(reinterpret_cast("\x48\x8B\xC4\x56\x41\x54\x41\x57\x48\x81\xEC\x00\x00\x00\x00\xF2\x0F\x10\x05\x00\x00\x00\x00"), "xxxxxxxxxxx????xxxx????"); /*48 8B C4 56 41 54 41 57 48 81 EC ? ? ? ? F2 0F 10 05 ? ? ? ?*/ p_Host_ChangeLevel = g_GameDll.FindPatternSIMD(reinterpret_cast("\x40\x53\x56\x41\x56\x48\x81\xEC\x00\x00\x00\x00\x49\x8B\xD8"), "xxxxxxxx????xxx"); + p_SetLaunchOptions = g_GameDll.FindPatternSIMD(reinterpret_cast("\x48\x89\x6C\x24\x00\x57\x48\x83\xEC\x20\x48\x8B\xE9\x48\x8B\x0D\x00\x00\x00\x00"), "xxxx?xxxxxxxxxxx????"); #elif defined (GAMEDLL_S2) || defined (GAMEDLL_S3) p_Host_Init = g_GameDll.FindPatternSIMD(reinterpret_cast("\x48\x89\x5C\x24\x00\x48\x89\x74\x24\x00\x48\x89\x7C\x24\x00\x55\x41\x54\x41\x55\x41\x56\x41\x57\x48\x8D\xAC\x24\x00\x00\x00\x00\xB8\x00\x00\x00\x00\xE8\x00\x00\x00\x00\x48\x2B\xE0\x48\x8B\xD9"), "xxxx?xxxx?xxxx?xxxxxxxxxxxxx????x????x????xxxxxx"); p_Host_NewGame = g_GameDll.FindPatternSIMD(reinterpret_cast("\x48\x8B\xC4\x00\x41\x54\x41\x55\x48\x81\xEC\x70\x04\x00\x00\xF2\x0F\x10\x05\x00\x00\x00\x0B"), "xxx?xxxxxxxxxxxxxxx???x"); p_Host_ChangeLevel = g_GameDll.FindPatternSIMD(reinterpret_cast("\x40\x56\x57\x41\x56\x48\x81\xEC\x00\x00\x00\x00"), "xxxxxxxx????"); + p_SetLaunchOptions = g_GameDll.FindPatternSIMD(reinterpret_cast("\x48\x89\x5C\x24\x00\x48\x89\x6C\x24\x00\x57\x48\x83\xEC\x20\x48\x8B\x1D\x00\x00\x00\x00\x48\x8B\xE9\x48\x85\xDB"), "xxxx?xxxx?xxxxxxxx????xxxxxx"); #endif - Host_Init = p_Host_Init.RCast(); /*48 89 5C 24 ? 48 89 74 24 ? 48 89 7C 24 ? 55 41 54 41 55 41 56 41 57 48 8D AC 24 ? ? ? ? B8 ? ? ? ? E8 ? ? ? ? 48 2B E0 48 8B D9*/ - Host_NewGame = p_Host_NewGame.RCast(); /*48 8B C4 ?? 41 54 41 55 48 81 EC 70 04 00 00 F2 0F 10 05 ?? ?? ?? 0B*/ - Host_ChangeLevel = p_Host_ChangeLevel.RCast(); /*40 56 57 41 56 48 81 EC ? ? ? ?*/ + Host_Init = p_Host_Init.RCast(); /*48 89 5C 24 ?? 48 89 74 24 ?? 48 89 7C 24 ?? 55 41 54 41 55 41 56 41 57 48 8D AC 24 ?? ?? ?? ?? B8 ?? ?? ?? ?? E8 ?? ?? ?? ?? 48 2B E0 48 8B D9*/ + Host_NewGame = p_Host_NewGame.RCast(); /*48 8B C4 ?? 41 54 41 55 48 81 EC 70 04 00 00 F2 0F 10 05 ?? ?? ?? 0B*/ + Host_ChangeLevel = p_Host_ChangeLevel.RCast(); /*40 56 57 41 56 48 81 EC ?? ?? ?? ??*/ + v_SetLaunchOptions = p_SetLaunchOptions.RCast(); /*48 89 5C 24 ?? 48 89 6C 24 ?? 57 48 83 EC 20 48 8B 1D ?? ?? ?? ?? 48 8B E9 48 85 DB*/ } virtual void GetVar(void) const { #if defined (GAMEDLL_S0) || defined (GAMEDLL_S1) - g_pEngineParmsBuffer = p_CModAppSystemGroup_Main.Offset(0x0).FindPatternSelf("48 8B", CMemory::Direction::DOWN, 100).ResolveRelativeAddress(0x3, 0x7); + g_pEngineParms = p_CModAppSystemGroup_Main.FindPattern("48 8B", CMemory::Direction::DOWN, 100).ResolveRelativeAddress(0x3, 0x7).RCast(); #elif defined (GAMEDLL_S2) || defined (GAMEDLL_S3) - g_pEngineParmsBuffer = p_CModAppSystemGroup_Main.Offset(0x0).FindPatternSelf("4C 8B", CMemory::Direction::DOWN, 100).ResolveRelativeAddress(0x3, 0x7); + g_pEngineParms = p_CModAppSystemGroup_Main.FindPattern("4C 8B", CMemory::Direction::DOWN, 100).ResolveRelativeAddress(0x3, 0x7).RCast(); #endif - g_pEngineParms = g_pEngineParmsBuffer.RCast(); } virtual void GetCon(void) const { } virtual void Attach(void) const { } diff --git a/r5dev/engine/host_state.h b/r5dev/engine/host_state.h index 86ba2479..24835d9c 100644 --- a/r5dev/engine/host_state.h +++ b/r5dev/engine/host_state.h @@ -60,6 +60,9 @@ inline auto CHostState_State_Run = p_CHostState_State_Run.RCast(); +inline CMemory p_HostState_ChangeLevelMP; +inline auto v_HostState_ChangeLevelMP = p_HostState_ChangeLevelMP.RCast(); + /////////////////////////////////////////////////////////////////////////////// void CHostState_Attach(); void CHostState_Detach(); @@ -75,6 +78,7 @@ class VHostState : public IDetour spdlog::debug("| FUN: CHostState::FrameUpdate : {:#18x} |\n", p_CHostState_FrameUpdate.GetPtr()); spdlog::debug("| FUN: CHostState::State_Run : {:#18x} |\n", p_CHostState_State_Run.GetPtr()); spdlog::debug("| FUN: CHostState::State_GameShutDown : {:#18x} |\n", p_CHostState_State_GameShutDown.GetPtr()); + spdlog::debug("| FUN: HostState_ChangeLevelMP : {:#18x} |\n", p_HostState_ChangeLevelMP.GetPtr()); spdlog::debug("| VAR: g_pHostState : {:#18x} |\n", reinterpret_cast(g_pHostState)); spdlog::debug("+----------------------------------------------------------------+\n"); } @@ -89,9 +93,12 @@ class VHostState : public IDetour #elif defined (GAMEDLL_S3) p_CHostState_State_GameShutDown = g_GameDll.FindPatternSIMD(reinterpret_cast("\x48\x89\x5C\x24\x00\x57\x48\x83\xEC\x20\x48\x8B\xD9\xE8\x00\x00\x00\x00\x48\x8B\x0D\x00\x00\x00\x00"), "xxxx?xxxxxxxxx????xxx????"); #endif + p_HostState_ChangeLevelMP = g_GameDll.FindPatternSIMD(reinterpret_cast("\x48\x89\x5C\x24\x00\x48\x89\x74\x24\x00\x57\x48\x83\xEC\x20\x48\x8B\xF9\x48\x8B\xF2\x8B\x0D\x00\x00\x00\x00"), "xxxx?xxxx?xxxxxxxxxxxxx????"); + CHostState_FrameUpdate = p_CHostState_FrameUpdate.RCast(); /*48 89 5C 24 08 48 89 6C 24 20 F3 0F 11 54 24 18*/ CHostState_State_Run = p_CHostState_State_Run.RCast(); /*48 8B C4 48 89 58 10 48 89 70 18 48 89 78 20 55 41 54 41 55 41 56 41 57 48 8D A8 ?? ?? ?? ?? 48 81 EC ?? ?? ?? ?? 0F 29 70 C8 45 33 E4*/ CHostState_State_GameShutDown = p_CHostState_State_GameShutDown.RCast(); /*48 89 5C 24 ?? 57 48 83 EC 20 48 8B D9 E8 ?? ?? ?? ?? 48 8B 0D ?? ?? ?? ??*/ + v_HostState_ChangeLevelMP = p_HostState_ChangeLevelMP.RCast(); /*48 89 5C 24 ? 48 89 74 24 ? 57 48 83 EC 20 48 8B F9 48 8B F2 8B 0D ? ? ? ?*/ } virtual void GetVar(void) const { diff --git a/r5dev/server/vengineserver_impl.h b/r5dev/server/vengineserver_impl.h index c03d6bd4..e11fe8c0 100644 --- a/r5dev/server/vengineserver_impl.h +++ b/r5dev/server/vengineserver_impl.h @@ -50,7 +50,7 @@ class HVEngineServer : public IDetour } virtual void GetVar(void) const { - g_bDedicated = p_IVEngineServer__IsDedicatedServer.Offset(0x0).ResolveRelativeAddress(0x3, 0x7).RCast(); + g_bDedicated = p_IVEngineServer__IsDedicatedServer.ResolveRelativeAddress(0x3, 0x7).RCast(); } virtual void GetCon(void) const { } virtual void Attach(void) const { } diff --git a/r5dev/tier1/cmd.cpp b/r5dev/tier1/cmd.cpp index 7ef06f1f..4493695d 100644 --- a/r5dev/tier1/cmd.cpp +++ b/r5dev/tier1/cmd.cpp @@ -380,6 +380,7 @@ void ConCommand::InitShipped(void) //------------------------------------------------------------------------- // ENGINE DLL | ConCommand* help = g_pCVar->FindCommand("help"); + ConCommand* changelevel = g_pCVar->FindCommand("changelevel"); ConCommand* convar_list = g_pCVar->FindCommand("convar_list"); ConCommand* convar_differences = g_pCVar->FindCommand("convar_differences"); ConCommand* convar_findByFlags = g_pCVar->FindCommand("convar_findByFlags"); @@ -391,6 +392,7 @@ void ConCommand::InitShipped(void) #endif // !DEDICATED help->m_fnCommandCallback = CVHelp_f; + changelevel->m_fnCommandCallback = Host_Changelevel_f; convar_list->m_fnCommandCallback = CVList_f; convar_differences->m_fnCommandCallback = CVDiff_f; convar_findByFlags->m_fnCommandCallback = CVFlag_f; @@ -409,7 +411,6 @@ void ConCommand::InitShipped(void) "silentconnect", "ping", #endif // !DEDICATED - "changelevel", "exit", "map", "map_background", @@ -428,6 +429,7 @@ void ConCommand::InitShipped(void) } help->RemoveFlags(FCVAR_DEVELOPMENTONLY); + changelevel->RemoveFlags(FCVAR_DEVELOPMENTONLY); convar_list->RemoveFlags(FCVAR_DEVELOPMENTONLY); convar_differences->RemoveFlags(FCVAR_DEVELOPMENTONLY); convar_findByFlags->RemoveFlags(FCVAR_DEVELOPMENTONLY); diff --git a/r5dev/vstdlib/callback.cpp b/r5dev/vstdlib/callback.cpp index 223c6def..69437f15 100644 --- a/r5dev/vstdlib/callback.cpp +++ b/r5dev/vstdlib/callback.cpp @@ -17,6 +17,8 @@ #endif // !DEDICATED #include "engine/client/client.h" #include "engine/net.h" +#include "engine/host_cmd.h" +#include "engine/host_state.h" #ifndef DEDICATED #include "client/cdll_engine_int.h" #endif // !DEDICATED @@ -45,6 +47,8 @@ #ifndef DEDICATED #include "game/client/view.h" #endif // !DEDICATED +#include +#include /* @@ -316,6 +320,26 @@ void Host_ReloadBanList_f(const CCommand& args) { g_pBanSystem->Load(); // Reload banlist. } + +/* +===================== +Host_Changelevel_f + + Goes to a new map, + taking all clients along +===================== +*/ +void Host_Changelevel_f(const CCommand& args) +{ + if (args.ArgC() >= 2 + && IsOriginInitialized() + && g_pServer->IsActive()) + { + v_SetLaunchOptions(args); + v_HostState_ChangeLevelMP(args[1], args[2]); + } +} + #endif // !CLIENT_DLL /* ===================== diff --git a/r5dev/vstdlib/callback.h b/r5dev/vstdlib/callback.h index 1d0030b2..4b3ee2cb 100644 --- a/r5dev/vstdlib/callback.h +++ b/r5dev/vstdlib/callback.h @@ -24,6 +24,7 @@ void Host_Ban_f(const CCommand& args); void Host_BanID_f(const CCommand& args); void Host_Unban_f(const CCommand& args); void Host_ReloadBanList_f(const CCommand& args); +void Host_Changelevel_f(const CCommand& args); #endif // !CLIENT_DLL void Pak_ListPaks_f(const CCommand& args); void Pak_RequestUnload_f(const CCommand& args);