Counter Strike : Global Offensive Source Code
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include "quakedef.h"
#include "enginestats.h"
#include "basetypes.h"
#include "clientstats.h"
#include "limits.h"
#include "sysexternal.h"
#include "gl_matsysiface.h"
#include "filesystem_engine.h"
#include "tier0/vprof.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
//-----------------------------------------------------------------------------
// itty bitty interface for stat time
//-----------------------------------------------------------------------------
class CStatTime : public IClientStatsTime { public: float GetTime() { return Sys_FloatTime(); } };
CStatTime g_StatTime;
CEngineStats::CEngineStats() : m_InFrame( false ) { m_bInRun = false; m_szVProfStatsFileName[0] = '\0'; }
#ifdef VPROF_ENABLED
extern void VProf_StartRecording( const char *pFilename ); extern void VProf_StopRecording( void ); #endif
void CEngineStats::BeginRun( void ) { m_bInRun = true; m_totalNumFrames = 0;
#ifdef VPROF_ENABLED
if ( m_szVProfStatsFileName[0] != '\0' ) { VProf_StartRecording( m_szVProfStatsFileName ); } #endif
// frame timing data
m_runStartTime = Sys_FloatTime(); }
void CEngineStats::EndRun( void ) { m_runEndTime = Sys_FloatTime(); m_bInRun = false;
#ifdef VPROF_ENABLED
if ( m_szVProfStatsFileName[0] != '\0' ) { VProf_StopRecording(); m_szVProfStatsFileName[0] = '\0'; } #endif
}
void CEngineStats::BeginFrame( void ) { m_bPaused = false; m_InFrame = false; }
void CEngineStats::ComputeFrameTimeStats( void ) { m_StatGroup.m_StatFrameTime[ENGINE_STATS_FRAME_TIME] = m_flFrameTime / 1000.0f; m_StatGroup.m_StatFrameTime[ENGINE_STATS_FPS_VARIABILITY] = m_flFPSVariability / 1000.0f; m_StatGroup.m_StatFrameTime[ENGINE_STATS_FPS] = (m_flFrameTime != 0.0f) ? ( 1.0f / (1000.0f * m_flFrameTime) ) : 0.0f; }
void CEngineStats::EndFrame( void ) { if (!m_InFrame) return; }
//-----------------------------------------------------------------------------
// Advances the next frame for the stats...
//-----------------------------------------------------------------------------
void CEngineStats::NextFrame() { }
//-----------------------------------------------------------------------------
// Pause those stats!
//-----------------------------------------------------------------------------
void CEngineStats::PauseStats( bool bPaused ) { if (bPaused) { if (m_InFrame) { m_bPaused = true; m_InFrame = false; } } else // !bPaused
{ if (m_bPaused) { m_InFrame = true; m_bPaused = false; } } }
//-----------------------------------------------------------------------------
// returns timed stats
//-----------------------------------------------------------------------------
double CEngineStats::TimedStatInFrame( EngineTimedStatId_t stat ) const { return m_StatGroup.m_StatFrameTime[stat]; }
double CEngineStats::TotalTimedStat( EngineTimedStatId_t stat ) const { return m_StatGroup.m_TotalStatTime[stat]; }
double CEngineStats::GetRunTime( void ) { return m_runEndTime - m_runStartTime; }
void CEngineStats::EnableVProfStatsRecording( const char *pFileName ) { Q_strncpy( m_szVProfStatsFileName, pFileName, sizeof( m_szVProfStatsFileName ) ); }
|