Renames and new setters for CNetChan

* Renamed hooking class to 'VNetChan'
* Added new setters for setting the remote frame times, and the remote server CPU statistics.
This commit is contained in:
Kawe Mazidjatari 2023-02-18 00:05:55 +01:00
parent eec9c21648
commit 367b2cf5bc
4 changed files with 29 additions and 6 deletions

View File

@ -492,7 +492,7 @@ void DetourRegister() // Register detour classes to be searched and hooked.
REGISTER(VHostState);
REGISTER(VModelLoader);
REGISTER(VNet);
REGISTER(VNetChannel);
REGISTER(VNetChan);
REGISTER(VSys_Dll);
REGISTER(VSys_Dll2);

View File

@ -241,12 +241,32 @@ bool CNetChan::ProcessMessages(CNetChan* pChan, bf_read* pMsg)
#endif
}
//-----------------------------------------------------------------------------
// Purpose: sets the remote frame times
// Input : flFrameTime -
// flFrameTimeStdDeviation -
//-----------------------------------------------------------------------------
void CNetChan::SetRemoteFramerate(float flFrameTime, float flFrameTimeStdDeviation)
{
m_flRemoteFrameTime = flFrameTime;
m_flRemoteFrameTimeStdDeviation = flFrameTimeStdDeviation;
}
//-----------------------------------------------------------------------------
// Purpose: sets the remote cpu statistics
// Input : nStats -
//-----------------------------------------------------------------------------
void CNetChan::SetRemoteCPUStatistics(uint8_t nStats)
{
m_nServerCPU = nStats;
}
///////////////////////////////////////////////////////////////////////////////
void VNetChannel::Attach() const
void VNetChan::Attach() const
{
DetourAttach(&v_NetChan_ProcessMessages, &CNetChan::ProcessMessages);
}
void VNetChannel::Detach() const
void VNetChan::Detach() const
{
DetourDetach(&v_NetChan_ProcessMessages, &CNetChan::ProcessMessages);
}

View File

@ -104,6 +104,9 @@ public:
void Clear(bool bStopProcessing);
static bool ProcessMessages(CNetChan* pChan, bf_read* pMsg);
void SetRemoteFramerate(float flFrameTime, float flFrameTimeStdDeviation);
void SetRemoteCPUStatistics(uint8_t nStats);
//-----------------------------------------------------------------------------
private:
bool m_bProcessingMessages;
@ -181,7 +184,7 @@ inline auto v_NetChan_Clear = p_NetChan_Clear.RCast<void (*)(CNetChan* pChannel,
inline CMemory p_NetChan_ProcessMessages;
inline auto v_NetChan_ProcessMessages = p_NetChan_ProcessMessages.RCast<bool (*)(CNetChan* pChan, bf_read* pMsg)>();
///////////////////////////////////////////////////////////////////////////////
class VNetChannel : public IDetour
class VNetChan : public IDetour
{
virtual void GetAdr(void) const
{

View File

@ -72,8 +72,8 @@ typedef struct nettick_s
float m_flHostFrameTime;
float m_flHostFrameTimeStdDeviation;
bool m_bStruggling;
char m_nServerCPU;
int command_number;
uint8_t m_nServerCPU;
int m_nCommandTick;
} nettick_t;
static_assert(sizeof(nettick_s) == 0x18);