]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/extensions.qh
added a simple way to sync ban lists online via a http server. CGI scripts for that...
[divverent/nexuiz.git] / data / qcsrc / server / extensions.qh
1
2 //DarkPlaces supported extension list, draft version 1.04
3
4 //things that don't have extensions yet:
5 .float disableclientprediction;
6
7 //definitions that id Software left out:
8 //these are passed as the 'nomonsters' parameter to traceline/tracebox (yes really this was supported in all quake engines, nomonsters is misnamed)
9 float MOVE_NORMAL = 0; // same as FALSE
10 float MOVE_NOMONSTERS = 1; // same as TRUE
11 float MOVE_MISSILE = 2; // save as movement with .movetype == MOVETYPE_FLYMISSILE
12
13 //checkextension function
14 //idea: expected by almost everyone
15 //darkplaces implementation: LordHavoc
16 float(string s) checkextension = #99;
17 //description:
18 //check if (cvar("pr_checkextension")) before calling this, this is the only
19 //guaranteed extension to be present in the extension system, it allows you
20 //to check if an extension is available, by name, to check for an extension
21 //use code like this:
22 //// (it is recommended this code be placed in worldspawn or a worldspawn called function somewhere)
23 //if (cvar("pr_checkextension"))
24 //if (checkextension("DP_SV_SETCOLOR"))
25 //      ext_setcolor = TRUE;
26 //from then on you can check ext_setcolor to know if that extension is available
27
28 //BX_WAL_SUPPORT
29 //idea: id Software
30 //darkplaces implementation: LordHavoc
31 //description:
32 //indicates the engine supports .wal textures for filenames in the textures/ directory
33 //(note: DarkPlaces has supported this since 2001 or 2002, but did not advertise it as an extension, then I noticed Betwix was advertising it and added the extension accordingly)
34
35 //DP_BUTTONCHAT
36 //idea: Vermeulen
37 //darkplaces implementation: LordHavoc
38 //field definitions:
39 .float buttonchat;
40 //description:
41 //true if the player is currently chatting (in messagemode, menus or console)
42
43 //DP_BUTTONUSE
44 //idea: id Software
45 //darkplaces implementation: LordHavoc
46 //field definitions:
47 .float buttonuse;
48 //client console commands:
49 //+use
50 //-use
51 //description:
52 //made +use and -use commands work, they now control the .buttonuse field (.button1 was used by many mods for other purposes).
53
54 // LordHavoc: HIGHLY experimental, do not implement this in other engines
55 //DP_CGAME
56 //idea: LordHavoc
57 //darkplaces implementation: LordHavoc
58 //SVC definitions:
59 float svc_cgame = 50; // [short] length [bytes] data
60 //description:
61 //contains network messages to client gamecode.
62
63 //DP_CL_LOADSKY
64 //idea: Nehahra, LordHavoc
65 //darkplaces implementation: LordHavoc
66 //client console commands:
67 //"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)
68 //description:
69 //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).
70
71 //DP_CON_SET
72 //idea: id Software
73 //darkplaces implementation: LordHavoc
74 //description:
75 //indicates this engine supports the "set" console command which creates or sets a non-archived cvar (not saved to config.cfg on exit), it is recommended that set and seta commands be placed in default.cfg for mod-specific cvars.
76
77 //DP_CON_SETA
78 //idea: id Software
79 //darkplaces implementation: LordHavoc
80 //description:
81 //indicates this engine supports the "seta" console command which creates or sets an archived cvar (saved to config.cfg on exit), it is recommended that set and seta commands be placed in default.cfg for mod-specific cvars.
82
83 //DP_CON_ALIASPARAMETERS
84 //idea: many
85 //darkplaces implementation: Black
86 //description:
87 //indicates this engine supports aliases containing $1 through $9 parameter macros (which when called will expand to the parameters passed to the alias, for example alias test "say $2 $1", then you can type test hi there and it will execute say there hi), as well as $0 (name of the alias) and $* (all parameters $1 onward).
88
89 //DP_CON_EXPANDCVAR
90 //idea: many, PHP
91 //darkplaces implementation: Black
92 //description:
93 //indicates this engine supports console commandlines containing $cvarname which will expand to the contents of that cvar as a parameter, for instance say my fov is $fov, will say "my fov is 90", or similar.
94
95 //DP_CON_STARTMAP
96 //idea: LordHavoc
97 //darkplaces implementation: LordHavoc
98 //description:
99 //adds two engine-called aliases named startmap_sp and startmap_dm which are called when the engine tries to start a singleplayer game from the menu (startmap_sp) or the -listen or -dedicated options are used or the engine is a dedicated server (uses startmap_dm), these allow a mod or game to specify their own map instead of start, and also distinguish between singleplayer and -listen/-dedicated, also these need not be a simple "map start" command, they can do other things if desired, startmap_sp and startmap_dm both default to "map start".
100
101 //DP_EF_ADDITIVE
102 //idea: LordHavoc
103 //darkplaces implementation: LordHavoc
104 //effects bit:
105 float   EF_ADDITIVE     = 32;
106 //description:
107 //additive blending when this object is rendered
108
109 //DP_EF_BLUE
110 //idea: id Software
111 //darkplaces implementation: LordHavoc
112 //effects bit:
113 float   EF_BLUE         = 64;
114 //description:
115 //entity emits blue light (used for quad)
116
117 //DP_EF_DOUBLESIDED
118 //idea: LordHavoc
119 //darkplaces implementation: [515] and LordHavoc
120 //effects bit:
121 float EF_DOUBLESIDED = 32768;
122 //description:
123 //render entity as double sided (backfaces are visible, I.E. you see the 'interior' of the model, rather than just the front), can be occasionally useful on transparent stuff.
124
125 //DP_EF_FLAME
126 //idea: LordHavoc
127 //darkplaces implementation: LordHavoc
128 //effects bit:
129 float   EF_FLAME        = 1024;
130 //description:
131 //entity is on fire
132
133 //DP_EF_FULLBRIGHT
134 //idea: LordHavoc
135 //darkplaces implementation: LordHavoc
136 //effects bit:
137 float   EF_FULLBRIGHT   = 512;
138 //description:
139 //entity is always brightly lit
140
141 //DP_EF_NODEPTHTEST
142 //idea: Supa
143 //darkplaces implementation: LordHavoc
144 //effects bit:
145 float   EF_NODEPTHTEST       = 8192;
146 //description:
147 //makes entity show up to client even through walls, useful with EF_ADDITIVE for special indicators like where team bases are in a map, so that people don't get lost
148
149 //DP_EF_NODRAW
150 //idea: id Software
151 //darkplaces implementation: LordHavoc
152 //effects bit:
153 float   EF_NODRAW       = 16;
154 //description:
155 //prevents server from sending entity to client (forced invisible, even if it would have been a light source or other such things)
156
157 //DP_EF_NOGUNBOB
158 //idea: Chris Page, Dresk
159 //darkplaces implementation: LordHAvoc
160 //effects bit:
161 float   EF_NOGUNBOB     = 256;
162 //description:
163 //this has different meanings depending on the entity it is used on:
164 //player entity - prevents gun bobbing on player.viewmodel
165 //viewmodelforclient entity - prevents gun bobbing on an entity attached to the player's view
166 //other entities - no effect
167 //uses:
168 //disabling gun bobbing on a diving mask or other model used as a .viewmodel.
169 //disabling gun bobbing on view-relative models meant to be part of the heads up display.  (note: if fov is changed these entities may be off-screen, or too near the center of the screen, so use fov 90 in this case)
170
171 //DP_EF_NOSHADOW
172 //idea: LordHavoc
173 //darkplaces implementation: LordHavoc
174 //effects bit:
175 float   EF_NOSHADOW     = 4096;
176 //description:
177 //realtime lights will not cast shadows from this entity (but can still illuminate it)
178
179 //DP_EF_RED
180 //idea: id Software
181 //darkplaces implementation: LordHavoc
182 //effects bit:
183 float   EF_RED          = 128;
184 //description:
185 //entity emits red light (used for invulnerability)
186
187 //DP_EF_STARDUST
188 //idea: MythWorks Inc
189 //darkplaces implementation: LordHavoc
190 //effects bit:
191 float   EF_STARDUST     = 2048;
192 //description:
193 //entity emits bouncing sparkles in every direction
194
195 //DP_ENT_ALPHA
196 //idea: Nehahra
197 //darkplaces implementation: LordHavoc
198 //fields:
199 .float alpha;
200 //description:
201 //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).
202
203 //DP_ENT_COLORMOD
204 //idea: LordHavoc
205 //darkplaces implementation: LordHavoc
206 //field definition:
207 .vector colormod;
208 //description:
209 //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).
210
211 //DP_ENT_CUSTOMCOLORMAP
212 //idea: LordHavoc
213 //darkplaces implementation: LordHavoc
214 //description:
215 //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.
216
217 /*
218 //NOTE: no longer supported by darkplaces because all entities are delta compressed now
219 //DP_ENT_DELTACOMPRESS // no longer supported
220 //idea: LordHavoc
221 //darkplaces implementation: LordHavoc
222 //effects bit:
223 float EF_DELTA = 8388608;
224 //description:
225 //(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).
226 */
227
228 //DP_ENT_EXTERIORMODELTOCLIENT
229 //idea: LordHavoc
230 //darkplaces implementation: LordHavoc
231 //fields:
232 .entity exteriormodeltoclient;
233 //description:
234 //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.  Also if tag attachments are supported any entities attached to the player entity will not be drawn in first person.
235
236 //DP_ENT_GLOW
237 //idea: LordHavoc
238 //darkplaces implementation: LordHavoc
239 //field definitions:
240 .float glow_color;
241 .float glow_size;
242 .float glow_trail;
243 //description:
244 //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.
245
246 //DP_ENT_LOWPRECISION
247 //idea: LordHavoc
248 //darkplaces implementation: LordHavoc
249 //effects bit:
250 float EF_LOWPRECISION = 4194304;
251 //description:
252 //uses low quality origin coordinates, reducing network traffic compared to the default high precision, intended for numerous objects (projectiles/gibs/bullet holes/etc).
253
254 //DP_ENT_SCALE
255 //idea: LordHavoc
256 //darkplaces implementation: LordHavoc
257 //field definitions:
258 .float scale;
259 //description:
260 //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.
261
262 //DP_ENT_VIEWMODEL
263 //idea: LordHavoc
264 //darkplaces implementation: LordHavoc
265 //field definitions:
266 .entity viewmodelforclient;
267 //description:
268 //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.
269
270 //DP_GECKO_SUPPORT
271 //idea: Res2k, BlackHC
272 //darkplaces implementation: Res2k, BlackHC
273 //constant definitions:
274 float GECKO_BUTTON_DOWN         = 0;
275 float GECKO_BUTTON_UP           = 1;
276 // either use down and up or just press but not all of them!
277 float GECKO_BUTTON_PRESS        = 2;
278 // use this for mouse events if needed?
279 float GECKO_BUTTON_DOUBLECLICK  = 3;
280 //builtin definitions:
281 float(string name) gecko_create( string name ) = #487;
282 void(string name) gecko_destroy( string name ) = #488;
283 void(string name) gecko_navigate( string name, string URI ) = #489;
284 float(string name) gecko_keyevent( string name, float key, float eventtype ) = #490;
285 void gecko_mousemove( string name, float x, float y ) = #491;
286 void gecko_resize( string name, float w, float h ) = #492;
287 vector gecko_get_texture_extent( string name ) = #493;
288 //engine-called QC prototypes:
289 //string(string name, string query) Qecko_Query;
290 //description:
291 //provides an interface to the offscreengecko library and allows for internet browsing in games
292
293 //DP_GFX_EXTERNALTEXTURES
294 //idea: LordHavoc
295 //darkplaces implementation: LordHavoc
296 //description:
297 //loads external textures found in various directories (tenebrae compatible)...
298 /*
299 in all examples .tga is merely the base texture, it can be any of these:
300 .tga (base texture)
301 _glow.tga (fullbrights or other glowing overlay stuff, NOTE: this is done using additive blend, not alpha)
302 _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)
303 _shirt.tga (same idea as pants, but for shirt color)
304 _diffuse.tga (this may be used instead of base texture for per pixel lighting)
305 _gloss.tga (specular texture for per pixel lighting, note this can be in color (tenebrae only supports greyscale))
306 _norm.tga (normalmap texture for per pixel lighting)
307 _bump.tga (bumpmap, converted to normalmap at load time, supported only for reasons of tenebrae compatibility)
308 _luma.tga (same as _glow but supported only for reasons of tenebrae compatibility)
309
310 due to glquake's incomplete Targa(r) loader, this section describes
311 required Targa(r) features support:
312 types:
313 type 1 (uncompressed 8bit paletted with 24bit/32bit palette)
314 type 2 (uncompressed 24bit/32bit true color, glquake supported this)
315 type 3 (uncompressed 8bit greyscale)
316 type 9 (RLE compressed 8bit paletted with 24bit/32bit palette)
317 type 10 (RLE compressed 24bit/32bit true color, glquake supported this)
318 type 11 (RLE compressed 8bit greyscale)
319 attribute bit 0x20 (Origin At Top Left, top to bottom, left to right)
320
321 image formats guaranteed to be supported: tga, pcx, lmp
322 image formats that are optional: png, jpg
323
324 mdl/spr/spr32 examples:
325 skins are named _A (A being a number) and skingroups are named like _A_B
326 these act as suffixes on the model name...
327 example names for skin _2_1 of model "progs/armor.mdl":
328 game/override/progs/armor.mdl_2_1.tga
329 game/textures/progs/armor.mdl_2_1.tga
330 game/progs/armor.mdl_2_1.tga
331 example names for skin _0 of the model "progs/armor.mdl":
332 game/override/progs/armor.mdl_0.tga
333 game/textures/progs/armor.mdl_0.tga
334 game/progs/armor.mdl_0.tga
335 note that there can be more skins files (of the _0 naming) than the mdl
336 contains, this is only useful to save space in the .mdl file if classic quake
337 compatibility is not a concern.
338
339 bsp/md2/md3 examples:
340 example names for the texture "quake" of model "maps/start.bsp":
341 game/override/quake.tga
342 game/textures/quake.tga
343 game/quake.tga
344
345 sbar/menu/console textures: for example the texture "conchars" (console font) in gfx.wad
346 game/override/gfx/conchars.tga
347 game/textures/gfx/conchars.tga
348 game/gfx/conchars.tga
349 */
350
351 //DP_GFX_EXTERNALTEXTURES_PERMAPTEXTURES
352 //idea: Fuh?
353 //darkplaces implementation: LordHavoc
354 //description:
355 //Q1BSP and HLBSP map loading loads external textures found in textures/<mapname>/ as well as textures/.
356 //Where mapname is the bsp filename minus the extension (typically .bsp) and minus maps/ if it is in maps/ (any other path is not removed)
357 //example:
358 //maps/e1m1.bsp uses textures in the directory textures/e1m1/ and falls back to textures/
359 //maps/b_batt0.bsp uses textures in the directory textures/b_batt0.bsp and falls back to textures/
360 //as a more extreme example:
361 //progs/something/blah.bsp uses textures in the directory textures/progs/something/blah/ and falls back to textures/
362
363 //DP_GFX_FOG
364 //idea: LordHavoc
365 //darkplaces implementation: LordHavoc
366 //worldspawn fields:
367 //"fog" (parameters: "density red green blue", example: "0.1 0.3 0.3 0.3")
368 //description:
369 //global fog for the map, can not be changed by QC
370
371 //DP_GFX_QUAKE3MODELTAGS
372 //idea: id Software
373 //darkplaces implementation: LordHavoc
374 //field definitions:
375 .entity tag_entity; // entity this is attached to (call setattachment to set this)
376 .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)
377 //builtin definitions:
378 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)
379 //description:
380 //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).
381 //note 2: if the tag is not found, it defaults to "" (attach to origin/angles of entity)
382 //note 3: attaching to world turns off attachment
383 //note 4: the entity that this is attached to must be visible for this to work
384 //note 5: if an entity is attached to the player entity it will not be drawn in first person.
385
386 //DP_GFX_SKINFILES
387 //idea: LordHavoc
388 //darkplaces implementation: LordHavoc
389 //description:
390 //alias models (mdl, md2, md3) can have .skin files to replace conventional texture naming, these have a naming format such as:
391 //progs/test.md3_0.skin
392 //progs/test.md3_1.skin
393 //...
394 //
395 //these files contain replace commands (replace meshname shadername), example:
396 //replace "helmet" "progs/test/helmet1.tga" // this is a mesh shader replacement
397 //replace "teamstripes" "progs/test/redstripes.tga"
398 //replace "visor" "common/nodraw" // this makes the visor mesh invisible
399 ////it is not possible to rename tags using this format
400 //
401 //Or the Quake3 syntax (100% compatible with Quake3's .skin files):
402 //helmet,progs/test/helmet1.tga // this is a mesh shader replacement
403 //teamstripes,progs/test/redstripes.tga
404 //visor,common/nodraw // this makes the visor mesh invisible
405 //tag_camera, // this defines that the first tag in the model is called tag_camera
406 //tag_test, // this defines that the second tag in the model is called tag_test
407 //
408 //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.
409 //this feature is intended to allow multiple skin sets on md3 models (which otherwise only have one skin set).
410 //other commands might be added someday but it is not expected.
411
412 //DP_GFX_SKYBOX
413 //idea: LordHavoc
414 //darkplaces implementation: LordHavoc
415 //worldspawn fields:
416 //"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)
417 //description:
418 //global skybox for the map, can not be changed by QC
419
420 //DP_HALFLIFE_MAP
421 //idea: LordHavoc
422 //darkplaces implementation: LordHavoc
423 //description:
424 //simply indicates that the engine supports HalfLife maps (BSP version 30, NOT the QER RGBA ones which are also version 30).
425
426 //DP_HALFLIFE_MAP_CVAR
427 //idea: LordHavoc
428 //darkplaces implementation: LordHavoc
429 //cvars:
430 //halflifebsp 0/1
431 //description:
432 //engine sets this cvar when loading a map to indicate if it is halflife format or not.
433
434 //DP_HALFLIFE_SPRITE
435 //idea: LordHavoc
436 //darkplaces implementation: LordHavoc
437 //description:
438 //simply indicates that the engine supports HalfLife sprites.
439
440 //DP_INPUTBUTTONS
441 //idea: LordHavoc
442 //darkplaces implementation: LordHavoc
443 //field definitions:
444 .float button3;
445 .float button4;
446 .float button5;
447 .float button6;
448 .float button7;
449 .float button8;
450 //description:
451 //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).
452 //the exact mapping of protocol button bits on the server is:
453 //self.button0 = (bits & 1) != 0;
454 ///* button1 is skipped because mods abuse it as a variable, and accordingly it has no bit */
455 //self.button2 = (bits & 2) != 0;
456 //self.button3 = (bits & 4) != 0;
457 //self.button4 = (bits & 8) != 0;
458 //self.button5 = (bits & 16) != 0;
459 //self.button6 = (bits & 32) != 0;
460 //self.button7 = (bits & 64) != 0;
461 //self.button8 = (bits & 128) != 0;
462
463 //DP_LITSPRITES
464 //idea: LordHavoc
465 //darkplaces implementation: LordHavoc
466 //description:
467 //indicates this engine supports lighting on sprites, any sprite with ! in its filename (both on disk and in the qc) will be lit rather than having forced EF_FULLBRIGHT (EF_FULLBRIGHT on the entity can still force these sprites to not be lit).
468
469 //DP_LITSUPPORT
470 //idea: LordHavoc
471 //darkplaces implementation: LordHavoc
472 //description:
473 //indicates this engine loads .lit files for any quake1 format .bsp files it loads to enhance maps with colored lighting.
474 //implementation description: these files begin with the header QLIT followed by version number 1 (as little endian 32bit), the rest of the file is a replacement lightmaps lump, except being 3x as large as the lightmaps lump of the map it matches up with (and yes the between-lightmap padding is expanded 3x to keep this consistent), so the lightmap offset in each surface is simply multiplied by 3 during loading to properly index the lit data, and the lit file is loaded instead of the lightmap lump, other renderer changes are needed to display these of course...  see the litsupport.zip sample code (almost a tutorial) at http://icculus.org/twilight/darkplaces for more information.
475
476 //DP_MONSTERWALK
477 //idea: LordHavoc
478 //darkplaces implementation: LordHavoc
479 //description:
480 //MOVETYPE_WALK is permitted on non-clients, so bots can move smoothly, run off ledges, etc, just like a real player.
481
482 //DP_MOVETYPEBOUNCEMISSILE
483 //idea: id Software
484 //darkplaces implementation: id Software
485 //movetype definitions:
486 //float MOVETYPE_BOUNCEMISSILE = 11; // already in defs.qc
487 //description:
488 //MOVETYPE_BOUNCE but without gravity, and with full reflection (no speed loss like grenades have), in other words - bouncing laser bolts.
489
490 //DP_MOVETYPEFOLLOW
491 //idea: id Software, LordHavoc (redesigned)
492 //darkplaces implementation: LordHavoc
493 //movetype definitions:
494 float MOVETYPE_FOLLOW = 12;
495 //description:
496 //MOVETYPE_FOLLOW implemented, this uses existing entity fields in unusual ways:
497 //aiment - the entity this is attached to.
498 //punchangle - the original angles when the follow began.
499 //view_ofs - the relative origin (note that this is un-rotated by punchangle, and that is actually the only purpose of punchangle).
500 //v_angle - the relative angles.
501 //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:
502 //hole.movetype = MOVETYPE_FOLLOW; // make the hole follow
503 //hole.solid = SOLID_NOT; // MOVETYPE_FOLLOW is always non-solid
504 //hole.aiment = bmodel; // make the hole follow bmodel
505 //hole.punchangle = bmodel.angles; // the original angles of bmodel
506 //hole.view_ofs = hole.origin - bmodel.origin; // relative origin
507 //hole.v_angle = hole.angles - bmodel.angles; // relative angles
508
509 //DP_QC_ASINACOSATANATAN2TAN
510 //idea: Urre
511 //darkplaces implementation: LordHavoc
512 //constant definitions:
513 float DEG2RAD = 0.0174532925199432957692369076848861271344287188854172545609719144;
514 float RAD2DEG = 57.2957795130823208767981548141051703324054724665643215491602438612;
515 float PI      = 3.1415926535897932384626433832795028841971693993751058209749445923;
516 //builtin definitions:
517 float(float s) asin = #471; // returns angle in radians for a given sin() value, the result is in the range -PI*0.5 to PI*0.5
518 float(float c) acos = #472; // returns angle in radians for a given cos() value, the result is in the range 0 to PI
519 float(float t) atan = #473; // returns angle in radians for a given tan() value, the result is in the range -PI*0.5 to PI*0.5
520 float(float c, float s) atan2 = #474; // returns angle in radians for a given cos() and sin() value pair, the result is in the range -PI to PI (this is identical to vectoyaw except it returns radians rather than degrees)
521 float(float a) tan = #475; // returns tangent value (which is simply sin(a)/cos(a)) for the given angle in radians, the result is in the range -infinity to +infinity
522 //description:
523 //useful math functions for analyzing vectors, note that these all use angles in radians (just like the cos/sin functions) not degrees unlike makevectors/vectoyaw/vectoangles, so be sure to do the appropriate conversions (multiply by DEG2RAD or RAD2DEG as needed).
524 //note: atan2 can take unnormalized vectors (just like vectoyaw), and the function was included only for completeness (more often you want vectoyaw or vectoangles), atan2(v_x,v_y) * RAD2DEG gives the same result as vectoyaw(v)
525
526 //DP_QC_CHANGEPITCH
527 //idea: id Software
528 //darkplaces implementation: id Software
529 //field definitions:
530 .float idealpitch;
531 .float pitch_speed;
532 //builtin definitions:
533 void(entity ent) changepitch = #63;
534 //description:
535 //equivilant to changeyaw, ent is normally self. (this was a Q2 builtin)
536
537 //DP_QC_COPYENTITY
538 //idea: LordHavoc
539 //darkplaces implementation: LordHavoc
540 //builtin definitions:
541 void(entity from, entity to) copyentity = #400;
542 //description:
543 //copies all data in the entity to another entity.
544
545 //DP_QC_CVAR_DEFSTRING
546 //idea: id Software (Doom3), LordHavoc
547 //darkplaces implementation: LordHavoc
548 //builtin definitions:
549 string(string s) cvar_defstring = #482;
550 //description:
551 //returns the default value of a cvar, as a tempstring.
552
553 //DP_QC_CVAR_STRING
554 //idea: VorteX
555 //DarkPlaces implementation: VorteX, LordHavoc
556 //builtin definitions:
557 string(string s) cvar_string = #448;
558 //description:
559 //returns the value of a cvar, as a tempstring.
560
561 //DP_QC_EDICT_NUM
562 //idea: 515
563 //DarkPlaces implementation: LordHavoc
564 //builtin definitions:
565 entity(float entnum) edict_num = #459;
566 float(entity ent) wasfreed = #353; // same as in EXT_CSQC extension
567 //description:
568 //edict_num returns the entity corresponding to a given number, this works even for freed entities, but you should call wasfreed(ent) to see if is currently active.
569 //wasfreed returns whether an entity slot is currently free (entities that have never spawned are free, entities that have had remove called on them are also free).
570
571 //DP_QC_ENTITYDATA
572 //idea: KrimZon
573 //darkplaces implementation: KrimZon
574 //builtin definitions:
575 float() numentityfields = #496;
576 string(float fieldnum) entityfieldname = #497;
577 float(float fieldnum) entityfieldtype = #498;
578 string(float fieldnum, entity ent) getentityfieldstring = #499;
579 float(float fieldnum, entity ent, string s) putentityfieldstring = #500;
580 //constants:
581 //Returned by entityfieldtype
582 float FIELD_STRING   = 1;
583 float FIELD_FLOAT    = 2;
584 float FIELD_VECTOR   = 3;
585 float FIELD_ENTITY   = 4;
586 float FIELD_FUNCTION = 6;
587 //description:
588 //Versatile functions intended for storing data from specific entities between level changes, but can be customized for some kind of partial savegame.
589 //WARNING: .entity fields cannot be saved and restored between map loads as they will leave dangling pointers.
590 //numentityfields returns the number of entity fields. NOT offsets. Vectors comprise 4 fields: v, v_x, v_y and v_z.
591 //entityfieldname returns the name as a string, eg. "origin" or "classname" or whatever.
592 //entityfieldtype returns a value that the constants represent, but the field may be of another type in more exotic progs.dat formats or compilers.
593 //getentityfieldstring returns data as would be written to a savegame, eg... "0.05" (float), "0 0 1" (vector), or "Hello World!" (string). Function names can also be returned.
594 //putentityfieldstring puts the data returned by getentityfieldstring back into the entity.
595
596 //DP_QC_ETOS
597 //idea: id Software
598 //darkplaces implementation: id Software
599 //builtin definitions:
600 string(entity ent) etos = #65;
601 //description:
602 //prints "entity 1" or similar into a string. (this was a Q2 builtin)
603
604 //DP_QC_FINDCHAIN
605 //idea: LordHavoc
606 //darkplaces implementation: LordHavoc
607 //builtin definitions:
608 entity(.string fld, string match) findchain = #402;
609 //description:
610 //similar to find() but returns a chain of entities like findradius.
611
612 //DP_QC_FINDCHAINFLAGS
613 //idea: Sajt
614 //darkplaces implementation: LordHavoc
615 //builtin definitions:
616 entity(.float fld, float match) findchainflags = #450;
617 //description:
618 //similar to findflags() but returns a chain of entities like findradius.
619
620 //DP_QC_FINDCHAINFLOAT
621 //idea: LordHavoc
622 //darkplaces implementation: LordHavoc
623 //builtin definitions:
624 entity(.entity fld, entity match) findchainentity = #403;
625 entity(.float fld, float match) findchainfloat = #403;
626 //description:
627 //similar to findentity()/findfloat() but returns a chain of entities like findradius.
628
629 //DP_QC_FINDFLAGS
630 //idea: Sajt
631 //darkplaces implementation: LordHavoc
632 //builtin definitions:
633 entity(entity start, .float fld, float match) findflags = #449;
634 //description:
635 //finds an entity with the specified flag set in the field, similar to find()
636
637 //DP_QC_FINDFLOAT
638 //idea: LordHavoc
639 //darkplaces implementation: LordHavoc
640 //builtin definitions:
641 entity(entity start, .entity fld, entity match) findentity = #98;
642 entity(entity start, .float fld, float match) findfloat = #98;
643 //description:
644 //finds an entity or float field value, similar to find(), but for entity and float fields.
645
646 //DP_QC_FS_SEARCH
647 //idea: Black
648 //darkplaces implementation: Black
649 //builtin definitions:
650 float(string pattern, float caseinsensitive, float quiet) search_begin = #444;
651 void(float handle) search_end = #445;
652 float(float handle) search_getsize = #446;
653 string(float handle, float num) search_getfilename = #447;
654 //description:
655 //search_begin performs a filename search with the specified pattern (for example "maps/*.bsp") and stores the results in a search slot (minimum of 128 supported by any engine with this extension), the other functions take this returned search slot number, be sure to search_free when done (they are also freed on progs reload).
656 //search_end frees a search slot (also done at progs reload).
657 //search_getsize returns how many filenames were found.
658 //search_getfilename returns a filename from the search.
659
660 //DP_QC_GETLIGHT
661 //idea: LordHavoc
662 //darkplaces implementation: LordHavoc
663 //builtin definitions:
664 vector(vector org) getlight = #92;
665 //description:
666 //returns the lighting at the requested location (in color), 0-255 range (can exceed 255).
667
668 //DP_QC_GETSURFACE
669 //idea: LordHavoc
670 //darkplaces implementation: LordHavoc
671 //builtin definitions:
672 float(entity e, float s) getsurfacenumpoints = #434;
673 vector(entity e, float s, float n) getsurfacepoint = #435;
674 vector(entity e, float s) getsurfacenormal = #436;
675 string(entity e, float s) getsurfacetexture = #437;
676 float(entity e, vector p) getsurfacenearpoint = #438;
677 vector(entity e, float s, vector p) getsurfaceclippedpoint = #439;
678 //description:
679 //functions to query surface information.
680
681 //DP_QC_GETSURFACEPOINTATTRIBUTE
682 //idea: BlackHC
683 //darkplaces implementation: BlackHC
684 // constants
685 float SPA_POSITION = 0;
686 float SPA_S_AXIS = 1;
687 float SPA_T_AXIS = 2;
688 float SPA_R_AXIS = 3; // same as SPA_NORMAL
689 float SPA_TEXCOORDS0 = 4;
690 float SPA_LIGHTMAP0_TEXCOORDS = 5;
691 float SPA_LIGHTMAP0_COLOR = 6;
692 //builtin definitions:
693 vector(entity e, float s, float n, float a) getsurfacepointattribute = #486;
694
695 //description:
696 //function to query extended information about a point on a certain surface
697
698 //DP_QC_GETTAGINFO
699 //idea: VorteX, LordHavoc (somebody else?)
700 //DarkPlaces implementation: VorteX
701 //builtin definitions:
702 float(entity ent, string tagname) gettagindex = #451;
703 vector(entity ent, float tagindex) gettaginfo = #452;
704 //description:
705 //gettagindex returns the number of a tag on an entity, this number is the same as set by setattachment (in the .tag_index field), allowing the qc to save a little cpu time by keeping the number around if it wishes (this could already be done by calling setattachment and saving off the tag_index).
706 //gettaginfo returns the origin of the tag in worldspace and sets v_forward, v_right, and v_up to the current orientation of the tag in worldspace, this automatically resolves all dependencies (attachments, including viewmodelforclient), this means you could fire a shot from a tag on a gun entity attached to the view for example.
707
708 //DP_QC_MINMAXBOUND
709 //idea: LordHavoc
710 //darkplaces implementation: LordHavoc
711 //builtin definitions:
712 float(float a, float b) min = #94;
713 float(float a, float b, float c) min3 = #94;
714 float(float a, float b, float c, float d) min4 = #94;
715 float(float a, float b, float c, float d, float e) min5 = #94;
716 float(float a, float b, float c, float d, float e, float f) min6 = #94;
717 float(float a, float b, float c, float d, float e, float f, float g) min7 = #94;
718 float(float a, float b, float c, float d, float e, float f, float g, float h) min8 = #94;
719 float(float a, float b) max = #95;
720 float(float a, float b, float c) max3 = #95;
721 float(float a, float b, float c, float d) max4 = #95;
722 float(float a, float b, float c, float d, float e) max5 = #95;
723 float(float a, float b, float c, float d, float e, float f) max6 = #95;
724 float(float a, float b, float c, float d, float e, float f, float g) max7 = #95;
725 float(float a, float b, float c, float d, float e, float f, float g, float h) max8 = #95;
726 float(float minimum, float val, float maximum) bound = #96;
727 //description:
728 //min returns the lowest of all the supplied numbers.
729 //max returns the highest of all the supplied numbers.
730 //bound clamps the value to the range and returns it.
731
732 //DP_QC_MULTIPLETEMPSTRINGS
733 //idea: LordHavoc
734 //darkplaces implementation: LordHavoc
735 //description:
736 //this extension makes all builtins returning tempstrings (ftos for example)
737 //cycle through a pool of multiple tempstrings (at least 16), allowing
738 //multiple ftos results to be gathered before putting them to use, normal
739 //quake only had 1 tempstring, causing many headaches.
740 //
741 //Note that for longer term storage (or compatibility on engines having
742 //FRIK_FILE but not this extension) the FRIK_FILE extension's
743 //strzone/strunzone builtins provide similar functionality (slower though).
744 //
745 //NOTE: this extension is superseded by DP_QC_UNLIMITEDTEMPSTRINGS
746
747 //DP_QC_NUM_FOR_EDICT
748 //idea: Blub\0
749 //darkplaces implementation: Blub\0
750 //Function to get the number of an entity - a clean way.
751 float(entity num) num_for_edict = #512;
752
753 //DP_QC_RANDOMVEC
754 //idea: LordHavoc
755 //darkplaces implementation: LordHavoc
756 //builtin definitions:
757 vector() randomvec = #91;
758 //description:
759 //returns a vector of length < 1, much quicker version of this QC: do {v_x = random()*2-1;v_y = random()*2-1;v_z = random()*2-1;} while(vlen(v) > 1)
760
761 //DP_QC_SINCOSSQRTPOW
762 //idea: id Software, LordHavoc
763 //darkplaces implementation: id Software, LordHavoc
764 //builtin definitions:
765 float(float val) sin = #60;
766 float(float val) cos = #61;
767 float(float val) sqrt = #62;
768 float(float a, float b) pow = #97;
769 //description:
770 //useful math functions, sine of val, cosine of val, square root of val, and raise a to power b, respectively.
771
772 //DP_QC_STRFTIME
773 //idea: LordHavoc
774 //darkplaces implementation: LordHavoc
775 //builtin definitions:
776 string(float uselocaltime, string format, ...) strftime = #478;
777 //description:
778 //provides the ability to get the local (in your timezone) or world (Universal Coordinated Time) time as a string using the formatting of your choice:
779 //example: "%Y-%m-%d %H:%M:%S"   (result looks like: 2007-02-08 01:03:15)
780 //note: "%F %T" gives the same result as "%Y-%m-%d %H:%M:%S" (ISO 8601 date format and 24-hour time)
781 //for more format codes please do a web search for strftime 3 and you should find the man(3) pages for this standard C function.
782 //
783 //practical uses:
784 //changing day/night cycle (shops closing, monsters going on the prowl) in an RPG, for this you probably want to use s = strftime(TRUE, "%H");hour = stof(s);
785 //printing current date/time for competitive multiplayer games, such as the beginning/end of each round in real world time.
786 //activating eastereggs in singleplayer games on certain dates.
787 //
788 //note: some codes such as %x and %X use your locale settings and thus may not make sense to international users, it is not advisable to use these as the server and clients may be in different countries.
789 //note: if you display local time to a player, it would be a good idea to note whether it is local time using a string like "%F %T (local)", and otherwise use "%F %T (UTC)".
790 //note: be aware that if the game is saved and reloaded a week later the date and time will be different, so if activating eastereggs in a singleplayer game or something you may want to only check when a level is loaded and then keep the same easteregg state throughout the level so that the easteregg does not deactivate when reloading from a savegame (also be aware that precaches should not depend on such date/time code because reloading a savegame often scrambles the precaches if so!).
791 //note: this function can return a NULL string (you can check for it with if (!s)) if the localtime/gmtime functions returned NULL in the engine code, such as if those functions don't work on this platform (consoles perhaps?), so be aware that this may return nothing.
792
793 //DP_QC_STRINGCOLORFUNCTIONS
794 //idea: Dresk
795 //darkplaces implementation: Dresk
796 //builtin definitions:
797 float(string s) strlennocol = #476; // returns how many characters are in a string, minus color codes
798 string(string s) strdecolorize = #477; // returns a string minus the color codes of the string provided
799 //description:
800 //provides additional functionality to strings by supporting functions that isolate and identify strings with color codes
801
802 //DP_QC_STRING_CASE_FUNCTIONS
803 //idea: Dresk
804 //darkplaces implementation: LordHavoc / Dresk
805 //builtin definitions:
806 string(string s) strtolower = #480; // returns the passed in string in pure lowercase form
807 string(string s) strtoupper = #481; // returns the passed in string in pure uppercase form
808 //description:
809 //provides simple string uppercase and lowercase functions
810
811 //DP_QC_TOKENIZEBYSEPARATOR
812 //idea: Electro, SavageX, LordHavoc
813 //darkplaces implementation: LordHavoc
814 //builtin definitions:
815 float(string s, string separator1, ...) tokenizebyseparator = #479;
816 //description:
817 //this function returns tokens separated by any of the supplied separator strings, example:
818 //numnumbers = tokenizebyseparator("10.2.3.4", ".");
819 //returns 4 and the tokens are "10" "2" "3" "4"
820 //possibly useful for parsing IPv4 addresses (such as "1.2.3.4") and IPv6 addresses (such as "[1234:5678:9abc:def0:1234:5678:9abc:def0]:26000")
821
822 //DP_QC_TRACEBOX
823 //idea: id Software
824 //darkplaces implementation: id Software
825 //builtin definitions:
826 void(vector v1, vector min, vector max, vector v2, float nomonsters, entity forent) tracebox = #90;
827 //description:
828 //similar to traceline but much more useful, traces a box of the size specified (technical note: in quake1 and halflife bsp maps the mins and maxs will be rounded up to one of the hull sizes, quake3 bsp does not have this problem, this is the case with normal moving entities as well).
829
830 //DP_QC_TRACETOSS
831 //idea: id Software
832 //darkplaces implementation: id Software
833 //builtin definitions:
834 void(entity ent, entity ignore) tracetoss = #64;
835 //description:
836 //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.
837
838 //DP_QC_TRACE_MOVETYPE_HITMODEL
839 //idea: LordHavoc
840 //darkplaces implementation: LordHavoc
841 //constant definitions:
842 float MOVE_HITMODEL = 4;
843 //description:
844 //allows traces to hit alias models (not sprites!) instead of entity boxes, use as the nomonsters parameter to trace functions, note that you can hit invisible model entities (alpha < 0 or EF_NODRAW or model "", it only checks modelindex)
845
846 //DP_QC_TRACE_MOVETYPE_WORLDONLY
847 //idea: LordHavoc
848 //darkplaces implementation: LordHavoc
849 //constant definitions:
850 float MOVE_WORLDONLY = 3;
851 //description:
852 //allows traces to hit only world (ignoring all entities, unlike MOVE_NOMONSTERS which hits all bmodels), use as the nomonsters parameter to trace functions
853
854 //DP_QC_UNLIMITEDTEMPSTRINGS
855 //idea: div0
856 //darkplaces implementation: LordHavoc
857 //description:
858 //this extension alters Quake behavior such that instead of reusing a single
859 //tempstring (or multiple) there are an unlimited number of tempstrings, which
860 //are removed only when a QC function invoked by the engine returns,
861 //eliminating almost all imaginable concerns with string handling in QuakeC.
862 //
863 //in short:
864 //you can now use and abuse tempstrings as much as you like, you still have to
865 //use strzone (FRIK_FILE) for permanent storage however.
866 //
867 //
868 //
869 //implementation notes for other engine coders:
870 //these tempstrings are expected to be stored in a contiguous buffer in memory
871 //which may be fixed size or controlled by a cvar, or automatically grown on
872 //demand (in the case of DarkPlaces).
873 //
874 //this concept is similar to quake's Zone system, however these are all freed
875 //when the QC interpreter returns.
876 //
877 //this is basically a poor man's garbage collection system for strings.
878
879 //DP_QC_VECTOANGLES_WITH_ROLL
880 //idea: LordHavoc
881 //darkplaces implementation: LordHavoc
882 //builtin definitions:
883 vector(vector forward, vector up) vectoangles2 = #51; // same number as vectoangles
884 //description:
885 //variant of vectoangles that takes an up vector to calculate roll angle (also uses this to calculate yaw correctly if the forward is straight up or straight down)
886 //note: just like normal vectoangles you need to negate the pitch of the returned angles if you want to feed them to makevectors or assign to self.v_angle
887
888 //DP_QC_VECTORVECTORS
889 //idea: LordHavoc
890 //darkplaces implementation: LordHavoc
891 //builtin definitions:
892 void(vector dir) vectorvectors = #432;
893 //description:
894 //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.
895
896 //DP_QC_WHICHPACK
897 //idea: div0
898 //darkplaces implementation: div0
899 //builtin definitions:
900 string(string filename) whichpack = #503;
901 //description:
902 //returns the name of the pak/pk3/whatever containing the given file, in the same path space as FRIK_FILE functions use (that is, possibly with a path name prefix)
903
904 //DP_QC_URI_ESCAPE
905 //idea: div0
906 //darkplaces implementation: div0
907 //URI::Escape's functionality
908 string(string in) uri_escape = #510;
909 string(string in) uri_unescape = #511;
910
911 //DP_QC_URI_GET
912 //idea: div0
913 //darkplaces implementation: div0
914 //loads text from an URL into a string
915 //returns 1 on success of initiation, 0 if there are too many concurrent
916 //connections already or if the URL is invalid
917 //the following callback will receive the data and MUST exist!
918 //  void(float id, float status, string data) URI_Get_Callback;
919 //status is either
920 //  negative for an internal error,
921 //  0 for success, or
922 //  the HTTP response code on server error (e.g. 404)
923 //if 1 is returned by uri_get, the callback will be called in the future
924 float(string url, float id) uri_get = #513;
925
926 //DP_SV_SPAWNFUNC_PREFIX
927 //idea: div0
928 //darkplaces implementation: div0
929 //Make functions whose name start with spawnfunc_ take precedence as spawn function for loading entities.
930 //Useful if you have a field ammo_shells (required in any Quake mod) but want to support spawn functions called ammo_shells (like in Q3A).
931 //Optionally, you can declare a global "float require_spawnfunc_prefix;" which will require ANY spawn function to start with that prefix.
932
933
934 //DP_QUAKE2_MODEL
935 //idea: quake community
936 //darkplaces implementation: LordHavoc
937 //description:
938 //shows that the engine supports Quake2 .md2 files.
939
940 //DP_QUAKE2_SPRITE
941 //idea: LordHavoc
942 //darkplaces implementation: Elric
943 //description:
944 //shows that the engine supports Quake2 .sp2 files.
945
946 //DP_QUAKE3_MAP
947 //idea: quake community
948 //darkplaces implementation: LordHavoc
949 //description:
950 //shows that the engine supports Quake3 .bsp files.
951
952 //DP_QUAKE3_MODEL
953 //idea: quake community
954 //darkplaces implementation: LordHavoc
955 //description:
956 //shows that the engine supports Quake3 .md3 files.
957
958 //DP_REGISTERCVAR
959 //idea: LordHavoc
960 //darkplaces implementation: LordHavoc
961 //builtin definitions:
962 float(string name, string value) registercvar = #93;
963 //description:
964 //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.
965 //NOTE: DP_CON_SET is much better.
966
967 //DP_SND_DIRECTIONLESSATTNNONE
968 //idea: LordHavoc
969 //darkplaces implementation: LordHavoc
970 //description:
971 //make sounds with ATTN_NONE have no spatialization (enabling easy use as music sources).
972
973 //DP_SND_FAKETRACKS
974 //idea: requested
975 //darkplaces implementation: Elric
976 //description:
977 //the engine plays sound/cdtracks/track001.wav instead of cd track 1 and so on if found, this allows games and mods to have music tracks without using ambientsound.
978 //Note: also plays .ogg with DP_SND_OGGVORBIS extension.
979
980 //DP_SND_OGGVORBIS
981 //idea: Transfusion
982 //darkplaces implementation: Elric
983 //description:
984 //the engine supports loading Ogg Vorbis sound files.  Use either the .ogg filename directly, or a .wav of the same name (will try to load the .wav first and then .ogg).
985
986 //DP_SND_STEREOWAV
987 //idea: LordHavoc
988 //darkplaces implementation: LordHavoc
989 //description:
990 //the engine supports stereo WAV files.  (useful with DP_SND_DIRECTIONLESSATTNNONE for music)
991
992 //DP_SOLIDCORPSE
993 //idea: LordHavoc
994 //darkplaces implementation: LordHavoc
995 //solid definitions:
996 float SOLID_CORPSE = 5;
997 //description:
998 //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.
999
1000 //DP_SPRITE32
1001 //idea: LordHavoc
1002 //darkplaces implementation: LordHavoc
1003 //description:
1004 //the engine supports .spr32 sprites.
1005
1006 //DP_SV_BOTCLIENT
1007 //idea: LordHavoc
1008 //darkplaces implementation: LordHavoc
1009 //constants:
1010 float CLIENTTYPE_DISCONNECTED = 0;
1011 float CLIENTTYPE_REAL = 1;
1012 float CLIENTTYPE_BOT = 2;
1013 float CLIENTTYPE_NOTACLIENT = 3;
1014 //builtin definitions:
1015 entity() spawnclient = #454; // like spawn but for client slots (also calls relevant connect/spawn functions), returns world if no clients available
1016 float(entity clent) clienttype = #455; // returns one of the CLIENTTYPE_* constants
1017 //description:
1018 //spawns a client with no network connection, to allow bots to use client slots with no hacks.
1019 //How to use:
1020 /*
1021         // to spawn a bot
1022         local entity oldself;
1023         oldself = self;
1024         self = spawnclient();
1025         if (!self)
1026         {
1027                 bprint("Can not add bot, server full.\n");
1028                 self = oldself;
1029                 return;
1030         }
1031         self.netname = "Yoyobot";
1032         self.clientcolors = 12 * 16 + 4; // yellow (12) shirt and red (4) pants
1033         ClientConnect();
1034         PutClientInServer();
1035         self = oldself;
1036
1037         // to remove all bots
1038         local entity head;
1039         head = find(world, classname, "player");
1040         while (head)
1041         {
1042                 if (clienttype(head) == CLIENTTYPE_BOT)
1043                         dropclient(head);
1044                 head = find(head, classname, "player");
1045         }
1046
1047         // to identify if a client is a bot (for example in PlayerPreThink)
1048         if (clienttype(self) == CLIENTTYPE_BOT)
1049                 botthink();
1050 */
1051 //see also DP_SV_CLIENTCOLORS DP_SV_CLIENTNAME DP_SV_DROPCLIENT
1052 //How it works:
1053 //creates a new client, calls SetNewParms and stores the parms, and returns the client.
1054 //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
1055 //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).
1056 //parms work the same on bot clients as they do on real clients, and do carry from level to level
1057
1058 //DP_SV_CLIENTCOLORS
1059 //idea: LordHavoc
1060 //darkplaces implementation: LordHavoc
1061 //field definitions:
1062 .float clientcolors; // colors of the client (format: pants + shirt * 16)
1063 //description:
1064 //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
1065
1066 //DP_SV_CLIENTNAME
1067 //idea: LordHavoc
1068 //darkplaces implementation: LordHavoc
1069 //description:
1070 //allows qc to modify the client's .netname, and automatically sends out any appropriate network updates if changed
1071
1072 //DP_SV_CUSTOMIZEENTITYFORCLIENT
1073 //idea: LordHavoc
1074 //darkplaces implementation: [515] and LordHavoc
1075 //field definitions:
1076 .float() customizeentityforclient; // self = this entity, other = client entity
1077 //description:
1078 //allows qc to modify an entity before it is sent to each client, the function returns TRUE if it should send, FALSE if it should not, and is fully capable of editing the entity's fields, this allows cloaked players to appear less transparent to their teammates, navigation markers to only show to their team, etc
1079 //tips on writing customize functions:
1080 //it is a good idea to return FALSE early in the function if possible to reduce cpu usage, because this function may be called many thousands of times per frame if there are many customized entities on a 64+ player server.
1081 //you are free to change anything in self, but please do not change any other entities (the results may be very inconsistent).
1082 //example ideas for use of this extension:
1083 //making icons over teammates' heads which are only visible to teammates.  for exasmple: float() playericon_customizeentityforclient = {return self.owner.team == other.team;};
1084 //making cloaked players more visible to their teammates than their enemies.  for example: float() player_customizeentityforclient = {if (self.items & IT_CLOAKING) {if (self.team == other.team) self.alpha = 0.6;else self.alpha = 0.1;} return TRUE;};
1085 //making explosion models that face the viewer (does not work well with chase_active).  for example: float() explosion_customizeentityforclient = {self.angles = vectoangles(other.origin + other.view_ofs - self.origin);self.angles_x = 0 - self.angles_x;};
1086 //implementation notes:
1087 //entity customization is done before per-client culling (visibility for instance) because the entity may be doing setorigin to display itself in different locations on different clients, may be altering its .modelindex, .effects and other fields important to culling, so customized entities increase cpu usage (non-customized entities can use all the early culling they want however, as they are not changing on a per client basis).
1088
1089 //DP_SV_DRAWONLYTOCLIENT
1090 //idea: LordHavoc
1091 //darkplaces implementation: LordHavoc
1092 //field definitions:
1093 .entity drawonlytoclient;
1094 //description:
1095 //the entity is only visible to the specified client.
1096
1097 //DP_SV_DROPCLIENT
1098 //idea: FrikaC
1099 //darkplaces implementation: LordHavoc
1100 //builtin definitions:
1101 void(entity clent) dropclient = #453;
1102 //description:
1103 //causes the server to immediately drop the client, more reliable than stuffcmd(clent, "disconnect\n"); which could be intentionally ignored by the client engine
1104
1105 //DP_SV_EFFECT
1106 //idea: LordHavoc
1107 //darkplaces implementation: LordHavoc
1108 //builtin definitions:
1109 void(vector org, string modelname, float startframe, float endframe, float framerate) effect = #404;
1110 //SVC definitions:
1111 //float svc_effect = #52; // [vector] org [byte] modelindex [byte] startframe [byte] framecount [byte] framerate
1112 //float svc_effect2 = #53; // [vector] org [short] modelindex [byte] startframe [byte] framecount [byte] framerate
1113 //description:
1114 //clientside playback of simple custom sprite effects (explosion sprites, etc).
1115
1116 //DP_SV_ENTITYCONTENTSTRANSITION
1117 //idea: Dresk
1118 //darkplaces implementation: Dresk
1119 //field definitions:
1120 .void(float nOriginalContents, float nNewContents) contentstransition;
1121 //description:
1122 //This field function, when provided, is triggered on an entity when the contents (ie. liquid / water / etc) is changed.
1123 //The first parameter provides the entities original contents, prior to the transition.  The second parameter provides the new contents.
1124 //NOTE: If this field function is provided on an entity, the standard watersplash sound IS SUPPRESSED to allow for authors to create their own transition sounds.
1125
1126 //DP_SV_MOVETYPESTEP_LANDEVENT
1127 //idea: Dresk
1128 //darkplaces implementation: Dresk
1129 //field definitions:
1130 .void(vector vImpactVelocity) movetypesteplandevent;
1131 //description:
1132 //This field function, when provided, is triggered on a MOVETYPE_STEP entity when it experiences  "land event".
1133 // The standard engine behavior for this event is to play the sv_sound_land CVar sound.
1134 //The parameter provides the velocity of the entity at the time of the impact.  The z value may therefore be used to calculate how "hard" the entity struck the surface.
1135 //NOTE: If this field function is provided on a MOVETYPE_STEP entity, the standard sv_sound_land sound IS SUPPRESSED to allow for authors to create their own feedback.
1136
1137 //DP_SV_POINTSOUND
1138 //idea: Dresk
1139 //darkplaces implementation: Dresk
1140 //builtin definitions:
1141 void(vector origin, string sample, float volume, float attenuation) pointsound = #483;
1142 //description:
1143 //Similar to the standard QC sound function, this function takes an origin instead of an entity and omits the channel parameter.
1144 // This allows sounds to be played at arbitrary origins without spawning entities.
1145
1146 //DP_SV_ONENTITYNOSPAWNFUNCTION
1147 //idea: Dresk
1148 //darkplaces implementation: Dresk
1149 //engine-called QC prototypes:
1150 //void() SV_OnEntityNoSpawnFunction;
1151 //description:
1152 // This function is called whenever an entity on the server has no spawn function, and therefore has no defined QC behavior.
1153 // You may as such dictate the behavior as to what happens to the entity.
1154 // To mimic the engine's default behavior, simply call remove(self).
1155
1156 //DP_SV_MODELFLAGS_AS_EFFECTS
1157 //idea: LordHavoc, Dresk
1158 //darkplaces implementation: LordHavoc
1159 //field definitions:
1160 .float modelflags;
1161 //constant definitions:
1162 float EF_NOMODELFLAGS = 8388608; // ignore any effects in a model file and substitute your own
1163 float MF_ROCKET  =   1; // leave a trail
1164 float MF_GRENADE =   2; // leave a trail
1165 float MF_GIB     =   4; // leave a trail
1166 float MF_ROTATE  =   8; // rotate (bonus items)
1167 float MF_TRACER  =  16; // green split trail
1168 float MF_ZOMGIB  =  32; // small blood trail
1169 float MF_TRACER2 =  64; // orange split trail
1170 float MF_TRACER3 = 128; // purple trail
1171 //description:
1172 //this extension allows model flags to be specified on entities so you can add a rocket trail and glow to any entity, etc.
1173 //setting any of these will override the flags the model already has, to disable the model's flags without supplying any of your own you must use EF_NOMODELFLAGS.
1174 //
1175 //silly example modification #1 to W_FireRocket in weapons.qc:
1176 //missile.effects = EF_NOMODELFLAGS; // rocket without a glow/fire trail
1177 //silly example modification #2 to W_FireRocket in weapons.qc:
1178 //missile.modelflags = MF_GIB; // leave a blood trail instead of glow/fire trail
1179 //
1180 //note: you can not combine multiple kinds of trail, only one of them will be active, you can combine MF_ROTATE and the other MF_ flags however, and using EF_NOMODELFLAGS along with these does no harm.
1181 //
1182 //note to engine coders: they are internally encoded in the protocol as extra EF_ flags (shift the values left 24 bits and send them in the protocol that way), so no protocol change was required (however 32bit effects is a protocol extension itself), within the engine they are referred to as EF_ for the 24bit shifted values.
1183
1184 //DP_SV_NETADDRESS
1185 //idea: Dresk
1186 //darkplaces implementation: Dresk
1187 //field definitions:
1188 .string netaddress;
1189 //description:
1190 // provides the netaddress of the associated entity (ie. 127.0.0.1) and "null/botclient" if the netconnection of the entity is invalid
1191
1192 //DP_SV_NODRAWTOCLIENT
1193 //idea: LordHavoc
1194 //darkplaces implementation: LordHavoc
1195 //field definitions:
1196 .entity nodrawtoclient;
1197 //description:
1198 //the entity is not visible to the specified client.
1199
1200 //DP_SV_PING
1201 //idea: LordHavoc
1202 //darkplaces implementation: LordHavoc
1203 //field definitions:
1204 .float ping;
1205 //description:
1206 //continuously updated field indicating client's ping (based on average of last 16 packet time differences).
1207
1208 //DP_SV_POINTPARTICLES
1209 //idea: Spike
1210 //darkplaces implementation: LordHavoc
1211 //function definitions:
1212 float(string effectname) particleeffectnum = #335; // same as in CSQC
1213 void(entity ent, float effectnum, vector start, vector end) trailparticles = #336; // same as in CSQC
1214 void(float effectnum, vector org, vector vel, float howmany) pointparticles = #337; // same as in CSQC
1215 //description:
1216 //provides the ability to spawn non-standard particle effects, typically these are defined in a particle effect information file such as effectinfo.txt in darkplaces.
1217 //this is a port of particle effect features from clientside QC (EXT_CSQC) to server QC, as these effects are potentially useful to all games even if they do not make use of EXT_CSQC.
1218 //warning: server must have same order of effects in effectinfo.txt as client does or the numbers would not match up, except for standard quake effects which are always the same numbers.
1219
1220 //DP_SV_PUNCHVECTOR
1221 //idea: LordHavoc
1222 //darkplaces implementation: LordHavoc
1223 //field definitions:
1224 .vector punchvector;
1225 //description:
1226 //offsets client view in worldspace, similar to view_ofs but all 3 components are used and are sent with at least 8 bits of fraction, this allows the view to be kicked around by damage or hard landings or whatever else, note that unlike punchangle this is not faded over time, it is up to the mod to fade it (see also DP_SV_PLAYERPHYSICS).
1227
1228 //DP_SV_PLAYERPHYSICS
1229 //idea: LordHavoc
1230 //darkplaces implementation: LordHavoc
1231 //field definitions:
1232 .vector movement;
1233 //cvar definitions:
1234 //"sv_playerphysicsqc" (0/1, default 1, allows user to disable qc player physics)
1235 //engine-called QC prototypes:
1236 //void() SV_PlayerPhysics;
1237 //description:
1238 //.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)
1239
1240 //DP_SV_PRINT
1241 //idea: id Software (QuakeWorld Server)
1242 //darkplaces implementation: Black, LordHavoc
1243 void(string s, ...) print = #339; // same number as in EXT_CSQC
1244 //description:
1245 //this is identical to dprint except that it always prints regardless of the developer cvar.
1246
1247 //DP_SV_PRECACHEANYTIME
1248 //idea: id Software (Quake2)
1249 //darkplaces implementation: LordHavoc
1250 //description:
1251 //this extension allows precache_model and precache_sound (and any variants) to be used during the game (with automatic messages to clients to precache the new model/sound indices), also setmodel/sound/ambientsound can be called without precaching first (they will cause an automatic precache).
1252
1253 //DP_SV_QCSTATUS
1254 //idea: div0
1255 //darkplaces implementation: div0
1256 //Fields whose contents are used instead of frags, or set as "qcstatus" field
1257 //in the getstatus/getinfo response.
1258 string worldstatus;
1259 .string clientstatus;
1260
1261 //DP_SV_ROTATINGBMODEL
1262 //idea: id Software
1263 //darkplaces implementation: LordHavoc
1264 //description:
1265 //this extension merely indicates that MOVETYPE_PUSH supports avelocity, allowing rotating brush models to be created, they rotate around their origin (needs rotation supporting qbsp/light utilities because id ones expected bmodel entity origins to be '0 0 0', recommend setting "origin" key in the entity fields in the map before compiling, there may be other methods depending on your qbsp, most are more complicated however).
1266 //tip: level designers can create a func_wall with an origin, and avelocity (for example "avelocity" "0 90 0"), and "nextthink" "99999999" to make a rotating bmodel without any qc modifications, such entities will be solid in stock quake but will not rotate)
1267
1268 //DP_SV_SETCOLOR
1269 //idea: LordHavoc
1270 //darkplaces implementation: LordHavoc
1271 //builtin definitions:
1272 void(entity ent, float colors) setcolor = #401;
1273 //engine called QC functions (optional):
1274 //void(float color) SV_ChangeTeam;
1275 //description:
1276 //setcolor sets the color on a client and updates internal color information accordingly (equivilant to stuffing a "color" command but immediate)
1277 //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.
1278 //the color format is pants + shirt * 16 (0-255 potentially)
1279
1280 //DP_SV_SLOWMO
1281 //idea: LordHavoc
1282 //darkplaces implementation: LordHavoc
1283 //cvars:
1284 //"slowmo" (0+, default 1)
1285 //description:
1286 //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.
1287 //range is 0 to infinite, recommended values to try are 0.1 (very slow, 10% speed), 1 (normal speed), 5 (500% speed).
1288
1289 //DP_SV_WRITEPICTURE
1290 //idea: div0
1291 //darkplaces implementation: div0
1292 //builtin definitions:
1293 void(float to, string s, float sz) WritePicture = #501;
1294 //description:
1295 //writes a picture to the data stream so CSQC can read it using ReadPicture, which has the definition
1296 //  string(void) ReadPicture = #501;
1297 //The picture data is sent as at most sz bytes, by compressing to low quality
1298 //JPEG. The data being sent will be equivalent to:
1299 //  WriteString(to, s);
1300 //  WriteShort(to, imagesize);
1301 //  for(i = 0; i < imagesize; ++i)
1302 //    WriteByte(to, [the i-th byte of the compressed JPEG image]);
1303
1304 //DP_SV_WRITEUNTERMINATEDSTRING
1305 //idea: FrikaC
1306 //darkplaces implementation: Sajt
1307 //builtin definitions:
1308 void(float to, string s) WriteUnterminatedString = #456;
1309 //description:
1310 //like WriteString, but does not write a terminating 0 after the string. This means you can include things like a player's netname in the middle of a string sent over the network. Just be sure to end it up with either a call to WriteString (which includes the trailing 0) or WriteByte(0) to terminate it yourself.
1311 //A historical note: this extension was suggested by FrikaC years ago, more recently Shadowalker has been badmouthing LordHavoc and Spike for stealing 'his' extension writestring2 which does exactly the same thing but uses a different builtin number and name and extension string, this argument hinges on the idea that it was his idea in the first place, which is incorrect as FrikaC first suggested it and used a rough equivilant of it in his FrikBot mod years ago involving WriteByte calls on each character.
1312
1313 //DP_TE_BLOOD
1314 //idea: LordHavoc
1315 //darkplaces implementation: LordHavoc
1316 //builtin definitions:
1317 void(vector org, vector velocity, float howmany) te_blood = #405;
1318 //temp entity definitions:
1319 float TE_BLOOD = 50;
1320 //protocol:
1321 //vector origin
1322 //byte xvelocity (-128 to +127)
1323 //byte yvelocity (-128 to +127)
1324 //byte zvelocity (-128 to +127)
1325 //byte count (0 to 255, how much blood)
1326 //description:
1327 //creates a blood effect.
1328
1329 //DP_TE_BLOODSHOWER
1330 //idea: LordHavoc
1331 //darkplaces implementation: LordHavoc
1332 //builtin definitions:
1333 void(vector mincorner, vector maxcorner, float explosionspeed, float howmany) te_bloodshower = #406;
1334 //temp entity definitions:
1335 //float TE_BLOODSHOWER = 52;
1336 //protocol:
1337 //vector mins (minimum corner of the cube)
1338 //vector maxs (maximum corner of the cube)
1339 //coord explosionspeed (velocity of blood particles flying out of the center)
1340 //short count (number of blood particles)
1341 //description:
1342 //creates an exploding shower of blood, for making gibbings more convincing.
1343
1344 //DP_TE_CUSTOMFLASH
1345 //idea: LordHavoc
1346 //darkplaces implementation: LordHavoc
1347 //builtin definitions:
1348 void(vector org, float radius, float lifetime, vector color) te_customflash = #417;
1349 //temp entity definitions:
1350 //float TE_CUSTOMFLASH = 73;
1351 //protocol:
1352 //vector origin
1353 //byte radius ((MSG_ReadByte() + 1) * 8, meaning 8-2048 unit radius)
1354 //byte lifetime ((MSG_ReadByte() + 1) / 256.0, meaning approximately 0-1 second lifetime)
1355 //byte red (0.0 to 1.0 converted to 0-255)
1356 //byte green (0.0 to 1.0 converted to 0-255)
1357 //byte blue (0.0 to 1.0 converted to 0-255)
1358 //description:
1359 //creates a customized light flash.
1360
1361 //DP_TE_EXPLOSIONRGB
1362 //idea: LordHavoc
1363 //darkplaces implementation: LordHavoc
1364 //builtin definitions:
1365 void(vector org, vector color) te_explosionrgb = #407;
1366 //temp entity definitions:
1367 //float TE_EXPLOSIONRGB = 53;
1368 //protocol:
1369 //vector origin
1370 //byte red (0.0 to 1.0 converted to 0 to 255)
1371 //byte green (0.0 to 1.0 converted to 0 to 255)
1372 //byte blue (0.0 to 1.0 converted to 0 to 255)
1373 //description:
1374 //creates a colored explosion effect.
1375
1376 //DP_TE_FLAMEJET
1377 //idea: LordHavoc
1378 //darkplaces implementation: LordHavoc
1379 //builtin definitions:
1380 void(vector org, vector vel, float howmany) te_flamejet = #457;
1381 //temp entity definitions:
1382 //float TE_FLAMEJET = 74;
1383 //protocol:
1384 //vector origin
1385 //vector velocity
1386 //byte count (0 to 255, how many flame particles)
1387 //description:
1388 //creates a single puff of flame particles.  (not very useful really)
1389
1390 //DP_TE_PARTICLECUBE
1391 //idea: LordHavoc
1392 //darkplaces implementation: LordHavoc
1393 //builtin definitions:
1394 void(vector mincorner, vector maxcorner, vector vel, float howmany, float color, float gravityflag, float randomveljitter) te_particlecube = #408;
1395 //temp entity definitions:
1396 //float TE_PARTICLECUBE = 54;
1397 //protocol:
1398 //vector mins (minimum corner of the cube)
1399 //vector maxs (maximum corner of the cube)
1400 //vector velocity
1401 //short count
1402 //byte color (palette color)
1403 //byte gravity (TRUE or FALSE, FIXME should this be a scaler instead?)
1404 //coord randomvel (how much to jitter the velocity)
1405 //description:
1406 //creates a cloud of particles, useful for forcefields but quite customizable.
1407
1408 //DP_TE_PARTICLERAIN
1409 //idea: LordHavoc
1410 //darkplaces implementation: LordHavoc
1411 //builtin definitions:
1412 void(vector mincorner, vector maxcorner, vector vel, float howmany, float color) te_particlerain = #409;
1413 //temp entity definitions:
1414 //float TE_PARTICLERAIN = 55;
1415 //protocol:
1416 //vector mins (minimum corner of the cube)
1417 //vector maxs (maximum corner of the cube)
1418 //vector velocity (velocity of particles)
1419 //short count (number of particles)
1420 //byte color (8bit palette color)
1421 //description:
1422 //creates a shower of rain, the rain will appear either at the top (if falling down) or bottom (if falling up) of the cube.
1423
1424 //DP_TE_PARTICLESNOW
1425 //idea: LordHavoc
1426 //darkplaces implementation: LordHavoc
1427 //builtin definitions:
1428 void(vector mincorner, vector maxcorner, vector vel, float howmany, float color) te_particlesnow = #410;
1429 //temp entity definitions:
1430 //float TE_PARTICLERAIN = 56;
1431 //protocol:
1432 //vector mins (minimum corner of the cube)
1433 //vector maxs (maximum corner of the cube)
1434 //vector velocity (velocity of particles)
1435 //short count (number of particles)
1436 //byte color (8bit palette color)
1437 //description:
1438 //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.
1439
1440 //DP_TE_PLASMABURN
1441 //idea: LordHavoc
1442 //darkplaces implementation: LordHavoc
1443 //builtin definitions:
1444 void(vector org) te_plasmaburn = #433;
1445 //temp entity definitions:
1446 //float TE_PLASMABURN = 75;
1447 //protocol:
1448 //vector origin
1449 //description:
1450 //creates a small light flash (radius 200, time 0.2) and marks the walls.
1451
1452 //DP_TE_QUADEFFECTS1
1453 //idea: LordHavoc
1454 //darkplaces implementation: LordHavoc
1455 //builtin definitions:
1456 void(vector org) te_gunshotquad = #412;
1457 void(vector org) te_spikequad = #413;
1458 void(vector org) te_superspikequad = #414;
1459 void(vector org) te_explosionquad = #415;
1460 //temp entity definitions:
1461 //float   TE_GUNSHOTQUAD  = 57; // [vector] origin
1462 //float   TE_SPIKEQUAD    = 58; // [vector] origin
1463 //float   TE_SUPERSPIKEQUAD = 59; // [vector] origin
1464 //float   TE_EXPLOSIONQUAD = 70; // [vector] origin
1465 //protocol:
1466 //vector origin
1467 //description:
1468 //all of these just take a location, and are equivilant in function (but not appearance :) to the original TE_GUNSHOT, etc.
1469
1470 //DP_TE_SMALLFLASH
1471 //idea: LordHavoc
1472 //darkplaces implementation: LordHavoc
1473 //builtin definitions:
1474 void(vector org) te_smallflash = #416;
1475 //temp entity definitions:
1476 //float TE_SMALLFLASH = 72;
1477 //protocol:
1478 //vector origin
1479 //description:
1480 //creates a small light flash (radius 200, time 0.2).
1481
1482 //DP_TE_SPARK
1483 //idea: LordHavoc
1484 //darkplaces implementation: LordHavoc
1485 //builtin definitions:
1486 void(vector org, vector vel, float howmany) te_spark = #411;
1487 //temp entity definitions:
1488 //float TE_SPARK = 51;
1489 //protocol:
1490 //vector origin
1491 //byte xvelocity (-128 to 127)
1492 //byte yvelocity (-128 to 127)
1493 //byte zvelocity (-128 to 127)
1494 //byte count (number of sparks)
1495 //description:
1496 //creates a shower of sparks and a smoke puff.
1497
1498 //DP_TE_STANDARDEFFECTBUILTINS
1499 //idea: LordHavoc
1500 //darkplaces implementation: LordHavoc
1501 //builtin definitions:
1502 void(vector org) te_gunshot = #418;
1503 void(vector org) te_spike = #419;
1504 void(vector org) te_superspike = #420;
1505 void(vector org) te_explosion = #421;
1506 void(vector org) te_tarexplosion = #422;
1507 void(vector org) te_wizspike = #423;
1508 void(vector org) te_knightspike = #424;
1509 void(vector org) te_lavasplash = #425;
1510 void(vector org) te_teleport = #426;
1511 void(vector org, float color, float colorlength) te_explosion2 = #427;
1512 void(entity own, vector start, vector end) te_lightning1 = #428;
1513 void(entity own, vector start, vector end) te_lightning2 = #429;
1514 void(entity own, vector start, vector end) te_lightning3 = #430;
1515 void(entity own, vector start, vector end) te_beam = #431;
1516 //description:
1517 //to make life easier on mod coders.
1518
1519 //DP_TRACE_HITCONTENTSMASK_SURFACEINFO
1520 //idea: LordHavoc
1521 //darkplaces implementation: LordHavoc
1522 //globals:
1523 .float dphitcontentsmask; // if non-zero on the entity passed to traceline/tracebox/tracetoss this will override the normal collidable contents rules and instead hit these contents values (for example AI can use tracelines that hit DONOTENTER if it wants to, by simply changing this field on the entity passed to traceline), this affects normal movement as well as trace calls
1524 float trace_dpstartcontents; // DPCONTENTS_ value at start position of trace
1525 float trace_dphitcontents; // DPCONTENTS_ value of impacted surface (not contents at impact point, just contents of the surface that was hit)
1526 float trace_dphitq3surfaceflags; // Q3SURFACEFLAG_ value of impacted surface
1527 string trace_dphittexturename; // texture name of impacted surface
1528 //constants:
1529 float DPCONTENTS_SOLID = 1; // hit a bmodel, not a bounding box
1530 float DPCONTENTS_WATER = 2;
1531 float DPCONTENTS_SLIME = 4;
1532 float DPCONTENTS_LAVA = 8;
1533 float DPCONTENTS_SKY = 16;
1534 float DPCONTENTS_BODY = 32; // hit a bounding box, not a bmodel
1535 float DPCONTENTS_CORPSE = 64; // hit a SOLID_CORPSE entity
1536 float DPCONTENTS_NODROP = 128; // an area where backpacks should not spawn
1537 float DPCONTENTS_PLAYERCLIP = 256; // blocks player movement
1538 float DPCONTENTS_MONSTERCLIP = 512; // blocks monster movement
1539 float DPCONTENTS_DONOTENTER = 1024; // AI hint brush
1540 float DPCONTENTS_LIQUIDSMASK = 14; // WATER | SLIME | LAVA
1541 float Q3SURFACEFLAG_NODAMAGE = 1;
1542 float Q3SURFACEFLAG_SLICK = 2; // low friction surface
1543 float Q3SURFACEFLAG_SKY = 4; // sky surface (also has NOIMPACT and NOMARKS set)
1544 float Q3SURFACEFLAG_LADDER = 8; // climbable surface
1545 float Q3SURFACEFLAG_NOIMPACT = 16; // projectiles should remove themselves on impact (this is set on sky)
1546 float Q3SURFACEFLAG_NOMARKS = 32; // projectiles should not leave marks, such as decals (this is set on sky)
1547 float Q3SURFACEFLAG_FLESH = 64; // projectiles should do a fleshy effect (blood?) on impact
1548 //float Q3SURFACEFLAG_NODRAW = 128; // compiler hint (not important to qc)
1549 //float Q3SURFACEFLAG_HINT = 256; // compiler hint (not important to qc)
1550 //float Q3SURFACEFLAG_SKIP = 512; // compiler hint (not important to qc)
1551 //float Q3SURFACEFLAG_NOLIGHTMAP = 1024; // compiler hint (not important to qc)
1552 //float Q3SURFACEFLAG_POINTLIGHT = 2048; // compiler hint (not important to qc)
1553 float Q3SURFACEFLAG_METALSTEPS = 4096; // walking on this surface should make metal step sounds
1554 float Q3SURFACEFLAG_NOSTEPS = 8192; // walking on this surface should not make footstep sounds
1555 //float Q3SURFACEFLAG_NONSOLID = 16384; // compiler hint (not important to qc)
1556 //float Q3SURFACEFLAG_LIGHTFILTER = 32768; // compiler hint (not important to qc)
1557 //float Q3SURFACEFLAG_ALPHASHADOW = 65536; // compiler hint (not important to qc)
1558 //float Q3SURFACEFLAG_NODLIGHT = 131072; // compiler hint (not important to qc)
1559 //float Q3SURFACEFLAG_DUST = 262144; // translucent 'light beam' effect (not important to qc)
1560 //description:
1561 //adds additional information after a traceline/tracebox/tracetoss call.
1562 //also (very important) sets trace_* globals before calling .touch functions,
1563 //this allows them to inspect the nature of the collision (for example
1564 //determining if a projectile hit sky), clears trace_* variables for the other
1565 //object in a touch event (that is to say, a projectile moving will see the
1566 //trace results in its .touch function, but the player it hit will see very
1567 //little information in the trace_ variables as it was not moving at the time)
1568
1569 //DP_VIEWZOOM
1570 //idea: LordHavoc
1571 //darkplaces implementation: LordHavoc
1572 //field definitions:
1573 .float viewzoom;
1574 //description:
1575 //scales fov and sensitivity of player, valid range is 0 to 1 (intended for sniper rifle zooming, and such)
1576
1577 //EXT_BITSHIFT
1578 //idea: Spike
1579 //darkplaces implementation: [515]
1580 //builtin definitions:
1581 float(float number, float quantity) bitshift = #218;
1582 //description:
1583 //multiplies number by a power of 2 corresponding to quantity (0 = *1, 1 = *2, 2 = *4, 3 = *8, -1 = /2, -2 = /4x, etc), and rounds down (due to integer math) like other bit operations do (& and | and the like).
1584 //note: it is faster to use multiply if you are shifting by a constant, avoiding the quakec function call cost, however that does not do a floor for you.
1585
1586 //FRIK_FILE
1587 //idea: FrikaC
1588 //darkplaces implementation: LordHavoc
1589 //builtin definitions:
1590 float(string s) stof = #81; // get numerical value from a string
1591 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
1592 void(float fhandle) fclose = #111; // closes a file
1593 string(float fhandle) fgets = #112; // reads a line of text from the file and returns as a tempstring
1594 void(float fhandle, string s, ...) fputs = #113; // writes a line of text to the end of the file
1595 float(string s) strlen = #114; // returns how many characters are in a string
1596 string(string s1, string s2, ...) strcat = #115; // concatenates two or more strings (for example "abc", "def" would return "abcdef") and returns as a tempstring
1597 string(string s, float start, float length) substring = #116; // returns a section of a string as a tempstring
1598 vector(string s) stov = #117; // returns vector value from a string
1599 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)
1600 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!!!)
1601 //constants:
1602 float FILE_READ = 0;
1603 float FILE_APPEND = 1;
1604 float FILE_WRITE = 2;
1605 //cvars:
1606 //pr_zone_min_strings : default 64 (64k), min 64 (64k), max 8192 (8mb)
1607 //description:
1608 //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.
1609 //
1610 //NOTE: strzone functionality is partially superseded by
1611 //DP_QC_UNLIMITEDTEMPSTRINGS when longterm storage is not needed
1612
1613 //KRIMZON_SV_PARSECLIENTCOMMAND
1614 //idea: KrimZon
1615 //darkplaces implementation: KrimZon, LordHavoc
1616 //engine-called QC prototypes:
1617 //void(string s) SV_ParseClientCommand;
1618 //builtin definitions:
1619 void(entity e, string s) clientcommand = #440;
1620 float(string s) tokenize = #441;
1621 string(float n) argv = #442;
1622 //description:
1623 //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
1624
1625 //NEH_CMD_PLAY2
1626 //idea: Nehahra
1627 //darkplaces implementation: LordHavoc
1628 //description:
1629 //shows that the engine supports the "play2" console command (plays a sound without spatialization).
1630
1631 //NEH_RESTOREGAME
1632 //idea: Nehahra
1633 //darkplaces implementation: LordHavoc
1634 //engine-called QC prototypes:
1635 //void() RestoreGame;
1636 //description:
1637 //when a savegame is loaded, this function is called
1638
1639 //NEXUIZ_PLAYERMODEL
1640 //idea: Nexuiz
1641 //darkplaces implementation: Black
1642 //console commands:
1643 //playermodel <name> - FIXME: EXAMPLE NEEDED
1644 //playerskin <name> - FIXME: EXAMPLE NEEDED
1645 //field definitions:
1646 .string playermodel; // name of player model sent by client
1647 .string playerskin; // name of player skin sent by client
1648 //description:
1649 //these client properties are used by Nexuiz.
1650
1651 //NXQ_GFX_LETTERBOX
1652 //idea: nxQuake
1653 //darkplaces implementation: LordHavoc
1654 //description:
1655 //shows that the engine supports the "r_letterbox" console variable, set to values in the range 0-100 this restricts the view vertically (and turns off sbar and crosshair), value is a 0-100 percentage of how much to constrict the view, <=0 = normal view height, 25 = 75% of normal view height, 50 = 50%, 75 = 25%, >=100 = no view
1656
1657 //PRYDON_CLIENTCURSOR
1658 //idea: FrikaC
1659 //darkplaces implementation: LordHavoc
1660 //effects bit:
1661 float EF_SELECTABLE = 16384; // allows cursor to highlight entity (brighten)
1662 //field definitions:
1663 .float cursor_active; // true if cl_prydoncursor mode is on
1664 .vector cursor_screen; // screen position of cursor as -1 to +1 in _x and _y (_z unused)
1665 .vector cursor_trace_start; // position of camera
1666 .vector cursor_trace_endpos; // position of cursor in world (as traced from camera)
1667 .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)
1668 //cvar definitions:
1669 //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)
1670 //description:
1671 //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.
1672 //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.
1673 //the clientside trace skips transparent entities (except those marked EF_SELECTABLE).
1674 //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).
1675 //intended to be used by Prydon Gate.
1676
1677 //TENEBRAE_GFX_DLIGHTS
1678 //idea: Tenebrae
1679 //darkplaces implementation: LordHavoc
1680 //fields:
1681 .float light_lev; // radius (does not affect brightness), typical value 350
1682 .vector color; // color (does not affect radius), typical value '1 1 1' (bright white), can be up to '255 255 255' (nuclear blast)
1683 .float style; // light style (like normal light entities, flickering torches or switchable, etc)
1684 .float pflags; // flags (see PFLAGS_ constants)
1685 .vector angles; // orientation of the light
1686 .float skin; // cubemap filter number, can be 1-255 (0 is assumed to be none, and tenebrae only allows 16-255), this selects a projective light filter, a value of 1 loads cubemaps/1posx.tga and cubemaps/1negx.tga and posy, negy, posz, and negz, similar to skybox but some sides need to be rotated or flipped
1687 //constants:
1688 float PFLAGS_NOSHADOW = 1; // light does not cast shadows
1689 float PFLAGS_CORONA = 2; // light has a corona flare
1690 float PFLAGS_FULLDYNAMIC = 128; // light enable (without this set no light is produced!)
1691 //description:
1692 //more powerful dynamic light settings
1693 //warning: it is best not to use cubemaps on a light entity that has a model, as using a skin number that a model does not have will cause issues in glquake, and produce warnings in darkplaces (use developer 1 to see them)
1694 //changes compared to tenebrae (because they're too 'leet' for standards):
1695 //note: networking should send entities with PFLAGS_FULLDYNAMIC set even if they have no model (lights in general do not have a model, nor should they)
1696 //EF_FULLDYNAMIC effects flag replaced by PFLAGS_FULLDYNAMIC flag (EF_FULLDYNAMIC conflicts with EF_NODRAW)
1697
1698 //TW_SV_STEPCONTROL
1699 //idea: Transfusion
1700 //darkplaces implementation: LordHavoc
1701 //cvars:
1702 //sv_jumpstep (0/1, default 1)
1703 //sv_stepheight (default 18)
1704 //description:
1705 //sv_jumpstep allows stepping up onto stairs while airborn, sv_stepheight controls how high a single step can be.
1706
1707 //FTE_STRINGS
1708 //idea: many
1709 //darkplaces implementation: KrimZon
1710 //description:
1711 //various string manipulation functions
1712 float(string str, string sub, float startpos) strstrofs = #221;
1713 float(string str, float ofs) str2chr = #222;
1714 string(float c, ...) chr2str = #223;
1715 string(float ccase, float calpha, float cnum, string s, ...) strconv = #224;
1716 string(float chars, string s, ...) strpad = #225;
1717 string(string info, string key, string value, ...) infoadd = #226;
1718 string(string info, string key) infoget = #227;
1719 float(string s1, string s2, float len) strncmp = #228;
1720 float(string s1, string s2) strcasecmp = #229;
1721 float(string s1, string s2, float len) strncasecmp = #230;
1722
1723 //DP_CON_BESTWEAPON
1724 //idea: many
1725 //darkplaces implementation: div0
1726 //description:
1727 //allows QC to register weapon properties for use by the bestweapon command, for mods that change required ammo count or type for the weapons
1728 //it is done using console commands sent via stuffcmd:
1729 //  register_bestweapon quake
1730 //  register_bestweapon clear
1731 //  register_bestweapon <shortname> <impulse> <itemcode> <activeweaponcode> <ammostat> <ammomin>
1732 //for example, this is what Quake uses:
1733 //  register_bestweapon 1 1 4096 4096 6 0 // STAT_SHELLS is 6
1734 //  register_bestweapon 2 2    1    1 6 1
1735 //  register_bestweapon 3 3    2    2 6 1
1736 //  register_bestweapon 4 4    4    4 7 1 // STAT_NAILS is 7
1737 //  register_bestweapon 5 5    8    8 7 1
1738 //  register_bestweapon 6 6   16   16 8 1 // STAT_ROCKETS is 8
1739 //  register_bestweapon 7 7   32   32 8 1
1740 //  register_bestweapon 8 8   64   64 9 1 // STAT_CELLS is 9
1741 //after each map client initialization, this is reset back to Quake settings. So you should send these data in ClientConnect.
1742 //also, this extension introduces a new "cycleweapon" command to the user.
1743
1744 //DP_QC_STRINGBUFFERS
1745 //idea: ??
1746 //darkplaces implementation: LordHavoc
1747 //functions to manage string buffer objects - that is, arbitrary length string arrays that are handled by the engine
1748 float() buf_create = #460;
1749 void(float bufhandle) buf_del = #461;
1750 float(float bufhandle) buf_getsize = #462;
1751 void(float bufhandle_from, float bufhandle_to) buf_copy = #463;
1752 void(float bufhandle, float sortpower, float backward) buf_sort = #464;
1753 string(float bufhandle, string glue) buf_implode = #465;
1754 string(float bufhandle, float string_index) bufstr_get = #466;
1755 void(float bufhandle, float string_index, string str) bufstr_set = #467;
1756 float(float bufhandle, string str, float order) bufstr_add = #468;
1757 void(float bufhandle, float string_index) bufstr_free = #469;
1758
1759 //DP_QC_STRREPLACE
1760 //idea: Sajt
1761 //darkplaces implementation: Sajt
1762 //builtin definitions:
1763 string(string search, string replace, string subject) strreplace = #484;
1764 string(string search, string replace, string subject) strireplace = #485;
1765 //description:
1766 //strreplace replaces all occurrences of 'search' with 'replace' in the string 'subject', and returns the result as a tempstring.
1767 //strireplace does the same but uses case-insensitive matching of the 'search' term
1768 //
1769 //DP_QC_CRC16
1770 //idea: div0
1771 //darkplaces implementation: div0
1772 //Some hash function to build hash tables with. This has to be be the CRC-16-CCITT that is also required for the QuakeWorld download protocol.
1773 //When caseinsensitive is set, the CRC is calculated of the lower cased string.
1774 float(float caseinsensitive, string s, ...) crc16 = #494;
1775
1776 //DP_SV_SHUTDOWN
1777 //idea: div0
1778 //darkplaces implementation: div0
1779 //A function that gets called just before progs exit. To save persistent data from.
1780 //It is not called on a crash or error.
1781 //void SV_Shutdown();
1782
1783 //EXT_CSQC
1784 // #232 void(float index, float type, .void field) SV_AddStat (EXT_CSQC)
1785 void(float index, float type, ...) addstat = #232;