aboutsummaryrefslogtreecommitdiff
path: root/sp/src/common/replay/ireplayserver.h
blob: f2f4bf2220aea0eb6aee73e1fb86c72a228176b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
// $NoKeywords: $
//
//=============================================================================//

#ifndef IREPLAYSERVER_H
#define IREPLAYSERVER_H

#ifdef _WIN32
#pragma once
#endif

//-----------------------------------------------------------------------------

#include "interface.h"

//-----------------------------------------------------------------------------

class IServer;
class IReplayDirector;
class IGameEvent;
struct netadr_s;
class CServerReplay;

//-----------------------------------------------------------------------------
// Interface the Replay module exposes to the engine
//-----------------------------------------------------------------------------
#define INTERFACEVERSION_REPLAYSERVER	"ReplayServer001"

class IReplayServer : public IBaseInterface
{
public:
	virtual	~IReplayServer() {}

	virtual	IServer	*GetBaseServer() = 0; // get Replay base server interface
	virtual	IReplayDirector *GetDirector() = 0;	// get director interface
	virtual	int		GetReplaySlot() = 0; // return entity index-1 of Replay in game
	virtual float	GetOnlineTime() = 0; // seconds since broadcast started
	virtual void	BroadcastEvent(IGameEvent *event) = 0; // send a director command to all specs
	virtual bool	IsRecording() = 0;
	virtual void	StartRecording() = 0;
	virtual void	StopRecording() = 0;
};

#endif