From c0c06a14b867e2013adfa0aa5c04fa55e494c98f Mon Sep 17 00:00:00 2001 From: Marvin D <41352111+IcePixelx@users.noreply.github.com> Date: Sat, 3 Dec 2022 02:57:11 +0100 Subject: [PATCH] client networkable vars init. --- r5dev/game/server/gameinterface.cpp | 13 ++- r5dev/game/server/gameinterface.h | 3 + r5dev/public/client_class.h | 3 +- r5dev/public/dt_recv.cpp | 3 + r5dev/public/dt_recv.h | 35 +++++++ r5dev/public/dt_send.h | 7 ++ r5dev/public/networkvar.cpp | 133 ++++++++++++++++++++++++++ r5dev/public/networkvar.h | 40 ++++++++ r5dev/public/server_class.h | 4 +- r5dev/vproj/clientsdk.vcxproj | 4 + r5dev/vproj/clientsdk.vcxproj.filters | 12 +++ r5dev/vproj/dedicated.vcxproj | 3 + r5dev/vproj/dedicated.vcxproj.filters | 9 ++ r5dev/vproj/gamesdk.vcxproj | 5 + r5dev/vproj/gamesdk.vcxproj.filters | 15 +++ 15 files changed, 286 insertions(+), 3 deletions(-) create mode 100644 r5dev/public/dt_recv.cpp create mode 100644 r5dev/public/dt_recv.h create mode 100644 r5dev/public/dt_send.h create mode 100644 r5dev/public/networkvar.cpp create mode 100644 r5dev/public/networkvar.h diff --git a/r5dev/game/server/gameinterface.cpp b/r5dev/game/server/gameinterface.cpp index 24bad774..28ff6290 100644 --- a/r5dev/game/server/gameinterface.cpp +++ b/r5dev/game/server/gameinterface.cpp @@ -8,6 +8,7 @@ #include "core/stdafx.h" #include "engine/server/sv_main.h" #include "game/server/gameinterface.h" +#include "public/server_class.h" //----------------------------------------------------------------------------- // This is called when a new game is started. (restart, map) @@ -47,7 +48,7 @@ void CServerGameDLL::GameShutdown(void) } //----------------------------------------------------------------------------- -// Purpose: Gets the simulation tick interfal +// Purpose: Gets the simulation tick interval // Output : float //----------------------------------------------------------------------------- float CServerGameDLL::GetTickInterval(void) @@ -56,6 +57,16 @@ float CServerGameDLL::GetTickInterval(void) return CallVFunc(index, this); } +//----------------------------------------------------------------------------- +// Purpose: get all server classes +// Output : ServerClass* +//----------------------------------------------------------------------------- +ServerClass* CServerGameDLL::GetAllServerClasses(void) +{ + const static int index = 12; + return CallVFunc(index, this); +} + void __fastcall CServerGameDLL::OnReceivedSayTextMessage(void* thisptr, int senderId, const char* text, bool isTeamChat) { #if defined(GAMEDLL_S3) diff --git a/r5dev/game/server/gameinterface.h b/r5dev/game/server/gameinterface.h index 8dc11315..2a1649bf 100644 --- a/r5dev/game/server/gameinterface.h +++ b/r5dev/game/server/gameinterface.h @@ -5,6 +5,8 @@ // $NoKeywords: $ //=============================================================================// +class ServerClass; + class CServerGameDLL { public: @@ -13,6 +15,7 @@ public: void LevelShutdown(void); void GameShutdown(void); float GetTickInterval(void); + ServerClass* GetAllServerClasses(void); static void __fastcall OnReceivedSayTextMessage(void* thisptr, int senderId, const char* text, bool isTeamChat); }; diff --git a/r5dev/public/client_class.h b/r5dev/public/client_class.h index 12b4a7ce..f7308429 100644 --- a/r5dev/public/client_class.h +++ b/r5dev/public/client_class.h @@ -3,6 +3,7 @@ typedef IClientNetworkable* (*CreateClientClassFn)(int entNum, int serialNum); typedef IClientNetworkable* (*CreateEventFn)(); +class CRecvTable; //----------------------------------------------------------------------------- // Purpose: Client side class definition @@ -19,7 +20,7 @@ public: CreateClientClassFn m_pCreateFn; CreateEventFn m_pCreateEventFn; char* m_pNetworkName; - void* m_pRecvTable; // CRecvTable* + CRecvTable* m_pRecvTable; ClientClass* m_pNext; int m_ClassID; int m_ClassSize; diff --git a/r5dev/public/dt_recv.cpp b/r5dev/public/dt_recv.cpp new file mode 100644 index 00000000..61812740 --- /dev/null +++ b/r5dev/public/dt_recv.cpp @@ -0,0 +1,3 @@ +#include "core/stdafx.h" +#include "public/dt_recv.h" +#include "public/dt_common.h" \ No newline at end of file diff --git a/r5dev/public/dt_recv.h b/r5dev/public/dt_recv.h new file mode 100644 index 00000000..ae280e58 --- /dev/null +++ b/r5dev/public/dt_recv.h @@ -0,0 +1,35 @@ +#pragma once +#include "public/dt_common.h" + +class CRecvProp; + +class CRecvTable +{ +public: + char pad_0000[0x8]; + CRecvProp** m_pProps; + int m_nProps; + char pad_0014[0x4AC]; + void* m_pDecoder; + char* m_pNetTableName; + bool m_bInitialized; + bool m_bInMainList; +}; + +class CRecvProp +{ +public: + SendPropType m_RecvType; + int m_Offset; + char pad_0008[24]; + CRecvTable* m_pDataTable; + char* m_pVarName; + bool m_bInsideArray; + char pad_0031[0x7]; + CRecvProp* m_pArrayProp; + void* m_ProxyFn; + char pad_0048[0xC]; + int m_nFlags; + char pad_0058[0x4]; + int m_nElements; +}; \ No newline at end of file diff --git a/r5dev/public/dt_send.h b/r5dev/public/dt_send.h new file mode 100644 index 00000000..5f40dfae --- /dev/null +++ b/r5dev/public/dt_send.h @@ -0,0 +1,7 @@ +#pragma once + +class SendTable +{ +public: + // TODO +}; \ No newline at end of file diff --git a/r5dev/public/networkvar.cpp b/r5dev/public/networkvar.cpp new file mode 100644 index 00000000..0556f7be --- /dev/null +++ b/r5dev/public/networkvar.cpp @@ -0,0 +1,133 @@ +#include "core/stdafx.h" +#include "public/networkvar.h" + +//----------------------------------------------------------------------------- +// Purpose: Easier access networkable vars from memory. +//----------------------------------------------------------------------------- + +#ifndef CLIENT_DLL +//#include "game/server/gameinterface.h" // this doesn't wanna link properly and complains, gotta look at it later again. +#endif // !CLIENT_DLL + +#ifndef DEDICATED +#include "client/cdll_engine_int.h" +#include "public/dt_recv.h" +#endif // !DEDICATED + +CNetVarTables::CNetVarTables(bool isServer) +{ + if (isServer) + { +#ifndef CLIENT_DLL + /* + for (ServerClass* sc = g_pServerGameDLL->GetAllServerClasses(); sc != nullptr; sc = sc->m_pNext) + { + if (sc->m_pSendTable) + { + vTables.emplace_back(LoadTable(sc->m_pSendTable)); + } + } + */ +#endif // !CLIENT_DLL + } + else + { +#ifndef DEDICATED + for (ClientClass* cc = (*g_pHLClient)->GetAllClasses(); cc != nullptr; cc = cc->m_pNext) + { + if (cc->m_pRecvTable) + { + vTables.emplace_back(LoadTable(cc->m_pRecvTable)); + } + } +#endif // !DEDICATED + } +} + +#ifndef DEDICATED +CNetVarTables::Table CNetVarTables::LoadTable(CRecvTable* recvTable) +{ + Table nvTable = Table{}; + + nvTable.m_Offset = 0; + nvTable.m_svNetTableName = recvTable->m_pNetTableName; + + for (int i = 0; i < recvTable->m_nProps; i++) + { + CRecvProp* prop = recvTable->m_pProps[i]; + + if (!prop || std::isdigit(prop->m_pVarName[0])) // Weird edge cases. Need double checking. + continue; + + if (strcmp(prop->m_pVarName, "baseclass") == NULL) // No weird baseclass. Need double checking. + continue; + + if (prop->m_RecvType == SendPropType::DPT_DataTable && prop->m_pDataTable) + { + nvTable.m_vChildTables.emplace_back(LoadTable(prop->m_pDataTable)); + nvTable.m_vChildTables.back().m_Offset = prop->m_Offset; + nvTable.m_vChildTables.back().m_pProp = prop; + } + else + { + nvTable.m_vChildProps.emplace_back(prop); + } + } + + return nvTable; +} +#endif // !DEDICATED + +#ifndef CLIENT_DLL +CNetVarTables::Table CNetVarTables::LoadTable(SendTable* sendTable) +{ + Table nvTable = Table{}; + return nvTable; +} +#endif // !CLIENT_DLL + + +#ifndef DEDICATED +int CNetVarTables::GetOffset(const string& tableName, const string& varName) +{ + for (const auto& table : vTables) + { + if (table.m_svNetTableName.compare(tableName) == 0) + { + return GetOffset(table, varName); + } + } + + return 0; +} + +int CNetVarTables::GetOffset(const Table& table, const string& varName) +{ + for (const auto& prop : table.m_vChildProps) + { + string svVarName = prop->m_pVarName; + if (svVarName.compare(varName) == 0) + return table.m_Offset + prop->m_Offset; + } + + for (const auto& child : table.m_vChildTables) + { + string svVarName = child.m_pProp->m_pVarName; + if (svVarName.compare(varName) == 0) + { + return table.m_Offset + child.m_Offset; + } + } + + // Try to loop through sub tables. + for (const auto& child : table.m_vChildTables) + { + int propOffset = GetOffset(child, varName); + if (propOffset != 0) + return table.m_Offset + propOffset; + } + + return 0; +} + +#endif // !DEDICATED \ No newline at end of file diff --git a/r5dev/public/networkvar.h b/r5dev/public/networkvar.h new file mode 100644 index 00000000..5af6551b --- /dev/null +++ b/r5dev/public/networkvar.h @@ -0,0 +1,40 @@ +#pragma once + +//----------------------------------------------------------------------------- +// Purpose: Easier access networkable vars from memory. +//----------------------------------------------------------------------------- + +class CRecvProp; +class CRecvTable; +class SendTable; + +class CNetVarTables +{ +public: + struct Table + { + string m_svNetTableName; + CRecvProp* m_pProp; + int m_Offset; + vector m_vChildProps; + vector m_vChildTables; + }; + + CNetVarTables(bool isServer); + +#ifndef DEDICATED + Table LoadTable(CRecvTable* recvTable); +#endif // !DEDICATED + +#ifndef CLIENT_DLL + Table LoadTable(SendTable* sendTable); +#endif // !CLIENT_DLL + + // DEDI still needs some work. +#ifndef DEDICATED + int GetOffset(const string& tableName, const string& varName); + int GetOffset(const Table& table, const string& varName); +#endif // !DEDICATED + + vector
vTables; +}; \ No newline at end of file diff --git a/r5dev/public/server_class.h b/r5dev/public/server_class.h index 6e26bd51..4843cbc4 100644 --- a/r5dev/public/server_class.h +++ b/r5dev/public/server_class.h @@ -1,5 +1,7 @@ #pragma once +class SendTable; + //----------------------------------------------------------------------------- // Purpose: Server side class definition //----------------------------------------------------------------------------- @@ -13,7 +15,7 @@ public: public: char* m_pNetworkName; - void* m_pSendTable; + SendTable* m_pSendTable; ServerClass* m_pNext; int m_Unknown1; int m_ClassID; diff --git a/r5dev/vproj/clientsdk.vcxproj b/r5dev/vproj/clientsdk.vcxproj index e1310094..09b733f9 100644 --- a/r5dev/vproj/clientsdk.vcxproj +++ b/r5dev/vproj/clientsdk.vcxproj @@ -95,6 +95,8 @@ NotUsing + + @@ -260,6 +262,7 @@ + @@ -292,6 +295,7 @@ + diff --git a/r5dev/vproj/clientsdk.vcxproj.filters b/r5dev/vproj/clientsdk.vcxproj.filters index 66315198..350dd685 100644 --- a/r5dev/vproj/clientsdk.vcxproj.filters +++ b/r5dev/vproj/clientsdk.vcxproj.filters @@ -630,6 +630,12 @@ sdk\codecs\miles + + sdk\public + + + sdk\public + @@ -1838,6 +1844,12 @@ sdk\codecs\miles + + sdk\public + + + sdk\public + diff --git a/r5dev/vproj/dedicated.vcxproj b/r5dev/vproj/dedicated.vcxproj index 4dd31609..9950b89e 100644 --- a/r5dev/vproj/dedicated.vcxproj +++ b/r5dev/vproj/dedicated.vcxproj @@ -216,6 +216,7 @@ + @@ -236,6 +237,7 @@ + @@ -552,6 +554,7 @@ NotUsing + diff --git a/r5dev/vproj/dedicated.vcxproj.filters b/r5dev/vproj/dedicated.vcxproj.filters index 25a9de74..5149b5bc 100644 --- a/r5dev/vproj/dedicated.vcxproj.filters +++ b/r5dev/vproj/dedicated.vcxproj.filters @@ -1269,6 +1269,12 @@ sdk\public + + sdk\public + + + sdk\public + @@ -1595,6 +1601,9 @@ sdk\tier1 + + sdk\public + diff --git a/r5dev/vproj/gamesdk.vcxproj b/r5dev/vproj/gamesdk.vcxproj index ec7be348..f9e57cb2 100644 --- a/r5dev/vproj/gamesdk.vcxproj +++ b/r5dev/vproj/gamesdk.vcxproj @@ -104,6 +104,8 @@ NotUsing + + @@ -287,6 +289,8 @@ + + @@ -321,6 +325,7 @@ + diff --git a/r5dev/vproj/gamesdk.vcxproj.filters b/r5dev/vproj/gamesdk.vcxproj.filters index 10ba1ce2..d7390808 100644 --- a/r5dev/vproj/gamesdk.vcxproj.filters +++ b/r5dev/vproj/gamesdk.vcxproj.filters @@ -672,6 +672,12 @@ sdk\codecs\miles + + sdk\public + + + sdk\public + @@ -1937,6 +1943,15 @@ sdk\codecs\miles + + sdk\public + + + sdk\public + + + sdk\public +