]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/hud.qc
412900d164a75a8b4274a22b287d92ba9d1c9bd2
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / hud.qc
1 /*
2 ==================
3 Misc HUD functions
4 ==================
5 */
6
7 // a border picture is a texture containing nine parts:
8 //   1/4 width: left part
9 //   1/2 width: middle part (stretched)
10 //   1/4 width: right part
11 // divided into
12 //   1/4 height: top part
13 //   1/2 height: middle part (stretched)
14 //   1/4 height: bottom part
15 void draw_BorderPicture(vector theOrigin, string pic, vector theSize, vector theColor, float theAlpha, vector theBorderSize)
16 {
17     if (theBorderSize_x < 0 && theBorderSize_y < 0) // draw whole image as it is
18     {
19                 drawpic(theOrigin, pic, theSize, theColor, theAlpha, 0);
20                 return;
21     }
22         if (theBorderSize_x == 0 && theBorderSize_y == 0) // no border
23         {
24                 // draw only the central part
25                 drawsubpic(theOrigin, theSize, pic, '0.25 0.25 0', '0.5 0.5 0', theColor, theAlpha, 0);
26                 return;
27         }
28
29         vector dX, dY;
30         vector width, height;
31         vector bW, bH;
32         //pic = draw_UseSkinFor(pic);
33         width = eX * theSize_x;
34         height = eY * theSize_y;
35         if(theSize_x <= theBorderSize_x * 2)
36         {
37                 // not wide enough... draw just left and right then
38                 bW = eX * (0.25 * theSize_x / (theBorderSize_x * 2));
39                 if(theSize_y <= theBorderSize_y * 2)
40                 {
41                         // not high enough... draw just corners
42                         bH = eY * (0.25 * theSize_y / (theBorderSize_y * 2));
43                         drawsubpic(theOrigin,                 width * 0.5 + height * 0.5, pic, '0 0 0',           bW + bH, theColor, theAlpha, 0);
44                         drawsubpic(theOrigin + width   * 0.5, width * 0.5 + height * 0.5, pic, eX - bW,           bW + bH, theColor, theAlpha, 0);
45                         drawsubpic(theOrigin + height  * 0.5, width * 0.5 + height * 0.5, pic, eY - bH,           bW + bH, theColor, theAlpha, 0);
46                         drawsubpic(theOrigin + theSize * 0.5, width * 0.5 + height * 0.5, pic, eX + eY - bW - bH, bW + bH, theColor, theAlpha, 0);
47                 }
48                 else
49                 {
50                         dY = theBorderSize_x * eY;
51                         drawsubpic(theOrigin,                             width * 0.5          +     dY, pic, '0 0    0',           '0 0.25 0' + bW, theColor, theAlpha, 0);
52                         drawsubpic(theOrigin + width * 0.5,               width * 0.5          +     dY, pic, '0 0    0' + eX - bW, '0 0.25 0' + bW, theColor, theAlpha, 0);
53                         drawsubpic(theOrigin                        + dY, width * 0.5 + height - 2 * dY, pic, '0 0.25 0',           '0 0.5  0' + bW, theColor, theAlpha, 0);
54                         drawsubpic(theOrigin + width * 0.5          + dY, width * 0.5 + height - 2 * dY, pic, '0 0.25 0' + eX - bW, '0 0.5  0' + bW, theColor, theAlpha, 0);
55                         drawsubpic(theOrigin               + height - dY, width * 0.5          +     dY, pic, '0 0.75 0',           '0 0.25 0' + bW, theColor, theAlpha, 0);
56                         drawsubpic(theOrigin + width * 0.5 + height - dY, width * 0.5          +     dY, pic, '0 0.75 0' + eX - bW, '0 0.25 0' + bW, theColor, theAlpha, 0);
57                 }
58         }
59         else
60         {
61                 if(theSize_y <= theBorderSize_y * 2)
62                 {
63                         // not high enough... draw just top and bottom then
64                         bH = eY * (0.25 * theSize_y / (theBorderSize_y * 2));
65                         dX = theBorderSize_x * eX;
66                         drawsubpic(theOrigin,                                         dX + height * 0.5, pic, '0    0 0',           '0.25 0 0' + bH, theColor, theAlpha, 0);
67                         drawsubpic(theOrigin + dX,                        width - 2 * dX + height * 0.5, pic, '0.25 0 0',           '0.5  0 0' + bH, theColor, theAlpha, 0);
68                         drawsubpic(theOrigin + width - dX,                            dX + height * 0.5, pic, '0.75 0 0',           '0.25 0 0' + bH, theColor, theAlpha, 0);
69                         drawsubpic(theOrigin              + height * 0.5,             dX + height * 0.5, pic, '0    0 0' + eY - bH, '0.25 0 0' + bH, theColor, theAlpha, 0);
70                         drawsubpic(theOrigin + dX         + height * 0.5, width - 2 * dX + height * 0.5, pic, '0.25 0 0' + eY - bH, '0.5  0 0' + bH, theColor, theAlpha, 0);
71                         drawsubpic(theOrigin + width - dX + height * 0.5,             dX + height * 0.5, pic, '0.75 0 0' + eY - bH, '0.25 0 0' + bH, theColor, theAlpha, 0);
72                 }
73                 else
74                 {
75                         dX = theBorderSize_x * eX;
76                         dY = theBorderSize_x * eY;
77                         drawsubpic(theOrigin,                                        dX          +     dY, pic, '0    0    0', '0.25 0.25 0', theColor, theAlpha, 0);
78                         drawsubpic(theOrigin                  + dX,      width - 2 * dX          +     dY, pic, '0.25 0    0', '0.5  0.25 0', theColor, theAlpha, 0);
79                         drawsubpic(theOrigin          + width - dX,                  dX          +     dY, pic, '0.75 0    0', '0.25 0.25 0', theColor, theAlpha, 0);
80                         drawsubpic(theOrigin          + dY,                          dX + height - 2 * dY, pic, '0    0.25 0', '0.25 0.5  0', theColor, theAlpha, 0);
81                         drawsubpic(theOrigin          + dY         + dX, width - 2 * dX + height - 2 * dY, pic, '0.25 0.25 0', '0.5  0.5  0', theColor, theAlpha, 0);
82                         drawsubpic(theOrigin          + dY + width - dX,             dX + height - 2 * dY, pic, '0.75 0.25 0', '0.25 0.5  0', theColor, theAlpha, 0);
83                         drawsubpic(theOrigin + height - dY,                          dX          +     dY, pic, '0    0.75 0', '0.25 0.25 0', theColor, theAlpha, 0);
84                         drawsubpic(theOrigin + height - dY         + dX, width - 2 * dX          +     dY, pic, '0.25 0.75 0', '0.5  0.25 0', theColor, theAlpha, 0);
85                         drawsubpic(theOrigin + height - dY + width - dX,             dX          +     dY, pic, '0.75 0.75 0', '0.25 0.25 0', theColor, theAlpha, 0);
86                 }
87         }
88 }
89
90 vector HUD_Get_Num_Color (float x, float maxvalue)
91 {
92         vector color;
93         if(x > maxvalue) {
94                 color_x = 0;
95                 color_y = 1;
96                 color_z = 0;
97         }
98         else if(x > maxvalue * 0.75) {
99                 color_x = 0.4 - (x-150)*0.02 * 0.4; //red value between 0.4 -> 0
100                 color_y = 0.9 + (x-150)*0.02 * 0.1; // green value between 0.9 -> 1
101                 color_z = 0;
102         }
103         else if(x > maxvalue * 0.5) {
104                 color_x = 1 - (x-100)*0.02 * 0.6; //red value between 1 -> 0.4
105                 color_y = 1 - (x-100)*0.02 * 0.1; // green value between 1 -> 0.9
106                 color_z = 1 - (x-100)*0.02; // blue value between 1 -> 0
107         }
108         else if(x > maxvalue * 0.25) {
109                 color_x = 1;
110                 color_y = 1;
111                 color_z = 0.2 + (x-50)*0.02 * 0.8; // blue value between 0.2 -> 1
112         }
113         else if(x > maxvalue * 0.1) {
114                 color_x = 1;
115                 color_y = (x-20)*90/27/100; // green value between 0 -> 1
116                 color_z = (x-20)*90/27/100 * 0.2; // blue value between 0 -> 0.2
117         }
118         else {
119                 color_x = 1;
120                 color_y = 0;
121                 color_z = 0;
122         }
123         return color;
124 }
125
126 float stringwidth_colors(string s, vector theSize)
127 {
128         return stringwidth(s, TRUE, theSize);
129 }
130
131 float stringwidth_nocolors(string s, vector theSize)
132 {
133         return stringwidth(s, FALSE, theSize);
134 }
135
136 #define CENTERPRINT_MAX_LINES 30
137 string centerprint_messages[CENTERPRINT_MAX_LINES];
138 float centerprint_width[CENTERPRINT_MAX_LINES];
139 float centerprint_time;
140 float centerprint_expire;
141 float centerprint_num;
142 float centerprint_offset_hint;
143 vector centerprint_fontsize;
144
145 void centerprint(string strMessage)
146 {
147         float i, j, n, hcount;
148         string s;
149
150         centerprint_fontsize = HUD_GetFontsize("scr_centersize");
151
152         centerprint_expire = min(centerprint_expire, time); // if any of the returns happens, this message will fade out
153
154         if(autocvar_scr_centertime <= 0)
155                 return;
156
157         if(strMessage == "")
158                 return;
159
160         // strip trailing newlines
161         j = strlen(strMessage) - 1;
162         while(substring(strMessage, j, 1) == "\n" && j >= 0)
163                 j = j - 1;
164         strMessage = substring(strMessage, 0, j + 1);
165
166         if(strMessage == "")
167                 return;
168
169         // strip leading newlines and remember them, they are a hint that the message should be lower on the screen
170         j = 0;
171         while(substring(strMessage, j, 1) == "\n" && j < strlen(strMessage))
172                 j = j + 1;
173         strMessage = substring(strMessage, j, strlen(strMessage) - j);
174         centerprint_offset_hint = j;
175
176         if(strMessage == "")
177                 return;
178
179         // if we get here, we have a message. Initialize its height.
180         centerprint_num = 0;
181
182         n = tokenizebyseparator(strMessage, "\n");
183         i = hcount = 0;
184         for(j = 0; j < n; ++j)
185         {
186                 getWrappedLine_remaining = argv(j);
187                 while(getWrappedLine_remaining)
188                 {
189                         s = getWrappedLine(vid_conwidth * 0.75, centerprint_fontsize, stringwidth_colors);
190                         if(centerprint_messages[i] != s) // don't fade the same message in, looks stupid
191                                 centerprint_time = time;
192                         if(centerprint_messages[i])
193                                 strunzone(centerprint_messages[i]);
194                         centerprint_messages[i] = strzone(s);
195                         centerprint_width[i] = stringwidth(s, TRUE, centerprint_fontsize);
196                         ++i;
197
198                         // half height for empty lines looks better
199                         if(s == "")
200                                 hcount += 0.5;
201                         else
202                                 hcount += 1;
203
204                         if(i >= CENTERPRINT_MAX_LINES)
205                                 break;
206                 }
207         }
208
209         float h, havail;
210         h = centerprint_fontsize_y*hcount;
211
212         havail = vid_conheight;
213         if(autocvar_con_chatpos < 0)
214                 havail -= (-autocvar_con_chatpos + autocvar_con_chat) * autocvar_con_chatsize; // avoid overlapping chat
215         if(havail > vid_conheight - 70)
216                 havail = vid_conheight - 70; // avoid overlapping HUD
217
218 #if 0
219         float forbiddenmin, forbiddenmax, allowedmin, allowedmax, preferred;
220
221         // here, the centerprint would cover the crosshair. REALLY BAD.
222         forbiddenmin = vid_conheight * 0.5 - h - 16;
223         forbiddenmax = vid_conheight * 0.5 + 16;
224
225         allowedmin = scoreboard_bottom;
226         allowedmax = havail - h;
227         preferred = (havail - h)/2;
228
229
230         // possible orderings (total: 4! / 4 = 6)
231         //  allowedmin allowedmax forbiddenmin forbiddenmax
232         //  forbiddenmin forbiddenmax allowedmin allowedmax
233         if(allowedmax < forbiddenmin || allowedmin > forbiddenmax)
234         {
235                 // forbidden doesn't matter in this case
236                 centerprint_start_y = bound(allowedmin, preferred, allowedmax);
237         }
238         //  allowedmin forbiddenmin allowedmax forbiddenmax
239         else if(allowedmin < forbiddenmin && allowedmax < forbiddenmax)
240         {
241                 centerprint_start_y = bound(allowedmin, preferred, forbiddenmin);
242         }
243         //  allowedmin forbiddenmin forbiddenmax allowedmax
244         else if(allowedmin < forbiddenmin)
245         {
246                 // make sure the forbidden zone is not covered
247                 if(preferred > (forbiddenmin + forbiddenmax) * 0.5)
248                         centerprint_start_y = bound(allowedmin, preferred, forbiddenmin);
249                 else
250                         centerprint_start_y = bound(forbiddenmax, preferred, allowedmin);
251         }
252         //  forbiddenmin allowedmin allowedmax forbiddenmax
253         else if(allowedmax < forbiddenmax)
254         {
255                 // it's better to leave the allowed zone (overlap with scoreboard) than
256                 // to cover the forbidden zone (crosshair)
257                 if(preferred > (forbiddenmin + forbiddenmax) * 0.5)
258                         centerprint_start_y = forbiddenmax;
259                 else
260                         centerprint_start_y = forbiddenmin;
261         }
262         //  forbiddenmin allowedmin forbiddenmax allowedmax
263         else
264         {
265                 centerprint_start_y = bound(forbiddenmax, preferred, allowedmax);
266         }
267 #else
268 #endif
269
270         centerprint_num = i;
271
272         centerprint_expire = time + autocvar_scr_centertime;
273 }
274
275 void HUD_DrawCenterPrint (void)
276 {
277         float i;
278         vector pos;
279         string ts;
280         float a, sz;
281
282         if(time - centerprint_time < 0.25)
283                 a = (time - centerprint_time) / 0.25;
284         else
285                 a = bound(0, 1 - 4 * (time - centerprint_expire), 1);
286
287         if(a <= 0)
288                 return;
289
290         sz = 0.8 + (a / 5);
291
292         if(centerprint_num * autocvar_scr_centersize > 24 && scoreboard_active) // 24 = height of Scoreboard text
293                 centerprint_start_y = scoreboard_bottom + centerprint_fontsize_y;
294
295         pos = centerprint_start;
296         for (i=0; i<centerprint_num; i = i + 1)
297         {
298                 ts = centerprint_messages[i];
299                 drawfontscale = sz * '1 1 0';
300                 pos_x = (vid_conwidth - stringwidth(ts, TRUE, centerprint_fontsize)) * 0.5;
301                 if (ts != "")
302                 {
303                         drawcolorcodedstring(pos + '0 1 0' * (1 - sz) * 0.5 *centerprint_fontsize_y, ts, centerprint_fontsize, a, DRAWFLAG_NORMAL);
304                         pos_y = pos_y + centerprint_fontsize_y;
305                 }
306                 else
307                         // half height for empty lines looks better
308                         pos_y = pos_y + sz * centerprint_fontsize_y * 0.5;
309                 drawfontscale = '1 1 0';
310         }
311 }
312
313 void drawstringright(vector position, string text, vector scale, vector rgb, float alpha, float flag)
314 {
315         position_x -= 2 / 3 * strlen(text) * scale_x;
316         drawstring(position, text, scale, rgb, alpha, flag);
317 }
318
319 void drawstringcenter(vector position, string text, vector scale, vector rgb, float alpha, float flag)
320 {
321         position_x = 0.5 * (vid_conwidth - 0.6025 * strlen(text) * scale_x);
322         drawstring(position, text, scale, rgb, alpha, flag);
323 }
324
325 // return the string of the given race place
326 string race_PlaceName(float pos) {
327         if(pos == 1)
328                 return _("1st");
329         else if(pos == 2)
330                 return _("2nd");
331         else if(pos == 3)
332                 return _("3rd");
333         else
334                 return sprintf(_("%dth"), pos);
335 }
336
337 // return the string of the onscreen race timer
338 string MakeRaceString(float cp, float mytime, float histime, float lapdelta, string hisname)
339 {
340         string col;
341         string timestr;
342         string cpname;
343         string lapstr;
344         lapstr = "";
345
346         if(histime == 0) // goal hit
347         {
348                 if(mytime > 0)
349                 {
350                         timestr = strcat("+", ftos_decimals(+mytime, TIME_DECIMALS));
351                         col = "^1";
352                 }
353                 else if(mytime == 0)
354                 {
355                         timestr = "+0.0";
356                         col = "^3";
357                 }
358                 else
359                 {
360                         timestr = strcat("-", ftos_decimals(-mytime, TIME_DECIMALS));
361                         col = "^2";
362                 }
363
364                 if(lapdelta > 0)
365                 {
366                         lapstr = sprintf(_(" (-%dL)"), lapdelta);
367                         col = "^2";
368                 }
369                 else if(lapdelta < 0)
370                 {
371                         lapstr = sprintf(_(" (+%dL)"), -lapdelta);
372                         col = "^1";
373                 }
374         }
375         else if(histime > 0) // anticipation
376         {
377                 if(mytime >= histime)
378                         timestr = strcat("+", ftos_decimals(mytime - histime, TIME_DECIMALS));
379                 else
380                         timestr = TIME_ENCODED_TOSTRING(TIME_ENCODE(histime));
381                 col = "^3";
382         }
383         else
384                 col = "^7";
385
386         if(cp == 254)
387                 cpname = _("Start line");
388         else if(cp == 255)
389                 cpname = _("Finish line");
390         else if(cp)
391                 cpname = sprintf(_("Intermediate %d"), cp);
392         else
393                 cpname = _("Finish line");
394
395         if(histime < 0)
396                 return strcat(col, cpname);
397         else if(hisname == "")
398                 return strcat(col, sprintf(_("%s (%s)")), cpname, timestr);
399         else
400                 return strcat(col, sprintf(_("%s (%s %s)")), cpname, timestr, strcat(hisname, col, lapstr));
401 }
402
403 // Check if the given name already exist in race rankings? In that case, where? (otherwise return 0)
404 float race_CheckName(string net_name) {
405         float i;
406         for (i=RANKINGS_CNT-1;i>=0;--i)
407                 if(grecordholder[i] == net_name)
408                         return i+1;
409         return 0;
410 }
411
412 /*
413 ==================
414 HUD panels
415 ==================
416 */
417
418 #define HUD_Write(s) fputs(fh, s)
419 // q: quoted, n: not quoted
420 #define HUD_Write_Cvar_n(cvar) HUD_Write(strcat("seta ", cvar, " ", cvar_string(cvar), "\n"))
421 #define HUD_Write_Cvar_q(cvar) HUD_Write(strcat("seta ", cvar, " \"", cvar_string(cvar), "\"\n"))
422 #define HUD_Write_PanelCvar_n(cvar_suf) HUD_Write_Cvar_n(strcat("hud_panel_", panel_name, cvar_suf))
423 #define HUD_Write_PanelCvar_q(cvar_suf) HUD_Write_Cvar_q(strcat("hud_panel_", panel_name, cvar_suf))
424 // Save the config
425 void HUD_Panel_ExportCfg(string cfgname)
426 {
427         float fh;
428         string filename = strcat("hud_", autocvar_hud_skin, "_", cfgname, ".cfg");
429         fh = fopen(filename, FILE_WRITE);
430         if(fh >= 0)
431         {
432                 HUD_Write_Cvar_q("hud_skin");
433                 HUD_Write_Cvar_q("hud_panel_bg");
434                 HUD_Write_Cvar_q("hud_panel_bg_color");
435                 HUD_Write_Cvar_q("hud_panel_bg_color_team");
436                 HUD_Write_Cvar_q("hud_panel_bg_alpha");
437                 HUD_Write_Cvar_q("hud_panel_bg_border");
438                 HUD_Write_Cvar_q("hud_panel_bg_padding");
439                 HUD_Write_Cvar_q("hud_panel_fg_alpha");
440                 HUD_Write("\n");
441
442                 HUD_Write_Cvar_q("hud_dock");
443                 HUD_Write_Cvar_q("hud_dock_color");
444                 HUD_Write_Cvar_q("hud_dock_color_team");
445                 HUD_Write_Cvar_q("hud_dock_alpha");
446                 HUD_Write("\n");
447
448                 HUD_Write_Cvar_q("hud_progressbar_alpha");
449                 HUD_Write_Cvar_q("hud_progressbar_strength_color");
450                 HUD_Write_Cvar_q("hud_progressbar_shield_color");
451                 HUD_Write_Cvar_q("hud_progressbar_health_color");
452                 HUD_Write_Cvar_q("hud_progressbar_armor_color");
453                 HUD_Write_Cvar_q("hud_progressbar_fuel_color");
454                 HUD_Write_Cvar_q("hud_progressbar_nexball_color");
455                 HUD_Write("\n");
456
457                 HUD_Write_Cvar_q("_hud_panelorder");
458                 HUD_Write("\n");
459
460                 HUD_Write_Cvar_q("hud_configure_grid");
461                 HUD_Write_Cvar_q("hud_configure_grid_xsize");
462                 HUD_Write_Cvar_q("hud_configure_grid_ysize");
463                 HUD_Write("\n");
464
465                 HUD_Write_Cvar_q("scr_centerpos");
466                 HUD_Write("\n");
467
468                 // common cvars for all panels
469                 float i;
470                 for (i = 0; i < HUD_PANEL_NUM; ++i)
471                 {
472                         HUD_Panel_GetName(i);
473
474                         HUD_Write_PanelCvar_n("");
475                         HUD_Write_PanelCvar_q("_pos");
476                         HUD_Write_PanelCvar_q("_size");
477                         HUD_Write_PanelCvar_q("_bg");
478                         HUD_Write_PanelCvar_q("_bg_color");
479                         HUD_Write_PanelCvar_q("_bg_color_team");
480                         HUD_Write_PanelCvar_q("_bg_alpha");
481                         HUD_Write_PanelCvar_q("_bg_border");
482                         HUD_Write_PanelCvar_q("_bg_padding");
483                         switch(i) {
484                                 case HUD_PANEL_WEAPONS:
485                                         HUD_Write_PanelCvar_q("_complainbubble");
486                                         HUD_Write_PanelCvar_q("_complainbubble_padding");
487                                         HUD_Write_PanelCvar_q("_complainbubble_color_outofammo");
488                                         HUD_Write_PanelCvar_q("_complainbubble_color_donthave");
489                                         HUD_Write_PanelCvar_q("_complainbubble_color_unavailable");
490                                         HUD_Write_PanelCvar_q("_ammo_color");
491                                         HUD_Write_PanelCvar_q("_ammo_alpha");
492                                         HUD_Write_PanelCvar_q("_aspect");
493                                         HUD_Write_PanelCvar_q("_timeout");
494                                         HUD_Write_PanelCvar_q("_timeout_effect");
495                                         break;
496                                 case HUD_PANEL_AMMO:
497                                         HUD_Write_PanelCvar_q("_onlycurrent");
498                                         HUD_Write_PanelCvar_q("_iconalign");
499                                         HUD_Write_PanelCvar_q("_progressbar");
500                                         HUD_Write_PanelCvar_q("_progressbar_name");
501                                         HUD_Write_PanelCvar_q("_progressbar_xoffset");
502                                         HUD_Write_PanelCvar_q("_text");
503                                         break;
504                                 case HUD_PANEL_POWERUPS:
505                                         HUD_Write_PanelCvar_q("_flip");
506                                         HUD_Write_PanelCvar_q("_iconalign");
507                                         HUD_Write_PanelCvar_q("_baralign");
508                                         HUD_Write_PanelCvar_q("_progressbar");
509                                         HUD_Write_PanelCvar_q("_progressbar_strength");
510                                         HUD_Write_PanelCvar_q("_progressbar_shield");
511                                         break;
512                                 case HUD_PANEL_HEALTHARMOR:
513                                         HUD_Write_PanelCvar_q("_flip");
514                                         HUD_Write_PanelCvar_q("_iconalign");
515                                         HUD_Write_PanelCvar_q("_baralign");
516                                         HUD_Write_PanelCvar_q("_progressbar");
517                                         HUD_Write_PanelCvar_q("_progressbar_health");
518                                         HUD_Write_PanelCvar_q("_progressbar_armor");
519                                         HUD_Write_PanelCvar_q("_text");
520                                         break;
521                                 case HUD_PANEL_NOTIFY:
522                                         HUD_Write_PanelCvar_q("_flip");
523                                         HUD_Write_PanelCvar_q("_print");
524                                         break;
525                                 case HUD_PANEL_RADAR:
526                                         HUD_Write_PanelCvar_q("_foreground_alpha");
527                                         break;
528                                 case HUD_PANEL_VOTE:
529                                         HUD_Write_PanelCvar_q("_alreadyvoted_alpha");
530                                         break;
531                                 case HUD_PANEL_PRESSEDKEYS:
532                                         HUD_Write_PanelCvar_q("_aspect");
533                                         break;
534                                 case HUD_PANEL_INFOMESSAGES:
535                                         HUD_Write_PanelCvar_q("_flip");
536                                         break;
537                         }
538                         HUD_Write("\n");
539                 }
540                 HUD_Write("menu_sync\n"); // force the menu to reread the cvars, so that the dialogs are updated
541
542                 print(sprintf(_("^2Successfully exported to %s! (Note: It's saved in data/data/)\n"), filename));
543                 fclose(fh);
544         }
545         else
546                 print(sprintf(_("^1Couldn't write to \n"), filename));
547 }
548
549 const float hlBorderSize = 4;
550 const string hlBorder = "gfx/hud/default/border_highlighted";
551 const string hlBorder2 = "gfx/hud/default/border_highlighted2";
552 void HUD_Panel_HlBorder(float myBorder, vector color, float alpha)
553 {
554         drawfill(panel_pos - '1 1 0' * myBorder, panel_size + '2 2 0' * myBorder, '0 0.5 1', .5 * alpha, DRAWFLAG_NORMAL);
555         drawpic_tiled(panel_pos - '1 1 0' * myBorder, hlBorder, '8 1 0' * hlBorderSize, eX * (panel_size_x + 2 * myBorder) + eY * hlBorderSize, color, alpha, DRAWFLAG_NORMAL);
556         drawpic_tiled(panel_pos - '1 1 0' * myBorder + eY * (panel_size_y + 2 * myBorder - hlBorderSize), hlBorder, '8 1 0' * hlBorderSize, eX * (panel_size_x + 2 * myBorder) + eY * hlBorderSize, color, alpha, DRAWFLAG_NORMAL);
557         drawpic_tiled(panel_pos - '1 1 0' * myBorder + eY * hlBorderSize, hlBorder2, '1 8 0' * hlBorderSize, eY * (panel_size_y + 2 * myBorder - 2 * hlBorderSize) + eX * hlBorderSize, color, alpha, DRAWFLAG_NORMAL);
558         drawpic_tiled(panel_pos - '1 1 0' * myBorder + eY * hlBorderSize + eX * (panel_size_x + 2 * myBorder - hlBorderSize), hlBorder2, '1 8 0' * hlBorderSize, eY * (panel_size_y + 2 * myBorder - 2 * hlBorderSize) + eX * hlBorderSize, color, alpha, DRAWFLAG_NORMAL);
559 }
560
561 // draw the background/borders
562 #define HUD_Panel_DrawBg(alpha)\
563 if(panel_bg != "0")\
564         draw_BorderPicture(panel_pos - '1 1 0' * panel_bg_border, panel_bg, panel_size + '1 1 0' * 2 * panel_bg_border, panel_bg_color, panel_bg_alpha * alpha, '1 1 0' * (panel_bg_border/BORDER_MULTIPLIER));\
565 if(highlightedPanel_prev == active_panel && autocvar__hud_configure)\
566 {\
567         HUD_Panel_HlBorder(panel_bg_border + 1.5 * hlBorderSize, '0 0.5 1', 0.25 * (1 - autocvar__menu_alpha) * alpha);\
568 } ENDS_WITH_CURLY_BRACE
569
570 void HUD_Panel_DrawProgressBar(vector pos, vector mySize, string pic, float vertical, float barflip, float x, vector color, float alpha, float drawflag)
571 {
572         if(!alpha || x == 0)
573                 return;
574
575     x = bound(0, x, 1);
576
577         if(vertical) {
578                 pic = strcat(hud_skin_path, "/", pic, "_vertical");
579                 if(precache_pic(pic) == "") {
580                         pic = "gfx/hud/default/statusbar_vertical";
581                 }
582
583         if(barflip)
584             drawsetcliparea(pos_x, pos_y + mySize_y * (1 - x), mySize_x, mySize_y * x);
585         else
586             drawsetcliparea(pos_x, pos_y, mySize_x, mySize_y * x);
587         } else {
588                 pic = strcat(hud_skin_path, "/", pic);
589                 if(precache_pic(pic) == "") {
590                         pic = "gfx/hud/default/statusbar";
591                 }
592
593         if(barflip)
594             drawsetcliparea(pos_x + mySize_x * (1 - x), pos_y, mySize_x * x, mySize_y);
595         else
596             drawsetcliparea(pos_x, pos_y, mySize_x * x, mySize_y);
597         }
598
599     drawpic(pos, pic, mySize, color, alpha, drawflag);
600     drawresetcliparea();
601 }
602
603 void HUD_Panel_DrawHighlight(vector pos, vector mySize, vector color, float alpha, float drawflag)
604 {
605         if(!alpha)
606                 return;
607
608         string pic;
609         pic = strcat(hud_skin_path, "/num_leading");
610         if(precache_pic(pic) == "") {
611                 pic = "gfx/hud/default/num_leading";
612         }
613
614         drawsubpic(pos, eX * min(mySize_x * 0.5, mySize_y) + eY * mySize_y, pic, '0 0 0', '0.25 1 0', color, alpha, drawflag);
615         if(mySize_x/mySize_y > 2)
616                 drawsubpic(pos + eX * mySize_y, eX * (mySize_x - 2 * mySize_y) + eY * mySize_y, pic, '0.25 0 0', '0.5 1 0', color, alpha, drawflag);
617         drawsubpic(pos + eX * mySize_x - eX * min(mySize_x * 0.5, mySize_y), eX * min(mySize_x * 0.5, mySize_y) + eY * mySize_y, pic, '0.75 0 0', '0.25 1 0', color, alpha, drawflag);
618 }
619
620 // check if move will result in panel being moved into another panel. If so, return snapped vector, otherwise return the given vector
621 vector HUD_Panel_CheckMove(vector myPos, vector mySize)
622 {
623         float i;
624
625         vector myTarget;
626         myTarget = myPos;
627
628         vector myCenter;
629         vector targCenter;
630         myCenter = '0 0 0'; // shut up fteqcc, there IS a reference
631         targCenter = '0 0 0'; // shut up fteqcc, there IS a reference
632
633         for (i = 0; i < HUD_PANEL_NUM; ++i) {
634                 if(i == highlightedPanel || !panel_enabled)
635                         continue;
636
637                 HUD_Panel_UpdatePosSizeForId(i);
638
639                 panel_pos -= '1 1 0' * panel_bg_border;
640                 panel_size += '2 2 0' * panel_bg_border;
641
642                 if(myPos_y + mySize_y < panel_pos_y)
643                         continue;
644                 if(myPos_y > panel_pos_y + panel_size_y)
645                         continue;
646
647                 if(myPos_x + mySize_x < panel_pos_x)
648                         continue;
649                 if(myPos_x > panel_pos_x + panel_size_x)
650                         continue;
651
652                 // OK, there IS a collision.
653
654                 myCenter_x = myPos_x + 0.5 * mySize_x;
655                 myCenter_y = myPos_y + 0.5 * mySize_y;
656
657                 targCenter_x = panel_pos_x + 0.5 * panel_size_x;
658                 targCenter_y = panel_pos_y + 0.5 * panel_size_y;
659
660                 if(myCenter_x < targCenter_x && myCenter_y < targCenter_y) // top left (of the target panel)
661                 {
662                         if(myPos_x + mySize_x - panel_pos_x < myPos_y + mySize_y - panel_pos_y) // push it to the side
663                                 myTarget_x = panel_pos_x - mySize_x;
664                         else // push it upwards
665                                 myTarget_y = panel_pos_y - mySize_y;
666                 }
667                 else if(myCenter_x > targCenter_x && myCenter_y < targCenter_y) // top right
668                 {
669                         if(panel_pos_x + panel_size_x - myPos_x < myPos_y + mySize_y - panel_pos_y) // push it to the side
670                                 myTarget_x = panel_pos_x + panel_size_x;
671                         else // push it upwards
672                                 myTarget_y = panel_pos_y - mySize_y;
673                 }
674                 else if(myCenter_x < targCenter_x && myCenter_y > targCenter_y) // bottom left
675                 {
676                         if(myPos_x + mySize_x - panel_pos_x < panel_pos_y + panel_size_y - myPos_y) // push it to the side
677                                 myTarget_x = panel_pos_x - mySize_x;
678                         else // push it downwards
679                                 myTarget_y = panel_pos_y + panel_size_y;
680                 }
681                 else if(myCenter_x > targCenter_x && myCenter_y > targCenter_y) // bottom right
682                 {
683                         if(panel_pos_x + panel_size_x - myPos_x < panel_pos_y + panel_size_y - myPos_y) // push it to the side
684                                 myTarget_x = panel_pos_x + panel_size_x;
685                         else // push it downwards
686                                 myTarget_y = panel_pos_y + panel_size_y;
687                 }
688                 //if(cvar("hud_configure_checkcollisions_debug"))
689                         //drawfill(panel_pos, panel_size, '1 1 0', .3, DRAWFLAG_NORMAL);
690         }
691
692         return myTarget;
693 }
694
695 void HUD_Panel_SetPos(vector pos)
696 {
697         HUD_Panel_UpdatePosSizeForId(highlightedPanel);
698         vector mySize;
699         mySize = panel_size;
700
701         //if(cvar("hud_configure_checkcollisions_debug"))
702                 //drawfill(pos, mySize, '1 1 1', .2, DRAWFLAG_NORMAL);
703
704         if(autocvar_hud_configure_grid)
705         {
706                 pos_x = floor((pos_x/vid_conwidth)/bound(0.005, autocvar_hud_configure_grid_xsize, 0.2) + 0.5) * bound(0.005, autocvar_hud_configure_grid_xsize, 0.2) * vid_conwidth;
707                 pos_y = floor((pos_y/vid_conheight)/bound(0.005, autocvar_hud_configure_grid_ysize, 0.2) + 0.5) * bound(0.005, autocvar_hud_configure_grid_ysize, 0.2) * vid_conheight;
708         }
709
710         if(hud_configure_checkcollisions)
711                 pos = HUD_Panel_CheckMove(pos, mySize);
712
713         pos_x = bound(0, pos_x, vid_conwidth - mySize_x);
714         pos_y = bound(0, pos_y, vid_conheight - mySize_y);
715
716         string s;
717         s = strcat(ftos(pos_x/vid_conwidth), " ", ftos(pos_y/vid_conheight));
718
719         HUD_Panel_GetName(highlightedPanel);
720         cvar_set(strcat("hud_panel_", panel_name, "_pos"), s);
721 }
722
723 // check if resize will result in panel being moved into another panel. If so, return snapped vector, otherwise return the given vector
724 vector HUD_Panel_CheckResize(vector mySize, vector resizeorigin) {
725         float i;
726
727         vector targEndPos;
728
729         float dist_x, dist_y;
730         float ratio;
731         ratio = mySize_x/mySize_y;
732
733         for (i = 0; i < HUD_PANEL_NUM; ++i) {
734                 if(i == highlightedPanel || !panel_enabled)
735                         continue;
736
737                 HUD_Panel_UpdatePosSizeForId(i);
738
739                 panel_pos -= '1 1 0' * panel_bg_border;
740                 panel_size += '2 2 0' * panel_bg_border;
741
742                 targEndPos = panel_pos + panel_size;
743
744                 // resizeorigin is WITHIN target panel, just abort any collision testing against that particular panel to produce expected behaviour!
745                 if(resizeorigin_x > panel_pos_x && resizeorigin_x < targEndPos_x && resizeorigin_y > panel_pos_y && resizeorigin_y < targEndPos_y)
746                         continue;
747
748                 if (resizeCorner == 1)
749                 {
750                         // check if this panel is on our way
751                         if (resizeorigin_x <= panel_pos_x)
752                                 continue;
753                         if (resizeorigin_y <= panel_pos_y)
754                                 continue;
755                         if (targEndPos_x <= resizeorigin_x - mySize_x)
756                                 continue;
757                         if (targEndPos_y <= resizeorigin_y - mySize_y)
758                                 continue;
759
760                         // there is a collision:
761                         // detect which side of the panel we are facing is actually limiting the resizing
762                         // (which side the resize direction finds for first) and reduce the size up to there
763                         //
764                         // dist is the distance between resizeorigin and the "analogous" point of the panel
765                         // in this case resizeorigin (bottom-right point) and the bottom-right point of the panel
766                         dist_x = resizeorigin_x - targEndPos_x;
767                         dist_y = resizeorigin_y - targEndPos_y;
768                         if (dist_y <= 0 || dist_x / dist_y > ratio)
769                                 mySize_x = min(mySize_x, dist_x);
770                         else
771                                 mySize_y = min(mySize_y, dist_y);
772                 }
773                 else if (resizeCorner == 2)
774                 {
775                         if (resizeorigin_x >= targEndPos_x)
776                                 continue;
777                         if (resizeorigin_y <= panel_pos_y)
778                                 continue;
779                         if (panel_pos_x >= resizeorigin_x + mySize_x)
780                                 continue;
781                         if (targEndPos_y <= resizeorigin_y - mySize_y)
782                                 continue;
783
784                         dist_x = panel_pos_x - resizeorigin_x;
785                         dist_y = resizeorigin_y - targEndPos_y;
786                         if (dist_y <= 0 || dist_x / dist_y > ratio)
787                                 mySize_x = min(mySize_x, dist_x);
788                         else
789                                 mySize_y = min(mySize_y, dist_y);
790                 }
791                 else if (resizeCorner == 3)
792                 {
793                         if (resizeorigin_x <= panel_pos_x)
794                                 continue;
795                         if (resizeorigin_y >= targEndPos_y)
796                                 continue;
797                         if (targEndPos_x <= resizeorigin_x - mySize_x)
798                                 continue;
799                         if (panel_pos_y >= resizeorigin_y + mySize_y)
800                                 continue;
801
802                         dist_x = resizeorigin_x - targEndPos_x;
803                         dist_y = panel_pos_y - resizeorigin_y;
804                         if (dist_y <= 0 || dist_x / dist_y > ratio)
805                                 mySize_x = min(mySize_x, dist_x);
806                         else
807                                 mySize_y = min(mySize_y, dist_y);
808                 }
809                 else if (resizeCorner == 4)
810                 {
811                         if (resizeorigin_x >= targEndPos_x)
812                                 continue;
813                         if (resizeorigin_y >= targEndPos_y)
814                                 continue;
815                         if (panel_pos_x >= resizeorigin_x + mySize_x)
816                                 continue;
817                         if (panel_pos_y >= resizeorigin_y + mySize_y)
818                                 continue;
819
820                         dist_x = panel_pos_x - resizeorigin_x;
821                         dist_y = panel_pos_y - resizeorigin_y;
822                         if (dist_y <= 0 || dist_x / dist_y > ratio)
823                                 mySize_x = min(mySize_x, dist_x);
824                         else
825                                 mySize_y = min(mySize_y, dist_y);
826                 }
827                 //if(cvar("hud_configure_checkcollisions_debug"))
828                         //drawfill(panel_pos, panel_size, '1 1 0', .3, DRAWFLAG_NORMAL);
829         }
830
831         return mySize;
832 }
833
834 void HUD_Panel_SetPosSize(vector mySize)
835 {
836         HUD_Panel_UpdatePosSizeForId(highlightedPanel);
837         vector resizeorigin;
838         resizeorigin = panel_click_resizeorigin;
839         vector myPos;
840
841         // minimum panel size cap
842         mySize_x = max(0.025 * vid_conwidth, mySize_x);
843         mySize_y = max(0.025 * vid_conheight, mySize_y);
844
845         if(highlightedPanel == HUD_PANEL_CHAT) // some panels have their own restrictions, like the chat panel (which actually only moves the engine chat print around). Looks bad if it's too small.
846         {
847                 mySize_x = max(17 * autocvar_con_chatsize, mySize_x);
848                 mySize_y = max(2 * autocvar_con_chatsize + 2 * panel_bg_padding, mySize_y);
849         }
850
851         // collision testing|
852         // -----------------+
853
854         // we need to know pos at this stage, but it might still change later if we hit a screen edge/other panel (?)
855         if(resizeCorner == 1) {
856                 myPos_x = resizeorigin_x - mySize_x;
857                 myPos_y = resizeorigin_y - mySize_y;
858         } else if(resizeCorner == 2) {
859                 myPos_x = resizeorigin_x;
860                 myPos_y = resizeorigin_y - mySize_y;
861         } else if(resizeCorner == 3) {
862                 myPos_x = resizeorigin_x - mySize_x;
863                 myPos_y = resizeorigin_y;
864         } else { // resizeCorner == 4
865                 myPos_x = resizeorigin_x;
866                 myPos_y = resizeorigin_y;
867         }
868
869         // left/top screen edges
870         if(myPos_x < 0)
871                 mySize_x = mySize_x + myPos_x;
872         if(myPos_y < 0)
873                 mySize_y = mySize_y + myPos_y;
874
875         // bottom/right screen edges
876         if(myPos_x + mySize_x > vid_conwidth)
877                 mySize_x = vid_conwidth - myPos_x;
878         if(myPos_y + mySize_y > vid_conheight)
879                 mySize_y = vid_conheight - myPos_y;
880
881         //if(cvar("hud_configure_checkcollisions_debug"))
882                 //drawfill(myPos, mySize, '1 1 1', .2, DRAWFLAG_NORMAL);
883
884         // before checkresize, otherwise panel can be snapped partially inside another panel or panel aspect ratio can be broken
885         if(autocvar_hud_configure_grid)
886         {
887                 mySize_x = floor((mySize_x/vid_conwidth)/bound(0.005, autocvar_hud_configure_grid_xsize, 0.2) + 0.5) * bound(0.005, autocvar_hud_configure_grid_xsize, 0.2) * vid_conwidth;
888                 mySize_y = floor((mySize_y/vid_conheight)/bound(0.005, autocvar_hud_configure_grid_ysize, 0.2) + 0.5) * bound(0.005, autocvar_hud_configure_grid_ysize, 0.2) * vid_conheight;
889         }
890
891         if(hud_configure_checkcollisions)
892                 mySize = HUD_Panel_CheckResize(mySize, resizeorigin);
893
894         // minimum panel size cap, do this once more so we NEVER EVER EVER have a panel smaller than this, JUST IN CASE above code still makes the panel eg negative (impossible to resize back without changing cvars manually then)
895         mySize_x = max(0.025 * vid_conwidth, mySize_x);
896         mySize_y = max(0.025 * vid_conheight, mySize_y);
897
898         // do another pos check, as size might have changed by now
899         if(resizeCorner == 1) {
900                 myPos_x = resizeorigin_x - mySize_x;
901                 myPos_y = resizeorigin_y - mySize_y;
902         } else if(resizeCorner == 2) {
903                 myPos_x = resizeorigin_x;
904                 myPos_y = resizeorigin_y - mySize_y;
905         } else if(resizeCorner == 3) {
906                 myPos_x = resizeorigin_x - mySize_x;
907                 myPos_y = resizeorigin_y;
908         } else { // resizeCorner == 4
909                 myPos_x = resizeorigin_x;
910                 myPos_y = resizeorigin_y;
911         }
912
913         //if(cvar("hud_configure_checkcollisions_debug"))
914                 //drawfill(myPos, mySize, '0 1 0', .3, DRAWFLAG_NORMAL);
915
916         HUD_Panel_GetName(highlightedPanel);
917         string s;
918         s = strcat(ftos(mySize_x/vid_conwidth), " ", ftos(mySize_y/vid_conheight));
919         cvar_set(strcat("hud_panel_", panel_name, "_size"), s);
920
921         s = strcat(ftos(myPos_x/vid_conwidth), " ", ftos(myPos_y/vid_conheight));
922         cvar_set(strcat("hud_panel_", panel_name, "_pos"), s);
923 }
924
925 float mouseClicked;
926 float prevMouseClicked; // previous state
927 float prevMouseClickedTime; // time during previous mouse click, to check for doubleclicks
928 vector prevMouseClickedPos; // pos during previous mouse click, to check for doubleclicks
929
930 float pressed_key_time;
931 void HUD_Panel_Arrow_Action(float nPrimary)
932 {
933         if (highlightedPanel_prev == -1 || mouseClicked)
934                 return;
935
936         hud_configure_checkcollisions = (!(hudShiftState & S_CTRL) && autocvar_hud_configure_checkcollisions);
937
938         float step;
939         if(autocvar_hud_configure_grid)
940         {
941                 if (nPrimary == K_UPARROW || nPrimary == K_DOWNARROW)
942                 {
943                         if (hudShiftState & S_SHIFT)
944                                 step = bound(0.005, autocvar_hud_configure_grid_ysize, 0.2) * vid_conheight;
945                         else
946                                 step = 2 * bound(0.005, autocvar_hud_configure_grid_ysize, 0.2) * vid_conheight;
947                 }
948                 else
949                 {
950                         if (hudShiftState & S_SHIFT)
951                                 step = bound(0.005, autocvar_hud_configure_grid_xsize, 0.2) * vid_conwidth;
952                         else
953                                 step = 2 * bound(0.005, autocvar_hud_configure_grid_xsize, 0.2) * vid_conwidth;
954                 }
955         }
956         else
957         {
958                 if (nPrimary == K_UPARROW || nPrimary == K_DOWNARROW)
959                         step = vid_conheight;
960                 else
961                         step = vid_conwidth;
962                 if (hudShiftState & S_SHIFT)
963                         step = (step / 256); // more precision
964                 else
965                         step = (step / 64) * (1 + 2 * (time - pressed_key_time));
966         }
967
968         highlightedPanel = highlightedPanel_prev;
969
970         HUD_Panel_UpdatePosSizeForId(highlightedPanel);
971
972         vector prev_pos, prev_size;
973         prev_pos = panel_pos;
974         prev_size = panel_size;
975
976         if (hudShiftState & S_ALT) // resize
977         {
978                 highlightedAction = 1;
979                 if(nPrimary == K_UPARROW)
980                         resizeCorner = 1;
981                 else if(nPrimary == K_RIGHTARROW)
982                         resizeCorner = 2;
983                 else if(nPrimary == K_LEFTARROW)
984                         resizeCorner = 3;
985                 else // if(nPrimary == K_DOWNARROW)
986                         resizeCorner = 4;
987
988                 // ctrl+arrow reduces the size, instead of increasing it
989                 // Note that ctrl disables collisions check too, but it's fine
990                 // since we don't collide with anything reducing the size
991                 if (hudShiftState & S_CTRL) {
992                         step = -step;
993                         resizeCorner = 5 - resizeCorner;
994                 }
995
996                 vector mySize;
997                 mySize = panel_size;
998                 panel_click_resizeorigin = panel_pos;
999                 if(resizeCorner == 1) {
1000                         panel_click_resizeorigin += mySize;
1001                         mySize_y += step;
1002                 } else if(resizeCorner == 2) {
1003                         panel_click_resizeorigin_y += mySize_y;
1004                         mySize_x += step;
1005                 } else if(resizeCorner == 3) {
1006                         panel_click_resizeorigin_x += mySize_x;
1007                         mySize_x += step;
1008                 } else { // resizeCorner == 4
1009                         mySize_y += step;
1010                 }
1011                 HUD_Panel_SetPosSize(mySize);
1012         }
1013         else // move
1014         {
1015                 highlightedAction = 2;
1016                 vector pos;
1017                 pos = panel_pos;
1018                 if(nPrimary == K_UPARROW)
1019                         pos_y -= step;
1020                 else if(nPrimary == K_DOWNARROW)
1021                         pos_y += step;
1022                 else if(nPrimary == K_LEFTARROW)
1023                         pos_x -= step;
1024                 else // if(nPrimary == K_RIGHTARROW)
1025                         pos_x += step;
1026
1027                 HUD_Panel_SetPos(pos);
1028         }
1029
1030         HUD_Panel_UpdatePosSizeForId(highlightedPanel);
1031
1032         if (prev_pos != panel_pos || prev_size != panel_size)
1033         {
1034                 // backup!
1035                 panel_pos_backup = prev_pos;
1036                 panel_size_backup = prev_size;
1037                 highlightedPanel_backup = highlightedPanel;
1038         }
1039 }
1040
1041 float HUD_Panel_InputEvent(float bInputType, float nPrimary, float nSecondary)
1042 {
1043         string s;
1044
1045         if(!autocvar__hud_configure)
1046                 return false;
1047
1048         // allow console bind to work
1049         string con_keys;
1050         float keys;
1051         con_keys = findkeysforcommand("toggleconsole");
1052         keys = tokenize(con_keys);
1053
1054         float hit_con_bind, i;
1055         for (i = 0; i < keys; ++i)
1056         {
1057                 if(nPrimary == stof(argv(i)))
1058                         hit_con_bind = 1;
1059         }
1060
1061         if(bInputType == 0) {
1062                 if(nPrimary == K_ALT) hudShiftState |= S_ALT;
1063                 if(nPrimary == K_CTRL) hudShiftState |= S_CTRL;
1064                 if(nPrimary == K_SHIFT) hudShiftState |= S_SHIFT;
1065         }
1066         else if(bInputType == 1) {
1067                 if(nPrimary == K_ALT) hudShiftState -= (hudShiftState & S_ALT);
1068                 if(nPrimary == K_CTRL) hudShiftState -= (hudShiftState & S_CTRL);
1069                 if(nPrimary == K_SHIFT) hudShiftState -= (hudShiftState & S_SHIFT);
1070         }
1071
1072         if(nPrimary == K_MOUSE1)
1073         {
1074                 if(bInputType == 0) { // key pressed
1075                         mouseClicked = 1;
1076                         return true;
1077                 }
1078                 else if(bInputType == 1) {// key released
1079                         mouseClicked = 0;
1080                         return true;
1081                 }
1082         }
1083         else if(nPrimary == K_ESCAPE)
1084         {
1085                 if (bInputType == 1)
1086                         return true;
1087                 menu_enabled = 1;
1088                 menu_enabled_time = time;
1089                 localcmd("menu_showhudexit\n");
1090         }
1091         else if(hudShiftState & S_CTRL)
1092         {
1093                 if (mouseClicked)
1094                         return true;
1095
1096                 if(nPrimary == K_SPACE) // enable/disable highlighted panel or dock
1097                 {
1098                         if (bInputType == 1)
1099                                 return true;
1100
1101                         if (highlightedPanel_prev != -1)
1102                                 cvar_set(strcat("hud_panel_", panel_name), ftos(!(panel_enabled)));
1103                         else
1104                                 cvar_set(strcat("hud_dock"), (autocvar_hud_dock == "") ? "dock" : "");
1105                 }
1106                 if(nPrimary == 'c') // copy highlighted panel size
1107                 {
1108                         if (bInputType == 1)
1109                                 return true;
1110
1111                         if (highlightedPanel_prev != -1)
1112                         {
1113                                 panel_size_copied = panel_size;
1114                                 highlightedPanel_copied = highlightedPanel_prev;
1115                         }
1116                 }
1117                 else if(nPrimary == 'v') // past copied size on the highlighted panel
1118                 {
1119                         if (bInputType == 1)
1120                                 return true;
1121
1122                         if (highlightedPanel_copied == -1 || highlightedPanel_prev == -1)
1123                                 return true;
1124
1125                         HUD_Panel_UpdatePosSizeForId(highlightedPanel_prev);
1126
1127                         // reduce size if it'd go beyond screen boundaries
1128                         vector tmp_size = panel_size_copied;
1129                         if (panel_pos_x + panel_size_copied_x > vid_conwidth)
1130                                 tmp_size_x = vid_conwidth - panel_pos_x;
1131                         if (panel_pos_y + panel_size_copied_y > vid_conheight)
1132                                 tmp_size_y = vid_conheight - panel_pos_y;
1133
1134                         if (panel_size == tmp_size)
1135                                 return true;
1136
1137                         // backup first!
1138                         panel_pos_backup = panel_pos;
1139                         panel_size_backup = panel_size;
1140                         highlightedPanel_backup = highlightedPanel_prev;
1141
1142                         s = strcat(ftos(tmp_size_x/vid_conwidth), " ", ftos(tmp_size_y/vid_conheight));
1143                         cvar_set(strcat("hud_panel_", panel_name, "_size"), s);
1144                 }
1145                 else if(nPrimary == 'z') // undo last action
1146                 {
1147                         if (bInputType == 1)
1148                                 return true;
1149                         //restore previous values
1150                         if (highlightedPanel_backup != -1)
1151                         {
1152                                 HUD_Panel_GetName(highlightedPanel_backup);
1153                                 s = strcat(ftos(panel_pos_backup_x/vid_conwidth), " ", ftos(panel_pos_backup_y/vid_conheight));
1154                                 cvar_set(strcat("hud_panel_", panel_name, "_pos"), s);
1155                                 s = strcat(ftos(panel_size_backup_x/vid_conwidth), " ", ftos(panel_size_backup_y/vid_conheight));
1156                                 cvar_set(strcat("hud_panel_", panel_name, "_size"), s);
1157                                 highlightedPanel_backup = -1;
1158                         }
1159                 }
1160         }
1161         else if(nPrimary == K_UPARROW || nPrimary == K_DOWNARROW || nPrimary == K_LEFTARROW || nPrimary == K_RIGHTARROW)
1162         {
1163                 if (bInputType == 1)
1164                 {
1165                         pressed_key_time = 0;
1166                         return true;
1167                 }
1168                 else if (pressed_key_time == 0)
1169                         pressed_key_time = time;
1170
1171                 HUD_Panel_Arrow_Action(nPrimary); //move or resize panel
1172         }
1173         else if(hit_con_bind)
1174                 return false;
1175
1176         return true; // Suppress ALL other input
1177 }
1178
1179 float HUD_Panel_HighlightCheck()
1180 {
1181         float i, j, border;
1182         vector panelPos;
1183         vector panelSize;
1184
1185         while(j <= HUD_PANEL_NUM)
1186         {
1187                 i = panel_order[j];
1188                 j += 1;
1189
1190                 HUD_Panel_UpdatePosSizeForId(i);
1191
1192                 panelPos = panel_pos;
1193                 panelSize = panel_size;
1194                 border = max(8, panel_bg_border); // FORCED border so a small border size doesn't mean you can't resize
1195
1196                 // move
1197                 if(mousepos_x >= panelPos_x && mousepos_y >= panelPos_y && mousepos_x <= panelPos_x + panelSize_x && mousepos_y <= panelPos_y + panelSize_y)
1198                 {
1199                         return 1;
1200                 }
1201                 // resize from topleft border
1202                 else if(mousepos_x >= panelPos_x - border && mousepos_y >= panelPos_y - border && mousepos_x <= panelPos_x + 0.5 * panelSize_x && mousepos_y <= panelPos_y + 0.5 * panelSize_y)
1203                 {
1204                         return 2;
1205                 }
1206                 // resize from topright border
1207                 else if(mousepos_x >= panelPos_x + 0.5 * panelSize_x && mousepos_y >= panelPos_y - border && mousepos_x <= panelPos_x + panelSize_x + border && mousepos_y <= panelPos_y + 0.5 * panelSize_y)
1208                 {
1209                         return 3;
1210                 }
1211                 // resize from bottomleft border
1212                 else if(mousepos_x >= panelPos_x - border && mousepos_y >= panelPos_y + 0.5 * panelSize_y && mousepos_x <= panelPos_x + 0.5 * panelSize_x && mousepos_y <= panelPos_y + panelSize_y + border)
1213                 {
1214                         return 3;
1215                 }
1216                 // resize from bottomright border
1217                 else if(mousepos_x >= panelPos_x + 0.5 * panelSize_x && mousepos_y >= panelPos_y + 0.5 * panelSize_y && mousepos_x <= panelPos_x + panelSize_x + border && mousepos_y <= panelPos_y + panelSize_y + border)
1218                 {
1219                         return 2;
1220                 }
1221         }
1222         return 0;
1223 }
1224
1225 // move a panel to the beginning of the panel order array (which means it gets drawn last, on top of everything else)
1226 void HUD_Panel_FirstInDrawQ(float id)
1227 {
1228         float i;
1229         var float place = -1;
1230         // find out where in the array our current id is, save into place
1231         for(i = 0; i < HUD_PANEL_NUM; ++i)
1232         {
1233                 if(panel_order[i] == id)
1234                 {
1235                         place = i;
1236                         break;
1237                 }
1238         }
1239         // place last if we didn't find a place for it yet (probably new panel, or screwed up cvar)
1240         if(place == -1)
1241                 place = HUD_PANEL_NUM - 1;
1242
1243         // move all ids up by one step in the array until "place"
1244         for(i = place; i > 0; --i)
1245         {
1246                 panel_order[i] = panel_order[i-1];
1247         }
1248         // now save the new top id
1249         panel_order[0] = id;
1250         
1251         // let's save them into the cvar by some strcat trickery
1252         string s;
1253         for(i = 0; i < HUD_PANEL_NUM; ++i)
1254         {
1255                 s = strcat(s, ftos(panel_order[i]), " ");
1256         }
1257         cvar_set("_hud_panelorder", s);
1258         if(hud_panelorder_prev)
1259                 strunzone(hud_panelorder_prev);
1260         hud_panelorder_prev = strzone(autocvar__hud_panelorder); // prevent HUD_Main from doing useless update, we already updated here
1261 }
1262
1263 void HUD_Panel_Highlight()
1264 {
1265         float i, j, border;
1266         vector panelPos;
1267         vector panelSize;
1268
1269         while(j <= HUD_PANEL_NUM)
1270         {
1271                 i = panel_order[j];
1272                 j += 1;
1273
1274                 HUD_Panel_UpdatePosSizeForId(i);
1275
1276                 panelPos = panel_pos;
1277                 panelSize = panel_size;
1278                 border = max(8, panel_bg_border); // FORCED border so a small border size doesn't mean you can't resize
1279
1280                 // move
1281                 if(mousepos_x >= panelPos_x && mousepos_y >= panelPos_y && mousepos_x <= panelPos_x + panelSize_x && mousepos_y <= panelPos_y + panelSize_y)
1282                 {
1283                         highlightedPanel = i;
1284                         HUD_Panel_FirstInDrawQ(i);
1285                         highlightedAction = 1;
1286                         panel_click_distance = mousepos - panelPos;
1287                         return;
1288                 }
1289                 // resize from topleft border
1290                 else if(mousepos_x >= panelPos_x - border && mousepos_y >= panelPos_y - border && mousepos_x <= panelPos_x + 0.5 * panelSize_x && mousepos_y <= panelPos_y + 0.5 * panelSize_y)
1291                 {
1292                         highlightedPanel = i;
1293                         HUD_Panel_FirstInDrawQ(i);
1294                         highlightedAction = 2;
1295                         resizeCorner = 1;
1296                         panel_click_distance = mousepos - panelPos;
1297                         panel_click_resizeorigin = panelPos + panelSize;
1298                         return;
1299                 }
1300                 // resize from topright border
1301                 else if(mousepos_x >= panelPos_x + 0.5 * panelSize_x && mousepos_y >= panelPos_y - border && mousepos_x <= panelPos_x + panelSize_x + border && mousepos_y <= panelPos_y + 0.5 * panelSize_y)
1302                 {
1303                         highlightedPanel = i;
1304                         HUD_Panel_FirstInDrawQ(i);
1305                         highlightedAction = 2;
1306                         resizeCorner = 2;
1307                         panel_click_distance_x = panelSize_x - mousepos_x + panelPos_x;
1308                         panel_click_distance_y = mousepos_y - panelPos_y;
1309                         panel_click_resizeorigin = panelPos + eY * panelSize_y;
1310                         return;
1311                 }
1312                 // resize from bottomleft border
1313                 else if(mousepos_x >= panelPos_x - border && mousepos_y >= panelPos_y + 0.5 * panelSize_y && mousepos_x <= panelPos_x + 0.5 * panelSize_x && mousepos_y <= panelPos_y + panelSize_y + border)
1314                 {
1315                         highlightedPanel = i;
1316                         HUD_Panel_FirstInDrawQ(i);
1317                         highlightedAction = 2;
1318                         resizeCorner = 3;
1319                         panel_click_distance_x = mousepos_x - panelPos_x;
1320                         panel_click_distance_y = panelSize_y - mousepos_y + panelPos_y;
1321                         panel_click_resizeorigin = panelPos + eX * panelSize_x;
1322                         return;
1323                 }
1324                 // resize from bottomright border
1325                 else if(mousepos_x >= panelPos_x + 0.5 * panelSize_x && mousepos_y >= panelPos_y + 0.5 * panelSize_y && mousepos_x <= panelPos_x + panelSize_x + border && mousepos_y <= panelPos_y + panelSize_y + border)
1326                 {
1327                         highlightedPanel = i;
1328                         HUD_Panel_FirstInDrawQ(i);
1329                         highlightedAction = 2;
1330                         resizeCorner = 4;
1331                         panel_click_distance = panelSize - mousepos + panelPos;
1332                         panel_click_resizeorigin = panelPos;
1333                         return;
1334                 }
1335                 else
1336                 {
1337                         highlightedPanel_prev = -1;
1338                 }
1339         }
1340 }
1341
1342 float highlightcheck;
1343 vector prev_pos, prev_size;
1344 void HUD_Panel_Mouse()
1345 {
1346         // TODO: needs better check... is there any float that contains the current state of the menu? _menu_alpha isn't apparently updated the frame the menu gets enabled
1347         if (autocvar__menu_alpha == 0 && time - menu_enabled_time > 0.5)
1348                 menu_enabled = 0;
1349
1350         /*
1351         print("menu_enabled: ", ftos(menu_enabled), "\n");
1352         print("Highlighted: ", ftos(highlightedPanel), "\n");
1353         print("Menu alpha: ", ftos(autocvar__menu_alpha), "\n");
1354         */
1355
1356         // instantly hide the editor cursor if we open the HUDExit dialog
1357         // as hud_fade_alpha doesn't decrease to 0 in this case
1358         // TODO: find a way to fade the cursor out even in this case
1359         if(menu_enabled == 1 || (menu_enabled == 2 && !hud_fade_alpha))
1360                 return;
1361
1362         if(mouseClicked == 0 && menu_enabled != 2 && highlightedPanel >= 0) { // don't reset these variables in menu_enabled mode 2!
1363                 highlightedPanel = -1;
1364                 highlightedAction = 0;
1365         }
1366         if(highlightedPanel != -1)
1367                 highlightedPanel_prev = highlightedPanel;
1368
1369         mousepos = mousepos + getmousepos() * autocvar_menu_mouse_speed;
1370
1371         mousepos_x = bound(0, mousepos_x, vid_conwidth);
1372         mousepos_y = bound(0, mousepos_y, vid_conheight);
1373
1374         if(mouseClicked)
1375         {
1376                 if(prevMouseClicked == 0)
1377                 {
1378                         HUD_Panel_Highlight(); // sets highlightedPanel, highlightedAction, panel_click_distance, panel_click_resizeorigin
1379                                                                         // and calls HUD_Panel_UpdatePosSizeForId() for the highlighted panel
1380                         prev_pos = panel_pos;
1381                         prev_size = panel_size;
1382                 }
1383                 else
1384                         HUD_Panel_UpdatePosSizeForId(highlightedPanel);
1385
1386                 if (prev_pos != panel_pos || prev_size != panel_size)
1387                 {
1388                         hud_configure_checkcollisions = (!(hudShiftState & S_CTRL) && autocvar_hud_configure_checkcollisions);
1389                         // backup!
1390                         panel_pos_backup = prev_pos;
1391                         panel_size_backup = prev_size;
1392                         highlightedPanel_backup = highlightedPanel;
1393                 }
1394                 else
1395                         // in case the clicked panel is inside another panel and we aren't
1396                         // moving it, avoid the immediate "fix" of its position/size
1397                         // (often unwanted and hateful) by disabling collisions check
1398                         hud_configure_checkcollisions = false;
1399
1400                 if(highlightedAction == 1)
1401                         HUD_Panel_SetPos(mousepos - panel_click_distance);
1402                 else if(highlightedAction == 2)
1403                 {
1404                         vector mySize;
1405                         if(resizeCorner == 1) {
1406                                 mySize_x = panel_click_resizeorigin_x - (mousepos_x - panel_click_distance_x);
1407                                 mySize_y = panel_click_resizeorigin_y - (mousepos_y - panel_click_distance_y);
1408                         } else if(resizeCorner == 2) {
1409                                 mySize_x = mousepos_x + panel_click_distance_x - panel_click_resizeorigin_x;
1410                                 mySize_y = panel_click_distance_y + panel_click_resizeorigin_y - mousepos_y;
1411                         } else if(resizeCorner == 3) {
1412                                 mySize_x = panel_click_resizeorigin_x + panel_click_distance_x - mousepos_x;
1413                                 mySize_y = mousepos_y + panel_click_distance_y - panel_click_resizeorigin_y;
1414                         } else { // resizeCorner == 4
1415                                 mySize_x = mousepos_x - (panel_click_resizeorigin_x - panel_click_distance_x);
1416                                 mySize_y = mousepos_y - (panel_click_resizeorigin_y - panel_click_distance_y);
1417                         }
1418                         HUD_Panel_SetPosSize(mySize);
1419                 }
1420
1421                 // doubleclick check
1422                 if(time - prevMouseClickedTime < 0.4 && prevMouseClicked == 0 && prevMouseClickedPos == mousepos && highlightedPanel >= 0)
1423                 {
1424                         mouseClicked = 0; // to prevent spam, I guess.
1425                         menu_enabled = 2;
1426                         menu_enabled_time = time;
1427                         HUD_Panel_GetName(highlightedPanel);
1428                         localcmd("menu_showhudoptions ", panel_name, "\n");
1429                         return;
1430                 }
1431                 if(prevMouseClicked == 0)
1432                 {
1433                         prevMouseClickedTime = time;
1434                         prevMouseClickedPos = mousepos;
1435                 }
1436         }
1437         else
1438         {
1439                 highlightcheck = HUD_Panel_HighlightCheck();
1440         }
1441         // draw cursor after performing move/resize to have the panel pos/size updated before highlightcheck
1442         vector cursorsize;
1443         cursorsize = '32 32 0';
1444
1445         if(highlightcheck == 0)
1446                 drawpic(mousepos, strcat("gfx/menu/", autocvar_menu_skin, "/cursor.tga"), '32 32 0', '1 1 1', hud_fade_alpha, DRAWFLAG_NORMAL);
1447         else if(highlightcheck == 1)
1448                 drawpic(mousepos - cursorsize * 0.5, strcat("gfx/menu/", autocvar_menu_skin, "/cursor_move.tga"), '32 32 0', '1 1 1', hud_fade_alpha, DRAWFLAG_NORMAL);
1449         else if(highlightcheck == 2)
1450                 drawpic(mousepos - cursorsize * 0.5, strcat("gfx/menu/", autocvar_menu_skin, "/cursor_resize.tga"), '32 32 0', '1 1 1', hud_fade_alpha, DRAWFLAG_NORMAL);
1451         else
1452                 drawpic(mousepos - cursorsize * 0.5, strcat("gfx/menu/", autocvar_menu_skin, "/cursor_resize2.tga"), '32 32 0', '1 1 1', hud_fade_alpha, DRAWFLAG_NORMAL);
1453
1454         prevMouseClicked = mouseClicked;
1455 }
1456
1457 // Weapon icons (#0)
1458 //
1459 float weaponspace[10];
1460 #define HUD_Weapons_Clear()\
1461         float idx;\
1462         for(idx = 0; idx < 10; ++idx)\
1463                 weaponspace[idx] = 0
1464
1465 entity weaponorder[WEP_MAXCOUNT];
1466 void weaponorder_swap(float i, float j, entity pass)
1467 {
1468         entity h;
1469         h = weaponorder[i];
1470         weaponorder[i] = weaponorder[j];
1471         weaponorder[j] = h;
1472 }
1473
1474 string weaponorder_cmp_str;
1475 float weaponorder_cmp(float i, float j, entity pass)
1476 {
1477         float ai, aj;
1478         ai = strstrofs(weaponorder_cmp_str, sprintf(" %d ", weaponorder[i].weapon), 0);
1479         aj = strstrofs(weaponorder_cmp_str, sprintf(" %d ", weaponorder[j].weapon), 0);
1480         return aj - ai; // the string is in REVERSE order (higher prio at the right is what we want, but higher prio first is the string)
1481 }
1482
1483 float GetAmmoStat(float i)
1484 {
1485         switch(i)
1486         {
1487                 case 0: return STAT_SHELLS;
1488                 case 1: return STAT_NAILS;
1489                 case 2: return STAT_ROCKETS;
1490                 case 3: return STAT_CELLS;
1491                 case 4: return STAT_FUEL;
1492                 default: return -1;
1493         }
1494 }
1495
1496 float GetAmmoTypeForWep(float i)
1497 {
1498         switch(i)
1499         {
1500                 case WEP_SHOTGUN: return 0;
1501                 case WEP_UZI: return 1;
1502                 case WEP_GRENADE_LAUNCHER: return 2;
1503                 case WEP_MINE_LAYER: return 2;
1504                 case WEP_ELECTRO: return 3;
1505                 case WEP_CRYLINK: return 3;
1506                 case WEP_HLAC: return 3;
1507                 case WEP_MINSTANEX: return 3;
1508                 case WEP_NEX: return 3;
1509                 case WEP_SNIPERRIFLE: return 1;
1510                 case WEP_HAGAR: return 2;
1511                 case WEP_ROCKET_LAUNCHER: return 2;
1512                 case WEP_SEEKER: return 2;
1513                 case WEP_FIREBALL: return 4;
1514                 case WEP_HOOK: return 3;
1515                 default: return -1;
1516         }
1517 }
1518
1519 void HUD_Weapons(void)
1520 {
1521         float f, screen_ar;
1522         float center_x, center_y;
1523
1524         if(!autocvar_hud_panel_weapons && !autocvar__hud_configure)
1525                 return;
1526
1527         float timeout = autocvar_hud_panel_weapons_timeout;
1528         float timeout_effect_length, timein_effect_length;
1529         if (autocvar_hud_panel_weapons_timeout_effect == 0)
1530         {
1531                 timeout_effect_length = 0;
1532                 timein_effect_length = 0;
1533         }
1534         else
1535         {
1536                 timeout_effect_length = 0.75;
1537                 timein_effect_length = 0.375;
1538         }
1539
1540         if (timeout && time >= weapontime + timeout + timeout_effect_length && !autocvar__hud_configure)
1541         {
1542                 weaponprevtime = time;
1543                 return;
1544         }
1545
1546         active_panel = HUD_PANEL_WEAPONS;
1547         HUD_Panel_UpdateCvars(weapons);
1548
1549         if (timeout && time >= weapontime + timeout && !autocvar__hud_configure)
1550         {
1551                 f = (time - (weapontime + timeout)) / timeout_effect_length;
1552                 if (autocvar_hud_panel_weapons_timeout_effect)
1553                 {
1554                         panel_bg_alpha *= (1 - f);
1555                         panel_fg_alpha *= (1 - f);
1556                 }
1557                 if (autocvar_hud_panel_weapons_timeout_effect == 1)
1558                 {
1559                         f *= f; // for a cooler movement
1560                         center_x = panel_pos_x + panel_size_x/2;
1561                         center_y = panel_pos_y + panel_size_y/2;
1562                         screen_ar = vid_conwidth/vid_conheight;
1563                         if (center_x/center_y < screen_ar) //bottom left
1564                         {
1565                                 if ((vid_conwidth - center_x)/center_y < screen_ar) //bottom
1566                                         panel_pos_y += f * (vid_conheight - panel_pos_y);
1567                                 else //left
1568                                         panel_pos_x -= f * (panel_pos_x + panel_size_x);
1569                         }
1570                         else //top right
1571                         {
1572                                 if ((vid_conwidth - center_x)/center_y < screen_ar) //right
1573                                         panel_pos_x += f * (vid_conwidth - panel_pos_x);
1574                                 else //top
1575                                         panel_pos_y -= f * (panel_pos_y + panel_size_y);
1576                         }
1577                 }
1578                 weaponprevtime = time - (1 - f) * timein_effect_length;
1579         }
1580         else if (timeout && time < weaponprevtime + timein_effect_length && !autocvar__hud_configure)
1581         {
1582                 f = (time - weaponprevtime) / timein_effect_length;
1583                 if (autocvar_hud_panel_weapons_timeout_effect)
1584                 {
1585                         panel_bg_alpha *= (f);
1586                         panel_fg_alpha *= (f);
1587                 }
1588                 if (autocvar_hud_panel_weapons_timeout_effect == 1)
1589                 {
1590                         f *= f; // for a cooler movement
1591                         f = 1 - f;
1592                         center_x = panel_pos_x + panel_size_x/2;
1593                         center_y = panel_pos_y + panel_size_y/2;
1594                         screen_ar = vid_conwidth/vid_conheight;
1595                         if (center_x/center_y < screen_ar) //bottom left
1596                         {
1597                                 if ((vid_conwidth - center_x)/center_y < screen_ar) //bottom
1598                                         panel_pos_y += f * (vid_conheight - panel_pos_y);
1599                                 else //left
1600                                         panel_pos_x -= f * (panel_pos_x + panel_size_x);
1601                         }
1602                         else //top right
1603                         {
1604                                 if ((vid_conwidth - center_x)/center_y < screen_ar) //right
1605                                         panel_pos_x += f * (vid_conwidth - panel_pos_x);
1606                                 else //top
1607                                         panel_pos_y -= f * (panel_pos_y + panel_size_y);
1608                         }
1609                 }
1610         }
1611
1612         float i, weapid, wpnalpha, weapon_cnt;
1613         weapon_cnt = 0;
1614         for(i = WEP_FIRST; i <= WEP_LAST; ++i)
1615         {
1616                 self = get_weaponinfo(i);
1617                 if(self.impulse >= 0)
1618                         ++weapon_cnt;
1619         }
1620
1621         // TODO make this configurable
1622         if(weaponorder_bypriority != autocvar_cl_weaponpriority)
1623         {
1624                 if(weaponorder_bypriority)
1625                         strunzone(weaponorder_bypriority);
1626                 if(weaponorder_byimpulse)
1627                         strunzone(weaponorder_byimpulse);
1628
1629                 weaponorder_bypriority = strzone(autocvar_cl_weaponpriority);
1630                 weaponorder_byimpulse = strzone(W_FixWeaponOrder_BuildImpulseList(W_FixWeaponOrder_ForceComplete(W_NumberWeaponOrder(weaponorder_bypriority))));
1631                 weaponorder_cmp_str = strcat(" ", weaponorder_byimpulse, " ");
1632
1633                 weapon_cnt = 0;
1634                 for(i = WEP_FIRST; i <= WEP_LAST; ++i)
1635                 {
1636                         self = get_weaponinfo(i);
1637                         if(self.impulse >= 0)
1638                         {
1639                                 weaponorder[weapon_cnt] = self;
1640                                 ++weapon_cnt;
1641                         }
1642                 }
1643                 heapsort(weapon_cnt, weaponorder_swap, weaponorder_cmp, world);
1644
1645                 weaponorder_cmp_str = string_null;
1646         }
1647
1648         HUD_Panel_DrawBg(1);
1649         if(panel_bg_padding)
1650         {
1651                 panel_pos += '1 1 0' * panel_bg_padding;
1652                 panel_size -= '2 2 0' * panel_bg_padding;
1653         }
1654
1655         if(autocvar_hud_panel_weapons_fade)
1656         {
1657                 wpnalpha = 3.2 - 2 * (time - weapontime);
1658                 wpnalpha = bound(0.7, wpnalpha, 1) * panel_fg_alpha;
1659         }
1660         else
1661                 wpnalpha = panel_fg_alpha;
1662
1663         HUD_Weapons_Clear();
1664
1665         float rows, columns;
1666         float aspect = autocvar_hud_panel_weapons_aspect;
1667         rows = panel_size_y/panel_size_x;
1668         rows = bound(1, floor((sqrt(4 * aspect * rows * WEP_COUNT + rows * rows) + rows + 0.5) / 2), WEP_COUNT);
1669
1670         columns = ceil(WEP_COUNT/rows);
1671         float row, column;
1672
1673         float a, type, fullammo;
1674         float when;
1675         when = autocvar_hud_panel_weapons_complainbubble_time;
1676         float fadetime;
1677         fadetime = autocvar_hud_panel_weapons_complainbubble_fadetime;
1678
1679         vector color;
1680         vector wpnpos;
1681         vector wpnsize;
1682         
1683         float fullammo_shells, fullammo_nails, fullammo_rockets, fullammo_cells, fullammo_fuel;
1684         vector ammo_color;
1685         float ammo_alpha;
1686         wpnsize = eX * panel_size_x*(1/columns) + eY * panel_size_y*(1/rows);
1687         float barsize_x, barsize_y, baroffset_x, baroffset_y;
1688         float show_ammo = autocvar_hud_panel_weapons_ammo;
1689         if (show_ammo)
1690         {
1691                 fullammo_shells = autocvar_hud_panel_weapons_ammo_full_shells;
1692                 fullammo_nails = autocvar_hud_panel_weapons_ammo_full_nails;
1693                 fullammo_rockets = autocvar_hud_panel_weapons_ammo_full_rockets;
1694                 fullammo_cells = autocvar_hud_panel_weapons_ammo_full_cells;
1695                 fullammo_fuel = autocvar_hud_panel_weapons_ammo_full_fuel;
1696                 ammo_color = stov(autocvar_hud_panel_weapons_ammo_color);
1697                 ammo_alpha = panel_fg_alpha * autocvar_hud_panel_weapons_ammo_alpha;
1698
1699
1700                 if(wpnsize_x/wpnsize_y > aspect)
1701                 {
1702                         barsize_x = aspect * wpnsize_y;
1703                         barsize_y = wpnsize_y;
1704                         baroffset_x = (wpnsize_x - barsize_x) / 2;
1705                 }
1706                 else
1707                 {
1708                         barsize_y = 1/aspect * wpnsize_x;
1709                         barsize_x = wpnsize_x;
1710                         baroffset_y = (wpnsize_y - barsize_y) / 2;
1711                 }
1712         }
1713
1714         float show_accuracy;
1715         float weapon_stats;
1716         if(autocvar_hud_panel_weapons_accuracy && acc_levels)
1717         {
1718                 show_accuracy = true;
1719                 if (acc_col_x[0] == -1)
1720                         for (i = 0; i < acc_levels; ++i)
1721                                 acc_col[i] = stov(cvar_string(strcat("accuracy_color", ftos(i))));
1722         }
1723
1724         float weapons_st = getstati(STAT_WEAPONS);
1725         float label = autocvar_hud_panel_weapons_label;
1726
1727         for(i = 0; i < weapon_cnt; ++i)
1728         {
1729                 wpnpos = panel_pos + eX * column * wpnsize_x + eY * row * wpnsize_y;
1730
1731                 self = weaponorder[i];
1732                 weapid = self.impulse;
1733
1734                 // draw background behind currently selected weapon
1735                 if(self.weapon == activeweapon)
1736                         drawpic_aspect_skin(wpnpos, "weapon_current_bg", wpnsize, '1 1 1', wpnalpha, DRAWFLAG_NORMAL);
1737
1738                 // draw the weapon accuracy
1739                 if(show_accuracy)
1740                 {
1741                         weapon_stats = weapon_accuracy[self.weapon-WEP_FIRST];
1742                         if(weapon_stats >= 0)
1743                         {
1744                                 // find the max level lower than weapon_stats
1745                                 float j;
1746                                 j = acc_levels-1;
1747                                 while ( j && weapon_stats < acc_lev[j] )
1748                                         --j;
1749
1750                                 // inject color j+1 in color j, how much depending on how much weapon_stats is higher than level j
1751                                 float factor;
1752                                 factor = (weapon_stats - acc_lev[j]) / (acc_lev[j+1] - acc_lev[j]);
1753                                 color = acc_col[j];
1754                                 color = color + factor * (acc_col[j+1] - color);
1755
1756                                 drawpic_aspect_skin(wpnpos, "weapon_accuracy", wpnsize, color, panel_fg_alpha, DRAWFLAG_NORMAL);
1757                         }
1758                 }
1759
1760                 // draw the weapon icon
1761                 if((weapid >= 0) && (weapons_st & self.weapons))
1762                 {
1763                         drawpic_aspect_skin(wpnpos, strcat("weapon", self.netname), wpnsize, '1 1 1', wpnalpha, DRAWFLAG_NORMAL);
1764
1765                         if(label == 1) // weapon number
1766                                 drawstring(wpnpos, ftos(weapid), '1 1 0' * 0.5 * wpnsize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
1767                         else if(label == 2) // bind
1768                                 drawstring(wpnpos, getcommandkey(ftos(weapid), strcat("impulse ", ftos(weapid))), '1 1 0' * 0.5 * wpnsize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
1769
1770                         // draw ammo status bar
1771                         if(show_ammo && self.weapon != WEP_TUBA && self.weapon != WEP_LASER && self.weapon != WEP_PORTO)
1772                         {
1773                                 a = 0;
1774                                 type = GetAmmoTypeForWep(self.weapon);
1775                                 if(type != -1)
1776                                         a = getstati(GetAmmoStat(type)); // how much ammo do we have?
1777
1778                                 if(a > 0)
1779                                 {
1780                                         switch(type) {
1781                                                 case 0: fullammo = fullammo_shells; break;
1782                                                 case 1: fullammo = fullammo_nails; break;
1783                                                 case 2: fullammo = fullammo_rockets; break;
1784                                                 case 3: fullammo = fullammo_cells; break;
1785                                                 case 4: fullammo = fullammo_fuel; break;
1786                                                 default: fullammo = 60;
1787                                         }
1788
1789                                         drawsetcliparea(
1790                                                 wpnpos_x + baroffset_x,
1791                                                 wpnpos_y + baroffset_y,
1792                                                 barsize_x * bound(0, a/fullammo, 1),
1793                                                 barsize_y);
1794                                         drawpic_aspect_skin(wpnpos, "weapon_ammo", wpnsize, ammo_color, ammo_alpha, DRAWFLAG_NORMAL);
1795                                         drawresetcliparea();
1796                                 }
1797                         }
1798                 }
1799
1800                 // draw a "ghost weapon icon" if you don't have the weapon
1801                 else
1802                 {
1803                         drawpic_aspect_skin(wpnpos, strcat("weapon", self.netname), wpnsize, '0 0 0', panel_fg_alpha * 0.5, DRAWFLAG_NORMAL);
1804                 }
1805
1806                 // draw the complain message
1807                 if(time - complain_weapon_time < when + fadetime && self.weapon == complain_weapon && autocvar_hud_panel_weapons_complainbubble)
1808                 {
1809                         if(fadetime)
1810                         {
1811                                 if(complain_weapon_time + when > time)
1812                                         a = 1;
1813                                 else
1814                                         a = bound(0, (complain_weapon_time + when + fadetime - time) / fadetime, 1);
1815                         }
1816                         else
1817                         {
1818                                 if(complain_weapon_time + when > time)
1819                                         a = 1;
1820                                 else
1821                                         a = 0;
1822                         }
1823
1824                         string s;
1825                         if(complain_weapon_type == 0) {
1826                                 s = "Out of ammo";
1827                                 color = stov(autocvar_hud_panel_weapons_complainbubble_color_outofammo);
1828                         }
1829                         else if(complain_weapon_type == 1) {
1830                                 s = _("Don't have");
1831                                 color = stov(autocvar_hud_panel_weapons_complainbubble_color_donthave);
1832                         }
1833                         else {
1834                                 s = _("Unavailable");
1835                                 color = stov(autocvar_hud_panel_weapons_complainbubble_color_unavailable);
1836                         }
1837                         float padding = autocvar_hud_panel_weapons_complainbubble_padding;
1838                         drawpic_aspect_skin(wpnpos + '1 1 0' * padding, "weapon_complainbubble", wpnsize - '2 2 0' * padding, color, a * panel_fg_alpha, DRAWFLAG_NORMAL);
1839                         drawstring_aspect(wpnpos + '1 1 0' * padding, s, wpnsize - '2 2 0' * padding, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
1840                 }
1841
1842                 ++row;
1843                 if(row >= rows)
1844                 {
1845                         row = 0;
1846                         ++column;
1847                 }
1848         }
1849
1850 }
1851
1852 // Ammo (#1)
1853 //
1854 // TODO: macro
1855 float GetAmmoItemCode(float i)
1856 {
1857         switch(i)
1858         {
1859                 case 0: return IT_SHELLS;
1860                 case 1: return IT_NAILS;
1861                 case 2: return IT_ROCKETS;
1862                 case 3: return IT_CELLS;
1863                 case 4: return IT_FUEL;
1864                 default: return -1;
1865         }
1866 }
1867
1868 string GetAmmoPicture(float i)
1869 {
1870         switch(i)
1871         {
1872                 case 0: return "ammo_shells";
1873                 case 1: return "ammo_bullets";
1874                 case 2: return "ammo_rockets";
1875                 case 3: return "ammo_cells";
1876                 case 4: return "ammo_fuel";
1877                 default: return "";
1878         }
1879 }
1880
1881 void DrawAmmoItem(vector myPos, vector mySize, float itemcode, float currently_selected)
1882 {
1883         float a;
1884         if(autocvar__hud_configure)
1885         {
1886                 currently_selected = (itemcode == 2); //rockets always selected
1887                 a = 100;
1888         }
1889         else
1890                 a = getstati(GetAmmoStat(itemcode)); // how much ammo do we have of type itemcode?
1891
1892         vector color;
1893         if(a < 10)
1894                 color = '0.7 0 0';
1895         else
1896                 color = '1 1 1';
1897
1898         float alpha;
1899         if(currently_selected)
1900                 alpha = 1;
1901         else
1902                 alpha = 0.7;
1903
1904         vector picpos, numpos;
1905         if(autocvar_hud_panel_ammo_iconalign)
1906         {
1907                 numpos = myPos;
1908                 picpos = myPos + eX * 2 * mySize_y;
1909         }
1910         else
1911         {
1912                 numpos = myPos + eX * mySize_y;
1913                 picpos = myPos;
1914         }
1915
1916         if (currently_selected)
1917                 drawpic_aspect_skin(myPos, "ammo_current_bg", mySize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
1918
1919     if(a > 0 && autocvar_hud_panel_ammo_progressbar)
1920         HUD_Panel_DrawProgressBar(myPos + eX * autocvar_hud_panel_ammo_progressbar_xoffset * mySize_x, mySize - eX * autocvar_hud_panel_ammo_progressbar_xoffset * mySize_x, autocvar_hud_panel_ammo_progressbar_name, 0, 0, min(1, a/autocvar_hud_panel_ammo_maxammo), color, autocvar_hud_progressbar_alpha * panel_fg_alpha * alpha, DRAWFLAG_NORMAL);
1921
1922     if(autocvar_hud_panel_ammo_text)
1923     {
1924         if(a > 0)
1925             drawstring_aspect(numpos, ftos(a), eX * (2/3) * mySize_x + eY * mySize_y, color, panel_fg_alpha * alpha, DRAWFLAG_NORMAL);
1926         else // "ghost" ammo count
1927             drawstring_aspect(numpos, ftos(a), eX * (2/3) * mySize_x + eY * mySize_y, '0 0 0', panel_fg_alpha * alpha * 0.5, DRAWFLAG_NORMAL);
1928     }
1929         if(a > 0)
1930                 drawpic_aspect_skin(picpos, GetAmmoPicture(itemcode), '1 1 0' * mySize_y, '1 1 1', panel_fg_alpha * alpha, DRAWFLAG_NORMAL);
1931         else // "ghost" ammo icon
1932                 drawpic_aspect_skin(picpos, GetAmmoPicture(itemcode), '1 1 0' * mySize_y, '0 0 0', panel_fg_alpha * alpha * 0.5, DRAWFLAG_NORMAL);
1933 }
1934
1935 void HUD_Ammo(void)
1936 {
1937         if(!autocvar_hud_panel_ammo && !autocvar__hud_configure)
1938                 return;
1939
1940         active_panel = HUD_PANEL_AMMO;
1941         HUD_Panel_UpdateCvars(ammo);
1942         vector pos, mySize;
1943         pos = panel_pos;
1944         mySize = panel_size;
1945
1946         HUD_Panel_DrawBg(1);
1947         if(panel_bg_padding)
1948         {
1949                 pos += '1 1 0' * panel_bg_padding;
1950                 mySize -= '2 2 0' * panel_bg_padding;
1951         }
1952
1953         float rows, columns, row, column;
1954         vector ammo_size;
1955         if (autocvar_hud_panel_ammo_onlycurrent)
1956                 ammo_size = mySize;
1957         else
1958         {
1959                 rows = mySize_y/mySize_x;
1960                 rows = bound(1, floor((sqrt(4 * (3/1) * rows * AMMO_COUNT + rows * rows) + rows + 0.5) / 2), AMMO_COUNT);
1961                 //                               ^^^ ammo item aspect goes here
1962
1963                 columns = ceil(AMMO_COUNT/rows);
1964
1965                 ammo_size = eX * mySize_x*(1/columns) + eY * mySize_y*(1/rows);
1966         }
1967
1968         vector offset;
1969         float newSize;
1970         if(ammo_size_x/ammo_size_y > 3)
1971         {
1972                 newSize = 3 * ammo_size_y;
1973                 offset_x = ammo_size_x - newSize;
1974                 pos_x += offset_x/2;
1975                 ammo_size_x = newSize;
1976         }
1977         else
1978         {
1979                 newSize = 1/3 * ammo_size_x;
1980                 offset_y = ammo_size_y - newSize;
1981                 pos_y += offset_y/2;
1982                 ammo_size_y = newSize;
1983         }
1984
1985         float i, stat_items, currently_selected;
1986         if (autocvar_hud_panel_ammo_onlycurrent)
1987         {
1988                 if(autocvar__hud_configure)
1989                 {
1990                         DrawAmmoItem(pos, ammo_size, 2, true); //show rockets
1991                         return;
1992                 }
1993                 stat_items = getstati(STAT_ITEMS);
1994                 for (i = 0; i < AMMO_COUNT; ++i) {
1995                         currently_selected = stat_items & GetAmmoItemCode(i);
1996                         if (currently_selected)
1997                         {
1998                                 DrawAmmoItem(pos, ammo_size, i, true);
1999                                 return;
2000                         }
2001                 }
2002                 return; // nothing to display
2003         }
2004
2005         stat_items = getstati(STAT_ITEMS);
2006         for (i = 0; i < AMMO_COUNT; ++i) {
2007                 currently_selected = stat_items & GetAmmoItemCode(i);
2008                 DrawAmmoItem(pos + eX * column * (ammo_size_x + offset_x) + eY * row * (ammo_size_y + offset_y), ammo_size, i, currently_selected);
2009                 ++row;
2010                 if(row >= rows)
2011                 {
2012                         row = 0;
2013                         column = column + 1;
2014                 }
2015         }
2016 }
2017
2018 void DrawNumIcon(float iconalign, vector myPos, vector mySize, float x, string icon, float left, vector color, float alpha)
2019 {
2020         vector newPos;
2021         float newSize_x, newSize_y;
2022         if(mySize_x/mySize_y > 3)
2023         {
2024                 newSize_x = 3 * mySize_y;
2025                 newSize_y = mySize_y;
2026
2027                 newPos_x = myPos_x + (mySize_x - newSize_x) / 2;
2028                 newPos_y = myPos_y;
2029         }
2030         else
2031         {
2032                 newSize_y = 1/3 * mySize_x;
2033                 newSize_x = mySize_x;
2034
2035                 newPos_y = myPos_y + (mySize_y - newSize_y) / 2;
2036                 newPos_x = myPos_x;
2037         }
2038
2039         vector picpos, numpos;
2040         if(left)
2041         {
2042                 if(iconalign == 1 || iconalign == 3) // right align
2043                 {
2044                         numpos = newPos;
2045                         picpos = newPos + eX * 2 * newSize_y;
2046                 }
2047                 else // left align
2048                 {
2049                         numpos = newPos + eX * newSize_y;
2050                         picpos = newPos;
2051                 }
2052         }
2053         else
2054         {
2055                 if(iconalign == 0 || iconalign == 3) // left align
2056                 {
2057                         numpos = newPos + eX * newSize_y;
2058                         picpos = newPos;
2059                 } 
2060                 else // right align
2061                 {
2062                         numpos = newPos;
2063                         picpos = newPos + eX * 2 * newSize_y;
2064                 }
2065         }
2066
2067         drawstring_aspect(numpos, ftos(x), eX * (2/3) * newSize_x + eY * newSize_y, color, panel_fg_alpha * alpha, DRAWFLAG_NORMAL);
2068         drawpic_aspect_skin(picpos, icon, '1 1 0' * newSize_y, '1 1 1', panel_fg_alpha * alpha, DRAWFLAG_NORMAL);
2069 }
2070
2071 void DrawNumIcon_expanding(float iconalign, vector myPos, vector mySize, float x, string icon, float left, vector color, float fadelerp)
2072 {
2073         float sz;
2074         sz = expandingbox_sizefactor_from_fadelerp(fadelerp);
2075
2076         DrawNumIcon(iconalign, myPos + expandingbox_resize_centered_box_offset(sz, mySize, 1), mySize * sz, x, icon, left, color, (1 - fadelerp));
2077 }
2078
2079 // Powerups (#2)
2080 //
2081 void HUD_Powerups(void) {
2082         if(!autocvar_hud_panel_powerups && !autocvar__hud_configure)
2083                 return;
2084
2085         if(!autocvar__hud_configure)
2086         {
2087                 if not(getstati(STAT_ITEMS) & (IT_STRENGTH | IT_INVINCIBLE))
2088                         return;
2089
2090                 if (getstati(STAT_HEALTH) <= 0)
2091                         return;
2092         }
2093
2094         active_panel = HUD_PANEL_POWERUPS;
2095         HUD_Panel_UpdateCvars(powerups);
2096         vector pos, mySize;
2097         pos = panel_pos;
2098         mySize = panel_size;
2099
2100         float strength_time, shield_time;
2101         if(autocvar__hud_configure)
2102         {
2103                 strength_time = 15;
2104                 shield_time = 27;
2105         }
2106         else
2107         {
2108                 strength_time = bound(0, getstatf(STAT_STRENGTH_FINISHED) - time, 99);
2109                 shield_time = bound(0, getstatf(STAT_INVINCIBLE_FINISHED) - time, 99);
2110         }
2111
2112         HUD_Panel_DrawBg(bound(0, max(strength_time, shield_time), 1));
2113         if(panel_bg_padding)
2114         {
2115                 pos += '1 1 0' * panel_bg_padding;
2116                 mySize -= '2 2 0' * panel_bg_padding;
2117         }
2118
2119         vector barpos, barsize;
2120         vector picpos;
2121         vector numpos;
2122
2123         string leftname, rightname;
2124     string leftprogressname, rightprogressname;
2125         float leftcnt, rightcnt;
2126         float leftexact, rightexact;
2127         float flip = autocvar_hud_panel_powerups_flip;
2128         if (flip) {
2129                 leftname = "strength";
2130         leftprogressname = autocvar_hud_panel_powerups_progressbar_strength;
2131                 leftcnt = ceil(strength_time);
2132                 leftexact = strength_time;
2133
2134                 rightname = "shield";
2135         rightprogressname = autocvar_hud_panel_powerups_progressbar_shield;
2136                 rightcnt = ceil(shield_time);
2137                 rightexact = shield_time;
2138         } else {
2139                 leftname = "shield";
2140         leftprogressname = autocvar_hud_panel_powerups_progressbar_shield;
2141                 leftcnt = ceil(shield_time);
2142                 leftexact = shield_time;
2143
2144                 rightname = "strength";
2145         rightprogressname = autocvar_hud_panel_powerups_progressbar_strength;
2146                 rightcnt = ceil(strength_time);
2147                 rightexact = strength_time;
2148         }
2149
2150         float baralign = autocvar_hud_panel_powerups_baralign;
2151     float barflip;
2152         float iconalign = autocvar_hud_panel_powerups_iconalign;
2153         float progressbar = autocvar_hud_panel_powerups_progressbar;
2154         if (mySize_x/mySize_y > 4)
2155         {
2156         barsize = eX * 0.5 * mySize_x + eY * mySize_y;
2157                 if(leftcnt)
2158                 {
2159                         if(baralign == 1 || baralign == 3) { // right align
2160                 barpos = pos + eX * 0.5 * mySize_x;
2161                 barflip = 1;
2162                         } else { // left align
2163                 barpos = pos;
2164                 barflip = 0;
2165                         }
2166
2167                         if(progressbar)
2168                         {
2169                                 HUD_Panel_GetProgressBarColorForString(leftname);
2170                                 HUD_Panel_DrawProgressBar(barpos, barsize, leftprogressname, 0, barflip, min(1, leftcnt/30), progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha * bound(0, max(strength_time, shield_time), 1), DRAWFLAG_NORMAL);
2171                         }
2172             if(autocvar_hud_panel_powerups_text)
2173             {
2174                 if(leftcnt > 1)
2175                     DrawNumIcon(iconalign, pos, eX * 0.5 * mySize_x + eY * mySize_y, leftcnt, leftname, 1, '1 1 1', 1);
2176                 if(leftcnt <= 5)
2177                     DrawNumIcon_expanding(iconalign, pos, eX * 0.5 * mySize_x + eY * mySize_y, leftcnt, leftname, 1, '1 1 1', bound(0, (leftcnt - leftexact) / 0.5, 1));
2178             }
2179                 }
2180
2181                 if(rightcnt)
2182                 {
2183                         if(baralign == 0 || baralign == 3) { // left align
2184                 barpos = pos;
2185                 barflip = 0;
2186                         } else { // right align
2187                 barpos = pos + eX * 0.5 * mySize_x;
2188                 barflip = 1;
2189                         }
2190
2191                         if(progressbar)
2192                         {
2193                                 HUD_Panel_GetProgressBarColorForString(rightname);
2194                                 HUD_Panel_DrawProgressBar(barpos, barsize, rightprogressname, 0, barflip, min(1, rightcnt/30), progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha * bound(0, max(strength_time, shield_time), 1), DRAWFLAG_NORMAL);
2195                         }
2196             if(autocvar_hud_panel_powerups_text)
2197             {
2198                 if(rightcnt > 1)
2199                     DrawNumIcon(iconalign, pos + eX * 0.5 * mySize_x, eX * 0.5 * mySize_x + eY * mySize_y, rightcnt, rightname, 0, '1 1 1', 1);
2200                 if(rightcnt <= 5)
2201                     DrawNumIcon_expanding(iconalign, pos + eX * 0.5 * mySize_x, eX * 0.5 * mySize_x + eY * mySize_y, rightcnt, rightname, 0, '1 1 1', bound(0, (rightcnt - rightexact) / 0.5, 1));
2202             }
2203                 }
2204         }
2205         else if (mySize_x/mySize_y > 1.5)
2206         {
2207         barsize = eX * mySize_x + eY * 0.5 * mySize_y;
2208                 if(leftcnt)
2209                 {
2210             barpos = pos;
2211                         if(baralign == 1 || baralign == 3) { // right/down align
2212                 barflip = 1;
2213                         } else { // left/up align
2214                 barflip = 0;
2215                         }
2216
2217                         if(progressbar)
2218                         {
2219                                 HUD_Panel_GetProgressBarColorForString(leftname);
2220                                 HUD_Panel_DrawProgressBar(barpos, barsize, leftprogressname, 0, barflip, min(1, leftcnt/30), progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha * bound(0, max(strength_time, shield_time), 1), DRAWFLAG_NORMAL);
2221                         }
2222             if(autocvar_hud_panel_powerups_text)
2223             {
2224                 if(leftcnt > 1)
2225                     DrawNumIcon(iconalign, pos, eX * mySize_x + eY * 0.5 * mySize_y, leftcnt, leftname, 1, '1 1 1', 1);
2226                 if(leftcnt <= 5)
2227                     DrawNumIcon_expanding(iconalign, pos, eX * mySize_x + eY * 0.5 * mySize_y, leftcnt, leftname, 1, '1 1 1', bound(0, (leftcnt - leftexact) / 0.5, 1));
2228             }
2229                 }
2230
2231                 if(rightcnt)
2232                 {
2233             barpos = pos + eY * 0.5 * mySize_y;
2234                         if(baralign == 0 || baralign == 3) { // left align
2235                 barflip = 0;
2236                         } else { // right align
2237                 barflip = 1;
2238                         }
2239
2240                         if(progressbar)
2241                         {
2242                                 HUD_Panel_GetProgressBarColorForString(rightname);
2243                                 HUD_Panel_DrawProgressBar(barpos, barsize, rightprogressname, 0, barflip, min(1, rightcnt/30), progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha * bound(0, max(strength_time, shield_time), 1), DRAWFLAG_NORMAL);
2244                         }
2245             if(autocvar_hud_panel_powerups_text)
2246             {
2247                 if(rightcnt > 1)
2248                     DrawNumIcon(iconalign, pos + eY * 0.5 * mySize_y, eX * mySize_x + eY * 0.5 * mySize_y, rightcnt, rightname, 0, '1 1 1', 1);
2249                 if(rightcnt <= 5)
2250                     DrawNumIcon_expanding(iconalign, pos + eY * 0.5 * mySize_y, eX * mySize_x + eY * 0.5 * mySize_y, rightcnt, rightname, 0, '1 1 1', bound(0, (rightcnt - rightexact) / 0.5, 1));
2251             }
2252                 }
2253         }
2254         else
2255         {
2256         barsize = eX * 0.5 * mySize_x + eY * mySize_y;
2257                 if(leftcnt)
2258                 {
2259             barpos = pos;
2260                         if(baralign == 1 || baralign == 3) { // down align
2261                 barflip = 1;
2262                         } else { // up align
2263                 barflip = 0;
2264                         }
2265
2266                         if(iconalign == 1 || iconalign == 3) { // down align
2267                                 picpos = pos + eX * 0.05 * mySize_x + eY * (mySize_y - 0.65 * mySize_x);
2268                                 numpos = pos + eY * mySize_y - eY * 0.25 * mySize_x;
2269                         } else { // up align
2270                                 picpos = pos + eX * 0.05 * mySize_x;
2271                                 numpos = pos + eY * 0.4 * mySize_x;
2272                         }
2273
2274                         if(progressbar)
2275                         {
2276                                 HUD_Panel_GetProgressBarColorForString(leftname);
2277                                 HUD_Panel_DrawProgressBar(barpos, barsize, leftprogressname, 1, barflip, min(1, leftcnt/30), progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha * bound(0, max(strength_time, shield_time), 1), DRAWFLAG_NORMAL);
2278                         }
2279             if(autocvar_hud_panel_powerups_text)
2280             {
2281                 if(leftcnt <= 5)
2282                     drawpic_aspect_skin_expanding(picpos, leftname, '0.4 0.4 0' * mySize_x, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL, bound(0, (leftcnt - leftexact) / 0.5, 1));
2283                 if(leftcnt > 1)
2284                     drawpic_aspect_skin(picpos, leftname, '0.4 0.4 0' * mySize_x, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
2285                 drawstring_aspect(numpos, ftos(leftcnt), eX * 0.5 * mySize_x + eY * 0.25 * mySize_x, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
2286             }
2287                 }
2288
2289                 if(rightcnt)
2290                 {
2291             barpos = pos + eX * 0.5 * mySize_x;
2292                         if(baralign == 0 || baralign == 3) { // down align
2293                 barflip = 1;
2294                         } else { // up align
2295                 barflip = 0;
2296                         }
2297
2298                         if(iconalign == 0 || iconalign == 3) { // up align
2299                                 picpos = pos + eX * 0.05 * mySize_x + eX * 0.5 * mySize_x;
2300                                 numpos = pos + eY * 0.4 * mySize_x + eX * 0.5 * mySize_x;
2301                         } else { // down align
2302                                 picpos = pos + eX * 0.05 * mySize_x + eY * (mySize_y - 0.65 * mySize_x) + eX * 0.5 * mySize_x;
2303                                 numpos = pos + eY * mySize_y - eY * 0.25 * mySize_x + eX * 0.5 * mySize_x;
2304                         }
2305
2306                         if(progressbar)
2307                         {
2308                                 HUD_Panel_GetProgressBarColorForString(rightname);
2309                                 HUD_Panel_DrawProgressBar(barpos, barsize, rightprogressname, 1, barflip, min(1, rightcnt/30), progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha * bound(0, max(strength_time, shield_time), 1), DRAWFLAG_NORMAL);
2310                         }
2311             if(autocvar_hud_panel_powerups_text)
2312             {
2313                 if(rightcnt <= 5)
2314                     drawpic_aspect_skin_expanding(picpos, rightname, '0.4 0.4 0' * mySize_x, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL, bound(0, (rightcnt - rightexact) / 0.5, 1));
2315                 if(rightcnt > 1)
2316                     drawpic_aspect_skin(picpos, rightname, '0.4 0.4 0' * mySize_x, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
2317                 drawstring_aspect(numpos, ftos(rightcnt), eX * 0.5 * mySize_x + eY * 0.25 * mySize_x, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
2318             }
2319                 }
2320         }
2321 }
2322
2323 // Health/armor (#3)
2324 //
2325 void HUD_HealthArmor(void)
2326 {
2327         if(!autocvar_hud_panel_healtharmor && !autocvar__hud_configure)
2328                 return;
2329
2330         active_panel = HUD_PANEL_HEALTHARMOR;
2331         HUD_Panel_UpdateCvars(healtharmor);
2332         vector pos, mySize;
2333         pos = panel_pos;
2334         mySize = panel_size;
2335
2336         HUD_Panel_DrawBg(1);
2337         if(panel_bg_padding)
2338         {
2339                 pos += '1 1 0' * panel_bg_padding;
2340                 mySize -= '2 2 0' * panel_bg_padding;
2341         }
2342
2343         float armor, health, fuel;
2344         armor = getstati(STAT_ARMOR);
2345         health = getstati(STAT_HEALTH);
2346         fuel = getstati(STAT_FUEL);
2347
2348         if(autocvar__hud_configure)
2349         {
2350                 armor = 75;
2351                 health = 150;
2352                 fuel = 20;
2353         }
2354
2355         if(health <= 0)
2356                 return;
2357
2358         vector barpos, barsize;
2359         vector picpos;
2360         vector numpos;
2361
2362         float baralign = autocvar_hud_panel_healtharmor_baralign;
2363         float iconalign = autocvar_hud_panel_healtharmor_iconalign;
2364         float progressbar = autocvar_hud_panel_healtharmor_progressbar;
2365
2366     float maxhealth = autocvar_hud_panel_healtharmor_maxhealth;
2367     float maxarmor = autocvar_hud_panel_healtharmor_maxarmor;
2368         if(autocvar_hud_panel_healtharmor == 2) // combined health and armor display
2369         {
2370                 vector v;
2371                 v = healtharmor_maxdamage(health, armor, armorblockpercent);
2372
2373                 float x;
2374                 x = floor(v_x + 1);
2375
2376         float maxtotal = maxhealth + maxarmor;
2377
2378         barpos = pos;
2379         barsize = mySize;
2380
2381                 string biggercount;
2382                 if(v_z) // NOT fully armored
2383                 {
2384                         biggercount = "health";
2385                         if(progressbar)
2386                         {
2387                                 HUD_Panel_GetProgressBarColor(health);
2388                                 HUD_Panel_DrawProgressBar(barpos, barsize, autocvar_hud_panel_healtharmor_progressbar_health, 0, mod(baralign, 2), x/maxtotal, progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
2389                         }
2390                         if(armor)
2391             if(autocvar_hud_panel_healtharmor_text)
2392                                 drawpic_aspect_skin(pos + eX * mySize_x - eX * 0.5 * mySize_y, "armor", '0.5 0.5 0' * mySize_y, '1 1 1', panel_fg_alpha * armor / health, DRAWFLAG_NORMAL);
2393                 }
2394                 else
2395                 {
2396                         biggercount = "armor";
2397                         if(progressbar)
2398                         {
2399                                 HUD_Panel_GetProgressBarColor(armor);
2400                                 HUD_Panel_DrawProgressBar(barpos, barsize, autocvar_hud_panel_healtharmor_progressbar_armor, 0, mod(baralign, 2), x/maxtotal, progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
2401                         }
2402                         if(health)
2403             if(autocvar_hud_panel_healtharmor_text)
2404                                 drawpic_aspect_skin(pos + eX * mySize_x - eX * 0.5 * mySize_y, "health", '0.5 0.5 0' * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
2405                 }
2406         if(autocvar_hud_panel_healtharmor_text)
2407             DrawNumIcon(iconalign, pos, mySize, x, biggercount, 1, HUD_Get_Num_Color(x, maxtotal), 1);
2408
2409                 // fuel
2410                 if(fuel)
2411                 {
2412             barpos = pos;
2413             barsize = eX * mySize_x + eY * 0.2 * mySize_y;
2414                         HUD_Panel_GetProgressBarColor(fuel);
2415             HUD_Panel_DrawProgressBar(barpos, barsize, "progressbar", 0, mod(baralign, 2), min(1, fuel/100), progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha * 0.8, DRAWFLAG_NORMAL);
2416                 }
2417         }
2418         else
2419         {
2420                 string leftname, rightname;
2421         string leftprogressname, rightprogressname;
2422                 float leftcnt, rightcnt;
2423                 float leftmax, rightmax;
2424                 float leftactive, rightactive;
2425                 float leftalpha, rightalpha;
2426                 float flip = autocvar_hud_panel_healtharmor_flip;
2427         float barflip;
2428                 if (flip) { // old style layout with armor left/top of health
2429                         leftname = "armor";
2430             leftprogressname = autocvar_hud_panel_healtharmor_progressbar_armor;
2431                         leftcnt = armor;
2432                         if(leftcnt)
2433                                 leftactive = 1;
2434                         leftalpha = min((armor+10)/55, 1);
2435             leftmax = maxarmor;
2436
2437                         rightname = "health";
2438             rightprogressname = autocvar_hud_panel_healtharmor_progressbar_health;
2439                         rightcnt = health;
2440                         rightactive = 1;
2441                         rightalpha = 1;
2442             rightmax = maxhealth;
2443                 } else {
2444                         leftname = "health";
2445             leftprogressname = autocvar_hud_panel_healtharmor_progressbar_health;
2446                         leftcnt = health;
2447                         leftactive = 1;
2448                         leftalpha = 1;
2449             leftmax = maxhealth;
2450
2451                         rightname = "armor";
2452             rightprogressname = autocvar_hud_panel_healtharmor_progressbar_armor;
2453                         rightcnt = armor;
2454                         if(rightcnt)
2455                                 rightactive = 1;
2456                         rightalpha = min((armor+10)/55, 1);
2457             rightmax = maxarmor;
2458                 }
2459
2460                 if (mySize_x/mySize_y > 4)
2461                 {
2462             barsize = eX * 0.5 * mySize_x + eY * mySize_y;
2463                         if(leftactive)
2464                         {
2465                 barpos = pos;
2466                                 if(baralign == 1 || baralign == 3) { // right align
2467                     barflip = 1;
2468                                 } else { // left align
2469                     barflip = 0;
2470                                 }
2471
2472                                 if(progressbar)
2473                                 {
2474                                         HUD_Panel_GetProgressBarColorForString(leftname);
2475                     HUD_Panel_DrawProgressBar(barpos, barsize, leftprogressname, 0, barflip, min(1, leftcnt/leftmax), progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
2476                                 }
2477                 if(autocvar_hud_panel_healtharmor_text)
2478                     DrawNumIcon(iconalign, pos, eX * 0.5 * mySize_x + eY * mySize_y, leftcnt, leftname, 1, HUD_Get_Num_Color(leftcnt, leftmax), 1);
2479                         }
2480
2481                         if(rightactive)
2482                         {
2483                 barpos = pos + eX * 0.5 * mySize_x;
2484                                 if(baralign == 0 || baralign == 3) { // left align
2485                     barflip = 0;
2486                                 } else { // right align
2487                     barflip = 1;
2488                                 }
2489
2490                                 if(progressbar)
2491                                 {
2492                                         HUD_Panel_GetProgressBarColorForString(rightname);
2493                     HUD_Panel_DrawProgressBar(barpos, barsize, rightprogressname, 0, barflip, min(1, rightcnt/rightmax), progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
2494                                 }
2495                 if(autocvar_hud_panel_healtharmor_text)
2496                     DrawNumIcon(iconalign, pos + eX * 0.5 * mySize_x, eX * 0.5 * mySize_x + eY * mySize_y, rightcnt, rightname, 0, HUD_Get_Num_Color(rightcnt, rightmax), 1);
2497                         }
2498
2499                         if(fuel)
2500                         {
2501                 barpos = pos;
2502                 barsize = eX * mySize_x + eY * 0.2 * mySize_y;
2503                 HUD_Panel_GetProgressBarColor(fuel);
2504                 HUD_Panel_DrawProgressBar(barpos, barsize, "progressbar", 0, mod(baralign, 2), min(1, fuel/100), progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha * 0.8, DRAWFLAG_NORMAL);
2505                         }
2506                 }
2507                 else if (mySize_x/mySize_y > 1.5)
2508                 {
2509             barsize = eX * mySize_x + eY * 0.5 * mySize_y;
2510                         if(leftactive)
2511                         {
2512                 barpos = pos;
2513                                 if(baralign == 1 || baralign == 3) { // right align
2514                     barflip = 1;
2515                                 } else { // left align
2516                     barflip = 0;
2517                                 }
2518
2519                                 if(progressbar)
2520                                 {
2521                                         HUD_Panel_GetProgressBarColorForString(leftname);
2522                     HUD_Panel_DrawProgressBar(barpos, barsize, leftprogressname, 0, barflip, min(1, leftcnt/leftmax), progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
2523                                 }
2524                 if(autocvar_hud_panel_healtharmor_text)
2525                     DrawNumIcon(iconalign, pos, eX * mySize_x + eY * 0.5 * mySize_y, leftcnt, leftname, 1, HUD_Get_Num_Color(leftcnt, leftmax), 1);
2526                         }
2527
2528                         if(rightactive)
2529                         {
2530                 barpos = pos + eY * 0.5 * mySize_y;
2531                                 if(baralign == 0 || baralign == 3) { // left align
2532                     barflip = 0;
2533                                 } else { // right align
2534                     barflip = 1;
2535                                 }
2536
2537                                 if(progressbar)
2538                                 {
2539                                         HUD_Panel_GetProgressBarColorForString(rightname);
2540                     HUD_Panel_DrawProgressBar(barpos, barsize, rightprogressname, 0, barflip, min(1, rightcnt/rightmax), progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
2541                                 }
2542                 if(autocvar_hud_panel_healtharmor_text)
2543                     DrawNumIcon(iconalign, pos + eY * 0.5 * mySize_y, eX * mySize_x + eY * 0.5 * mySize_y, rightcnt, rightname, 0, HUD_Get_Num_Color(rightcnt, rightmax), 1);
2544                         }
2545
2546                         if(fuel)
2547                         {
2548                 barpos = pos;
2549                 barsize = eX * mySize_x + eY * 0.2 * mySize_y;
2550                 HUD_Panel_GetProgressBarColor(fuel);
2551                 HUD_Panel_DrawProgressBar(barpos, barsize, "progressbar", 0, mod(baralign, 2), min(1, fuel/100), progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha * 0.8, DRAWFLAG_NORMAL);
2552                         }
2553                 }
2554                 else
2555                 {
2556             barsize = eX * 0.5 * mySize_x + eY * mySize_y;
2557                         if(leftactive)
2558                         {
2559                 barpos = pos;
2560                                 if(baralign == 1 || baralign == 3) { // right align
2561                     barflip = 1;
2562                                 } else { // left align
2563                     barflip = 0;
2564                                 }
2565
2566                                 if(iconalign == 1 || iconalign == 3) { // down align
2567                                         picpos = pos + eX * 0.05 * mySize_x + eY * (mySize_y - 0.65 * mySize_x);
2568                                         numpos = pos + eY * mySize_y - eY * 0.25 * mySize_x;
2569                                 } else { // up align
2570                                         picpos = pos + eX * 0.05 * mySize_x;
2571                                         numpos = pos + eY * 0.4 * mySize_x;
2572                                 }
2573
2574                                 if(progressbar)
2575                                 {
2576                                         HUD_Panel_GetProgressBarColorForString(leftname);
2577                     HUD_Panel_DrawProgressBar(barpos, barsize, leftprogressname, 1, barflip, min(1, leftcnt/leftmax), progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
2578                                 }
2579                 if(autocvar_hud_panel_healtharmor_text)
2580                 {
2581                     drawpic_aspect_skin(picpos, leftname, '0.4 0.4 0' * mySize_x, '1 1 1', leftalpha * panel_fg_alpha, DRAWFLAG_NORMAL);
2582                     drawstring_aspect(numpos, ftos(leftcnt), eX * 0.5 * mySize_x + eY * 0.25 * mySize_x, HUD_Get_Num_Color(leftcnt, leftmax), panel_fg_alpha, DRAWFLAG_NORMAL);
2583                 }
2584                         }
2585
2586                         if(rightactive)
2587                         {
2588                 barpos = pos + eX * 0.5 * mySize_x;
2589                                 if(baralign == 0 || baralign == 3) { // left align
2590                     barflip = 0;
2591                                 } else { // right align
2592                     barflip = 1;
2593                                 }
2594
2595                                 if(iconalign == 0 || iconalign == 3) { // up align
2596                                         picpos = pos + eX * 0.05 * mySize_x + eX * 0.5 * mySize_x;
2597                                         numpos = pos + eY * 0.4 * mySize_x + eX * 0.5 * mySize_x;
2598                                 } else { // down align
2599                                         picpos = pos + eX * 0.05 * mySize_x + eY * (mySize_y - 0.65 * mySize_x) + eX * 0.5 * mySize_x;
2600                                         numpos = pos + eY * mySize_y - eY * 0.25 * mySize_x + eX * 0.5 * mySize_x;
2601                                 }
2602
2603                                 if(progressbar)
2604                                 {
2605                                         HUD_Panel_GetProgressBarColorForString(rightname);
2606                     HUD_Panel_DrawProgressBar(barpos, barsize, rightprogressname, 1, barflip, min(1, rightcnt/rightmax), progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
2607                                 }
2608                 if(autocvar_hud_panel_healtharmor_text)
2609                 {
2610                     drawpic_aspect_skin(picpos, rightname, '0.4 0.4 0' * mySize_x, '1 1 1', rightalpha * panel_fg_alpha, DRAWFLAG_NORMAL);
2611                     drawstring_aspect(numpos, ftos(rightcnt), eX * 0.5 * mySize_x + eY * 0.25 * mySize_x, HUD_Get_Num_Color(rightcnt, rightmax), panel_fg_alpha, DRAWFLAG_NORMAL);
2612                 }
2613                         }
2614
2615                         if(fuel)
2616                         {
2617                 barpos = pos;
2618                 barsize = eX * 0.05 * mySize_x + eY * mySize_y;
2619                 HUD_Panel_GetProgressBarColor(fuel);
2620                 HUD_Panel_DrawProgressBar(barpos, barsize, "progressbar", 1, mod(baralign, 2), min(1, fuel/100), progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha * 0.8, DRAWFLAG_NORMAL);
2621                         }
2622                 }
2623         }
2624 }
2625
2626 // Notification area (#4)
2627 //
2628
2629 string Weapon_SuicideMessage(float deathtype)
2630 {
2631         w_deathtype = deathtype;
2632         get_weaponinfo(DEATH_WEAPONOF(deathtype)).weapon_func(WR_SUICIDEMESSAGE);
2633         return w_deathtypestring;
2634 }
2635
2636 string Weapon_KillMessage(float deathtype)
2637 {
2638         w_deathtype = deathtype;
2639         get_weaponinfo(DEATH_WEAPONOF(deathtype)).weapon_func(WR_KILLMESSAGE);
2640         return w_deathtypestring;
2641 }
2642
2643 #define KN_MAX_ENTRIES 10
2644 float kn_index;
2645 float killnotify_times[KN_MAX_ENTRIES];
2646 float killnotify_deathtype[KN_MAX_ENTRIES];
2647 float killnotify_actiontype[KN_MAX_ENTRIES]; // 0 = "Y [used by] X", 1 = "X [did action to] Y"
2648 string killnotify_attackers[KN_MAX_ENTRIES];
2649 string killnotify_victims[KN_MAX_ENTRIES];
2650 void HUD_KillNotify_Push(string attacker, string victim, float actiontype, float wpn)
2651 {
2652         --kn_index;
2653         if (kn_index == -1)
2654                 kn_index = KN_MAX_ENTRIES-1;
2655         killnotify_times[kn_index] = time;
2656         killnotify_deathtype[kn_index] = wpn;
2657         killnotify_actiontype[kn_index] = actiontype;
2658         if(killnotify_attackers[kn_index])
2659                 strunzone(killnotify_attackers[kn_index]);
2660         killnotify_attackers[kn_index] = strzone(attacker);
2661         if(killnotify_victims[kn_index])
2662                 strunzone(killnotify_victims[kn_index]);
2663         killnotify_victims[kn_index] = strzone(victim);
2664 }
2665
2666 void HUD_KillNotify(string s1, string s2, string s3, float type, float msg) // s1 = attacker, s2 = victim
2667 {
2668         float w;
2669         float alsoprint, gentle;
2670         alsoprint = (autocvar_hud_panel_notify_print || !panel_enabled); // print message to console if: notify panel disabled, or cvar to do so enabled
2671         gentle = (autocvar_cl_gentle || autocvar_cl_gentle_messages);
2672         
2673         if ((msg == MSG_SUICIDE || msg == MSG_KILL || msg == MSG_KILL_ACTION) && gametype == GAME_CTS) // selfkill isn't interesting in CTS and only spams up the notify panel
2674                 return;
2675
2676         if(msg == MSG_SUICIDE) {
2677                 w = DEATH_WEAPONOF(type);
2678                 if(WEP_VALID(w)) {
2679                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2680                         if (alsoprint)
2681                                 print("^1", sprintf(Weapon_SuicideMessage(type), strcat(s1, "^1")), "\n");
2682                 } else if (type == DEATH_KILL) {
2683                         HUD_KillNotify_Push(s1, "", 0, DEATH_KILL);
2684                         if (alsoprint)
2685                                 print (sprintf(_("^1%s^1 couldn't take it anymore\n"), s1));
2686                 } else if (type == DEATH_ROT) {
2687                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2688                         if (alsoprint)
2689                                 print (sprintf(_("^1%s^1 died\n"), s1));
2690                 } else if (type == DEATH_NOAMMO) {
2691                         HUD_KillNotify_Push(s1, "", 0, DEATH_NOAMMO);
2692                         if (alsoprint)
2693                                 print (sprintf(_("^7%s^7 committed suicide. What's the point of living without ammo?\n"), s1));
2694                 } else if (type == DEATH_CAMP) {
2695                         HUD_KillNotify_Push(s1, "", 0, DEATH_CAMP);
2696                         if (alsoprint)
2697                                 print (sprintf(_("^1%s^1 thought they found a nice camping ground\n"), s1));
2698                 } else if (type == KILL_TEAM_RED || type == KILL_TEAM_BLUE) {
2699                         HUD_KillNotify_Push(s1, "", 0, type);
2700                         if (alsoprint)
2701                                 print (sprintf(_("^1%s^1 didn't become friends with the Lord of Teamplay\n"), s1));
2702                 } else if (type == DEATH_CHEAT) {
2703                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2704                         if (alsoprint)
2705                                 print (sprintf(_("^1%s^1 unfairly eliminated themself\n"), s1));
2706                 } else if (type == DEATH_FIRE) {
2707                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2708                         if (alsoprint)
2709                                 print (sprintf(_("^1%s^1 burned to death\n"), s1));
2710                 } else if (type != DEATH_TEAMCHANGE && type != DEATH_QUIET) {
2711                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2712                         if (alsoprint)
2713                                 print (sprintf(_("^1%s^1 couldn't resist the urge to self-destruct\n"), s1));
2714                 } 
2715                 
2716                 if (stof(s2) > 2) // killcount > 2
2717                         print (sprintf(_("^1%s^1 ended it all after a %d kill spree\n"), s1, stof(s2)));
2718         } else if(msg == MSG_KILL) {
2719                 w = DEATH_WEAPONOF(type);
2720                 if(WEP_VALID(w)) {
2721                         if((w == WEP_SNIPERRIFLE || w == WEP_MINSTANEX) && type & HITTYPE_HEADSHOT) // all headshot weapons go here
2722                                 HUD_KillNotify_Push(s1, s2, 1, DEATH_HEADSHOT);
2723                         else
2724                                 HUD_KillNotify_Push(s1, s2, 1, type);
2725
2726                         if (alsoprint)
2727                                 print("^1", sprintf(Weapon_KillMessage(type), strcat(s2, "^1"), strcat(s1, "^1")), "\n"); // default order: victim, killer
2728                 }
2729                 else if(type == KILL_TEAM_RED || type == KILL_TEAM_BLUE || type == KILL_TEAM_SPREE) {
2730                         HUD_KillNotify_Push(s1, s2, 1, type);
2731                         if(alsoprint)
2732                         {
2733                                 if(gentle) {
2734                                         print (sprintf(_("^1%s^1 took action against a team mate\n"), s1));
2735                                 } else {
2736                                         print (sprintf(_("^1%s^1 mows down a team mate\n"), s1));
2737                                 }
2738                         }
2739                         if (stof(s2) > 2 && type == KILL_TEAM_SPREE) {
2740                                 if(gentle)
2741                                         print (sprintf(_("^1%s^1 ended a %d scoring spree by going against a team mate\n"), s1, stof(s3)));
2742                                 else
2743                                         print (sprintf(_("^1%s^1 ended a %d kill spree by killing a team mate\n"), s1, stof(s3)));
2744                         }
2745                         else if (stof(s2) > 2) {
2746                                 if(gentle)
2747                                         print (sprintf(_("^1%s's ^1%s scoring spree was ended by a team mate!\n"), s1, stof(s3)));
2748                                 else
2749                                         print (sprintf(_("^1%s's ^1%s kill spree was ended by a team mate!\n"), s1, stof(s3)));
2750                         }
2751                 }
2752                 else if(type == KILL_FIRST_BLOOD)
2753                         print(sprintf("^1%s^1 drew first blood\n", s1));
2754                 else if (type == DEATH_TELEFRAG) {
2755                         HUD_KillNotify_Push(s1, s2, 1, DEATH_TELEFRAG);
2756                         if(gentle)
2757                                 print (sprintf(_("^1%s^1 tried to occupy %s^1's teleport destination space\n"), s2, s1));
2758                         else
2759                                 print (sprintf(_("^1%s^1 was telefragged by %s\n"), s2, s1));
2760                 }
2761                 else if (type == DEATH_DROWN) {
2762                         HUD_KillNotify_Push(s1, s2, 1, DEATH_DROWN);
2763                         if(alsoprint)
2764                                 print (sprintf(_("^1%s^1 was drowned by %s\n"), s2, s1));
2765                 }
2766                 else if (type == DEATH_SLIME) {
2767                         HUD_KillNotify_Push(s1, s2, 1, DEATH_SLIME);
2768                         if(alsoprint)
2769                                 print (sprintf(_("^1%s^1 was slimed by %s\n"), s2, s1));
2770                 }
2771                 else if (type == DEATH_LAVA) {
2772                         HUD_KillNotify_Push(s1, s2, 1, DEATH_LAVA);
2773                         if(alsoprint)
2774                                 print (sprintf(_("^1%s^1 was cooked by %s\n"), s2, s1));
2775                 }
2776                 else if (type == DEATH_FALL) {
2777                         HUD_KillNotify_Push(s1, s2, 1, DEATH_FALL);
2778                         if(alsoprint)
2779                                 print (sprintf(_("^1%s^1 was grounded by %s\n"), s2, s1));
2780                 }
2781                 else if (type == DEATH_SHOOTING_STAR) {
2782                         HUD_KillNotify_Push(s1, s2, 1, DEATH_SHOOTING_STAR);
2783                         if(alsoprint)
2784                                 print (sprintf(_("^1%s^1 was shot into space by %s\n"), s2, s1));
2785                 }
2786                 else if (type == DEATH_SWAMP) {
2787                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2788                         if(alsoprint)
2789                                 print (sprintf(_("^1%s^1 was conserved by %s\n"), s2, s1));
2790                 }
2791                 else if (type == DEATH_HURTTRIGGER)
2792                 {
2793                         HUD_KillNotify_Push(s1, s2, 1, DEATH_HURTTRIGGER);
2794                         if(alsoprint)
2795                                 print(sprintf(_("^1%s^1 was thrown into a world of hurt by %s\n"), s2, s1));
2796                 } else if(type == DEATH_SBCRUSH) {
2797                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2798                         if(alsoprint)
2799                                 print (sprintf(_("^1%s^1 was crushed by ^1%s\n"), s2, s1));
2800                 } else if(type == DEATH_SBMINIGUN) {
2801                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2802                         if(alsoprint)
2803                                 print (sprintf(_("^1%s^1 got shredded by ^1%s\n"), s2, s1));
2804                 } else if(type == DEATH_SBROCKET) {
2805                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2806                         if(alsoprint)
2807                                 print (sprintf(_("^1%s^1 was blased to bits by ^1%s\n"), s2, s1));
2808                 } else if(type == DEATH_SBBLOWUP) {
2809                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2810                         if(alsoprint)
2811                                 print (sprintf(_("^1%s^1 got caught in the destruction of ^1%s's vehicle\n"), s2, s1));
2812                 } else if(type == DEATH_WAKIGUN) {
2813                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2814                         if(alsoprint)
2815                                 print (sprintf(_("^1%s^1 was bolted down by ^1%s\n"), s2, s1));
2816                 } else if(type == DEATH_WAKIROCKET) {
2817                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2818                         if(alsoprint)
2819                                 print (sprintf(_("^1%s^1 could find no shelter from ^1%s's rockets\n"), s2, s1));
2820                 } else if(type == DEATH_WAKIBLOWUP) {
2821                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2822                         if(alsoprint)
2823                                 print (sprintf(_("^1%s^1 dies when ^1%s's wakizashi dies.\n"), s2, s1));
2824                 } else if(type == DEATH_TURRET) {
2825                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2826                         if(alsoprint)
2827                                 print (sprintf(_("^1%s^1 was pushed into the line of fire by ^1%s\n"), s2, s1));
2828                 } else if(type == DEATH_TOUCHEXPLODE) {
2829                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2830                         if(alsoprint)
2831                                 print (sprintf(_("^1%s^1 was pushed into an accident by ^1%s\n"), s2, s1));
2832                 } else if(type == DEATH_CHEAT) {
2833                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2834                         if(alsoprint)
2835                                 print (sprintf(_("^1%s^1 was unfairly eliminated by ^1%s\n"), s2, s1));
2836                 } else if (type == DEATH_FIRE) {
2837                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2838                         if(alsoprint)
2839                                 print (sprintf(_("^1%s^1 was burnt to death by ^1%s\n"), s2, s1));
2840                 } else if (type == DEATH_CUSTOM) {
2841                         HUD_KillNotify_Push(s1, s2, 1, DEATH_CUSTOM);
2842                         if(alsoprint)
2843                                 print("^1", sprintf(s3, strcat(s2, "^1"), strcat(s1, "^1")), "\n");
2844                 } else if (type == DEATH_HURTTRIGGER) {
2845                         HUD_KillNotify_Push(s1, s2, 1, DEATH_HURTTRIGGER);
2846                         if(alsoprint)
2847                                 print("^1", sprintf(s3, strcat(s2, "^1"), strcat(s1, "^1")), "\n");
2848                 } else {
2849                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2850                         if(alsoprint)
2851                                 print (sprintf(_("^1%s^1 was fragged by %s\n"), s2, s1));
2852                 }
2853         } else if(msg == MSG_SPREE) {
2854                 if(type == KILL_END_SPREE) {
2855                         if(gentle)
2856                                 print (sprintf(_("^1%s's ^1%s scoring spree was ended by %s\n"), s1, s2, s3));
2857                         else
2858                                 print (sprintf(_("^1%s's ^1%s kill spree was ended by %s\n"), s1, s2, s3));
2859                 } else if(type == KILL_SPREE) {
2860                         if(gentle)
2861                                 print (sprintf(_("^1%s^1 made %s scores in a row\n"), s1, s2));
2862                         else
2863                                 print (sprintf(_("^1%s^1 has %s frags in a row\n"), s1, s2));
2864                 } else if(type == KILL_SPREE_3) {
2865                         if(gentle)
2866                                 print (sprintf(_("%s^7 made a ^1TRIPLE SCORE\n"), s1));
2867                         else
2868                                 print (sprintf(_("%s^7 made a ^1TRIPLE FRAG\n"), s1));
2869                 } else if(type == KILL_SPREE_5) {
2870                         if(gentle)
2871                                 print (sprintf(_("%s^7 unleashes ^1SCORING RAGE\n"), s1));
2872                         else
2873                                 print (sprintf(_("%s^7 unleashes ^1RAGE\n"), s1));
2874                 } else if(type == KILL_SPREE_10) {
2875                         if(gentle)
2876                                 print (sprintf(_("%s^7 made ^1TEN SCORES IN A ROW!\n"), s1));
2877                         else
2878                                 print (sprintf(_("%s^7 starts the ^1MASSACRE!\n"), s1));
2879                 } else if(type == KILL_SPREE_15) {
2880                         if(gentle)
2881                                 print (sprintf(_("%s^7 made ^1FIFTEEN SCORES IN A ROW!\n"), s1));
2882                         else
2883                                 print (sprintf(_("%s^7 executes ^1MAYHEM!\n"), s1));
2884                 } else if(type == KILL_SPREE_20) {
2885                         if(gentle)
2886                                 print (sprintf(_("%s^7 made ^1TWENTY SCORES IN A ROW!\n"), s1));
2887                         else
2888                                 print (sprintf(_("%s^7 is a ^1BERSERKER!\n"), s1));
2889                 } else if(type == KILL_SPREE_25) {
2890                         if(gentle)
2891                                 print (sprintf(_("%s^7 made ^1TWENTY FIFE SCORES IN A ROW!\n"), s1));
2892                         else
2893                                 print (sprintf(_("%s^7 inflicts ^1CARNAGE!\n"), s1));
2894                 } else if(type == KILL_SPREE_30) {
2895                         if(gentle)
2896                                 print (sprintf(_("%s^7 made ^1THIRTY SCORES IN A ROW!\n"), s1));
2897                         else
2898                                 print (sprintf(_("%s^7 unleashes ^1ARMAGEDDON!\n"), s1));
2899                 }
2900         } else if(msg == MSG_KILL_ACTION) { // wtf is this? isnt it basically the same as MSG_SUICIDE?
2901                 if (type == DEATH_DROWN) {
2902                         HUD_KillNotify_Push(s1, "", 0, DEATH_DROWN);
2903                         if(alsoprint)
2904                         {
2905                                 if(gentle)
2906                                         print (sprintf(_("^1%s^1 was in the water for too long\n"), s1));
2907                                 else
2908                                         print (sprintf(_("^1%s^1 drowned\n"), s1));
2909                         }
2910                 } else if (type == DEATH_SLIME) {
2911                         HUD_KillNotify_Push(s1, "", 0, DEATH_SLIME);
2912                         if(alsoprint)
2913                                 print (sprintf("^1%s^1 was slimed\n", s1));
2914                 } else if (type == DEATH_LAVA) {
2915                         HUD_KillNotify_Push(s1, "", 0, DEATH_LAVA);
2916                         if(alsoprint)
2917                         {
2918                                 if(gentle)
2919                                         print (sprintf(_("^1%s^1 found a hot place\n"), s1));
2920                                 else
2921                                         print (sprintf(_("^1%s^1 turned into hot slag\n"), s1));
2922                         }
2923                 } else if (type == DEATH_FALL) {
2924                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2925                         if(alsoprint)
2926                         {
2927                                 if(gentle)
2928                                         print (sprintf(_("^1%s^1 tested gravity (and it worked)\n"), s1));
2929                                 else
2930                                         print (sprintf(_("^1%s^1 hit the ground with a crunch\n"), s1));
2931                         }
2932                 } else if (type == DEATH_SHOOTING_STAR) {
2933                         HUD_KillNotify_Push(s1, "", 0, DEATH_SHOOTING_STAR);
2934                         if(alsoprint)
2935                                 print (sprintf(_("^1%s^1 became a shooting star\n"), s1));
2936                 } else if (type == DEATH_SWAMP) {
2937                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2938                         if(alsoprint)
2939                         {
2940                                 if(gentle)
2941                                         print (sprintf(_("^1%s^1 discovered a swamp\n"), s1));
2942                                 else
2943                                         print (sprintf(_("^1%s^1 is now conserved for centuries to come\n"), s1));
2944                         }
2945                 } else if(type == DEATH_TURRET) {
2946                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2947                         if(alsoprint)
2948                                 print (sprintf(_("^1%s^1 was mowed down by a turret \n"), s1));
2949                 } else if (type == DEATH_CUSTOM) {
2950                         HUD_KillNotify_Push(s1, "", 0, DEATH_CUSTOM);
2951                         if(alsoprint)
2952                                 print("^1", sprintf(s2, strcat(s1, "^1")), "\n");
2953                 } else if (type == DEATH_HURTTRIGGER) {
2954                         HUD_KillNotify_Push(s1, "", 0, DEATH_HURTTRIGGER);
2955                         if(alsoprint)
2956                                 print("^1", sprintf(s2, strcat(s1, "^1")), "\n");
2957                 } else if(type == DEATH_TOUCHEXPLODE) {
2958                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2959                         if(alsoprint)
2960                                 print (sprintf(_("^1%s^1 died in an accident\n"), s1));
2961                 } else if(type == DEATH_CHEAT) {
2962                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2963                         if(alsoprint)
2964                                 print (sprintf(_("^1%s^1 was unfairly eliminated\n"), s1));
2965                 } else if(type == DEATH_FIRE) {
2966                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2967                         if(alsoprint)
2968                         {
2969                                 if(gentle)
2970                                         print (sprintf(_("^1%s^1 felt a little hot\n"), s1));
2971                                 else
2972                                         print (sprintf(_("^1%s^1 burnt to death\n"), s1));
2973                                 }
2974                 } else {
2975                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2976                         if(alsoprint)
2977                         {
2978                                 if(gentle)
2979                                         print (sprintf(_("^1%s^1 needs a restart\n"), s1));
2980                                 else
2981                                         print (sprintf(_("^1%s^1 died\n"), s1));
2982                         }
2983                 }
2984         } else if(msg == MSG_KILL_ACTION_SPREE) {
2985                 if(gentle)
2986                         print (sprintf(_("^1%s^1 needs a restart after a %d scoring spree\n"), s1, stof(s2)));
2987                 else
2988                         print (sprintf(_("^1%s^1 died with a %d kill spree\n"), s1, stof(s2)));
2989         } else if(msg == MSG_INFO) {
2990                 if(type == INFO_GOTFLAG) { // here, s2 is the flag name
2991                         HUD_KillNotify_Push(s1, s2, 0, INFO_GOTFLAG);
2992                         print(sprintf(_("%s^7 got the %s\n"), s1, s2));
2993                 } else if(type == INFO_LOSTFLAG) {
2994                         HUD_KillNotify_Push(s1, s2, 0, INFO_LOSTFLAG);
2995                         print(sprintf(_("%s^7 lost the %s\n"), s1, s2));
2996                 } else if(type == INFO_PICKUPFLAG) {
2997                         HUD_KillNotify_Push(s1, s2, 0, INFO_GOTFLAG);
2998                         print(sprintf(_("%s^7 picked up the %s\n"), s1, s2));
2999                 } else if(type == INFO_RETURNFLAG) {
3000                         HUD_KillNotify_Push(s1, s2, 0, INFO_RETURNFLAG);
3001                         print(sprintf(_("%s^7 returned the %s\n"), s1, s2));
3002                 } else if(type == INFO_CAPTUREFLAG) {
3003                         HUD_KillNotify_Push(s1, s2, 0, INFO_CAPTUREFLAG);
3004                         print(sprintf(_("%1^7 captured the %s%s\n"), s1, s2, s3));
3005                 }
3006         } else if(msg == MSG_RACE) {
3007                 if(type == RACE_SERVER_RECORD) {
3008                         HUD_KillNotify_Push(s1, s2, 1, RACE_SERVER_RECORD);
3009                 }
3010                 else if(type == RACE_NEW_RANK) {
3011                         HUD_KillNotify_Push(s1, s2, 1, RACE_NEW_RANK);
3012                 }
3013                 else if(type == RACE_NEW_TIME) {
3014                         HUD_KillNotify_Push(s1, s2, 1, RACE_NEW_TIME);
3015                 }
3016                 else if(type == RACE_FAIL) {
3017                         HUD_KillNotify_Push(s1, s2, 1, RACE_FAIL);
3018                 }
3019         } else if(msg == MSG_KA) {
3020                 if(type == KA_PICKUPBALL) {
3021                         HUD_KillNotify_Push(s1, s2, 0, KA_PICKUPBALL);
3022                         if(alsoprint)
3023                                 print (sprintf(_("%s^7 has picked up the ball!\n"), s1));
3024                 }
3025                 else if(type == KA_DROPBALL) {
3026                         HUD_KillNotify_Push(s1, s2, 0, KA_DROPBALL);
3027                         if(alsoprint)
3028                                 print(sprintf(_("%s^7 has dropped the ball!\n"), s1));
3029                 }
3030         }
3031 }
3032
3033 #define DAMAGE_CENTERPRINT_SPACER NEWLINES
3034
3035 //FIXME gettext marked till here
3036 void HUD_Centerprint(string s1, string s2, float type, float msg)
3037 {
3038         float gentle;
3039         gentle = (autocvar_cl_gentle || autocvar_cl_gentle_messages);
3040         if(msg == MSG_SUICIDE) {
3041                 if (type == DEATH_TEAMCHANGE) {
3042                         centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "You are now on: ", s1));
3043                 } else if (type == DEATH_AUTOTEAMCHANGE) {
3044                         centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "You have been moved into a different team to improve team balance\nYou are now on: ", s1));
3045                 } else if (type == DEATH_CAMP) {
3046                         if(gentle)
3047                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Reconsider your tactics, camper!"));
3048                         else
3049                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Die camper!"));
3050                 } else if (type == DEATH_NOAMMO) {
3051                         if(gentle)
3052                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You are reinserted into the game for running out of ammo..."));
3053                         else
3054                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You were killed for running out of ammo..."));
3055                 } else if (type == DEATH_ROT) {
3056                         if(gentle)
3057                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You need to preserve your health"));
3058                         else
3059                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You grew too old without taking your medicine"));
3060                 } else if (type == KILL_TEAM_RED || type == KILL_TEAM_BLUE) {
3061                         if(gentle)
3062                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Don't go against team mates!"));
3063                         else
3064                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Don't shoot your team mates!"));
3065                 } else if (type == DEATH_QUIET) {
3066                         // do nothing
3067                 } else { // generic message
3068                         if(gentle)
3069                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You need to be more careful!"));
3070                         else
3071                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You killed your own dumb self!"));
3072                 }
3073         } else if(msg == MSG_KILL) {
3074                 if (type == KILL_TEAM_RED || type == KILL_TEAM_BLUE) {
3075                         if(gentle) {
3076                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Moron! You went against", s1, ",a team mate!"));
3077                         } else {
3078                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Moron! You fragged ", s1, ", a team mate!"));
3079                         }
3080                 } else if (type == KILL_FIRST_BLOOD) {
3081                         if(gentle) {
3082                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1First score"));
3083                         } else {
3084                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1First blood"));
3085                         }
3086                 } else if (type == KILL_FIRST_VICTIM) {
3087                         if(gentle) {
3088                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1First casualty"));
3089                         } else {
3090                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1First victim"));
3091                         }
3092                 } else if (type == KILL_TYPEFRAG) { // s2 contains "advanced kill messages" such as ping, handicap...
3093                         if(gentle) {
3094                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You scored against ^7", s1, "^1 who was typing!", s2));
3095                         } else {
3096                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You typefragged ^7", s1, s2));
3097                         }
3098                 } else if (type == KILL_TYPEFRAGGED) {
3099                         if(gentle) {
3100                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You were scored against by ^7", s1, "^1 while you were typing!", s2));
3101                         } else {
3102                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You were typefragged by ^7", s1, s2));
3103                         }
3104                 } else if (type == KILL_FRAG) {
3105                         if(gentle) {
3106                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^4You scored against ^7", s1, s2));
3107                         } else {
3108                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^4You fragged ^7", s1, s2));
3109                         }
3110                 } else { // generic message
3111                         if(gentle) {
3112                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You were scored against by ^7", s1, s2));
3113                         } else {
3114                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You were fragged by ^7", s1, s2));
3115                         }
3116                 }
3117         } else if(msg == MSG_KILL_ACTION) {
3118                 // TODO: invent more centerprints here?
3119                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Watch your step!"));
3120         }
3121 }
3122
3123 void HUD_Notify (void)
3124 {
3125         if(!autocvar_hud_panel_notify && !autocvar__hud_configure)
3126                 return;
3127
3128         active_panel = HUD_PANEL_NOTIFY;
3129         HUD_Panel_UpdateCvars(notify);
3130         vector pos, mySize;
3131         pos = panel_pos;
3132         mySize = panel_size;
3133
3134         HUD_Panel_DrawBg(1);
3135         if(panel_bg_padding)
3136         {
3137                 pos += '1 1 0' * panel_bg_padding;
3138                 mySize -= '2 2 0' * panel_bg_padding;
3139         }
3140
3141         float entries, height;
3142         entries = bound(1, floor(KN_MAX_ENTRIES * mySize_y/mySize_x), KN_MAX_ENTRIES);
3143         height = mySize_y/entries;
3144         
3145         vector fontsize;
3146         fontsize = '0.5 0.5 0' * height;
3147
3148         float a;
3149         float when;
3150         when = autocvar_hud_panel_notify_time;
3151         float fadetime;
3152         fadetime = autocvar_hud_panel_notify_fadetime;
3153
3154         string s;
3155
3156         vector pos_attacker, pos_victim;
3157         vector weap_pos;
3158         float width_attacker;
3159         string attacker, victim;
3160
3161         float i, j, w, step, limit;
3162         if(autocvar_hud_panel_notify_flip) //order items from the top down
3163         {
3164                 i = 0;
3165                 step = +1;
3166                 limit = entries;
3167         }
3168         else //order items from the bottom up
3169         {
3170                 i = entries - 1;
3171                 step = -1;
3172                 limit = -1;
3173         }
3174
3175         for(j = kn_index;  i != limit;  i += step, ++j)
3176         {
3177                 if(autocvar__hud_configure)
3178                 {
3179                         if (step == +1)
3180                                 a = i;
3181                         else // inverse order
3182                                 a = entries - 1 - i;
3183                         attacker = textShortenToWidth(strcat("Player", ftos(a+1)), 0.48 * mySize_x - height, fontsize, stringwidth_colors);
3184                         victim = textShortenToWidth(strcat("Player", ftos(a+2)), 0.48 * mySize_x - height, fontsize, stringwidth_colors);
3185                         s = strcat("weapon", get_weaponinfo(WEP_FIRST + mod(floor(a*2.4), WEP_LAST)).netname);
3186                         a = bound(0, (when - a) / 4, 1);
3187                         goto hud_config_notifyprint;
3188                 }
3189
3190                 if (j == KN_MAX_ENTRIES)
3191                         j = 0;
3192
3193                 if(killnotify_times[j] + when > time)
3194                         a = 1;
3195                 else if(fadetime)
3196                 {
3197                         a = bound(0, (killnotify_times[j] + when + fadetime - time) / fadetime, 1);
3198                         if(!a)
3199                         {
3200                                 break;
3201                         }
3202                 }
3203                 else
3204                 {
3205                         break;
3206                 }
3207
3208                 s = "";
3209
3210                 w = -1;
3211                 w = DEATH_WEAPONOF(killnotify_deathtype[j]);
3212
3213                 // TODO: maybe print in team colors?
3214                 //
3215                 // Y [used by] X
3216                 if(killnotify_actiontype[j] == 0) 
3217                 {
3218                         if(killnotify_deathtype[j] == DEATH_GENERIC)
3219                         {
3220                                 s = "notify_death";
3221                         }
3222                         else if(killnotify_deathtype[j] == DEATH_NOAMMO)
3223                         {
3224                                 s = "notify_outofammo";
3225                         }
3226                         else if(killnotify_deathtype[j] == DEATH_KILL)
3227                         {
3228                                 s = "notify_selfkill";
3229                         }
3230                         else if(killnotify_deathtype[j] == DEATH_CAMP)
3231                         {
3232                                 s = "notify_camping";
3233                         }
3234                         else if(killnotify_deathtype[j] == KILL_TEAM_RED)
3235                         {
3236                                 s = "notify_teamkill_red";
3237                         }
3238                         else if(killnotify_deathtype[j] == KILL_TEAM_BLUE)
3239                         {
3240                                 s = "notify_teamkill_blue";
3241                         }
3242                         else if(killnotify_deathtype[j] == DEATH_DROWN)
3243                         {
3244                                 s = "notify_water";
3245                         }
3246                         else if(killnotify_deathtype[j] == DEATH_SLIME)
3247                         {
3248                                 s = "notify_slime";
3249                         }
3250                         else if(killnotify_deathtype[j] == DEATH_LAVA)
3251                         {
3252                                 s = "notify_lava";
3253                         }
3254                         else if(killnotify_deathtype[j] == DEATH_FALL)
3255                         {
3256                                 s = "notify_fall";
3257                         }
3258                         else if(killnotify_deathtype[j] == DEATH_SHOOTING_STAR)
3259                         {
3260                                 s = "notify_shootingstar";
3261                         }
3262                         else if(killnotify_deathtype[j] == DEATH_HURTTRIGGER || killnotify_deathtype[j] == DEATH_CUSTOM)
3263                         {
3264                                 s = "notify_death";
3265                         }
3266                         else if(killnotify_deathtype[j] == INFO_GOTFLAG)
3267                         {
3268                                 if(killnotify_victims[j] == "^1RED^7 flag")
3269                                 {
3270                                         s = "notify_red_taken";
3271                                 }
3272                                 else
3273                                 {
3274                                         s = "notify_blue_taken";
3275                                 }
3276                         }
3277                         else if(killnotify_deathtype[j] == INFO_RETURNFLAG)
3278                         {
3279                                 if(killnotify_victims[j] == "^1RED^7 flag")
3280                                 {
3281                                         s = "notify_red_returned";
3282                                 }
3283                                 else
3284                                 {
3285                                         s = "notify_blue_returned";
3286                                 }
3287                         }
3288                         else if(killnotify_deathtype[j] == INFO_LOSTFLAG)
3289                         {
3290                                 if(killnotify_victims[j] == "^1RED^7 flag")
3291                                 {
3292                                         s = "notify_red_lost";
3293                                 }
3294                                 else
3295                                 {
3296                                         s = "notify_blue_lost";
3297                                 }
3298                         }
3299                         else if(killnotify_deathtype[j] == INFO_CAPTUREFLAG)
3300                         {
3301                                 if(killnotify_victims[j] == "^1RED^7 flag")
3302                                 {
3303                                         s = "notify_red_captured";
3304                                 }
3305                                 else
3306                                 {
3307                                         s = "notify_blue_captured";
3308                                 }
3309                         }
3310                         else if(killnotify_deathtype[j] == KA_DROPBALL)
3311                         {
3312                                 s = "notify_balldropped";
3313                         }
3314                         else if(killnotify_deathtype[j] == KA_PICKUPBALL)
3315                         {
3316                                 s = "notify_ballpickedup";
3317                         }
3318                         
3319                         attacker = textShortenToWidth(killnotify_attackers[j], 0.48 * mySize_x - height, fontsize, stringwidth_colors);
3320                         pos_attacker = pos + eX * (0.52 * mySize_x + height) + eY * (0.5 * fontsize_y + i * height);
3321                         weap_pos = pos + eX * 0.5 * mySize_x - eX * height + eY * i * height;
3322
3323                         if(s != "")
3324                         {
3325                                 drawpic_aspect_skin(weap_pos, s, '2 1 0' * height, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
3326                                 drawcolorcodedstring(pos_attacker, attacker, fontsize, panel_fg_alpha * a, DRAWFLAG_NORMAL);
3327                         }
3328                 }
3329                 // X [did action to] Y
3330                 else
3331                 {
3332                         if(killnotify_deathtype[j] & HITTYPE_SECONDARY && w == WEP_LASER)
3333                         {
3334                                 s = "notify_melee_laser";
3335                         }
3336                         else if(killnotify_deathtype[j] & HITTYPE_SECONDARY && w == WEP_SHOTGUN)
3337                         {
3338                                 s = "notify_melee_shotgun";
3339                         }
3340                         else if(WEP_VALID(w))
3341                         {
3342                                 self = get_weaponinfo(w);
3343                                 s = strcat("weapon", self.netname);
3344                         }
3345                         else if(killnotify_deathtype[j] == KILL_TEAM_RED)
3346                         {
3347                                 s = "notify_teamkill_red";
3348                         }
3349                         else if(killnotify_deathtype[j] == KILL_TEAM_BLUE)
3350                         {
3351                                 s = "notify_teamkill_red";
3352                         }
3353                         else if(killnotify_deathtype[j] == DEATH_TELEFRAG)
3354                         {
3355                                 s = "notify_telefrag";
3356                         }
3357                         else if(killnotify_deathtype[j] == DEATH_DROWN)
3358                         {
3359                                 s = "notify_water";
3360                         }
3361                         else if(killnotify_deathtype[j] == DEATH_SLIME)
3362                         {
3363                                 s = "notify_slime";
3364                         }
3365                         else if(killnotify_deathtype[j] == DEATH_LAVA)
3366                         {
3367                                 s = "notify_lava";
3368                         }
3369                         else if(killnotify_deathtype[j] == DEATH_FALL)
3370                         {
3371                                 s = "notify_fall";
3372                         }
3373                         else if(killnotify_deathtype[j] == DEATH_SHOOTING_STAR)
3374                         {
3375                                 s = "notify_shootingstar";
3376                         }
3377                         else if(killnotify_deathtype[j] == DEATH_HURTTRIGGER || killnotify_deathtype[j] == DEATH_CUSTOM) // DEATH_CUSTOM is also void, right?
3378                         {
3379                                 s = "notify_void";
3380                         }
3381                         else if(killnotify_deathtype[j] == DEATH_HEADSHOT)
3382                         {
3383                                 s = "notify_headshot";
3384                         }
3385                         else if(killnotify_deathtype[j] == RACE_SERVER_RECORD)
3386                         {
3387                                 s = "race_newrecordserver";
3388                         }
3389                         else if(killnotify_deathtype[j] == RACE_NEW_RANK)
3390                         {
3391                                 s = "race_newrankyellow";
3392                         }
3393                         else if(killnotify_deathtype[j] == RACE_NEW_TIME)
3394                         {
3395                                 s = "race_newtime";
3396                         }
3397                         else if(killnotify_deathtype[j] == RACE_FAIL)
3398                         {
3399                                 s = "race_newfail";
3400                         }
3401
3402                         attacker = textShortenToWidth(killnotify_attackers[j], 0.48 * mySize_x - height, fontsize, stringwidth_colors);
3403                         victim = textShortenToWidth(killnotify_victims[j], 0.48 * mySize_x - height, fontsize, stringwidth_colors);
3404 :hud_config_notifyprint
3405                         width_attacker = stringwidth(attacker, TRUE, fontsize);
3406                         pos_attacker = pos + eX * (0.48 * mySize_x - height - width_attacker) + eY * (0.5 * fontsize_y + i * height);
3407                         pos_victim = pos + eX * (0.52 * mySize_x + height) + eY * (0.5 * fontsize_y + i * height);
3408                         weap_pos = pos + eX * 0.5 * mySize_x - eX * height + eY * i * height;
3409
3410                         if(s != "")
3411                         {
3412                                 drawpic_aspect_skin(weap_pos, s, '2 1 0' * height, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
3413                                 drawcolorcodedstring(pos_attacker, attacker, fontsize, panel_fg_alpha * a, DRAWFLAG_NORMAL);
3414                                 drawcolorcodedstring(pos_victim, victim, fontsize, panel_fg_alpha * a, DRAWFLAG_NORMAL);
3415                         }
3416                 }
3417         }
3418 }
3419
3420 // Timer (#5)
3421 //
3422 // TODO: macro
3423 string seconds_tostring(float sec)
3424 {
3425         float minutes;
3426         minutes = floor(sec / 60);
3427
3428         sec -= minutes * 60;
3429
3430         string s;
3431         s = ftos(100 + sec);
3432
3433         return strcat(ftos(minutes), ":", substring(s, 1, 3));
3434 }
3435
3436 void HUD_Timer(void)
3437 {
3438         if(!autocvar_hud_panel_timer && !autocvar__hud_configure)
3439                 return;
3440
3441         active_panel = HUD_PANEL_TIMER;
3442         HUD_Panel_UpdateCvars(timer);
3443         vector pos, mySize;
3444         pos = panel_pos;
3445         mySize = panel_size;
3446
3447         HUD_Panel_DrawBg(1);
3448         if(panel_bg_padding)
3449         {
3450                 pos += '1 1 0' * panel_bg_padding;
3451                 mySize -= '2 2 0' * panel_bg_padding;
3452         }
3453
3454         string timer;
3455         float timelimit, elapsedTime, timeleft, minutesLeft;
3456
3457         timelimit = getstatf(STAT_TIMELIMIT);
3458
3459         timeleft = max(0, timelimit * 60 + getstatf(STAT_GAMESTARTTIME) - time);
3460         timeleft = ceil(timeleft);
3461
3462         minutesLeft = floor(timeleft / 60);
3463
3464         vector timer_color;
3465         if(minutesLeft >= 5 || warmup_stage || timelimit == 0) //don't use red or yellow in warmup or when there is no timelimit
3466                 timer_color = '1 1 1'; //white
3467         else if(minutesLeft >= 1)
3468                 timer_color = '1 1 0'; //yellow
3469         else
3470                 timer_color = '1 0 0'; //red
3471
3472         if (autocvar_hud_panel_timer_increment || timelimit == 0 || warmup_stage) {
3473                 if (time < getstatf(STAT_GAMESTARTTIME)) {
3474                         //while restart is still active, show 00:00
3475                         timer = seconds_tostring(0);
3476                 } else {
3477                         elapsedTime = floor(time - getstatf(STAT_GAMESTARTTIME)); //127
3478                         timer = seconds_tostring(elapsedTime);
3479                 }
3480         } else {
3481                 timer = seconds_tostring(timeleft);
3482         }
3483
3484         drawstring_aspect(pos, timer, mySize, timer_color, panel_fg_alpha, DRAWFLAG_NORMAL);
3485 }
3486
3487 // Radar (#6)
3488 //
3489 void HUD_Radar(void)
3490 {
3491         if ((autocvar_hud_panel_radar == 0 || (autocvar_hud_panel_radar != 2 && !teamplay)) && !autocvar__hud_configure)
3492                 return;
3493
3494         active_panel = HUD_PANEL_RADAR;
3495         HUD_Panel_UpdateCvars(radar);
3496         vector pos, mySize;
3497         pos = panel_pos;
3498         mySize = panel_size;
3499
3500         HUD_Panel_DrawBg(1);
3501         if(panel_bg_padding)
3502         {
3503                 pos += '1 1 0' * panel_bg_padding;
3504                 mySize -= '2 2 0' * panel_bg_padding;
3505         }
3506
3507         local float color1, color2; // color already declared as a global in hud.qc
3508         local vector rgb;
3509         local entity tm;
3510         float scale2d, normalsize, bigsize;
3511         float f;
3512
3513         teamradar_origin2d = pos + 0.5 * mySize;
3514         teamradar_size2d = mySize;
3515
3516         if(minimapname == "")
3517                 return;
3518
3519         teamradar_loadcvars();
3520
3521         switch(hud_panel_radar_zoommode)
3522         {
3523                 default:
3524                 case 0:
3525                         f = current_zoomfraction;
3526                         break;
3527                 case 1:
3528                         f = 1 - current_zoomfraction;
3529                         break;
3530                 case 2:
3531                         f = 0;
3532                         break;
3533                 case 3:
3534                         f = 1;
3535                         break;
3536         }
3537
3538         switch(hud_panel_radar_rotation)
3539         {
3540                 case 0:
3541                         teamradar_angle = view_angles_y - 90;
3542                         break;
3543                 default:
3544                         teamradar_angle = 90 * hud_panel_radar_rotation;
3545                         break;
3546         }
3547
3548         scale2d = vlen_maxnorm2d(mi_picmax - mi_picmin);
3549         teamradar_size2d = mySize;
3550
3551         teamradar_extraclip_mins = teamradar_extraclip_maxs = '0 0 0'; // we always center
3552
3553         // pixels per world qu to match the teamradar_size2d_x range in the longest dimension
3554         if(hud_panel_radar_rotation == 0)
3555         {
3556                 // max-min distance must fit the radar in any rotation
3557                 bigsize = vlen_minnorm2d(teamradar_size2d) * scale2d / (1.05 * vlen2d(mi_scale));
3558         }
3559         else
3560         {
3561                 vector c0, c1, c2, c3, span;
3562                 c0 = rotate(mi_min, teamradar_angle * DEG2RAD);
3563                 c1 = rotate(mi_max, teamradar_angle * DEG2RAD);
3564                 c2 = rotate('1 0 0' * mi_min_x + '0 1 0' * mi_max_y, teamradar_angle * DEG2RAD);
3565                 c3 = rotate('1 0 0' * mi_max_x + '0 1 0' * mi_min_y, teamradar_angle * DEG2RAD);
3566                 span = '0 0 0';
3567                 span_x = max4(c0_x, c1_x, c2_x, c3_x) - min4(c0_x, c1_x, c2_x, c3_x);
3568                 span_y = max4(c0_y, c1_y, c2_y, c3_y) - min4(c0_y, c1_y, c2_y, c3_y);
3569
3570                 // max-min distance must fit the radar in x=x, y=y
3571                 bigsize = min(
3572                         teamradar_size2d_x * scale2d / (1.05 * span_x),
3573                         teamradar_size2d_y * scale2d / (1.05 * span_y)
3574                 );
3575         }
3576
3577         normalsize = vlen_maxnorm2d(teamradar_size2d) * scale2d / hud_panel_radar_scale;
3578         if(bigsize > normalsize)
3579                 normalsize = bigsize;
3580
3581         teamradar_size =
3582                   f * bigsize
3583                 + (1 - f) * normalsize;
3584         teamradar_origin3d_in_texcoord = teamradar_3dcoord_to_texcoord(
3585                   f * mi_center
3586                 + (1 - f) * view_origin);
3587
3588         color1 = GetPlayerColor(player_localentnum-1);
3589         rgb = GetTeamRGB(color1);
3590
3591         drawsetcliparea(
3592                 pos_x,
3593                 pos_y,
3594                 mySize_x,
3595                 mySize_y
3596         );
3597
3598         draw_teamradar_background(hud_panel_radar_foreground_alpha);
3599
3600         for(tm = world; (tm = find(tm, classname, "radarlink")); )
3601                 draw_teamradar_link(tm.origin, tm.velocity, tm.team);
3602         for(tm = world; (tm = findflags(tm, teamradar_icon, 0xFFFFFF)); )
3603                 draw_teamradar_icon(tm.origin, tm.teamradar_icon, tm, tm.teamradar_color, panel_fg_alpha);
3604         for(tm = world; (tm = find(tm, classname, "entcs_receiver")); )
3605         {
3606                 color2 = GetPlayerColor(tm.sv_entnum);
3607                 //if(color == COLOR_SPECTATOR || color == color2)
3608                         draw_teamradar_player(tm.origin, tm.angles, GetTeamRGB(color2));
3609         }
3610         draw_teamradar_player(view_origin, view_angles, '1 1 1');
3611
3612         drawresetcliparea();
3613 };
3614
3615 // Score (#7)
3616 //
3617 void HUD_Score(void)
3618 {
3619         if(!autocvar_hud_panel_score && !autocvar__hud_configure)
3620                 return;
3621
3622         active_panel = HUD_PANEL_SCORE;
3623         HUD_Panel_UpdateCvars(score);
3624         vector pos, mySize;
3625         pos = panel_pos;
3626         mySize = panel_size;
3627
3628         HUD_Panel_DrawBg(1);
3629         if(panel_bg_padding)
3630         {
3631                 pos += '1 1 0' * panel_bg_padding;
3632                 mySize -= '2 2 0' * panel_bg_padding;
3633         }
3634
3635         float score, distribution, leader;
3636         string sign;
3637         vector distribution_color;
3638         entity tm, pl, me;
3639         me = (spectatee_status > 0) ? playerslots[spectatee_status - 1] : playerslots[player_localentnum - 1];
3640
3641         if((scores_flags[ps_primary] & SFL_TIME) && !teamplay) { // race/cts record display on HUD
3642                 string timer, distrtimer;
3643
3644                 pl = players.sort_next;
3645                 if(pl == me)
3646                         pl = pl.sort_next;
3647                 if(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)
3648                         if(pl.scores[ps_primary] == 0)
3649                                 pl = world;
3650
3651                 score = me.(scores[ps_primary]);
3652                 timer = TIME_ENCODED_TOSTRING(score);
3653
3654                 if (pl && ((!(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)) || score)) {
3655                         // distribution display
3656                         distribution = me.(scores[ps_primary]) - pl.(scores[ps_primary]);
3657
3658                         distrtimer = ftos_decimals(fabs(distribution/pow(10, TIME_DECIMALS)), TIME_DECIMALS);
3659
3660                         if (distribution <= 0) {
3661                                 distribution_color = '0 1 0';
3662                                 sign = "-";
3663                         }
3664                         else {
3665                                 distribution_color = '1 0 0';
3666                                 sign = "+";
3667                         }
3668                         drawstring_aspect(pos + eX * 0.75 * mySize_x, strcat(sign, distrtimer), eX * 0.25 * mySize_x + eY * (1/3) * mySize_y, distribution_color, panel_fg_alpha, DRAWFLAG_NORMAL);
3669                 }
3670                 // race record display
3671                 if (distribution <= 0)
3672                         HUD_Panel_DrawHighlight(pos, eX * 0.75 * mySize_x + eY * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3673                 drawstring_aspect(pos, timer, eX * 0.75 * mySize_x + eY * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3674         } else if (!teamplay) { // non-teamgames
3675                 // me vector := [team/connected frags id]
3676                 pl = players.sort_next;
3677                 if(pl == me)
3678                         pl = pl.sort_next;
3679
3680                 if(autocvar__hud_configure)
3681                         distribution = 42;
3682                 else if(pl)
3683                         distribution = me.(scores[ps_primary]) - pl.(scores[ps_primary]);
3684                 else
3685                         distribution = 0;
3686
3687                 score = me.(scores[ps_primary]);
3688                 if(autocvar__hud_configure)
3689                         score = 123;
3690
3691                 if(distribution >= 5) {
3692                         distribution_color = eY;
3693                         leader = 1;
3694                 } else if(distribution >= 0) {
3695                         distribution_color = '1 1 1';
3696                         leader = 1;
3697                 } else if(distribution >= -5)
3698                         distribution_color = '1 1 0';
3699                 else
3700                         distribution_color = eX;
3701
3702                 drawstring_aspect(pos + eX * 0.75 * mySize_x, ftos(distribution), eX * 0.25 * mySize_x + eY * (1/3) * mySize_y, distribution_color, panel_fg_alpha, DRAWFLAG_NORMAL);
3703                 if (leader)
3704                         HUD_Panel_DrawHighlight(pos, eX * 0.75 * mySize_x + eY * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3705                 drawstring_aspect(pos, ftos(score), eX * 0.75 * mySize_x + eY * mySize_y, distribution_color, panel_fg_alpha, DRAWFLAG_NORMAL);
3706         } else { // teamgames
3707                 float max_fragcount;
3708                 max_fragcount = -99;
3709
3710                 float teamnum;
3711                 for(tm = teams.sort_next; tm; tm = tm.sort_next) {
3712                         if(tm.team == COLOR_SPECTATOR || (!tm.team_size && !autocvar__hud_configure)) // no players? don't display
3713                                 continue;
3714                         score = tm.(teamscores[ts_primary]);
3715                         if(autocvar__hud_configure)
3716                                 score = 123;
3717                         leader = 0;
3718                         
3719                         if (score > max_fragcount)
3720                                 max_fragcount = score;
3721
3722                         if(tm.team == myteam) {
3723                                 if (max_fragcount == score)
3724                                         leader = 1;
3725                                 if (leader)
3726                                         HUD_Panel_DrawHighlight(pos, eX * 0.75 * mySize_x + eY * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3727                                 drawstring_aspect(pos, ftos(score), eX * 0.75 * mySize_x + eY * mySize_y, GetTeamRGB(tm.team) * 0.8, panel_fg_alpha, DRAWFLAG_NORMAL);
3728                         } else {
3729                                 if (max_fragcount == score)
3730                                         leader = 1;
3731                                 if (leader)
3732                                         HUD_Panel_DrawHighlight(pos + eX * 0.75 * mySize_x + eY * (1/3) * teamnum * mySize_y, eX * 0.25 * mySize_x + eY * (1/3) * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3733                                 drawstring_aspect(pos + eX * 0.75 * mySize_x + eY * (1/3) * teamnum * mySize_y, ftos(score), eX * 0.25 * mySize_x + eY * (1/3) * mySize_y, GetTeamRGB(tm.team) * 0.8, panel_fg_alpha, DRAWFLAG_NORMAL);
3734                                 teamnum += 1;
3735                         }
3736                 }
3737         }
3738 }
3739
3740 // Race timer (#8)
3741 //
3742 void HUD_RaceTimer (void) {
3743         if(!autocvar_hud_panel_racetimer && !(gametype == GAME_RACE || gametype == GAME_CTS) && !autocvar__hud_configure)
3744                 return;
3745
3746         active_panel = HUD_PANEL_RACETIMER;
3747         HUD_Panel_UpdateCvars(racetimer);
3748         vector pos, mySize;
3749         pos = panel_pos;
3750         mySize = panel_size;
3751
3752         HUD_Panel_DrawBg(1);
3753         if(panel_bg_padding)
3754         {
3755                 pos += '1 1 0' * panel_bg_padding;
3756                 mySize -= '2 2 0' * panel_bg_padding;
3757         }
3758
3759         // always force 4:1 aspect
3760         vector newSize;
3761         if(mySize_x/mySize_y > 4)
3762         {
3763                 newSize_x = 4 * mySize_y;
3764                 newSize_y = mySize_y;
3765
3766                 pos_x = pos_x + (mySize_x - newSize_x) / 2;
3767         }
3768         else
3769         {
3770                 newSize_y = 1/4 * mySize_x;
3771                 newSize_x = mySize_x;
3772
3773                 pos_y = pos_y + (mySize_y - newSize_y) / 2;
3774         }
3775         mySize = newSize;
3776
3777         float a, t;
3778         string s, forcetime;
3779
3780         if(autocvar__hud_configure)
3781         {
3782                 s = "0:13:37";
3783                 drawstring(pos + eX * 0.5 * mySize_x - '0.5 0 0' * stringwidth(s, FALSE, '0.60 0.60 0' * mySize_y), s, '0.60 0.60 0' * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3784                 s = "^1Intermediate 1 (+15.42)";
3785                 drawcolorcodedstring(pos + eX * 0.5 * mySize_x - '0.5 0 0' * stringwidth(s, TRUE, '1 1 0' * 0.20 * mySize_y) + eY * 0.60 * mySize_y, s, '1 1 0' * 0.20 * mySize_y, panel_fg_alpha, DRAWFLAG_NORMAL);
3786                 s = strcat("^1PENALTY: ", ftos_decimals(20 * 0.1, 1), " (missing a checkpoint)");
3787                 drawcolorcodedstring(pos + eX * 0.5 * mySize_x - '0.5 0 0' * stringwidth(s, TRUE, '1 1 0' * 0.20 * mySize_y) + eY * 0.80 * mySize_y, s, '1 1 0' * 0.20 * mySize_y, panel_fg_alpha, DRAWFLAG_NORMAL);
3788         }
3789         else if(race_checkpointtime)
3790         {
3791                 a = bound(0, 2 - (time - race_checkpointtime), 1);
3792                 s = "";
3793                 forcetime = "";
3794                 if(a > 0) // just hit a checkpoint?
3795                 {
3796                         if(race_checkpoint != 254)
3797                         {
3798                                 if(race_time && race_previousbesttime)
3799                                         s = MakeRaceString(race_checkpoint, TIME_DECODE(race_time) - TIME_DECODE(race_previousbesttime), 0, 0, race_previousbestname);
3800                                 else
3801                                         s = MakeRaceString(race_checkpoint, 0, -1, 0, race_previousbestname);
3802                                 if(race_time)
3803                                         forcetime = TIME_ENCODED_TOSTRING(race_time);
3804                         }
3805                 }
3806                 else
3807                 {
3808                         if(race_laptime && race_nextbesttime && race_nextcheckpoint != 254)
3809                         {
3810                                 a = bound(0, 2 - ((race_laptime + TIME_DECODE(race_nextbesttime)) - (time + TIME_DECODE(race_penaltyaccumulator))), 1);
3811                                 if(a > 0) // next one?
3812                                 {
3813                                         s = MakeRaceString(race_nextcheckpoint, (time + TIME_DECODE(race_penaltyaccumulator)) - race_laptime, TIME_DECODE(race_nextbesttime), 0, race_nextbestname);
3814                                 }
3815                         }
3816                 }
3817
3818                 if(s != "" && a > 0)
3819                 {
3820                         drawcolorcodedstring(pos + eX * 0.5 * mySize_x - '0.5 0 0' * stringwidth(s, TRUE, '1 1 0' * 0.2 * mySize_y) + eY * 0.6 * mySize_y, s, '1 1 0' * 0.2 * mySize_y, panel_fg_alpha * a, DRAWFLAG_NORMAL);
3821                 }
3822
3823                 if(race_penaltytime)
3824                 {
3825                         a = bound(0, 2 - (time - race_penaltyeventtime), 1);
3826                         if(a > 0)
3827                         {
3828                                 s = strcat("^1PENALTY: ", ftos_decimals(race_penaltytime * 0.1, 1), " (", race_penaltyreason, ")");
3829                                 drawcolorcodedstring(pos + eX * 0.5 * mySize_x - '0.5 0 0' * stringwidth(s, TRUE, '1 1 0' * 0.2 * mySize_y) + eY * 0.8 * mySize_y, s, '1 1 0' * 0.2 * mySize_y, panel_fg_alpha * a, DRAWFLAG_NORMAL);
3830                         }
3831                 }
3832
3833                 if(forcetime != "")
3834                 {
3835                         a = bound(0, (time - race_checkpointtime) / 0.5, 1);
3836                         drawstring_expanding(pos + eX * 0.5 * mySize_x - '0.5 0 0' * stringwidth(forcetime, FALSE, '1 1 0' * 0.6 * mySize_y), forcetime, '1 1 0' * 0.6 * mySize_y, '1 1 1', panel_fg_alpha, 0, a);
3837                 }
3838                 else
3839                         a = 1;
3840
3841                 if(race_laptime && race_checkpoint != 255)
3842                 {
3843                         s = TIME_ENCODED_TOSTRING(TIME_ENCODE(time + TIME_DECODE(race_penaltyaccumulator) - race_laptime));
3844                         drawstring(pos + eX * 0.5 * mySize_x - '0.5 0 0' * stringwidth(s, FALSE, '0.6 0.6 0' * mySize_y), s, '0.6 0.6 0' * mySize_y, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
3845                 }
3846         }
3847         else
3848         {
3849                 if(race_mycheckpointtime)
3850                 {
3851                         a = bound(0, 2 - (time - race_mycheckpointtime), 1);
3852                         s = MakeRaceString(race_mycheckpoint, TIME_DECODE(race_mycheckpointdelta), -!race_mycheckpointenemy, race_mycheckpointlapsdelta, race_mycheckpointenemy);
3853                         drawcolorcodedstring(pos + eX * 0.5 * mySize_x - '0.5 0 0' * stringwidth(s, TRUE, '1 1 0' * 0.2 * mySize_y) + eY * 0.6 * mySize_y, s, '1 1 0' * 0.2 * mySize_y, panel_fg_alpha * a, DRAWFLAG_NORMAL);
3854                 }
3855                 if(race_othercheckpointtime && race_othercheckpointenemy != "")
3856                 {
3857                         a = bound(0, 2 - (time - race_othercheckpointtime), 1);
3858                         s = MakeRaceString(race_othercheckpoint, -TIME_DECODE(race_othercheckpointdelta), -!race_othercheckpointenemy, race_othercheckpointlapsdelta, race_othercheckpointenemy);
3859                         drawcolorcodedstring(pos + eX * 0.5 * mySize_x - '0.5 0 0' * stringwidth(s, TRUE, '1 1 0' * 0.2 * mySize_y) + eY * 0.6 * mySize_y, s, '1 1 0' * 0.2 * mySize_y, panel_fg_alpha * a, DRAWFLAG_NORMAL);
3860                 }
3861
3862                 if(race_penaltytime && !race_penaltyaccumulator)
3863                 {
3864                         t = race_penaltytime * 0.1 + race_penaltyeventtime;
3865                         a = bound(0, (1 + t - time), 1);
3866                         if(a > 0)
3867                         {
3868                                 if(time < t)
3869                                         s = strcat("^1PENALTY: ", ftos_decimals(t - time, 1), " (", race_penaltyreason, ")");
3870                                 else
3871                                         s = strcat("^2PENALTY: 0.0 (", race_penaltyreason, ")");
3872                                 drawcolorcodedstring(pos + eX * 0.5 * mySize_x - '0.5 0 0' * stringwidth(s, TRUE, '1 1 0' * 0.2 * mySize_y) + eY * 0.6 * mySize_y, s, '1 1 0' * 0.2 * mySize_y, panel_fg_alpha * a, DRAWFLAG_NORMAL);
3873                         }
3874                 }
3875         }
3876 }
3877
3878 // Vote window (#9)
3879 //
3880 float vote_yescount;
3881 float vote_nocount;
3882 float vote_needed;
3883 float vote_highlighted; // currently selected vote
3884
3885 float vote_active; // is there an active vote?
3886 float vote_prev; // previous state of vote_active to check for a change
3887 float vote_alpha;
3888 float vote_change; // "time" when vote_active changed
3889
3890 void HUD_VoteWindow(void) 
3891 {
3892     uid2name_dialog = 0;
3893         if(autocvar_cl_allow_uid2name == -1 && (gametype == GAME_CTS || gametype == GAME_RACE))
3894         {
3895                 vote_active = 1;
3896                 vote_called_vote = strzone(strcat("^2Name ^7instead of \"^1Unregistered player\"", " ^7in stats"));
3897         uid2name_dialog = 1;
3898         }
3899
3900         if(!autocvar_hud_panel_vote && !autocvar__hud_configure)
3901                 return;
3902
3903         if(!autocvar__hud_configure)
3904         {
3905                 panel_fg_alpha = autocvar_hud_panel_fg_alpha;
3906                 panel_bg_alpha_str = autocvar_hud_panel_vote_bg_alpha;
3907
3908                 if(panel_bg_alpha_str == "") {
3909                         panel_bg_alpha_str = ftos(autocvar_hud_panel_bg_alpha);
3910                 }
3911                 panel_bg_alpha = stof(panel_bg_alpha_str);
3912         }
3913
3914         string s;
3915         float a;
3916         if(vote_active != vote_prev) {
3917                 vote_change = time;
3918                 vote_prev = vote_active;
3919         }
3920
3921         if(vote_active || autocvar__hud_configure)
3922                 vote_alpha = bound(0, (time - vote_change) * 2, 1);
3923         else
3924                 vote_alpha = bound(0, 1 - (time - vote_change) * 2, 1);
3925
3926         if(autocvar__hud_configure)
3927         {
3928                 vote_yescount = 3;
3929                 vote_nocount = 2;
3930                 vote_needed = 4;
3931         }
3932
3933         if(!vote_alpha)
3934                 return;
3935
3936         active_panel = HUD_PANEL_VOTE;
3937         HUD_Panel_UpdateCvars(vote);
3938
3939         if(uid2name_dialog)
3940         {
3941                 panel_pos = eX * 0.3 * vid_conwidth + eY * 0.1 * vid_conheight;
3942                 panel_size = eX * 0.4 * vid_conwidth + eY * 0.3 * vid_conheight;
3943         }
3944
3945     // these must be below above block
3946         vector pos, mySize;
3947         pos = panel_pos;
3948         mySize = panel_size;
3949
3950         a = vote_alpha * bound(autocvar_hud_panel_vote_alreadyvoted_alpha, 1 - vote_highlighted, 1);
3951         HUD_Panel_DrawBg(a);
3952         a = panel_fg_alpha * a;
3953
3954         if(panel_bg_padding)
3955         {
3956                 pos += '1 1 0' * panel_bg_padding;
3957                 mySize -= '2 2 0' * panel_bg_padding;
3958         }
3959
3960         // always force 3:1 aspect
3961         vector newSize;
3962         if(mySize_x/mySize_y > 3)
3963         {
3964                 newSize_x = 3 * mySize_y;
3965                 newSize_y = mySize_y;
3966
3967                 pos_x = pos_x + (mySize_x - newSize_x) / 2;
3968         }
3969         else
3970         {
3971                 newSize_y = 1/3 * mySize_x;
3972                 newSize_x = mySize_x;
3973
3974                 pos_y = pos_y + (mySize_y - newSize_y) / 2;
3975         }
3976         mySize = newSize;
3977
3978         s = "A vote has been called for:";
3979         if(uid2name_dialog)
3980                 s = "Allow servers to store and display your name?";
3981         drawstring_aspect(pos, s, eX * mySize_x + eY * (2/8) * mySize_y, '1 1 1', a, DRAWFLAG_NORMAL);
3982         s = textShortenToWidth(vote_called_vote, mySize_x, '1 1 0' * mySize_y * (1/8), stringwidth_colors);
3983         if(autocvar__hud_configure)
3984                 s = "^1Configure the HUD";
3985         drawcolorcodedstring_aspect(pos + eY * (2/8) * mySize_y, s, eX * mySize_x + eY * (1.75/8) * mySize_y, a, DRAWFLAG_NORMAL);
3986
3987         // print the yes/no counts
3988     s = strcat("Yes (", getcommandkey("vyes", "vyes"), "): ", ftos(vote_yescount));
3989         drawstring_aspect(pos + eY * (4/8) * mySize_y, s, eX * 0.5 * mySize_x + eY * (1.5/8) * mySize_y, '0 1 0', a, DRAWFLAG_NORMAL);
3990     s = strcat("No (", getcommandkey("vno", "vno"), "): ", ftos(vote_nocount));
3991         drawstring_aspect(pos + eX * 0.5 * mySize_x + eY * (4/8) * mySize_y, s, eX * 0.5 * mySize_x + eY * (1.5/8) * mySize_y, '1 0 0', a, DRAWFLAG_NORMAL);
3992
3993         // draw the progress bar backgrounds
3994         drawpic_skin(pos + eY * (5/8) * mySize_y, "voteprogress_back", eX * mySize_x + eY * (3/8) * mySize_y, '1 1 1', a, DRAWFLAG_NORMAL);
3995
3996         // draw the highlights
3997         if(vote_highlighted == 1) {
3998                 drawsetcliparea(pos_x, pos_y, mySize_x * 0.5, mySize_y);
3999                 drawpic_skin(pos + eY * (5/8) * mySize_y, "voteprogress_voted", eX * mySize_x + eY * (3/8) * mySize_y, '1 1 1', a, DRAWFLAG_NORMAL);
4000         }
4001         else if(vote_highlighted == 2) {
4002                 drawsetcliparea(pos_x + 0.5 * mySize_x, pos_y, mySize_x * 0.5, mySize_y);
4003                 drawpic_skin(pos + eY * (5/8) * mySize_y, "voteprogress_voted", eX * mySize_x + eY * (3/8) * mySize_y, '1 1 1', a, DRAWFLAG_NORMAL);
4004         }
4005
4006         // draw the progress bars
4007         if(vote_yescount && vote_needed)
4008         {
4009                 drawsetcliparea(pos_x, pos_y, mySize_x * 0.5 * (vote_yescount/vote_needed), mySize_y);
4010                 drawpic_skin(pos + eY * (5/8) * mySize_y, "voteprogress_prog", eX * mySize_x + eY * (3/8) * mySize_y, '1 1 1', a, DRAWFLAG_NORMAL);
4011         }
4012
4013         if(vote_nocount && vote_needed)
4014         {
4015                 drawsetcliparea(pos_x + mySize_x - mySize_x * 0.5 * (vote_nocount/vote_needed), pos_y, mySize_x * 0.5, mySize_y);
4016                 drawpic_skin(pos + eY * (5/8) * mySize_y, "voteprogress_prog", eX * mySize_x + eY * (3/8) * mySize_y, '1 1 1', a, DRAWFLAG_NORMAL);
4017         }
4018
4019         drawresetcliparea();
4020
4021         if(!vote_active) {
4022                 vote_highlighted = 0;
4023         }
4024 }
4025
4026 // Mod icons panel (#10)
4027 //
4028
4029 float mod_active; // is there any active mod icon?
4030
4031 // Clan Arena HUD modicons
4032 void HUD_Mod_CA(vector pos, vector mySize)
4033 {
4034         mod_active = 1; // CA should never hide the mod icons panel
4035         float redalive, bluealive;
4036         redalive = getstati(STAT_REDALIVE);
4037         bluealive = getstati(STAT_BLUEALIVE);
4038
4039         vector redpos, bluepos;
4040         if(mySize_x > mySize_y)
4041         {
4042                 redpos = pos;
4043                 bluepos = pos + eY * 0.5 * mySize_y;
4044                 drawpic_aspect_skin(redpos, "player_red.tga", 0.5 * mySize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4045                 drawstring_aspect(redpos + eX * 0.5 * mySize_x, ftos(redalive), 0.5 * mySize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4046                 drawpic_aspect_skin(bluepos, "player_blue.tga", 0.5 * mySize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4047                 drawstring_aspect(bluepos + eX * 0.5 * mySize_x, ftos(bluealive), 0.5 * mySize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4048         }
4049         else
4050         {
4051                 redpos = pos;
4052                 bluepos = pos + eY * 0.5 * mySize_y;
4053                 drawpic_aspect_skin(redpos, "player_red.tga", eX * mySize_x + eY * 0.3 * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4054                 drawstring_aspect(redpos + eY * 0.3 * mySize_y, ftos(redalive), eX * mySize_x + eY * 0.2 * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4055                 drawpic_aspect_skin(bluepos, "player_blue.tga", eX * mySize_x + eY * 0.3 * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4056                 drawstring_aspect(bluepos + eY * 0.3 * mySize_y, ftos(bluealive), eX * mySize_x + eY * 0.2 * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4057         }
4058 }
4059
4060 // CTF HUD modicon section
4061 float redflag_prevframe, blueflag_prevframe; // status during previous frame
4062 float redflag_prevstatus, blueflag_prevstatus; // last remembered status
4063 float redflag_statuschange_time, blueflag_statuschange_time; // time when the status changed
4064
4065 void HUD_Mod_CTF_Reset(void)
4066 {
4067         redflag_prevstatus = blueflag_prevstatus = redflag_prevframe = blueflag_prevframe = redflag_statuschange_time = blueflag_statuschange_time = 0;
4068 }
4069
4070 void HUD_Mod_CTF(vector pos, vector mySize)
4071 {
4072         vector redflag_pos, blueflag_pos;
4073         vector flag_size;
4074         float f; // every function should have that
4075
4076         float redflag, blueflag; // current status
4077         float redflag_statuschange_elapsedtime, blueflag_statuschange_elapsedtime; // time since the status changed
4078         float stat_items;
4079
4080         stat_items = getstati(STAT_ITEMS);
4081         redflag = (stat_items/IT_RED_FLAG_TAKEN) & 3;
4082         blueflag = (stat_items/IT_BLUE_FLAG_TAKEN) & 3;
4083         
4084         if(redflag || blueflag)
4085                 mod_active = 1;
4086         else
4087                 mod_active = 0;
4088
4089         if(autocvar__hud_configure)
4090         {
4091                 redflag = 1;
4092                 blueflag = 2;
4093         }
4094
4095         // when status CHANGES, set old status into prevstatus and current status into status
4096         if (redflag != redflag_prevframe)
4097         {
4098                 redflag_statuschange_time = time;
4099                 redflag_prevstatus = redflag_prevframe;
4100                 redflag_prevframe = redflag;
4101         }
4102
4103         if (blueflag != blueflag_prevframe)
4104         {
4105                 blueflag_statuschange_time = time;
4106                 blueflag_prevstatus = blueflag_prevframe;
4107                 blueflag_prevframe = blueflag;
4108         }
4109
4110         redflag_statuschange_elapsedtime = time - redflag_statuschange_time;
4111         blueflag_statuschange_elapsedtime = time - blueflag_statuschange_time;
4112
4113         float BLINK_FACTOR = 0.15;
4114         float BLINK_BASE = 0.85;
4115         // note:
4116         //   RMS = sqrt(BLINK_BASE^2 + 0.5 * BLINK_FACTOR^2)
4117         // thus
4118         //   BLINK_BASE = sqrt(RMS^2 - 0.5 * BLINK_FACTOR^2)
4119         // ensure RMS == 1
4120         float BLINK_FREQ = 5; // circle frequency, = 2*pi*frequency in hertz
4121
4122         string red_icon, red_icon_prevstatus;
4123         float red_alpha, red_alpha_prevstatus;
4124         red_alpha = red_alpha_prevstatus = 1;
4125         switch(redflag) {
4126                 case 1: red_icon = "flag_red_taken"; break;
4127                 case 2: red_icon = "flag_red_lost"; break;
4128                 case 3: red_icon = "flag_red_carrying"; red_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
4129                 default:
4130                         if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM2))
4131                                 red_icon = "flag_red_shielded";
4132                         else
4133                                 red_icon = string_null;
4134                         break;
4135         }
4136         switch(redflag_prevstatus) {
4137                 case 1: red_icon_prevstatus = "flag_red_taken"; break;
4138                 case 2: red_icon_prevstatus = "flag_red_lost"; break;
4139                 case 3: red_icon_prevstatus = "flag_red_carrying"; red_alpha_prevstatus = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
4140                 default:
4141                         if(redflag == 3)
4142                                 red_icon_prevstatus = "flag_red_carrying"; // make it more visible
4143                         else if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM2))
4144                                 red_icon_prevstatus = "flag_red_shielded";
4145                         else
4146                                 red_icon_prevstatus = string_null;
4147                         break;
4148         }
4149
4150         string blue_icon, blue_icon_prevstatus;
4151         float blue_alpha, blue_alpha_prevstatus;
4152         blue_alpha = blue_alpha_prevstatus = 1;
4153         switch(blueflag) {
4154                 case 1: blue_icon = "flag_blue_taken"; break;
4155                 case 2: blue_icon = "flag_blue_lost"; break;
4156                 case 3: blue_icon = "flag_blue_carrying"; blue_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
4157                 default:
4158                         if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM1))
4159                                 blue_icon = "flag_blue_shielded";
4160                         else
4161                                 blue_icon = string_null;
4162                         break;
4163         }
4164         switch(blueflag_prevstatus) {
4165                 case 1: blue_icon_prevstatus = "flag_blue_taken"; break;
4166                 case 2: blue_icon_prevstatus = "flag_blue_lost"; break;
4167                 case 3: blue_icon_prevstatus = "flag_blue_carrying"; blue_alpha_prevstatus = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
4168                 default:
4169                         if(blueflag == 3)
4170                                 blue_icon_prevstatus = "flag_blue_carrying"; // make it more visible
4171                         else if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM1))
4172                                 blue_icon_prevstatus = "flag_blue_shielded";
4173                         else
4174                                 blue_icon_prevstatus = string_null;
4175                         break;
4176         }
4177
4178         if(mySize_x > mySize_y) {
4179                 if (myteam == COLOR_TEAM1) { // always draw own flag on left
4180                         redflag_pos = pos;
4181                         blueflag_pos = pos + eX * 0.5 * mySize_x;
4182                 } else {
4183                         blueflag_pos = pos;
4184                         redflag_pos = pos + eX * 0.5 * mySize_x;
4185                 }
4186                 flag_size = eX * 0.5 * mySize_x + eY * mySize_y;
4187         } else {
4188                 if (myteam == COLOR_TEAM1) { // always draw own flag on left
4189                         redflag_pos = pos;
4190                         blueflag_pos = pos + eY * 0.5 * mySize_y;
4191                 } else {
4192                         blueflag_pos = pos;
4193                         redflag_pos = pos + eY * 0.5 * mySize_y;
4194                 }
4195                 flag_size = eY * 0.5 * mySize_y + eX * mySize_x;
4196         }
4197
4198         f = bound(0, redflag_statuschange_elapsedtime*2, 1);
4199         if(red_icon_prevstatus && f < 1)
4200                 drawpic_aspect_skin_expanding(redflag_pos, red_icon_prevstatus, flag_size, '1 1 1', panel_fg_alpha * red_alpha_prevstatus, DRAWFLAG_NORMAL, f);
4201         if(red_icon)
4202                 drawpic_aspect_skin(redflag_pos, red_icon, flag_size, '1 1 1', panel_fg_alpha * red_alpha * f, DRAWFLAG_NORMAL);
4203
4204         f = bound(0, blueflag_statuschange_elapsedtime*2, 1);
4205         if(blue_icon_prevstatus && f < 1)
4206                 drawpic_aspect_skin_expanding(blueflag_pos, blue_icon_prevstatus, flag_size, '1 1 1', panel_fg_alpha * blue_alpha_prevstatus, DRAWFLAG_NORMAL, f);
4207         if(blue_icon)
4208                 drawpic_aspect_skin(blueflag_pos, blue_icon, flag_size, '1 1 1', panel_fg_alpha * blue_alpha * f, DRAWFLAG_NORMAL);
4209 }
4210
4211 // Keyhunt HUD modicon section
4212 float kh_runheretime;
4213
4214 void HUD_Mod_KH_Reset(void)
4215 {
4216         kh_runheretime = 0;
4217 }
4218
4219 void HUD_Mod_KH(vector pos, vector mySize)
4220 {
4221         mod_active = 1; // keyhunt should never hide the mod icons panel
4222         float kh_keys;
4223         float keyteam;
4224         float a, aa;
4225         vector p, pa, kh_size, kh_asize;
4226
4227         kh_keys = getstati(STAT_KH_KEYS);
4228
4229         p_x = pos_x;
4230         if(mySize_x > mySize_y)
4231         {
4232                 p_y = pos_y + 0.25 * mySize_y;
4233                 pa = p - eY * 0.25 * mySize_y;
4234
4235                 kh_size_x = mySize_x * 0.25;
4236                 kh_size_y = 0.75 * mySize_y;
4237                 kh_asize_x = mySize_x * 0.25;
4238                 kh_asize_y = mySize_y * 0.25;
4239         }
4240         else
4241         {
4242                 p_y = pos_y + 0.125 * mySize_y;
4243                 pa = p - eY * 0.125 * mySize_y;
4244
4245                 kh_size_x = mySize_x * 0.5;
4246                 kh_size_y = 0.375 * mySize_y;
4247                 kh_asize_x = mySize_x * 0.5;
4248                 kh_asize_y = mySize_y * 0.125;
4249         }
4250
4251         float i, key;
4252
4253         float keycount;
4254         keycount = 0;
4255         for(i = 0; i < 4; ++i)
4256         {
4257                 key = floor(kh_keys / pow(32, i)) & 31;
4258                 keyteam = key - 1;
4259                 if(keyteam == 30 && keycount <= 4)
4260                         keycount += 4;
4261                 if(keyteam == myteam || keyteam == -1 || keyteam == 30)
4262                         keycount += 1;
4263         }
4264
4265         // this yields 8 exactly if "RUN HERE" shows
4266
4267         if(keycount == 8)
4268         {
4269                 if(!kh_runheretime)
4270                         kh_runheretime = time;
4271                 pa_y -= fabs(sin((time - kh_runheretime) * 3.5)) * 6; // make the arrows jump in case of RUN HERE
4272         }
4273         else
4274                 kh_runheretime = 0;
4275
4276         for(i = 0; i < 4; ++i)
4277         {
4278                 key = floor(kh_keys / pow(32, i)) & 31;
4279                 keyteam = key - 1;
4280                 switch(keyteam)
4281                 {
4282                         case 30: // my key
4283                                 keyteam = myteam;
4284                                 a = 1;
4285                                 aa = 1;
4286                                 break;
4287                         case -1: // no key
4288                                 a = 0;
4289                                 aa = 0;
4290                                 break;
4291                         default: // owned or dropped
4292                                 a = 0.2;
4293                                 aa = 0.5;
4294                                 break;
4295                 }
4296                 a = a * panel_fg_alpha;
4297                 aa = aa * panel_fg_alpha;
4298                 if(a > 0)
4299                 {
4300                         switch(keyteam)
4301                         {
4302                                 case COLOR_TEAM1:
4303                                         drawpic_aspect_skin(pa, "kh_redarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
4304                                         break;
4305                                 case COLOR_TEAM2:
4306                                         drawpic_aspect_skin(pa, "kh_bluearrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
4307                                         break;
4308                                 case COLOR_TEAM3:
4309                                         drawpic_aspect_skin(pa, "kh_yellowarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
4310                                         break;
4311                                 case COLOR_TEAM4:
4312                                         drawpic_aspect_skin(pa, "kh_pinkarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
4313                                         break;
4314                                 default:
4315                                         break;
4316                         }
4317                         switch(i) // YAY! switch(i) inside a for loop for i. DailyWTF, here we come!
4318                         {
4319                                 case 0:
4320                                         drawpic_aspect_skin(p, "kh_red", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
4321                                         break;
4322                                 case 1:
4323                                         drawpic_aspect_skin(p, "kh_blue", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
4324                                         break;
4325                                 case 2:
4326                                         drawpic_aspect_skin(p, "kh_yellow", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
4327                                         break;
4328                                 case 3:
4329                                         drawpic_aspect_skin(p, "kh_pink", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
4330                                         break;
4331                         }
4332                 }
4333                 if(mySize_x > mySize_y)
4334                 {
4335                         p_x += 0.25 * mySize_x;
4336                         pa_x += 0.25 * mySize_x;
4337                 }
4338                 else
4339                 {
4340                         if(i == 1)
4341                         {
4342                                 p_y = pos_y + 0.625 * mySize_y;
4343                                 pa_y = pos_y + 0.5 * mySize_y;
4344                                 p_x = pos_x;
4345                                 pa_x = pos_x;
4346                         }
4347                         else
4348                         {
4349                                 p_x += 0.5 * mySize_x;
4350                                 pa_x += 0.5 * mySize_x;
4351                         }
4352                 }
4353         }
4354 }
4355
4356 // Keepaway HUD mod icon
4357 float kaball_prevstatus; // last remembered status
4358 float kaball_statuschange_time; // time when the status changed
4359
4360 // we don't need to reset for keepaway since it immediately 
4361 // autocorrects prevstatus as to if the player has the ball or not
4362
4363 void HUD_Mod_Keepaway(vector pos, vector mySize)
4364 {
4365         mod_active = 1; // keepaway should always show the mod HUD
4366         
4367         float BLINK_FACTOR = 0.15;
4368         float BLINK_BASE = 0.85;
4369         float BLINK_FREQ = 5; 
4370         float kaball_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ);
4371         
4372         float stat_items = getstati(STAT_ITEMS);
4373         float kaball = (stat_items/IT_KEY1) & 1;
4374         
4375         if(kaball != kaball_prevstatus)
4376         {
4377                 kaball_statuschange_time = time;
4378                 kaball_prevstatus = kaball;
4379         }
4380         
4381         vector kaball_pos, kaball_size;
4382         
4383         if(mySize_x > mySize_y) {
4384                 kaball_pos = pos + eX * 0.25 * mySize_x;
4385                 kaball_size = eX * 0.5 * mySize_x + eY * mySize_y;
4386         } else {
4387                 kaball_pos = pos + eY * 0.25 * mySize_y;
4388                 kaball_size = eY * 0.5 * mySize_y + eX * mySize_x;
4389         }
4390         
4391         float kaball_statuschange_elapsedtime = time - kaball_statuschange_time;
4392         float f = bound(0, kaball_statuschange_elapsedtime*2, 1);
4393         
4394         if(kaball_prevstatus && f < 1)
4395                 drawpic_aspect_skin_expanding(kaball_pos, "keepawayball_carrying", kaball_size, '1 1 1', panel_fg_alpha * kaball_alpha, DRAWFLAG_NORMAL, f);
4396         
4397         if(kaball)
4398                 drawpic_aspect_skin(pos, "keepawayball_carrying", eX * mySize_x + eY * mySize_y, '1 1 1', panel_fg_alpha * kaball_alpha * f, DRAWFLAG_NORMAL);
4399 }
4400
4401
4402 // Nexball HUD mod icon
4403 void HUD_Mod_NexBall(vector pos, vector mySize)
4404 {
4405         float stat_items, nb_pb_starttime, dt, p;
4406
4407         stat_items = getstati(STAT_ITEMS);
4408         nb_pb_starttime = getstatf(STAT_NB_METERSTART);
4409
4410         if (stat_items & IT_KEY1)
4411                 mod_active = 1;
4412         else
4413                 mod_active = 0;
4414
4415         //Manage the progress bar if any
4416         if (nb_pb_starttime > 0)
4417         {
4418                 dt = mod(time - nb_pb_starttime, nb_pb_period);
4419                 // one period of positive triangle
4420                 p = 2 * dt / nb_pb_period;
4421                 if (p > 1)
4422                         p = 2 - p;
4423
4424                 //Draw the filling
4425                 float vertical;
4426                 if(mySize_x > mySize_y)
4427                 {
4428                         vertical = 0;
4429                 }
4430                 else
4431                 {
4432                         vertical = 1;
4433                 }
4434                 HUD_Panel_GetProgressBarColor(nexball);
4435         HUD_Panel_DrawProgressBar(pos, mySize, "statusbar", vertical, 0, p, progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
4436         }
4437
4438         if (stat_items & IT_KEY1)
4439                 drawpic_aspect_skin(pos, "nexball_carrying", eX * mySize_x + eY * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4440 }
4441
4442 // Race/CTS HUD mod icons
4443 float crecordtime_prev; // last remembered crecordtime
4444 float crecordtime_change_time; // time when crecordtime last changed
4445 float srecordtime_prev; // last remembered srecordtime
4446 float srecordtime_change_time; // time when srecordtime last changed
4447
4448 float race_status_time;
4449 float race_status_prev;
4450 string race_status_name_prev;
4451 void HUD_Mod_Race(vector pos, vector mySize)
4452 {
4453         mod_active = 1; // race should never hide the mod icons panel
4454         entity me;
4455         me = playerslots[player_localentnum - 1];
4456         float t, score;
4457         float f; // yet another function has this
4458         score = me.(scores[ps_primary]);
4459
4460         if not((scores_flags[ps_primary] & SFL_TIME) && !teamplay) // race/cts record display on HUD
4461                 return; // no records in the actual race
4462
4463         // clientside personal record
4464         string rr;
4465         if(gametype == GAME_CTS)
4466                 rr = CTS_RECORD;
4467         else
4468                 rr = RACE_RECORD;
4469         t = stof(db_get(ClientProgsDB, strcat(shortmapname, rr, "time")));
4470
4471         if(score && (score < t || !t)) {
4472                 db_put(ClientProgsDB, strcat(shortmapname, rr, "time"), ftos(score));
4473                 if(autocvar_cl_autodemo_delete_keeprecords)
4474                 {
4475                         f = autocvar_cl_autodemo_delete;
4476                         f &~= 1;
4477                         cvar_set("cl_autodemo_delete", ftos(f)); // don't delete demo with new record!
4478                 }
4479         }
4480
4481         if(t != crecordtime_prev) {
4482                 crecordtime_prev = t;
4483                 crecordtime_change_time = time;
4484         }
4485
4486         vector textPos, medalPos;
4487         float squareSize;
4488         if(mySize_x > mySize_y) {
4489                 // text on left side
4490                 squareSize = min(mySize_y, mySize_x/2);
4491                 textPos = pos + eX * 0.5 * max(0, mySize_x/2 - squareSize) + eY * 0.5 * (mySize_y - squareSize);
4492                 medalPos = pos + eX * 0.5 * max(0, mySize_x/2 - squareSize) + eX * 0.5 * mySize_x + eY * 0.5 * (mySize_y - squareSize);
4493         } else {
4494                 // text on top
4495                 squareSize = min(mySize_x, mySize_y/2);
4496                 textPos = pos + eY * 0.5 * max(0, mySize_y/2 - squareSize) + eX * 0.5 * (mySize_x - squareSize);
4497                 medalPos = pos + eY * 0.5 * max(0, mySize_y/2 - squareSize) + eY * 0.5 * mySize_y + eX * 0.5 * (mySize_x - squareSize);
4498         }
4499
4500         f = time - crecordtime_change_time;
4501
4502         if (f > 1) {
4503                 drawstring_aspect(textPos, "Personal best", eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4504                 drawstring_aspect(textPos + eY * 0.25 * squareSize, TIME_ENCODED_TOSTRING(t), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4505         } else {
4506                 drawstring_aspect(textPos, "Personal best", eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4507                 drawstring_aspect(textPos + eY * 0.25 * squareSize, TIME_ENCODED_TOSTRING(t), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4508                 drawstring_aspect_expanding(pos, "Personal best", eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL, f);
4509                 drawstring_aspect_expanding(pos + eY * 0.25 * squareSize, TIME_ENCODED_TOSTRING(t), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL, f);
4510         }
4511
4512         // server record
4513         t = race_server_record;
4514         if(t != srecordtime_prev) {
4515                 srecordtime_prev = t;
4516                 srecordtime_change_time = time;
4517         }
4518         f = time - srecordtime_change_time;
4519
4520         if (f > 1) {
4521                 drawstring_aspect(textPos + eY * 0.5 * squareSize, "Server best", eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4522                 drawstring_aspect(textPos + eY * 0.75 * squareSize, TIME_ENCODED_TOSTRING(t), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4523         } else {
4524                 drawstring_aspect(textPos + eY * 0.5 * squareSize, "Server best", eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4525                 drawstring_aspect(textPos + eY * 0.75 * squareSize, TIME_ENCODED_TOSTRING(t), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4526                 drawstring_aspect_expanding(textPos + eY * 0.5 * squareSize, "Server best", eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL, f);
4527                 drawstring_aspect_expanding(textPos + eY * 0.75 * squareSize, TIME_ENCODED_TOSTRING(t), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL, f);
4528         }
4529
4530         if (race_status != race_status_prev || race_status_name != race_status_name_prev) {
4531                 race_status_time = time + 5;
4532                 race_status_prev = race_status;
4533                 if (race_status_name_prev)
4534                         strunzone(race_status_name_prev);
4535                 race_status_name_prev = strzone(race_status_name);
4536         }
4537
4538         // race "awards"
4539         float a;
4540         a = bound(0, race_status_time - time, 1);
4541
4542         string s;
4543         s = textShortenToWidth(race_status_name, squareSize, '1 1 0' * 0.1 * squareSize, stringwidth_colors);
4544
4545         float rank;
4546         if(race_status > 0)
4547                 rank = race_CheckName(race_status_name);
4548         string rankname;
4549         rankname = race_PlaceName(rank);
4550
4551         vector namepos;
4552         namepos = medalPos + '0 0.8 0' * squareSize;
4553         vector rankpos;
4554         rankpos = medalPos + '0 0.15 0' * squareSize;
4555
4556         if(race_status == 0)
4557                 drawpic_aspect_skin(medalPos, "race_newfail", '1 1 0' * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
4558         else if(race_status == 1) {
4559                 drawpic_aspect_skin(medalPos + '0.1 0 0' * squareSize, "race_newtime", '1 1 0' * 0.8 * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
4560                 drawcolorcodedstring_aspect(namepos, s, '1 0.2 0' * squareSize, panel_fg_alpha * a, DRAWFLAG_NORMAL);
4561                 drawstring_aspect(rankpos, rankname, '1 0.15 0' * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
4562         } else if(race_status == 2) {
4563                 if(race_status_name == GetPlayerName(player_localentnum -1) || !race_myrank || race_myrank < rank)
4564                         drawpic_aspect_skin(medalPos + '0.1 0 0' * squareSize, "race_newrankgreen", '1 1 0' * 0.8 * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
4565                 else
4566                         drawpic_aspect_skin(medalPos + '0.1 0 0' * squareSize, "race_newrankyellow", '1 1 0' * 0.8 * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
4567                 drawcolorcodedstring_aspect(namepos, s, '1 0.2 0' * squareSize, panel_fg_alpha * a, DRAWFLAG_NORMAL);
4568                 drawstring_aspect(rankpos, rankname, '1 0.15 0' * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
4569         } else if(race_status == 3) {
4570                 drawpic_aspect_skin(medalPos + '0.1 0 0' * squareSize, "race_newrecordserver", '1 1 0' * 0.8 * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
4571                 drawcolorcodedstring_aspect(namepos, s, '1 0.2 0' * squareSize, panel_fg_alpha * a, DRAWFLAG_NORMAL);
4572                 drawstring_aspect(rankpos, rankname, '1 0.15 0' * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
4573         }
4574
4575         if (race_status_time - time <= 0) {
4576                 race_status_prev = -1;
4577                 race_status = -1;
4578                 if(race_status_name)
4579                         strunzone(race_status_name);
4580                 race_status_name = string_null;
4581                 if(race_status_name_prev)
4582                         strunzone(race_status_name_prev);
4583                 race_status_name_prev = string_null;
4584         }
4585 }
4586
4587 float mod_prev; // previous state of mod_active to check for a change
4588 float mod_alpha;
4589 float mod_change; // "time" when mod_active changed
4590
4591 void HUD_ModIcons(void)
4592 {
4593         if(!autocvar_hud_panel_modicons && !autocvar__hud_configure)
4594                 return;
4595
4596         if (gametype != GAME_KEYHUNT && gametype != GAME_CTF && gametype != GAME_NEXBALL && gametype != GAME_CTS && gametype != GAME_RACE && gametype != GAME_CA && gametype != GAME_FREEZETAG && gametype != GAME_KEEPAWAY && !autocvar__hud_configure)
4597                 return;
4598
4599         active_panel = HUD_PANEL_MODICONS;
4600         HUD_Panel_UpdateCvars(modicons);
4601         vector pos, mySize;
4602         pos = panel_pos;
4603         mySize = panel_size;
4604
4605         if(mod_active != mod_prev) {
4606                 mod_change = time;
4607                 mod_prev = mod_active;
4608         }
4609
4610         if(mod_active || autocvar__hud_configure)
4611                 mod_alpha = bound(0, (time - mod_change) * 2, 1);
4612         else
4613                 mod_alpha = bound(0, 1 - (time - mod_change) * 2, 1);
4614
4615         if(mod_alpha)
4616                 HUD_Panel_DrawBg(mod_alpha);
4617
4618         if(panel_bg_padding)
4619         {
4620                 pos += '1 1 0' * panel_bg_padding;
4621                 mySize -= '2 2 0' * panel_bg_padding;
4622         }
4623
4624         // these MUST be ran in order to update mod_active
4625         if(gametype == GAME_KEYHUNT)
4626                 HUD_Mod_KH(pos, mySize);
4627         else if(gametype == GAME_CTF || autocvar__hud_configure)
4628                 HUD_Mod_CTF(pos, mySize); // forcealpha only needed for ctf icons, as only they are shown in config mode
4629         else if(gametype == GAME_NEXBALL)
4630                 HUD_Mod_NexBall(pos, mySize);
4631         else if(gametype == GAME_CTS || gametype == GAME_RACE)
4632                 HUD_Mod_Race(pos, mySize);
4633         else if(gametype == GAME_CA || gametype == GAME_FREEZETAG)
4634                 HUD_Mod_CA(pos, mySize);
4635         else if(gametype == GAME_KEEPAWAY)
4636                 HUD_Mod_Keepaway(pos, mySize);
4637 }
4638
4639 // Draw pressed keys (#11)
4640 //
4641 void HUD_DrawPressedKeys(void)
4642 {
4643         if(!autocvar_hud_panel_pressedkeys && !autocvar__hud_configure)
4644                 return;
4645
4646         if(!(spectatee_status > 0 || autocvar_hud_panel_pressedkeys >= 2 || autocvar__hud_configure))
4647                 return;
4648
4649         active_panel = HUD_PANEL_PRESSEDKEYS;
4650         HUD_Panel_UpdateCvars(pressedkeys);
4651         vector pos, mySize;
4652         pos = panel_pos;
4653         mySize = panel_size;
4654
4655         HUD_Panel_DrawBg(1);
4656         if(panel_bg_padding)
4657         {
4658                 pos += '1 1 0' * panel_bg_padding;
4659                 mySize -= '2 2 0' * panel_bg_padding;
4660         }
4661
4662         // force custom aspect
4663         float aspect = autocvar_hud_panel_pressedkeys_aspect;
4664         if(aspect)
4665         {
4666                 vector newSize;
4667                 if(mySize_x/mySize_y > aspect)
4668                 {
4669                         newSize_x = aspect * mySize_y;
4670                         newSize_y = mySize_y;
4671
4672                         pos_x = pos_x + (mySize_x - newSize_x) / 2;
4673                 }
4674                 else
4675                 {
4676                         newSize_y = 1/aspect * mySize_x;
4677                         newSize_x = mySize_x;
4678
4679                         pos_y = pos_y + (mySize_y - newSize_y) / 2;
4680                 }
4681                 mySize = newSize;
4682         }
4683
4684         vector keysize;
4685         keysize = eX * mySize_x * (1/3) + eY * mySize_y * 0.5;
4686         float pressedkeys;
4687
4688         pressedkeys = getstatf(STAT_PRESSED_KEYS);
4689         drawpic_aspect_skin(pos, ((pressedkeys & KEY_CROUCH) ? "key_crouch_inv.tga" : "key_crouch.tga"), keysize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4690         drawpic_aspect_skin(pos + eX * mySize_x * (1/3), ((pressedkeys & KEY_FORWARD) ? "key_forward_inv.tga" : "key_forward.tga"), keysize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4691         drawpic_aspect_skin(pos + eX * mySize_x * (2/3), ((pressedkeys & KEY_JUMP) ? "key_jump_inv.tga" : "key_jump.tga"), keysize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4692         drawpic_aspect_skin(pos + eY * 0.5 * mySize_y, ((pressedkeys & KEY_LEFT) ? "key_left_inv.tga" : "key_left.tga"), keysize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4693         drawpic_aspect_skin(pos + eY * 0.5 * mySize_y + eX * mySize_x * (1/3), ((pressedkeys & KEY_BACKWARD) ? "key_backward_inv.tga" : "key_backward.tga"), keysize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4694         drawpic_aspect_skin(pos + eY * 0.5 * mySize_y + eX * mySize_x * (2/3), ((pressedkeys & KEY_RIGHT) ? "key_right_inv.tga" : "key_right.tga"), keysize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4695 }
4696
4697 // Handle chat as a panel (#12)
4698 //
4699 void HUD_Chat(void)
4700 {
4701         if(!autocvar_hud_panel_chat && !autocvar__hud_configure)
4702         {
4703                 cvar_set("con_chatrect", "0");
4704                 return;
4705         }
4706
4707         active_panel = HUD_PANEL_CHAT;
4708         HUD_Panel_UpdateCvars(chat);
4709
4710         if(autocvar__con_chat_maximized && !autocvar__hud_configure) // draw at full screen height if maximized
4711         {
4712                 panel_pos_y = panel_bg_border;
4713                 panel_size_y = vid_conheight - panel_bg_border * 2;
4714                 if(panel_bg == "0") // force a border when maximized
4715                 {
4716                         if(precache_pic(panel_bg) == "") {
4717                                 panel_bg = strcat(hud_skin_path, "/border_default");
4718                                 if(precache_pic(panel_bg) == "") {
4719                                         panel_bg = "gfx/hud/default/border_default";
4720                                 }
4721                         }
4722                 }
4723                 panel_bg_alpha = max(0.75, panel_bg_alpha); // force an alpha of at least 0.75
4724         }
4725
4726         vector pos, mySize;
4727         pos = panel_pos;
4728         mySize = panel_size;
4729
4730         HUD_Panel_DrawBg(1);
4731
4732         if(panel_bg_padding)
4733         {
4734                 pos += '1 1 0' * panel_bg_padding;
4735                 mySize -= '2 2 0' * panel_bg_padding;
4736         }
4737
4738         cvar_set("con_chatrect", "1");
4739
4740         cvar_set("con_chatrect_x", ftos(pos_x/vid_conwidth));
4741         cvar_set("con_chatrect_y", ftos(pos_y/vid_conheight));
4742
4743         cvar_set("con_chatwidth", ftos(mySize_x/vid_conwidth));
4744         cvar_set("con_chat", ftos(floor(mySize_y/autocvar_con_chatsize - 0.5)));
4745
4746         if(autocvar__hud_configure)
4747         {
4748                 float chatsize;
4749                 chatsize = autocvar_con_chatsize;
4750                 cvar_set("con_chatrect_x", "9001"); // over 9000, we'll fake it instead for more control over alpha and such
4751                 float i, a;
4752                 for(i = 0; i < autocvar_con_chat; ++i)
4753                 {
4754                         if(i == autocvar_con_chat - 1)
4755                                 a = panel_fg_alpha;
4756                         else
4757                                 a = panel_fg_alpha * floor(((i + 1) * 7 + autocvar_con_chattime)/45);
4758                         drawcolorcodedstring(pos + eY * i * chatsize, textShortenToWidth("^3Player^7: This is the chat area.", mySize_x, '1 1 0' * chatsize, stringwidth_colors), '1 1 0' * chatsize, a, DRAWFLAG_NORMAL);
4759                 }
4760         }
4761 }
4762
4763 // Engine info panel (#13)
4764 //
4765 float prevfps;
4766 float prevfps_time;
4767 float framecounter;
4768
4769 float frametimeavg;
4770 float frametimeavg1; // 1 frame ago
4771 float frametimeavg2; // 2 frames ago
4772 void HUD_EngineInfo(void)
4773 {
4774         if(!autocvar_hud_panel_engineinfo && !autocvar__hud_configure)
4775                 return;
4776
4777         active_panel = HUD_PANEL_ENGINEINFO;
4778         HUD_Panel_UpdateCvars(engineinfo);
4779         vector pos, mySize;
4780         pos = panel_pos;
4781         mySize = panel_size;
4782
4783         HUD_Panel_DrawBg(1);
4784         if(panel_bg_padding)
4785         {
4786                 pos += '1 1 0' * panel_bg_padding;
4787                 mySize -= '2 2 0' * panel_bg_padding;
4788         }
4789
4790         float currentTime = gettime(GETTIME_REALTIME);
4791         if(cvar("hud_panel_engineinfo_framecounter_exponentialmovingaverage"))
4792         {
4793                 float currentframetime = currentTime - prevfps_time;
4794                 frametimeavg = (frametimeavg + frametimeavg1 + frametimeavg2 + currentframetime)/4; // average three frametimes into framecounter for slightly more stable fps readings :P
4795                 frametimeavg2 = frametimeavg1;
4796                 frametimeavg1 = frametimeavg;
4797                 
4798                 float weight;
4799                 weight = cvar("hud_panel_engineinfo_framecounter_exponentialmovingaverage_new_weight");
4800                 if(currentframetime > 0.0001) // filter out insane values which sometimes seem to occur and throw off the average? If you are getting 10,000 fps or more, then you don't need a framerate counter.
4801                 {
4802                         if(fabs(prevfps - (1/frametimeavg)) > prevfps * cvar("hud_panel_engineinfo_framecounter_exponentialmovingaverage_instantupdate_change_threshold")) // if there was a big jump in fps, just force prevfps at current (1/currentframetime) to make big updates instant
4803                                 prevfps = (1/currentframetime);
4804                         prevfps = (1 - weight) * prevfps + weight * (1/frametimeavg); // framecounter just used so there's no need for a new variable, think of it as "frametime average"
4805                 }
4806                 prevfps_time = currentTime;
4807         }
4808         else
4809         {
4810                 framecounter += 1;
4811                 if(currentTime - prevfps_time > autocvar_hud_panel_engineinfo_framecounter_time)
4812                 {
4813                         prevfps = framecounter/(currentTime - prevfps_time);
4814                         framecounter = 0;
4815                         prevfps_time = currentTime;
4816                 }
4817         }
4818
4819         vector color;
4820         color = HUD_Get_Num_Color (prevfps, 100);
4821         drawstring_aspect(pos, strcat("FPS: ", ftos_decimals(prevfps, autocvar_hud_panel_engineinfo_framecounter_decimals)), mySize, color, panel_fg_alpha, DRAWFLAG_NORMAL);
4822 }
4823
4824 // Info messages panel (#14)
4825 //
4826 #define drawInfoMessage(s)\
4827         if(autocvar_hud_panel_infomessages_flip)\
4828                 o_x = pos_x + mySize_x - stringwidth(s, TRUE, fontsize);\
4829         drawcolorcodedstring(o, s, fontsize, a, DRAWFLAG_NORMAL);\
4830         o_y += fontsize_y;
4831 void HUD_InfoMessages(void)
4832 {
4833         if(!autocvar_hud_panel_infomessages && !autocvar__hud_configure)
4834                 return;
4835
4836         active_panel = HUD_PANEL_INFOMESSAGES;
4837         HUD_Panel_UpdateCvars(infomessages);
4838         vector pos, mySize;
4839         pos = panel_pos;
4840         mySize = panel_size;
4841
4842         HUD_Panel_DrawBg(1);
4843         if(panel_bg_padding)
4844         {
4845                 pos += '1 1 0' * panel_bg_padding;
4846                 mySize -= '2 2 0' * panel_bg_padding;
4847         }
4848
4849         // always force 5:1 aspect
4850         vector newSize;
4851         if(mySize_x/mySize_y > 5)
4852         {
4853                 newSize_x = 5 * mySize_y;
4854                 newSize_y = mySize_y;
4855
4856                 pos_x = pos_x + (mySize_x - newSize_x) / 2;
4857         }
4858         else
4859         {
4860                 newSize_y = 1/5 * mySize_x;
4861                 newSize_x = mySize_x;
4862
4863                 pos_y = pos_y + (mySize_y - newSize_y) / 2;
4864         }
4865
4866         mySize = newSize;
4867         entity tm;
4868         vector o;
4869         o = pos;
4870
4871         vector fontsize;
4872         fontsize = '0.20 0.20 0' * mySize_y;
4873         
4874         float a;
4875         if(spectatee_status != 0)
4876                 a = 1;
4877         else
4878                 a = panel_fg_alpha;
4879
4880         string s;
4881         if(!autocvar__hud_configure)
4882         {
4883                 if(spectatee_status && !intermission)
4884                 {
4885                         if(spectatee_status == -1)
4886                                 s = "^1Observing";
4887                         else
4888                                 s = strcat("^1Spectating: ^7", GetPlayerName(spectatee_status - 1));
4889                         drawInfoMessage(s)
4890
4891                         if(spectatee_status == -1)
4892                                 s = strcat("^1Press ^3", getcommandkey("primary fire", "+fire"), "^1 to spectate");
4893                         else
4894                                 s = strcat("^1Press ^3", getcommandkey("primary fire", "+fire"), "^1 for another player");
4895                         drawInfoMessage(s)
4896
4897                         if(spectatee_status == -1)
4898                                 s = strcat("^1Use ^3", getcommandkey("next weapon", "weapnext"), "^1 or ^3", getcommandkey("previous weapon", "weapprev"), "^1 to change the speed");
4899                         else
4900                                 s = strcat("^1Press ^3", getcommandkey("secondary fire", "+fire2"), "^1 to observe");
4901                         drawInfoMessage(s)
4902
4903                         s = strcat("^1Press ^3", getcommandkey("server info", "+show_info"), "^1 for gamemode info");
4904                         drawInfoMessage(s)
4905
4906                         if(gametype == GAME_ARENA)
4907                                 s = "^1Wait for your turn to join";
4908                         else if(gametype == GAME_LMS)
4909                         {
4910                                 entity sk;
4911                                 sk = playerslots[player_localentnum - 1];
4912                                 if(sk.(scores[ps_primary]) >= 666)
4913                                         s = "^1Match has already begun";
4914                                 else if(sk.(scores[ps_primary]) > 0)
4915                                         s = "^1You have no more lives left";
4916                                 else
4917                                         s = strcat("^1Press ^3", getcommandkey("jump", "+jump"), "^1 to join");
4918                         }
4919                         else
4920                                 s = strcat("^1Press ^3", getcommandkey("jump", "+jump"), "^1 to join");
4921                         drawInfoMessage(s)
4922
4923                         //show restart countdown:
4924                         if (time < getstatf(STAT_GAMESTARTTIME)) {
4925                                 float countdown;
4926                                 //we need to ceil, otherwise the countdown would be off by .5 when using round()
4927                                 countdown = ceil(getstatf(STAT_GAMESTARTTIME) - time);
4928                                 s = strcat("^1Game starts in ^3", ftos(countdown), "^1 seconds");
4929                                 drawcolorcodedstring(o, s, fontsize, a, DRAWFLAG_NORMAL);
4930                                 o_y += fontsize_y;
4931                         }
4932                 }
4933                 if(warmup_stage && !intermission)
4934                 {
4935                         s = "^2Currently in ^1warmup^2 stage!";
4936                         drawInfoMessage(s)
4937                 }
4938
4939                 string blinkcolor;
4940                 if(mod(time, 1) >= 0.5)
4941                         blinkcolor = "^1";
4942                 else
4943                         blinkcolor = "^3";
4944
4945                 if(ready_waiting && !intermission && !spectatee_status)
4946                 {
4947                         if(ready_waiting_for_me)
4948                         {
4949                                 if(warmup_stage)
4950                                         s = strcat(blinkcolor, "Press ^3", getcommandkey("ready", "ready"), blinkcolor, " to end warmup");
4951                                 else
4952                                         s = strcat(blinkcolor, "Press ^3", getcommandkey("ready", "ready"), blinkcolor, " once you are ready");
4953                         }
4954                         else
4955                         {
4956                                 if(warmup_stage)
4957                                         s = strcat("^2Waiting for others to ready up to end warmup...");
4958                                 else
4959                                         s = strcat("^2Waiting for others to ready up...");
4960                         }
4961                         drawInfoMessage(s)
4962                 }
4963                 else if(warmup_stage && !intermission && !spectatee_status)
4964                 {
4965                         s = strcat("^2Press ^3", getcommandkey("ready", "ready"), "^2 to end warmup");
4966                         drawInfoMessage(s)
4967                 }
4968
4969                 if(teamplay && !intermission && !spectatee_status && gametype != GAME_CA && teamnagger)
4970                 {
4971                         float ts_min, ts_max;
4972                         tm = teams.sort_next;
4973                         if (tm)
4974                         {
4975                                 for(; tm.sort_next; tm = tm.sort_next)
4976                                 {
4977                                         if(!tm.team_size || tm.team == COLOR_SPECTATOR)
4978                                                 continue;
4979                                         if(!ts_min) ts_min = tm.team_size;
4980                                         else ts_min = min(ts_min, tm.team_size);
4981                                         if(!ts_max) ts_max = tm.team_size;
4982                                         else ts_max = max(ts_max, tm.team_size);
4983                                 }
4984                                 if ((ts_max - ts_min) > 1)
4985                                 {
4986                                         s = strcat(blinkcolor, "Teamnumbers are unbalanced!");
4987                                         tm = GetTeam(myteam, false);
4988                                         if (tm)
4989                                         if (tm.team != COLOR_SPECTATOR)
4990                                         if (tm.team_size == ts_max)
4991                                                 s = strcat(s, " Press ^3", getcommandkey("team menu", "menu_showteamselect"), blinkcolor, " to adjust");
4992                                         drawInfoMessage(s)
4993                                 }
4994                         }
4995                 }
4996         }
4997         else 
4998         {
4999                 s = "^7Press ^3ESC ^7to show HUD options.";
5000                 drawInfoMessage(s)
5001                 s = "^3Doubleclick ^7a panel for panel-specific options.";
5002                 drawInfoMessage(s)
5003                 s = "^3CTRL ^7to disable collision testing, ^3SHIFT ^7and";
5004                 drawInfoMessage(s)
5005                 s = "^3ALT ^7+ ^3ARROW KEYS ^7for fine adjustments.";
5006                 drawInfoMessage(s)
5007         }
5008 }
5009
5010 /*
5011 ==================
5012 Main HUD system
5013 ==================
5014 */
5015
5016 void HUD_ShowSpeed(void)
5017 {
5018         vector numsize;
5019         float pos, conversion_factor;
5020         string speed, zspeed, unit;
5021
5022         switch(autocvar_cl_showspeed_unit)
5023         {
5024                 default:
5025                 case 0:
5026                         unit = "";
5027                         conversion_factor = 1.0;
5028                         break;
5029                 case 1:
5030                         unit = " qu/s";
5031                         conversion_factor = 1.0;
5032                         break;
5033                 case 2:
5034                         unit = " m/s";
5035                         conversion_factor = 0.0254;
5036                         break;
5037                 case 3:
5038                         unit = " km/h";
5039                         conversion_factor = 0.0254 * 3.6;
5040                         break;
5041                 case 4:
5042                         unit = " mph";
5043                         conversion_factor = 0.0254 * 3.6 * 0.6213711922;
5044                         break;
5045                 case 5:
5046                         unit = " knots";
5047                         conversion_factor = 0.0254 * 1.943844492; // 1 m/s = 1.943844492 knots, because 1 knot = 1.852 km/h
5048                         break;
5049         }
5050
5051         speed = strcat(ftos(floor( vlen(pmove_vel - pmove_vel_z * '0 0 1') * conversion_factor + 0.5 )), unit);
5052
5053         numsize_x = numsize_y = autocvar_cl_showspeed_size;
5054         pos = (vid_conheight - numsize_y) * autocvar_cl_showspeed_position;
5055
5056         drawstringcenter(eX + pos * eY, speed, numsize, '1 1 1', autocvar_hud_panel_fg_alpha * hud_fade_alpha, DRAWFLAG_NORMAL);
5057
5058         if (autocvar_cl_showspeed_z == 1) {
5059                 zspeed = strcat(ftos(fabs(floor( pmove_vel_z * conversion_factor + 0.5 ))), unit);
5060                 drawstringcenter(eX + pos * eY + numsize_y * eY, zspeed, numsize * 0.5, '1 1 1', autocvar_hud_panel_fg_alpha * hud_fade_alpha, DRAWFLAG_NORMAL);
5061         }
5062 }
5063
5064 vector acc_prevspeed;
5065 float acc_prevtime;
5066 float acc_avg;
5067
5068 void HUD_ShowAcceleration(void)
5069 {
5070         float acceleration, sz, scale, alpha, f;
5071         vector pos, top, rgb;
5072         top_x = vid_conwidth/2;
5073         top_y = 0;
5074
5075         f = time - acc_prevtime;
5076         if(autocvar_cl_showacceleration_z)
5077                 acceleration = (vlen(pmove_vel) - vlen(acc_prevspeed)) * (1 / f);
5078         else
5079                 acceleration = (vlen(pmove_vel - '0 0 1' * pmove_vel_z) - vlen(acc_prevspeed - '0 0 1' * acc_prevspeed_z)) * (1 / f);
5080         acc_prevspeed = pmove_vel;
5081         acc_prevtime = time;
5082
5083         f = bound(0, f * 10, 1);
5084         acc_avg = acc_avg * (1 - f) + acceleration * f;
5085         acceleration = acc_avg / getstatf(STAT_MOVEVARS_MAXSPEED);
5086         if (acceleration == 0)
5087                 return;
5088
5089         pos = top - sz/2 * eY + (autocvar_cl_showacceleration_position * vid_conheight) * eY;
5090
5091         sz = autocvar_cl_showacceleration_size;
5092         scale = autocvar_cl_showacceleration_scale;
5093         alpha = autocvar_cl_showacceleration_alpha;
5094         if (autocvar_cl_showacceleration_color_custom)
5095                 rgb = stov(autocvar_cl_showacceleration_color);
5096         else {
5097                 if (acceleration < 0)
5098                         rgb = '1 .5 .5' - '0 .5 .5' * bound(0, -acceleration * 0.2, 1);
5099                 else
5100                         rgb = '.5 1 .5' - '.5 0 .5' * bound(0, +acceleration * 0.2, 1);
5101         }
5102
5103         if (acceleration > 0)
5104         HUD_Panel_DrawProgressBar(pos, eX * (vid_conwidth - pos_x) + eY * sz, "statusbar", 0, 0, acceleration * scale, rgb, alpha * autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
5105         else
5106         HUD_Panel_DrawProgressBar(eY * pos_y, eX * pos_x + eY * sz, "statusbar", 0, 1, -acceleration * scale, rgb, alpha * autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
5107 }
5108
5109 void HUD_Reset (void)
5110 {
5111         // reset gametype specific icons
5112         if(gametype == GAME_KEYHUNT)
5113                 HUD_Mod_KH_Reset();
5114         else if(gametype == GAME_CTF)
5115                 HUD_Mod_CTF_Reset();
5116 }
5117
5118 #define HUD_DrawPanel(id)\
5119 switch (id) {\
5120         case (HUD_PANEL_RADAR):\
5121                 HUD_Radar(); break;\
5122         case (HUD_PANEL_WEAPONS):\
5123                 HUD_Weapons(); break;\
5124         case (HUD_PANEL_AMMO):\
5125                 HUD_Ammo(); break;\
5126         case (HUD_PANEL_POWERUPS):\
5127                 HUD_Powerups(); break;\
5128         case (HUD_PANEL_HEALTHARMOR):\
5129                 HUD_HealthArmor(); break;\
5130         case (HUD_PANEL_NOTIFY):\
5131                 HUD_Notify(); break;\
5132         case (HUD_PANEL_TIMER):\
5133                 HUD_Timer(); break;\
5134         case (HUD_PANEL_SCORE):\
5135                 HUD_Score(); break;\
5136         case (HUD_PANEL_RACETIMER):\
5137                 HUD_RaceTimer(); break;\
5138         case (HUD_PANEL_VOTE):\
5139                 HUD_VoteWindow(); break;\
5140         case (HUD_PANEL_MODICONS):\
5141                 HUD_ModIcons(); break;\
5142         case (HUD_PANEL_PRESSEDKEYS):\
5143                 HUD_DrawPressedKeys(); break;\
5144         case (HUD_PANEL_CHAT):\
5145                 HUD_Chat(); break;\
5146         case (HUD_PANEL_ENGINEINFO):\
5147                 HUD_EngineInfo(); break;\
5148         case (HUD_PANEL_INFOMESSAGES):\
5149                  HUD_InfoMessages(); break;\
5150 } ENDS_WITH_CURLY_BRACE
5151
5152 void HUD_Main (void)
5153 {
5154         float i;
5155         // global hud alpha fade
5156         if(menu_enabled == 1)
5157                 hud_fade_alpha = 1;
5158         else
5159                 hud_fade_alpha = (1 - autocvar__menu_alpha);
5160
5161         if(scoreboard_fade_alpha)
5162                 hud_fade_alpha = (1 - scoreboard_fade_alpha);
5163
5164         if(intermission == 2) // no hud during mapvote
5165                 hud_fade_alpha = 0;
5166         else if(autocvar__menu_alpha == 0 && scoreboard_fade_alpha == 0)
5167                 hud_fade_alpha = 1;
5168
5169         hud_fontsize = HUD_GetFontsize("hud_fontsize");
5170
5171         if(!autocvar__hud_configure && !hud_fade_alpha)
5172                 return;
5173
5174         // Drawing stuff
5175         if (hud_skin_path != autocvar_hud_skin)
5176         {
5177                 if (hud_skin_path)
5178                         strunzone(hud_skin_path);
5179                 hud_skin_path = strzone(strcat("gfx/hud/", autocvar_hud_skin));
5180         }
5181
5182         // HUD configure visible grid
5183         if(autocvar__hud_configure && autocvar_hud_configure_grid && autocvar_hud_configure_grid_alpha)
5184         {
5185                 // x-axis
5186                 for(i = 0; i < 1/bound(0.005, autocvar_hud_configure_grid_xsize, 0.2); ++i)
5187                 {
5188                         drawfill(eX * i * vid_conwidth * bound(0.005, autocvar_hud_configure_grid_xsize, 0.2), eX + eY * vid_conheight, '0.5 0.5 0.5', autocvar_hud_configure_grid_alpha, DRAWFLAG_NORMAL);
5189                 }
5190                 // y-axis
5191                 for(i = 0; i < 1/bound(0.005, autocvar_hud_configure_grid_ysize, 0.2); ++i)
5192                 {
5193                         drawfill(eY * i * vid_conheight * bound(0.005, autocvar_hud_configure_grid_ysize, 0.2), eY + eX * vid_conwidth, '0.5 0.5 0.5', autocvar_hud_configure_grid_alpha, DRAWFLAG_NORMAL);
5194                 }
5195         }
5196
5197     current_player = (spectatee_status > 0) ? spectatee_status : player_localentnum;
5198
5199         // draw the dock
5200         if(autocvar_hud_dock != "" && autocvar_hud_dock != "0")
5201         {
5202                 float f;
5203                 vector color;
5204                 float hud_dock_color_team = autocvar_hud_dock_color_team;
5205                 if((teamplay) && hud_dock_color_team) {
5206                         f = stof(getplayerkey(current_player - 1, "colors"));
5207                         color = colormapPaletteColor(mod(f, 16), 1) * hud_dock_color_team;
5208                 }
5209                 else if(autocvar_hud_configure_teamcolorforced && autocvar__hud_configure && hud_dock_color_team) {
5210                         color = '1 0 0' * hud_dock_color_team;
5211                 }
5212                 else
5213                 {
5214                         string hud_dock_color = autocvar_hud_dock_color;
5215                         if(hud_dock_color == "shirt") {
5216                                 f = stof(getplayerkey(current_player - 1, "colors"));
5217                                 color = colormapPaletteColor(floor(f / 16), 0);
5218                         }
5219                         else if(hud_dock_color == "pants") {
5220                                 f = stof(getplayerkey(current_player - 1, "colors"));
5221                                 color = colormapPaletteColor(mod(f, 16), 1);
5222                         }
5223                         else
5224                                 color = stov(hud_dock_color);
5225                 }
5226
5227                 string pic;
5228                 pic = strcat(hud_skin_path, "/", autocvar_hud_dock);
5229                 if(precache_pic(pic) == "") {
5230                         pic = strcat(hud_skin_path, "/dock_medium");
5231                         if(precache_pic(pic) == "") {
5232                                 pic = "gfx/hud/default/dock_medium";
5233                         }
5234                 }
5235                 drawpic('0 0 0', pic, eX * vid_conwidth + eY * vid_conheight, color, autocvar_hud_dock_alpha * hud_fade_alpha, DRAWFLAG_NORMAL); // no aspect ratio forcing on dock...
5236         }
5237
5238         // cache the panel order into the panel_order array
5239         if(autocvar__hud_panelorder != hud_panelorder_prev) {
5240                 if(hud_panelorder_prev)
5241                         strunzone(hud_panelorder_prev);
5242                 hud_panelorder_prev = strzone(autocvar__hud_panelorder);
5243                 tokenize_console(autocvar__hud_panelorder);
5244                 for(i = 0; i < HUD_PANEL_NUM; ++i) {
5245                         panel_order[i] = stof(argv(i));
5246                 }
5247         }
5248         // draw panels in order specified by panel_order array
5249         for(i = HUD_PANEL_NUM - 1; i >= 0; --i) {
5250                 if(i != HUD_PANEL_CHAT || !autocvar__con_chat_maximized) // don't draw maximized chat panel twice!
5251                         HUD_DrawPanel(panel_order[i]);
5252         }
5253
5254         // draw chat panel on top if it is maximized
5255         if(autocvar__con_chat_maximized)
5256                 HUD_Chat(); // HUD_DrawPanel(HUD_PANEL_CHAT);
5257
5258         // TODO hud_'ify these
5259         if (autocvar_cl_showspeed)
5260                 HUD_ShowSpeed();
5261         if (autocvar_cl_showacceleration)
5262                 HUD_ShowAcceleration();
5263
5264         if (autocvar__hud_configure && spectatee_status && hud_configure_prev == -1) // try to join if we are in hud_configure mode, but still spectating, and in the first frame (in order to get rid of motd when launching a server via the menu "HUD Setup" button)
5265                 localcmd("cmd selectteam auto; cmd join\n");
5266
5267         hud_configure_prev = autocvar__hud_configure;
5268
5269         if (!autocvar__hud_configure) // hud config mode disabled, enable normal alpha stuff again
5270                 if (menu_enabled)
5271                         menu_enabled = 0;
5272 }