forked from nillerusr/source-engine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIHammer.h
56 lines (40 loc) · 1.51 KB
/
IHammer.h
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
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: The application object.
//
//=============================================================================//
#ifndef IHAMMER_H
#define IHAMMER_H
#include "appframework/IAppSystem.h"
typedef struct tagMSG MSG;
class IStudioDataCache;
//-----------------------------------------------------------------------------
// Return values for RequestNewConfig
//-----------------------------------------------------------------------------
enum RequestRetval_t
{
REQUEST_OK = 0,
REQUEST_QUIT
};
//-----------------------------------------------------------------------------
// Interface used to drive hammer
//-----------------------------------------------------------------------------
#define INTERFACEVERSION_HAMMER "Hammer001"
class IHammer : public IAppSystem
{
public:
virtual bool HammerPreTranslateMessage( MSG * pMsg ) = 0;
virtual bool HammerIsIdleMessage( MSG * pMsg ) = 0;
virtual bool HammerOnIdle( long count ) = 0;
virtual void RunFrame() = 0;
// Returns the mod and the game to initially start up
virtual const char *GetDefaultMod() = 0;
virtual const char *GetDefaultGame() = 0;
virtual bool InitSessionGameConfig( const char *szGameDir ) = 0;
// Request a new config from hammer's config system
virtual RequestRetval_t RequestNewConfig() = 0;
// Returns the full path to the mod and the game to initially start up
virtual const char *GetDefaultModFullPath() = 0;
virtual int MainLoop() = 0;
};
#endif // IHAMMER_H