mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Initialize pointer to CVEngineServer VFTable
This commit is contained in:
parent
76e7111101
commit
909a3d7876
@ -8,6 +8,8 @@
|
||||
#ifndef EIFACE_H
|
||||
#define EIFACE_H
|
||||
#include "edict.h"
|
||||
#include "tier1/bitbuf.h"
|
||||
#include "vpc/keyvalues.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Forward declarations
|
||||
@ -58,7 +60,7 @@ public:
|
||||
virtual bool IsDedicatedServer(void) = 0;
|
||||
// Is this server active?
|
||||
virtual bool IsActive(void) = 0;
|
||||
virtual void NullSub0(void) = 0;
|
||||
virtual void NullSub0(void) = 0;
|
||||
// get arbitrary launch options
|
||||
virtual KeyValues* GetLaunchOptions(void) = 0;
|
||||
|
||||
|
@ -52,3 +52,6 @@ void IVEngineServer_Detach()
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
ServerPlayer_t g_ServerPlayer[MAX_PLAYERS];
|
||||
|
||||
IVEngineServer* g_pEngineServerVFTable = nullptr;
|
||||
CVEngineServer* g_pEngineServer = reinterpret_cast<CVEngineServer*>(&g_pEngineServerVFTable);
|
@ -60,10 +60,10 @@ extern ServerPlayer_t g_ServerPlayer[MAX_PLAYERS];
|
||||
|
||||
class CVEngineServer : public IVEngineServer
|
||||
{
|
||||
|
||||
// Implementation in GameDLL.
|
||||
};
|
||||
|
||||
inline CVEngineServer* g_pEngineServer;
|
||||
extern CVEngineServer* g_pEngineServer;
|
||||
extern IVEngineServer* g_pEngineServerVFTable;
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
class HVEngineServer : public IDetour
|
||||
@ -77,6 +77,7 @@ class HVEngineServer : public IDetour
|
||||
spdlog::debug("| FUN: CVEngineServer::CreateFakeClient : {:#18x} |\n", p_IVEngineServer__CreateFakeClient.GetPtr());
|
||||
//spdlog::debug("| FUN: RunFrameServer : {:#18x} |\n", p_RunFrameServer.GetPtr());
|
||||
spdlog::debug("| VAR: g_bDedicated : {:#18x} |\n", reinterpret_cast<uintptr_t>(g_bDedicated));
|
||||
spdlog::debug("| VAR: g_pEngineServerVFTable : {:#18x} |\n", reinterpret_cast<uintptr_t>(g_pEngineServerVFTable));
|
||||
spdlog::debug("+----------------------------------------------------------------+\n");
|
||||
}
|
||||
virtual void GetFun(void) const
|
||||
@ -98,6 +99,7 @@ class HVEngineServer : public IDetour
|
||||
virtual void GetVar(void) const
|
||||
{
|
||||
g_bDedicated = p_IVEngineServer__IsDedicatedServer.ResolveRelativeAddress(0x3, 0x7).RCast<bool*>();
|
||||
g_pEngineServerVFTable = g_GameDll.GetVirtualMethodTable(".?AVCVEngineServer@@", 0).RCast<CVEngineServer*>();
|
||||
}
|
||||
virtual void GetCon(void) const { }
|
||||
virtual void Attach(void) const { }
|
||||
|
Loading…
x
Reference in New Issue
Block a user