]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/common/constants.qh
fix accidentally not commented out stuff in gamecommand markup
[divverent/nexuiz.git] / data / qcsrc / common / constants.qh
1 // COMMIT-TODO: Update if necessary before committing
2 // Revision 1: additional statistics sent (flag caps, returns, deaths)
3 // Revision 2: Mapvote preview pictures
4 // Revision 3: optimized map vote protocol
5 // Revision 4: CSQC config var system
6 // Revision 5: mapvote time fix
7 // Revision 6: more robust against packet loss/delays, also show not yet connected clients
8 // Revision 7: packet loss column
9 // Revision 8: race
10 // Revision 9: race delta
11 // Revision 10: scoreboard force
12 // Revision 11: scoreboard unforce; spectator support beginning
13 // Revision 12: smaller scores updates (SERVER: requires new engine)
14 // Revision 13: pointparticles
15 // Revision 14: laser
16 // Revision 15: zoom
17 // Revision 16: multi-weapons
18 // Revision 17: multi-weaponimpulses
19 // Revision 18: warmup
20 // Revision 19: fog
21 // Revision 20: naggers
22 // Revision 21: entcs for players optimized (position data down from 12 to 7 bytes); waypointsprites in csqc for team radar
23 // Revision 22: hook shot origin
24 #define CSQC_REVISION 22
25
26 // probably put these in common/
27 // so server/ and client/ can be synced better
28 const float GAME_DEATHMATCH             = 1;
29 const float GAME_TEAM_DEATHMATCH        = 2;
30 const float GAME_DOMINATION             = 3;
31 const float GAME_CTF                    = 4;
32 const float GAME_RUNEMATCH              = 5;
33 const float GAME_LMS                    = 6;
34 const float GAME_ARENA          = 7;
35 const float GAME_KEYHUNT                = 8;
36 const float GAME_ASSAULT                = 9;
37 const float GAME_ONSLAUGHT      = 10;
38 const float GAME_RACE   = 11;
39 const float GAME_NEXBALL = 12;
40 const float GAME_CTS = 13;
41
42 const float AS_STRING           = 1;
43 const float AS_INT              = 2;
44 const float AS_FLOAT_TRUNCATED  = 2;
45 const float AS_FLOAT            = 8;
46
47 const float TE_CSQC_PICTURE = 100;
48 const float TE_CSQC_RACE = 101;
49 const float TE_CSQC_SPAWN = 102;
50 const float TE_CSQC_ZCURVEPARTICLES = 103;
51 const float TE_CSQC_NEXGUNBEAMPARTICLE = 104;
52 const float TE_CSQC_LIGHTNINGARC = 105;
53
54 const float RACE_NET_CHECKPOINT_HIT_QUALIFYING = 0; // byte checkpoint, short time, short recordtime, string recordholder
55 const float RACE_NET_CHECKPOINT_CLEAR = 1;
56 const float RACE_NET_CHECKPOINT_NEXT_QUALIFYING = 2; // byte nextcheckpoint, short recordtime, string recordholder
57 const float RACE_NET_CHECKPOINT_HIT_RACE = 3; // byte checkpoint, short delta, byte lapsdelta, string opponent
58 const float RACE_NET_CHECKPOINT_HIT_RACE_BY_OPPONENT = 4; // byte checkpoint, short delta, byte lapsdelta, string opponent
59 const float RACE_NET_CHECKPOINT_NEXT_SPEC_QUALIFYING = 5; // byte nextcheckpoint, float laptime, short recordtime, string recordholder
60 const float RACE_NET_PENALTY_RACE = 6; // byte penaltytime, string reason
61 const float RACE_NET_PENALTY_QUALIFYING = 7; // byte penaltytime, string reason
62
63 const float ENT_CLIENT = 0;
64 const float ENT_CLIENT_DEAD = 1;
65 const float ENT_CLIENT_ENTCS = 2;
66 const float ENT_CLIENT_SCORES_INFO = 3;
67 const float ENT_CLIENT_SCORES = 4;
68 const float ENT_CLIENT_TEAMSCORES = 5;
69 const float ENT_CLIENT_POINTPARTICLES = 6;
70 const float ENT_CLIENT_RAINSNOW = 7;
71 const float ENT_CLIENT_LASER = 8;
72 const float ENT_CLIENT_NAGGER = 9; // flags [votecalledvote]
73 const float ENT_CLIENT_WAYPOINT = 10; // flags origin [team displayrule] [spritename] [spritename2] [spritename3] [lifetime maxdistance hideable]
74 const float ENT_CLIENT_RADARLINK = 11; // flags [startorigin] [endorigin] [startcolor+16*endcolor]
75 const float ENT_CLIENT_PROJECTILE = 12;
76 const float ENT_CLIENT_GIBSPLASH = 13;
77 const float ENT_CLIENT_DAMAGEINFO = 14;
78 const float ENT_CLIENT_CASING = 15;
79 const float ENT_CLIENT_INIT = 16;
80 const float ENT_CLIENT_MAPVOTE = 17;
81 const float ENT_CLIENT_CLIENTDATA = 18;
82 const float ENT_CLIENT_RANDOMSEED = 19;
83 const float ENT_CLIENT_WALL = 20;
84 const float ENT_CLIENT_SPIDERBOT = 21;
85
86 const float ENT_CLIENT_TURRET = 40;
87
88 const float SPRITERULE_DEFAULT = 0;
89 const float SPRITERULE_TEAMPLAY = 1;
90
91 const float RADARICON_FLAG = 1;
92 const float RADARICON_FLAGCARRIER = 1;
93 const float RADARICON_HERE = 1; // TODO make these 3 and 4, and make images for them
94 const float RADARICON_DANGER = 1;
95 const float RADARICON_WAYPOINT = 1;
96 const float RADARICON_HELPME = 1;
97 const float RADARICON_CONTROLPOINT = 1;
98 const float RADARICON_GENERATOR = 1;
99 const float RADARICON_OBJECTIVE = 1;
100 const float RADARICON_DOMPOINT = 1;
101 const float RADARICON_POWERUP = 1;
102
103 ///////////////////////////
104 // key constants
105
106 //
107 // these are the key numbers that should be passed to Key_Event
108 //
109 const float K_TAB                       =       9;
110 const float K_ENTER             =       13;
111 const float K_ESCAPE            =       27;
112 const float K_SPACE             =       32;
113
114 // normal keys should be passed as lowercased ascii
115
116 const float K_BACKSPACE =       127;
117 const float K_UPARROW           =       128;
118 const float K_DOWNARROW =       129;
119 const float K_LEFTARROW =       130;
120 const float K_RIGHTARROW        =       131;
121
122 const float K_ALT               =       132;
123 const float K_CTRL      =       133;
124 const float K_SHIFT     =       134;
125 const float K_F1                =       135;
126 const float K_F2                =       136;
127 const float K_F3                =       137;
128 const float K_F4                =       138;
129 const float K_F5                =       139;
130 const float K_F6                =       140;
131 const float K_F7                =       141;
132 const float K_F8                =       142;
133 const float K_F9                =       143;
134 const float K_F10               =       144;
135 const float K_F11               =       145;
136 const float K_F12               =       146;
137 const float K_INS               =       147;
138 const float K_DEL               =       148;
139 const float K_PGDN      =       149;
140 const float K_PGUP      =       150;
141 const float K_HOME      =       151;
142 const float K_END               =       152;
143
144 const float K_KP_HOME                   =       160;
145 const float K_KP_UPARROW                =       161;
146 const float K_KP_PGUP                   =       162;
147 const float K_KP_LEFTARROW      =       163;
148 const float K_KP_5                      =       164;
149 const float K_KP_RIGHTARROW     =       165;
150 const float K_KP_END                    =       166;
151 const float K_KP_DOWNARROW      =       167;
152 const float K_KP_PGDN                   =       168;
153 const float K_KP_ENTER          =       169;
154 const float K_KP_INS            =       170;
155 const float K_KP_DEL                    =       171;
156 const float K_KP_SLASH          =       172;
157 const float K_KP_MINUS          =       173;
158 const float K_KP_PLUS                   =       174;
159
160 const float K_PAUSE             =       255;
161
162 //
163 // joystick buttons
164 //
165 const float K_JOY1              =       768;
166 const float K_JOY2              =       769;
167 const float K_JOY3              =       770;
168 const float K_JOY4              =       771;
169
170 //
171 // aux keys are for multi-buttoned joysticks to generate so they can use
172 // the normal binding process
173 //
174 const float K_AUX1              =       772;
175 const float K_AUX2              =       773;
176 const float K_AUX3              =       774;
177 const float K_AUX4              =       775;
178 const float K_AUX5              =       776;
179 const float K_AUX6              =       777;
180 const float K_AUX7              =       778;
181 const float K_AUX8              =       779;
182 const float K_AUX9              =       780;
183 const float K_AUX10             =       781;
184 const float K_AUX11             =       782;
185 const float K_AUX12             =       783;
186 const float K_AUX13             =       784;
187 const float K_AUX14             =       785;
188 const float K_AUX15             =       786;
189 const float K_AUX16             =       787;
190 const float K_AUX17             =       788;
191 const float K_AUX18             =       789;
192 const float K_AUX19             =       790;
193 const float K_AUX20             =       791;
194 const float K_AUX21             =       792;
195 const float K_AUX22             =       793;
196 const float K_AUX23             =       794;
197 const float K_AUX24             =       795;
198 const float K_AUX25             =       796;
199 const float K_AUX26             =       797;
200 const float K_AUX27             =       798;
201 const float K_AUX28             =       799;
202 const float K_AUX29             =       800;
203 const float K_AUX30             =       801;
204 const float K_AUX31             =       802;
205 const float K_AUX32             =       803;
206
207 //
208 // mouse buttons generate virtual keys
209 //
210 const float K_MOUSE1            =       512;
211 const float K_MOUSE2            =       513;
212 const float K_MOUSE3            =       514;
213 const float K_MWHEELUP  =       515;
214 const float K_MWHEELDOWN        =       516;
215 const float K_MOUSE4            =       517;
216 const float K_MOUSE5            =       518;
217 const float K_MOUSE6            =       519;
218 const float K_MOUSE7            =       520;
219 const float K_MOUSE8            =       521;
220 const float K_MOUSE9            =       522;
221 const float K_MOUSE10           =       523;
222 const float K_MOUSE11           =       524;
223 const float K_MOUSE12           =       525;
224 const float K_MOUSE13           =       526;
225 const float K_MOUSE14           =       527;
226 const float K_MOUSE15           =       528;
227 const float K_MOUSE16           =       529;
228
229 ///////////////////////////
230 // keys pressed
231 const float KEY_FORWARD         =       1;
232 const float KEY_BACKWARD        =       2;
233 const float KEY_LEFT            =       4;
234 const float KEY_RIGHT           =       8;
235 const float KEY_JUMP            =       16;
236 const float KEY_CROUCH          =       32;
237
238 ///////////////////////////
239 // cvar constants
240
241 float CVAR_SAVE         = 1;
242 float CVAR_NOTIFY       = 2;
243 float CVAR_READONLY     = 4;
244
245 ///////////////////////////
246 // csqc communication stuff
247
248 const float STAT_KH_KEYS = 32;
249 const float STAT_CTF_STATE = 33;
250 const float STAT_WEAPONS = 35;
251 const float STAT_SWITCHWEAPON = 36;
252 const float STAT_GAMESTARTTIME = 37;
253 const float STAT_STRENGTH_FINISHED = 38;
254 const float STAT_INVINCIBLE_FINISHED = 39;
255 const float STAT_DAMAGE_HITS = 40; // Used by the weapon stats code, represents the total amount of damage done to other players
256 const float STAT_DAMAGE_FIRED = 41;// Used by the weapon stats code, represents the total amount of potential damage fired
257 const float STAT_PRESSED_KEYS = 42;
258 const float STAT_ALLOW_OLDNEXBEAM = 43; // this stat could later contain some other bits of info, like, more server-side particle config
259 const float STAT_FUEL = 44;
260 const float STAT_NB_METERSTART = 45;
261 const float STAT_SHOTORG = 46; // compressShotOrigin
262 const float STAT_LEADLIMIT = 47;
263 const float STAT_BULLETS_LOADED = 48;
264 const float CTF_STATE_ATTACK = 1;
265 const float CTF_STATE_DEFEND = 2;
266 const float CTF_STATE_COMMANDER = 3;
267
268 const float STAT_HUD = 50;
269 const float HUD_NORMAL = 0;
270 const float HUD_SPIDEBOT = 10;
271
272 const float STAT_SPIDERBOT_HEALTH  = 60;
273 const float STAT_SPIDERBOT_ROCKETS = 61;
274 const float STAT_SPIDERBOT_HEAT    = 62;
275 const float STAT_SPIDERBOT_RELOAD  = 63;
276 const float STAT_SPIDERBOT_ENERGY  = 64;
277 const float STAT_SPIDERBOT_SHIELD  = 65;
278
279 //const float STAT_SPIDERBOT_AIM     53 // compressShotOrigin
280
281 //const float STAT_SPIDERBOT_TARGET  54 // compressShotOrigin
282
283
284
285
286 // moved that here so the client knows the max.
287 // # of maps, I'll use arrays for them :P
288 #define MAPVOTE_COUNT 10
289
290 /**
291  * Lower scores are better (e.g. suicides)
292  */
293 #define SFL_LOWER_IS_BETTER     1
294
295 /**
296  * Don't show zero values as scores
297  */
298 #define SFL_HIDE_ZERO           2
299
300 /**
301  * Allow a column to be hidden (do not automatically add it even if it is a sorting key)
302  */
303 #define SFL_ALLOW_HIDE         16
304
305 /**
306  * Display as a rank (with st, nd, rd, th suffix)
307  */
308 #define SFL_RANK               32
309
310 /**
311  * Display as mm:ss.s, value is stored as 10ths of a second (AND 0 is the worst possible value!)
312  */
313 #define SFL_TIME               64
314
315 // not an extra constant yet
316 #define SFL_ZERO_IS_WORST SFL_TIME
317
318 /**
319  * Scoring priority (NOTE: PRIMARY is used for fraglimit)
320  */
321 #define SFL_SORT_PRIO_SECONDARY 4
322 #define SFL_SORT_PRIO_PRIMARY   8
323 #define SFL_SORT_PRIO_MASK     12
324
325 /**
326  * Score indices
327  */
328 #define MAX_SCORE 10
329 #define MAX_TEAMSCORE 2
330
331 #define ST_SCORE 0
332 #define SP_KILLS 0
333 #define SP_DEATHS 1
334 #define SP_SUICIDES 2
335 #define SP_SCORE 3
336 // game mode specific indices are not in common/, but in server/scores_rules.qc!
337
338 // this assignment must match menu/nexuiz/dialog_settings_misc.c!
339 float   CHAN_AUTO                               = 0;
340         // on world: announcers, ...                     INFO
341         // on players: item pickup                       ITEMS
342         // on entities: UNUSED
343         // on csqc: UNUSED
344 float   CHAN_WEAPON                             = 1; // Weapon fire
345         // on world: UNUSED
346         // on players: weapon firing                     WEAPONS
347         // on entities: turret firing                    WEAPONS
348         // on csqc: UNUSED
349 float   CHAN_VOICE                              = 2; // Voice/Radio
350         // on world: UNUSED
351         // on players: voice                             VOICE
352         // on entities: ambient                          AMBIENT
353         // on csqc: UNUSED
354 float   CHAN_TRIGGER                    = 3; // Triggers/Items
355         // on world: UNUSED
356         // on players: item pickup                       ITEMS
357         // on entities: platforms moving etc.            ITEMS
358         // on csqc: UNUSED
359 float   CHAN_PROJECTILE                 = 4; // Projectiles
360         // on world: UNUSED
361         // on players: projectiles hitting player        SHOTS
362         // on entities: projectiles                      SHOTS
363         // on csqc: projectile sounds                    SHOTS
364 float   CHAN_WEAPON2                    = 5; // Nex fire (separated as it is a very long sound)
365         // on world: UNUSED
366         // on players: weapon firing                     WEAPONS
367         // on entities: turret firing                    WEAPONS
368         // on csqc: UNUSED
369 float   CHAN_PAIN                               = 6; // Pain
370         // on world: UNUSED
371         // on players: pain                              PAIN
372         // on entities: projectiles flying               SHOTS
373         // on csqc: player pain                          PAIN
374 float   CHAN_PLAYER                             = 7; // Player body
375         // on world: UNUSED
376         // on players: player sounds                     PLAYER
377         // on entities: player sounds                    PLAYER
378         // on csqc: UNUSED
379
380 float   ATTN_NONE                               = 0;
381 float   ATTN_MIN                                = 0.015625;
382 float   ATTN_NORM                               = 0.5;
383 float   ATTN_IDLE                               = 2;
384 float   ATTN_STATIC                             = 3;
385 float   ATTN_MAX                                = 3.984375;
386
387 #define VOL_BASE 0.7
388 #define VOL_BASEVOICE 1.0
389
390 // this sets sounds and other properties of the projectiles in csqc
391 float PROJECTILE_ELECTRO = 1;
392 float PROJECTILE_ROCKET = 2;
393 float PROJECTILE_BULLET = 4;
394 float PROJECTILE_CRYLINK = 5;
395 float PROJECTILE_ELECTRO_BEAM = 6;
396 float PROJECTILE_GRENADE = 7;
397 float PROJECTILE_GRENADE_BOUNCING = 8;
398 float PROJECTILE_LASER = 9;
399 float PROJECTILE_HLAC = 10;
400 float PROJECTILE_PORTO_RED = 13;
401 float PROJECTILE_PORTO_BLUE = 14;
402 float PROJECTILE_HOOKBOMB = 15;
403 float PROJECTILE_HAGAR = 16;
404 float PROJECTILE_HAGAR_BOUNCING = 17;
405 float PROJECTILE_BULLET_GLOWING = 18;
406 float PROJECTILE_CRYLINK_BOUNCING = 19;
407
408 float SPECIES_HUMAN        =  0;
409 float SPECIES_ROBOT_SHINY  =  1;
410 float SPECIES_ALIEN        =  2;
411 float SPECIES_ROBOT_RUSTY  =  3;
412 float SPECIES_ANIMAL       =  4;
413 float SPECIES_RESERVED     = 15;
414
415 // Deathtypes (weapon deathtypes are the IT_* constants below)
416 // NOTE: when adding death types, please add an explanation to Docs/spamlog.txt too.
417 float DEATH_SPECIAL_START = 10000;
418 float DEATH_FALL = 10000;
419 float DEATH_TELEFRAG = 10001;
420 float DEATH_DROWN = 10002;
421 float DEATH_HURTTRIGGER = 10003;
422 float DEATH_LAVA = 10004;
423 float DEATH_SLIME = 10005;
424 float DEATH_KILL = 10006;
425 float DEATH_NOAMMO = 10007;
426 float DEATH_SWAMP = 10008;
427 float DEATH_TEAMCHANGE = 10009;
428 float DEATH_AUTOTEAMCHANGE = 10010;
429 float DEATH_CAMP = 10011;
430 float DEATH_SHOOTING_STAR = 10012;
431 float DEATH_ROT = 10013;
432 float DEATH_MIRRORDAMAGE = 10014;
433 float DEATH_TOUCHEXPLODE = 10015;
434 float DEATH_CHEAT = 10016;
435 float DEATH_TURRET = 10100;
436
437 float DEATH_WEAPONMASK = 0xFF;
438 float DEATH_HITTYPEMASK = 0x1F00; // which is WAY below 10000 used for normal deaths
439 float HITTYPE_SECONDARY = 0x100;
440 float HITTYPE_SPLASH = 0x200;
441 float HITTYPE_BOUNCE = 0x400;
442 float HITTYPE_HEADSHOT = 0x800;
443 float HITTYPE_RESERVED = 0x1000; // unused yet
444
445 // macros to access these
446 #define DEATH_ISSPECIAL(t)            ((t) >= DEATH_SPECIAL_START)
447 #define DEATH_WEAPONOFWEAPONDEATH(t)  ((t) & DEATH_WEAPONMASK)
448 #define DEATH_ISWEAPON(t,w)           (!DEATH_ISSPECIAL(t) && DEATH_WEAPONOFWEAPONDEATH(t) == (w))
449 #define DEATH_WEAPONOF(t)             (DEATH_ISSPECIAL(t) ? 0 : DEATH_WEAPONOFWEAPONDEATH(t))
450 #define WEP_VALID(w)                  ((w) >= WEP_FIRST && (w) <= WEP_LAST)
451
452 #define FRAGS_PLAYER 0
453 #define FRAGS_SPECTATOR -666
454 #define FRAGS_LMS_LOSER -616
455 #define FRAGS_PLAYER_NONSOLID -616
456 // we can use this frags value for both
457
458 //misc. stuff
459 #define NEWLINES "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"
460
461 // water levels
462 float WATERLEVEL_NONE = 0;
463 float WATERLEVEL_WETFEET = 1;
464 float WATERLEVEL_SWIMMING = 2;
465 float WATERLEVEL_SUBMERGED = 3;
466
467 float MAX_SHOT_DISTANCE = 32768;