]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/hud.qc
start of CSQC i18n-izing
[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 strcat(ftos(pos), "th");
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 = strcat(" (-", ftos(lapdelta), "L)");
367                         col = "^2";
368                 }
369                 else if(lapdelta < 0)
370                 {
371                         lapstr = strcat(" (+", ftos(-lapdelta), "L)");
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 = strcat("Intermediate ", ftos(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, cpname, " (", timestr, ")");
399         else
400                 return strcat(col, 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("^2Successfully exported to ", filename, "! (Note: It's saved in data/data/)\n");
543                 fclose(fh);
544         }
545         else
546                 print("^1Couldn't write to ", filename, "\n");
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 ("^1",s1, "^1 couldn't take it anymore\n");
2686                 } else if (type == DEATH_ROT) {
2687                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2688                         if (alsoprint)
2689                                 print ("^1",s1, "^1 died\n");
2690                 } else if (type == DEATH_NOAMMO) {
2691                         HUD_KillNotify_Push(s1, "", 0, DEATH_NOAMMO);
2692                         if (alsoprint)
2693                                 print ("^7",s1, "^7 committed suicide. What's the point of living without ammo?\n");
2694                 } else if (type == DEATH_CAMP) {
2695                         HUD_KillNotify_Push(s1, "", 0, DEATH_CAMP);
2696                         if (alsoprint)
2697                                 print ("^1",s1, "^1 thought they found a nice camping ground\n");
2698                 } else if (type == KILL_TEAM_RED || type == KILL_TEAM_BLUE) {
2699                         HUD_KillNotify_Push(s1, "", 0, type);
2700                         if (alsoprint)
2701                                 print ("^1",s1, "^1 didn't become friends with the Lord of Teamplay\n");
2702                 } else if (type == DEATH_CHEAT) {
2703                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2704                         if (alsoprint)
2705                                 print ("^1",s1, "^1 unfairly eliminated themself\n");
2706                 } else if (type == DEATH_FIRE) {
2707                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2708                         if (alsoprint)
2709                                 print ("^1",s1, "^1 burned to death\n");
2710                 } else if (type != DEATH_TEAMCHANGE && type != DEATH_QUIET) {
2711                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2712                         if (alsoprint)
2713                                 print ("^1",s1, "^1 couldn't resist the urge to self-destruct\n");
2714                 } 
2715                 
2716                 if (stof(s2) > 2) // killcount > 2
2717                         print ("^1",s1,"^1 ended it all after a ",s2," kill spree\n");
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 ("^1", s1, "^1 took action against a team mate\n");
2735                                 } else {
2736                                         print ("^1", s1, "^1 mows down a team mate\n");
2737                                 }
2738                         }
2739                         if (stof(s2) > 2 && type == KILL_TEAM_SPREE) {
2740                                 if(gentle)
2741                                         print ("^1",s1,"^1 ended a ",s3," scoring spree by going against a team mate\n");
2742                                 else
2743                                         print ("^1",s1,"^1 ended a ",s3," kill spree by killing a team mate\n");
2744                         }
2745                         else if (stof(s2) > 2) {
2746                                 if(gentle)
2747                                         print ("^1",s1,"'s ^1",s3," scoring spree was ended by a team mate!\n");
2748                                 else
2749                                         print ("^1",s1,"'s ^1",s3," kill spree was ended by a team mate!\n");
2750                         }
2751                 }
2752                 else if(type == KILL_FIRST_BLOOD)
2753                         print("^1",s1, "^1 drew first blood", "\n");
2754                 else if (type == DEATH_TELEFRAG) {
2755                         HUD_KillNotify_Push(s1, s2, 1, DEATH_TELEFRAG);
2756                         if(gentle)
2757                                 print ("^1",s2, "^1 tried to occupy ", s1, "^1's teleport destination space\n");
2758                         else
2759                                 print ("^1",s2, "^1 was telefragged by ", s1, "\n");
2760                 }
2761                 else if (type == DEATH_DROWN) {
2762                         HUD_KillNotify_Push(s1, s2, 1, DEATH_DROWN);
2763                         if(alsoprint)
2764                                 print ("^1",s2, "^1 was drowned by ", s1, "\n");
2765                 }
2766                 else if (type == DEATH_SLIME) {
2767                         HUD_KillNotify_Push(s1, s2, 1, DEATH_SLIME);
2768                         if(alsoprint)
2769                                 print ("^1",s2, "^1 was slimed by ", s1, "\n");
2770                 }
2771                 else if (type == DEATH_LAVA) {
2772                         HUD_KillNotify_Push(s1, s2, 1, DEATH_LAVA);
2773                         if(alsoprint)
2774                                 print ("^1",s2, "^1 was cooked by ", s1, "\n");
2775                 }
2776                 else if (type == DEATH_FALL) {
2777                         HUD_KillNotify_Push(s1, s2, 1, DEATH_FALL);
2778                         if(alsoprint)
2779                                 print ("^1",s2, "^1 was grounded by ", s1, "\n");
2780                 }
2781                 else if (type == DEATH_SHOOTING_STAR) {
2782                         HUD_KillNotify_Push(s1, s2, 1, DEATH_SHOOTING_STAR);
2783                         if(alsoprint)
2784                                 print ("^1",s2, "^1 was shot into space by ", s1, "\n");
2785                 }
2786                 else if (type == DEATH_SWAMP) {
2787                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2788                         if(alsoprint)
2789                                 print ("^1",s2, "^1 was conserved by ", s1, "\n");
2790                 }
2791                 else if (type == DEATH_HURTTRIGGER)
2792                 {
2793                         HUD_KillNotify_Push(s1, s2, 1, DEATH_HURTTRIGGER);
2794                         if(alsoprint)
2795                                 print("^1",s2, "^1 was thrown into a world of hurt by ", s1, "\n");
2796                 } else if(type == DEATH_SBCRUSH) {
2797                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2798                         if(alsoprint)
2799                                 print ("^1",s2, "^1 was crushed by ^1", s1, "\n");
2800                 } else if(type == DEATH_SBMINIGUN) {
2801                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2802                         if(alsoprint)
2803                                 print ("^1",s2, "^1 got shredded by ^1", s1, "\n");
2804                 } else if(type == DEATH_SBROCKET) {
2805                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2806                         if(alsoprint)
2807                                 print ("^1",s2, "^1 was blased to bits by ^1", s1, "\n");
2808                 } else if(type == DEATH_SBBLOWUP) {
2809                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2810                         if(alsoprint)
2811                                 print ("^1",s2, "^1 got caught in the destruction of ^1", s1, "'s vehicle\n");
2812                 } else if(type == DEATH_WAKIGUN) {
2813                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2814                         if(alsoprint)
2815                                 print ("^1",s2, "^1 was bolted down by ^1", s1, "\n");
2816                 } else if(type == DEATH_WAKIROCKET) {
2817                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2818                         if(alsoprint)
2819                                 print ("^1",s2, "^1 could find no shelter from ^1", s1, "'s rockets\n");
2820                 } else if(type == DEATH_WAKIBLOWUP) {
2821                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2822                         if(alsoprint)
2823                                 print ("^1",s2, "^1 dies when ^1", s1, "'s wakizashi dies.\n");
2824                 } else if(type == DEATH_TURRET) {
2825                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2826                         if(alsoprint)
2827                                 print ("^1",s2, "^1 was pushed into the line of fire by ^1", s1, "\n");
2828                 } else if(type == DEATH_TOUCHEXPLODE) {
2829                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2830                         if(alsoprint)
2831                                 print ("^1",s2, "^1 was pushed into an accident by ^1", s1, "\n");
2832                 } else if(type == DEATH_CHEAT) {
2833                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2834                         if(alsoprint)
2835                                 print ("^1",s2, "^1 was unfairly eliminated by ^1", s1, "\n");
2836                 } else if (type == DEATH_FIRE) {
2837                         HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC);
2838                         if(alsoprint)
2839                                 print ("^1",s2, "^1 was burnt to death by ^1", s1, "\n");
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 ("^1",s2, "^1 was fragged by ", s1, "\n");
2852                 }
2853         } else if(msg == MSG_SPREE) {
2854                 if(type == KILL_END_SPREE) {
2855                         if(gentle)
2856                                 print ("^1",s1,"'s ^1", s2, " scoring spree was ended by ", s3, "\n");
2857                         else
2858                                 print ("^1",s1,"'s ^1", s2, " kill spree was ended by ", s3, "\n");
2859                 } else if(type == KILL_SPREE) {
2860                         if(gentle)
2861                                 print ("^1",s1,"^1 made ",s2," scores in a row\n");
2862                         else
2863                                 print ("^1",s1,"^1 has ",s2," frags in a row\n");
2864                 } else if(type == KILL_SPREE_3) {
2865                         if(gentle)
2866                                 print (s1,"^7 made a ^1TRIPLE SCORE\n");
2867                         else
2868                                 print (s1,"^7 made a ^1TRIPLE FRAG\n");
2869                 } else if(type == KILL_SPREE_5) {
2870                         if(gentle)
2871                                 print (s1,"^7 unleashes ^1SCORING RAGE\n");
2872                         else
2873                                 print (s1,"^7 unleashes ^1RAGE\n");
2874                 } else if(type == KILL_SPREE_10) {
2875                         if(gentle)
2876                                 print (s1,"^7 made ^1TEN SCORES IN A ROW!\n");
2877                         else
2878                                 print (s1,"^7 starts the ^1MASSACRE!\n");
2879                 } else if(type == KILL_SPREE_15) {
2880                         if(gentle)
2881                                 print (s1,"^7 made ^1FIFTEEN SCORES IN A ROW!\n");
2882                         else
2883                                 print (s1,"^7 executes ^1MAYHEM!\n");
2884                 } else if(type == KILL_SPREE_20) {
2885                         if(gentle)
2886                                 print (s1,"^7 made ^1TWENTY SCORES IN A ROW!\n");
2887                         else
2888                                 print (s1,"^7 is a ^1BERSERKER!\n");
2889                 } else if(type == KILL_SPREE_25) {
2890                         if(gentle)
2891                                 print (s1,"^7 made ^1TWENTY FIFE SCORES IN A ROW!\n");
2892                         else
2893                                 print (s1,"^7 inflicts ^1CARNAGE!\n");
2894                 } else if(type == KILL_SPREE_30) {
2895                         if(gentle)
2896                                 print (s1,"^7 made ^1THIRTY SCORES IN A ROW!\n");
2897                         else
2898                                 print (s1,"^7 unleashes ^1ARMAGEDDON!\n");
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 ("^1",s1, "^1 was in the water for too long\n");
2907                                 else
2908                                         print ("^1",s1, "^1 drowned\n");
2909                         }
2910                 } else if (type == DEATH_SLIME) {
2911                         HUD_KillNotify_Push(s1, "", 0, DEATH_SLIME);
2912                         if(alsoprint)
2913                                 print ("^1",s1, "^1 was slimed\n");
2914                 } else if (type == DEATH_LAVA) {
2915                         HUD_KillNotify_Push(s1, "", 0, DEATH_LAVA);
2916                         if(alsoprint)
2917                         {
2918                                 if(gentle)
2919                                         print ("^1",s1, "^1 found a hot place\n");
2920                                 else
2921                                         print ("^1",s1, "^1 turned into hot slag\n");
2922                         }
2923                 } else if (type == DEATH_FALL) {
2924                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2925                         if(alsoprint)
2926                         {
2927                                 if(gentle)
2928                                         print ("^1",s1, "^1 tested gravity (and it worked)\n");
2929                                 else
2930                                         print ("^1",s1, "^1 hit the ground with a crunch\n");
2931                         }
2932                 } else if (type == DEATH_SHOOTING_STAR) {
2933                         HUD_KillNotify_Push(s1, "", 0, DEATH_SHOOTING_STAR);
2934                         if(alsoprint)
2935                                 print ("^1",s1, "^1 became a shooting star\n");
2936                 } else if (type == DEATH_SWAMP) {
2937                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2938                         if(alsoprint)
2939                         {
2940                                 if(gentle)
2941                                         print ("^1",s1, "^1 discovered a swamp\n");
2942                                 else
2943                                         print ("^1",s1, "^1 is now conserved for centuries to come\n");
2944                         }
2945                 } else if(type == DEATH_TURRET) {
2946                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2947                         if(alsoprint)
2948                                 print ("^1",s1, "^1 was mowed down by a turret \n");
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 ("^1",s1, "^1 died in an accident\n");
2961                 } else if(type == DEATH_CHEAT) {
2962                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2963                         if(alsoprint)
2964                                 print ("^1",s1, "^1 was unfairly eliminated\n");
2965                 } else if(type == DEATH_FIRE) {
2966                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2967                         if(alsoprint)
2968                         {
2969                                 if(gentle)
2970                                         print ("^1",s1, "^1 felt a little hot\n");
2971                                 else
2972                                         print ("^1",s1, "^1 burnt to death\n");
2973                                 }
2974                 } else {
2975                         HUD_KillNotify_Push(s1, "", 0, DEATH_GENERIC);
2976                         if(alsoprint)
2977                         {
2978                                 if(gentle)
2979                                         print ("^1",s1, "^1 needs a restart\n");
2980                                 else
2981                                         print ("^1",s1, "^1 died\n");
2982                         }
2983                 }
2984         } else if(msg == MSG_KILL_ACTION_SPREE) {
2985                 if(gentle)
2986                         print ("^1",s1,"^1 needs a restart after a ",s2," scoring spree\n");
2987                 else
2988                         print ("^1",s1,"^1 died with a ",s2," kill spree\n");
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(s1, "^7 got the ", s2, "\n");
2993                 } else if(type == INFO_LOSTFLAG) {
2994                         HUD_KillNotify_Push(s1, s2, 0, INFO_LOSTFLAG);
2995                         print(s1, "^7 lost the ", s2, "\n");
2996                 } else if(type == INFO_PICKUPFLAG) {
2997                         HUD_KillNotify_Push(s1, s2, 0, INFO_GOTFLAG);
2998                         print(s1, "^7 picked up the ", s2, "\n");
2999                 } else if(type == INFO_RETURNFLAG) {
3000                         HUD_KillNotify_Push(s1, s2, 0, INFO_RETURNFLAG);
3001                         print(s1, "^7 returned the ", s2, "\n");
3002                 } else if(type == INFO_CAPTUREFLAG) {
3003                         HUD_KillNotify_Push(s1, s2, 0, INFO_CAPTUREFLAG);
3004                         print(s1, "^7 captured the ", s2, s3, "\n");
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 (s1, "^7 has picked up the ball!\n");
3024                 }
3025                 else if(type == KA_DROPBALL) {
3026                         HUD_KillNotify_Push(s1, s2, 0, KA_DROPBALL);
3027                         if(alsoprint)
3028                                 print(s1, "^7 has dropped the ball!\n");
3029                 }
3030         }
3031 }
3032
3033 #define DAMAGE_CENTERPRINT_SPACER NEWLINES
3034
3035 void HUD_Centerprint(string s1, string s2, float type, float msg)
3036 {
3037         float gentle;
3038         gentle = (autocvar_cl_gentle || autocvar_cl_gentle_messages);
3039         if(msg == MSG_SUICIDE) {
3040                 if (type == DEATH_TEAMCHANGE) {
3041                         centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "You are now on: ", s1));
3042                 } else if (type == DEATH_AUTOTEAMCHANGE) {
3043                         centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "You have been moved into a different team to improve team balance\nYou are now on: ", s1));
3044                 } else if (type == DEATH_CAMP) {
3045                         if(gentle)
3046                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Reconsider your tactics, camper!"));
3047                         else
3048                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Die camper!"));
3049                 } else if (type == DEATH_NOAMMO) {
3050                         if(gentle)
3051                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You are reinserted into the game for running out of ammo..."));
3052                         else
3053                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You were killed for running out of ammo..."));
3054                 } else if (type == DEATH_ROT) {
3055                         if(gentle)
3056                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You need to preserve your health"));
3057                         else
3058                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You grew too old without taking your medicine"));
3059                 } else if (type == KILL_TEAM_RED || type == KILL_TEAM_BLUE) {
3060                         if(gentle)
3061                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Don't go against team mates!"));
3062                         else
3063                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Don't shoot your team mates!"));
3064                 } else if (type == DEATH_QUIET) {
3065                         // do nothing
3066                 } else { // generic message
3067                         if(gentle)
3068                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You need to be more careful!"));
3069                         else
3070                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You killed your own dumb self!"));
3071                 }
3072         } else if(msg == MSG_KILL) {
3073                 if (type == KILL_TEAM_RED || type == KILL_TEAM_BLUE) {
3074                         if(gentle) {
3075                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Moron! You went against", s1, ",a team mate!"));
3076                         } else {
3077                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Moron! You fragged ", s1, ", a team mate!"));
3078                         }
3079                 } else if (type == KILL_FIRST_BLOOD) {
3080                         if(gentle) {
3081                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1First score"));
3082                         } else {
3083                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1First blood"));
3084                         }
3085                 } else if (type == KILL_FIRST_VICTIM) {
3086                         if(gentle) {
3087                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1First casualty"));
3088                         } else {
3089                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1First victim"));
3090                         }
3091                 } else if (type == KILL_TYPEFRAG) { // s2 contains "advanced kill messages" such as ping, handicap...
3092                         if(gentle) {
3093                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You scored against ^7", s1, "^1 who was typing!", s2));
3094                         } else {
3095                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You typefragged ^7", s1, s2));
3096                         }
3097                 } else if (type == KILL_TYPEFRAGGED) {
3098                         if(gentle) {
3099                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You were scored against by ^7", s1, "^1 while you were typing!", s2));
3100                         } else {
3101                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You were typefragged by ^7", s1, s2));
3102                         }
3103                 } else if (type == KILL_FRAG) {
3104                         if(gentle) {
3105                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^4You scored against ^7", s1, s2));
3106                         } else {
3107                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^4You fragged ^7", s1, s2));
3108                         }
3109                 } else { // generic message
3110                         if(gentle) {
3111                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You were scored against by ^7", s1, s2));
3112                         } else {
3113                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You were fragged by ^7", s1, s2));
3114                         }
3115                 }
3116         } else if(msg == MSG_KILL_ACTION) {
3117                 // TODO: invent more centerprints here?
3118                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Watch your step!"));
3119         }
3120 }
3121
3122 void HUD_Notify (void)
3123 {
3124         if(!autocvar_hud_panel_notify && !autocvar__hud_configure)
3125                 return;
3126
3127         active_panel = HUD_PANEL_NOTIFY;
3128         HUD_Panel_UpdateCvars(notify);
3129         vector pos, mySize;
3130         pos = panel_pos;
3131         mySize = panel_size;
3132
3133         HUD_Panel_DrawBg(1);
3134         if(panel_bg_padding)
3135         {
3136                 pos += '1 1 0' * panel_bg_padding;
3137                 mySize -= '2 2 0' * panel_bg_padding;
3138         }
3139
3140         float entries, height;
3141         entries = bound(1, floor(KN_MAX_ENTRIES * mySize_y/mySize_x), KN_MAX_ENTRIES);
3142         height = mySize_y/entries;
3143         
3144         vector fontsize;
3145         fontsize = '0.5 0.5 0' * height;
3146
3147         float a;
3148         float when;
3149         when = autocvar_hud_panel_notify_time;
3150         float fadetime;
3151         fadetime = autocvar_hud_panel_notify_fadetime;
3152
3153         string s;
3154
3155         vector pos_attacker, pos_victim;
3156         vector weap_pos;
3157         float width_attacker;
3158         string attacker, victim;
3159
3160         float i, j, w, step, limit;
3161         if(autocvar_hud_panel_notify_flip) //order items from the top down
3162         {
3163                 i = 0;
3164                 step = +1;
3165                 limit = entries;
3166         }
3167         else //order items from the bottom up
3168         {
3169                 i = entries - 1;
3170                 step = -1;
3171                 limit = -1;
3172         }
3173
3174         for(j = kn_index;  i != limit;  i += step, ++j)
3175         {
3176                 if(autocvar__hud_configure)
3177                 {
3178                         if (step == +1)
3179                                 a = i;
3180                         else // inverse order
3181                                 a = entries - 1 - i;
3182                         attacker = textShortenToWidth(strcat("Player", ftos(a+1)), 0.48 * mySize_x - height, fontsize, stringwidth_colors);
3183                         victim = textShortenToWidth(strcat("Player", ftos(a+2)), 0.48 * mySize_x - height, fontsize, stringwidth_colors);
3184                         s = strcat("weapon", get_weaponinfo(WEP_FIRST + mod(floor(a*2.4), WEP_LAST)).netname);
3185                         a = bound(0, (when - a) / 4, 1);
3186                         goto hud_config_notifyprint;
3187                 }
3188
3189                 if (j == KN_MAX_ENTRIES)
3190                         j = 0;
3191
3192                 if(killnotify_times[j] + when > time)
3193                         a = 1;
3194                 else if(fadetime)
3195                 {
3196                         a = bound(0, (killnotify_times[j] + when + fadetime - time) / fadetime, 1);
3197                         if(!a)
3198                         {
3199                                 break;
3200                         }
3201                 }
3202                 else
3203                 {
3204                         break;
3205                 }
3206
3207                 s = "";
3208
3209                 w = -1;
3210                 w = DEATH_WEAPONOF(killnotify_deathtype[j]);
3211
3212                 // TODO: maybe print in team colors?
3213                 //
3214                 // Y [used by] X
3215                 if(killnotify_actiontype[j] == 0) 
3216                 {
3217                         if(killnotify_deathtype[j] == DEATH_GENERIC)
3218                         {
3219                                 s = "notify_death";
3220                         }
3221                         else if(killnotify_deathtype[j] == DEATH_NOAMMO)
3222                         {
3223                                 s = "notify_outofammo";
3224                         }
3225                         else if(killnotify_deathtype[j] == DEATH_KILL)
3226                         {
3227                                 s = "notify_selfkill";
3228                         }
3229                         else if(killnotify_deathtype[j] == DEATH_CAMP)
3230                         {
3231                                 s = "notify_camping";
3232                         }
3233                         else if(killnotify_deathtype[j] == KILL_TEAM_RED)
3234                         {
3235                                 s = "notify_teamkill_red";
3236                         }
3237                         else if(killnotify_deathtype[j] == KILL_TEAM_BLUE)
3238                         {
3239                                 s = "notify_teamkill_blue";
3240                         }
3241                         else if(killnotify_deathtype[j] == DEATH_DROWN)
3242                         {
3243                                 s = "notify_water";
3244                         }
3245                         else if(killnotify_deathtype[j] == DEATH_SLIME)
3246                         {
3247                                 s = "notify_slime";
3248                         }
3249                         else if(killnotify_deathtype[j] == DEATH_LAVA)
3250                         {
3251                                 s = "notify_lava";
3252                         }
3253                         else if(killnotify_deathtype[j] == DEATH_FALL)
3254                         {
3255                                 s = "notify_fall";
3256                         }
3257                         else if(killnotify_deathtype[j] == DEATH_SHOOTING_STAR)
3258                         {
3259                                 s = "notify_shootingstar";
3260                         }
3261                         else if(killnotify_deathtype[j] == DEATH_HURTTRIGGER || killnotify_deathtype[j] == DEATH_CUSTOM)
3262                         {
3263                                 s = "notify_death";
3264                         }
3265                         else if(killnotify_deathtype[j] == INFO_GOTFLAG)
3266                         {
3267                                 if(killnotify_victims[j] == "^1RED^7 flag")
3268                                 {
3269                                         s = "notify_red_taken";
3270                                 }
3271                                 else
3272                                 {
3273                                         s = "notify_blue_taken";
3274                                 }
3275                         }
3276                         else if(killnotify_deathtype[j] == INFO_RETURNFLAG)
3277                         {
3278                                 if(killnotify_victims[j] == "^1RED^7 flag")
3279                                 {
3280                                         s = "notify_red_returned";
3281                                 }
3282                                 else
3283                                 {
3284                                         s = "notify_blue_returned";
3285                                 }
3286                         }
3287                         else if(killnotify_deathtype[j] == INFO_LOSTFLAG)
3288                         {
3289                                 if(killnotify_victims[j] == "^1RED^7 flag")
3290                                 {
3291                                         s = "notify_red_lost";
3292                                 }
3293                                 else
3294                                 {
3295                                         s = "notify_blue_lost";
3296                                 }
3297                         }
3298                         else if(killnotify_deathtype[j] == INFO_CAPTUREFLAG)
3299                         {
3300                                 if(killnotify_victims[j] == "^1RED^7 flag")
3301                                 {
3302                                         s = "notify_red_captured";
3303                                 }
3304                                 else
3305                                 {
3306                                         s = "notify_blue_captured";
3307                                 }
3308                         }
3309                         else if(killnotify_deathtype[j] == KA_DROPBALL)
3310                         {
3311                                 s = "notify_balldropped";
3312                         }
3313                         else if(killnotify_deathtype[j] == KA_PICKUPBALL)
3314                         {
3315                                 s = "notify_ballpickedup";
3316                         }
3317                         
3318                         attacker = textShortenToWidth(killnotify_attackers[j], 0.48 * mySize_x - height, fontsize, stringwidth_colors);
3319                         pos_attacker = pos + eX * (0.52 * mySize_x + height) + eY * (0.5 * fontsize_y + i * height);
3320                         weap_pos = pos + eX * 0.5 * mySize_x - eX * height + eY * i * height;
3321
3322                         if(s != "")
3323                         {
3324                                 drawpic_aspect_skin(weap_pos, s, '2 1 0' * height, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
3325                                 drawcolorcodedstring(pos_attacker, attacker, fontsize, panel_fg_alpha * a, DRAWFLAG_NORMAL);
3326                         }
3327                 }
3328                 // X [did action to] Y
3329                 else
3330                 {
3331                         if(killnotify_deathtype[j] & HITTYPE_SECONDARY && w == WEP_LASER)
3332                         {
3333                                 s = "notify_melee_laser";
3334                         }
3335                         else if(killnotify_deathtype[j] & HITTYPE_SECONDARY && w == WEP_SHOTGUN)
3336                         {
3337                                 s = "notify_melee_shotgun";
3338                         }
3339                         else if(WEP_VALID(w))
3340                         {
3341                                 self = get_weaponinfo(w);
3342                                 s = strcat("weapon", self.netname);
3343                         }
3344                         else if(killnotify_deathtype[j] == KILL_TEAM_RED)
3345                         {
3346                                 s = "notify_teamkill_red";
3347                         }
3348                         else if(killnotify_deathtype[j] == KILL_TEAM_BLUE)
3349                         {
3350                                 s = "notify_teamkill_red";
3351                         }
3352                         else if(killnotify_deathtype[j] == DEATH_TELEFRAG)
3353                         {
3354                                 s = "notify_telefrag";
3355                         }
3356                         else if(killnotify_deathtype[j] == DEATH_DROWN)
3357                         {
3358                                 s = "notify_water";
3359                         }
3360                         else if(killnotify_deathtype[j] == DEATH_SLIME)
3361                         {
3362                                 s = "notify_slime";
3363                         }
3364                         else if(killnotify_deathtype[j] == DEATH_LAVA)
3365                         {
3366                                 s = "notify_lava";
3367                         }
3368                         else if(killnotify_deathtype[j] == DEATH_FALL)
3369                         {
3370                                 s = "notify_fall";
3371                         }
3372                         else if(killnotify_deathtype[j] == DEATH_SHOOTING_STAR)
3373                         {
3374                                 s = "notify_shootingstar";
3375                         }
3376                         else if(killnotify_deathtype[j] == DEATH_HURTTRIGGER || killnotify_deathtype[j] == DEATH_CUSTOM) // DEATH_CUSTOM is also void, right?
3377                         {
3378                                 s = "notify_void";
3379                         }
3380                         else if(killnotify_deathtype[j] == DEATH_HEADSHOT)
3381                         {
3382                                 s = "notify_headshot";
3383                         }
3384                         else if(killnotify_deathtype[j] == RACE_SERVER_RECORD)
3385                         {
3386                                 s = "race_newrecordserver";
3387                         }
3388                         else if(killnotify_deathtype[j] == RACE_NEW_RANK)
3389                         {
3390                                 s = "race_newrankyellow";
3391                         }
3392                         else if(killnotify_deathtype[j] == RACE_NEW_TIME)
3393                         {
3394                                 s = "race_newtime";
3395                         }
3396                         else if(killnotify_deathtype[j] == RACE_FAIL)
3397                         {
3398                                 s = "race_newfail";
3399                         }
3400
3401                         attacker = textShortenToWidth(killnotify_attackers[j], 0.48 * mySize_x - height, fontsize, stringwidth_colors);
3402                         victim = textShortenToWidth(killnotify_victims[j], 0.48 * mySize_x - height, fontsize, stringwidth_colors);
3403 :hud_config_notifyprint
3404                         width_attacker = stringwidth(attacker, TRUE, fontsize);
3405                         pos_attacker = pos + eX * (0.48 * mySize_x - height - width_attacker) + eY * (0.5 * fontsize_y + i * height);
3406                         pos_victim = pos + eX * (0.52 * mySize_x + height) + eY * (0.5 * fontsize_y + i * height);
3407                         weap_pos = pos + eX * 0.5 * mySize_x - eX * height + eY * i * height;
3408
3409                         if(s != "")
3410                         {
3411                                 drawpic_aspect_skin(weap_pos, s, '2 1 0' * height, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
3412                                 drawcolorcodedstring(pos_attacker, attacker, fontsize, panel_fg_alpha * a, DRAWFLAG_NORMAL);
3413                                 drawcolorcodedstring(pos_victim, victim, fontsize, panel_fg_alpha * a, DRAWFLAG_NORMAL);
3414                         }
3415                 }
3416         }
3417 }
3418
3419 // Timer (#5)
3420 //
3421 // TODO: macro
3422 string seconds_tostring(float sec)
3423 {
3424         float minutes;
3425         minutes = floor(sec / 60);
3426
3427         sec -= minutes * 60;
3428
3429         string s;
3430         s = ftos(100 + sec);
3431
3432         return strcat(ftos(minutes), ":", substring(s, 1, 3));
3433 }
3434
3435 void HUD_Timer(void)
3436 {
3437         if(!autocvar_hud_panel_timer && !autocvar__hud_configure)
3438                 return;
3439
3440         active_panel = HUD_PANEL_TIMER;
3441         HUD_Panel_UpdateCvars(timer);
3442         vector pos, mySize;
3443         pos = panel_pos;
3444         mySize = panel_size;
3445
3446         HUD_Panel_DrawBg(1);
3447         if(panel_bg_padding)
3448         {
3449                 pos += '1 1 0' * panel_bg_padding;
3450                 mySize -= '2 2 0' * panel_bg_padding;
3451         }
3452
3453         string timer;
3454         float timelimit, elapsedTime, timeleft, minutesLeft;
3455
3456         timelimit = getstatf(STAT_TIMELIMIT);
3457
3458         timeleft = max(0, timelimit * 60 + getstatf(STAT_GAMESTARTTIME) - time);
3459         timeleft = ceil(timeleft);
3460
3461         minutesLeft = floor(timeleft / 60);
3462
3463         vector timer_color;
3464         if(minutesLeft >= 5 || warmup_stage || timelimit == 0) //don't use red or yellow in warmup or when there is no timelimit
3465                 timer_color = '1 1 1'; //white
3466         else if(minutesLeft >= 1)
3467                 timer_color = '1 1 0'; //yellow
3468         else
3469                 timer_color = '1 0 0'; //red
3470
3471         if (autocvar_hud_panel_timer_increment || timelimit == 0 || warmup_stage) {
3472                 if (time < getstatf(STAT_GAMESTARTTIME)) {
3473                         //while restart is still active, show 00:00
3474                         timer = seconds_tostring(0);
3475                 } else {
3476                         elapsedTime = floor(time - getstatf(STAT_GAMESTARTTIME)); //127
3477                         timer = seconds_tostring(elapsedTime);
3478                 }
3479         } else {
3480                 timer = seconds_tostring(timeleft);
3481         }
3482
3483         drawstring_aspect(pos, timer, mySize, timer_color, panel_fg_alpha, DRAWFLAG_NORMAL);
3484 }
3485
3486 // Radar (#6)
3487 //
3488 void HUD_Radar(void)
3489 {
3490         if ((autocvar_hud_panel_radar == 0 || (autocvar_hud_panel_radar != 2 && !teamplay)) && !autocvar__hud_configure)
3491                 return;
3492
3493         active_panel = HUD_PANEL_RADAR;
3494         HUD_Panel_UpdateCvars(radar);
3495         vector pos, mySize;
3496         pos = panel_pos;
3497         mySize = panel_size;
3498
3499         HUD_Panel_DrawBg(1);
3500         if(panel_bg_padding)
3501         {
3502                 pos += '1 1 0' * panel_bg_padding;
3503                 mySize -= '2 2 0' * panel_bg_padding;
3504         }
3505
3506         local float color1, color2; // color already declared as a global in hud.qc
3507         local vector rgb;
3508         local entity tm;
3509         float scale2d, normalsize, bigsize;
3510         float f;
3511
3512         teamradar_origin2d = pos + 0.5 * mySize;
3513         teamradar_size2d = mySize;
3514
3515         if(minimapname == "")
3516                 return;
3517
3518         teamradar_loadcvars();
3519
3520         switch(hud_panel_radar_zoommode)
3521         {
3522                 default:
3523                 case 0:
3524                         f = current_zoomfraction;
3525                         break;
3526                 case 1:
3527                         f = 1 - current_zoomfraction;
3528                         break;
3529                 case 2:
3530                         f = 0;
3531                         break;
3532                 case 3:
3533                         f = 1;
3534                         break;
3535         }
3536
3537         switch(hud_panel_radar_rotation)
3538         {
3539                 case 0:
3540                         teamradar_angle = view_angles_y - 90;
3541                         break;
3542                 default:
3543                         teamradar_angle = 90 * hud_panel_radar_rotation;
3544                         break;
3545         }
3546
3547         scale2d = vlen_maxnorm2d(mi_picmax - mi_picmin);
3548         teamradar_size2d = mySize;
3549
3550         teamradar_extraclip_mins = teamradar_extraclip_maxs = '0 0 0'; // we always center
3551
3552         // pixels per world qu to match the teamradar_size2d_x range in the longest dimension
3553         if(hud_panel_radar_rotation == 0)
3554         {
3555                 // max-min distance must fit the radar in any rotation
3556                 bigsize = vlen_minnorm2d(teamradar_size2d) * scale2d / (1.05 * vlen2d(mi_scale));
3557         }
3558         else
3559         {
3560                 vector c0, c1, c2, c3, span;
3561                 c0 = rotate(mi_min, teamradar_angle * DEG2RAD);
3562                 c1 = rotate(mi_max, teamradar_angle * DEG2RAD);
3563                 c2 = rotate('1 0 0' * mi_min_x + '0 1 0' * mi_max_y, teamradar_angle * DEG2RAD);
3564                 c3 = rotate('1 0 0' * mi_max_x + '0 1 0' * mi_min_y, teamradar_angle * DEG2RAD);
3565                 span = '0 0 0';
3566                 span_x = max4(c0_x, c1_x, c2_x, c3_x) - min4(c0_x, c1_x, c2_x, c3_x);
3567                 span_y = max4(c0_y, c1_y, c2_y, c3_y) - min4(c0_y, c1_y, c2_y, c3_y);
3568
3569                 // max-min distance must fit the radar in x=x, y=y
3570                 bigsize = min(
3571                         teamradar_size2d_x * scale2d / (1.05 * span_x),
3572                         teamradar_size2d_y * scale2d / (1.05 * span_y)
3573                 );
3574         }
3575
3576         normalsize = vlen_maxnorm2d(teamradar_size2d) * scale2d / hud_panel_radar_scale;
3577         if(bigsize > normalsize)
3578                 normalsize = bigsize;
3579
3580         teamradar_size =
3581                   f * bigsize
3582                 + (1 - f) * normalsize;
3583         teamradar_origin3d_in_texcoord = teamradar_3dcoord_to_texcoord(
3584                   f * mi_center
3585                 + (1 - f) * view_origin);
3586
3587         color1 = GetPlayerColor(player_localentnum-1);
3588         rgb = GetTeamRGB(color1);
3589
3590         drawsetcliparea(
3591                 pos_x,
3592                 pos_y,
3593                 mySize_x,
3594                 mySize_y
3595         );
3596
3597         draw_teamradar_background(hud_panel_radar_foreground_alpha);
3598
3599         for(tm = world; (tm = find(tm, classname, "radarlink")); )
3600                 draw_teamradar_link(tm.origin, tm.velocity, tm.team);
3601         for(tm = world; (tm = findflags(tm, teamradar_icon, 0xFFFFFF)); )
3602                 draw_teamradar_icon(tm.origin, tm.teamradar_icon, tm, tm.teamradar_color, panel_fg_alpha);
3603         for(tm = world; (tm = find(tm, classname, "entcs_receiver")); )
3604         {
3605                 color2 = GetPlayerColor(tm.sv_entnum);
3606                 //if(color == COLOR_SPECTATOR || color == color2)
3607                         draw_teamradar_player(tm.origin, tm.angles, GetTeamRGB(color2));
3608         }
3609         draw_teamradar_player(view_origin, view_angles, '1 1 1');
3610
3611         drawresetcliparea();
3612 };
3613
3614 // Score (#7)
3615 //
3616 void HUD_Score(void)
3617 {
3618         if(!autocvar_hud_panel_score && !autocvar__hud_configure)
3619                 return;
3620
3621         active_panel = HUD_PANEL_SCORE;
3622         HUD_Panel_UpdateCvars(score);
3623         vector pos, mySize;
3624         pos = panel_pos;
3625         mySize = panel_size;
3626
3627         HUD_Panel_DrawBg(1);
3628         if(panel_bg_padding)
3629         {
3630                 pos += '1 1 0' * panel_bg_padding;
3631                 mySize -= '2 2 0' * panel_bg_padding;
3632         }
3633
3634         float score, distribution, leader;
3635         string sign;
3636         vector distribution_color;
3637         entity tm, pl, me;
3638         me = (spectatee_status > 0) ? playerslots[spectatee_status - 1] : playerslots[player_localentnum - 1];
3639
3640         if((scores_flags[ps_primary] & SFL_TIME) && !teamplay) { // race/cts record display on HUD
3641                 string timer, distrtimer;
3642
3643                 pl = players.sort_next;
3644                 if(pl == me)
3645                         pl = pl.sort_next;
3646                 if(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)
3647                         if(pl.scores[ps_primary] == 0)
3648                                 pl = world;
3649
3650                 score = me.(scores[ps_primary]);
3651                 timer = TIME_ENCODED_TOSTRING(score);
3652
3653                 if (pl && ((!(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)) || score)) {
3654                         // distribution display
3655                         distribution = me.(scores[ps_primary]) - pl.(scores[ps_primary]);
3656
3657                         distrtimer = ftos_decimals(fabs(distribution/pow(10, TIME_DECIMALS)), TIME_DECIMALS);
3658
3659                         if (distribution <= 0) {
3660                                 distribution_color = '0 1 0';
3661                                 sign = "-";
3662                         }
3663                         else {
3664                                 distribution_color = '1 0 0';
3665                                 sign = "+";
3666                         }
3667                         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);
3668                 }
3669                 // race record display
3670                 if (distribution <= 0)
3671                         HUD_Panel_DrawHighlight(pos, eX * 0.75 * mySize_x + eY * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3672                 drawstring_aspect(pos, timer, eX * 0.75 * mySize_x + eY * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3673         } else if (!teamplay) { // non-teamgames
3674                 // me vector := [team/connected frags id]
3675                 pl = players.sort_next;
3676                 if(pl == me)
3677                         pl = pl.sort_next;
3678
3679                 if(autocvar__hud_configure)
3680                         distribution = 42;
3681                 else if(pl)
3682                         distribution = me.(scores[ps_primary]) - pl.(scores[ps_primary]);
3683                 else
3684                         distribution = 0;
3685
3686                 score = me.(scores[ps_primary]);
3687                 if(autocvar__hud_configure)
3688                         score = 123;
3689
3690                 if(distribution >= 5) {
3691                         distribution_color = eY;
3692                         leader = 1;
3693                 } else if(distribution >= 0) {
3694                         distribution_color = '1 1 1';
3695                         leader = 1;
3696                 } else if(distribution >= -5)
3697                         distribution_color = '1 1 0';
3698                 else
3699                         distribution_color = eX;
3700
3701                 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);
3702                 if (leader)
3703                         HUD_Panel_DrawHighlight(pos, eX * 0.75 * mySize_x + eY * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3704                 drawstring_aspect(pos, ftos(score), eX * 0.75 * mySize_x + eY * mySize_y, distribution_color, panel_fg_alpha, DRAWFLAG_NORMAL);
3705         } else { // teamgames
3706                 float max_fragcount;
3707                 max_fragcount = -99;
3708
3709                 float teamnum;
3710                 for(tm = teams.sort_next; tm; tm = tm.sort_next) {
3711                         if(tm.team == COLOR_SPECTATOR || (!tm.team_size && !autocvar__hud_configure)) // no players? don't display
3712                                 continue;
3713                         score = tm.(teamscores[ts_primary]);
3714                         if(autocvar__hud_configure)
3715                                 score = 123;
3716                         leader = 0;
3717                         
3718                         if (score > max_fragcount)
3719                                 max_fragcount = score;
3720
3721                         if(tm.team == myteam) {
3722                                 if (max_fragcount == score)
3723                                         leader = 1;
3724                                 if (leader)
3725                                         HUD_Panel_DrawHighlight(pos, eX * 0.75 * mySize_x + eY * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3726                                 drawstring_aspect(pos, ftos(score), eX * 0.75 * mySize_x + eY * mySize_y, GetTeamRGB(tm.team) * 0.8, panel_fg_alpha, DRAWFLAG_NORMAL);
3727                         } else {
3728                                 if (max_fragcount == score)
3729                                         leader = 1;
3730                                 if (leader)
3731                                         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);
3732                                 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);
3733                                 teamnum += 1;
3734                         }
3735                 }
3736         }
3737 }
3738
3739 // Race timer (#8)
3740 //
3741 void HUD_RaceTimer (void) {
3742         if(!autocvar_hud_panel_racetimer && !(gametype == GAME_RACE || gametype == GAME_CTS) && !autocvar__hud_configure)
3743                 return;
3744
3745         active_panel = HUD_PANEL_RACETIMER;
3746         HUD_Panel_UpdateCvars(racetimer);
3747         vector pos, mySize;
3748         pos = panel_pos;
3749         mySize = panel_size;
3750
3751         HUD_Panel_DrawBg(1);
3752         if(panel_bg_padding)
3753         {
3754                 pos += '1 1 0' * panel_bg_padding;
3755                 mySize -= '2 2 0' * panel_bg_padding;
3756         }
3757
3758         // always force 4:1 aspect
3759         vector newSize;
3760         if(mySize_x/mySize_y > 4)
3761         {
3762                 newSize_x = 4 * mySize_y;
3763                 newSize_y = mySize_y;
3764
3765                 pos_x = pos_x + (mySize_x - newSize_x) / 2;
3766         }
3767         else
3768         {
3769                 newSize_y = 1/4 * mySize_x;
3770                 newSize_x = mySize_x;
3771
3772                 pos_y = pos_y + (mySize_y - newSize_y) / 2;
3773         }
3774         mySize = newSize;
3775
3776         float a, t;
3777         string s, forcetime;
3778
3779         if(autocvar__hud_configure)
3780         {
3781                 s = "0:13:37";
3782                 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);
3783                 s = "^1Intermediate 1 (+15.42)";
3784                 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);
3785                 s = strcat("^1PENALTY: ", ftos_decimals(20 * 0.1, 1), " (missing a checkpoint)");
3786                 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);
3787         }
3788         else if(race_checkpointtime)
3789         {
3790                 a = bound(0, 2 - (time - race_checkpointtime), 1);
3791                 s = "";
3792                 forcetime = "";
3793                 if(a > 0) // just hit a checkpoint?
3794                 {
3795                         if(race_checkpoint != 254)
3796                         {
3797                                 if(race_time && race_previousbesttime)
3798                                         s = MakeRaceString(race_checkpoint, TIME_DECODE(race_time) - TIME_DECODE(race_previousbesttime), 0, 0, race_previousbestname);
3799                                 else
3800                                         s = MakeRaceString(race_checkpoint, 0, -1, 0, race_previousbestname);
3801                                 if(race_time)
3802                                         forcetime = TIME_ENCODED_TOSTRING(race_time);
3803                         }
3804                 }
3805                 else
3806                 {
3807                         if(race_laptime && race_nextbesttime && race_nextcheckpoint != 254)
3808                         {
3809                                 a = bound(0, 2 - ((race_laptime + TIME_DECODE(race_nextbesttime)) - (time + TIME_DECODE(race_penaltyaccumulator))), 1);
3810                                 if(a > 0) // next one?
3811                                 {
3812                                         s = MakeRaceString(race_nextcheckpoint, (time + TIME_DECODE(race_penaltyaccumulator)) - race_laptime, TIME_DECODE(race_nextbesttime), 0, race_nextbestname);
3813                                 }
3814                         }
3815                 }
3816
3817                 if(s != "" && a > 0)
3818                 {
3819                         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);
3820                 }
3821
3822                 if(race_penaltytime)
3823                 {
3824                         a = bound(0, 2 - (time - race_penaltyeventtime), 1);
3825                         if(a > 0)
3826                         {
3827                                 s = strcat("^1PENALTY: ", ftos_decimals(race_penaltytime * 0.1, 1), " (", race_penaltyreason, ")");
3828                                 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);
3829                         }
3830                 }
3831
3832                 if(forcetime != "")
3833                 {
3834                         a = bound(0, (time - race_checkpointtime) / 0.5, 1);
3835                         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);
3836                 }
3837                 else
3838                         a = 1;
3839
3840                 if(race_laptime && race_checkpoint != 255)
3841                 {
3842                         s = TIME_ENCODED_TOSTRING(TIME_ENCODE(time + TIME_DECODE(race_penaltyaccumulator) - race_laptime));
3843                         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);
3844                 }
3845         }
3846         else
3847         {
3848                 if(race_mycheckpointtime)
3849                 {
3850                         a = bound(0, 2 - (time - race_mycheckpointtime), 1);
3851                         s = MakeRaceString(race_mycheckpoint, TIME_DECODE(race_mycheckpointdelta), -!race_mycheckpointenemy, race_mycheckpointlapsdelta, race_mycheckpointenemy);
3852                         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);
3853                 }
3854                 if(race_othercheckpointtime && race_othercheckpointenemy != "")
3855                 {
3856                         a = bound(0, 2 - (time - race_othercheckpointtime), 1);
3857                         s = MakeRaceString(race_othercheckpoint, -TIME_DECODE(race_othercheckpointdelta), -!race_othercheckpointenemy, race_othercheckpointlapsdelta, race_othercheckpointenemy);
3858                         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);
3859                 }
3860
3861                 if(race_penaltytime && !race_penaltyaccumulator)
3862                 {
3863                         t = race_penaltytime * 0.1 + race_penaltyeventtime;
3864                         a = bound(0, (1 + t - time), 1);
3865                         if(a > 0)
3866                         {
3867                                 if(time < t)
3868                                         s = strcat("^1PENALTY: ", ftos_decimals(t - time, 1), " (", race_penaltyreason, ")");
3869                                 else
3870                                         s = strcat("^2PENALTY: 0.0 (", race_penaltyreason, ")");
3871                                 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);
3872                         }
3873                 }
3874         }
3875 }
3876
3877 // Vote window (#9)
3878 //
3879 float vote_yescount;
3880 float vote_nocount;
3881 float vote_needed;
3882 float vote_highlighted; // currently selected vote
3883
3884 float vote_active; // is there an active vote?
3885 float vote_prev; // previous state of vote_active to check for a change
3886 float vote_alpha;
3887 float vote_change; // "time" when vote_active changed
3888
3889 void HUD_VoteWindow(void) 
3890 {
3891     uid2name_dialog = 0;
3892         if(autocvar_cl_allow_uid2name == -1 && (gametype == GAME_CTS || gametype == GAME_RACE))
3893         {
3894                 vote_active = 1;
3895                 vote_called_vote = strzone(strcat("^2Name ^7instead of \"^1Unregistered player\"", " ^7in stats"));
3896         uid2name_dialog = 1;
3897         }
3898
3899         if(!autocvar_hud_panel_vote && !autocvar__hud_configure)
3900                 return;
3901
3902         if(!autocvar__hud_configure)
3903         {
3904                 panel_fg_alpha = autocvar_hud_panel_fg_alpha;
3905                 panel_bg_alpha_str = autocvar_hud_panel_vote_bg_alpha;
3906
3907                 if(panel_bg_alpha_str == "") {
3908                         panel_bg_alpha_str = ftos(autocvar_hud_panel_bg_alpha);
3909                 }
3910                 panel_bg_alpha = stof(panel_bg_alpha_str);
3911         }
3912
3913         string s;
3914         float a;
3915         if(vote_active != vote_prev) {
3916                 vote_change = time;
3917                 vote_prev = vote_active;
3918         }
3919
3920         if(vote_active || autocvar__hud_configure)
3921                 vote_alpha = bound(0, (time - vote_change) * 2, 1);
3922         else
3923                 vote_alpha = bound(0, 1 - (time - vote_change) * 2, 1);
3924
3925         if(autocvar__hud_configure)
3926         {
3927                 vote_yescount = 3;
3928                 vote_nocount = 2;
3929                 vote_needed = 4;
3930         }
3931
3932         if(!vote_alpha)
3933                 return;
3934
3935         active_panel = HUD_PANEL_VOTE;
3936         HUD_Panel_UpdateCvars(vote);
3937
3938         if(uid2name_dialog)
3939         {
3940                 panel_pos = eX * 0.3 * vid_conwidth + eY * 0.1 * vid_conheight;
3941                 panel_size = eX * 0.4 * vid_conwidth + eY * 0.3 * vid_conheight;
3942         }
3943
3944     // these must be below above block
3945         vector pos, mySize;
3946         pos = panel_pos;
3947         mySize = panel_size;
3948
3949         a = vote_alpha * bound(autocvar_hud_panel_vote_alreadyvoted_alpha, 1 - vote_highlighted, 1);
3950         HUD_Panel_DrawBg(a);
3951         a = panel_fg_alpha * a;
3952
3953         if(panel_bg_padding)
3954         {
3955                 pos += '1 1 0' * panel_bg_padding;
3956                 mySize -= '2 2 0' * panel_bg_padding;
3957         }
3958
3959         // always force 3:1 aspect
3960         vector newSize;
3961         if(mySize_x/mySize_y > 3)
3962         {
3963                 newSize_x = 3 * mySize_y;
3964                 newSize_y = mySize_y;
3965
3966                 pos_x = pos_x + (mySize_x - newSize_x) / 2;
3967         }
3968         else
3969         {
3970                 newSize_y = 1/3 * mySize_x;
3971                 newSize_x = mySize_x;
3972
3973                 pos_y = pos_y + (mySize_y - newSize_y) / 2;
3974         }
3975         mySize = newSize;
3976
3977         s = "A vote has been called for:";
3978         if(uid2name_dialog)
3979                 s = "Allow servers to store and display your name?";
3980         drawstring_aspect(pos, s, eX * mySize_x + eY * (2/8) * mySize_y, '1 1 1', a, DRAWFLAG_NORMAL);
3981         s = textShortenToWidth(vote_called_vote, mySize_x, '1 1 0' * mySize_y * (1/8), stringwidth_colors);
3982         if(autocvar__hud_configure)
3983                 s = "^1Configure the HUD";
3984         drawcolorcodedstring_aspect(pos + eY * (2/8) * mySize_y, s, eX * mySize_x + eY * (1.75/8) * mySize_y, a, DRAWFLAG_NORMAL);
3985
3986         // print the yes/no counts
3987     s = strcat("Yes (", getcommandkey("vyes", "vyes"), "): ", ftos(vote_yescount));
3988         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);
3989     s = strcat("No (", getcommandkey("vno", "vno"), "): ", ftos(vote_nocount));
3990         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);
3991
3992         // draw the progress bar backgrounds
3993         drawpic_skin(pos + eY * (5/8) * mySize_y, "voteprogress_back", eX * mySize_x + eY * (3/8) * mySize_y, '1 1 1', a, DRAWFLAG_NORMAL);
3994
3995         // draw the highlights
3996         if(vote_highlighted == 1) {
3997                 drawsetcliparea(pos_x, pos_y, mySize_x * 0.5, mySize_y);
3998                 drawpic_skin(pos + eY * (5/8) * mySize_y, "voteprogress_voted", eX * mySize_x + eY * (3/8) * mySize_y, '1 1 1', a, DRAWFLAG_NORMAL);
3999         }
4000         else if(vote_highlighted == 2) {
4001                 drawsetcliparea(pos_x + 0.5 * mySize_x, pos_y, mySize_x * 0.5, mySize_y);
4002                 drawpic_skin(pos + eY * (5/8) * mySize_y, "voteprogress_voted", eX * mySize_x + eY * (3/8) * mySize_y, '1 1 1', a, DRAWFLAG_NORMAL);
4003         }
4004
4005         // draw the progress bars
4006         if(vote_yescount && vote_needed)
4007         {
4008                 drawsetcliparea(pos_x, pos_y, mySize_x * 0.5 * (vote_yescount/vote_needed), mySize_y);
4009                 drawpic_skin(pos + eY * (5/8) * mySize_y, "voteprogress_prog", eX * mySize_x + eY * (3/8) * mySize_y, '1 1 1', a, DRAWFLAG_NORMAL);
4010         }
4011
4012         if(vote_nocount && vote_needed)
4013         {
4014                 drawsetcliparea(pos_x + mySize_x - mySize_x * 0.5 * (vote_nocount/vote_needed), pos_y, mySize_x * 0.5, mySize_y);
4015                 drawpic_skin(pos + eY * (5/8) * mySize_y, "voteprogress_prog", eX * mySize_x + eY * (3/8) * mySize_y, '1 1 1', a, DRAWFLAG_NORMAL);
4016         }
4017
4018         drawresetcliparea();
4019
4020         if(!vote_active) {
4021                 vote_highlighted = 0;
4022         }
4023 }
4024
4025 // Mod icons panel (#10)
4026 //
4027
4028 float mod_active; // is there any active mod icon?
4029
4030 // Clan Arena HUD modicons
4031 void HUD_Mod_CA(vector pos, vector mySize)
4032 {
4033         mod_active = 1; // CA should never hide the mod icons panel
4034         float redalive, bluealive;
4035         redalive = getstati(STAT_REDALIVE);
4036         bluealive = getstati(STAT_BLUEALIVE);
4037
4038         vector redpos, bluepos;
4039         if(mySize_x > mySize_y)
4040         {
4041                 redpos = pos;
4042                 bluepos = pos + eY * 0.5 * mySize_y;
4043                 drawpic_aspect_skin(redpos, "player_red.tga", 0.5 * mySize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4044                 drawstring_aspect(redpos + eX * 0.5 * mySize_x, ftos(redalive), 0.5 * mySize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4045                 drawpic_aspect_skin(bluepos, "player_blue.tga", 0.5 * mySize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4046                 drawstring_aspect(bluepos + eX * 0.5 * mySize_x, ftos(bluealive), 0.5 * mySize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4047         }
4048         else
4049         {
4050                 redpos = pos;
4051                 bluepos = pos + eY * 0.5 * mySize_y;
4052                 drawpic_aspect_skin(redpos, "player_red.tga", eX * mySize_x + eY * 0.3 * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4053                 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);
4054                 drawpic_aspect_skin(bluepos, "player_blue.tga", eX * mySize_x + eY * 0.3 * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4055                 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);
4056         }
4057 }
4058
4059 // CTF HUD modicon section
4060 float redflag_prevframe, blueflag_prevframe; // status during previous frame
4061 float redflag_prevstatus, blueflag_prevstatus; // last remembered status
4062 float redflag_statuschange_time, blueflag_statuschange_time; // time when the status changed
4063
4064 void HUD_Mod_CTF_Reset(void)
4065 {
4066         redflag_prevstatus = blueflag_prevstatus = redflag_prevframe = blueflag_prevframe = redflag_statuschange_time = blueflag_statuschange_time = 0;
4067 }
4068
4069 void HUD_Mod_CTF(vector pos, vector mySize)
4070 {
4071         vector redflag_pos, blueflag_pos;
4072         vector flag_size;
4073         float f; // every function should have that
4074
4075         float redflag, blueflag; // current status
4076         float redflag_statuschange_elapsedtime, blueflag_statuschange_elapsedtime; // time since the status changed
4077         float stat_items;
4078
4079         stat_items = getstati(STAT_ITEMS);
4080         redflag = (stat_items/IT_RED_FLAG_TAKEN) & 3;
4081         blueflag = (stat_items/IT_BLUE_FLAG_TAKEN) & 3;
4082         
4083         if(redflag || blueflag)
4084                 mod_active = 1;
4085         else
4086                 mod_active = 0;
4087
4088         if(autocvar__hud_configure)
4089         {
4090                 redflag = 1;
4091                 blueflag = 2;
4092         }
4093
4094         // when status CHANGES, set old status into prevstatus and current status into status
4095         if (redflag != redflag_prevframe)
4096         {
4097                 redflag_statuschange_time = time;
4098                 redflag_prevstatus = redflag_prevframe;
4099                 redflag_prevframe = redflag;
4100         }
4101
4102         if (blueflag != blueflag_prevframe)
4103         {
4104                 blueflag_statuschange_time = time;
4105                 blueflag_prevstatus = blueflag_prevframe;
4106                 blueflag_prevframe = blueflag;
4107         }
4108
4109         redflag_statuschange_elapsedtime = time - redflag_statuschange_time;
4110         blueflag_statuschange_elapsedtime = time - blueflag_statuschange_time;
4111
4112         float BLINK_FACTOR = 0.15;
4113         float BLINK_BASE = 0.85;
4114         // note:
4115         //   RMS = sqrt(BLINK_BASE^2 + 0.5 * BLINK_FACTOR^2)
4116         // thus
4117         //   BLINK_BASE = sqrt(RMS^2 - 0.5 * BLINK_FACTOR^2)
4118         // ensure RMS == 1
4119         float BLINK_FREQ = 5; // circle frequency, = 2*pi*frequency in hertz
4120
4121         string red_icon, red_icon_prevstatus;
4122         float red_alpha, red_alpha_prevstatus;
4123         red_alpha = red_alpha_prevstatus = 1;
4124         switch(redflag) {
4125                 case 1: red_icon = "flag_red_taken"; break;
4126                 case 2: red_icon = "flag_red_lost"; break;
4127                 case 3: red_icon = "flag_red_carrying"; red_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
4128                 default:
4129                         if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM2))
4130                                 red_icon = "flag_red_shielded";
4131                         else
4132                                 red_icon = string_null;
4133                         break;
4134         }
4135         switch(redflag_prevstatus) {
4136                 case 1: red_icon_prevstatus = "flag_red_taken"; break;
4137                 case 2: red_icon_prevstatus = "flag_red_lost"; break;
4138                 case 3: red_icon_prevstatus = "flag_red_carrying"; red_alpha_prevstatus = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
4139                 default:
4140                         if(redflag == 3)
4141                                 red_icon_prevstatus = "flag_red_carrying"; // make it more visible
4142                         else if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM2))
4143                                 red_icon_prevstatus = "flag_red_shielded";
4144                         else
4145                                 red_icon_prevstatus = string_null;
4146                         break;
4147         }
4148
4149         string blue_icon, blue_icon_prevstatus;
4150         float blue_alpha, blue_alpha_prevstatus;
4151         blue_alpha = blue_alpha_prevstatus = 1;
4152         switch(blueflag) {
4153                 case 1: blue_icon = "flag_blue_taken"; break;
4154                 case 2: blue_icon = "flag_blue_lost"; break;
4155                 case 3: blue_icon = "flag_blue_carrying"; blue_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
4156                 default:
4157                         if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM1))
4158                                 blue_icon = "flag_blue_shielded";
4159                         else
4160                                 blue_icon = string_null;
4161                         break;
4162         }
4163         switch(blueflag_prevstatus) {
4164                 case 1: blue_icon_prevstatus = "flag_blue_taken"; break;
4165                 case 2: blue_icon_prevstatus = "flag_blue_lost"; break;
4166                 case 3: blue_icon_prevstatus = "flag_blue_carrying"; blue_alpha_prevstatus = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
4167                 default:
4168                         if(blueflag == 3)
4169                                 blue_icon_prevstatus = "flag_blue_carrying"; // make it more visible
4170                         else if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM1))
4171                                 blue_icon_prevstatus = "flag_blue_shielded";
4172                         else
4173                                 blue_icon_prevstatus = string_null;
4174                         break;
4175         }
4176
4177         if(mySize_x > mySize_y) {
4178                 if (myteam == COLOR_TEAM1) { // always draw own flag on left
4179                         redflag_pos = pos;
4180                         blueflag_pos = pos + eX * 0.5 * mySize_x;
4181                 } else {
4182                         blueflag_pos = pos;
4183                         redflag_pos = pos + eX * 0.5 * mySize_x;
4184                 }
4185                 flag_size = eX * 0.5 * mySize_x + eY * mySize_y;
4186         } else {
4187                 if (myteam == COLOR_TEAM1) { // always draw own flag on left
4188                         redflag_pos = pos;
4189                         blueflag_pos = pos + eY * 0.5 * mySize_y;
4190                 } else {
4191                         blueflag_pos = pos;
4192                         redflag_pos = pos + eY * 0.5 * mySize_y;
4193                 }
4194                 flag_size = eY * 0.5 * mySize_y + eX * mySize_x;
4195         }
4196
4197         f = bound(0, redflag_statuschange_elapsedtime*2, 1);
4198         if(red_icon_prevstatus && f < 1)
4199                 drawpic_aspect_skin_expanding(redflag_pos, red_icon_prevstatus, flag_size, '1 1 1', panel_fg_alpha * red_alpha_prevstatus, DRAWFLAG_NORMAL, f);
4200         if(red_icon)
4201                 drawpic_aspect_skin(redflag_pos, red_icon, flag_size, '1 1 1', panel_fg_alpha * red_alpha * f, DRAWFLAG_NORMAL);
4202
4203         f = bound(0, blueflag_statuschange_elapsedtime*2, 1);
4204         if(blue_icon_prevstatus && f < 1)
4205                 drawpic_aspect_skin_expanding(blueflag_pos, blue_icon_prevstatus, flag_size, '1 1 1', panel_fg_alpha * blue_alpha_prevstatus, DRAWFLAG_NORMAL, f);
4206         if(blue_icon)
4207                 drawpic_aspect_skin(blueflag_pos, blue_icon, flag_size, '1 1 1', panel_fg_alpha * blue_alpha * f, DRAWFLAG_NORMAL);
4208 }
4209
4210 // Keyhunt HUD modicon section
4211 float kh_runheretime;
4212
4213 void HUD_Mod_KH_Reset(void)
4214 {
4215         kh_runheretime = 0;
4216 }
4217
4218 void HUD_Mod_KH(vector pos, vector mySize)
4219 {
4220         mod_active = 1; // keyhunt should never hide the mod icons panel
4221         float kh_keys;
4222         float keyteam;
4223         float a, aa;
4224         vector p, pa, kh_size, kh_asize;
4225
4226         kh_keys = getstati(STAT_KH_KEYS);
4227
4228         p_x = pos_x;
4229         if(mySize_x > mySize_y)
4230         {
4231                 p_y = pos_y + 0.25 * mySize_y;
4232                 pa = p - eY * 0.25 * mySize_y;
4233
4234                 kh_size_x = mySize_x * 0.25;
4235                 kh_size_y = 0.75 * mySize_y;
4236                 kh_asize_x = mySize_x * 0.25;
4237                 kh_asize_y = mySize_y * 0.25;
4238         }
4239         else
4240         {
4241                 p_y = pos_y + 0.125 * mySize_y;
4242                 pa = p - eY * 0.125 * mySize_y;
4243
4244                 kh_size_x = mySize_x * 0.5;
4245                 kh_size_y = 0.375 * mySize_y;
4246                 kh_asize_x = mySize_x * 0.5;
4247                 kh_asize_y = mySize_y * 0.125;
4248         }
4249
4250         float i, key;
4251
4252         float keycount;
4253         keycount = 0;
4254         for(i = 0; i < 4; ++i)
4255         {
4256                 key = floor(kh_keys / pow(32, i)) & 31;
4257                 keyteam = key - 1;
4258                 if(keyteam == 30 && keycount <= 4)
4259                         keycount += 4;
4260                 if(keyteam == myteam || keyteam == -1 || keyteam == 30)
4261                         keycount += 1;
4262         }
4263
4264         // this yields 8 exactly if "RUN HERE" shows
4265
4266         if(keycount == 8)
4267         {
4268                 if(!kh_runheretime)
4269                         kh_runheretime = time;
4270                 pa_y -= fabs(sin((time - kh_runheretime) * 3.5)) * 6; // make the arrows jump in case of RUN HERE
4271         }
4272         else
4273                 kh_runheretime = 0;
4274
4275         for(i = 0; i < 4; ++i)
4276         {
4277                 key = floor(kh_keys / pow(32, i)) & 31;
4278                 keyteam = key - 1;
4279                 switch(keyteam)
4280                 {
4281                         case 30: // my key
4282                                 keyteam = myteam;
4283                                 a = 1;
4284                                 aa = 1;
4285                                 break;
4286                         case -1: // no key
4287                                 a = 0;
4288                                 aa = 0;
4289                                 break;
4290                         default: // owned or dropped
4291                                 a = 0.2;
4292                                 aa = 0.5;
4293                                 break;
4294                 }
4295                 a = a * panel_fg_alpha;
4296                 aa = aa * panel_fg_alpha;
4297                 if(a > 0)
4298                 {
4299                         switch(keyteam)
4300                         {
4301                                 case COLOR_TEAM1:
4302                                         drawpic_aspect_skin(pa, "kh_redarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
4303                                         break;
4304                                 case COLOR_TEAM2:
4305                                         drawpic_aspect_skin(pa, "kh_bluearrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
4306                                         break;
4307                                 case COLOR_TEAM3:
4308                                         drawpic_aspect_skin(pa, "kh_yellowarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
4309                                         break;
4310                                 case COLOR_TEAM4:
4311                                         drawpic_aspect_skin(pa, "kh_pinkarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
4312                                         break;
4313                                 default:
4314                                         break;
4315                         }
4316                         switch(i) // YAY! switch(i) inside a for loop for i. DailyWTF, here we come!
4317                         {
4318                                 case 0:
4319                                         drawpic_aspect_skin(p, "kh_red", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
4320                                         break;
4321                                 case 1:
4322                                         drawpic_aspect_skin(p, "kh_blue", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
4323                                         break;
4324                                 case 2:
4325                                         drawpic_aspect_skin(p, "kh_yellow", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
4326                                         break;
4327                                 case 3:
4328                                         drawpic_aspect_skin(p, "kh_pink", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
4329                                         break;
4330                         }
4331                 }
4332                 if(mySize_x > mySize_y)
4333                 {
4334                         p_x += 0.25 * mySize_x;
4335                         pa_x += 0.25 * mySize_x;
4336                 }
4337                 else
4338                 {
4339                         if(i == 1)
4340                         {
4341                                 p_y = pos_y + 0.625 * mySize_y;
4342                                 pa_y = pos_y + 0.5 * mySize_y;
4343                                 p_x = pos_x;
4344                                 pa_x = pos_x;
4345                         }
4346                         else
4347                         {
4348                                 p_x += 0.5 * mySize_x;
4349                                 pa_x += 0.5 * mySize_x;
4350                         }
4351                 }
4352         }
4353 }
4354
4355 // Keepaway HUD mod icon
4356 float kaball_prevstatus; // last remembered status
4357 float kaball_statuschange_time; // time when the status changed
4358
4359 // we don't need to reset for keepaway since it immediately 
4360 // autocorrects prevstatus as to if the player has the ball or not
4361
4362 void HUD_Mod_Keepaway(vector pos, vector mySize)
4363 {
4364         mod_active = 1; // keepaway should always show the mod HUD
4365         
4366         float BLINK_FACTOR = 0.15;
4367         float BLINK_BASE = 0.85;
4368         float BLINK_FREQ = 5; 
4369         float kaball_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ);
4370         
4371         float stat_items = getstati(STAT_ITEMS);
4372         float kaball = (stat_items/IT_KEY1) & 1;
4373         
4374         if(kaball != kaball_prevstatus)
4375         {
4376                 kaball_statuschange_time = time;
4377                 kaball_prevstatus = kaball;
4378         }
4379         
4380         vector kaball_pos, kaball_size;
4381         
4382         if(mySize_x > mySize_y) {
4383                 kaball_pos = pos + eX * 0.25 * mySize_x;
4384                 kaball_size = eX * 0.5 * mySize_x + eY * mySize_y;
4385         } else {
4386                 kaball_pos = pos + eY * 0.25 * mySize_y;
4387                 kaball_size = eY * 0.5 * mySize_y + eX * mySize_x;
4388         }
4389         
4390         float kaball_statuschange_elapsedtime = time - kaball_statuschange_time;
4391         float f = bound(0, kaball_statuschange_elapsedtime*2, 1);
4392         
4393         if(kaball_prevstatus && f < 1)
4394                 drawpic_aspect_skin_expanding(kaball_pos, "keepawayball_carrying", kaball_size, '1 1 1', panel_fg_alpha * kaball_alpha, DRAWFLAG_NORMAL, f);
4395         
4396         if(kaball)
4397                 drawpic_aspect_skin(pos, "keepawayball_carrying", eX * mySize_x + eY * mySize_y, '1 1 1', panel_fg_alpha * kaball_alpha * f, DRAWFLAG_NORMAL);
4398 }
4399
4400
4401 // Nexball HUD mod icon
4402 void HUD_Mod_NexBall(vector pos, vector mySize)
4403 {
4404         float stat_items, nb_pb_starttime, dt, p;
4405
4406         stat_items = getstati(STAT_ITEMS);
4407         nb_pb_starttime = getstatf(STAT_NB_METERSTART);
4408
4409         if (stat_items & IT_KEY1)
4410                 mod_active = 1;
4411         else
4412                 mod_active = 0;
4413
4414         //Manage the progress bar if any
4415         if (nb_pb_starttime > 0)
4416         {
4417                 dt = mod(time - nb_pb_starttime, nb_pb_period);
4418                 // one period of positive triangle
4419                 p = 2 * dt / nb_pb_period;
4420                 if (p > 1)
4421                         p = 2 - p;
4422
4423                 //Draw the filling
4424                 float vertical;
4425                 if(mySize_x > mySize_y)
4426                 {
4427                         vertical = 0;
4428                 }
4429                 else
4430                 {
4431                         vertical = 1;
4432                 }
4433                 HUD_Panel_GetProgressBarColor(nexball);
4434         HUD_Panel_DrawProgressBar(pos, mySize, "statusbar", vertical, 0, p, progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
4435         }
4436
4437         if (stat_items & IT_KEY1)
4438                 drawpic_aspect_skin(pos, "nexball_carrying", eX * mySize_x + eY * mySize_y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4439 }
4440
4441 // Race/CTS HUD mod icons
4442 float crecordtime_prev; // last remembered crecordtime
4443 float crecordtime_change_time; // time when crecordtime last changed
4444 float srecordtime_prev; // last remembered srecordtime
4445 float srecordtime_change_time; // time when srecordtime last changed
4446
4447 float race_status_time;
4448 float race_status_prev;
4449 string race_status_name_prev;
4450 void HUD_Mod_Race(vector pos, vector mySize)
4451 {
4452         mod_active = 1; // race should never hide the mod icons panel
4453         entity me;
4454         me = playerslots[player_localentnum - 1];
4455         float t, score;
4456         float f; // yet another function has this
4457         score = me.(scores[ps_primary]);
4458
4459         if not((scores_flags[ps_primary] & SFL_TIME) && !teamplay) // race/cts record display on HUD
4460                 return; // no records in the actual race
4461
4462         // clientside personal record
4463         string rr;
4464         if(gametype == GAME_CTS)
4465                 rr = CTS_RECORD;
4466         else
4467                 rr = RACE_RECORD;
4468         t = stof(db_get(ClientProgsDB, strcat(shortmapname, rr, "time")));
4469
4470         if(score && (score < t || !t)) {
4471                 db_put(ClientProgsDB, strcat(shortmapname, rr, "time"), ftos(score));
4472                 if(autocvar_cl_autodemo_delete_keeprecords)
4473                 {
4474                         f = autocvar_cl_autodemo_delete;
4475                         f &~= 1;
4476                         cvar_set("cl_autodemo_delete", ftos(f)); // don't delete demo with new record!
4477                 }
4478         }
4479
4480         if(t != crecordtime_prev) {
4481                 crecordtime_prev = t;
4482                 crecordtime_change_time = time;
4483         }
4484
4485         vector textPos, medalPos;
4486         float squareSize;
4487         if(mySize_x > mySize_y) {
4488                 // text on left side
4489                 squareSize = min(mySize_y, mySize_x/2);
4490                 textPos = pos + eX * 0.5 * max(0, mySize_x/2 - squareSize) + eY * 0.5 * (mySize_y - squareSize);
4491                 medalPos = pos + eX * 0.5 * max(0, mySize_x/2 - squareSize) + eX * 0.5 * mySize_x + eY * 0.5 * (mySize_y - squareSize);
4492         } else {
4493                 // text on top
4494                 squareSize = min(mySize_x, mySize_y/2);
4495                 textPos = pos + eY * 0.5 * max(0, mySize_y/2 - squareSize) + eX * 0.5 * (mySize_x - squareSize);
4496                 medalPos = pos + eY * 0.5 * max(0, mySize_y/2 - squareSize) + eY * 0.5 * mySize_y + eX * 0.5 * (mySize_x - squareSize);
4497         }
4498
4499         f = time - crecordtime_change_time;
4500
4501         if (f > 1) {
4502                 drawstring_aspect(textPos, "Personal best", eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4503                 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);
4504         } else {
4505                 drawstring_aspect(textPos, "Personal best", eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4506                 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);
4507                 drawstring_aspect_expanding(pos, "Personal best", eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL, f);
4508                 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);
4509         }
4510
4511         // server record
4512         t = race_server_record;
4513         if(t != srecordtime_prev) {
4514                 srecordtime_prev = t;
4515                 srecordtime_change_time = time;
4516         }
4517         f = time - srecordtime_change_time;
4518
4519         if (f > 1) {
4520                 drawstring_aspect(textPos + eY * 0.5 * squareSize, "Server best", eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4521                 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);
4522         } else {
4523                 drawstring_aspect(textPos + eY * 0.5 * squareSize, "Server best", eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4524                 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);
4525                 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);
4526                 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);
4527         }
4528
4529         if (race_status != race_status_prev || race_status_name != race_status_name_prev) {
4530                 race_status_time = time + 5;
4531                 race_status_prev = race_status;
4532                 if (race_status_name_prev)
4533                         strunzone(race_status_name_prev);
4534                 race_status_name_prev = strzone(race_status_name);
4535         }
4536
4537         // race "awards"
4538         float a;
4539         a = bound(0, race_status_time - time, 1);
4540
4541         string s;
4542         s = textShortenToWidth(race_status_name, squareSize, '1 1 0' * 0.1 * squareSize, stringwidth_colors);
4543
4544         float rank;
4545         if(race_status > 0)
4546                 rank = race_CheckName(race_status_name);
4547         string rankname;
4548         rankname = race_PlaceName(rank);
4549
4550         vector namepos;
4551         namepos = medalPos + '0 0.8 0' * squareSize;
4552         vector rankpos;
4553         rankpos = medalPos + '0 0.15 0' * squareSize;
4554
4555         if(race_status == 0)
4556                 drawpic_aspect_skin(medalPos, "race_newfail", '1 1 0' * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
4557         else if(race_status == 1) {
4558                 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);
4559                 drawcolorcodedstring_aspect(namepos, s, '1 0.2 0' * squareSize, panel_fg_alpha * a, DRAWFLAG_NORMAL);
4560                 drawstring_aspect(rankpos, rankname, '1 0.15 0' * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
4561         } else if(race_status == 2) {
4562                 if(race_status_name == GetPlayerName(player_localentnum -1) || !race_myrank || race_myrank < rank)
4563                         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);
4564                 else
4565                         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);
4566                 drawcolorcodedstring_aspect(namepos, s, '1 0.2 0' * squareSize, panel_fg_alpha * a, DRAWFLAG_NORMAL);
4567                 drawstring_aspect(rankpos, rankname, '1 0.15 0' * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
4568         } else if(race_status == 3) {
4569                 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);
4570                 drawcolorcodedstring_aspect(namepos, s, '1 0.2 0' * squareSize, panel_fg_alpha * a, DRAWFLAG_NORMAL);
4571                 drawstring_aspect(rankpos, rankname, '1 0.15 0' * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
4572         }
4573
4574         if (race_status_time - time <= 0) {
4575                 race_status_prev = -1;
4576                 race_status = -1;
4577                 if(race_status_name)
4578                         strunzone(race_status_name);
4579                 race_status_name = string_null;
4580                 if(race_status_name_prev)
4581                         strunzone(race_status_name_prev);
4582                 race_status_name_prev = string_null;
4583         }
4584 }
4585
4586 float mod_prev; // previous state of mod_active to check for a change
4587 float mod_alpha;
4588 float mod_change; // "time" when mod_active changed
4589
4590 void HUD_ModIcons(void)
4591 {
4592         if(!autocvar_hud_panel_modicons && !autocvar__hud_configure)
4593                 return;
4594
4595         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)
4596                 return;
4597
4598         active_panel = HUD_PANEL_MODICONS;
4599         HUD_Panel_UpdateCvars(modicons);
4600         vector pos, mySize;
4601         pos = panel_pos;
4602         mySize = panel_size;
4603
4604         if(mod_active != mod_prev) {
4605                 mod_change = time;
4606                 mod_prev = mod_active;
4607         }
4608
4609         if(mod_active || autocvar__hud_configure)
4610                 mod_alpha = bound(0, (time - mod_change) * 2, 1);
4611         else
4612                 mod_alpha = bound(0, 1 - (time - mod_change) * 2, 1);
4613
4614         if(mod_alpha)
4615                 HUD_Panel_DrawBg(mod_alpha);
4616
4617         if(panel_bg_padding)
4618         {
4619                 pos += '1 1 0' * panel_bg_padding;
4620                 mySize -= '2 2 0' * panel_bg_padding;
4621         }
4622
4623         // these MUST be ran in order to update mod_active
4624         if(gametype == GAME_KEYHUNT)
4625                 HUD_Mod_KH(pos, mySize);
4626         else if(gametype == GAME_CTF || autocvar__hud_configure)
4627                 HUD_Mod_CTF(pos, mySize); // forcealpha only needed for ctf icons, as only they are shown in config mode
4628         else if(gametype == GAME_NEXBALL)
4629                 HUD_Mod_NexBall(pos, mySize);
4630         else if(gametype == GAME_CTS || gametype == GAME_RACE)
4631                 HUD_Mod_Race(pos, mySize);
4632         else if(gametype == GAME_CA || gametype == GAME_FREEZETAG)
4633                 HUD_Mod_CA(pos, mySize);
4634         else if(gametype == GAME_KEEPAWAY)
4635                 HUD_Mod_Keepaway(pos, mySize);
4636 }
4637
4638 // Draw pressed keys (#11)
4639 //
4640 void HUD_DrawPressedKeys(void)
4641 {
4642         if(!autocvar_hud_panel_pressedkeys && !autocvar__hud_configure)
4643                 return;
4644
4645         if(!(spectatee_status > 0 || autocvar_hud_panel_pressedkeys >= 2 || autocvar__hud_configure))
4646                 return;
4647
4648         active_panel = HUD_PANEL_PRESSEDKEYS;
4649         HUD_Panel_UpdateCvars(pressedkeys);
4650         vector pos, mySize;
4651         pos = panel_pos;
4652         mySize = panel_size;
4653
4654         HUD_Panel_DrawBg(1);
4655         if(panel_bg_padding)
4656         {
4657                 pos += '1 1 0' * panel_bg_padding;
4658                 mySize -= '2 2 0' * panel_bg_padding;
4659         }
4660
4661         // force custom aspect
4662         float aspect = autocvar_hud_panel_pressedkeys_aspect;
4663         if(aspect)
4664         {
4665                 vector newSize;
4666                 if(mySize_x/mySize_y > aspect)
4667                 {
4668                         newSize_x = aspect * mySize_y;
4669                         newSize_y = mySize_y;
4670
4671                         pos_x = pos_x + (mySize_x - newSize_x) / 2;
4672                 }
4673                 else
4674                 {
4675                         newSize_y = 1/aspect * mySize_x;
4676                         newSize_x = mySize_x;
4677
4678                         pos_y = pos_y + (mySize_y - newSize_y) / 2;
4679                 }
4680                 mySize = newSize;
4681         }
4682
4683         vector keysize;
4684         keysize = eX * mySize_x * (1/3) + eY * mySize_y * 0.5;
4685         float pressedkeys;
4686
4687         pressedkeys = getstatf(STAT_PRESSED_KEYS);
4688         drawpic_aspect_skin(pos, ((pressedkeys & KEY_CROUCH) ? "key_crouch_inv.tga" : "key_crouch.tga"), keysize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4689         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);
4690         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);
4691         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);
4692         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);
4693         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);
4694 }
4695
4696 // Handle chat as a panel (#12)
4697 //
4698 void HUD_Chat(void)
4699 {
4700         if(!autocvar_hud_panel_chat && !autocvar__hud_configure)
4701         {
4702                 cvar_set("con_chatrect", "0");
4703                 return;
4704         }
4705
4706         active_panel = HUD_PANEL_CHAT;
4707         HUD_Panel_UpdateCvars(chat);
4708
4709         if(autocvar__con_chat_maximized && !autocvar__hud_configure) // draw at full screen height if maximized
4710         {
4711                 panel_pos_y = panel_bg_border;
4712                 panel_size_y = vid_conheight - panel_bg_border * 2;
4713                 if(panel_bg == "0") // force a border when maximized
4714                 {
4715                         if(precache_pic(panel_bg) == "") {
4716                                 panel_bg = strcat(hud_skin_path, "/border_default");
4717                                 if(precache_pic(panel_bg) == "") {
4718                                         panel_bg = "gfx/hud/default/border_default";
4719                                 }
4720                         }
4721                 }
4722                 panel_bg_alpha = max(0.75, panel_bg_alpha); // force an alpha of at least 0.75
4723         }
4724
4725         vector pos, mySize;
4726         pos = panel_pos;
4727         mySize = panel_size;
4728
4729         HUD_Panel_DrawBg(1);
4730
4731         if(panel_bg_padding)
4732         {
4733                 pos += '1 1 0' * panel_bg_padding;
4734                 mySize -= '2 2 0' * panel_bg_padding;
4735         }
4736
4737         cvar_set("con_chatrect", "1");
4738
4739         cvar_set("con_chatrect_x", ftos(pos_x/vid_conwidth));
4740         cvar_set("con_chatrect_y", ftos(pos_y/vid_conheight));
4741
4742         cvar_set("con_chatwidth", ftos(mySize_x/vid_conwidth));
4743         cvar_set("con_chat", ftos(floor(mySize_y/autocvar_con_chatsize - 0.5)));
4744
4745         if(autocvar__hud_configure)
4746         {
4747                 float chatsize;
4748                 chatsize = autocvar_con_chatsize;
4749                 cvar_set("con_chatrect_x", "9001"); // over 9000, we'll fake it instead for more control over alpha and such
4750                 float i, a;
4751                 for(i = 0; i < autocvar_con_chat; ++i)
4752                 {
4753                         if(i == autocvar_con_chat - 1)
4754                                 a = panel_fg_alpha;
4755                         else
4756                                 a = panel_fg_alpha * floor(((i + 1) * 7 + autocvar_con_chattime)/45);
4757                         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);
4758                 }
4759         }
4760 }
4761
4762 // Engine info panel (#13)
4763 //
4764 float prevfps;
4765 float prevfps_time;
4766 float framecounter;
4767
4768 float frametimeavg;
4769 float frametimeavg1; // 1 frame ago
4770 float frametimeavg2; // 2 frames ago
4771 void HUD_EngineInfo(void)
4772 {
4773         if(!autocvar_hud_panel_engineinfo && !autocvar__hud_configure)
4774                 return;
4775
4776         active_panel = HUD_PANEL_ENGINEINFO;
4777         HUD_Panel_UpdateCvars(engineinfo);
4778         vector pos, mySize;
4779         pos = panel_pos;
4780         mySize = panel_size;
4781
4782         HUD_Panel_DrawBg(1);
4783         if(panel_bg_padding)
4784         {
4785                 pos += '1 1 0' * panel_bg_padding;
4786                 mySize -= '2 2 0' * panel_bg_padding;
4787         }
4788
4789         float currentTime = gettime(GETTIME_REALTIME);
4790         if(cvar("hud_panel_engineinfo_framecounter_exponentialmovingaverage"))
4791         {
4792                 float currentframetime = currentTime - prevfps_time;
4793                 frametimeavg = (frametimeavg + frametimeavg1 + frametimeavg2 + currentframetime)/4; // average three frametimes into framecounter for slightly more stable fps readings :P
4794                 frametimeavg2 = frametimeavg1;
4795                 frametimeavg1 = frametimeavg;
4796                 
4797                 float weight;
4798                 weight = cvar("hud_panel_engineinfo_framecounter_exponentialmovingaverage_new_weight");
4799                 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.
4800                 {
4801                         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
4802                                 prevfps = (1/currentframetime);
4803                         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"
4804                 }
4805                 prevfps_time = currentTime;
4806         }
4807         else
4808         {
4809                 framecounter += 1;
4810                 if(currentTime - prevfps_time > autocvar_hud_panel_engineinfo_framecounter_time)
4811                 {
4812                         prevfps = framecounter/(currentTime - prevfps_time);
4813                         framecounter = 0;
4814                         prevfps_time = currentTime;
4815                 }
4816         }
4817
4818         vector color;
4819         color = HUD_Get_Num_Color (prevfps, 100);
4820         drawstring_aspect(pos, strcat("FPS: ", ftos_decimals(prevfps, autocvar_hud_panel_engineinfo_framecounter_decimals)), mySize, color, panel_fg_alpha, DRAWFLAG_NORMAL);
4821 }
4822
4823 // Info messages panel (#14)
4824 //
4825 #define drawInfoMessage(s)\
4826         if(autocvar_hud_panel_infomessages_flip)\
4827                 o_x = pos_x + mySize_x - stringwidth(s, TRUE, fontsize);\
4828         drawcolorcodedstring(o, s, fontsize, a, DRAWFLAG_NORMAL);\
4829         o_y += fontsize_y;
4830 void HUD_InfoMessages(void)
4831 {
4832         if(!autocvar_hud_panel_infomessages && !autocvar__hud_configure)
4833                 return;
4834
4835         active_panel = HUD_PANEL_INFOMESSAGES;
4836         HUD_Panel_UpdateCvars(infomessages);
4837         vector pos, mySize;
4838         pos = panel_pos;
4839         mySize = panel_size;
4840
4841         HUD_Panel_DrawBg(1);
4842         if(panel_bg_padding)
4843         {
4844                 pos += '1 1 0' * panel_bg_padding;
4845                 mySize -= '2 2 0' * panel_bg_padding;
4846         }
4847
4848         // always force 5:1 aspect
4849         vector newSize;
4850         if(mySize_x/mySize_y > 5)
4851         {
4852                 newSize_x = 5 * mySize_y;
4853                 newSize_y = mySize_y;
4854
4855                 pos_x = pos_x + (mySize_x - newSize_x) / 2;
4856         }
4857         else
4858         {
4859                 newSize_y = 1/5 * mySize_x;
4860                 newSize_x = mySize_x;
4861
4862                 pos_y = pos_y + (mySize_y - newSize_y) / 2;
4863         }
4864
4865         mySize = newSize;
4866         entity tm;
4867         vector o;
4868         o = pos;
4869
4870         vector fontsize;
4871         fontsize = '0.20 0.20 0' * mySize_y;
4872         
4873         float a;
4874         if(spectatee_status != 0)
4875                 a = 1;
4876         else
4877                 a = panel_fg_alpha;
4878
4879         string s;
4880         if(!autocvar__hud_configure)
4881         {
4882                 if(spectatee_status && !intermission)
4883                 {
4884                         if(spectatee_status == -1)
4885                                 s = "^1Observing";
4886                         else
4887                                 s = strcat("^1Spectating: ^7", GetPlayerName(spectatee_status - 1));
4888                         drawInfoMessage(s)
4889
4890                         if(spectatee_status == -1)
4891                                 s = strcat("^1Press ^3", getcommandkey("primary fire", "+fire"), "^1 to spectate");
4892                         else
4893                                 s = strcat("^1Press ^3", getcommandkey("primary fire", "+fire"), "^1 for another player");
4894                         drawInfoMessage(s)
4895
4896                         if(spectatee_status == -1)
4897                                 s = strcat("^1Use ^3", getcommandkey("next weapon", "weapnext"), "^1 or ^3", getcommandkey("previous weapon", "weapprev"), "^1 to change the speed");
4898                         else
4899                                 s = strcat("^1Press ^3", getcommandkey("secondary fire", "+fire2"), "^1 to observe");
4900                         drawInfoMessage(s)
4901
4902                         s = strcat("^1Press ^3", getcommandkey("server info", "+show_info"), "^1 for gamemode info");
4903                         drawInfoMessage(s)
4904
4905                         if(gametype == GAME_ARENA)
4906                                 s = "^1Wait for your turn to join";
4907                         else if(gametype == GAME_LMS)
4908                         {
4909                                 entity sk;
4910                                 sk = playerslots[player_localentnum - 1];
4911                                 if(sk.(scores[ps_primary]) >= 666)
4912                                         s = "^1Match has already begun";
4913                                 else if(sk.(scores[ps_primary]) > 0)
4914                                         s = "^1You have no more lives left";
4915                                 else
4916                                         s = strcat("^1Press ^3", getcommandkey("jump", "+jump"), "^1 to join");
4917                         }
4918                         else
4919                                 s = strcat("^1Press ^3", getcommandkey("jump", "+jump"), "^1 to join");
4920                         drawInfoMessage(s)
4921
4922                         //show restart countdown:
4923                         if (time < getstatf(STAT_GAMESTARTTIME)) {
4924                                 float countdown;
4925                                 //we need to ceil, otherwise the countdown would be off by .5 when using round()
4926                                 countdown = ceil(getstatf(STAT_GAMESTARTTIME) - time);
4927                                 s = strcat("^1Game starts in ^3", ftos(countdown), "^1 seconds");
4928                                 drawcolorcodedstring(o, s, fontsize, a, DRAWFLAG_NORMAL);
4929                                 o_y += fontsize_y;
4930                         }
4931                 }
4932                 if(warmup_stage && !intermission)
4933                 {
4934                         s = "^2Currently in ^1warmup^2 stage!";
4935                         drawInfoMessage(s)
4936                 }
4937
4938                 string blinkcolor;
4939                 if(mod(time, 1) >= 0.5)
4940                         blinkcolor = "^1";
4941                 else
4942                         blinkcolor = "^3";
4943
4944                 if(ready_waiting && !intermission && !spectatee_status)
4945                 {
4946                         if(ready_waiting_for_me)
4947                         {
4948                                 if(warmup_stage)
4949                                         s = strcat(blinkcolor, "Press ^3", getcommandkey("ready", "ready"), blinkcolor, " to end warmup");
4950                                 else
4951                                         s = strcat(blinkcolor, "Press ^3", getcommandkey("ready", "ready"), blinkcolor, " once you are ready");
4952                         }
4953                         else
4954                         {
4955                                 if(warmup_stage)
4956                                         s = strcat("^2Waiting for others to ready up to end warmup...");
4957                                 else
4958                                         s = strcat("^2Waiting for others to ready up...");
4959                         }
4960                         drawInfoMessage(s)
4961                 }
4962                 else if(warmup_stage && !intermission && !spectatee_status)
4963                 {
4964                         s = strcat("^2Press ^3", getcommandkey("ready", "ready"), "^2 to end warmup");
4965                         drawInfoMessage(s)
4966                 }
4967
4968                 if(teamplay && !intermission && !spectatee_status && gametype != GAME_CA && teamnagger)
4969                 {
4970                         float ts_min, ts_max;
4971                         tm = teams.sort_next;
4972                         if (tm)
4973                         {
4974                                 for(; tm.sort_next; tm = tm.sort_next)
4975                                 {
4976                                         if(!tm.team_size || tm.team == COLOR_SPECTATOR)
4977                                                 continue;
4978                                         if(!ts_min) ts_min = tm.team_size;
4979                                         else ts_min = min(ts_min, tm.team_size);
4980                                         if(!ts_max) ts_max = tm.team_size;
4981                                         else ts_max = max(ts_max, tm.team_size);
4982                                 }
4983                                 if ((ts_max - ts_min) > 1)
4984                                 {
4985                                         s = strcat(blinkcolor, "Teamnumbers are unbalanced!");
4986                                         tm = GetTeam(myteam, false);
4987                                         if (tm)
4988                                         if (tm.team != COLOR_SPECTATOR)
4989                                         if (tm.team_size == ts_max)
4990                                                 s = strcat(s, " Press ^3", getcommandkey("team menu", "menu_showteamselect"), blinkcolor, " to adjust");
4991                                         drawInfoMessage(s)
4992                                 }
4993                         }
4994                 }
4995         }
4996         else 
4997         {
4998                 s = "^7Press ^3ESC ^7to show HUD options.";
4999                 drawInfoMessage(s)
5000                 s = "^3Doubleclick ^7a panel for panel-specific options.";
5001                 drawInfoMessage(s)
5002                 s = "^3CTRL ^7to disable collision testing, ^3SHIFT ^7and";
5003                 drawInfoMessage(s)
5004                 s = "^3ALT ^7+ ^3ARROW KEYS ^7for fine adjustments.";
5005                 drawInfoMessage(s)
5006         }
5007 }
5008
5009 /*
5010 ==================
5011 Main HUD system
5012 ==================
5013 */
5014
5015 void HUD_ShowSpeed(void)
5016 {
5017         vector numsize;
5018         float pos, conversion_factor;
5019         string speed, zspeed, unit;
5020
5021         switch(autocvar_cl_showspeed_unit)
5022         {
5023                 default:
5024                 case 0:
5025                         unit = "";
5026                         conversion_factor = 1.0;
5027                         break;
5028                 case 1:
5029                         unit = " qu/s";
5030                         conversion_factor = 1.0;
5031                         break;
5032                 case 2:
5033                         unit = " m/s";
5034                         conversion_factor = 0.0254;
5035                         break;
5036                 case 3:
5037                         unit = " km/h";
5038                         conversion_factor = 0.0254 * 3.6;
5039                         break;
5040                 case 4:
5041                         unit = " mph";
5042                         conversion_factor = 0.0254 * 3.6 * 0.6213711922;
5043                         break;
5044                 case 5:
5045                         unit = " knots";
5046                         conversion_factor = 0.0254 * 1.943844492; // 1 m/s = 1.943844492 knots, because 1 knot = 1.852 km/h
5047                         break;
5048         }
5049
5050         speed = strcat(ftos(floor( vlen(pmove_vel - pmove_vel_z * '0 0 1') * conversion_factor + 0.5 )), unit);
5051
5052         numsize_x = numsize_y = autocvar_cl_showspeed_size;
5053         pos = (vid_conheight - numsize_y) * autocvar_cl_showspeed_position;
5054
5055         drawstringcenter(eX + pos * eY, speed, numsize, '1 1 1', autocvar_hud_panel_fg_alpha * hud_fade_alpha, DRAWFLAG_NORMAL);
5056
5057         if (autocvar_cl_showspeed_z == 1) {
5058                 zspeed = strcat(ftos(fabs(floor( pmove_vel_z * conversion_factor + 0.5 ))), unit);
5059                 drawstringcenter(eX + pos * eY + numsize_y * eY, zspeed, numsize * 0.5, '1 1 1', autocvar_hud_panel_fg_alpha * hud_fade_alpha, DRAWFLAG_NORMAL);
5060         }
5061 }
5062
5063 vector acc_prevspeed;
5064 float acc_prevtime;
5065 float acc_avg;
5066
5067 void HUD_ShowAcceleration(void)
5068 {
5069         float acceleration, sz, scale, alpha, f;
5070         vector pos, top, rgb;
5071         top_x = vid_conwidth/2;
5072         top_y = 0;
5073
5074         f = time - acc_prevtime;
5075         if(autocvar_cl_showacceleration_z)
5076                 acceleration = (vlen(pmove_vel) - vlen(acc_prevspeed)) * (1 / f);
5077         else
5078                 acceleration = (vlen(pmove_vel - '0 0 1' * pmove_vel_z) - vlen(acc_prevspeed - '0 0 1' * acc_prevspeed_z)) * (1 / f);
5079         acc_prevspeed = pmove_vel;
5080         acc_prevtime = time;
5081
5082         f = bound(0, f * 10, 1);
5083         acc_avg = acc_avg * (1 - f) + acceleration * f;
5084         acceleration = acc_avg / getstatf(STAT_MOVEVARS_MAXSPEED);
5085         if (acceleration == 0)
5086                 return;
5087
5088         pos = top - sz/2 * eY + (autocvar_cl_showacceleration_position * vid_conheight) * eY;
5089
5090         sz = autocvar_cl_showacceleration_size;
5091         scale = autocvar_cl_showacceleration_scale;
5092         alpha = autocvar_cl_showacceleration_alpha;
5093         if (autocvar_cl_showacceleration_color_custom)
5094                 rgb = stov(autocvar_cl_showacceleration_color);
5095         else {
5096                 if (acceleration < 0)
5097                         rgb = '1 .5 .5' - '0 .5 .5' * bound(0, -acceleration * 0.2, 1);
5098                 else
5099                         rgb = '.5 1 .5' - '.5 0 .5' * bound(0, +acceleration * 0.2, 1);
5100         }
5101
5102         if (acceleration > 0)
5103         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);
5104         else
5105         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);
5106 }
5107
5108 void HUD_Reset (void)
5109 {
5110         // reset gametype specific icons
5111         if(gametype == GAME_KEYHUNT)
5112                 HUD_Mod_KH_Reset();
5113         else if(gametype == GAME_CTF)
5114                 HUD_Mod_CTF_Reset();
5115 }
5116
5117 #define HUD_DrawPanel(id)\
5118 switch (id) {\
5119         case (HUD_PANEL_RADAR):\
5120                 HUD_Radar(); break;\
5121         case (HUD_PANEL_WEAPONS):\
5122                 HUD_Weapons(); break;\
5123         case (HUD_PANEL_AMMO):\
5124                 HUD_Ammo(); break;\
5125         case (HUD_PANEL_POWERUPS):\
5126                 HUD_Powerups(); break;\
5127         case (HUD_PANEL_HEALTHARMOR):\
5128                 HUD_HealthArmor(); break;\
5129         case (HUD_PANEL_NOTIFY):\
5130                 HUD_Notify(); break;\
5131         case (HUD_PANEL_TIMER):\
5132                 HUD_Timer(); break;\
5133         case (HUD_PANEL_SCORE):\
5134                 HUD_Score(); break;\
5135         case (HUD_PANEL_RACETIMER):\
5136                 HUD_RaceTimer(); break;\
5137         case (HUD_PANEL_VOTE):\
5138                 HUD_VoteWindow(); break;\
5139         case (HUD_PANEL_MODICONS):\
5140                 HUD_ModIcons(); break;\
5141         case (HUD_PANEL_PRESSEDKEYS):\
5142                 HUD_DrawPressedKeys(); break;\
5143         case (HUD_PANEL_CHAT):\
5144                 HUD_Chat(); break;\
5145         case (HUD_PANEL_ENGINEINFO):\
5146                 HUD_EngineInfo(); break;\
5147         case (HUD_PANEL_INFOMESSAGES):\
5148                  HUD_InfoMessages(); break;\
5149 } ENDS_WITH_CURLY_BRACE
5150
5151 void HUD_Main (void)
5152 {
5153         float i;
5154         // global hud alpha fade
5155         if(menu_enabled == 1)
5156                 hud_fade_alpha = 1;
5157         else
5158                 hud_fade_alpha = (1 - autocvar__menu_alpha);
5159
5160         if(scoreboard_fade_alpha)
5161                 hud_fade_alpha = (1 - scoreboard_fade_alpha);
5162
5163         if(intermission == 2) // no hud during mapvote
5164                 hud_fade_alpha = 0;
5165         else if(autocvar__menu_alpha == 0 && scoreboard_fade_alpha == 0)
5166                 hud_fade_alpha = 1;
5167
5168         hud_fontsize = HUD_GetFontsize("hud_fontsize");
5169
5170         if(!autocvar__hud_configure && !hud_fade_alpha)
5171                 return;
5172
5173         // Drawing stuff
5174         if (hud_skin_path != autocvar_hud_skin)
5175         {
5176                 if (hud_skin_path)
5177                         strunzone(hud_skin_path);
5178                 hud_skin_path = strzone(strcat("gfx/hud/", autocvar_hud_skin));
5179         }
5180
5181         // HUD configure visible grid
5182         if(autocvar__hud_configure && autocvar_hud_configure_grid && autocvar_hud_configure_grid_alpha)
5183         {
5184                 // x-axis
5185                 for(i = 0; i < 1/bound(0.005, autocvar_hud_configure_grid_xsize, 0.2); ++i)
5186                 {
5187                         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);
5188                 }
5189                 // y-axis
5190                 for(i = 0; i < 1/bound(0.005, autocvar_hud_configure_grid_ysize, 0.2); ++i)
5191                 {
5192                         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);
5193                 }
5194         }
5195
5196     current_player = (spectatee_status > 0) ? spectatee_status : player_localentnum;
5197
5198         // draw the dock
5199         if(autocvar_hud_dock != "" && autocvar_hud_dock != "0")
5200         {
5201                 float f;
5202                 vector color;
5203                 float hud_dock_color_team = autocvar_hud_dock_color_team;
5204                 if((teamplay) && hud_dock_color_team) {
5205                         f = stof(getplayerkey(current_player - 1, "colors"));
5206                         color = colormapPaletteColor(mod(f, 16), 1) * hud_dock_color_team;
5207                 }
5208                 else if(autocvar_hud_configure_teamcolorforced && autocvar__hud_configure && hud_dock_color_team) {
5209                         color = '1 0 0' * hud_dock_color_team;
5210                 }
5211                 else
5212                 {
5213                         string hud_dock_color = autocvar_hud_dock_color;
5214                         if(hud_dock_color == "shirt") {
5215                                 f = stof(getplayerkey(current_player - 1, "colors"));
5216                                 color = colormapPaletteColor(floor(f / 16), 0);
5217                         }
5218                         else if(hud_dock_color == "pants") {
5219                                 f = stof(getplayerkey(current_player - 1, "colors"));
5220                                 color = colormapPaletteColor(mod(f, 16), 1);
5221                         }
5222                         else
5223                                 color = stov(hud_dock_color);
5224                 }
5225
5226                 string pic;
5227                 pic = strcat(hud_skin_path, "/", autocvar_hud_dock);
5228                 if(precache_pic(pic) == "") {
5229                         pic = strcat(hud_skin_path, "/dock_medium");
5230                         if(precache_pic(pic) == "") {
5231                                 pic = "gfx/hud/default/dock_medium";
5232                         }
5233                 }
5234                 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...
5235         }
5236
5237         // cache the panel order into the panel_order array
5238         if(autocvar__hud_panelorder != hud_panelorder_prev) {
5239                 if(hud_panelorder_prev)
5240                         strunzone(hud_panelorder_prev);
5241                 hud_panelorder_prev = strzone(autocvar__hud_panelorder);
5242                 tokenize_console(autocvar__hud_panelorder);
5243                 for(i = 0; i < HUD_PANEL_NUM; ++i) {
5244                         panel_order[i] = stof(argv(i));
5245                 }
5246         }
5247         // draw panels in order specified by panel_order array
5248         for(i = HUD_PANEL_NUM - 1; i >= 0; --i) {
5249                 if(i != HUD_PANEL_CHAT || !autocvar__con_chat_maximized) // don't draw maximized chat panel twice!
5250                         HUD_DrawPanel(panel_order[i]);
5251         }
5252
5253         // draw chat panel on top if it is maximized
5254         if(autocvar__con_chat_maximized)
5255                 HUD_Chat(); // HUD_DrawPanel(HUD_PANEL_CHAT);
5256
5257         // TODO hud_'ify these
5258         if (autocvar_cl_showspeed)
5259                 HUD_ShowSpeed();
5260         if (autocvar_cl_showacceleration)
5261                 HUD_ShowAcceleration();
5262
5263         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)
5264                 localcmd("cmd selectteam auto; cmd join\n");
5265
5266         hud_configure_prev = autocvar__hud_configure;
5267
5268         if (!autocvar__hud_configure) // hud config mode disabled, enable normal alpha stuff again
5269                 if (menu_enabled)
5270                         menu_enabled = 0;
5271 }