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_python.cpp
More file actions
308 lines (260 loc) · 8.35 KB
/
Copy pathcvar_wrap_python.cpp
File metadata and controls
308 lines (260 loc) · 8.35 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
/**
* =============================================================================
* 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"
#include "modules/export_main.h"
//-----------------------------------------------------------------------------
// Static singletons.
//-----------------------------------------------------------------------------
static CCvar s_ServerCvar;
//-----------------------------------------------------------------------------
// CCvar accessor.
//-----------------------------------------------------------------------------
CCvar* get_cvar_interface()
{
return &s_ServerCvar;
}
//-----------------------------------------------------------------------------
// Exposer functions.
//-----------------------------------------------------------------------------
void export_cvar_interface();
void export_convar();
void export_concommandbase();
void export_flags();
//-----------------------------------------------------------------------------
// Exposes the cvar module.
//-----------------------------------------------------------------------------
DECLARE_SP_MODULE(cvar_c)
{
export_cvar_interface();
export_convar();
export_concommandbase();
export_flags();
}
//-----------------------------------------------------------------------------
// Exposes the CCvar interface.
//-----------------------------------------------------------------------------
void export_cvar_interface()
{
BOOST_ABSTRACT_CLASS( CCvar )
CLASS_METHOD(CCvar,
register_con_command,
"Registers a console command",
args("pCommandBase")
)
CLASS_METHOD(CCvar,
unregister_con_command,
"Unregisters a console command",
args("pCommandBase")
)
CLASS_METHOD(CCvar,
find_command_base,
"Returns a CConCommandBase instance for the given command, if it exists",
args("szName"),
reference_existing_object_policy()
)
CLASS_METHOD(CCvar,
find_var,
"Returns a CConVar instance for the given cvar, if it exists",
args("szName"),
reference_existing_object_policy()
)
BOOST_END_CLASS()
}
//-----------------------------------------------------------------------------
// Exposes the CConVar interface.
//-----------------------------------------------------------------------------
void export_convar()
{
BOOST_CLASS_CONSTRUCTOR(CConVar, const char *)
CLASS_CONSTRUCTOR(const char *, const char *, int)
CLASS_CONSTRUCTOR(const char *, const char *, int, const char *)
CLASS_CONSTRUCTOR(const char *, const char *, int, const char *,
bool, float, bool, float)
CLASS_METHOD(CConVar,
get_help_text,
"Returns the help text for the ConVar"
)
CLASS_METHOD(CConVar,
get_name,
"Returns the name of the ConVar"
)
CLASS_METHOD(CConVar,
is_flag_set,
"Returns whether the given flag is set or not",
args("iFlag")
)
CLASS_METHOD(CConVar,
add_flags,
"Adds the given flags to the ConVar",
args("iFlags")
)
CLASS_METHOD(CConVar,
remove_flags,
"Removes the given flags from the ConVar",
args("iFlags")
)
CLASS_METHOD(CConVar,
get_flags,
"Returns all flags for the ConVar"
)
CLASS_METHOD(CConVar,
is_command,
"Returns whether the ConVar is a command"
)
CLASS_METHOD(CConVar,
get_float,
"Returns the float value of the ConVar"
)
CLASS_METHOD(CConVar,
get_int,
"Returns the integer value of the ConVar"
)
CLASS_METHOD(CConVar,
get_bool,
"Returns the boolean value of the ConVar"
)
CLASS_METHOD(CConVar,
get_string,
"Returns the string value of the ConVar"
)
CLASS_METHOD(CConVar,
set_float,
"Sets the ConVar to the given float value",
args("flValue")
)
CLASS_METHOD(CConVar,
set_int,
"Sets the ConVar to the given integer value",
args("iValue")
)
CLASS_METHOD(CConVar,
set_bool,
"Sets the ConVar to the given boolean value",
args("bValue")
)
CLASS_METHOD(CConVar,
set_string,
"Sets the ConVar to the given string value",
args("szValue")
)
CLASS_METHOD(CConVar,
revert,
"Reverts the ConVar back to its original value"
)
CLASS_METHOD(CConVar,
get_default,
"Returns the original value of the ConVar"
)
CLASS_METHOD(CConVar,
has_min,
"Returns whether the ConVar has a min value"
)
CLASS_METHOD(CConVar,
has_max,
"Returns whether the ConVar has a max value"
)
CLASS_METHOD(CConVar,
get_min_value,
"Returns the minimum float value for the ConVar"
)
CLASS_METHOD(CConVar,
get_max_value,
"Returns the maximum float value for the ConVar"
)
BOOST_END_CLASS()
}
//-----------------------------------------------------------------------------
// Exposes the CConCommandBase interface.
//-----------------------------------------------------------------------------
void export_concommandbase()
{
BOOST_CLASS_CONSTRUCTOR(CConCommandBase, const char *, const char *, int)
CLASS_METHOD(CConCommandBase,
is_command,
"Returns whether the command is actually a command"
)
CLASS_METHOD(CConCommandBase,
is_registered,
"Returns whether the command is registered"
)
CLASS_METHOD(CConCommandBase,
is_flag_set,
"Returns whether the given flag is set for the command",
args("iFlag")
)
CLASS_METHOD(CConCommandBase,
add_flags,
"Adds the given flags to the command",
args("iFlags")
)
CLASS_METHOD(CConCommandBase,
remove_flags,
"Removes the given flags from the command",
args("iFlags")
)
CLASS_METHOD(CConCommandBase,
get_flags,
"Returns all flags for the command"
)
CLASS_METHOD(CConCommandBase,
get_name,
"Returns the command's name"
)
CLASS_METHOD(CConCommandBase,
get_help_text,
"Returns the help text for the command"
)
BOOST_END_CLASS()
}
void export_flags()
{
BOOST_GLOBAL_ATTRIBUTE("FCVAR_NONE", FCVAR_NONE);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_UNREGISTERED", FCVAR_UNREGISTERED);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_DEVELOPMENTONLY", FCVAR_DEVELOPMENTONLY);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_GAMEDLL", FCVAR_GAMEDLL);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_CLIENTDLL", FCVAR_CLIENTDLL);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_HIDDEN", FCVAR_HIDDEN);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_PROTECTED", FCVAR_PROTECTED);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_SPONLY", FCVAR_SPONLY);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_ARCHIVE", FCVAR_ARCHIVE);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_NOTIFY", FCVAR_NOTIFY);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_USERINFO", FCVAR_USERINFO);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_PRINTABLEONLY", FCVAR_PRINTABLEONLY);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_UNLOGGED", FCVAR_UNLOGGED);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_NEVER_AS_STRING", FCVAR_NEVER_AS_STRING);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_REPLICATED", FCVAR_REPLICATED);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_CHEAT", FCVAR_CHEAT);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_DEMO", FCVAR_DEMO);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_DONTRECORD", FCVAR_DONTRECORD);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_NOT_CONNECTED", FCVAR_NOT_CONNECTED);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_ARCHIVE_XBOX", FCVAR_ARCHIVE_XBOX);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_SERVER_CAN_EXECUTE", FCVAR_SERVER_CAN_EXECUTE);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_SERVER_CANNOT_QUERY", FCVAR_SERVER_CANNOT_QUERY);
BOOST_GLOBAL_ATTRIBUTE("FCVAR_CLIENTCMD_CAN_EXECUTE", FCVAR_CLIENTCMD_CAN_EXECUTE);
}