Draw the actual simulation tick on overlay

This commit is contained in:
Kawe Mazidjatari 2022-07-03 11:03:25 +02:00
parent f614ed5140
commit e05c9c787d
5 changed files with 36 additions and 6 deletions

View File

@ -39,7 +39,31 @@ float CClientState::GetClientTime()
}
//------------------------------------------------------------------------------
// Purpose: gets the client simulation tick count
// Purpose: gets the simulation tick count
//------------------------------------------------------------------------------
int CClientState::GetTick() const
{
return m_ClockDriftMgr.m_nSimulationTick;
}
//------------------------------------------------------------------------------
// Purpose: gets the last-received server tick count
//------------------------------------------------------------------------------
int CClientState::GetServerTickCount() const
{
return m_ClockDriftMgr.m_nServerTick;
}
//------------------------------------------------------------------------------
// Purpose: sets the server tick count
//------------------------------------------------------------------------------
void CClientState::SetServerTickCount(int tick)
{
m_ClockDriftMgr.m_nServerTick = tick;
}
//------------------------------------------------------------------------------
// Purpose: gets the client tick count
//------------------------------------------------------------------------------
int CClientState::GetClientTickCount() const
{
@ -47,7 +71,7 @@ int CClientState::GetClientTickCount() const
}
//------------------------------------------------------------------------------
// Purpose: sets the client simulation tick count
// Purpose: sets the client tick count
//------------------------------------------------------------------------------
void CClientState::SetClientTickCount(int tick)
{

View File

@ -23,8 +23,14 @@ class CClientState : CS_INetChannelHandler, IConnectionlessPacketHandler, IServe
public:
bool IsPaused();
float GetClientTime();
int GetTick() const;
int GetServerTickCount() const; // Get the server tick count.
void SetServerTickCount(int tick);
int GetClientTickCount() const; // Get the client tick count.
void SetClientTickCount(int tick); // Set the client tick count.
void SetClientTickCount(int tick);
int m_Socket;
int _padding_maybe;

View File

@ -22,7 +22,7 @@ struct __declspec(align(4)) CClockDriftMgr
int m_nClientTick;
float m_flServerTickTime;
int m_nServerTick;
int tickcount_MAYBE;
int m_nSimulationTick;
};
#endif // CLOCKDRIFTMGR_H

View File

@ -119,7 +119,7 @@ void ConVar::Init(void) const
cl_gpustats_offset_x = new ConVar("cl_gpustats_offset_x" , "650", FCVAR_DEVELOPMENTONLY, "X offset for texture streaming debug overlay.", false, 0.f, false, 0.f, nullptr, nullptr);
cl_gpustats_offset_y = new ConVar("cl_gpustats_offset_y" , "105", FCVAR_DEVELOPMENTONLY, "Y offset for texture streaming debug overlay.", false, 0.f, false, 0.f, nullptr, nullptr);
cl_showmaterialinfo = new ConVar("cl_showmaterialinfo", "0", FCVAR_DEVELOPMENTONLY, "Draw info for the material under the crosshair on screen", false, 0.f, false, 0.f, nullptr, nullptr);
cl_showmaterialinfo = new ConVar("cl_showmaterialinfo", "0", FCVAR_DEVELOPMENTONLY, "Draw info for the material under the crosshair on screen.", false, 0.f, false, 0.f, nullptr, nullptr);
cl_materialinfo_offset_x = new ConVar("cl_materialinfo_offset_x", "0", FCVAR_DEVELOPMENTONLY, "X offset for material debug info overlay.", false, 0.f, false, 0.f, nullptr, nullptr);
cl_materialinfo_offset_y = new ConVar("cl_materialinfo_offset_y", "420", FCVAR_DEVELOPMENTONLY, "Y offset for material debug info overlay.", false, 0.f, false, 0.f, nullptr, nullptr);

View File

@ -140,7 +140,7 @@ void CLogSystem::DrawSimStats(void) const
static Color c = { 255, 255, 255, 255 };
static const char* szLogbuf[4096]{};
snprintf((char*)szLogbuf, 4096, "Server Frame: (%d) Client Frame: (%d) Render Frame: (%d)\n",
g_pServer->GetTick(), g_pClientState->GetClientTickCount(), *render_tickcount);
g_pServer->GetTick(), g_pClientState->GetTick(), *render_tickcount);
if (cl_simstats_invert_rect_x->GetBool())
{