blob: 870511f13831914beacf676e6b57521c3cfed4a3 (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef IHLTVDIRECTOR_H
#define IHLTVDIRECTOR_H
#ifdef _WIN32
#pragma once
#endif
class IHLTVServer;
class KeyValues;
class Vector;
#define INTERFACEVERSION_HLTVDIRECTOR "HLTVDirector001"
class IHLTVDirector
{
public:
virtual ~IHLTVDirector() {}
virtual bool IsActive( void ) = 0; // true if director is active
virtual void SetHLTVServer( IHLTVServer *hltv ) = 0; // give the director the engine HLTV interface
virtual IHLTVServer* GetHLTVServer( void ) = 0; // get current HLTV server interface
virtual int GetDirectorTick( void ) = 0; // get current broadcast tick from director
virtual int GetPVSEntity( void ) = 0; // get current view entity (PVS), 0 if coords are used
virtual Vector GetPVSOrigin( void ) = 0; // get current PVS origin
virtual float GetDelay( void ) = 0; // returns current delay in seconds
virtual const char** GetModEvents() = 0;
};
#endif // IHLTVDIRECTOR_H
|