]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/common/constants.qh
some missing files; g_race_qualifying is still broken (ignores fraglimit, no idea...
[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 #define CSQC_REVISION 9
12
13 // probably put these in common/
14 // so server/ and client/ can be synced better
15 const float GAME_DEATHMATCH             = 1;
16 const float GAME_TEAM_DEATHMATCH        = 2;
17 const float GAME_DOMINATION             = 3;
18 const float GAME_CTF                    = 4;
19 const float GAME_RUNEMATCH              = 5;
20 const float GAME_LMS                    = 6;
21 const float GAME_ARENA          = 7;
22 const float GAME_KEYHUNT                = 8;
23 const float GAME_ASSAULT                = 9;
24 const float GAME_ONSLAUGHT      = 10;
25 const float GAME_RACE   = 11;
26
27 const float AS_STRING           = 1;
28 const float AS_INT              = 2;
29 const float AS_FLOAT_TRUNCATED  = 2;
30 const float AS_FLOAT            = 8;
31
32 const float ENT_CLIENT = 0;
33 const float ENT_CLIENT_DEAD = 1;
34 const float ENT_CLIENT_ENTCS = 2;
35 const float ENT_CLIENT_SCORES_INFO = 3;
36 const float ENT_CLIENT_SCORES = 4;
37 const float ENT_CLIENT_TEAMSCORES = 5;
38
39 ///////////////////////////
40 // key constants
41
42 //
43 // these are the key numbers that should be passed to Key_Event
44 //
45 const float K_TAB                       =       9;
46 const float K_ENTER             =       13;
47 const float K_ESCAPE            =       27;
48 const float K_SPACE             =       32;
49
50 // normal keys should be passed as lowercased ascii
51
52 const float K_BACKSPACE =       127;
53 const float K_UPARROW           =       128;
54 const float K_DOWNARROW =       129;
55 const float K_LEFTARROW =       130;
56 const float K_RIGHTARROW        =       131;
57
58 const float K_ALT               =       132;
59 const float K_CTRL      =       133;
60 const float K_SHIFT     =       134;
61 const float K_F1                =       135;
62 const float K_F2                =       136;
63 const float K_F3                =       137;
64 const float K_F4                =       138;
65 const float K_F5                =       139;
66 const float K_F6                =       140;
67 const float K_F7                =       141;
68 const float K_F8                =       142;
69 const float K_F9                =       143;
70 const float K_F10               =       144;
71 const float K_F11               =       145;
72 const float K_F12               =       146;
73 const float K_INS               =       147;
74 const float K_DEL               =       148;
75 const float K_PGDN      =       149;
76 const float K_PGUP      =       150;
77 const float K_HOME      =       151;
78 const float K_END               =       152;
79
80 const float K_KP_HOME                   =       160;
81 const float K_KP_UPARROW                =       161;
82 const float K_KP_PGUP                   =       162;
83 const float K_KP_LEFTARROW      =       163;
84 const float K_KP_5                      =       164;
85 const float K_KP_RIGHTARROW     =       165;
86 const float K_KP_END                    =       166;
87 const float K_KP_DOWNARROW      =       167;
88 const float K_KP_PGDN                   =       168;
89 const float K_KP_ENTER          =       169;
90 const float K_KP_INS            =       170;
91 const float K_KP_DEL                    =       171;
92 const float K_KP_SLASH          =       172;
93 const float K_KP_MINUS          =       173;
94 const float K_KP_PLUS                   =       174;
95
96 const float K_PAUSE             =       255;
97
98 //
99 // joystick buttons
100 //
101 const float K_JOY1              =       768;
102 const float K_JOY2              =       769;
103 const float K_JOY3              =       770;
104 const float K_JOY4              =       771;
105
106 //
107 // aux keys are for multi-buttoned joysticks to generate so they can use
108 // the normal binding process
109 //
110 const float K_AUX1              =       772;
111 const float K_AUX2              =       773;
112 const float K_AUX3              =       774;
113 const float K_AUX4              =       775;
114 const float K_AUX5              =       776;
115 const float K_AUX6              =       777;
116 const float K_AUX7              =       778;
117 const float K_AUX8              =       779;
118 const float K_AUX9              =       780;
119 const float K_AUX10             =       781;
120 const float K_AUX11             =       782;
121 const float K_AUX12             =       783;
122 const float K_AUX13             =       784;
123 const float K_AUX14             =       785;
124 const float K_AUX15             =       786;
125 const float K_AUX16             =       787;
126 const float K_AUX17             =       788;
127 const float K_AUX18             =       789;
128 const float K_AUX19             =       790;
129 const float K_AUX20             =       791;
130 const float K_AUX21             =       792;
131 const float K_AUX22             =       793;
132 const float K_AUX23             =       794;
133 const float K_AUX24             =       795;
134 const float K_AUX25             =       796;
135 const float K_AUX26             =       797;
136 const float K_AUX27             =       798;
137 const float K_AUX28             =       799;
138 const float K_AUX29             =       800;
139 const float K_AUX30             =       801;
140 const float K_AUX31             =       802;
141 const float K_AUX32             =       803;
142
143 //
144 // mouse buttons generate virtual keys
145 //
146 const float K_MOUSE1            =       512;
147 const float K_MOUSE2            =       513;
148 const float K_MOUSE3            =       514;
149 const float K_MWHEELUP  =       515;
150 const float K_MWHEELDOWN        =       516;
151 const float K_MOUSE4            =       517;
152 const float K_MOUSE5            =       518;
153 const float K_MOUSE6            =       519;
154 const float K_MOUSE7            =       520;
155 const float K_MOUSE8            =       521;
156 const float K_MOUSE9            =       522;
157 const float K_MOUSE10           =       523;
158 const float K_MOUSE11           =       524;
159 const float K_MOUSE12           =       525;
160 const float K_MOUSE13           =       526;
161 const float K_MOUSE14           =       527;
162 const float K_MOUSE15           =       528;
163 const float K_MOUSE16           =       529;
164
165 ///////////////////////////
166 // cvar constants
167
168 float CVAR_SAVE         = 1;
169 float CVAR_NOTIFY       = 2;
170 float CVAR_READONLY     = 4;
171
172 ///////////////////////////
173 // csqc communication stuff
174
175 const float ENTCS_MSG_END = 0;
176 const float ENTCS_MSG_ONS_GPS = 1;
177 const float ENTCS_MSG_ONS_REMOVE = 2;
178 const float ENTCS_MSG_INIT = 3;
179
180 const float TE_CSQC_INIT = 100;
181 const float TE_CSQC_PING = 101;
182 const float TE_CSQC_CAPTURES = 102;
183 const float TE_CSQC_RETURNS = 103;
184 const float TE_CSQC_DEATHS = 104;
185 const float TE_CSQC_PICTURE = 105;
186 const float TE_CSQC_MAPVOTE = 106;
187 const float TE_CSQC_CONFIG = 107;
188 const float TE_CSQC_SCORESINFO = 108;
189 const float TE_CSQC_RACE = 109;
190
191 const float STAT_KH_KEYS = 32;
192 const float STAT_CTF_STATE = 33;
193 const float CTF_STATE_ATTACK = 1;
194 const float CTF_STATE_DEFEND = 2;
195 const float CTF_STATE_COMMANDER = 3;
196
197 // moved that here so the client knows the max.
198 // # of maps, I'll use arrays for them :P
199 #define MAPVOTE_COUNT 10
200 const float MAPVOTE_NET_INIT = 0;
201 const float MAPVOTE_NET_UPDATE = 1;
202 const float MAPVOTE_NET_PIC = 2;
203 const float MAPVOTE_NET_OWNVOTE = 3;
204
205 const float RACE_NET_CHECKPOINT_HIT = 0; // byte checkpoint, short time, short recordtime, string recordholder
206 const float RACE_NET_CHECKPOINT_CLEAR = 1;
207 const float RACE_NET_CHECKPOINT_NEXT = 2; // byte nextcheckpoint, short recordtime, string recordholder
208
209 /**
210  * Lower scores are better (e.g. suicides)
211  */
212 #define SFL_LOWER_IS_BETTER     1
213
214 /**
215  * Don't show zero values as scores
216  */
217 #define SFL_HIDE_ZERO           2
218
219 /**
220  * Allow a column to be hidden (do not automatically add it even if it is a sorting key)
221  */
222 #define SFL_ALLOW_HIDE         16
223
224 /**
225  * Display as a rank (with st, nd, rd, th suffix)
226  */
227 #define SFL_RANK               32
228
229 /**
230  * Display as mm:ss.s, value is stored as 10ths of a second (AND 0 is the worst possible value!)
231  */
232 #define SFL_TIME               64
233
234 // not an extra constant yet
235 #define SFL_ZERO_IS_WORST SFL_TIME
236
237 /**
238  * Scoring priority (NOTE: PRIMARY is used for fraglimit)
239  */
240 #define SFL_SORT_PRIO_SECONDARY 4
241 #define SFL_SORT_PRIO_PRIMARY   8
242 #define SFL_SORT_PRIO_MASK     12
243
244 /**
245  * Score indices
246  */
247 #define MAX_SCORE 10
248 #define MAX_TEAMSCORE 2
249
250 #define ST_SCORE 0
251 #define SP_KILLS 0
252 #define SP_DEATHS 1
253 #define SP_SUICIDES 2
254 #define SP_SCORE 3
255 // game mode specific indices are not in common/, but in server/scores_rules.qc!