From 8816a283727f85218ac4ba146c24016b4679fba4 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Thu, 19 May 2022 02:19:43 +0200 Subject: [PATCH] SQVM cleanup The SDK could now obtain context index for builds before S3 --- r5dev/engine/cl_rcon.cpp | 2 +- r5dev/squirrel/sqapi.h | 1 + r5dev/squirrel/sqstate.h | 31 +++++ r5dev/squirrel/sqtype.h | 56 +-------- r5dev/squirrel/sqvm.cpp | 166 ++++++++++++++------------ r5dev/squirrel/sqvm.h | 143 +++++++++++++++------- r5dev/vproj/clientsdk.vcxproj | 1 + r5dev/vproj/clientsdk.vcxproj.filters | 3 + r5dev/vproj/dedicated.vcxproj | 1 + r5dev/vproj/dedicated.vcxproj.filters | 3 + r5dev/vproj/gamesdk.vcxproj | 1 + r5dev/vproj/gamesdk.vcxproj.filters | 3 + 12 files changed, 240 insertions(+), 171 deletions(-) create mode 100644 r5dev/squirrel/sqstate.h diff --git a/r5dev/engine/cl_rcon.cpp b/r5dev/engine/cl_rcon.cpp index 5a915810..95608327 100644 --- a/r5dev/engine/cl_rcon.cpp +++ b/r5dev/engine/cl_rcon.cpp @@ -227,7 +227,7 @@ void CRConClient::ProcessMessage(const sv_rcon::response& sv_response) const // !TODO: Network the enum for this. if (strstr(svOut.c_str(), SQVM_LOG_T[0].c_str())) { - HSQVM_PrintFunc(nullptr, const_cast("%s"), svOut.c_str()); + SQVM_PrintFunc(nullptr, const_cast("%s"), svOut.c_str()); } else // This has to be done for RUI color logging. { diff --git a/r5dev/squirrel/sqapi.h b/r5dev/squirrel/sqapi.h index 364cb2e2..9e70d5e8 100644 --- a/r5dev/squirrel/sqapi.h +++ b/r5dev/squirrel/sqapi.h @@ -1,5 +1,6 @@ #pragma once #include "squirrel/sqtype.h" +#include "squirrel/sqvm.h" /////////////////////////////////////////////////////////////////////////////// SQRESULT sq_pushroottable(HSQUIRRELVM v); diff --git a/r5dev/squirrel/sqstate.h b/r5dev/squirrel/sqstate.h new file mode 100644 index 00000000..10401929 --- /dev/null +++ b/r5dev/squirrel/sqstate.h @@ -0,0 +1,31 @@ +#ifndef SQSTATE_H +#define SQSTATE_H +#include "squirrel/sqtype.h" + +#pragma pack(push, 1) +struct SQSharedState +{ + uint8_t gap0[17256]; +#if !defined (GAMEDLL_S0) && !defined (GAMEDLL_S1) && !defined (GAMEDLL_S2) + uint8_t gap1[32]; +#endif + void* _printfunc; + uint8_t gap4390[33]; + SQChar _contextname[7]; +}; +#pragma pack(pop) + +struct SQBufState +{ + const SQChar* buf; + const SQChar* bufTail; + const SQChar* bufCopy; + + SQBufState(const SQChar* code) + { + buf = code; + bufTail = code + strlen(code); + bufCopy = code; + } +}; +#endif // SQSTATE_H \ No newline at end of file diff --git a/r5dev/squirrel/sqtype.h b/r5dev/squirrel/sqtype.h index cfcf497e..5f767e4c 100644 --- a/r5dev/squirrel/sqtype.h +++ b/r5dev/squirrel/sqtype.h @@ -14,61 +14,7 @@ typedef unsigned long SQUnsignedInteger; typedef SQUnsignedInteger SQBool; typedef SQInteger SQRESULT; -struct SQVM -{ - char pad_0000[0x8]; - SQVM* m_pSqVTable; - // !TODO: The rest. - - SQVM* GetVTable() - { - return m_pSqVTable; - } -}; -typedef SQVM* HSQUIRRELVM; - -struct SQBufState -{ - const SQChar* buf; - const SQChar* bufTail; - const SQChar* bufCopy; - - SQBufState(const SQChar* code) - { - buf = code; - bufTail = code + strlen(code); - bufCopy = code; - } -}; - -struct SQFuncRegistration -{ - const char* m_szScriptName; // 00 - const char* m_szNativeName; // 08 - const char* m_szHelpString; // 10 - const char* m_szRetValType; // 18 - const char* m_szArgTypes; // 20 - std::int16_t unk28; // 28 - std::int16_t padding1; // 2A - std::int32_t unk2c; // 2C - std::int64_t unk30; // 30 - std::int32_t unk38; // 38 - std::int32_t padding2; // 3C - std::int64_t unk40; // 40 - std::int64_t unk48; // 48 - std::int64_t unk50; // 50 - std::int32_t unk58; // 58 - std::int32_t padding3; // 5C - void* m_pFunction; // 60 - - SQFuncRegistration() - { - memset(this, '\0', sizeof(SQFuncRegistration)); - this->padding2 = 6; - } -}; - -enum class SQCONTEXT : int +enum class SQCONTEXT : SQInteger { SERVER = 0, CLIENT, diff --git a/r5dev/squirrel/sqvm.cpp b/r5dev/squirrel/sqvm.cpp index f0a61d35..acdfbcfd 100644 --- a/r5dev/squirrel/sqvm.cpp +++ b/r5dev/squirrel/sqvm.cpp @@ -21,6 +21,7 @@ #include "squirrel/sqvm.h" #include "squirrel/sqinit.h" #include "squirrel/sqstdaux.h" +#include "squirrel/sqstate.h" //--------------------------------------------------------------------------------- // Purpose: prints the output of each VM to the console @@ -28,7 +29,7 @@ // *fmt - // ... - //--------------------------------------------------------------------------------- -SQRESULT HSQVM_PrintFunc(HSQUIRRELVM v, SQChar* fmt, ...) +SQRESULT SQVM_PrintFunc(HSQUIRRELVM v, SQChar* fmt, ...) { static SQCONTEXT context{}; // We use the sqvm pointer as index for SDK usage as the function prototype has to match assembly. @@ -47,10 +48,10 @@ SQRESULT HSQVM_PrintFunc(HSQUIRRELVM v, SQChar* fmt, ...) context = SQCONTEXT::NONE; break; default: -#ifdef GAMEDLL_S3 +#if !defined (GAMEDLL_S0) && !defined (GAMEDLL_S1) && !defined (GAMEDLL_S2) context = *reinterpret_cast(reinterpret_cast(v) + 0x18); -#else // TODO [ AMOS ]: nothing equal to 'rdx + 18h' exist in the vm structs for anything below S3. - context = SQCONTEXT::NONE; +#else // Nothing equal to 'rdx + 18h' exist in the vm structs for anything below S3. + context = SQVM_GetContextIndex(v); #endif break; } @@ -168,10 +169,11 @@ SQRESULT HSQVM_PrintFunc(HSQUIRRELVM v, SQChar* fmt, ...) // *nStringSize - // **ppString - //--------------------------------------------------------------------------------- -SQRESULT HSQVM_WarningFunc(HSQUIRRELVM v, SQInteger a2, SQInteger a3, SQInteger* nStringSize, SQChar** ppString) +SQRESULT SQVM_WarningFunc(HSQUIRRELVM v, SQInteger a2, SQInteger a3, SQInteger* nStringSize, SQChar** ppString) { static void* retaddr = reinterpret_cast(p_SQVM_WarningCmd.Offset(0x10).FindPatternSelf("85 ?? ?? 99", CMemory::Direction::DOWN).GetPtr()); - SQRESULT result = SQVM_WarningFunc(v, a2, a3, nStringSize, ppString); + static SQCONTEXT context{}; + SQRESULT result = v_SQVM_WarningFunc(v, a2, a3, nStringSize, ppString); if (retaddr != _ReturnAddress() || !sq_showvmwarning->GetBool()) // Check if its SQVM_Warning calling. { @@ -180,9 +182,9 @@ SQRESULT HSQVM_WarningFunc(HSQUIRRELVM v, SQInteger a2, SQInteger a3, SQInteger* s_LogMutex.lock(); #ifdef GAMEDLL_S3 - SQCONTEXT context = *reinterpret_cast(reinterpret_cast(v) + 0x18); -#else // TODO [ AMOS ]: nothing equal to 'rdx + 18h' exist in the vm structs for anything below S3. - SQCONTEXT context = SQCONTEXT::NONE; + context = *reinterpret_cast(reinterpret_cast(v) + 0x18); +#else // Nothing equal to 'rdx + 18h' exist in the vm structs for anything below S3. + context = SQVM_GetContextIndex(v); #endif static std::shared_ptr iconsole = spdlog::get("game_console"); @@ -236,20 +238,20 @@ SQRESULT HSQVM_WarningFunc(HSQUIRRELVM v, SQInteger a2, SQInteger a3, SQInteger* // nLine - // nColumn - //--------------------------------------------------------------------------------- -void HSQVM_CompileError(HSQUIRRELVM v, const SQChar* pszError, const SQChar* pszFile, SQUnsignedInteger nLine, SQInteger nColumn) +void SQVM_CompileError(HSQUIRRELVM v, const SQChar* pszError, const SQChar* pszFile, SQUnsignedInteger nLine, SQInteger nColumn) { static SQCONTEXT context{}; static char szContextBuf[256]{}; -#ifdef GAMEDLL_S3 +#if !defined (GAMEDLL_S0) && !defined (GAMEDLL_S1) && !defined (GAMEDLL_S2) context = *reinterpret_cast(reinterpret_cast(v) + 0x18); -#else // TODO [ AMOS ]: nothing equal to 'rdx + 18h' exist in the vm structs for anything below S3. - context = SQCONTEXT::NONE; +#else // Nothing equal to 'rdx + 18h' exist in the vm structs for anything below S3. + context = SQVM_GetContextIndex(v); #endif - SQVM_GetErrorLine(pszFile, nLine, szContextBuf, sizeof(szContextBuf)); + v_SQVM_GetErrorLine(pszFile, nLine, szContextBuf, sizeof(szContextBuf)); - Error(static_cast(context), "%s SCRIPT COMPILE ERROR: %s\n", SQVM_TYPE_T[static_cast(context)].c_str(), pszError); + Error(static_cast(context), "%s SCRIPT COMPILE ERROR: %s\n", SQVM_GetContextName(context), pszError); Error(static_cast(context), " -> %s\n\n", szContextBuf); Error(static_cast(context), "%s line [%d] column [%d]\n", pszFile, nLine, nColumn); } @@ -258,7 +260,7 @@ void HSQVM_CompileError(HSQUIRRELVM v, const SQChar* pszError, const SQChar* psz // Purpose: prints the global include file the compiler loads for loading scripts // Input : *szRsonName - //--------------------------------------------------------------------------------- -SQInteger HSQVM_LoadRson(const SQChar* szRsonName) +SQInteger SQVM_LoadRson(const SQChar* szRsonName) { if (sq_showrsonloading->GetBool()) { @@ -269,16 +271,17 @@ SQInteger HSQVM_LoadRson(const SQChar* szRsonName) DevMsg(eDLL_T::ENGINE, "--------------------------------------------------------------\n"); DevMsg(eDLL_T::ENGINE, "\n"); } - return SQVM_LoadRson(szRsonName); + return v_SQVM_LoadRson(szRsonName); } //--------------------------------------------------------------------------------- // Purpose: prints the scripts the compiler loads from global include to be compiled // Input : *sqvm - // *szScriptPath - +// *szScriptName - // nFlag - //--------------------------------------------------------------------------------- -SQBool HSQVM_LoadScript(HSQUIRRELVM v, const SQChar* szScriptPath, const SQChar* szScriptName, SQInteger nFlag) +SQBool SQVM_LoadScript(HSQUIRRELVM v, const SQChar* szScriptPath, const SQChar* szScriptName, SQInteger nFlag) { if (sq_showscriptloading->GetBool()) { @@ -286,7 +289,7 @@ SQBool HSQVM_LoadScript(HSQUIRRELVM v, const SQChar* szScriptPath, const SQChar* } /////////////////////////////////////////////////////////////////////////////// - return SQVM_LoadScript(v, szScriptPath, szScriptName, nFlag); + return v_SQVM_LoadScript(v, szScriptPath, szScriptName, nFlag); } //--------------------------------------------------------------------------------- @@ -298,7 +301,7 @@ SQBool HSQVM_LoadScript(HSQUIRRELVM v, const SQChar* szScriptPath, const SQChar* // *szArgTypes - // *pFunction - //--------------------------------------------------------------------------------- -SQRESULT HSQVM_RegisterFunction(HSQUIRRELVM v, const SQChar* szName, const SQChar* szHelpString, const SQChar* szRetValType, const SQChar* szArgTypes, void* pFunction) +SQRESULT SQVM_RegisterFunction(HSQUIRRELVM v, const SQChar* szName, const SQChar* szHelpString, const SQChar* szRetValType, const SQChar* szArgTypes, void* pFunction) { SQFuncRegistration* sqFunc = new SQFuncRegistration(); @@ -309,7 +312,7 @@ SQRESULT HSQVM_RegisterFunction(HSQUIRRELVM v, const SQChar* szName, const SQCha sqFunc->m_szArgTypes = szArgTypes; sqFunc->m_pFunction = pFunction; - return SQVM_RegisterFunc(v, sqFunc, 1); + return v_SQVM_RegisterFunc(v, sqFunc, 1); } #ifndef CLIENT_DLL @@ -319,10 +322,10 @@ SQRESULT HSQVM_RegisterFunction(HSQUIRRELVM v, const SQChar* szName, const SQCha //--------------------------------------------------------------------------------- void SQVM_RegisterServerScriptFunctions(HSQUIRRELVM v) { - HSQVM_RegisterFunction(v, "SDKNativeTest", "Native SERVER test function", "void", "", &VSquirrel::SHARED::SDKNativeTest); - HSQVM_RegisterFunction(v, "GetSDKVersion", "Gets the SDK version as a string", "string", "", &VSquirrel::SHARED::GetSDKVersion); - HSQVM_RegisterFunction(v, "GetNumHumanPlayers", "Gets the number of human players on the server", "int", "", &VSquirrel::SERVER::GetNumHumanPlayers); - HSQVM_RegisterFunction(v, "GetNumFakeClients", "Gets the number of bot players on the server", "int", "", &VSquirrel::SERVER::GetNumFakeClients); + SQVM_RegisterFunction(v, "SDKNativeTest", "Native SERVER test function", "void", "", &VSquirrel::SHARED::SDKNativeTest); + SQVM_RegisterFunction(v, "GetSDKVersion", "Gets the SDK version as a string", "string", "", &VSquirrel::SHARED::GetSDKVersion); + SQVM_RegisterFunction(v, "GetNumHumanPlayers", "Gets the number of human players on the server", "int", "", &VSquirrel::SERVER::GetNumHumanPlayers); + SQVM_RegisterFunction(v, "GetNumFakeClients", "Gets the number of bot players on the server", "int", "", &VSquirrel::SERVER::GetNumFakeClients); } #endif // !CLIENT_DLL @@ -333,8 +336,8 @@ void SQVM_RegisterServerScriptFunctions(HSQUIRRELVM v) //--------------------------------------------------------------------------------- void SQVM_RegisterClientScriptFunctions(HSQUIRRELVM v) { - HSQVM_RegisterFunction(v, "SDKNativeTest", "Native CLIENT test function", "void", "", &VSquirrel::SHARED::SDKNativeTest); - HSQVM_RegisterFunction(v, "GetSDKVersion", "Gets the SDK version as a string", "string", "", &VSquirrel::SHARED::GetSDKVersion); + SQVM_RegisterFunction(v, "SDKNativeTest", "Native CLIENT test function", "void", "", &VSquirrel::SHARED::SDKNativeTest); + SQVM_RegisterFunction(v, "GetSDKVersion", "Gets the SDK version as a string", "string", "", &VSquirrel::SHARED::GetSDKVersion); } //--------------------------------------------------------------------------------- @@ -343,26 +346,26 @@ void SQVM_RegisterClientScriptFunctions(HSQUIRRELVM v) //--------------------------------------------------------------------------------- void SQVM_RegisterUIScriptFunctions(HSQUIRRELVM v) { - HSQVM_RegisterFunction(v, "SDKNativeTest", "Native UI test function", "void", "", &VSquirrel::SHARED::SDKNativeTest); + SQVM_RegisterFunction(v, "SDKNativeTest", "Native UI test function", "void", "", &VSquirrel::SHARED::SDKNativeTest); // Functions for retrieving server browser data - HSQVM_RegisterFunction(v, "GetServerName", "Gets the name of the server at the specified index of the server list", "string", "int", &VSquirrel::UI::GetServerName); - HSQVM_RegisterFunction(v, "GetServerPlaylist", "Gets the playlist of the server at the specified index of the server list", "string", "int", &VSquirrel::UI::GetServerPlaylist); - HSQVM_RegisterFunction(v, "GetServerMap", "Gets the map of the server at the specified index of the server list", "string", "int", &VSquirrel::UI::GetServerMap); - HSQVM_RegisterFunction(v, "GetServerCount", "Gets the number of public servers", "int", "", &VSquirrel::UI::GetServerCount); + SQVM_RegisterFunction(v, "GetServerName", "Gets the name of the server at the specified index of the server list", "string", "int", &VSquirrel::UI::GetServerName); + SQVM_RegisterFunction(v, "GetServerPlaylist", "Gets the playlist of the server at the specified index of the server list", "string", "int", &VSquirrel::UI::GetServerPlaylist); + SQVM_RegisterFunction(v, "GetServerMap", "Gets the map of the server at the specified index of the server list", "string", "int", &VSquirrel::UI::GetServerMap); + SQVM_RegisterFunction(v, "GetServerCount", "Gets the number of public servers", "int", "", &VSquirrel::UI::GetServerCount); // Misc main menu functions - HSQVM_RegisterFunction(v, "GetSDKVersion", "Gets the SDK version as a string", "string", "", &VSquirrel::SHARED::GetSDKVersion); - HSQVM_RegisterFunction(v, "GetPromoData", "Gets promo data for specified slot type", "string", "int", &VSquirrel::UI::GetPromoData); + SQVM_RegisterFunction(v, "GetSDKVersion", "Gets the SDK version as a string", "string", "", &VSquirrel::SHARED::GetSDKVersion); + SQVM_RegisterFunction(v, "GetPromoData", "Gets promo data for specified slot type", "string", "int", &VSquirrel::UI::GetPromoData); // Functions for connecting to servers - HSQVM_RegisterFunction(v, "CreateServer", "Start server with the specified settings", "void", "string,string,string,int", &VSquirrel::UI::CreateServerFromMenu); - HSQVM_RegisterFunction(v, "SetEncKeyAndConnect", "Set the encryption key to that of the specified server and connects to it", "void", "int", &VSquirrel::UI::SetEncKeyAndConnect); - HSQVM_RegisterFunction(v, "JoinPrivateServerFromMenu", "Joins private server by token", "void", "string", &VSquirrel::UI::JoinPrivateServerFromMenu); - HSQVM_RegisterFunction(v, "GetPrivateServerMessage", "Gets private server join status message", "string", "string", &VSquirrel::UI::GetPrivateServerMessage); - HSQVM_RegisterFunction(v, "ConnectToIPFromMenu", "Joins server by ip and encryption key", "void", "string,string", &VSquirrel::UI::ConnectToIPFromMenu); + SQVM_RegisterFunction(v, "CreateServer", "Start server with the specified settings", "void", "string,string,string,int", &VSquirrel::UI::CreateServerFromMenu); + SQVM_RegisterFunction(v, "SetEncKeyAndConnect", "Set the encryption key to that of the specified server and connects to it", "void", "int", &VSquirrel::UI::SetEncKeyAndConnect); + SQVM_RegisterFunction(v, "JoinPrivateServerFromMenu", "Joins private server by token", "void", "string", &VSquirrel::UI::JoinPrivateServerFromMenu); + SQVM_RegisterFunction(v, "GetPrivateServerMessage", "Gets private server join status message", "string", "string", &VSquirrel::UI::GetPrivateServerMessage); + SQVM_RegisterFunction(v, "ConnectToIPFromMenu", "Joins server by ip and encryption key", "void", "string,string", &VSquirrel::UI::ConnectToIPFromMenu); - HSQVM_RegisterFunction(v, "GetAvailableMaps", "Gets an array of all the available maps that can be used to host a server", "array", "", &VSquirrel::UI::GetAvailableMaps); + SQVM_RegisterFunction(v, "GetAvailableMaps", "Gets an array of all the available maps that can be used to host a server", "array", "", &VSquirrel::UI::GetAvailableMaps); } //--------------------------------------------------------------------------------- @@ -370,9 +373,9 @@ void SQVM_RegisterUIScriptFunctions(HSQUIRRELVM v) // Input : *sqvm - // context - (1 = CLIENT 2 = UI) //--------------------------------------------------------------------------------- -SQInteger HSQVM_InitializeCLGlobalScriptStructs(SQVM* sqvm, SQCONTEXT context) +SQInteger SQVM_InitializeCLGlobalScriptStructs(HSQUIRRELVM v, SQCONTEXT context) { - int results = SQVM_InitializeCLGlobalScriptStructs(sqvm, context); + int results = v_SQVM_InitializeCLGlobalScriptStructs(v, context); if (context == SQCONTEXT::CLIENT) SQVM_RegisterClientScriptFunctions(g_pClientVM.GetValue()); if (context == SQCONTEXT::UI) @@ -386,9 +389,9 @@ SQInteger HSQVM_InitializeCLGlobalScriptStructs(SQVM* sqvm, SQCONTEXT context) // Purpose: Initialize all SERVER global structs and register SDK (SERVER) script functions // Input : *sqvm - //--------------------------------------------------------------------------------- -void HSQVM_InitializeSVGlobalScriptStructs(SQVM* sqvm) +void SQVM_InitializeSVGlobalScriptStructs(HSQUIRRELVM v) { - SQVM_InitializeSVGlobalScriptStructs(sqvm); + v_SQVM_InitializeSVGlobalScriptStructs(v); SQVM_RegisterServerScriptFunctions(g_pServerVM.GetValue()); } @@ -396,9 +399,9 @@ void HSQVM_InitializeSVGlobalScriptStructs(SQVM* sqvm) // Purpose: Creates the SERVER Squirrel VM // Output : True on success, false on failure //--------------------------------------------------------------------------------- -SQBool HSQVM_CreateServerVM() +SQBool SQVM_CreateServerVM() { - bool results = SQVM_CreateServerVM(); + bool results = v_SQVM_CreateServerVM(); if (results) DevMsg(eDLL_T::SERVER, "Created SERVER VM: '%p'\n", g_pServerVM.GetValue()); else @@ -413,9 +416,9 @@ SQBool HSQVM_CreateServerVM() // Input : *chlclient - // Output : True on success, false on failure //--------------------------------------------------------------------------------- -SQBool HSQVM_CreateClientVM(CHLClient* hlclient) +SQBool SQVM_CreateClientVM(CHLClient* hlclient) { - bool results = SQVM_CreateClientVM(hlclient); + bool results = v_SQVM_CreateClientVM(hlclient); if (results) DevMsg(eDLL_T::CLIENT, "Created CLIENT VM: '%p'\n", g_pClientVM.GetValue()); else @@ -427,9 +430,9 @@ SQBool HSQVM_CreateClientVM(CHLClient* hlclient) // Purpose: Creates the UI Squirrel VM // Output : True on success, false on failure //--------------------------------------------------------------------------------- -SQBool HSQVM_CreateUIVM() +SQBool SQVM_CreateUIVM() { - bool results = SQVM_CreateUIVM(); + bool results = v_SQVM_CreateUIVM(); if (results) DevMsg(eDLL_T::UI, "Created UI VM: '%p'\n", g_pUIVM.GetValue()); else @@ -458,6 +461,23 @@ const SQChar* SQVM_GetContextName(SQCONTEXT context) } } +//--------------------------------------------------------------------------------- +// Purpose: Returns the VM context by name +// Input : *sqvm - +// Output : const SQCONTEXT* +//--------------------------------------------------------------------------------- +const SQCONTEXT SQVM_GetContextIndex(HSQUIRRELVM v) +{ + if (strcmp(v->_sharedstate->_contextname, "SERVER") == 0) + return SQCONTEXT::SERVER; + if (strcmp(v->_sharedstate->_contextname, "CLIENT") == 0) + return SQCONTEXT::CLIENT; + if (strcmp(v->_sharedstate->_contextname, "UI") == 0) + return SQCONTEXT::UI; + + return SQCONTEXT::NONE; +} + //--------------------------------------------------------------------------------- // Purpose: Returns the VM pointer by context // Input : context - @@ -508,45 +528,43 @@ void SQVM_Execute(const SQChar* code, SQCONTEXT context) } } +//--------------------------------------------------------------------------------- void SQVM_Attach() { - DetourAttach((LPVOID*)&SQVM_PrintFunc, &HSQVM_PrintFunc); - DetourAttach((LPVOID*)&SQVM_WarningFunc, &HSQVM_WarningFunc); - DetourAttach((LPVOID*)&SQVM_CompileError, &HSQVM_CompileError); - DetourAttach((LPVOID*)&SQVM_LoadRson, &HSQVM_LoadRson); - DetourAttach((LPVOID*)&SQVM_LoadScript, &HSQVM_LoadScript); + DetourAttach((LPVOID*)&v_SQVM_PrintFunc, &SQVM_PrintFunc); + DetourAttach((LPVOID*)&v_SQVM_WarningFunc, &SQVM_WarningFunc); + DetourAttach((LPVOID*)&v_SQVM_CompileError, &SQVM_CompileError); + DetourAttach((LPVOID*)&v_SQVM_LoadRson, &SQVM_LoadRson); + DetourAttach((LPVOID*)&v_SQVM_LoadScript, &SQVM_LoadScript); #ifndef DEDICATED - DetourAttach((LPVOID*)&SQVM_InitializeCLGlobalScriptStructs, &HSQVM_InitializeCLGlobalScriptStructs); + DetourAttach((LPVOID*)&v_SQVM_InitializeCLGlobalScriptStructs, &SQVM_InitializeCLGlobalScriptStructs); #endif // !DEDICATED #ifndef CLIENT_DLL - DetourAttach((LPVOID*)&SQVM_InitializeSVGlobalScriptStructs, &HSQVM_InitializeSVGlobalScriptStructs); - DetourAttach((LPVOID*)&SQVM_CreateServerVM, &HSQVM_CreateServerVM); + DetourAttach((LPVOID*)&v_SQVM_InitializeSVGlobalScriptStructs, &SQVM_InitializeSVGlobalScriptStructs); + DetourAttach((LPVOID*)&v_SQVM_CreateServerVM, &SQVM_CreateServerVM); #endif // !CLIENT_DLL #ifndef DEDICATED - DetourAttach((LPVOID*)&SQVM_CreateClientVM, &HSQVM_CreateClientVM); - DetourAttach((LPVOID*)&SQVM_CreateUIVM, &HSQVM_CreateUIVM); + DetourAttach((LPVOID*)&v_SQVM_CreateClientVM, &SQVM_CreateClientVM); + DetourAttach((LPVOID*)&v_SQVM_CreateUIVM, &SQVM_CreateUIVM); #endif // !DEDICATED } - +//--------------------------------------------------------------------------------- void SQVM_Detach() { - DetourDetach((LPVOID*)&SQVM_PrintFunc, &HSQVM_PrintFunc); - DetourDetach((LPVOID*)&SQVM_WarningFunc, &HSQVM_WarningFunc); - DetourDetach((LPVOID*)&SQVM_CompileError, &HSQVM_CompileError); - DetourDetach((LPVOID*)&SQVM_LoadRson, &HSQVM_LoadRson); - DetourDetach((LPVOID*)&SQVM_LoadScript, &HSQVM_LoadScript); + DetourDetach((LPVOID*)&v_SQVM_PrintFunc, &SQVM_PrintFunc); + DetourDetach((LPVOID*)&v_SQVM_WarningFunc, &SQVM_WarningFunc); + DetourDetach((LPVOID*)&v_SQVM_CompileError, &SQVM_CompileError); + DetourDetach((LPVOID*)&v_SQVM_LoadRson, &SQVM_LoadRson); + DetourDetach((LPVOID*)&v_SQVM_LoadScript, &SQVM_LoadScript); #ifndef DEDICATED - DetourDetach((LPVOID*)&SQVM_InitializeCLGlobalScriptStructs, &HSQVM_InitializeCLGlobalScriptStructs); + DetourDetach((LPVOID*)&v_SQVM_InitializeCLGlobalScriptStructs, &SQVM_InitializeCLGlobalScriptStructs); #endif // !DEDICATED #ifndef CLIENT_DLL - DetourDetach((LPVOID*)&SQVM_InitializeSVGlobalScriptStructs, &HSQVM_InitializeSVGlobalScriptStructs); - DetourDetach((LPVOID*)&SQVM_CreateServerVM, &HSQVM_CreateServerVM); + DetourDetach((LPVOID*)&v_SQVM_InitializeSVGlobalScriptStructs, &SQVM_InitializeSVGlobalScriptStructs); + DetourDetach((LPVOID*)&v_SQVM_CreateServerVM, &SQVM_CreateServerVM); #endif // !CLIENT_DLL #ifndef DEDICATED - DetourDetach((LPVOID*)&SQVM_CreateClientVM, &HSQVM_CreateClientVM); - DetourDetach((LPVOID*)&SQVM_CreateUIVM, &HSQVM_CreateUIVM); + DetourDetach((LPVOID*)&v_SQVM_CreateClientVM, &SQVM_CreateClientVM); + DetourDetach((LPVOID*)&v_SQVM_CreateUIVM, &SQVM_CreateUIVM); #endif // !DEDICATED } - -/////////////////////////////////////////////////////////////////////////////// -bool g_bSQVM_WarnFuncCalled = false; diff --git a/r5dev/squirrel/sqvm.h b/r5dev/squirrel/sqvm.h index 260bd637..cadfc681 100644 --- a/r5dev/squirrel/sqvm.h +++ b/r5dev/squirrel/sqvm.h @@ -1,65 +1,125 @@ #pragma once #include "squirrel/sqtype.h" +#include "squirrel/sqstate.h" #ifndef DEDICATED #include "client/cdll_engine_int.h" #endif // !DEDICATED +struct SQVM +{ + char pad0[0x8]; + SQVM* _vftable; + _BYTE gap0[12]; +#if !defined (GAMEDLL_S0) && !defined (GAMEDLL_S1) && !defined (GAMEDLL_S2) + _BYTE gap1[4]; + SQCONTEXT _contextidx; + _BYTE gap2[8]; +#endif + _BYTE gap3[30]; + void* _callstack; + void* unk0; + SQInteger _stackbase; + SQInteger unk5c; + SQSharedState* _sharedstate; + char gap4[16]; + int _top; + + SQVM* GetVTable() const + { + return _vftable; + } +#if !defined (GAMEDLL_S0) && !defined (GAMEDLL_S1) && !defined (GAMEDLL_S2) + SQCONTEXT GetContext() const + { + return _contextidx; + } +#endif +}; +typedef SQVM* HSQUIRRELVM; + +struct SQFuncRegistration +{ + const SQChar* m_szScriptName; // 00 + const SQChar* m_szNativeName; // 08 + const SQChar* m_szHelpString; // 10 + const SQChar* m_szRetValType; // 18 + const SQChar* m_szArgTypes; // 20 + std::int16_t unk28; // 28 + std::int16_t padding1; // 2A + std::int32_t unk2c; // 2C + std::int64_t unk30; // 30 + std::int32_t unk38; // 38 + std::int32_t padding2; // 3C + std::int64_t unk40; // 40 + std::int64_t unk48; // 48 + std::int64_t unk50; // 50 + std::int32_t unk58; // 58 + std::int32_t padding3; // 5C + void* m_pFunction; // 60 + + SQFuncRegistration() + { + memset(this, '\0', sizeof(SQFuncRegistration)); + this->padding2 = 6; + } +}; + /* ==== SQUIRREL ======================================================================================================================================================== */ inline CMemory p_SQVM_PrintFunc; -inline auto SQVM_PrintFunc = p_SQVM_PrintFunc.RCast(); +inline auto v_SQVM_PrintFunc = p_SQVM_PrintFunc.RCast(); inline CMemory p_SQVM_WarningFunc; -inline auto SQVM_WarningFunc = p_SQVM_WarningFunc.RCast(); +inline auto v_SQVM_WarningFunc = p_SQVM_WarningFunc.RCast(); #if defined (GAMEDLL_S0) || defined (GAMEDLL_S1) inline CMemory p_SQVM_GetErrorLine; -inline auto SQVM_GetErrorLine = p_SQVM_GetErrorLine.RCast(); +inline auto v_SQVM_GetErrorLine = p_SQVM_GetErrorLine.RCast(); inline CMemory p_SQVM_LoadScript; -inline auto SQVM_LoadScript = p_SQVM_LoadScript.RCast(); +inline auto v_SQVM_LoadScript = p_SQVM_LoadScript.RCast(); #elif defined (GAMEDLL_S2) || defined (GAMEDLL_S3) inline CMemory p_SQVM_GetErrorLine; -inline auto SQVM_GetErrorLine = p_SQVM_GetErrorLine.RCast(); +inline auto v_SQVM_GetErrorLine = p_SQVM_GetErrorLine.RCast(); inline CMemory p_SQVM_LoadScript; -inline auto SQVM_LoadScript = p_SQVM_LoadScript.RCast(); +inline auto v_SQVM_LoadScript = p_SQVM_LoadScript.RCast(); #endif inline CMemory p_SQVM_LoadRson; -inline auto SQVM_LoadRson = p_SQVM_LoadRson.RCast(); +inline auto v_SQVM_LoadRson = p_SQVM_LoadRson.RCast(); inline CMemory p_SQVM_WarningCmd; -inline auto SQVM_WarningCmd = p_SQVM_WarningCmd.RCast(); +inline auto v_SQVM_WarningCmd = p_SQVM_WarningCmd.RCast(); inline CMemory p_SQVM_RegisterFunc; -inline auto SQVM_RegisterFunc = p_SQVM_RegisterFunc.RCast(); +inline auto v_SQVM_RegisterFunc = p_SQVM_RegisterFunc.RCast(); inline CMemory p_SQVM_CompileError; -inline auto SQVM_CompileError = p_SQVM_CompileError.RCast(); +inline auto v_SQVM_CompileError = p_SQVM_CompileError.RCast(); #if !defined (CLIENT_DLL) inline CMemory p_SQVM_InitializeSVGlobalScriptStructs; -inline auto SQVM_InitializeSVGlobalScriptStructs = p_SQVM_InitializeSVGlobalScriptStructs.RCast(); +inline auto v_SQVM_InitializeSVGlobalScriptStructs = p_SQVM_InitializeSVGlobalScriptStructs.RCast(); #endif // !CLIENT_DLL #if !defined (DEDICATED) inline CMemory p_SQVM_InitializeCLGlobalScriptStructs; -inline auto SQVM_InitializeCLGlobalScriptStructs = p_SQVM_InitializeCLGlobalScriptStructs.RCast(); +inline auto v_SQVM_InitializeCLGlobalScriptStructs = p_SQVM_InitializeCLGlobalScriptStructs.RCast(); #endif // !DEDICATED #if !defined (CLIENT_DLL) && defined (GAMEDLL_S0) || defined (GAMEDLL_S1) inline CMemory p_SQVM_CreateServerVM; -inline auto SQVM_CreateServerVM = p_SQVM_CreateServerVM.RCast(); +inline auto v_SQVM_CreateServerVM = p_SQVM_CreateServerVM.RCast(); #elif !defined (CLIENT_DLL) && defined (GAMEDLL_S3) || defined (GAMEDLL_S2) inline CMemory p_SQVM_CreateServerVM; -inline auto SQVM_CreateServerVM = p_SQVM_CreateServerVM.RCast(); +inline auto v_SQVM_CreateServerVM = p_SQVM_CreateServerVM.RCast(); #endif #if !defined (DEDICATED) && defined (GAMEDLL_S0) || defined (GAMEDLL_S1) || defined (GAMEDLL_S2) inline CMemory p_SQVM_CreateClientVM; -inline auto SQVM_CreateClientVM = p_SQVM_CreateClientVM.RCast(); +inline auto v_SQVM_CreateClientVM = p_SQVM_CreateClientVM.RCast(); #elif !defined (DEDICATED) && defined (GAMEDLL_S3) inline CMemory p_SQVM_CreateClientVM; -inline auto SQVM_CreateClientVM = p_SQVM_CreateClientVM.RCast(); +inline auto v_SQVM_CreateClientVM = p_SQVM_CreateClientVM.RCast(); #endif #if !defined (DEDICATED) inline CMemory p_SQVM_CreateUIVM; -inline auto SQVM_CreateUIVM = p_SQVM_CreateUIVM.RCast(); +inline auto v_SQVM_CreateUIVM = p_SQVM_CreateUIVM.RCast(); #endif // !DEDICATED #if !defined (CLIENT_DLL) @@ -70,28 +130,29 @@ inline CMemory g_pClientVM; inline CMemory g_pUIVM; #endif // !DEDICATED -SQRESULT HSQVM_PrintFunc(HSQUIRRELVM v, SQChar* fmt, ...); -SQRESULT HSQVM_WarningFunc(HSQUIRRELVM v, SQInteger a2, SQInteger a3, SQInteger* nStringSize, SQChar** ppString); -void HSQVM_CompileError(HSQUIRRELVM v, const SQChar* pszError, const SQChar* pszFile, SQUnsignedInteger nLine, SQInteger nColumn); +SQRESULT SQVM_PrintFunc(HSQUIRRELVM v, SQChar* fmt, ...); +SQRESULT SQVM_WarningFunc(HSQUIRRELVM v, SQInteger a2, SQInteger a3, SQInteger* nStringSize, SQChar** ppString); +void SQVM_CompileError(HSQUIRRELVM v, const SQChar* pszError, const SQChar* pszFile, SQUnsignedInteger nLine, SQInteger nColumn); -SQInteger HSQVM_LoadRson(const SQChar* szRsonName); -SQBool HSQVM_LoadScript(HSQUIRRELVM v, const SQChar* szScriptPath, const SQChar* szScriptName, SQInteger nFlag); +SQInteger SQVM_LoadRson(const SQChar* szRsonName); +SQBool SQVM_LoadScript(HSQUIRRELVM v, const SQChar* szScriptPath, const SQChar* szScriptName, SQInteger nFlag); -SQRESULT HSQVM_RegisterFunction(HSQUIRRELVM v, const SQChar* szName, const SQChar* szHelpString, const SQChar* szRetValType, const SQChar* szArgTypes, void* pFunction); +SQRESULT SQVM_RegisterFunction(HSQUIRRELVM v, const SQChar* szName, const SQChar* szHelpString, const SQChar* szRetValType, const SQChar* szArgTypes, void* pFunction); void SQVM_RegisterServerScriptFunctions(HSQUIRRELVM v); void SQVM_RegisterClientScriptFunctions(HSQUIRRELVM v); void SQVM_RegisterUIScriptFunctions(HSQUIRRELVM v); -SQInteger HSQVM_InitializeCLGlobalScriptStructs(SQVM* sqvm, SQCONTEXT context); -void HSQVM_InitializeSVGlobalScriptStructs(SQVM* sqvm); +SQInteger SQVM_InitializeCLGlobalScriptStructs(HSQUIRRELVM v, SQCONTEXT context); +void SQVM_InitializeSVGlobalScriptStructs(HSQUIRRELVM v); -SQBool HSQVM_CreateServerVM(); +SQBool SQVM_CreateServerVM(); #ifndef DEDICATED -SQBool HSQVM_CreateClientVM(CHLClient* hlclient); +SQBool SQVM_CreateClientVM(CHLClient* hlclient); #endif // !DEDICATED -SQBool HSQVM_CreateUIVM(); +SQBool SQVM_CreateUIVM(); const SQChar* SQVM_GetContextName(SQCONTEXT context); +const SQCONTEXT SQVM_GetContextIndex(HSQUIRRELVM v); HSQUIRRELVM SQVM_GetVM(SQCONTEXT context); void SQVM_Execute(const SQChar* code, SQCONTEXT context); @@ -167,26 +228,26 @@ class HSQVM : public IDetour #if !defined (DEDICATED) p_SQVM_CreateUIVM = g_mGameDll.FindPatternSIMD(reinterpret_cast("\x40\x53\x48\x83\xEC\x20\x48\x8B\x1D\x00\x00\x00\x00\xC6\x05\x00\x00\x00\x00\x00"), "xxxxxxxxx????xx?????"); #endif // !DEDICATED - SQVM_PrintFunc = p_SQVM_PrintFunc.RCast(); /*48 8B C4 48 89 50 10 4C 89 40 18 4C 89 48 20 53 56 57 48 81 EC 30 08 00 00 48 8B DA 48 8D 70 18 48 8B F9 E8 ?? ?? ?? FF 48 89 74 24 28 48 8D 54 24 30 33*/ - SQVM_WarningFunc = p_SQVM_WarningFunc.RCast(); /*4C 89 4C 24 20 44 89 44 24 18 89 54 24 10 53 55 56 57 41 54 41 55 41 56 41 57 48 83 EC ?? 48 8B*/ - SQVM_GetErrorLine = p_SQVM_GetErrorLine.RCast(); /*48 8B C4 55 56 48 8D A8 ?? ?? ?? ?? 48 81 EC ?? ?? ?? ?? 83 65 90 FC*/ - SQVM_LoadScript = p_SQVM_LoadScript.RCast(); /*48 8B C4 48 89 48 08 55 41 56 48 8D 68*/ - SQVM_LoadRson = p_SQVM_LoadRson.RCast(); /*4C 8B DC 49 89 5B 08 57 48 81 EC A0 00 00 00 33*/ - SQVM_WarningCmd = p_SQVM_WarningCmd.RCast(); /*40 53 48 83 EC 30 33 DB 48 8D 44 24 ?? 4C 8D 4C 24 ??*/ - SQVM_RegisterFunc = p_SQVM_RegisterFunc.RCast(); /*48 83 EC 38 45 0F B6 C8*/ - SQVM_CompileError = p_SQVM_CompileError.RCast(); /*48 89 5C 24 ? 48 89 6C 24 ? 48 89 74 24 ? 48 89 7C 24 ? 41 56 48 81 EC ? ? ? ? 48 8B D9 4C 8B F2*/ + v_SQVM_PrintFunc = p_SQVM_PrintFunc.RCast(); /*48 8B C4 48 89 50 10 4C 89 40 18 4C 89 48 20 53 56 57 48 81 EC 30 08 00 00 48 8B DA 48 8D 70 18 48 8B F9 E8 ?? ?? ?? FF 48 89 74 24 28 48 8D 54 24 30 33*/ + v_SQVM_WarningFunc = p_SQVM_WarningFunc.RCast(); /*4C 89 4C 24 20 44 89 44 24 18 89 54 24 10 53 55 56 57 41 54 41 55 41 56 41 57 48 83 EC ?? 48 8B*/ + v_SQVM_GetErrorLine = p_SQVM_GetErrorLine.RCast(); /*48 8B C4 55 56 48 8D A8 ?? ?? ?? ?? 48 81 EC ?? ?? ?? ?? 83 65 90 FC*/ + v_SQVM_LoadScript = p_SQVM_LoadScript.RCast(); /*48 8B C4 48 89 48 08 55 41 56 48 8D 68*/ + v_SQVM_LoadRson = p_SQVM_LoadRson.RCast(); /*4C 8B DC 49 89 5B 08 57 48 81 EC A0 00 00 00 33*/ + v_SQVM_WarningCmd = p_SQVM_WarningCmd.RCast(); /*40 53 48 83 EC 30 33 DB 48 8D 44 24 ?? 4C 8D 4C 24 ??*/ + v_SQVM_RegisterFunc = p_SQVM_RegisterFunc.RCast(); /*48 83 EC 38 45 0F B6 C8*/ + v_SQVM_CompileError = p_SQVM_CompileError.RCast(); /*48 89 5C 24 ? 48 89 6C 24 ? 48 89 74 24 ? 48 89 7C 24 ? 41 56 48 81 EC ? ? ? ? 48 8B D9 4C 8B F2*/ #if !defined (CLIENT_DLL) - SQVM_InitializeSVGlobalScriptStructs = p_SQVM_InitializeSVGlobalScriptStructs.RCast(); /*48 89 74 24 ?? 57 48 83 EC 30 48 8B 3D ?? ?? ?? ?? 48 8B F1*/ + v_SQVM_InitializeSVGlobalScriptStructs = p_SQVM_InitializeSVGlobalScriptStructs.RCast(); /*48 89 74 24 ?? 57 48 83 EC 30 48 8B 3D ?? ?? ?? ?? 48 8B F1*/ #endif // !CLIENT_DLL #if !defined (DEDICATED) - SQVM_InitializeCLGlobalScriptStructs = p_SQVM_InitializeCLGlobalScriptStructs.RCast(); /*48 89 74 24 ?? 48 89 7C 24 ?? 41 56 48 83 EC 30 48 63 C2 48 8D 3D ?? ?? ?? ??*/ + v_SQVM_InitializeCLGlobalScriptStructs = p_SQVM_InitializeCLGlobalScriptStructs.RCast(); /*48 89 74 24 ?? 48 89 7C 24 ?? 41 56 48 83 EC 30 48 63 C2 48 8D 3D ?? ?? ?? ??*/ #endif // !DEDICATED #if !defined (CLIENT_DLL) - SQVM_CreateServerVM = p_SQVM_CreateServerVM.RCast(); /*40 53 56 48 83 EC 48 48 8D 0D ?? ?? ?? ??*/ + v_SQVM_CreateServerVM = p_SQVM_CreateServerVM.RCast(); /*40 53 56 48 83 EC 48 48 8D 0D ?? ?? ?? ??*/ #endif // !CLIENT_DLL #if !defined (DEDICATED) - SQVM_CreateClientVM = p_SQVM_CreateClientVM.RCast(); /*40 53 41 57 48 83 EC 68 48 83 3D ?? ?? ?? ?? ??*/ - SQVM_CreateUIVM = p_SQVM_CreateUIVM.RCast(); /*40 53 48 83 EC 20 48 8B 1D ?? ?? ?? ?? C6 05 ?? ?? ?? ?? ??*/ + v_SQVM_CreateClientVM = p_SQVM_CreateClientVM.RCast(); /*40 53 41 57 48 83 EC 68 48 83 3D ?? ?? ?? ?? ??*/ + v_SQVM_CreateUIVM = p_SQVM_CreateUIVM.RCast(); /*40 53 48 83 EC 20 48 8B 1D ?? ?? ?? ?? C6 05 ?? ?? ?? ?? ??*/ #endif // !DEDICATED } virtual void GetVar(void) const diff --git a/r5dev/vproj/clientsdk.vcxproj b/r5dev/vproj/clientsdk.vcxproj index c8ce73fc..63307960 100644 --- a/r5dev/vproj/clientsdk.vcxproj +++ b/r5dev/vproj/clientsdk.vcxproj @@ -220,6 +220,7 @@ + diff --git a/r5dev/vproj/clientsdk.vcxproj.filters b/r5dev/vproj/clientsdk.vcxproj.filters index 9f0d706b..22065d42 100644 --- a/r5dev/vproj/clientsdk.vcxproj.filters +++ b/r5dev/vproj/clientsdk.vcxproj.filters @@ -1463,6 +1463,9 @@ sdk\tier1 + + sdk\squirrel + diff --git a/r5dev/vproj/dedicated.vcxproj b/r5dev/vproj/dedicated.vcxproj index e0bced32..303d43e8 100644 --- a/r5dev/vproj/dedicated.vcxproj +++ b/r5dev/vproj/dedicated.vcxproj @@ -221,6 +221,7 @@ + diff --git a/r5dev/vproj/dedicated.vcxproj.filters b/r5dev/vproj/dedicated.vcxproj.filters index 5ee867fb..2bb5ed96 100644 --- a/r5dev/vproj/dedicated.vcxproj.filters +++ b/r5dev/vproj/dedicated.vcxproj.filters @@ -1083,6 +1083,9 @@ sdk\tier1 + + sdk\squirrel + diff --git a/r5dev/vproj/gamesdk.vcxproj b/r5dev/vproj/gamesdk.vcxproj index 2b2d2dfa..fe01eb8d 100644 --- a/r5dev/vproj/gamesdk.vcxproj +++ b/r5dev/vproj/gamesdk.vcxproj @@ -240,6 +240,7 @@ + diff --git a/r5dev/vproj/gamesdk.vcxproj.filters b/r5dev/vproj/gamesdk.vcxproj.filters index 49c5e3db..1f05d9fe 100644 --- a/r5dev/vproj/gamesdk.vcxproj.filters +++ b/r5dev/vproj/gamesdk.vcxproj.filters @@ -1526,6 +1526,9 @@ sdk\public\include + + sdk\squirrel +