diff options
| author | Joe Ludwig <[email protected]> | 2013-06-26 15:22:04 -0700 |
|---|---|---|
| committer | Joe Ludwig <[email protected]> | 2013-06-26 15:22:04 -0700 |
| commit | 39ed87570bdb2f86969d4be821c94b722dc71179 (patch) | |
| tree | abc53757f75f40c80278e87650ea92808274aa59 /mp/src/common/replay/ireplayperformancerecorder.h | |
| download | source-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.tar.xz source-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.zip | |
First version of the SOurce SDK 2013
Diffstat (limited to 'mp/src/common/replay/ireplayperformancerecorder.h')
| -rw-r--r-- | mp/src/common/replay/ireplayperformancerecorder.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/mp/src/common/replay/ireplayperformancerecorder.h b/mp/src/common/replay/ireplayperformancerecorder.h new file mode 100644 index 00000000..83997eb7 --- /dev/null +++ b/mp/src/common/replay/ireplayperformancerecorder.h @@ -0,0 +1,49 @@ +//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+//=======================================================================================//
+
+#ifndef IREPLAYPERFORMANCERECORDER_H
+#define IREPLAYPERFORMANCERECORDER_H
+#ifdef _WIN32
+#pragma once
+#endif
+
+//----------------------------------------------------------------------------------------
+
+#include "interface.h"
+
+//----------------------------------------------------------------------------------------
+
+class CReplay;
+class Vector;
+class QAngle;
+class CReplayPerformance;
+
+//----------------------------------------------------------------------------------------
+
+class IReplayPerformanceRecorder : public IBaseInterface
+{
+public:
+ virtual void BeginPerformanceRecord( CReplay *pReplay ) = 0;
+ virtual void EndPerformanceRecord() = 0;
+
+ virtual void NotifyPauseState( bool bPaused ) = 0;
+
+ virtual CReplayPerformance *GetPerformance() = 0;
+ virtual bool IsRecording() const = 0;
+
+ virtual void SnipAtTime( float flTime ) = 0;
+ virtual void NotifySkipping() = 0;
+ virtual void ClearSkipping() = 0;
+
+ virtual void AddEvent_Camera_Change_FirstPerson( float flTime, int nEntityIndex ) = 0;
+ virtual void AddEvent_Camera_Change_ThirdPerson( float flTime, int nEntityIndex ) = 0;
+ virtual void AddEvent_Camera_Change_Free( float flTime ) = 0;
+ virtual void AddEvent_Camera_ChangePlayer( float flTime, int nEntIndex ) = 0;
+ virtual void AddEvent_Camera_SetView( float flTime, const Vector& origin, const QAngle &angles, float fov ) = 0;
+ virtual void AddEvent_Slowmo( float flTime, float flScale ) = 0;
+};
+
+//----------------------------------------------------------------------------------------
+
+#endif // IREPLAYPERFORMANCERECORDER_H
|