]> icculus.org git repositories - divverent/nexuiz.git/blob - TeamNexuiz/game/gamec/extensions.h
bumps for morphed's teleporter model
[divverent/nexuiz.git] / TeamNexuiz / game / gamec / extensions.h
1 \r
2 //DarkPlaces supported extension list, draft version 1.04\r
3 \r
4 //checkextension function\r
5 //idea: expected by almost everyone\r
6 //darkplaces implementation: LordHavoc\r
7 float(string s) checkextension = #99;\r
8 //description:\r
9 //check if (cvar("pr_checkextension")) before calling this, this is the only\r
10 //guarenteed extension to be present in the extension system, it allows you\r
11 //to check if an extension is available, by name, to check for an extension\r
12 //use code like this:\r
13 //// (it is recommended this code be placed in worldspawn or a worldspawn called function somewhere)\r
14 //if (cvar("pr_checkextension"))\r
15 //if (checkextension("DP_SV_SETCOLOR"))\r
16 //      ext_setcolor = TRUE;\r
17 //from then on you can check ext_setcolor to know if that extension is available\r
18 \r
19 //DP_QC_CVAR_STRING\r
20 //idea: Paul Timofeyev\r
21 //DarkPlaces implementation: Paul Timofeyev, LordHavoc\r
22 //builtin definitions:\r
23 string(string s) cvar_string = #448;\r
24 //description:\r
25 //returns the value of a cvar, as a tempstring.\r
26 \r
27 //DP_QC_TRACE_MOVETYPES\r
28 //idea: LordHavoc\r
29 //darkplaces implementation: id Software\r
30 //constant definitions:\r
31 float MOVE_NORMAL = 0; // same as FALSE\r
32 float MOVE_NOMONSTERS = 1; // same as TRUE\r
33 float MOVE_MISSILE = 2; // save as movement with .movetype == MOVETYPE_FLYMISSILE\r
34 //description:\r
35 //this extension does nothing (do not check for it), it only documents existing MOVE_ values that were never defined in defs.qc, these are passed as the 'nomonsters' parameter to traceline/tracebox\r
36 \r
37 //DP_QC_TRACE_MOVETYPE_WORLDONLY\r
38 //idea: LordHavoc\r
39 //darkplaces implementation: LordHavoc\r
40 //constant definitions:\r
41 float MOVE_WORLDONLY = 3;\r
42 //description:\r
43 //allows traces to hit only world (see DP_QC_TRACE_MOVETYPES for how to use this)\r
44 \r
45 //DP_QC_TRACE_MOVETYPE_HITMODEL\r
46 //idea: LordHavoc\r
47 //darkplaces implementation: LordHavoc\r
48 //constant definitions:\r
49 float MOVE_HITMODEL = 4;\r
50 //description:\r
51 //allows traces to hit alias models (not sprites!) instead of entity boxes (see DP_QC_TRACE_MOVETYPES for how to use this)\r
52 \r
53 // LordHavoc: HIGHLY experimental, do not implement this in other engines\r
54 //DP_CGAME\r
55 //idea: LordHavoc\r
56 //darkplaces implementation: LordHavoc\r
57 //SVC definitions:\r
58 float svc_cgame = 50; // [short] length [bytes] data\r
59 //description:\r
60 //contains network messages to client gamecode.\r
61 \r
62 //DP_CL_LOADSKY\r
63 //idea: Nehahra, LordHavoc\r
64 //darkplaces implementation: LordHavoc\r
65 //client console commands:\r
66 //"loadsky" (parameters: "basename", example: "mtnsun_" would load "mtnsun_up.tga" and "mtnsun_rt.tga" and similar names, use "" to revert to quake sky, note: this is the same as Quake2 skybox naming)\r
67 //description:\r
68 //sets global skybox for the map for this client (can be stuffed to a client by QC), does not hurt much to repeatedly execute this command, please don't use this in mods if it can be avoided (only if changing skybox is REALLY needed, otherwise please use DP_GFX_SKYBOX).\r
69 \r
70 //DP_EF_ADDITIVE\r
71 //idea: LordHavoc\r
72 //darkplaces implementation: LordHavoc\r
73 //effects bit:\r
74 float   EF_ADDITIVE     = 32;\r
75 //description:\r
76 //additive blending when this object is rendered\r
77 \r
78 //DP_EF_BLUE\r
79 //idea: id Software\r
80 //darkplaces implementation: LordHavoc\r
81 //effects bit:\r
82 float   EF_BLUE         = 64;\r
83 //description:\r
84 //entity emits blue light (used for quad)\r
85 \r
86 //DP_EF_FLAME\r
87 //idea: LordHavoc\r
88 //darkplaces implementation: LordHavoc\r
89 //effects bit:\r
90 float   EF_FLAME        = 1024;\r
91 //description:\r
92 //entity is on fire\r
93 \r
94 //DP_EF_FULLBRIGHT\r
95 //idea: LordHavoc\r
96 //darkplaces implementation: LordHavoc\r
97 //effects bit:\r
98 float   EF_FULLBRIGHT   = 512;\r
99 //description:\r
100 //entity is always brightly lit\r
101 \r
102 //DP_EF_NODRAW\r
103 //idea: id Software\r
104 //darkplaces implementation: LordHavoc\r
105 //effects bit:\r
106 float   EF_NODRAW       = 16;\r
107 //description:\r
108 //prevents server from sending entity to client (forced invisible, even if it would have been a light source or other such things)\r
109 \r
110 //DP_EF_RED\r
111 //idea: id Software\r
112 //darkplaces implementation: LordHavoc\r
113 //effects bit:\r
114 float   EF_RED          = 128;\r
115 //description:\r
116 //entity emits red light (used for invulnerability)\r
117 \r
118 //DP_EF_STARDUST\r
119 //idea: MythWorks Inc\r
120 //darkplaces implementation: LordHavoc\r
121 //effects bit:\r
122 float   EF_STARDUST     = 2048;\r
123 //description:\r
124 //entity emits bouncing sparkles in every direction\r
125 \r
126 //entity attributes used for rendering/networking:\r
127 //idea: Nehahra\r
128 //darkplaces implementation: LordHavoc\r
129 //DP_ENT_ALPHA\r
130 //field definition:\r
131 .float alpha;\r
132 //description:\r
133 //controls opacity of the entity, 0.0 is forced to be 1.0 (otherwise everything would be invisible), use -1 if you want to make something invisible, 1.0 is solid (like normal).\r
134 \r
135 //DP_ENT_COLORMOD\r
136 //idea: LordHavoc\r
137 //darkplaces implementation: LordHavoc\r
138 //field definition:\r
139 .vector colormod;\r
140 //description:\r
141 //controls color of the entity, '0 0 0', is forced to be '1 1 1' (otherwise everything would be black), used for tinting objects, for instance using '1 0.6 0.4' on an ogre would give you an orange ogre (order is red green blue), note the colors can go up to '8 8 8' (8x as bright as normal).\r
142 \r
143 //DP_ENT_CUSTOMCOLORMAP\r
144 //idea: LordHavoc\r
145 //darkplaces implementation: LordHavoc\r
146 //description:\r
147 //if .colormap is set to 1024 + pants + shirt * 16, those colors will be used for colormapping the entity, rather than looking up a colormap by player number.\r
148 \r
149 /*\r
150 //NOTE: no longer supported by darkplaces because all entities are delta compressed now\r
151 //DP_ENT_DELTACOMPRESS // no longer supported\r
152 //idea: LordHavoc\r
153 //darkplaces implementation: LordHavoc\r
154 //effects bit:\r
155 float EF_DELTA = 8388608;\r
156 //description:\r
157 //(obsolete) applies delta compression to the network updates of the entity, making updates smaller, this might cause some unreliable behavior in packet loss situations, so it should only be used on numerous (nails/plasma shots/etc) or unimportant objects (gibs/shell casings/bullet holes/etc).\r
158 */\r
159 \r
160 //DP_ENT_EXTERIORMODELTOCLIENT\r
161 //idea: LordHavoc\r
162 //darkplaces implementation: LordHavoc\r
163 //fields:\r
164 .entity exteriormodeltoclient;\r
165 //description:\r
166 //the entity is visible to all clients with one exception: if the specified client is using first person view (not using chase_active) the entity will not be shown.\r
167 \r
168 //DP_ENT_GLOW\r
169 //idea: LordHavoc\r
170 //darkplaces implementation: LordHavoc\r
171 //field definitions:\r
172 .float glow_color;\r
173 .float glow_size;\r
174 .float glow_trail;\r
175 //description:\r
176 //customizable glowing light effect on the entity, glow_color is a paletted (8bit) color in the range 0-255 (note: 0 and 254 are white), glow_size is 0 or higher (up to the engine what limit to cap it to, darkplaces imposes a 1020 limit), if glow_trail is true it will leave a trail of particles of the same color as the light.\r
177 \r
178 //DP_ENT_LOWPRECISION\r
179 //idea: LordHavoc\r
180 //darkplaces implementation: LordHavoc\r
181 //effects bit:\r
182 float EF_LOWPRECISION = 4194304;\r
183 //description:\r
184 //uses low quality origin coordinates, reducing network traffic compared to the default high precision, intended for numerous objects (projectiles/gibs/bullet holes/etc).\r
185 \r
186 //DP_ENT_SCALE\r
187 //idea: LordHavoc\r
188 //darkplaces implementation: LordHavoc\r
189 //field definitions:\r
190 .float scale;\r
191 //description:\r
192 //controls rendering scale of the object, 0 is forced to be 1, darkplaces uses 1/16th accuracy and a limit of 15.9375, can be used to make an object larger or smaller.\r
193 \r
194 //DP_ENT_VIEWMODEL\r
195 //idea: LordHavoc\r
196 //darkplaces implementation: LordHavoc\r
197 //field definitions:\r
198 .entity viewmodelforclient;\r
199 //description:\r
200 //this is a very special capability, attachs the entity to the view of the client specified, origin and angles become relative to the view of that client, all effects can be used (multiple skins on a weapon model etc)...  the entity is not visible to any other client.\r
201 \r
202 //DP_GFX_FOG\r
203 //idea: LordHavoc\r
204 //darkplaces implementation: LordHavoc\r
205 //worldspawn fields:\r
206 //"fog" (parameters: "density red green blue", example: "0.1 0.3 0.3 0.3")\r
207 //description:\r
208 //global fog for the map, can not be changed by QC\r
209 \r
210 //DP_GFX_SKYBOX\r
211 //idea: LordHavoc\r
212 //darkplaces implementation: LordHavoc\r
213 //worldspawn fields:\r
214 //"sky" (parameters: "basename", example: "mtnsun_" would load "mtnsun_up.tga" and "mtnsun_rt.tga" and similar names, note: "sky" is also used the same way by Quake2)\r
215 //description:\r
216 //global skybox for the map, can not be changed by QC\r
217 \r
218 //DP_GFX_EXTERNALTEXTURES\r
219 //idea: LordHavoc\r
220 //darkplaces implementation: LordHavoc\r
221 //description:\r
222 //loads external textures found in various directories (tenebrae compatible)...\r
223 /*\r
224 in all examples .tga is merely the base texture, it can be any of these:\r
225 .tga (base texture)\r
226 _glow.tga (fullbrights or other glowing overlay stuff, NOTE: this is done using additive blend, not alpha)\r
227 _pants.tga (pants overlay for colormapping on models, this should be shades of grey (it is tinted by pants color) and black wherever the base texture is not black, as this is an additive blend)\r
228 _shirt.tga (same idea as pants, but for shirt color)\r
229 _diffuse.tga (this may be used instead of base texture for per pixel lighting)\r
230 _gloss.tga (specular texture for per pixel lighting, note this can be in color (tenebrae only supports greyscale))\r
231 _norm.tga (normalmap texture for per pixel lighting)\r
232 _bump.tga (bumpmap, converted to normalmap at load time, supported only for reasons of tenebrae compatibility)\r
233 _luma.tga (same as _glow but supported only for reasons of tenebrae compatibility)\r
234 \r
235 due to glquake's incomplete Targa(r) loader, this section describes\r
236 required Targa(r) features support:\r
237 types:\r
238 type 1 (uncompressed 8bit paletted with 24bit/32bit palette)\r
239 type 2 (uncompressed 24bit/32bit true color, glquake supported this)\r
240 type 3 (uncompressed 8bit greyscale)\r
241 type 9 (RLE compressed 8bit paletted with 24bit/32bit palette)\r
242 type 10 (RLE compressed 24bit/32bit true color, glquake supported this)\r
243 type 11 (RLE compressed 8bit greyscale)\r
244 attribute bit 0x20 (Origin At Top Left, top to bottom, left to right)\r
245 \r
246 image formats guarenteed to be supported: tga, pcx, lmp\r
247 image formats that are optional: png, jpg\r
248 \r
249 mdl/spr/spr32 examples:\r
250 skins are named _A (A being a number) and skingroups are named like _A_B\r
251 these act as suffixes on the model name...\r
252 example names for skin _2_1 of model "progs/armor.mdl":\r
253 game/override/progs/armor.mdl_2_1.tga\r
254 game/textures/progs/armor.mdl_2_1.tga\r
255 game/progs/armor.mdl_2_1.tga\r
256 example names for skin _0 of the model "progs/armor.mdl":\r
257 game/override/progs/armor.mdl_0.tga\r
258 game/textures/progs/armor.mdl_0.tga\r
259 game/progs/armor.mdl_0.tga\r
260 note that there can be more skins files (of the _0 naming) than the mdl\r
261 contains, this is only useful to save space in the .mdl file if classic quake\r
262 compatibility is not a concern.\r
263 \r
264 bsp/md2/md3 examples:\r
265 example names for the texture "quake" of model "maps/start.bsp":\r
266 game/override/quake.tga\r
267 game/textures/quake.tga\r
268 game/progs/quake.tga\r
269 \r
270 sbar/menu/console textures: for example the texture "conchars" (console font) in gfx.wad\r
271 game/override/gfx/conchars.tga\r
272 game/textures/gfx/conchars.tga\r
273 game/gfx/conchars.tga\r
274 */\r
275 \r
276 //DP_GFX_QUAKE3MODELTAGS\r
277 //idea: id Software\r
278 //darkplaces implementation: LordHavoc\r
279 //field definitions:\r
280 .entity tag_entity; // entity this is attached to (call setattachment to set this)\r
281 .float tag_index; // which tag on that entity (0 is relative to the entity, > 0 is an index into the tags on the model if it has any) (call setattachment to set this)\r
282 //builtin definitions:\r
283 void(entity e, entity tagentity, string tagname) setattachment = #443; // attachs e to a tag on tagentity (note: use "" to attach to entity origin/angles instead of a tag)\r
284 //description:\r
285 //allows entities to be visually attached to model tags (which follow animations perfectly) on other entities, for example attaching a weapon to a player's hand, or upper body attached to lower body, allowing it to change angles and frame separately (note: origin and angles are relative to the tag, use '0 0 0' for both if you want it to follow exactly, this is similar to viewmodelforclient's behavior).\r
286 //note 2: if the tag is not found, it defaults to "" (attach to origin/angles of entity)\r
287 //note 3: attaching to world turns off attachment\r
288 //note 4: the entity that this is attached to must be visible for this to work\r
289 \r
290 //DP_GFX_SKINFILES\r
291 //idea: LordHavoc\r
292 //darkplaces implementation: LordHavoc\r
293 //description:\r
294 //alias models (mdl, md2, md3) can have .skin files to replace conventional texture naming, these have a naming format such as:\r
295 //progs/test.md3_0.skin\r
296 //progs/test.md3_1.skin\r
297 //...\r
298 //\r
299 //these files contain replace commands (replace meshname shadername), example:\r
300 //replace "helmet" "progs/test/helmet1.tga" // this is a mesh shader replacement\r
301 //replace "teamstripes" "progs/test/redstripes.tga"\r
302 //replace "visor" "common/nodraw" // this makes the visor mesh invisible\r
303 ////it is not possible to rename tags using this format\r
304 //\r
305 //Or the Quake3 syntax (100% compatible with Quake3's .skin files):\r
306 //helmet,progs/test/helmet1.tga // this is a mesh shader replacement\r
307 //teamstripes,progs/test/redstripes.tga\r
308 //visor,common/nodraw // this makes the visor mesh invisible\r
309 //tag_camera, // this defines that the first tag in the model is called tag_camera\r
310 //tag_test, // this defines that the second tag in the model is called tag_test\r
311 //\r
312 //any names that are not replaced are automatically show up as a grey checkerboard to indicate the error status, and "common/nodraw" is a special case that is invisible.\r
313 //this feature is intended to allow multiple skin sets on md3 models (which otherwise only have one skin set).\r
314 //other commands might be added someday but it is not expected.\r
315 \r
316 //DP_HALFLIFE_MAP\r
317 //idea: LordHavoc\r
318 //darkplaces implementation: LordHavoc\r
319 //description:\r
320 //simply indicates that the engine supports HalfLife maps (BSP version 30, NOT the QER RGBA ones which are also version 30).\r
321 \r
322 //DP_HALFLIFE_MAP_CVAR\r
323 //idea: LordHavoc\r
324 //darkplaces implementation: LordHavoc\r
325 //cvars:\r
326 //halflifebsp 0/1\r
327 //description:\r
328 //engine sets this cvar when loading a map to indicate if it is halflife format or not.\r
329 \r
330 //DP_INPUTBUTTONS\r
331 //idea: LordHavoc\r
332 //darkplaces implementation: LordHavoc\r
333 //field definitions:\r
334 .float button3;\r
335 .float button4;\r
336 .float button5;\r
337 .float button6;\r
338 .float button7;\r
339 .float button8;\r
340 //description:\r
341 //set to the state of the +button3, +button4, +button5, +button6, +button7, and +button8 buttons from the client, this does not involve protocol changes (the extra 6 button bits were simply not used).\r
342 \r
343 //DP_MONSTERWALK\r
344 //idea: LordHavoc\r
345 //darkplaces implementation: LordHavoc\r
346 //description:\r
347 //MOVETYPE_WALK is permitted on non-clients, so bots can move smoothly, run off ledges, etc, just like a real player.\r
348 \r
349 //DP_MOVETYPEBOUNCEMISSILE\r
350 //idea: id Software\r
351 //darkplaces implementation: id Software\r
352 //movetype definitions:\r
353 float MOVETYPE_BOUNCEMISSILE = 11;\r
354 //description:\r
355 //MOVETYPE_BOUNCE but without gravity, and with full reflection (no speed loss like grenades have), in other words - bouncing laser bolts.\r
356 \r
357 //DP_MOVETYPEFOLLOW\r
358 //idea: id Software, LordHavoc (redesigned)\r
359 //darkplaces implementation: LordHavoc\r
360 //movetype definitions:\r
361 float MOVETYPE_FOLLOW = 12;\r
362 //description:\r
363 //MOVETYPE_FOLLOW implemented, this uses existing entity fields in unusual ways:\r
364 //aiment - the entity this is attached to.\r
365 //punchangle - the original angles when the follow began.\r
366 //view_ofs - the relative origin (note that this is un-rotated by punchangle, and that is actually the only purpose of punchangle).\r
367 //v_angle - the relative angles.\r
368 //here's an example of how you would set a bullet hole sprite to follow a bmodel it was created on, even if the bmodel rotates:\r
369 //hole.movetype = MOVETYPE_FOLLOW; // make the hole follow\r
370 //hole.solid = SOLID_NOT; // MOVETYPE_FOLLOW is always non-solid\r
371 //hole.aiment = bmodel; // make the hole follow bmodel\r
372 //hole.punchangle = bmodel.angles; // the original angles of bmodel\r
373 //hole.view_ofs = hole.origin - bmodel.origin; // relative origin\r
374 //hole.v_angle = hole.angles - bmodel.angles; // relative angles\r
375 \r
376 //DP_QC_CHANGEPITCH\r
377 //idea: id Software\r
378 //darkplaces implementation: id Software\r
379 //field definitions:\r
380 .float idealpitch;\r
381 .float pitch_speed;\r
382 //builtin definitions:\r
383 void(entity ent) changepitch = #63;\r
384 //description:\r
385 //equivilant to changeyaw, ent is normally self. (this was a Q2 builtin)\r
386 \r
387 //DP_QC_COPYENTITY\r
388 //idea: LordHavoc\r
389 //darkplaces implementation: LordHavoc\r
390 //builtin definitions:\r
391 void(entity from, entity to) copyentity = #400;\r
392 //description:\r
393 //copies all data in the entity to another entity.\r
394 \r
395 //DP_QC_ETOS\r
396 //idea: id Software\r
397 //darkplaces implementation: id Software\r
398 //builtin definitions:\r
399 string(entity ent) etos = #65;\r
400 //description:\r
401 //lists all of the entity's fields into a string (similar to edict command in console). (this was a Q2 builtin)\r
402 \r
403 //DP_QC_FINDCHAIN\r
404 //idea: LordHavoc\r
405 //darkplaces implementation: LordHavoc\r
406 //builtin definitions:\r
407 entity(.string fld, string match) findchain = #402;\r
408 //description:\r
409 //similar to find() but returns a chain of entities like findradius.\r
410 \r
411 //DP_QC_FINDCHAINFLOAT\r
412 //idea: LordHavoc\r
413 //darkplaces implementation: LordHavoc\r
414 //builtin definitions:\r
415 entity(.entity fld, entity match) findchainentity = #403;\r
416 entity(.float fld, float match) findchainfloat = #403;\r
417 //description:\r
418 //similar to findentity()/findfloat() but returns a chain of entities like findradius.\r
419 \r
420 //DP_QC_FINDFLOAT\r
421 //idea: LordHavoc\r
422 //darkplaces implementation: LordHavoc\r
423 //builtin definitions:\r
424 entity(entity start, .entity fld, entity match) findentity = #98;\r
425 entity(entity start, .float fld, float match) findfloat = #98;\r
426 //description:\r
427 //finds an entity or float field value, similar to find(), but for entity and float fields.\r
428 \r
429 //DP_QC_GETLIGHT\r
430 //idea: LordHavoc\r
431 //darkplaces implementation: LordHavoc\r
432 //builtin definitions:\r
433 vector(vector org) getlight = #92;\r
434 //description:\r
435 //returns the lighting at the requested location (in color), 0-255 range (can exceed 255).\r
436 \r
437 //DP_QC_GETSURFACE\r
438 //idea: LordHavoc\r
439 //darkplaces implementation: LordHavoc\r
440 //builtin definitions:\r
441 float(entity e, float s) getsurfacenumpoints = #434;\r
442 vector(entity e, float s, float n) getsurfacepoint = #435;\r
443 vector(entity e, float s) getsurfacenormal = #436;\r
444 string(entity e, float s) getsurfacetexture = #437;\r
445 float(entity e, vector p) getsurfacenearpoint = #438;\r
446 vector(entity e, float s, vector p) getsurfaceclippedpoint = #439;\r
447 //description:\r
448 //functions to query surface information.\r
449 \r
450 //DP_QC_MINMAXBOUND\r
451 //idea: LordHavoc\r
452 //darkplaces implementation: LordHavoc\r
453 //builtin definitions:\r
454 float(float a, float b) min = #94;\r
455 float(float a, float b, float c) min3 = #94;\r
456 float(float a, float b, float c, float d) min4 = #94;\r
457 float(float a, float b, float c, float d, float e) min5 = #94;\r
458 float(float a, float b, float c, float d, float e, float f) min6 = #94;\r
459 float(float a, float b, float c, float d, float e, float f, float g) min7 = #94;\r
460 float(float a, float b, float c, float d, float e, float f, float g, float h) min8 = #94;\r
461 float(float a, float b) max = #95;\r
462 float(float a, float b, float c) max3 = #95;\r
463 float(float a, float b, float c, float d) max4 = #95;\r
464 float(float a, float b, float c, float d, float e) max5 = #95;\r
465 float(float a, float b, float c, float d, float e, float f) max6 = #95;\r
466 float(float a, float b, float c, float d, float e, float f, float g) max7 = #95;\r
467 float(float a, float b, float c, float d, float e, float f, float g, float h) max8 = #95;\r
468 float(float minimum, float val, float maximum) bound = #96;\r
469 //description:\r
470 //min returns the lowest of all the supplied numbers.\r
471 //max returns the highest of all the supplied numbers.\r
472 //bound clamps the value to the range and returns it.\r
473 \r
474 //DP_QC_RANDOMVEC\r
475 //idea: LordHavoc\r
476 //darkplaces implementation: LordHavoc\r
477 //builtin definitions:\r
478 vector() randomvec = #91;\r
479 //description:\r
480 //returns a vector of length < 1, much quicker version of this QC: do {v_x = random();v_y = random();v_z = random();} while(vlen(v) > 1)\r
481 \r
482 //DP_QC_SINCOSSQRTPOW\r
483 //idea: id Software, LordHavoc\r
484 //darkplaces implementation: id Software, LordHavoc\r
485 //builtin definitions:\r
486 float(float val) sin = #60;\r
487 float(float val) cos = #61;\r
488 float(float val) sqrt = #62;\r
489 float(float a, float b) pow = #97;\r
490 //description:\r
491 //useful math functions, sine of val, cosine of val, square root of val, and raise a to power b, respectively.\r
492 \r
493 //DP_QC_TRACEBOX\r
494 //idea: id Software\r
495 //darkplaces implementation: id Software\r
496 //builtin definitions:\r
497 void(vector v1, vector min, vector max, vector v2, float nomonsters, entity forent) tracebox = #90;\r
498 //description:\r
499 //similar to traceline but much more useful, traces a box of the size specified (technical note: currently the hull size can only be one of the sizes used in the map for bmodel collisions, entity collisions will pay attention to the exact size specified however, this is a collision code limitation in quake itself, and will be fixed eventually).\r
500 \r
501 //DP_QC_TRACETOSS\r
502 //idea: id Software\r
503 //darkplaces implementation: id Software\r
504 //builtin definitions:\r
505 void(entity ent, entity ignore) tracetoss = #64;\r
506 //description:\r
507 //simulates movement of the entity as if it is MOVETYPE_TOSS and starting with it's current state (location, velocity, etc), returns relevant trace_ variables (trace_fraction is always 0, all other values are supported - trace_ent, trace_endpos, trace_plane_normal), does not actually alter the entity.\r
508 \r
509 //DP_QC_VECTORVECTORS\r
510 //idea: LordHavoc\r
511 //darkplaces implementation: LordHavoc\r
512 //builtin definitions:\r
513 void(vector dir) vectorvectors = #432;\r
514 //description:\r
515 //creates v_forward, v_right, and v_up vectors given a forward vector, similar to makevectors except it takes a forward direction vector instead of angles.\r
516 \r
517 //DP_QUAKE2_MODEL\r
518 //idea: quake community\r
519 //darkplaces implementation: LordHavoc\r
520 //description:\r
521 //shows that the engine supports Quake2 .md2 files.\r
522 \r
523 //DP_QUAKE3_MODEL\r
524 //idea: quake community\r
525 //darkplaces implementation: LordHavoc\r
526 //description:\r
527 //shows that the engine supports Quake3 .md3 files.\r
528 \r
529 //DP_REGISTERCVAR\r
530 //idea: LordHavoc\r
531 //darkplaces implementation: LordHavoc\r
532 //builtin definitions:\r
533 float(string name, string value) registercvar = #93;\r
534 //description:\r
535 //adds a new console cvar to the server console (in singleplayer this is the player's console), the cvar exists until the mod is unloaded or the game quits.\r
536 \r
537 //DP_SOLIDCORPSE\r
538 //idea: LordHavoc\r
539 //darkplaces implementation: LordHavoc\r
540 //solid definitions:\r
541 float SOLID_CORPSE = 5;\r
542 //description:\r
543 //the entity will not collide with SOLID_CORPSE and SOLID_SLIDEBOX entities (and likewise they will not collide with it), this is useful if you want dead bodies that are shootable but do not obstruct movement by players and monsters, note that if you traceline with a SOLID_SLIDEBOX entity as the ignoreent, it will ignore SOLID_CORPSE entities, this is desirable for visibility and movement traces, but not for bullets, for the traceline to hit SOLID_CORPSE you must temporarily force the player (or whatever) to SOLID_BBOX and then restore to SOLID_SLIDEBOX after the traceline.\r
544 \r
545 //DP_SPRITE32\r
546 //idea: LordHavoc\r
547 //darkplaces implementation: LordHavoc\r
548 //description:\r
549 //the engine supports .spr32 sprites.\r
550 \r
551 //DP_SV_BOTCLIENT\r
552 //idea: LordHavoc\r
553 //darkplaces implementation: LordHavoc\r
554 //constants:\r
555 float CLIENTTYPE_DISCONNECTED = 0;\r
556 float CLIENTTYPE_REAL = 1;\r
557 float CLIENTTYPE_BOT = 2;\r
558 float CLIENTTYPE_NOTACLIENT = 3;\r
559 //builtin definitions:\r
560 entity() spawnclient = #454; // like spawn but for client slots (also calls relevant connect/spawn functions), returns world if no clients available\r
561 float(entity clent) clienttype = #455; // returns one of the CLIENTTYPE_* constants\r
562 void(entity clent) dropclient = #453;\r
563 //description:\r
564 //spawns a client with no network connection, to allow bots to use client slots with no hacks.\r
565 //How to use:\r
566 /*\r
567         // to spawn a bot\r
568         local entity oldself;\r
569         oldself = self;\r
570         self = spawnclient();\r
571         if (!self)\r
572         {\r
573                 bprint("Can not add bot, server full.\n");\r
574                 self = oldself;\r
575                 return;\r
576         }\r
577         self.netname = "Yoyobot";\r
578         self.clientcolors = 12 * 16 + 4; // yellow (12) shirt and red (4) pants\r
579         ClientConnect();\r
580         PutClientInServer();\r
581         self = oldself;\r
582 \r
583         // to remove all bots\r
584         local entity head;\r
585         head = find(world, classname, "player");\r
586         while (head)\r
587         {\r
588                 if (clienttype(head) == CLIENTTYPE_BOT)\r
589                         dropclient(head);\r
590                 head = find(head, classname, "player");\r
591         }\r
592 \r
593         // to identify if a client is a bot (for example in PlayerPreThink)\r
594         if (clienttype(self) == CLIENTTYPE_BOT)\r
595                 botthink();\r
596 */\r
597 //see also DP_SV_CLIENTCOLORS DP_SV_CLIENTNAME DP_SV_DROPCLIENT\r
598 //How it works:\r
599 //creates a new client, calls SetNewParms and stores the parms, and returns the client.\r
600 //this intentionally does not call SV_SendServerinfo to allow the QuakeC a chance to set the netname and clientcolors fields before actually spawning the bot by calling ClientConnect and PutClientInServer manually\r
601 //on level change ClientConnect and PutClientInServer are called by the engine to spawn in the bot (this is why clienttype() exists to tell you on the next level what type of client this is).\r
602 //parms work the same on bot clients as they do on real clients, and do carry from level to level\r
603 \r
604 //DP_SV_CLIENTCOLORS\r
605 //idea: LordHavoc\r
606 //darkplaces implementation: LordHavoc\r
607 .float clientcolors; // colors of the client (format: pants + shirt * 16)\r
608 //description:\r
609 //allows qc to read and modify the client colors associated with a client entity (not particularly useful on other entities), and automatically sends out any appropriate network updates if changed\r
610 \r
611 //DP_SV_CLIENTNAME\r
612 //idea: LordHavoc\r
613 //darkplaces implementation: LordHavoc\r
614 //allows qc to modify the client's .netname, and automatically sends out any appropriate network updates if changed\r
615 \r
616 //DP_SV_DRAWONLYTOCLIENT\r
617 //idea: LordHavoc\r
618 //darkplaces implementation: LordHavoc\r
619 //field definitions:\r
620 .entity drawonlytoclient;\r
621 //description:\r
622 //the entity is only visible to the specified client.\r
623 \r
624 //DP_SV_EFFECT\r
625 //idea: LordHavoc\r
626 //darkplaces implementation: LordHavoc\r
627 //builtin definitions:\r
628 void(vector org, string modelname, float startframe, float endframe, float framerate) effect = #404;\r
629 //SVC definitions:\r
630 //float svc_effect = #52; // [vector] org [byte] modelindex [byte] startframe [byte] framecount [byte] framerate\r
631 //float svc_effect2 = #53; // [vector] org [short] modelindex [byte] startframe [byte] framecount [byte] framerate\r
632 //description:\r
633 //clientside playback of simple custom sprite effects (explosion sprites, etc).\r
634 \r
635 //DP_SV_NODRAWTOCLIENT\r
636 //idea: LordHavoc\r
637 //darkplaces implementation: LordHavoc\r
638 //field definitions:\r
639 .entity nodrawtoclient;\r
640 //description:\r
641 //the entity is not visible to the specified client.\r
642 \r
643 //DP_SV_PLAYERPHYSICS\r
644 //idea: LordHavoc\r
645 //darkplaces implementation: LordHavoc\r
646 //field definitions:\r
647 .vector movement;\r
648 //engine-called QC prototypes:\r
649 //void() SV_PlayerPhysics;\r
650 //description:\r
651 //.movement vector contains the movement input from the player, allowing QC to do as it wishs with the input, and SV_PlayerPhysics will completely replace the player physics if present (works for all MOVETYPE's), see darkplaces mod source for example of this function (in playermovement.qc, adds HalfLife ladders support, as well as acceleration/deceleration while airborn (rather than the quake sudden-stop while airborn), and simplifies the physics a bit)\r
652 \r
653 //DP_SV_SETCOLOR\r
654 //idea: LordHavoc\r
655 //darkplaces implementation: LordHavoc\r
656 //builtin definitions:\r
657 void(entity ent, float colors) setcolor = #401;\r
658 //engine called QC functions (optional):\r
659 //void(float color) SV_ChangeTeam;\r
660 //description:\r
661 //setcolor sets the color on a client and updates internal color information accordingly (equivilant to stuffing a "color" command but immediate)\r
662 //SV_ChangeTeam is called by the engine whenever a "color" command is recieved, it may decide to do anything it pleases with the color passed by the client, including rejecting it (by doing nothing), or calling setcolor to apply it, preventing team changes is one use for this.\r
663 //the color format is pants + shirt * 16 (0-255 potentially)\r
664 \r
665 //DP_SV_SLOWMO\r
666 //idea: LordHavoc\r
667 //darkplaces implementation: LordHavoc\r
668 //cvars:\r
669 //"slowmo" (0+, default 1)\r
670 //description:\r
671 //sets the time scale of the server, mainly intended for use in singleplayer by the player, however potentially useful for mods, so here's an extension for it.\r
672 //range is 0 to infinite, recommended values to try are 0.1 (very slow, 10% speed), 1 (normal speed), 5 (500% speed).\r
673 \r
674 //DP_TE_BLOOD\r
675 //idea: LordHavoc\r
676 //darkplaces implementation: LordHavoc\r
677 //builtin definitions:\r
678 void(vector org, vector velocity, float howmany) te_blood = #405;\r
679 //temp entity definitions:\r
680 float TE_BLOOD = 50;\r
681 //protocol:\r
682 //vector origin\r
683 //byte xvelocity (-128 to +127)\r
684 //byte yvelocity (-128 to +127)\r
685 //byte zvelocity (-128 to +127)\r
686 //byte count (0 to 255, how much blood)\r
687 //description:\r
688 //creates a blood effect.\r
689 \r
690 //DP_TE_BLOODSHOWER\r
691 //idea: LordHavoc\r
692 //darkplaces implementation: LordHavoc\r
693 //builtin definitions:\r
694 void(vector mincorner, vector maxcorner, float explosionspeed, float howmany) te_bloodshower = #406;\r
695 //temp entity definitions:\r
696 //float TE_BLOODSHOWER = 52;\r
697 //protocol:\r
698 //vector mins (minimum corner of the cube)\r
699 //vector maxs (maximum corner of the cube)\r
700 //coord explosionspeed (velocity of blood particles flying out of the center)\r
701 //short count (number of blood particles)\r
702 //description:\r
703 //creates an exploding shower of blood, for making gibbings more convincing.\r
704 \r
705 //DP_TE_CUSTOMFLASH\r
706 //idea: LordHavoc\r
707 //darkplaces implementation: LordHavoc\r
708 //builtin definitions:\r
709 void(vector org, float radius, float lifetime, vector color) te_customflash = #417;\r
710 //temp entity definitions:\r
711 //float TE_CUSTOMFLASH = 73;\r
712 //protocol:\r
713 //vector origin\r
714 //byte radius ((MSG_ReadByte() + 1) * 8, meaning 8-2048 unit radius)\r
715 //byte lifetime ((MSG_ReadByte() + 1) / 256.0, meaning approximately 0-1 second lifetime)\r
716 //byte red (0.0 to 1.0 converted to 0-255)\r
717 //byte green (0.0 to 1.0 converted to 0-255)\r
718 //byte blue (0.0 to 1.0 converted to 0-255)\r
719 //description:\r
720 //creates a customized light flash.\r
721 \r
722 //DP_TE_EXPLOSIONRGB\r
723 //idea: LordHavoc\r
724 //darkplaces implementation: LordHavoc\r
725 //builtin definitions:\r
726 void(vector org, vector color) te_explosionrgb = #407;\r
727 //temp entity definitions:\r
728 //float TE_EXPLOSIONRGB = 53;\r
729 //protocol:\r
730 //vector origin\r
731 //byte red (0.0 to 1.0 converted to 0 to 255)\r
732 //byte green (0.0 to 1.0 converted to 0 to 255)\r
733 //byte blue (0.0 to 1.0 converted to 0 to 255)\r
734 //description:\r
735 //creates a colored explosion effect.\r
736 \r
737 //DP_TE_FLAMEJET\r
738 //idea: LordHavoc\r
739 //darkplaces implementation: LordHavoc\r
740 //temp entity definitions:\r
741 float TE_FLAMEJET = 74;\r
742 //protocol:\r
743 //vector origin\r
744 //vector velocity\r
745 //byte count (0 to 255, how many flame particles)\r
746 //description:\r
747 //creates a single puff of flame particles.  (not very useful really)\r
748 \r
749 //DP_TE_PARTICLECUBE\r
750 //idea: LordHavoc\r
751 //darkplaces implementation: LordHavoc\r
752 //builtin definitions:\r
753 void(vector mincorner, vector maxcorner, vector vel, float howmany, float color, float gravityflag, float randomveljitter) te_particlecube = #408;\r
754 //temp entity definitions:\r
755 //float TE_PARTICLECUBE = 54;\r
756 //protocol:\r
757 //vector mins (minimum corner of the cube)\r
758 //vector maxs (maximum corner of the cube)\r
759 //vector velocity\r
760 //short count\r
761 //byte color (palette color)\r
762 //byte gravity (TRUE or FALSE, FIXME should this be a scaler instead?)\r
763 //coord randomvel (how much to jitter the velocity)\r
764 //description:\r
765 //creates a cloud of particles, useful for forcefields but quite customizable.\r
766 \r
767 //DP_TE_PARTICLERAIN\r
768 //idea: LordHavoc\r
769 //darkplaces implementation: LordHavoc\r
770 //builtin definitions:\r
771 void(vector mincorner, vector maxcorner, vector vel, float howmany, float color) te_particlerain = #409;\r
772 //temp entity definitions:\r
773 //float TE_PARTICLERAIN = 55;\r
774 //protocol:\r
775 //vector mins (minimum corner of the cube)\r
776 //vector maxs (maximum corner of the cube)\r
777 //vector velocity (velocity of particles)\r
778 //short count (number of particles)\r
779 //byte color (8bit palette color)\r
780 //description:\r
781 //creates a shower of rain, the rain will appear either at the top (if falling down) or bottom (if falling up) of the cube.\r
782 \r
783 //DP_TE_PARTICLESNOW\r
784 //idea: LordHavoc\r
785 //darkplaces implementation: LordHavoc\r
786 //builtin definitions:\r
787 void(vector mincorner, vector maxcorner, vector vel, float howmany, float color) te_particlesnow = #410;\r
788 //temp entity definitions:\r
789 //float TE_PARTICLERAIN = 56;\r
790 //protocol:\r
791 //vector mins (minimum corner of the cube)\r
792 //vector maxs (maximum corner of the cube)\r
793 //vector velocity (velocity of particles)\r
794 //short count (number of particles)\r
795 //byte color (8bit palette color)\r
796 //description:\r
797 //creates a shower of snow, the snow will appear either at the top (if falling down) or bottom (if falling up) of the cube, low velocities are advisable for convincing snow.\r
798 \r
799 //DP_TE_QUADEFFECTS1\r
800 //idea: LordHavoc\r
801 //darkplaces implementation: LordHavoc\r
802 //builtin definitions:\r
803 void(vector org) te_gunshotquad = #412;\r
804 void(vector org) te_spikequad = #413;\r
805 void(vector org) te_superspikequad = #414;\r
806 void(vector org) te_explosionquad = #415;\r
807 //temp entity definitions:\r
808 //float   TE_GUNSHOTQUAD  = 57; // [vector] origin\r
809 //float   TE_SPIKEQUAD    = 58; // [vector] origin\r
810 //float   TE_SUPERSPIKEQUAD = 59; // [vector] origin\r
811 //float   TE_EXPLOSIONQUAD = 70; // [vector] origin\r
812 //protocol:\r
813 //vector origin\r
814 //description:\r
815 //all of these just take a location, and are equivilant in function (but not appearance :) to the original TE_GUNSHOT, etc.\r
816 \r
817 //DP_TE_SMALLFLASH\r
818 //idea: LordHavoc\r
819 //darkplaces implementation: LordHavoc\r
820 //builtin definitions:\r
821 void(vector org) te_smallflash = #416;\r
822 //temp entity definitions:\r
823 //float TE_SMALLFLASH = 72;\r
824 //protocol:\r
825 //vector origin\r
826 //description:\r
827 //creates a small light flash (radius 200, time 0.2).\r
828 \r
829 //DP_TE_SPARK\r
830 //idea: LordHavoc\r
831 //darkplaces implementation: LordHavoc\r
832 //builtin definitions:\r
833 void(vector org, vector vel, float howmany) te_spark = #411;\r
834 //temp entity definitions:\r
835 //float TE_SPARK = 51;\r
836 //protocol:\r
837 //vector origin\r
838 //byte xvelocity (-128 to 127)\r
839 //byte yvelocity (-128 to 127)\r
840 //byte zvelocity (-128 to 127)\r
841 //byte count (number of sparks)\r
842 //description:\r
843 //creates a shower of sparks and a smoke puff.\r
844 \r
845 //DP_TE_STANDARDEFFECTBUILTINS\r
846 //idea: LordHavoc\r
847 //darkplaces implementation: LordHavoc\r
848 //builtin definitions:\r
849 void(vector org) te_gunshot = #418;\r
850 void(vector org) te_spike = #419;\r
851 void(vector org) te_superspike = #420;\r
852 void(vector org) te_explosion = #421;\r
853 void(vector org) te_tarexplosion = #422;\r
854 void(vector org) te_wizspike = #423;\r
855 void(vector org) te_knightspike = #424;\r
856 void(vector org) te_lavasplash = #425;\r
857 void(vector org) te_teleport = #426;\r
858 void(vector org, float color) te_explosion2 = #427;\r
859 void(entity own, vector start, vector end) te_lightning1 = #428;\r
860 void(entity own, vector start, vector end) te_lightning2 = #429;\r
861 void(entity own, vector start, vector end) te_lightning3 = #430;\r
862 void(entity own, vector start, vector end) te_beam = #431;\r
863 //description:\r
864 //to make life easier on mod coders.\r
865 \r
866 //DP_TE_PLASMABURN\r
867 //idea: LordHavoc\r
868 //darkplaces implementation: LordHavoc\r
869 //builtin definitions:\r
870 void(vector org) te_plasmaburn = #433;\r
871 //temp entity definitions:\r
872 //float TE_PLASMABURN = 75;\r
873 //protocol:\r
874 //vector origin\r
875 //description:\r
876 //creates a small light flash (radius 200, time 0.2) and marks the walls.\r
877 \r
878 //DP_VIEWZOOM\r
879 //idea: LordHavoc\r
880 //darkplaces implementation: LordHavoc\r
881 //field definitions:\r
882 .float viewzoom;\r
883 //description:\r
884 //scales fov and sensitivity of player, valid range is 0 to 1 (intended for sniper rifle zooming, and such)\r
885 \r
886 //FRIK_FILE\r
887 //idea: FrikaC\r
888 //darkplaces implementation: LordHavoc\r
889 //builtin definitions:\r
890 float(string s) stof = #81; // get numerical value from a string\r
891 float(string filename, float mode) fopen = #110; // opens a file inside quake/gamedir/data/ (mode is FILE_READ, FILE_APPEND, or FILE_WRITE), returns fhandle >= 0 if successful, or fhandle < 0 if unable to open file for any reason\r
892 void(float fhandle) fclose = #111; // closes a file\r
893 string(float fhandle) fgets = #112; // reads a line of text from the file and returns as a tempstring\r
894 void(float fhandle, string s) fputs = #113; // writes a line of text to the end of the file\r
895 float(string s) strlen = #114; // returns how many characters are in a string\r
896 string(string s1, ...) strcat = #115; // concatenates two strings (for example "abc", "def" would return "abcdef") and returns as a tempstring\r
897 string(string s, float start, float length) substring = #116; // returns a section of a string as a tempstring\r
898 vector(string s) stov = #117; // returns vector value from a string\r
899 string(string s) strzone = #118; // makes a copy of a string into the string zone and returns it, this is often used to keep around a tempstring for longer periods of time (tempstrings are replaced often)\r
900 void(string s) strunzone = #119; // removes a copy of a string from the string zone (you can not use that string again or it may crash!!!)\r
901 //constants:\r
902 float FILE_READ = 0;\r
903 float FILE_APPEND = 1;\r
904 float FILE_WRITE = 2;\r
905 //cvars:\r
906 //pr_zone_min_strings : default 64 (64k), min 64 (64k), max 8192 (8mb)\r
907 //description:\r
908 //provides text file access functions and string manipulation functions, note that you may want to set pr_zone_min_strings in the worldspawn function if 64k is not enough string zone space.\r
909 \r
910 //KRIMZON_SV_PARSECLIENTCOMMAND\r
911 //idea: KrimZon\r
912 //darkplaces implementation: KrimZon, LordHavoc\r
913 //engine-called QC prototypes:\r
914 //void(string s) SV_ParseClientCommand;\r
915 //builtin definitions:\r
916 void(entity e, string s) clientcommand = #440;\r
917 float(string s) tokenize = #441;\r
918 string(float n) argv = #442;\r
919 //description:\r
920 //provides QC the ability to completely control server interpretation of client commands ("say" and "color" for example, clientcommand is necessary for this and substring (FRIK_FILE) is useful) as well as adding new commands (tokenize, argv, and stof (FRIK_FILE) are useful for this)), whenever a clc_stringcmd is received the QC function is called, and it is up to the QC to decide what (if anything) to do with it\r
921 \r
922 //NEH_RESTOREGAME\r
923 //idea: Nehahra\r
924 //darkplaces implementation: LordHavoc\r
925 //engine-called QC prototypes:\r
926 //void() RestoreGame;\r
927 //description:\r
928 //when a savegame is loaded, this function is called\r
929 \r
930 //NEH_CMD_PLAY2\r
931 //idea: Nehahra\r
932 //darkplaces implementation: LordHavoc\r
933 //description:\r
934 //shows that the engine supports the "play2" console command (plays a sound without spatialization).\r
935 \r
936 //PRYDON_CLIENTCURSOR\r
937 //idea: FrikaC\r
938 //darkplaces implementation: LordHavoc\r
939 //effects bit:\r
940 float EF_SELECTABLE = 16384; // allows cursor to highlight entity (brighten)\r
941 //field definitions:\r
942 .float cursor_active; // true if cl_prydoncursor mode is on\r
943 .vector cursor_screen; // screen position of cursor as -1 to +1 in _x and _y (_z unused)\r
944 .vector cursor_trace_start; // position of camera\r
945 .vector cursor_trace_endpos; // position of cursor in world (as traced from camera)\r
946 .entity cursor_trace_ent; // entity the cursor is pointing at (server forces this to world if the entity is currently free at time of receipt)\r
947 //cvar definitions:\r
948 //cl_prydoncursor (0/1+, default 0, 1 and above use cursors named gfx/prydoncursor%03i.lmp - or .tga and such if DP_GFX_EXTERNALTEXTURES is implemented)\r
949 //description:\r
950 //shows that the engine supports the cl_prydoncursor cvar, this puts a clientside mouse pointer on the screen and feeds input to the server for the QuakeC to use as it sees fit.\r
951 //the mouse pointer triggers button4 if cursor is at left edge of screen, button5 if at right edge of screen, button6 if at top edge of screen, button7 if at bottom edge of screen.\r
952 //the clientside trace skips transparent entities (except those marked EF_SELECTABLE).\r
953 //the selected entity highlights only if EF_SELECTABLE is set, a typical selection method would be doubling the brightness of the entity by some means (such as colormod[] *= 2).\r
954 //intended to be used by Prydon Gate.\r
955 \r
956 //TW_SV_STEPCONTROL\r
957 //idea: Transfusion\r
958 //darkplaces implementation: LordHavoc\r
959 //cvars:\r
960 //sv_jumpstep (0/1, default 1)\r
961 //sv_stepheight (default 18)\r
962 //description:\r
963 //sv_jumpstep allows stepping up onto stairs while airborn, sv_stepheight controls how high a single step can be.\r
964 \r
965 // NEXUIZ_PLAYERMODEL\r
966 // NEXUIZ_PLAYERSKIN\r
967 //idea:\r
968 //darkplaces implementation: Black\r
969 .string playermodel; // contains the name of the model set by a client with playermodel\r
970 .string playerskin; // contains the name of the skin set by a client with playerskin\r
971 \r
972 //unassigned stuff:  (need to write up specs but haven't yet)\r
973 .vector punchvector; // DP_SV_PUNCHVECTOR\r
974 .float  ping; // DP_SV_PING\r
975 \r
976 \r