diff --git a/r5dev/codecs/Miles/miles_impl.cpp b/r5dev/codecs/Miles/miles_impl.cpp index cf493d36..c178e86b 100644 --- a/r5dev/codecs/Miles/miles_impl.cpp +++ b/r5dev/codecs/Miles/miles_impl.cpp @@ -1,6 +1,5 @@ #include "core/stdafx.h" #include "miles_impl.h" -#include "tier1/cvar.h" //----------------------------------------------------------------------------- // Purpose: logs debug output emitted from the Miles Sound System @@ -19,8 +18,6 @@ void AIL_LogFunc(int64_t nLogLevel, const char* pszMessage) //----------------------------------------------------------------------------- bool Miles_Initialize() { - DevMsg(eDLL_T::AUDIO, __FUNCTION__": initializing Miles Sound System\n"); - bool bResult = v_Miles_Initialize(); bResult ? DevMsg(eDLL_T::AUDIO, __FUNCTION__": %s\n", "initialized successfully") @@ -29,33 +26,15 @@ bool Miles_Initialize() return bResult; } -void MilesQueueEventRun(Miles::Queue* queue, const char* eventName) -{ - if(miles_debug->GetBool()) - DevMsg(eDLL_T::AUDIO, __FUNCTION__": running event '%s'\n", eventName); - - v_MilesQueueEventRun(queue, eventName); -} - -void MilesBankPatch(Miles::Bank* bank, char* streamPatch, char* localizedStreamPatch) -{ - // TODO [REXX]: add print for patch loading when Miles::Bank struct is mapped out a bit better with file name - v_MilesBankPatch(bank, streamPatch, localizedStreamPatch); -} - /////////////////////////////////////////////////////////////////////////////// void MilesCore_Attach() { DetourAttach(&v_AIL_LogFunc, &AIL_LogFunc); DetourAttach(&v_Miles_Initialize, &Miles_Initialize); - DetourAttach(&v_MilesQueueEventRun, &MilesQueueEventRun); - DetourAttach(&v_MilesBankPatch, &MilesBankPatch); } void MilesCore_Detach() { DetourDetach(&v_AIL_LogFunc, &AIL_LogFunc); DetourDetach(&v_Miles_Initialize, &Miles_Initialize); - DetourDetach(&v_MilesQueueEventRun, &MilesQueueEventRun); - DetourDetach(&v_MilesBankPatch, &MilesBankPatch); } \ No newline at end of file diff --git a/r5dev/codecs/Miles/miles_impl.h b/r5dev/codecs/Miles/miles_impl.h index 5fd15e3d..f6e4acc9 100644 --- a/r5dev/codecs/Miles/miles_impl.h +++ b/r5dev/codecs/Miles/miles_impl.h @@ -1,5 +1,4 @@ #pragma once -#include "miles_types.h" /* ==== WASAPI THREAD SERVICE =========================================================================================================================================== */ inline CMemory p_AIL_LogFunc; @@ -8,12 +7,6 @@ inline auto v_AIL_LogFunc = p_AIL_LogFunc.RCast(); -inline CMemory p_MilesQueueEventRun; -inline auto v_MilesQueueEventRun = p_MilesQueueEventRun.RCast(); - -inline CMemory p_MilesBankPatch; -inline auto v_MilesBankPatch = p_MilesBankPatch.RCast(); - void MilesCore_Attach(); void MilesCore_Detach(); @@ -35,13 +28,6 @@ class MilesCore : public IDetour p_Miles_Initialize = g_GameDll.FindPatternSIMD(reinterpret_cast("\xE8\x00\x00\x00\x00\xFF\x0D\x00\x00\x00\x00\xC6\x05\x00\x00\x00\x00\x00"), "x????xx????xx?????").FollowNearCallSelf(); v_Miles_Initialize = p_Miles_Initialize.RCast(); // 0x14095A140 // E8 ? ? ? ? FF 0D ? ? ? ? C6 05 ? ? ? ? ? // - - p_MilesQueueEventRun = g_RadAudioSystemDll.GetExportedFunction("MilesQueueEventRun"); - v_MilesQueueEventRun = p_MilesQueueEventRun.RCast(); - - p_MilesBankPatch = g_RadAudioSystemDll.GetExportedFunction("MilesBankPatch"); - v_MilesBankPatch = p_MilesBankPatch.RCast(); - } virtual void GetVar(void) const { } virtual void GetCon(void) const { } diff --git a/r5dev/codecs/Miles/miles_types.h b/r5dev/codecs/Miles/miles_types.h deleted file mode 100644 index 726be179..00000000 --- a/r5dev/codecs/Miles/miles_types.h +++ /dev/null @@ -1,16 +0,0 @@ -#pragma once - -namespace Miles -{ - struct Queue - { - char gap0[0x8]; - void* unk; - char gap10[0x20]; - }; - - struct Bank - { - // TODO [REXX]: map out this struct and its internal counterpart - }; -} \ No newline at end of file diff --git a/r5dev/common/opcodes.cpp b/r5dev/common/opcodes.cpp index 9466e925..0ffdd67e 100644 --- a/r5dev/common/opcodes.cpp +++ b/r5dev/common/opcodes.cpp @@ -345,9 +345,6 @@ void Dedicated_Init() void RuntimePtc_Init() /* .TEXT */ { - - p_EbisuSDK_SetState.Offset(0x0).FindPatternSelf("0F 84", CMemory::Direction::DOWN).Patch({ 0x0F, 0x85 }); // JE --> JNZ | Prevent EbisuSDK from initializing on the engine and server. - #ifndef DEDICATED p_WASAPI_GetAudioDevice.Offset(0x410).FindPatternSelf("FF 15 ?? ?? 01 00", CMemory::Direction::DOWN, 100).Patch({ 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0xEB }); // CAL --> NOP | Disable debugger check when miles searches for audio device to allow attaching the debugger to the game upon launch. #ifndef CLIENT_DLL diff --git a/r5dev/ebisusdk/EbisuSDK.cpp b/r5dev/ebisusdk/EbisuSDK.cpp index 46012f27..5c4e36cb 100644 --- a/r5dev/ebisusdk/EbisuSDK.cpp +++ b/r5dev/ebisusdk/EbisuSDK.cpp @@ -25,24 +25,6 @@ bool IsOriginInitialized() //----------------------------------------------------------------------------- void HEbisuSDK_Init() { - - FILE* sNameCfg; - CHAR sNameBuf[64] = { 0 }; - fopen_s(&sNameCfg, "platform\\cfg\\name.cfg", "r"); - - if (sNameCfg) - { - while (fgets(sNameBuf, sizeof(sNameBuf), sNameCfg) != NULL) - { - fclose(sNameCfg); - } - } - memcpy((char*)g_sPlayerName, sNameBuf, sizeof(sNameBuf)); - - *(char*)g_bEbisuSDKInitialized = (char)0x1; // <- 1st EbisuSDK check - *(char*)g_bEbisuSDKCvarInitialized = (char)0x1; // <- 2nd EbisuSDK check - *(char*)g_NucleusID = (char)0x1; // <- 3rd EbisuSDK - #ifdef DEDICATED *(char*)g_bEbisuSDKInitialized = (char)0x1; // <- 1st EbisuSDK *(char*)g_bEbisuSDKCvarInitialized = (char)0x1; // <- 2nd EbisuSDK diff --git a/r5dev/ebisusdk/EbisuSDK.h b/r5dev/ebisusdk/EbisuSDK.h index 4d1cff9b..8ca7b356 100644 --- a/r5dev/ebisusdk/EbisuSDK.h +++ b/r5dev/ebisusdk/EbisuSDK.h @@ -18,7 +18,6 @@ inline char* g_OriginAuthCode = nullptr; /*SIZE = 256*/ inline char* g_OriginNucleusToken = nullptr; /*SIZE = 1024*/ inline bool* g_bEbisuSDKInitialized = nullptr; inline bool* g_bEbisuSDKCvarInitialized = nullptr; -inline char* g_sPlayerName = nullptr; //#endif // DEDICATED /////////////////////////////////////////////////////////////////////////////// @@ -68,8 +67,6 @@ class VEbisuSDK : public IDetour 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(); - - g_sPlayerName = p_EbisuSDK_CVar_Init.Offset(0x120).FindPatternSelf("48 8D 0D", CMemory::Direction::DOWN, 600).ResolveRelativeAddressSelf(0x3, 0x7).RCast(); } virtual void GetCon(void) const { } virtual void Attach(void) const { } diff --git a/r5dev/tier1/IConVar.cpp b/r5dev/tier1/IConVar.cpp index 5a4348be..8d79c0e5 100644 --- a/r5dev/tier1/IConVar.cpp +++ b/r5dev/tier1/IConVar.cpp @@ -222,11 +222,6 @@ void ConVar::Init(void) // RUI | #ifndef DEDICATED rui_drawEnable = ConVar::Create("rui_drawEnable", "1", FCVAR_RELEASE, "Draws the RUI if set.", false, 0.f, false, 0.f, nullptr, " 1 = Draw, 0 = No Draw."); -#endif // !DEDICATED - //------------------------------------------------------------------------- - // MILES | -#ifndef DEDICATED - miles_debug = ConVar::Create("miles_debug", "0", FCVAR_RELEASE, "Enables debug prints for the Miles Sound System", false, 0.f, false, 0.f, nullptr, " 1 = Print, 0 = No Print"); #endif // !DEDICATED //------------------------------------------------------------------------- } diff --git a/r5dev/tier1/cvar.cpp b/r5dev/tier1/cvar.cpp index 1665d519..ad5c6311 100644 --- a/r5dev/tier1/cvar.cpp +++ b/r5dev/tier1/cvar.cpp @@ -195,12 +195,6 @@ ConVar* rtech_debug = nullptr; ConVar* rui_drawEnable = nullptr; ConVar* rui_defaultDebugFontFace = nullptr; #endif // !DEDICATED -//----------------------------------------------------------------------------- -// MILES | -#ifndef DEDICATED -ConVar* miles_debug = nullptr; -#endif - struct ConVarFlags_t { diff --git a/r5dev/tier1/cvar.h b/r5dev/tier1/cvar.h index 62d35711..e3716039 100644 --- a/r5dev/tier1/cvar.h +++ b/r5dev/tier1/cvar.h @@ -191,11 +191,6 @@ extern ConVar* rtech_debug; extern ConVar* rui_drawEnable; extern ConVar* rui_defaultDebugFontFace; #endif // !DEDICATED -//----------------------------------------------------------------------------- -// MILES | -#ifndef DEDICATED -extern ConVar* miles_debug; -#endif //----------------------------------------------------------------------------- // Purpose: diff --git a/r5dev/vproj/gamesdk.vcxproj b/r5dev/vproj/gamesdk.vcxproj index ec7be348..80d5f8fc 100644 --- a/r5dev/vproj/gamesdk.vcxproj +++ b/r5dev/vproj/gamesdk.vcxproj @@ -170,7 +170,6 @@ - diff --git a/r5dev/vproj/gamesdk.vcxproj.filters b/r5dev/vproj/gamesdk.vcxproj.filters index 10ba1ce2..a4f62f98 100644 --- a/r5dev/vproj/gamesdk.vcxproj.filters +++ b/r5dev/vproj/gamesdk.vcxproj.filters @@ -1934,9 +1934,6 @@ sdk\codecs\miles - - sdk\codecs\miles -