blob: 1dbe25fbc4507cc55c0a6747f21e517e502370a9 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// Purpose: Defines a group of app systems that all have the same lifetime
// that need to be connected/initialized, etc. in a well-defined order
//
// $NoKeywords: $
//
//===========================================================================//
#ifndef DEDICATED_H
#define DEDICATED_H
#ifdef _WIN32
#pragma once
#endif
#include "appframework/tier3app.h"
//-----------------------------------------------------------------------------
// Forward declarations
//-----------------------------------------------------------------------------
class IDedicatedServerAPI;
//-----------------------------------------------------------------------------
// Singleton interfaces
//-----------------------------------------------------------------------------
extern IDedicatedServerAPI *engine;
extern char g_szEXEName[ MAX_PATH ];
//-----------------------------------------------------------------------------
// Inner loop: initialize, shutdown main systems, load steam to
//-----------------------------------------------------------------------------
#ifdef POSIX
#define DEDICATED_BASECLASS CTier2SteamApp
#else
#define DEDICATED_BASECLASS CVguiSteamApp
#endif
class CDedicatedAppSystemGroup : public DEDICATED_BASECLASS
{
typedef DEDICATED_BASECLASS BaseClass;
public:
// Methods of IApplication
virtual bool Create( );
virtual bool PreInit( );
virtual int Main( );
virtual void PostShutdown();
virtual void Destroy();
// Used to chain to base class
AppModule_t LoadModule( CreateInterfaceFn factory )
{
return CSteamAppSystemGroup::LoadModule( factory );
}
// Method to add various global singleton systems
bool AddSystems( AppSystemInfo_t *pSystems )
{
return CSteamAppSystemGroup::AddSystems( pSystems );
}
void *FindSystem( const char *pInterfaceName )
{
return CSteamAppSystemGroup::FindSystem( pInterfaceName );
}
};
#endif // DEDICATED_H
|