mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Initial working bots implementation
* Changed 'CClient' handle time to 'edict_t' which is an alias of 'uint16_t'. * Changed 'g_pServerGameDLL' and 'g_pServerGameClients' init (obtain from factory instead). * Use interface version macro's for obtaining factory pointers instead. * Added 'g_pServerGameEntities'.
This commit is contained in:
parent
11648d4932
commit
21f4d0fa07
@ -25,7 +25,7 @@ CClient* CClient::GetClient(int nIndex) const
|
||||
//---------------------------------------------------------------------------------
|
||||
// Purpose: gets the handle of this client
|
||||
//---------------------------------------------------------------------------------
|
||||
uint16_t CClient::GetHandle(void) const
|
||||
edict_t CClient::GetHandle(void) const
|
||||
{
|
||||
return m_nHandle;
|
||||
}
|
||||
@ -89,7 +89,7 @@ const char* CClient::GetClientName(void) const
|
||||
//---------------------------------------------------------------------------------
|
||||
// Purpose: sets the handle of this client
|
||||
//---------------------------------------------------------------------------------
|
||||
void CClient::SetHandle(uint16_t nHandle)
|
||||
void CClient::SetHandle(edict_t nHandle)
|
||||
{
|
||||
m_nHandle = nHandle;
|
||||
}
|
||||
|
@ -2,6 +2,7 @@
|
||||
#include "vpc/keyvalues.h"
|
||||
#include "common/protocol.h"
|
||||
#include "engine/net_chan.h"
|
||||
#include "public/edict.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Enumerations
|
||||
@ -26,7 +27,7 @@ class CClient : IClientMessageHandler, INetChannelHandler
|
||||
{
|
||||
public:
|
||||
CClient* GetClient(int nIndex) const;
|
||||
uint16_t GetHandle(void) const;
|
||||
edict_t GetHandle(void) const;
|
||||
uint32_t GetUserID(void) const;
|
||||
uint64_t GetNucleusID(void) const;
|
||||
SIGNONSTATE GetSignonState(void) const;
|
||||
@ -34,7 +35,7 @@ public:
|
||||
CNetChan* GetNetChan(void) const;
|
||||
const char* GetServerName(void) const;
|
||||
const char* GetClientName(void) const;
|
||||
void SetHandle(uint16_t nHandle);
|
||||
void SetHandle(edict_t nHandle);
|
||||
void SetUserID(uint32_t nUserID);
|
||||
void SetNucleusID(uint64_t nNucleusID);
|
||||
void SetSignonState(SIGNONSTATE nSignonState);
|
||||
@ -56,7 +57,7 @@ public:
|
||||
|
||||
private:
|
||||
uint32_t m_nUserID; //0x0010
|
||||
uint16_t m_nHandle; //0x0014
|
||||
edict_t m_nHandle; //0x0014
|
||||
char m_szServerName[64]; //0x0016
|
||||
int64_t m_nReputation; //0x0058
|
||||
char pad_0014[182]; //0x0060
|
||||
|
@ -9,6 +9,7 @@
|
||||
#include "engine/server/sv_main.h"
|
||||
#include "game/server/gameinterface.h"
|
||||
#include "public/server_class.h"
|
||||
#include "public/eiface.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// This is called when a new game is started. (restart, map)
|
||||
@ -91,6 +92,6 @@ void CServerGameDLL_Detach()
|
||||
#endif
|
||||
}
|
||||
|
||||
// Pointer to CServerGameDLL virtual function table.
|
||||
CServerGameDLL* g_pServerGameDLL = nullptr;
|
||||
CServerGameClients* g_pServerGameClients = nullptr;
|
||||
CServerGameEnts* g_pServerGameEntities = nullptr;
|
||||
|
@ -4,9 +4,16 @@
|
||||
//
|
||||
// $NoKeywords: $
|
||||
//=============================================================================//
|
||||
#include "public/eiface.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Forward declarations
|
||||
//-----------------------------------------------------------------------------
|
||||
class ServerClass;
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
class CServerGameDLL
|
||||
{
|
||||
public:
|
||||
@ -19,7 +26,18 @@ public:
|
||||
|
||||
static void __fastcall OnReceivedSayTextMessage(void* thisptr, int senderId, const char* text, bool isTeamChat);
|
||||
};
|
||||
class CServerGameClients // TODO: Reverse..
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
class CServerGameClients : public IServerGameClients
|
||||
{
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
class CServerGameEnts : public IServerGameEnts
|
||||
{
|
||||
};
|
||||
|
||||
@ -28,6 +46,7 @@ inline auto CServerGameDLL__OnReceivedSayTextMessage = p_CServerGameDLL__OnRecei
|
||||
|
||||
extern CServerGameDLL* g_pServerGameDLL;
|
||||
extern CServerGameClients* g_pServerGameClients;
|
||||
extern CServerGameEnts* g_pServerGameEntities;
|
||||
|
||||
void CServerGameDLL_Attach();
|
||||
void CServerGameDLL_Detach();
|
||||
@ -40,22 +59,17 @@ class VServerGameDLL : public IDetour
|
||||
spdlog::debug("| FUN: OnReceivedSayTextMessage : {:#18x} |\n", p_CServerGameDLL__OnReceivedSayTextMessage.GetPtr());
|
||||
spdlog::debug("| VAR: g_pServerGameDLL : {:#18x} |\n", reinterpret_cast<uintptr_t>(g_pServerGameDLL));
|
||||
spdlog::debug("| VAR: g_pServerGameClients : {:#18x} |\n", reinterpret_cast<uintptr_t>(g_pServerGameClients));
|
||||
spdlog::debug("| VAR: g_pServerGameEntities : {:#18x} |\n", reinterpret_cast<uintptr_t>(g_pServerGameEntities));
|
||||
spdlog::debug("+----------------------------------------------------------------+\n");
|
||||
}
|
||||
virtual void GetFun(void) const
|
||||
{
|
||||
#if defined(GAMEDLL_S3)
|
||||
p_CServerGameDLL__OnReceivedSayTextMessage = g_GameDll.FindPatternSIMD("85 D2 0F 8E ?? ?? ?? ?? 4C 8B DC");
|
||||
|
||||
CServerGameDLL__OnReceivedSayTextMessage = p_CServerGameDLL__OnReceivedSayTextMessage.RCast<void(__fastcall*)(void* thisptr, int senderId, const char* text, bool isTeamChat)>();
|
||||
#endif
|
||||
}
|
||||
virtual void GetVar(void) const
|
||||
{
|
||||
g_pServerGameDLL = p_SV_CreateBaseline.Offset(0x0).FindPatternSelf("48 8B", CMemory::Direction::DOWN).ResolveRelativeAddressSelf(0x3, 0x7).Deref().RCast<CServerGameDLL*>();
|
||||
g_pServerGameClients = g_GameDll.FindPatternSIMD("48 89 5C 24 ?? 57 48 81 EC ?? ?? ?? ?? 0F B7 51 14").
|
||||
FindPatternSelf("48 8B 0D", CMemory::Direction::DOWN).ResolveRelativeAddressSelf(0x3, 0x7).RCast<CServerGameClients*>();
|
||||
}
|
||||
virtual void GetVar(void) const { }
|
||||
virtual void GetCon(void) const { }
|
||||
virtual void Attach(void) const { }
|
||||
virtual void Detach(void) const { }
|
||||
|
@ -21,6 +21,9 @@
|
||||
#include "server/vengineserver_impl.h"
|
||||
#include "client/cdll_engine_int.h"
|
||||
#include "engine/enginetrace.h"
|
||||
#ifndef CLIENT_DLL
|
||||
#include "game/server/gameinterface.h"
|
||||
#endif // !CLIENT_DLL
|
||||
#ifndef DEDICATED
|
||||
#include "gameui/IConsole.h"
|
||||
#endif // !DEDICATED
|
||||
@ -68,9 +71,17 @@ bool CModAppSystemGroup::Create(CModAppSystemGroup* pModAppSystemGroup)
|
||||
//InitPluginSystem(pModAppSystemGroup);
|
||||
//CALL_PLUGIN_CALLBACKS(g_pPluginSystem->GetCreateCallbacks(), pModAppSystemGroup);
|
||||
|
||||
#ifndef CLIENT_DLL
|
||||
g_pServerGameDLL = g_pFactory->GetFactoryPtr(INTERFACEVERSION_SERVERGAMEDLL, false).RCast<CServerGameDLL*>();
|
||||
g_pServerGameClients = g_pFactory->GetFactoryPtr(INTERFACEVERSION_SERVERGAMECLIENTS_NEW, false).RCast<CServerGameClients*>();
|
||||
if (!g_pServerGameClients)
|
||||
g_pServerGameClients = g_pFactory->GetFactoryPtr(INTERFACEVERSION_SERVERGAMECLIENTS, false).RCast<CServerGameClients*>();
|
||||
g_pServerGameEntities = g_pFactory->GetFactoryPtr(INTERFACEVERSION_SERVERGAMEENTS, false).RCast<CServerGameEnts*>();
|
||||
#endif // !CLIENT_DLL
|
||||
|
||||
#ifndef DEDICATED
|
||||
g_pClientEntityList = g_pFactory->GetFactoryPtr("VClientEntityList003", false).RCast<IClientEntityList*>();
|
||||
g_pEngineTrace = g_pFactory->GetFactoryPtr("EngineTraceClient004", false).RCast<CEngineTrace*>();
|
||||
g_pClientEntityList = g_pFactory->GetFactoryPtr(VCLIENTENTITYLIST_INTERFACE_VERSION, false).RCast<IClientEntityList*>();
|
||||
g_pEngineTrace = g_pFactory->GetFactoryPtr(INTERFACEVERSION_ENGINETRACE_CLIENT, false).RCast<CEngineTrace*>();
|
||||
|
||||
g_pImGuiConfig->Load(); // Load ImGui configs.
|
||||
for (auto& map : g_pCVar->DumpToMap())
|
||||
|
@ -7,6 +7,7 @@
|
||||
#include "engine/server/sv_main.h"
|
||||
#endif // !CLIENT_DLL
|
||||
|
||||
typedef uint16_t edict_t;
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: Defines the ways that a map can be loaded.
|
||||
|
40
r5dev/public/eiface.h
Normal file
40
r5dev/public/eiface.h
Normal file
@ -0,0 +1,40 @@
|
||||
//===== Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ======//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $NoKeywords: $
|
||||
//
|
||||
//===========================================================================//
|
||||
#ifndef EIFACE_H
|
||||
#define EIFACE_H
|
||||
#include "edict.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: Interface to get at server clients
|
||||
//-----------------------------------------------------------------------------
|
||||
abstract_class IServerGameClients
|
||||
{
|
||||
public:
|
||||
// Get server max players and lower bound for same
|
||||
virtual void GetPlayerLimits(int& nMinPlayers, int& nMaxPlayers, int& nDefaultMaxPlayers) const = 0;
|
||||
|
||||
// Client is connecting to server ( return false to reject the connection )
|
||||
// You can specify a rejection message by writing it into pszReject
|
||||
virtual bool ClientConnect(edict_t nEntity, char const* pszName, char const* pszAddress, char* pszReject, int nMaxRejectLen) = 0;
|
||||
|
||||
// Client is going active
|
||||
// If bLoadGame is true, don't spawn the player because its state is already setup.
|
||||
virtual void ClientActive(edict_t nEntity, bool bLoadGame) = 0;
|
||||
virtual void ClientFullyConnect(edict_t nEntity, bool bRestore) = 0;
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: Interface to get at server entities
|
||||
//-----------------------------------------------------------------------------
|
||||
abstract_class IServerGameEnts
|
||||
{
|
||||
public:
|
||||
// !TODO
|
||||
};
|
||||
|
||||
#endif // EIFACE_H
|
@ -1,9 +1,5 @@
|
||||
#pragma once
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Forward declarations
|
||||
//-----------------------------------------------------------------------------
|
||||
class CClient;
|
||||
#include "public/edict.h"
|
||||
|
||||
/* ==== CVENGINESERVER ================================================================================================================================================== */
|
||||
inline CMemory p_IVEngineServer__PersistenceAvailable;
|
||||
@ -19,7 +15,7 @@ inline CMemory p_IVEngineServer__GetNumFakeClients;
|
||||
inline auto IVEngineServer__GetNumFakeClients = p_IVEngineServer__GetNumFakeClients.RCast<int64_t(*)(void)>();
|
||||
|
||||
inline CMemory p_IVEngineServer__CreateFakeClient;
|
||||
inline auto IVEngineServer__CreateFakeClient = p_IVEngineServer__CreateFakeClient.RCast<CClient*(*)(void* es, const char* name, int team)>();
|
||||
inline auto IVEngineServer__CreateFakeClient = p_IVEngineServer__CreateFakeClient.RCast<edict_t(*)(void* es, const char* name, int team)>();
|
||||
|
||||
//inline CMemory p_RunFrameServer;
|
||||
//inline auto v_RunFrameServer = p_RunFrameServer.RCast<void(*)(double flFrameTime, bool bRunOverlays, bool bUniformUpdate)>();
|
||||
@ -88,7 +84,7 @@ class HVEngineServer : public IDetour
|
||||
IVEngineServer__IsDedicatedServer = p_IVEngineServer__IsDedicatedServer.RCast<bool (*)(void)>(); /*0F B6 05 ?? ?? ?? ?? C3 CC CC CC CC CC CC CC CC 48 8B 05 ?? ?? ?? ?? C3 CC CC CC CC CC CC CC CC 40 53*/
|
||||
IVEngineServer__GetNumHumanPlayers = p_IVEngineServer__GetNumHumanPlayers.RCast<int64_t(*)(void)>(); /*8B 15 ?? ?? ?? ?? 33 C0 85 D2 7E 24*/
|
||||
IVEngineServer__GetNumFakeClients = p_IVEngineServer__GetNumFakeClients.RCast<int64_t(*)(void)>(); /*8B 05 ?? ?? ?? ?? 33 C9 85 C0 7E 2D*/
|
||||
IVEngineServer__CreateFakeClient = p_IVEngineServer__CreateFakeClient.RCast<CClient*(*)(void*, const char*, int)>();/*48 89 5C 24 ?? 48 89 74 24 ?? 57 48 83 EC 20 48 8B F2 41 8B F8*/
|
||||
IVEngineServer__CreateFakeClient = p_IVEngineServer__CreateFakeClient.RCast<edict_t(*)(void*, const char*, int)>();/*48 89 5C 24 ?? 48 89 74 24 ?? 57 48 83 EC 20 48 8B F2 41 8B F8*/
|
||||
// v_RunFrameServer = p_RunFrameServer.RCast<void(*)(double, bool, bool)>(); /*48 89 5C 24 ?? 57 48 83 EC 30 0F 29 74 24 ?? 48 8D 0D ?? ?? ?? ??*/
|
||||
}
|
||||
virtual void GetVar(void) const
|
||||
|
@ -14,7 +14,8 @@
|
||||
#define MATERIALSYSTEM_CONFIG_VERSION "VMaterialSystemConfig004"
|
||||
|
||||
#define SERVER_DLL_SHARED_APPSYSTEMS "VServerDllSharedAppSystems001"
|
||||
#define INTERFACEVERSION_SERVERGAMECLIENTS "ServerGameClients004"
|
||||
#define INTERFACEVERSION_SERVERGAMECLIENTS_NEW "ServerGameClients004"
|
||||
#define INTERFACEVERSION_SERVERGAMECLIENTS "ServerGameClients003"
|
||||
#define INTERFACEVERSION_SERVERGAMEENTS "ServerGameEnts002"
|
||||
#define INTERFACEVERSION_SERVERGAMEDLL "ServerGameDLL005"
|
||||
|
||||
|
@ -274,6 +274,7 @@
|
||||
<ClInclude Include="..\public\datamap.h" />
|
||||
<ClInclude Include="..\public\dt_common.h" />
|
||||
<ClInclude Include="..\public\dt_recv.h" />
|
||||
<ClInclude Include="..\public\eiface.h" />
|
||||
<ClInclude Include="..\public\iengine.h" />
|
||||
<ClInclude Include="..\public\client_class.h" />
|
||||
<ClInclude Include="..\public\const.h" />
|
||||
|
@ -1886,6 +1886,9 @@
|
||||
<ClInclude Include="..\public\utility\crashhandler.h">
|
||||
<Filter>sdk\public\utility</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\public\eiface.h">
|
||||
<Filter>sdk\public</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Image Include="..\shared\resource\lockedserver.png">
|
||||
|
@ -221,6 +221,7 @@
|
||||
<ClInclude Include="..\public\datamap.h" />
|
||||
<ClInclude Include="..\public\dt_common.h" />
|
||||
<ClInclude Include="..\public\dt_send.h" />
|
||||
<ClInclude Include="..\public\eiface.h" />
|
||||
<ClInclude Include="..\public\iengine.h" />
|
||||
<ClInclude Include="..\public\client_class.h" />
|
||||
<ClInclude Include="..\public\const.h" />
|
||||
|
@ -1290,6 +1290,9 @@
|
||||
<ClInclude Include="..\public\utility\crashhandler.h">
|
||||
<Filter>sdk\public\utility</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\public\eiface.h">
|
||||
<Filter>sdk\public</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common\opcodes.cpp">
|
||||
|
@ -302,6 +302,7 @@
|
||||
<ClInclude Include="..\public\dt_common.h" />
|
||||
<ClInclude Include="..\public\dt_recv.h" />
|
||||
<ClInclude Include="..\public\dt_send.h" />
|
||||
<ClInclude Include="..\public\eiface.h" />
|
||||
<ClInclude Include="..\public\iengine.h" />
|
||||
<ClInclude Include="..\public\client_class.h" />
|
||||
<ClInclude Include="..\public\const.h" />
|
||||
|
@ -1988,6 +1988,9 @@
|
||||
<ClInclude Include="..\public\utility\crashhandler.h">
|
||||
<Filter>sdk\public\utility</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\public\eiface.h">
|
||||
<Filter>sdk\public</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Image Include="..\shared\resource\lockedserver.png">
|
||||
|
@ -55,6 +55,7 @@
|
||||
#ifndef DEDICATED
|
||||
#include "game/client/viewrender.h"
|
||||
#endif // !DEDICATED
|
||||
#include <game/server/gameinterface.h>
|
||||
|
||||
|
||||
/*
|
||||
@ -1247,6 +1248,7 @@ void CC_CreateFakePlayer_f(const CCommand& args)
|
||||
DevMsg(eDLL_T::SERVER, "usage: sv_addbot name teamid\n");
|
||||
return;
|
||||
}
|
||||
CClient* pPlayer = IVEngineServer__CreateFakeClient(nullptr, args.Arg(1), std::stoi(args.Arg(2)));
|
||||
edict_t nHandle = IVEngineServer__CreateFakeClient(nullptr, args.Arg(1), std::stoi(args.Arg(2)));
|
||||
g_pServerGameClients->ClientFullyConnect(nHandle, false);
|
||||
#endif // !CLIENT_DLL
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user