]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/common/constants.qh
add a new cheat "impulse 404"; some CSQC refactorings; distribute prandom seed as...
[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
40 const float AS_STRING           = 1;
41 const float AS_INT              = 2;
42 const float AS_FLOAT_TRUNCATED  = 2;
43 const float AS_FLOAT            = 8;
44
45 const float TE_CSQC_PICTURE = 100;
46 const float TE_CSQC_RACE = 101;
47 const float TE_CSQC_SPAWN = 102;
48
49 const float RACE_NET_CHECKPOINT_HIT_QUALIFYING = 0; // byte checkpoint, short time, short recordtime, string recordholder
50 const float RACE_NET_CHECKPOINT_CLEAR = 1;
51 const float RACE_NET_CHECKPOINT_NEXT_QUALIFYING = 2; // byte nextcheckpoint, short recordtime, string recordholder
52 const float RACE_NET_CHECKPOINT_HIT_RACE = 3; // byte checkpoint, short delta, byte lapsdelta, string opponent
53 const float RACE_NET_CHECKPOINT_HIT_RACE_BY_OPPONENT = 4; // byte checkpoint, short delta, byte lapsdelta, string opponent
54 const float RACE_NET_CHECKPOINT_NEXT_SPEC_QUALIFYING = 5; // byte nextcheckpoint, float laptime, short recordtime, string recordholder
55
56 const float ENT_CLIENT = 0;
57 const float ENT_CLIENT_DEAD = 1;
58 const float ENT_CLIENT_ENTCS = 2;
59 const float ENT_CLIENT_SCORES_INFO = 3;
60 const float ENT_CLIENT_SCORES = 4;
61 const float ENT_CLIENT_TEAMSCORES = 5;
62 const float ENT_CLIENT_POINTPARTICLES = 6;
63 const float ENT_CLIENT_RAINSNOW = 7;
64 const float ENT_CLIENT_LASER = 8;
65 const float ENT_CLIENT_NAGGER = 9; // flags [votecalledvote]
66 const float ENT_CLIENT_WAYPOINT = 10; // flags origin [team displayrule] [spritename] [spritename2] [spritename3] [lifetime maxdistance hideable]
67 const float ENT_CLIENT_RADARLINK = 11; // flags [startorigin] [endorigin] [startcolor+16*endcolor]
68 const float ENT_CLIENT_PROJECTILE = 12;
69 const float ENT_CLIENT_GIBSPLASH = 13;
70 const float ENT_CLIENT_DAMAGEINFO = 14;
71 const float ENT_CLIENT_CASING = 15;
72 const float ENT_CLIENT_INIT = 16;
73 const float ENT_CLIENT_MAPVOTE = 17;
74 const float ENT_CLIENT_CLIENTDATA = 18;
75 const float ENT_CLIENT_RANDOMSEED = 19;
76
77 const float SPRITERULE_DEFAULT = 0;
78 const float SPRITERULE_TEAMPLAY = 1;
79
80 const float RADARICON_FLAG = 1;
81 const float RADARICON_FLAGCARRIER = 1;
82 const float RADARICON_HERE = 1; // TODO make these 3 and 4, and make images for them
83 const float RADARICON_DANGER = 1;
84 const float RADARICON_WAYPOINT = 1;
85 const float RADARICON_HELPME = 1;
86 const float RADARICON_CONTROLPOINT = 1;
87 const float RADARICON_GENERATOR = 1;
88 const float RADARICON_OBJECTIVE = 1;
89
90 ///////////////////////////
91 // key constants
92
93 //
94 // these are the key numbers that should be passed to Key_Event
95 //
96 const float K_TAB                       =       9;
97 const float K_ENTER             =       13;
98 const float K_ESCAPE            =       27;
99 const float K_SPACE             =       32;
100
101 // normal keys should be passed as lowercased ascii
102
103 const float K_BACKSPACE =       127;
104 const float K_UPARROW           =       128;
105 const float K_DOWNARROW =       129;
106 const float K_LEFTARROW =       130;
107 const float K_RIGHTARROW        =       131;
108
109 const float K_ALT               =       132;
110 const float K_CTRL      =       133;
111 const float K_SHIFT     =       134;
112 const float K_F1                =       135;
113 const float K_F2                =       136;
114 const float K_F3                =       137;
115 const float K_F4                =       138;
116 const float K_F5                =       139;
117 const float K_F6                =       140;
118 const float K_F7                =       141;
119 const float K_F8                =       142;
120 const float K_F9                =       143;
121 const float K_F10               =       144;
122 const float K_F11               =       145;
123 const float K_F12               =       146;
124 const float K_INS               =       147;
125 const float K_DEL               =       148;
126 const float K_PGDN      =       149;
127 const float K_PGUP      =       150;
128 const float K_HOME      =       151;
129 const float K_END               =       152;
130
131 const float K_KP_HOME                   =       160;
132 const float K_KP_UPARROW                =       161;
133 const float K_KP_PGUP                   =       162;
134 const float K_KP_LEFTARROW      =       163;
135 const float K_KP_5                      =       164;
136 const float K_KP_RIGHTARROW     =       165;
137 const float K_KP_END                    =       166;
138 const float K_KP_DOWNARROW      =       167;
139 const float K_KP_PGDN                   =       168;
140 const float K_KP_ENTER          =       169;
141 const float K_KP_INS            =       170;
142 const float K_KP_DEL                    =       171;
143 const float K_KP_SLASH          =       172;
144 const float K_KP_MINUS          =       173;
145 const float K_KP_PLUS                   =       174;
146
147 const float K_PAUSE             =       255;
148
149 //
150 // joystick buttons
151 //
152 const float K_JOY1              =       768;
153 const float K_JOY2              =       769;
154 const float K_JOY3              =       770;
155 const float K_JOY4              =       771;
156
157 //
158 // aux keys are for multi-buttoned joysticks to generate so they can use
159 // the normal binding process
160 //
161 const float K_AUX1              =       772;
162 const float K_AUX2              =       773;
163 const float K_AUX3              =       774;
164 const float K_AUX4              =       775;
165 const float K_AUX5              =       776;
166 const float K_AUX6              =       777;
167 const float K_AUX7              =       778;
168 const float K_AUX8              =       779;
169 const float K_AUX9              =       780;
170 const float K_AUX10             =       781;
171 const float K_AUX11             =       782;
172 const float K_AUX12             =       783;
173 const float K_AUX13             =       784;
174 const float K_AUX14             =       785;
175 const float K_AUX15             =       786;
176 const float K_AUX16             =       787;
177 const float K_AUX17             =       788;
178 const float K_AUX18             =       789;
179 const float K_AUX19             =       790;
180 const float K_AUX20             =       791;
181 const float K_AUX21             =       792;
182 const float K_AUX22             =       793;
183 const float K_AUX23             =       794;
184 const float K_AUX24             =       795;
185 const float K_AUX25             =       796;
186 const float K_AUX26             =       797;
187 const float K_AUX27             =       798;
188 const float K_AUX28             =       799;
189 const float K_AUX29             =       800;
190 const float K_AUX30             =       801;
191 const float K_AUX31             =       802;
192 const float K_AUX32             =       803;
193
194 //
195 // mouse buttons generate virtual keys
196 //
197 const float K_MOUSE1            =       512;
198 const float K_MOUSE2            =       513;
199 const float K_MOUSE3            =       514;
200 const float K_MWHEELUP  =       515;
201 const float K_MWHEELDOWN        =       516;
202 const float K_MOUSE4            =       517;
203 const float K_MOUSE5            =       518;
204 const float K_MOUSE6            =       519;
205 const float K_MOUSE7            =       520;
206 const float K_MOUSE8            =       521;
207 const float K_MOUSE9            =       522;
208 const float K_MOUSE10           =       523;
209 const float K_MOUSE11           =       524;
210 const float K_MOUSE12           =       525;
211 const float K_MOUSE13           =       526;
212 const float K_MOUSE14           =       527;
213 const float K_MOUSE15           =       528;
214 const float K_MOUSE16           =       529;
215
216 ///////////////////////////
217 // cvar constants
218
219 float CVAR_SAVE         = 1;
220 float CVAR_NOTIFY       = 2;
221 float CVAR_READONLY     = 4;
222
223 ///////////////////////////
224 // csqc communication stuff
225
226 const float STAT_KH_KEYS = 32;
227 const float STAT_CTF_STATE = 33;
228 const float STAT_SYS_TICRATE = 34;
229 const float STAT_WEAPONS = 35;
230 const float STAT_SWITCHWEAPON = 36;
231 const float STAT_GAMESTARTTIME = 37;
232 const float CTF_STATE_ATTACK = 1;
233 const float CTF_STATE_DEFEND = 2;
234 const float CTF_STATE_COMMANDER = 3;
235
236 // moved that here so the client knows the max.
237 // # of maps, I'll use arrays for them :P
238 #define MAPVOTE_COUNT 10
239
240 /**
241  * Lower scores are better (e.g. suicides)
242  */
243 #define SFL_LOWER_IS_BETTER     1
244
245 /**
246  * Don't show zero values as scores
247  */
248 #define SFL_HIDE_ZERO           2
249
250 /**
251  * Allow a column to be hidden (do not automatically add it even if it is a sorting key)
252  */
253 #define SFL_ALLOW_HIDE         16
254
255 /**
256  * Display as a rank (with st, nd, rd, th suffix)
257  */
258 #define SFL_RANK               32
259
260 /**
261  * Display as mm:ss.s, value is stored as 10ths of a second (AND 0 is the worst possible value!)
262  */
263 #define SFL_TIME               64
264
265 // not an extra constant yet
266 #define SFL_ZERO_IS_WORST SFL_TIME
267
268 /**
269  * Scoring priority (NOTE: PRIMARY is used for fraglimit)
270  */
271 #define SFL_SORT_PRIO_SECONDARY 4
272 #define SFL_SORT_PRIO_PRIMARY   8
273 #define SFL_SORT_PRIO_MASK     12
274
275 /**
276  * Score indices
277  */
278 #define MAX_SCORE 10
279 #define MAX_TEAMSCORE 2
280
281 #define ST_SCORE 0
282 #define SP_KILLS 0
283 #define SP_DEATHS 1
284 #define SP_SUICIDES 2
285 #define SP_SCORE 3
286 // game mode specific indices are not in common/, but in server/scores_rules.qc!
287
288 // this assignment must match menu/nexuiz/dialog_settings_misc.c!
289 float   CHAN_AUTO                               = 0;
290         // on world: announcers, ...                     INFO
291         // on players: item pickup                       ITEMS
292         // on entities: UNUSED
293         // on csqc: UNUSED
294 float   CHAN_WEAPON                             = 1; // Weapon fire
295         // on world: UNUSED
296         // on players: weapon firing                     WEAPONS
297         // on entities: turret firing                    WEAPONS
298         // on csqc: UNUSED
299 float   CHAN_VOICE                              = 2; // Voice/Radio
300         // on world: UNUSED
301         // on players: voice                             VOICE
302         // on entities: ambient                          AMBIENT
303         // on csqc: UNUSED
304 float   CHAN_TRIGGER                    = 3; // Triggers/Items
305         // on world: UNUSED
306         // on players: item pickup                       ITEMS
307         // on entities: platforms moving etc.            ITEMS
308         // on csqc: UNUSED
309 float   CHAN_PROJECTILE                 = 4; // Projectiles
310         // on world: UNUSED
311         // on players: projectiles hitting player        SHOTS
312         // on entities: projectiles                      SHOTS
313         // on csqc: projectile sounds                    SHOTS
314 float   CHAN_WEAPON2                    = 5; // Nex fire (separated as it is a very long sound)
315         // on world: UNUSED
316         // on players: weapon firing                     WEAPONS
317         // on entities: turret firing                    WEAPONS
318         // on csqc: UNUSED
319 float   CHAN_PAIN                               = 6; // Pain
320         // on world: UNUSED
321         // on players: pain                              PAIN
322         // on entities: projectiles flying               SHOTS
323         // on csqc: player pain                          PAIN
324 float   CHAN_PLAYER                             = 7; // Player body
325         // on world: UNUSED
326         // on players: player sounds                     PLAYER
327         // on entities: player sounds                    PLAYER
328         // on csqc: UNUSED
329
330 float   ATTN_NONE                               = 0;
331 float   ATTN_MIN                                = 0.015625;
332 float   ATTN_NORM                               = 0.5;
333 float   ATTN_IDLE                               = 2;
334 float   ATTN_STATIC                             = 3;
335 float   ATTN_MAX                                = 3.984375;
336
337 #define VOL_BASE 0.7
338 #define VOL_BASEVOICE 1.0
339
340 // this sets sounds and other properties of the projectiles in csqc
341 float PROJECTILE_ELECTRO = 1;
342 float PROJECTILE_ROCKET = 2;
343 float PROJECTILE_TAG = 3;
344 float PROJECTILE_BULLET = 4;
345 float PROJECTILE_CRYLINK = 5;
346 float PROJECTILE_ELECTRO_BEAM = 6;
347 float PROJECTILE_GRENADE = 7;
348 float PROJECTILE_GRENADE_BOUNCING = 8;
349 float PROJECTILE_LASER = 9;
350 float PROJECTILE_HLAC = 10;
351 float PROJECTILE_SEEKER = 11;
352 float PROJECTILE_FLAC = 12;
353 float PROJECTILE_PORTO_RED = 13;
354 float PROJECTILE_PORTO_BLUE = 14;
355 float PROJECTILE_HOOKBOMB = 15;
356 float PROJECTILE_HAGAR = 16;
357 float PROJECTILE_HAGAR_BOUNCING = 17;
358 float PROJECTILE_BULLET_GLOWING = 18;
359
360 // Deathtypes (weapon deathtypes are the IT_* constants below)
361 // NOTE: when adding death types, please add an explanation to Docs/spamlog.txt too.
362 float DEATH_SPECIAL_START = 10000;
363 float DEATH_FALL = 10000;
364 float DEATH_TELEFRAG = 10001;
365 float DEATH_DROWN = 10002;
366 float DEATH_HURTTRIGGER = 10003;
367 float DEATH_LAVA = 10004;
368 float DEATH_SLIME = 10005;
369 float DEATH_KILL = 10006;
370 float DEATH_NOAMMO = 10007;
371 float DEATH_SWAMP = 10008;
372 float DEATH_TEAMCHANGE = 10009;
373 float DEATH_AUTOTEAMCHANGE = 10010;
374 float DEATH_CAMP = 10011;
375 float DEATH_SHOOTING_STAR = 10012;
376 float DEATH_ROT = 10013;
377 float DEATH_MIRRORDAMAGE = 10014;
378 float DEATH_TOUCHEXPLODE = 10015;
379 float DEATH_CHEAT = 10016;
380 float DEATH_TURRET = 10100;
381
382 float DEATH_WEAPONMASK = 0xFF;
383 float DEATH_HITTYPEMASK = 0x1F00; // which is WAY below 10000 used for normal deaths
384 float HITTYPE_SECONDARY = 0x100;
385 float HITTYPE_SPLASH = 0x200;
386 float HITTYPE_BOUNCE = 0x400;
387 float HITTYPE_HEADSHOT = 0x800;
388 float HITTYPE_RESERVED = 0x1000; // unused yet
389
390 // macros to access these
391 #define DEATH_ISSPECIAL(t)            ((t) >= DEATH_SPECIAL_START)
392 #define DEATH_WEAPONOFWEAPONDEATH(t)  ((t) & DEATH_WEAPONMASK)
393 #define DEATH_ISWEAPON(t,w)           (!DEATH_ISSPECIAL(t) && DEATH_WEAPONOFWEAPONDEATH(t) == (w))
394 #define DEATH_WEAPONOF(t)             (DEATH_ISSPECIAL(t) ? 0 : DEATH_WEAPONOFWEAPONDEATH(t))
395 #define WEP_VALID(w)                  ((w) >= WEP_FIRST && (w) <= WEP_LAST)
396
397 #define FRAGS_PLAYER 0
398 #define FRAGS_SPECTATOR -666
399 #define FRAGS_PLAYER_NONSOLID -616