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