forked from Source-Python-Dev-Team/Source.Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcvar_wrap.cpp
More file actions
328 lines (280 loc) · 7.92 KB
/
Copy pathcvar_wrap.cpp
File metadata and controls
328 lines (280 loc) · 7.92 KB
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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
/**
* =============================================================================
* Source Python
* Copyright (C) 2012 Source Python Development Team. All rights reserved.
* =============================================================================
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, version 3.0, as published by the
* Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*
* As a special exception, the Source Python Team gives you permission
* to link the code of this program (as well as its derivative works) to
* "Half-Life 2," the "Source Engine," and any Game MODs that run on software
* by the Valve Corporation. You must obey the GNU General Public License in
* all respects for all other code used. Additionally, the Source.Python
* Development Team grants this exception to all derivative works.
*/
//-----------------------------------------------------------------------------
// Includes
//-----------------------------------------------------------------------------
#include "cvar_wrap.h"
//-----------------------------------------------------------------------------
// CConVar constructors.
//-----------------------------------------------------------------------------
CConVar::CConVar( ConVar* pConVar )
{
m_Name = pConVar->GetName();
}
CConVar::CConVar( const char *pName )
{
m_Name = strdup(pName);
ConVar *convar = g_pCVar->FindVar(m_Name);
if( !convar )
{
ConVar *convar = new ConVar(m_Name, "0", 0);
}
}
CConVar::CConVar( const char *pName, const char *pDefaultValue, int flags )
{
m_Name = strdup(pName);
ConVar *convar = g_pCVar->FindVar(m_Name);
if( !convar )
{
ConVar *convar = new ConVar(m_Name, pDefaultValue, flags);
}
}
CConVar::CConVar( const char *pName, const char *pDefaultValue,
int flags, const char *pHelpString )
{
m_Name = strdup(pName);
ConVar *convar = g_pCVar->FindVar(m_Name);
if( !convar )
{
ConVar *convar = new ConVar(m_Name, pDefaultValue, flags, strdup(pHelpString));
}
}
CConVar::CConVar( const char *pName, const char *pDefaultValue, int flags,
const char *pHelpString, bool bMin, float fMin, bool bMax, float fMax )
{
m_Name = strdup(pName);
ConVar *convar = g_pCVar->FindVar(m_Name);
if( !convar )
{
ConVar *convar = new ConVar(m_Name, pDefaultValue, flags,
strdup(pHelpString), bMin, fMin, bMax, fMax);
}
}
//-----------------------------------------------------------------------------
// CConVar methods.
//-----------------------------------------------------------------------------
const char* CConVar::get_help_text()
{
ConVar *convar = g_pCVar->FindVar(m_Name);
return convar->GetHelpText();
}
const char *CConVar::get_name()
{
return m_Name;
}
bool CConVar::is_flag_set( int iFlag )
{
ConVar *convar = g_pCVar->FindVar(m_Name);
return convar->IsFlagSet(iFlag);
}
void CConVar::add_flags( int iFlags )
{
ConVar *convar = g_pCVar->FindVar(m_Name);
convar->AddFlags(iFlags);
}
void CConVar::remove_flags( int iFlags )
{
ConCommandBase* command = g_pCVar->FindCommandBase(m_Name);
command->RemoveFlags(iFlags);
}
int CConVar::get_flags()
{
ConVar *convar = g_pCVar->FindVar(m_Name);
return convar->GetFlags();
}
bool CConVar::is_command()
{
ConVar *convar = g_pCVar->FindVar(m_Name);
return convar->IsCommand();
}
float CConVar::get_float()
{
ConVar *convar = g_pCVar->FindVar(m_Name);
return convar->GetFloat();
}
int CConVar::get_int()
{
ConVar *convar = g_pCVar->FindVar(m_Name);
return convar->GetInt();
}
bool CConVar::get_bool()
{
ConVar *convar = g_pCVar->FindVar(m_Name);
return convar->GetBool();
}
char const *CConVar::get_string()
{
ConVar *convar = g_pCVar->FindVar(m_Name);
return convar->GetString();
}
void CConVar::set_float( float flValue )
{
ConVar *convar = g_pCVar->FindVar(m_Name);
convar->SetValue(flValue);
}
void CConVar::set_int( int iValue )
{
ConVar *convar = g_pCVar->FindVar(m_Name);
convar->SetValue(iValue);
}
void CConVar::set_bool( bool bValue )
{
ConVar *convar = g_pCVar->FindVar(m_Name);
convar->SetValue(bValue);
}
void CConVar::set_string( const char *szValue )
{
ConVar *convar = g_pCVar->FindVar(m_Name);
convar->SetValue(szValue);
}
void CConVar::revert()
{
ConVar *convar = g_pCVar->FindVar(m_Name);
convar->Revert();
}
const char *CConVar::get_default()
{
ConVar *convar = g_pCVar->FindVar(m_Name);
return convar->GetDefault();
}
bool CConVar::has_min()
{
ConVar *convar = g_pCVar->FindVar(m_Name);
float fMin;
return convar->GetMin(fMin);
}
bool CConVar::has_max()
{
ConVar *convar = g_pCVar->FindVar(m_Name);
float fMax;
return convar->GetMax(fMax);
}
float CConVar::get_min_value()
{
ConVar *convar = g_pCVar->FindVar(m_Name);
float fMin;
convar->GetMin(fMin);
return fMin;
}
float CConVar::get_max_value()
{
ConVar *convar = g_pCVar->FindVar(m_Name);
float fMax;
convar->GetMax(fMax);
return fMax;
}
//-----------------------------------------------------------------------------
// CConCommandBase constructors.
//-----------------------------------------------------------------------------
CConCommandBase::CConCommandBase( const char *pName,
const char *pHelpString, int flags )
{
ConCommandBase *command = g_pCVar->FindCommandBase(pName);
if( !command )
{
ConCommandBase *command = new ConCommandBase(pName, strdup(pHelpString), flags);
}
m_Name = pName;
}
CConCommandBase::CConCommandBase( ConCommandBase* pConCommandBase )
{
m_Name = pConCommandBase->GetName();
}
//-----------------------------------------------------------------------------
// CConCommandBase methods.
//-----------------------------------------------------------------------------
bool CConCommandBase::is_command()
{
ConCommandBase* command = g_pCVar->FindCommandBase(m_Name);
return command->IsCommand();
}
bool CConCommandBase::is_registered()
{
ConCommandBase* command = g_pCVar->FindCommandBase(m_Name);
return command->IsRegistered();
}
bool CConCommandBase::is_flag_set( int iFlag )
{
ConCommandBase* command = g_pCVar->FindCommandBase(m_Name);
return command->IsFlagSet(iFlag);
}
void CConCommandBase::add_flags( int iFlags )
{
ConCommandBase* command = g_pCVar->FindCommandBase(m_Name);
command->AddFlags(iFlags);
}
void CConCommandBase::remove_flags( int iFlags )
{
ConCommandBase* command = g_pCVar->FindCommandBase(m_Name);
command->RemoveFlags(iFlags);
}
int CConCommandBase::get_flags()
{
ConCommandBase* command = g_pCVar->FindCommandBase(m_Name);
return command->GetFlags();
}
const char *CConCommandBase::get_name()
{
return m_Name;
}
const char *CConCommandBase::get_help_text()
{
ConCommandBase* command = g_pCVar->FindCommandBase(m_Name);
return command->GetHelpText();
}
//-----------------------------------------------------------------------------
// CCvar methods.
//-----------------------------------------------------------------------------
void CCvar::register_con_command( CConCommandBase *pCommandBase )
{
ConCommandBase* command = g_pCVar->FindCommandBase(pCommandBase->get_name());
g_pCVar->RegisterConCommand(command);
}
void CCvar::unregister_con_command( CConCommandBase *pCommandBase )
{
ConCommandBase* command = g_pCVar->FindCommandBase(pCommandBase->get_name());
g_pCVar->UnregisterConCommand(command);
}
CConCommandBase *CCvar::find_command_base( const char *szName )
{
ConCommandBase *pCommandBase = g_pCVar->FindCommandBase(szName);
if( !pCommandBase )
{
return NULL;
}
CConCommandBase *nCommandBase = new CConCommandBase(pCommandBase);
return nCommandBase;
}
CConVar *CCvar::find_var( const char *szName )
{
ConVar *pConVar = g_pCVar->FindVar(szName);
if( !pConVar )
{
return NULL;
}
CConVar *nConVar = new CConVar(pConVar);
return nConVar;
}