mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Migrated CClient to CBaseClient.
This commit is contained in:
parent
b405125357
commit
d930cb66e0
@ -4,7 +4,6 @@
|
||||
#include "tier0/cvar.h"
|
||||
#include "tier0/commandline.h"
|
||||
#include "client/IVEngineClient.h"
|
||||
#include "client/client.h"
|
||||
#include "client/cdll_engine_int.h"
|
||||
#include "engine/net_chan.h"
|
||||
#include "engine/cl_rcon.h"
|
||||
|
@ -1,6 +0,0 @@
|
||||
#include "core/stdafx.h"
|
||||
#include "client/client.h"
|
||||
#include "engine/baseclient.h"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
CBaseClient* g_pClient = reinterpret_cast<CBaseClient*>(g_pClientBuffer.GetPtr());
|
@ -1,39 +0,0 @@
|
||||
#pragma once
|
||||
#include "server/IVEngineServer.h"
|
||||
|
||||
// PLEASE REMOVE AND FULLY MIGRATE TO CBASECLIENT!
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Forward declarations
|
||||
//-----------------------------------------------------------------------------
|
||||
class CBaseClient;
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
extern CBaseClient* g_pClient;
|
||||
|
||||
namespace
|
||||
{
|
||||
#if defined (GAMEDLL_S0) || defined (GAMEDLL_S1)
|
||||
const uintptr_t g_dwCClientSize = 0x4A440;
|
||||
const uintptr_t g_dwPersistenceVar = 0x5B4;
|
||||
const uintptr_t g_dwCClientPadding = 0x49E88;
|
||||
#elif defined (GAMEDLL_S2) || defined (GAMEDLL_S3)
|
||||
const uintptr_t g_dwCClientSize = 0x4A4C0;
|
||||
const uintptr_t g_dwPersistenceVar = 0x5BC;
|
||||
const uintptr_t g_dwCClientPadding = 0x49F00;
|
||||
#endif
|
||||
static ADDRESS g_pClientBuffer = p_IVEngineServer__PersistenceAvailable.FindPatternSelf("48 8D 0D", ADDRESS::Direction::DOWN, 150).ResolveRelativeAddressSelf(0x3, 0x7);
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
class HClient : public IDetour
|
||||
{
|
||||
virtual void debugp()
|
||||
{
|
||||
std::cout << "| VAR: g_pClient : 0x" << std::hex << std::uppercase << g_pClient << std::setw(0) << " |" << std::endl;
|
||||
std::cout << "+----------------------------------------------------------------+" << std::endl;
|
||||
}
|
||||
};
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
REGISTER(HClient);
|
@ -34,7 +34,6 @@
|
||||
#include "vguimatsurface/MatSystemSurface.h"
|
||||
#include "client/cdll_engine_int.h"
|
||||
#endif // !DEDICATED
|
||||
#include "client/client.h"
|
||||
#include "client/IVEngineClient.h"
|
||||
#ifndef CLIENT_DLL
|
||||
#include "server/server.h"
|
||||
|
@ -1,6 +1,5 @@
|
||||
#include "core/stdafx.h"
|
||||
#include "ebisusdk/EbisuSDK.h"
|
||||
#include "client/client.h"
|
||||
#include "engine/sys_utils.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
@ -206,3 +206,6 @@ void CBaseClient_Detach()
|
||||
DetourDetach((LPVOID*)&CBaseClient_Clear, &CBaseClient::Clear);
|
||||
DetourDetach((LPVOID*)&CBaseClient_Connect, &CBaseClient::Connect);
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
CBaseClient* g_pClient = reinterpret_cast<CBaseClient*>(g_pClientBuffer.GetPtr());
|
@ -1,8 +1,15 @@
|
||||
#pragma once
|
||||
#include "client/client.h"
|
||||
#include "common/protocol.h"
|
||||
#include "server/IVEngineServer.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Forward declarations
|
||||
//-----------------------------------------------------------------------------
|
||||
class CBaseServer;
|
||||
class CBaseClient;
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
extern CBaseClient* g_pClient;
|
||||
|
||||
class CBaseClient
|
||||
{
|
||||
@ -33,7 +40,7 @@ private:
|
||||
char pad_0000[16]; //0x0000
|
||||
std::int32_t m_nUserID; //0x0010
|
||||
char pad_0014[844]; //0x0014
|
||||
void* m_ConVars; //0x0360
|
||||
void* m_ConVars; //0x0360 This is a KeyValue*!
|
||||
char pad_0368[8]; //0x0368
|
||||
CBaseServer* m_Server; //0x0370
|
||||
char pad_0378[40]; //0x0378
|
||||
@ -63,6 +70,16 @@ namespace
|
||||
|
||||
ADDRESS p_CBaseClient_Clear = g_mGameDll.FindPatternSIMD((std::uint8_t*)"\x40\x53\x41\x56\x41\x57\x48\x83\xEC\x20\x48\x8B\xD9\x48\x89\x74", "xxxxxxxxxxxxxxxx");
|
||||
void* (*CBaseClient_Clear)(CBaseClient* pClient) = (void* (*)(CBaseClient*))p_CBaseClient_Clear.GetPtr(); /*40 53 41 56 41 57 48 83 EC 20 48 8B D9 48 89 74*/
|
||||
|
||||
static ADDRESS g_pClientBuffer = p_IVEngineServer__PersistenceAvailable.FindPatternSelf("48 8D 0D", ADDRESS::Direction::DOWN, 150).ResolveRelativeAddressSelf(0x3, 0x7);
|
||||
|
||||
|
||||
// Notes for earlier seasons.
|
||||
#if defined (GAMEDLL_S0) || defined (GAMEDLL_S1)
|
||||
const std::uintptr_t g_dwCClientSize = 0x4A440;
|
||||
const std::uintptr_t g_dwPersistenceVar = 0x5B4;
|
||||
const std::uintptr_t g_dwCClientPadding = 0x49E88;
|
||||
#endif
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
@ -74,6 +91,7 @@ class HBaseClient : public IDetour
|
||||
{
|
||||
virtual void debugp()
|
||||
{
|
||||
std::cout << "| VAR: g_pClient : 0x" << std::hex << std::uppercase << g_pClient << std::setw(0) << " |" << std::endl;
|
||||
std::cout << "| FUN: CBaseClient::Connect : 0x" << std::hex << std::uppercase << p_CBaseClient_Connect.GetPtr() << std::setw(npad) << " |" << std::endl;
|
||||
std::cout << "| FUN: CBaseClient::Clear : 0x" << std::hex << std::uppercase << p_CBaseClient_Clear.GetPtr() << std::setw(npad) << " |" << std::endl;
|
||||
std::cout << "+----------------------------------------------------------------+" << std::endl;
|
||||
|
@ -1,8 +1,9 @@
|
||||
#pragma once
|
||||
#include "common/protocol.h"
|
||||
#include "client/client.h"
|
||||
#include "tier1/NetAdr2.h"
|
||||
|
||||
class CBaseClient;
|
||||
|
||||
namespace
|
||||
{
|
||||
/* ==== CNETCHAN ======================================================================================================================================================== */
|
||||
|
@ -2,7 +2,7 @@
|
||||
#include "tier0/cvar.h"
|
||||
#include "engine/sys_utils.h"
|
||||
#include "server/server.h"
|
||||
#include "client/client.h"
|
||||
#include "engine/baseclient.h"
|
||||
#include "networksystem/r5net.h"
|
||||
#include "public/include/bansystem.h"
|
||||
|
||||
|
@ -2,7 +2,6 @@
|
||||
#include "tier0/cmd.h"
|
||||
#include "tier0/cvar.h"
|
||||
#include "tier0/completion.h"
|
||||
#include "client/client.h"
|
||||
#include "engine/sys_utils.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
@ -13,7 +13,6 @@
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\bsplib\bsplib.cpp" />
|
||||
<ClCompile Include="..\client\cdll_engine_int.cpp" />
|
||||
<ClCompile Include="..\client\client.cpp" />
|
||||
<ClCompile Include="..\client\IVEngineClient.cpp" />
|
||||
<ClCompile Include="..\common\opcodes.cpp" />
|
||||
<ClCompile Include="..\core\dllmain.cpp" />
|
||||
@ -110,7 +109,6 @@
|
||||
<ClInclude Include="..\appframework\iappsystem.h" />
|
||||
<ClInclude Include="..\bsplib\bsplib.h" />
|
||||
<ClInclude Include="..\client\cdll_engine_int.h" />
|
||||
<ClInclude Include="..\client\client.h" />
|
||||
<ClInclude Include="..\client\IVEngineClient.h" />
|
||||
<ClInclude Include="..\common\igameserverdata.h" />
|
||||
<ClInclude Include="..\common\netmessages.h" />
|
||||
|
@ -168,9 +168,6 @@
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\client\client.cpp">
|
||||
<Filter>sdk\client</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\client\IVEngineClient.cpp">
|
||||
<Filter>sdk\client</Filter>
|
||||
</ClCompile>
|
||||
@ -425,9 +422,6 @@
|
||||
<ClInclude Include="..\client\cdll_engine_int.h">
|
||||
<Filter>sdk\client</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\client\client.h">
|
||||
<Filter>sdk\client</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\client\IVEngineClient.h">
|
||||
<Filter>sdk\client</Filter>
|
||||
</ClInclude>
|
||||
|
Loading…
x
Reference in New Issue
Block a user