From 5bc798fe9731853ab69866b08636a9e24b20a28a Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Thu, 18 Aug 2022 12:34:33 +0200 Subject: [PATCH] Merge 'Sys_LoadAssetHelper' with 'RTech::OpenFile' and rehook. Removed clashing hook and merged logic into RTech::OpenFile, and re-enabled hook. --- r5dev/engine/sys_utils.cpp | 29 ----------------------------- r5dev/engine/sys_utils.h | 6 ------ r5dev/rtech/rtech_utils.cpp | 24 ++++++++++++++++++++---- r5dev/rtech/rtech_utils.h | 2 +- 4 files changed, 21 insertions(+), 40 deletions(-) diff --git a/r5dev/engine/sys_utils.cpp b/r5dev/engine/sys_utils.cpp index 81a0297d..07f4625d 100644 --- a/r5dev/engine/sys_utils.cpp +++ b/r5dev/engine/sys_utils.cpp @@ -61,33 +61,6 @@ void* HSys_Warning(int level, char* fmt, ...) return v_Sys_Warning(level, buf); } -//----------------------------------------------------------------------------- -// Purpose: Load assets from a custom directory if file exists -// Input : *lpFileName - -// a2 - *a3 - -// Output : void* Sys_LoadAssetHelper -//----------------------------------------------------------------------------- -void* HSys_LoadAssetHelper(const CHAR* lpFileName, std::int64_t a2, LARGE_INTEGER* a3) -{ - std::string mod_file; - std::string base_file = lpFileName; - static const std::string mod_dir = "paks\\Win32\\"; - static const std::string base_dir = "paks\\Win64\\"; - - if (strstr(lpFileName, base_dir.c_str())) - { - base_file.erase(0, 11); // Erase 'base_dir'. - mod_file = mod_dir + base_file; // Prepend 'mod_dir'. - - if (FileExists(mod_file)) - { - // Load decompressed pak files from 'mod_dir'. - return v_Sys_LoadAssetHelper(mod_file.c_str(), a2, a3); - } - } - return v_Sys_LoadAssetHelper(lpFileName, a2, a3); -} - #ifndef DEDICATED //----------------------------------------------------------------------------- // Purpose: Builds log to be displayed on the screen @@ -130,7 +103,6 @@ void SysUtils_Attach() { //DetourAttach((LPVOID*)&Sys_Error, &HSys_Error); DetourAttach((LPVOID*)&v_Sys_Warning, &HSys_Warning); - DetourAttach((LPVOID*)&v_Sys_LoadAssetHelper, &HSys_LoadAssetHelper); #ifndef DEDICATED DetourAttach((LPVOID*)&v_Con_NPrintf, &HCon_NPrintf); #endif // !DEDICATED @@ -140,7 +112,6 @@ void SysUtils_Detach() { //DetourDetach((LPVOID*)&Sys_Error, &HSys_Error); DetourDetach((LPVOID*)&v_Sys_Warning, &HSys_Warning); - DetourDetach((LPVOID*)&v_Sys_LoadAssetHelper, &HSys_LoadAssetHelper); #ifndef DEDICATED DetourDetach((LPVOID*)&v_Con_NPrintf, &HCon_NPrintf); #endif // !DEDICATED diff --git a/r5dev/engine/sys_utils.h b/r5dev/engine/sys_utils.h index 11fd7007..33411771 100644 --- a/r5dev/engine/sys_utils.h +++ b/r5dev/engine/sys_utils.h @@ -7,9 +7,6 @@ inline auto v_Sys_Error = p_Sys_Error.RCast(); inline CMemory p_Sys_Warning; inline auto v_Sys_Warning = p_Sys_Warning.RCast(); -inline CMemory p_Sys_LoadAssetHelper; -inline auto v_Sys_LoadAssetHelper = p_Sys_LoadAssetHelper.RCast(); - inline CMemory p_Sys_GetProcessUpTime; inline auto v_Sys_GetProcessUpTime = p_Sys_GetProcessUpTime.RCast(); #ifndef DEDICATED @@ -32,7 +29,6 @@ class VSys_Utils : public IDetour { spdlog::debug("| FUN: Sys_Error : {:#18x} |\n", p_Sys_Error.GetPtr()); spdlog::debug("| FUN: Sys_Warning : {:#18x} |\n", p_Sys_Warning.GetPtr()); - spdlog::debug("| FUN: Sys_LoadAssetHelper : {:#18x} |\n", p_Sys_LoadAssetHelper.GetPtr()); spdlog::debug("| FUN: Sys_GetProcessUpTime : {:#18x} |\n", p_Sys_GetProcessUpTime.GetPtr()); #ifndef DEDICATED spdlog::debug("| FUN: Con_NPrintf : {:#18x} |\n", p_Con_NPrintf.GetPtr()); @@ -43,14 +39,12 @@ class VSys_Utils : public IDetour { p_Sys_Error = g_GameDll.FindPatternSIMD(reinterpret_cast("\x48\x89\x4C\x24\x08\x48\x89\x54\x24\x10\x4C\x89\x44\x24\x18\x4C\x89\x4C\x24\x20\x53\x55\x41\x54\x41\x56\xB8\x58\x10\x00\x00\xE8"), "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"); p_Sys_Warning = g_GameDll.FindPatternSIMD(reinterpret_cast("\x48\x89\x54\x24\x00\x4C\x89\x44\x24\x00\x4C\x89\x4C\x24\x00\x48\x83\xEC\x28\x4C\x8D\x44\x24\x00\xE8\x00\x00\x00\x00\x48\x83\xC4\x28\xC3\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\x48\x89\x5C\x24\x00\x48\x89\x74\x24\x00\x48\x89\x7C\x24\x00\x8B\x05\x00\x00\x00\x00"), "xxxx?xxxx?xxxx?xxxxxxxx?x????xxxxxxxxxxxxxxxxxxxxxxx?xxxx?xxxx?xx????"); - p_Sys_LoadAssetHelper = g_GameDll.FindPatternSIMD(reinterpret_cast("\x48\x89\x74\x24\x10\x48\x89\x7C\x24\x18\x41\x56\x48\x83\xEC\x40\x33"), "xxxxxxxxxxxxxxxxx"); p_Sys_GetProcessUpTime = g_GameDll.FindPatternSIMD(reinterpret_cast("\x40\x57\x48\x83\xEC\x30\x48\x8B\xF9\x8B\x0D\x00\x00\x00\x00"), "xxxxxxxxxxx????"); #ifndef DEDICATED p_Con_NPrintf = g_GameDll.FindPatternSIMD(reinterpret_cast("\x48\x89\x4C\x24\x00\x48\x89\x54\x24\x00\x4C\x89\x44\x24\x00\x4C\x89\x4C\x24\x00\xC3"), "xxxx?xxxx?xxxx?xxxx?x"); #endif // !DEDICATED v_Sys_Error = p_Sys_Error.RCast(); /*48 89 4C 24 08 48 89 54 24 10 4C 89 44 24 18 4C 89 4C 24 20 53 55 41 54 41 56 B8 58 10 00 00 E8*/ v_Sys_Warning = p_Sys_Warning.RCast(); /*48 89 54 24 ?? 4C 89 44 24 ?? 4C 89 4C 24 ?? 48 83 EC 28 4C 8D 44 24 ?? E8 ?? ?? ?? ?? 48 83 C4 28 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC CC 48 89 5C 24 ?? 48 89 74 24 ?? 48 89 7C 24 ?? 8B 05 ?? ?? ?? ??*/ - v_Sys_LoadAssetHelper = p_Sys_LoadAssetHelper.RCast();/*48 89 74 24 10 48 89 7C 24 18 41 56 48 83 EC 40 33*/ v_Sys_GetProcessUpTime = p_Sys_GetProcessUpTime.RCast(); /*40 57 48 83 EC 30 48 8B F9 8B 0D ?? ?? ?? ??*/ #ifndef DEDICATED v_Con_NPrintf = p_Con_NPrintf.RCast(); /*48 89 4C 24 ?? 48 89 54 24 ?? 4C 89 44 24 ?? 4C 89 4C 24 ?? C3*/ diff --git a/r5dev/rtech/rtech_utils.cpp b/r5dev/rtech/rtech_utils.cpp index 273e935c..f1d8743f 100644 --- a/r5dev/rtech/rtech_utils.cpp +++ b/r5dev/rtech/rtech_utils.cpp @@ -615,9 +615,25 @@ void** RTech::LoadShaderSet(void** VTablePtr) //---------------------------------------------------------------------------------- // Purpose: open a file and add it to m_FileHandles. //---------------------------------------------------------------------------------- -int32_t RTech::OpenFile(const char* szFilePath, void* unused, int64_t* fileSizeOut) +int32_t RTech::OpenFile(const CHAR* szFilePath, void* unused, LONGLONG* fileSizeOut) { - const HANDLE hFile = CreateFileA(szFilePath, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_DELETE, 0, OPEN_EXISTING, FILE_SUPPORTS_GHOSTING, 0); + string svModFile = szFilePath; + string svBaseFile = szFilePath; + const string svModDir = "paks\\Win32\\"; + const string svBaseDir = "paks\\Win64\\"; + + if (strstr(szFilePath, svBaseDir.c_str())) + { + svBaseFile.erase(0, 11); // Erase 'base_dir'. + svModFile = svModDir + svBaseFile; // Prepend 'mod_dir'. + + if (!FileExists(svModFile)) + { + svModFile = szFilePath; + } + } + + const HANDLE hFile = CreateFileA(svModFile.c_str(), GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_DELETE, 0, OPEN_EXISTING, FILE_SUPPORTS_GHOSTING, 0); if (hFile == INVALID_HANDLE_VALUE) return -1; @@ -688,7 +704,7 @@ RPakLoadedInfo_t* RTech::GetPakLoadedInfo(const char* szPakName) void RTech_Utils_Attach() { - //DetourAttach((LPVOID*)&RTech_OpenFile, &RTech::OpenFile); // !FIXME: Loading override rpaks doesn't work with this, disabled for now. + DetourAttach((LPVOID*)&RTech_OpenFile, &RTech::OpenFile); #if not defined DEDICATED && defined GAMEDLL_S3 DetourAttach((LPVOID*)&RTech_CreateDXTexture, &RTech::CreateDXTexture); @@ -698,7 +714,7 @@ void RTech_Utils_Attach() void RTech_Utils_Detach() { // [ PIXIE ]: Everything related to RTech::OpenFile should be compatible across seasons. - //DetourDetach((LPVOID*)&RTech_OpenFile, &RTech::OpenFile); + DetourDetach((LPVOID*)&RTech_OpenFile, &RTech::OpenFile); #if not defined DEDICATED && defined GAMEDLL_S3 DetourDetach((LPVOID*)&RTech_CreateDXTexture, &RTech::CreateDXTexture); diff --git a/r5dev/rtech/rtech_utils.h b/r5dev/rtech/rtech_utils.h index 0a265f2c..111083bb 100644 --- a/r5dev/rtech/rtech_utils.h +++ b/r5dev/rtech/rtech_utils.h @@ -472,7 +472,7 @@ public: RPakLoadedInfo_t* GetPakLoadedInfo(int nPakId); RPakLoadedInfo_t* GetPakLoadedInfo(const char* szPakName); - static int32_t OpenFile(const char* szFilePath, void* unused, int64_t* fileSizeOut); + static int32_t OpenFile(const CHAR* szFilePath, void* unused, LONGLONG* fileSizeOut); #if not defined DEDICATED static void CreateDXTexture(RTechTextureInfo_t* textureHeader, int64_t cpuArg);