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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include "ModInfo.h"
#include "KeyValues.h"
#include "vgui_controls/Controls.h"
#include "filesystem.h"
#include "EngineInterface.h"
// memdbgon must be the last include file in a .cpp file!!!
#include <tier0/memdbgon.h>
//-----------------------------------------------------------------------------
// Purpose: singleton accessor
//-----------------------------------------------------------------------------
CModInfo &ModInfo()
{
static CModInfo s_ModInfo;
return s_ModInfo;
}
//-----------------------------------------------------------------------------
// Purpose: Constructor
//-----------------------------------------------------------------------------
CModInfo::CModInfo()
{
m_pModData = new KeyValues("ModData");
m_wcsGameTitle[0] = 0;
}
//-----------------------------------------------------------------------------
// Purpose: Destructor
//-----------------------------------------------------------------------------
CModInfo::~CModInfo()
{
FreeModInfo();
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CModInfo::FreeModInfo()
{
if (m_pModData)
{
m_pModData->deleteThis();
m_pModData = NULL;
}
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
bool CModInfo::IsMultiplayerOnly()
{
return (stricmp(m_pModData->GetString("type", ""), "multiplayer_only") == 0);
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
bool CModInfo::IsSinglePlayerOnly()
{
#ifndef _XBOX
return (stricmp(m_pModData->GetString("type", ""), "singleplayer_only") == 0);
#else
// xboxissue - no support for disparate mounted content
return true;
#endif
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
const char *CModInfo::GetFallbackDir()
{
return m_pModData->GetString("fallback_dir", "");
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
const wchar_t *CModInfo::GetGameTitle()
{
if (!m_wcsGameTitle[0])
{
// for some reason, the standard ILocalize::ConvertANSIToUnicode() strips off
// the '�' character in 'HALF-LIFE�' - so just do a straight upconvert to unicode
const char *title = m_pModData->GetString("title", "");
int i = 0;
for (; title[i] != 0; ++i)
{
m_wcsGameTitle[i] = (wchar_t)title[i];
}
m_wcsGameTitle[i] = 0;
}
return m_wcsGameTitle;
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
const wchar_t *CModInfo::GetGameTitle2()
{
if (!m_wcsGameTitle2[0])
{
// for some reason, the standard ILocalize::ConvertANSIToUnicode() strips off
// the '�' character in 'HALF-LIFE�' - so just do a straight upconvert to unicode
const char *title2 = m_pModData->GetString("title2", "");
int i = 0;
for (; title2[i] != 0; ++i)
{
m_wcsGameTitle2[i] = (wchar_t)title2[i];
}
m_wcsGameTitle2[i] = 0;
}
return m_wcsGameTitle2;
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
const char *CModInfo::GetGameName()
{
return m_pModData->GetString("game", "");
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
KeyValues *CModInfo::GetHiddenMaps()
{
return m_pModData->FindKey( "hidden_maps" );
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
bool CModInfo::HasPortals()
{
return (stricmp(m_pModData->GetString("hasportals", "0"), "1") == 0);
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
bool CModInfo::HasHDContent()
{
return (stricmp(m_pModData->GetString("hashdcontent", "0"), "1") == 0);
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
bool CModInfo::NoDifficulty()
{
return (stricmp(m_pModData->GetString("nodifficulty", "0"), "1") == 0);
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
bool CModInfo::NoModels()
{
return (stricmp(m_pModData->GetString("nomodels", "0"), "1") == 0);
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
bool CModInfo::NoHiModel()
{
return (stricmp(m_pModData->GetString("nohimodel", "0"), "1") == 0);
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
bool CModInfo::NoCrosshair()
{
return (stricmp(m_pModData->GetString("nocrosshair", "1"), "1") == 0);
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
bool CModInfo::AdvCrosshair()
{
return ( m_pModData->GetInt( "advcrosshair" ) > 0 );
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
int CModInfo::AdvCrosshairLevel()
{
return m_pModData->GetInt( "advcrosshair" );
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CModInfo::LoadCurrentGameInfo()
{
// Load up gameinfo for the current mod
char const *filename = "gameinfo.txt";
m_pModData->LoadFromFile( g_pFullFileSystem, filename );
}
//-----------------------------------------------------------------------------
// Purpose: loads file from null-terminated buffer
//-----------------------------------------------------------------------------
void CModInfo::LoadGameInfoFromBuffer( const char *buffer )
{
// Load up gameinfo.txt for the current mod
m_pModData->LoadFromBuffer( "", buffer );
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
bool CModInfo::UseGameLogo()
{
return ( Q_stricmp( m_pModData->GetString( "gamelogo", "0" ), "1" ) == 0 );
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
bool CModInfo::UseBots()
{
return ( Q_stricmp( m_pModData->GetString( "bots", "0" ), "1" ) == 0 );
}
//-----------------------------------------------------------------------------
// Purpose: data accessor
//-----------------------------------------------------------------------------
bool CModInfo::SupportsVR()
{
return (m_pModData->GetInt( "supportsvr" ) > 0);
}
|