-
Notifications
You must be signed in to change notification settings - Fork 13
/
m_AutoMap.h
53 lines (32 loc) · 860 Bytes
/
m_AutoMap.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
#ifdef FUNCTION_DECLARE
#define MODULE_AUTOMAP
void RevealAutomap();
void ResetMapStatus();
void ShowAutoMap();
void RevealLevelPlayerIn();
#endif
#ifdef VARIABLE_DEFINE
GVAR (BOOL, fAutoRevealAct, 0)
GVAR2(ToggleVar, tRevealAct, 2, 0, -1, 1, 0, &RevealAutomap)
GVAR2(ToggleVar, tRevealLevel, 2, 0, -1, 1, 0, &RevealLevelPlayerIn)
GVAR2(ToggleVar, tAutoMap, 1, 1, -1, 1, "Auto Map Toggle" )
#endif
#ifdef PATH_INSTALL
#endif
#ifdef CONFIG_LOAD
{1, "RevealActAutomapKey", &tRevealAct },
{1, "RevealLevelAutomapKey", &tRevealLevel },
{1, "AutoMapToggle", &tAutoMap },
{2, "AutoRevealAct", &fAutoRevealAct , 4 },
#endif
#ifdef RUN_ONCE
ResetMapStatus();
ShowAutoMap();
#endif
#ifdef RUN_LOOP
RevealAutomap();
#endif
#ifdef INIT_VALUE
#endif
#ifdef FIX_VALUE
#endif