]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/hud.qc
fix bug mentioned in previous commit, now the only case where i see resizing fail...
[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         vector dX, dY;
18         vector width, height;
19         vector bW, bH;
20         //pic = draw_UseSkinFor(pic);
21         width = eX * theSize_x;
22         height = eY * theSize_y;
23         if(theSize_x <= theBorderSize_x * 2)
24         {
25                 // not wide enough... draw just left and right then
26                 bW = eX * (0.25 * theSize_x / (theBorderSize_x * 2));
27                 if(theSize_y <= theBorderSize_y * 2)
28                 {
29                         // not high enough... draw just corners
30                         bH = eY * (0.25 * theSize_y / (theBorderSize_y * 2));
31                         drawsubpic(theOrigin,                 width * 0.5 + height * 0.5, pic, '0 0 0',           bW + bH, theColor, theAlpha, 0);
32                         drawsubpic(theOrigin + width   * 0.5, width * 0.5 + height * 0.5, pic, eX - bW,           bW + bH, theColor, theAlpha, 0);
33                         drawsubpic(theOrigin + height  * 0.5, width * 0.5 + height * 0.5, pic, eY - bH,           bW + bH, theColor, theAlpha, 0);
34                         drawsubpic(theOrigin + theSize * 0.5, width * 0.5 + height * 0.5, pic, eX + eY - bW - bH, bW + bH, theColor, theAlpha, 0);
35                 }
36                 else
37                 {
38                         dY = theBorderSize_x * eY;
39                         drawsubpic(theOrigin,                             width * 0.5          +     dY, pic, '0 0    0',           '0 0.25 0' + bW, theColor, theAlpha, 0);
40                         drawsubpic(theOrigin + width * 0.5,               width * 0.5          +     dY, pic, '0 0    0' + eX - bW, '0 0.25 0' + bW, theColor, theAlpha, 0);
41                         drawsubpic(theOrigin                        + dY, width * 0.5 + height - 2 * dY, pic, '0 0.25 0',           '0 0.5  0' + bW, theColor, theAlpha, 0);
42                         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);
43                         drawsubpic(theOrigin               + height - dY, width * 0.5          +     dY, pic, '0 0.75 0',           '0 0.25 0' + bW, theColor, theAlpha, 0);
44                         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);
45                 }
46         }
47         else
48         {
49                 if(theSize_y <= theBorderSize_y * 2)
50                 {
51                         // not high enough... draw just top and bottom then
52                         bH = eY * (0.25 * theSize_y / (theBorderSize_y * 2));
53                         dX = theBorderSize_x * eX;
54                         drawsubpic(theOrigin,                                         dX + height * 0.5, pic, '0    0 0',           '0.25 0 0' + bH, theColor, theAlpha, 0);
55                         drawsubpic(theOrigin + dX,                        width - 2 * dX + height * 0.5, pic, '0.25 0 0',           '0.5  0 0' + bH, theColor, theAlpha, 0);
56                         drawsubpic(theOrigin + width - dX,                            dX + height * 0.5, pic, '0.75 0 0',           '0.25 0 0' + bH, theColor, theAlpha, 0);
57                         drawsubpic(theOrigin              + height * 0.5,             dX + height * 0.5, pic, '0    0 0' + eY - bH, '0.25 0 0' + bH, theColor, theAlpha, 0);
58                         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);
59                         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);
60                 }
61                 else
62                 {
63                         dX = theBorderSize_x * eX;
64                         dY = theBorderSize_x * eY;
65                         drawsubpic(theOrigin,                                        dX          +     dY, pic, '0    0    0', '0.25 0.25 0', theColor, theAlpha, 0);
66                         drawsubpic(theOrigin                  + dX,      width - 2 * dX          +     dY, pic, '0.25 0    0', '0.5  0.25 0', theColor, theAlpha, 0);
67                         drawsubpic(theOrigin          + width - dX,                  dX          +     dY, pic, '0.75 0    0', '0.25 0.25 0', theColor, theAlpha, 0);
68                         drawsubpic(theOrigin          + dY,                          dX + height - 2 * dY, pic, '0    0.25 0', '0.25 0.5  0', theColor, theAlpha, 0);
69                         drawsubpic(theOrigin          + dY         + dX, width - 2 * dX + height - 2 * dY, pic, '0.25 0.25 0', '0.5  0.5  0', theColor, theAlpha, 0);
70                         drawsubpic(theOrigin          + dY + width - dX,             dX + height - 2 * dY, pic, '0.75 0.25 0', '0.25 0.5  0', theColor, theAlpha, 0);
71                         drawsubpic(theOrigin + height - dY,                          dX          +     dY, pic, '0    0.75 0', '0.25 0.25 0', theColor, theAlpha, 0);
72                         drawsubpic(theOrigin + height - dY         + dX, width - 2 * dX          +     dY, pic, '0.25 0.75 0', '0.5  0.25 0', theColor, theAlpha, 0);
73                         drawsubpic(theOrigin + height - dY + width - dX,             dX          +     dY, pic, '0.75 0.75 0', '0.25 0.25 0', theColor, theAlpha, 0);
74                 }
75         }
76 }
77
78 // draw HUD element with image from gfx/hud/hud_skin/foo.tga if it exists, otherwise gfx/hud/default/foo.tga
79 void drawpic_skin(vector pos, string pic, vector sz, vector color, float alpha, float drawflag) {
80         drawpic(pos, strcat("gfx/hud/", cvar_string("hud_skin"), "/", pic), sz, color, alpha, drawflag);
81 }
82
83 void drawpic_skin_expanding(vector pos, string pic, vector sz, vector rgb, float alpha, float flag, float fadelerp) {
84         drawpic_expanding(pos, strcat("gfx/hud/", cvar_string("hud_skin"), "/", pic), sz, rgb, alpha, flag, fadelerp);
85 }
86
87 void drawpic_skin_expanding_two(vector pos, string pic, vector sz, vector rgb, float alpha, float flag, float fadelerp) {
88         drawpic_expanding_two(pos, strcat("gfx/hud/", cvar_string("hud_skin"), "/", pic), sz, rgb, alpha, flag, fadelerp);
89 }
90
91 // return HUD background color
92 vector HUD_GetBgColor()
93 {
94         vector color;
95         if (teamplay)
96                 GetTeamRGB(myteam) * hud_color_bg_team;
97         else {
98                 // allow custom HUD colors in non-teamgames
99                 color_x = cvar("hud_color_bg_r");
100                 color_y = cvar("hud_color_bg_g");
101                 color_z = cvar("hud_color_bg_b");
102         }
103         return color;
104 }
105
106 // return accuracy text color
107 vector HUD_AccuracyColor(float accuracy)
108 {
109         vector rgb;
110         float yellow_accuracy = cvar("hud_weaponicons_accuracy_yellow"); // value at which this function returns yellow
111         if(accuracy >= 100) {
112                 rgb_x = 0;
113                 rgb_y = 1;
114         }
115         else if(accuracy > yellow_accuracy) {
116                 rgb_x = 1 - (accuracy-yellow_accuracy)/(100-yellow_accuracy); // red value between 1 -> 0
117                 rgb_y = 1;
118         }
119         else {
120                 rgb_x = 1;
121                 rgb_y = accuracy/yellow_accuracy; // green value between 0 -> 1
122         }
123         rgb_z = 0;
124         return rgb;
125 }
126
127 // draw number in the XSCALE font
128 void HUD_DrawXNum (vector pos, float num, float digits, float showsign, float lettersize, vector rgb, float highlighted, float stroke, float alpha, float dflags)
129 {
130         float l, i;
131         string str, tmp, l_length;
132         float minus, plus;
133         vector vsize, num_color;
134
135         vsize_x = vsize_y = lettersize;
136         vsize_z = 0;
137
138         // showsign 1: always prefix with minus sign (useful in race distribution display)
139         // showsign 2: always prefix with plus sign (useful in race distribution display)
140         // showsign 3: prefix with minus sign if negative, plus sign if positive (useful in score distribution display)
141
142         if((showsign == 2 && num >= 0) || (num > 0 && showsign == 3))
143         {
144                 plus = true;
145                 pos_x -= lettersize;
146         } else
147                 plus = false;
148
149         if(num < 0 || (num < 0 && showsign == 3) || (showsign == 1 && num <= 0))
150         {
151                 minus = true;
152                 num = -num;
153                 pos_x -= lettersize;
154         } else
155                 minus = false;
156
157         if(digits < 0)
158         {
159                 tmp = ftos(num);
160                 digits = -digits;
161                 str = strcat(substring("0000000000", 0, digits - strlen(tmp)), tmp);
162         } else
163                 str = ftos(num);
164
165         l = strlen(str);
166         l_length = ftos(l);
167
168         if(l > digits)
169         {
170                 str = substring(str, l-digits, 999);
171                 l = strlen(str);
172         } else if(l < digits)
173                 pos_x += (digits-l) * lettersize;
174
175         if (highlighted == 1) {
176                 vector hl_size;
177                 hl_size_x = vsize_x * l + vsize_x * 0.2;
178                 hl_size_y = vsize_y * 1.1;
179                 hl_size_z = 0;
180                 if(minus)
181                         hl_size_x = hl_size_x + vsize_x;
182
183                 vector hl_pos;
184                 hl_pos_x = pos_x - lettersize/10;
185                 hl_pos_y = pos_y - lettersize/20;
186                 hl_pos_z = 0;
187
188                 drawpic_skin(hl_pos, strcat("num_leading_", l_length), hl_size, '1 1 1', alpha, dflags);
189         }
190
191         if (stroke == 1)
192                 num_color = '1 1 1';
193         else
194                 num_color = rgb;
195
196         if(minus)
197         {
198                 if (stroke == 1)
199                         drawpic_skin(pos, "num_minus_stroke", vsize, rgb, alpha, dflags);
200                 drawpic_skin(pos, "num_minus", vsize, num_color, alpha, dflags);
201                 pos_x += lettersize;
202         } else if(plus)
203         {
204                 if (stroke == 1)
205                         drawpic_skin(pos, "num_plus_stroke", vsize, rgb, alpha, dflags);
206                 drawpic_skin(pos, "num_plus", vsize, num_color, alpha, dflags);
207                 pos_x += lettersize;
208         }
209
210         for(i = 0; i < l; ++i)
211         {
212                 tmp = substring(str, i, 1);
213                 if (stroke == 1)
214                         drawpic_skin(pos, strcat("num_", tmp, "_stroke"), vsize, rgb, alpha, dflags);
215                 drawpic_skin(pos, strcat("num_", tmp), vsize, num_color, alpha, dflags);
216                 pos_x += lettersize;
217         }
218 }
219
220 // color the number differently based on how big it is (used in the health/armor panel)
221 void HUD_DrawXNum_Colored (vector pos, float x, float digits, float lettersize, float alpha)
222 {
223         vector color;
224         if(x > 200) {
225                 color_x = 0;
226                 color_y = 1;
227                 color_z = 0;
228         }
229         else if(x > 150) {
230                 color_x = 0.4 - (x-150)*0.02 * 0.4; //red value between 0.4 -> 0
231                 color_y = 0.9 + (x-150)*0.02 * 0.1; // green value between 0.9 -> 1
232                 color_z = 0;
233         }
234         else if(x > 100) {
235                 color_x = 1 - (x-100)*0.02 * 0.6; //red value between 1 -> 0.4
236                 color_y = 1 - (x-100)*0.02 * 0.1; // green value between 1 -> 0.9
237                 color_z = 1 - (x-100)*0.02; // blue value between 1 -> 0
238         }
239         else if(x > 50) {
240                 color_x = 1;
241                 color_y = 1;
242                 color_z = 0.2 + (x-50)*0.02 * 0.8; // blue value between 0.2 -> 1
243         }
244         else if(x > 20) {
245                 color_x = 1;
246                 color_y = (x-20)*90/27/100; // green value between 0 -> 1
247                 color_z = (x-20)*90/27/100 * 0.2; // blue value between 0 -> 0.2
248         }
249         else {
250                 color_x = 1;
251                 color_y = 0;
252                 color_z = 0;
253         }
254         HUD_DrawXNum(pos, x, digits, 0, lettersize, color, 0, 0, alpha, DRAWFLAG_NORMAL);
255 }
256
257 float stringwidth_colors(string s, vector theSize)
258 {
259         return stringwidth(s, TRUE, theSize);
260 }
261
262 float stringwidth_nocolors(string s, vector theSize)
263 {
264         return stringwidth(s, FALSE, theSize);
265 }
266
267 #define CENTERPRINT_MAX_LINES 30
268 string centerprint_messages[CENTERPRINT_MAX_LINES];
269 float centerprint_width[CENTERPRINT_MAX_LINES];
270 vector centerprint_start;
271 float centerprint_expire;
272 float centerprint_num;
273 float centerprint_offset_hint;
274 vector centerprint_fontsize;
275
276 void centerprint(string strMessage)
277 {
278         float i, j, n, hcount;
279         string s;
280
281         centerprint_fontsize = HUD_GetFontsize("scr_centersize");
282
283         centerprint_expire = min(centerprint_expire, time); // if any of the returns happens, this message will fade out
284
285         if(cvar("scr_centertime") <= 0)
286                 return;
287
288         if(strMessage == "")
289                 return;
290
291         // strip trailing newlines
292         j = strlen(strMessage) - 1;
293         while(substring(strMessage, j, 1) == "\n" && j >= 0)
294                 j = j - 1;
295         strMessage = substring(strMessage, 0, j + 1);
296
297         if(strMessage == "")
298                 return;
299
300         // strip leading newlines and remember them, they are a hint that the message should be lower on the screen
301         j = 0;
302         while(substring(strMessage, j, 1) == "\n" && j < strlen(strMessage))
303                 j = j + 1;
304         strMessage = substring(strMessage, j, strlen(strMessage) - j);
305         centerprint_offset_hint = j;
306
307         if(strMessage == "")
308                 return;
309
310         // if we get here, we have a message. Initialize its height.
311         centerprint_num = 0;
312
313         n = tokenizebyseparator(strMessage, "\n");
314         i = hcount = 0;
315         for(j = 0; j < n; ++j)
316         {
317                 getWrappedLine_remaining = argv(j);
318                 while(getWrappedLine_remaining)
319                 {
320                         s = getWrappedLine(vid_conwidth * 0.75, centerprint_fontsize, stringwidth_colors);
321                         if(centerprint_messages[i])
322                                 strunzone(centerprint_messages[i]);
323                         centerprint_messages[i] = strzone(s);
324                         centerprint_width[i] = stringwidth(s, TRUE, centerprint_fontsize);
325                         ++i;
326
327                         // half height for empty lines looks better
328                         if(s == "")
329                                 hcount += 0.5;
330                         else
331                                 hcount += 1;
332
333                         if(i >= CENTERPRINT_MAX_LINES)
334                                 break;
335                 }
336         }
337
338         float h, havail;
339         h = centerprint_fontsize_y*hcount;
340
341         havail = vid_conheight;
342         if(cvar("con_chatpos") < 0)
343                 havail -= (-cvar("con_chatpos") + cvar("con_chat")) * cvar("con_chatsize"); // avoid overlapping chat
344         if(havail > vid_conheight - 70)
345                 havail = vid_conheight - 70; // avoid overlapping HUD
346
347         centerprint_start_x = 0;
348
349 #if 0
350         float forbiddenmin, forbiddenmax, allowedmin, allowedmax, preferred;
351
352         // here, the centerprint would cover the crosshair. REALLY BAD.
353         forbiddenmin = vid_conheight * 0.5 - h - 16;
354         forbiddenmax = vid_conheight * 0.5 + 16;
355
356         allowedmin = scoreboard_bottom;
357         allowedmax = havail - h;
358         preferred = (havail - h)/2;
359
360
361         // possible orderings (total: 4! / 4 = 6)
362         //  allowedmin allowedmax forbiddenmin forbiddenmax
363         //  forbiddenmin forbiddenmax allowedmin allowedmax
364         if(allowedmax < forbiddenmin || allowedmin > forbiddenmax)
365         {
366                 // forbidden doesn't matter in this case
367                 centerprint_start_y = bound(allowedmin, preferred, allowedmax);
368         }
369         //  allowedmin forbiddenmin allowedmax forbiddenmax
370         else if(allowedmin < forbiddenmin && allowedmax < forbiddenmax)
371         {
372                 centerprint_start_y = bound(allowedmin, preferred, forbiddenmin);
373         }
374         //  allowedmin forbiddenmin forbiddenmax allowedmax
375         else if(allowedmin < forbiddenmin)
376         {
377                 // make sure the forbidden zone is not covered
378                 if(preferred > (forbiddenmin + forbiddenmax) * 0.5)
379                         centerprint_start_y = bound(allowedmin, preferred, forbiddenmin);
380                 else
381                         centerprint_start_y = bound(forbiddenmax, preferred, allowedmin);
382         }
383         //  forbiddenmin allowedmin allowedmax forbiddenmax
384         else if(allowedmax < forbiddenmax)
385         {
386                 // it's better to leave the allowed zone (overlap with scoreboard) than
387                 // to cover the forbidden zone (crosshair)
388                 if(preferred > (forbiddenmin + forbiddenmax) * 0.5)
389                         centerprint_start_y = forbiddenmax;
390                 else
391                         centerprint_start_y = forbiddenmin;
392         }
393         //  forbiddenmin allowedmin forbiddenmax allowedmax
394         else
395         {
396                 centerprint_start_y = bound(forbiddenmax, preferred, allowedmax);
397         }
398 #else
399         centerprint_start_y =
400                 min(
401                         max(
402                                 max(scoreboard_bottom, vid_conheight * 0.5 + 16),
403                                 (havail - h)/2
404                         ),
405                         havail - h
406                 );
407 #endif
408
409         centerprint_num = i;
410         centerprint_expire = time + cvar("scr_centertime");
411 }
412
413 void HUD_DrawCenterPrint (void)
414 {
415         float i;
416         vector pos;
417         string ts;
418         float a;
419
420         //if(time > centerprint_expire)
421         //      return;
422
423         //a = bound(0, 1 - 2 * (time - centerprint_expire), 1);
424         a = bound(0, 1 - 4 * (time - centerprint_expire), 1);
425         //sz = 1.2 / (a + 0.2);
426
427         if(a <= 0)
428                 return;
429
430         pos = centerprint_start;
431         for (i=0; i<centerprint_num; i = i + 1)
432         {
433                 pos_x = (vid_conwidth - centerprint_width[i]) * 0.5;
434                 ts = centerprint_messages[i];
435                 if (ts != "")
436                 {
437                         dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
438                         drawcolorcodedstring(pos, ts, centerprint_fontsize, a, DRAWFLAG_NORMAL);
439                         //  - '0 0.5 0' * (sz - 1) * centerprint_fontsize_x - '0.5 0 0' * (sz - 1) * centerprint_width[i] * centerprint_fontsize_y, centerprint_fontsize * sz
440                         pos_y = pos_y + centerprint_fontsize_y;
441                 }
442                 else
443                         // half height for empty lines looks better
444                         pos_y = pos_y + centerprint_fontsize_y * 0.5;
445         }
446 }
447
448 void drawstringright(vector position, string text, vector scale, vector rgb, float alpha, float flag)
449 {
450         position_x -= 2 / 3 * strlen(text) * scale_x;
451         drawstring(position, text, scale, rgb, alpha, flag);
452 }
453
454 void drawstringcenter(vector position, string text, vector scale, vector rgb, float alpha, float flag)
455 {
456         position_x = 0.5 * (vid_conwidth - 0.6025 * strlen(text) * scale_x);
457         drawstring(position, text, scale, rgb, alpha, flag);
458 }
459
460 // return the string of the given race place
461 string race_PlaceName(float pos) {
462         if(pos == 1)
463                 return "1st";
464         else if(pos == 2)
465                 return "2nd";
466         else if(pos == 3)
467                 return "3rd";
468         else
469                 return strcat(ftos(pos), "th");
470 }
471
472 // return the string of the onscreen race timer
473 string MakeRaceString(float cp, float mytime, float histime, float lapdelta, string hisname)
474 {
475         string col;
476         string timestr;
477         string cpname;
478         string lapstr;
479         lapstr = "";
480
481         if(histime == 0) // goal hit
482         {
483                 if(mytime > 0)
484                 {
485                         timestr = strcat("+", ftos_decimals(+mytime, TIME_DECIMALS));
486                         col = "^1";
487                 }
488                 else if(mytime == 0)
489                 {
490                         timestr = "+0.0";
491                         col = "^3";
492                 }
493                 else
494                 {
495                         timestr = strcat("-", ftos_decimals(-mytime, TIME_DECIMALS));
496                         col = "^2";
497                 }
498
499                 if(lapdelta > 0)
500                 {
501                         lapstr = strcat(" (-", ftos(lapdelta), "L)");
502                         col = "^2";
503                 }
504                 else if(lapdelta < 0)
505                 {
506                         lapstr = strcat(" (+", ftos(-lapdelta), "L)");
507                         col = "^1";
508                 }
509         }
510         else if(histime > 0) // anticipation
511         {
512                 if(mytime >= histime)
513                         timestr = strcat("+", ftos_decimals(mytime - histime, TIME_DECIMALS));
514                 else
515                         timestr = TIME_ENCODED_TOSTRING(TIME_ENCODE(histime));
516                 col = "^3";
517         }
518         else
519                 col = "^7";
520
521         if(cp == 254)
522                 cpname = "Start line";
523         else if(cp == 255)
524                 cpname = "Finish line";
525         else if(cp)
526                 cpname = strcat("Intermediate ", ftos(cp));
527         else
528                 cpname = "Finish line";
529
530         if(histime < 0)
531                 return strcat(col, cpname);
532         else if(hisname == "")
533                 return strcat(col, cpname, " (", timestr, ")");
534         else
535                 return strcat(col, cpname, " (", timestr, " ", strcat(hisname, col, lapstr), ")");
536 }
537
538 // Check if the given name already exist in race rankings? In that case, where? (otherwise return 0)
539 float race_CheckName(string net_name) {
540         float i;
541         for (i=RANKINGS_CNT-1;i>=0;--i)
542                 if(grecordholder[i] == net_name)
543                         return i+1;
544         return 0;
545 }
546
547 /*
548 ==================
549 HUD panels
550 ==================
551 */
552
553 // Save the config
554 void HUD_Panel_ExportCfg(string cfgname)
555 {
556         float fh;
557         fh = fopen(strcat("hud_", cvar_string("hud_skin"), "_", cfgname, ".cfg"), FILE_WRITE);
558         if(fh >= 0)
559         {
560                 fputs(fh, strcat("seta hud_skin \"", cvar_string("hud_skin"), "\"", "\n"));
561                 fputs(fh, strcat("seta hud_bg \"", cvar_string("hud_bg"), "\"", "\n"));
562                 fputs(fh, strcat("seta hud_bg_color \"", cvar_string("hud_bg_color"), "\"", "\n"));
563                 fputs(fh, strcat("seta hud_bg_color_team \"", cvar_string("hud_bg_color_team"), "\"", "\n"));
564                 fputs(fh, strcat("seta hud_bg_alpha \"", cvar_string("hud_bg_alpha"), "\"", "\n"));
565                 fputs(fh, strcat("seta hud_bg_border \"", cvar_string("hud_bg_border"), "\"", "\n"));
566                 fputs(fh, strcat("seta hud_bg_padding \"", cvar_string("hud_bg_padding"), "\"", "\n"));
567                 fputs(fh, strcat("seta hud_fg_alpha) \"", cvar_string("hud_fg_alpha"), "\"", "\n"));
568                 fputs(fh, "\n");
569
570                 fputs(fh, strcat("seta hud_dock \"", cvar_string("hud_dock"), "\"", "\n"));
571                 fputs(fh, strcat("seta hud_dock_color \"", cvar_string("hud_dock_color"), "\"", "\n"));
572                 fputs(fh, strcat("seta hud_dock_color_team \"", cvar_string("hud_dock_color_team"), "\"", "\n"));
573                 fputs(fh, strcat("seta hud_dock_alpha \"", ftos(cvar("hud_dock_alpha")), "\"", "\n"));
574                 fputs(fh, "\n");
575
576                 fputs(fh, strcat("seta hud_progressbar_alpha ", ftos(cvar("hud_progressbar_alpha")), "\n"));
577                 fputs(fh, strcat("seta hud_progressbar_strength_color \"", cvar_string("hud_progressbar_strength_color"), "\"", "\n"));
578                 fputs(fh, strcat("seta hud_progressbar_shield_color \"", cvar_string("hud_progressbar_shield_color"), "\"", "\n"));
579                 fputs(fh, strcat("seta hud_progressbar_health_color \"", cvar_string("hud_progressbar_health_color"), "\"", "\n"));
580                 fputs(fh, strcat("seta hud_progressbar_armor_color \"", cvar_string("hud_progressbar_armor_color"), "\"", "\n"));
581                 fputs(fh, strcat("seta hud_progressbar_fuel_color \"", cvar_string("hud_progressbar_fuel_color"), "\"", "\n"));
582                 fputs(fh, strcat("seta hud_progressbar_nexball_color \"", cvar_string("hud_progressbar_nexball_color"), "\"", "\n"));
583                 fputs(fh, "\n");
584
585                 // common cvars for all panels
586                 float i;
587                 for (i = 0; i < HUD_PANEL_NUM; ++i)
588                 {
589                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), " ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i)))), "\n"));
590                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_pos \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_pos")), "\"", "\n"));
591                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_size \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_size")), "\"", "\n"));
592                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_bg \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_bg")), "\"", "\n"));
593                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_bg_color \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_bg_color")), "\"", "\n"));
594                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_bg_color_team \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_bg_color_team")), "\"", "\n"));
595                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_bg_alpha \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_bg_alpha")), "\"", "\n"));
596                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_bg_border \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_bg_border")), "\"", "\n"));
597                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_bg_padding \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_bg_padding")), "\"", "\n"));
598                         switch(i) {
599                                 case 0:
600                                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_accuracy_height ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_accuracy_height"))), "\n"));
601                                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_accuracy_yellow ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_accuracy_yellow"))), "\n"));
602                                         break;
603                                 case 1:
604                                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_onlycurrent ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_onlycurrent"))), "\n"));
605                                         break;
606                                 case 2:
607                                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_flip ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_flip"))), "\n"));
608                                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_mirror ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_mirror"))), "\n"));
609                                         break;
610                                 case 3:
611                                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_flip ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_flip"))), "\n"));
612                                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_mirror ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_mirror"))), "\n"));
613                                         break;
614                                 case 4:
615                                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_flip ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_flip"))), "\n"));
616                                         break;
617                                 case 9:
618                                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_alreadyvoted_alpha ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_alreadyvoted_alpha"))), "\n"));
619                                         break;
620                         }
621                         fputs(fh, "\n");
622                 }
623
624                 print("^2Successfully exported to hud_", cvar_string("hud_skin"), "_", cfgname, ".cfg! (Note: It's saved in data/data/)\n");
625         }
626         fclose(fh);
627 }
628
629 vector HUD_Panel_GetMinSize(float id)
630 {
631         vector mySize;
632         // note: please only set mySize_y on aspect ratio forced panels
633         switch(id) {
634                 case 0: 
635                         mySize_x = 1/10; // at least 1/10 * height
636                         mySize_y = 1/26; // at least 1/26 * width
637                         break;
638                 case 1: 
639                         if(cvar("hud_inventory_onlycurrent"))
640                                 mySize_y = 2/5; //  2/5 width
641                         else
642                                 mySize_x = 0.7; // at least 0.7 * height
643                         break;
644                 case 3: 
645                         if(cvar("hud_healtharmor") == 2)
646                         {
647                                 mySize_x = 4.35; // 4.35 * height, trial and error...
648                                 mySize_y = 0.01; // "unlimited" ;)
649                         }
650                         break;
651                 case 4: 
652                         mySize_x = 1.2; // 12/10 * height, as panel cant support more than 10 entries...
653                         mySize_y = 1/12; // 1/12 * width
654                         break;
655                 case 5: 
656                         mySize_y = 1/4.1; // 1/4.1 * width, trial and error...
657                         break;
658                 case 7: 
659                         mySize_y = 1/4; // 1/4 * width
660                         break;
661                 case 8: 
662                         mySize_y = 1/4; // 1/4 * width
663                         break;
664                 case 9: 
665                         mySize_y = 1/4; // 1/4 * width
666                         break;
667                 case 10: 
668                         mySize_y = 1/2; // 1/2 * width
669                         break;
670                 case 11: 
671                         mySize_y = 0.5898; // 0.5898 * width, reason: bg has weird dimensions...
672                         break;
673         }
674         if(!mySize_x && mySize_y)
675                 mySize_x = 1/mySize_y;
676         return mySize;
677 }
678
679 // return active status of panel
680 float HUD_Panel_CheckActive(float id)
681 {
682         if (cvar_or(strcat("hud_", HUD_Panel_GetName(id)), 1))
683                 return 1;
684         return 0;
685 }
686
687 // return size of given panel
688 vector HUD_Panel_GetSize(float id)
689 {
690         vector mySize;
691         mySize = stov(cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_size")));
692
693         mySize = eX * mySize_x * vid_conwidth + eY * mySize_y * vid_conheight;
694
695         if(disable_menu_alphacheck == 2 && id == highlightedPanel)
696         {
697                 vector menu_enable_maxsize, menu_enable_size;
698                 menu_enable_maxsize = '0 0 0'; // shut up FTEQCC
699                 menu_enable_maxsize_x = 0.3 * vid_conwidth;
700                 menu_enable_maxsize_y = 0.18 * vid_conheight;
701                 if(mySize_x > mySize_y)
702                 {
703                         if(mySize_y > menu_enable_maxsize_y)
704                         {
705                                 menu_enable_size_y = menu_enable_maxsize_y;
706                                 menu_enable_size_x = mySize_x * (menu_enable_maxsize_y/mySize_y);
707                                 mySize = (1 - cvar("_menu_alpha")) * mySize + (cvar("_menu_alpha")) * menu_enable_size;
708                         }
709                 }
710                 else
711                 {
712                         if(mySize_x > menu_enable_maxsize_x)
713                         {
714                                 menu_enable_size_x = menu_enable_maxsize_x;
715                                 menu_enable_size_y = mySize_y * (menu_enable_maxsize_x/mySize_x);
716                                 mySize = (1 - cvar("_menu_alpha")) * mySize + (cvar("_menu_alpha")) * menu_enable_size;
717                         }
718                 }
719         }
720         return mySize;
721 }
722
723 // return pos of given panel
724 vector HUD_Panel_GetPos(float id)
725 {
726         vector pos;
727         pos = stov(cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_pos")));
728
729         pos = eX * pos_x * vid_conwidth + eY * pos_y * vid_conheight;
730
731         if (pos_x < 0)
732                 pos_x = vid_conwidth + pos_x;
733         if (pos_y < 0)
734                 pos_y = vid_conheight + pos_y;
735
736         if(disable_menu_alphacheck == 2 && id == highlightedPanel)
737         {
738                 vector mySize, menu_enable_panelpos;
739                 mySize = HUD_Panel_GetSize(id);
740                 if(mySize_x > mySize_y)
741                         menu_enable_panelpos = eX * 0.5 * vid_conwidth - eX * 0.5 * mySize_x + eY * 0.82 * vid_conheight;
742                 else
743                         menu_enable_panelpos = eY * 0.5 * vid_conheight - eY * 0.5 * mySize_y + eX * 0.7 * vid_conwidth;
744                 pos = (1 - cvar("_menu_alpha")) * pos + (cvar("_menu_alpha")) * menu_enable_panelpos;
745         }
746         return pos;
747 }
748
749 float HUD_Panel_GetBorder(float id)
750 {
751         string border;
752         border = cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg_border"));
753         if(border == "")
754                 border = cvar_string("hud_bg_border");
755         return stof(border);
756 }
757
758 vector HUD_Panel_GetColor(float id)
759 {
760         float f;
761         vector color_vec;
762         string color;
763
764         // fetch per-panel color
765         if(teamplay && cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg_color_team")) != "") {
766                 f = stof(getplayerkey(self.sv_entnum, "colors"));
767                 color = vtos(colormapPaletteColor(mod(f, 16), 1) * cvar(strcat("hud_", HUD_Panel_GetName(id), "_bg_color_team")));
768         }
769         else
770                 color = cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg_color"));
771         color_vec = stov(color);
772
773         if(color == "") { // fetch default color
774                 color = cvar_string("hud_bg_color");
775                 color_vec = stov(color);
776                 if(teamplay && cvar(strcat("hud_bg_color_team"))) {
777                         f = stof(getplayerkey(self.sv_entnum, "colors"));
778                         color_vec = colormapPaletteColor(mod(f, 16), 1) * cvar("hud_bg_color_team");
779                 }
780                 else if(color == "shirt") {
781                         f = stof(getplayerkey(self.sv_entnum, "colors"));
782                         color_vec = colormapPaletteColor(floor(f / 16), 0);
783                 }
784                 else if(color == "pants") {
785                         f = stof(getplayerkey(self.sv_entnum, "colors"));
786                         color_vec = colormapPaletteColor(mod(f, 16), 1);
787                 }
788         }
789         else if(color == "shirt") {
790                 f = stof(getplayerkey(self.sv_entnum, "colors"));
791                 color_vec = colormapPaletteColor(floor(f / 16), 0);
792         }
793         else if(color == "pants") {
794                 f = stof(getplayerkey(self.sv_entnum, "colors"));
795                 color_vec = colormapPaletteColor(mod(f, 16), 1);
796         }
797         return color_vec;
798 }
799
800 vector HUD_Panel_Dock_GetColor(void)
801 {
802         float f;
803         vector color_vec;
804         string color;
805         color = cvar_string("hud_dock_color");
806         color_vec = stov(color);
807         if(teamplay && cvar(strcat("hud_dock_color_team"))) {
808                 f = stof(getplayerkey(self.sv_entnum, "colors"));
809                 color_vec = colormapPaletteColor(mod(f, 16), 1) * cvar("hud_dock_color_team");
810         }
811         else if(color == "shirt") {
812                 f = stof(getplayerkey(self.sv_entnum, "colors"));
813                 color_vec = colormapPaletteColor(floor(f / 16), 0);
814         }
815         else if(color == "pants") {
816                 f = stof(getplayerkey(self.sv_entnum, "colors"));
817                 color_vec = colormapPaletteColor(mod(f, 16), 1);
818         }
819         return color_vec;
820 }
821
822 float HUD_Panel_GetBgAlpha(float id)
823 {
824         string alpha;
825         alpha = cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg_alpha"));
826         if(alpha == "")
827                 alpha = cvar_string("hud_bg_alpha");
828
829         if(hud_configure && disable_menu_alphacheck == 2 && highlightedPanel == id) // do not set a minalpha cap when showing the config dialog for this panel
830                 alpha = ftos((1 - cvar("_menu_alpha")) * max(cvar("hud_configure_bg_minalpha"), stof(alpha)) + (cvar("_menu_alpha")) * stof(alpha));
831         else if(hud_configure)
832                 alpha = ftos(max(cvar("hud_configure_bg_minalpha"), stof(alpha)));
833
834         if(hud_configure && !cvar(strcat("hud_", HUD_Panel_GetName(id)))) // ALWAYS show disabled panels at 0.25 alpha when in config mode
835                 return 0.25;
836
837         if(disable_menu_alphacheck == 2 && highlightedPanel == id) // don't fade this panel when showing the panel-specific menu dialog
838                 return stof(alpha);
839         else
840                 return stof(alpha) * menu_fade_alpha;
841 }
842
843 float HUD_Panel_GetFgAlpha(float id)
844 {
845         float alpha;
846         alpha = hud_fg_alpha;
847
848         if(hud_configure && !cvar(strcat("hud_", HUD_Panel_GetName(id)))) // ALWAYS show disabled panels at 0.25 alpha when in config mode
849                 return 0.25;
850
851         if(disable_menu_alphacheck == 2 && highlightedPanel == id) // don't fade this panel when showing the panel-specific menu dialog
852                 return alpha;
853         else
854                 return alpha * menu_fade_alpha;
855 }
856
857 float HUD_Panel_GetPadding(float id)
858 {
859         string padding;
860         padding = cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg_padding"));
861         if(padding == "")
862                 padding = cvar_string("hud_bg_padding");
863
864         vector mySize;
865         mySize = HUD_Panel_GetSize(id);
866         float smallestsize;
867         smallestsize = min(mySize_x, mySize_y);
868         return min(smallestsize/2 - 5, stof(padding));
869 }
870
871 // draw the background/borders
872 void HUD_Panel_DrawBg(float id, vector pos, vector mySize, float alpha)
873 {
874         if(!hud_configure && cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg")) == "0")
875                 return;
876
877         string bg;
878         bg = cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg"));
879         if(bg == "")
880                 bg = cvar_string("hud_bg");
881
882         if(bg == "0" && hud_configure) {
883                 bg = "border"; // we probably want to see a background in config mode at all times...
884         }
885
886         if(bg != "0")
887         {
888                 float border;
889                 border = max(0.0000001, HUD_Panel_GetBorder(id)); // draw_BorderPicture does not like border = 0
890
891                 vector color;
892                 color = HUD_Panel_GetColor(id);
893
894                 if(alpha)
895                         alpha = HUD_Panel_GetBgAlpha(id) * alpha; // allow panels to fade in/out by passing an alpha value
896                 else
897                         alpha = HUD_Panel_GetBgAlpha(id);
898
899                 draw_BorderPicture(pos - '1 1 0' * border, strcat("gfx/hud/", cvar_string("hud_skin"), "/", bg), mySize + '1 1 0' * 2 * border, color, alpha, '1 1 0' * (border/BORDER_MULTIPLIER));
900         }
901 }
902
903 void HUD_Panel_DrawProgressBar(vector pos, float vertical, vector mySize, vector color, float alpha, float drawflag)
904 {
905 //float drawsubpic(vector position, vector size, string pic, vector srcPosition, vector srcSize, vector rgb, float alpha, float flag) = #328;
906         string pic;
907         pic = strcat("gfx/hud/", cvar_string("hud_skin"), "/");
908         if(vertical) {
909                 drawsubpic(pos, eY * min(mySize_y * 0.5, mySize_x) + eX * mySize_x, strcat(pic, "statusbar_vertical"), '0 0 0', '1 0.25 0', color, alpha, drawflag);
910                 if(mySize_y/mySize_x > 2)
911                         drawsubpic(pos + eY * mySize_x, eY * (mySize_y - 2 * mySize_x) + eX * mySize_x, strcat(pic, "statusbar_vertical"), '0 0.25 0', '1 0.5 0', color, alpha, drawflag);
912                 drawsubpic(pos + eY * mySize_y - eY * min(mySize_y * 0.5, mySize_x), eY * min(mySize_y * 0.5, mySize_x) + eX * mySize_x, strcat(pic, "statusbar_vertical"), '0 0.75 0', '1 0.25 0', color, alpha, drawflag);
913         } else {
914                 drawsubpic(pos, eX * min(mySize_x * 0.5, mySize_y) + eY * mySize_y, strcat(pic, "statusbar"), '0 0 0', '0.25 1 0', color, alpha, drawflag);
915                 if(mySize_x/mySize_y > 2)
916                         drawsubpic(pos + eX * mySize_y, eX * (mySize_x - 2 * mySize_y) + eY * mySize_y, strcat(pic, "statusbar"), '0.25 0 0', '0.5 1 0', color, alpha, drawflag);
917                 drawsubpic(pos + eX * mySize_x - eX * min(mySize_x * 0.5, mySize_y), eX * min(mySize_x * 0.5, mySize_y) + eY * mySize_y, strcat(pic, "statusbar"), '0.75 0 0', '0.25 1 0', color, alpha, drawflag);
918         }
919 }
920
921 vector HUD_Panel_GetProgressBarColor(string item)
922 {
923         return stov(cvar_string(strcat("hud_progressbar_", item, "_color")));
924 }
925
926 // check if move will result in panel being moved into another panel. If so, return snapped vector, otherwise return the given vector
927 vector HUD_Panel_CheckMove(float id, vector myPos, vector mySize)
928 {
929         float i;
930
931         vector myTarget;
932         myTarget = myPos;
933
934         vector targPos;
935         vector targSize;
936         vector myCenter;
937         vector targCenter;
938         myCenter = '0 0 0'; // shut up fteqcc, there IS a reference
939         targCenter = '0 0 0'; // shut up fteqcc, there IS a reference
940
941         for (i = 0; i < HUD_PANEL_NUM; ++i) {
942                 if(i == id || !HUD_Panel_CheckActive(i))
943                         continue;
944
945                 targPos = HUD_Panel_GetPos(i) - '1 1 0' * HUD_Panel_GetBorder(id);
946                 targSize = HUD_Panel_GetSize(i) + '2 2 0' * HUD_Panel_GetBorder(id);
947
948                 if(myPos_y + mySize_y < targPos_y)
949                         continue;
950                 if(myPos_y > targPos_y + targSize_y)
951                         continue;
952
953                 if(myPos_x + mySize_x < targPos_x)
954                         continue;
955                 if(myPos_x > targPos_x + targSize_x)
956                         continue;
957
958                 // OK, there IS a collision.
959
960                 myCenter_x = myPos_x + 0.5 * mySize_x;
961                 myCenter_y = myPos_y + 0.5 * mySize_y;
962
963                 targCenter_x = targPos_x + 0.5 * targSize_x;
964                 targCenter_y = targPos_y + 0.5 * targSize_y;
965
966                 if(myCenter_x < targCenter_x && myCenter_y < targCenter_y) // top left (of the target panel)
967                 {
968                         if(myPos_x + mySize_x - targPos_x < myPos_y + mySize_y - targPos_y) // push it to the side
969                                 myTarget_x = targPos_x - mySize_x;
970                         else // push it upwards
971                                 myTarget_y = targPos_y - mySize_y;
972                 }
973                 else if(myCenter_x > targCenter_x && myCenter_y < targCenter_y) // top right
974                 {
975                         if(targPos_x + targSize_x - myPos_x < myPos_y + mySize_y - targPos_y) // push it to the side
976                                 myTarget_x = targPos_x + targSize_x;
977                         else // push it upwards
978                                 myTarget_y = targPos_y - mySize_y;
979                 }
980                 else if(myCenter_x < targCenter_x && myCenter_y > targCenter_y) // bottom left
981                 {
982                         if(myPos_x + mySize_x - targPos_x < targPos_y + targSize_y - myPos_y) // push it to the side
983                                 myTarget_x = targPos_x - mySize_x;
984                         else // push it downwards
985                                 myTarget_y = targPos_y + targSize_y;
986                 }
987                 else if(myCenter_x > targCenter_x && myCenter_y > targCenter_y) // bottom right
988                 {
989                         if(targPos_x + targSize_x - myPos_x < targPos_y + targSize_y - myPos_y) // push it to the side
990                                 myTarget_x = targPos_x + targSize_x;
991                         else // push it downwards
992                                 myTarget_y = targPos_y + targSize_y;
993                 }
994         }
995
996         return myTarget;
997 }
998
999 void HUD_Panel_SetPos(float id, vector pos)
1000 {
1001         vector oldPos;
1002         oldPos = HUD_Panel_GetPos(id);
1003
1004         vector mySize;
1005         mySize = HUD_Panel_GetSize(id);
1006
1007         if(cvar("hud_configure_checkcollisions"))
1008                 pos = HUD_Panel_CheckMove(id, pos, mySize);
1009
1010         pos_x = bound(0, pos_x, vid_conwidth - mySize_x);
1011         pos_y = bound(0, pos_y, vid_conheight - mySize_y);
1012
1013         if(cvar("hud_configure_grid"))
1014         {
1015                 pos_x = floor(pos_x/cvar("hud_configure_grid_x") + 0.5) * cvar("hud_configure_grid_x");
1016                 pos_y = floor(pos_y/cvar("hud_configure_grid_y") + 0.5) * cvar("hud_configure_grid_y");
1017         }
1018
1019         if (pos_x + 0.5 * mySize_x > 0.5 * vid_conwidth)
1020                 pos_x = pos_x - vid_conwidth;
1021         if (pos_y + 0.5 * mySize_y > 0.5 * vid_conheight)
1022                 pos_y = pos_y - vid_conheight;
1023
1024         string s;
1025         s = strcat(ftos(pos_x/vid_conwidth), " ", ftos(pos_y/vid_conheight));
1026
1027         cvar_set(strcat("hud_", HUD_Panel_GetName(id), "_pos"), s);
1028 }
1029
1030 float HUD_Panel_CheckValidity_of_ResizeSuggestion(float id, vector mySize)
1031 {
1032         vector oldSize;
1033         oldSize = mySize;
1034
1035         // copy pasta from SetPosSize:
1036         // minimum panel size cap
1037         mySize_x = max(0.025 * vid_conwidth, mySize_x);
1038         mySize_y = max(0.025 * vid_conheight, mySize_y);
1039
1040         if(id == 12) // some panels have their own restrictions, like the chat panel (which actually only moves the engine chat print around). Looks bad if it's too small.
1041         {
1042                 mySize_x = max(17 * cvar("con_chatsize"), mySize_x);
1043                 mySize_y = max(2 * cvar("con_chatsize") + 2 * HUD_Panel_GetPadding(id), mySize_y);
1044         }
1045
1046         // cap against panel's own limits
1047         vector minSize;
1048         minSize = HUD_Panel_GetMinSize(id); // mySize_x at least minSize_x * mySize_y, and vice versa
1049
1050         mySize_x = max(minSize_x * mySize_y, mySize_x);
1051         mySize_y = max(minSize_y * mySize_x, mySize_y);
1052
1053         if(mySize == oldSize)
1054                 return 1;
1055         else
1056                 return 0;
1057 }
1058
1059 // check if resize will result in panel being moved into another panel. If so, return snapped vector, otherwise return the given vector
1060 vector HUD_Panel_CheckResize(float id, vector myPos, vector mySize, vector resizeorigin)
1061 {
1062         float i;
1063
1064         vector targPos;
1065         vector targSize;
1066         vector myCenter;
1067         vector targCenter;
1068         myCenter = '0 0 0'; // shut up fteqcc, there IS a reference
1069         targCenter = '0 0 0'; // shut up fteqcc, there IS a reference
1070
1071         for (i = 0; i < HUD_PANEL_NUM; ++i) {
1072                 if(i == id || !HUD_Panel_CheckActive(i))
1073                         continue;
1074
1075                 targPos = HUD_Panel_GetPos(i) - '1 1 0' * HUD_Panel_GetBorder(id);
1076                 targSize = HUD_Panel_GetSize(i) + '2 2 0' * HUD_Panel_GetBorder(id);
1077
1078                 if(myPos_y + mySize_y < targPos_y)
1079                         continue;
1080                 if(myPos_y > targPos_y + targSize_y)
1081                         continue;
1082
1083                 if(myPos_x + mySize_x < targPos_x)
1084                         continue;
1085                 if(myPos_x > targPos_x + targSize_x)
1086                         continue;
1087
1088                 // OK, there IS a collision.
1089                 //
1090
1091                 // Now check some special cases
1092                 // If the resizeorigin is too close to the target panel on either axis, we do not want to perform any collision avoidance on that axis
1093                 float Check_X, Check_Y;
1094                 Check_X = Check_Y = 1;
1095                 // check upper/left edges of targ panel
1096                 if(fabs(targPos_x - resizeorigin_x) < 0.025 * vid_conwidth)
1097                         Check_X = 0;
1098                 if(fabs(targPos_y - resizeorigin_y) < 0.025 * vid_conheight)
1099                         Check_Y = 0;
1100                 // check lower/right edges of targ panel
1101                 if(fabs(resizeorigin_x - (targPos_x + targSize_x)) < 0.025 * vid_conwidth)
1102                         Check_X = 0;
1103                 if(fabs(resizeorigin_y - (targPos_y + targSize_y)) < 0.025 * vid_conheight)
1104                         Check_Y = 0;
1105
1106                 myCenter_x = myPos_x + 0.5 * mySize_x;
1107                 myCenter_y = myPos_y + 0.5 * mySize_y;
1108
1109                 targCenter_x = targPos_x + 0.5 * targSize_x;
1110                 targCenter_y = targPos_y + 0.5 * targSize_y;
1111
1112                 if(myCenter_x < targCenter_x && myCenter_y < targCenter_y) // top left (of target panel)
1113                 {
1114                         //if(!HUD_Panel_CheckValidity_of_ResizeSuggestion(id, eX * (targPos_x - myPos_x) + eY * (targPos_y - resizeorigin_y)))
1115                         //      continue;
1116
1117                         if(myPos_x + mySize_x - targPos_x < myPos_y + mySize_y - targPos_y && Check_X) // push it to the side
1118                                 mySize_x = targPos_x - myPos_x;
1119                         else if(Check_Y) // push it upwards
1120                                 mySize_y = targPos_y - resizeorigin_y;
1121                 }
1122                 else if(myCenter_x > targCenter_x && myCenter_y < targCenter_y) // top right
1123                 {
1124                         //if(!HUD_Panel_CheckValidity_of_ResizeSuggestion(id, eX * (resizeorigin_x - (targPos_x + targSize_x)) + eY * (targPos_y - resizeorigin_y)))
1125                         //      continue;
1126
1127                         if(targPos_x + targSize_x - myPos_x < myPos_y + mySize_y - targPos_y && Check_X) // push it to the side
1128                                 mySize_x = resizeorigin_x - (targPos_x + targSize_x);
1129                         else if(Check_Y) // push it upwards
1130                                 mySize_y = targPos_y - resizeorigin_y;
1131                 }
1132                 else if(myCenter_x < targCenter_x && myCenter_y > targCenter_y) // bottom left
1133                 {
1134                         //if(!HUD_Panel_CheckValidity_of_ResizeSuggestion(id, eX * (targPos_x - resizeorigin_x) + eY * (resizeorigin_y - (targPos_y + targSize_y))))
1135                         //      continue;
1136
1137                         if(myPos_x + mySize_x - targPos_x < targPos_y + targSize_y - myPos_y && Check_X) // push it to the side
1138                                 mySize_x = targPos_x - resizeorigin_x;
1139                         else if(Check_Y) // push it upwards
1140                                 mySize_y = resizeorigin_y - (targPos_y + targSize_y);
1141                 }
1142                 else if(myCenter_x > targCenter_x && myCenter_y > targCenter_y) // bottom right
1143                 {
1144                         //if(!HUD_Panel_CheckValidity_of_ResizeSuggestion(id, eX * (resizeorigin_x - (targPos_x + targSize_x)) + eY * (resizeorigin_y - (targPos_y + targSize_y))))
1145                         //      continue;
1146
1147                         if(targPos_x + targSize_x - myPos_x < targPos_y + targSize_y - myPos_y && Check_X) // push it to the side
1148                                 mySize_x = resizeorigin_x - (targPos_x + targSize_x);
1149                         else if(Check_Y) // push it upwards
1150                                 mySize_y = resizeorigin_y - (targPos_y + targSize_y);
1151                 }
1152         }
1153
1154         return mySize;
1155 }
1156
1157 void HUD_Panel_SetPosSize(float id, vector resizeorigin)
1158 {
1159         vector mySize, myPos;
1160
1161         if(resizeCorner == 1) {
1162                 mySize_x = resizeorigin_x - (mousepos_x - panel_click_distance_x);
1163                 mySize_y = resizeorigin_y - (mousepos_y - panel_click_distance_y);
1164         } else if(resizeCorner == 2) {          
1165                 mySize_x = mousepos_x + panel_click_distance_x - resizeorigin_x;
1166                 mySize_y = panel_click_distance_y + resizeorigin_y - mousepos_y;
1167         } else if(resizeCorner == 3) {
1168                 mySize_x = resizeorigin_x + panel_click_distance_x - mousepos_x;
1169                 mySize_y = mousepos_y + panel_click_distance_y - resizeorigin_y;
1170         } else { // resizeCorner == 4
1171                 mySize_x = mousepos_x - (resizeorigin_x - panel_click_distance_x);
1172                 mySize_y = mousepos_y - (resizeorigin_y - panel_click_distance_y);
1173         }
1174
1175         // minimum panel size cap
1176         mySize_x = max(0.025 * vid_conwidth, mySize_x);
1177         mySize_y = max(0.025 * vid_conheight, mySize_y);
1178
1179         if(id == 12) // some panels have their own restrictions, like the chat panel (which actually only moves the engine chat print around). Looks bad if it's too small.
1180         {
1181                 mySize_x = max(17 * cvar("con_chatsize"), mySize_x);
1182                 mySize_y = max(2 * cvar("con_chatsize") + 2 * HUD_Panel_GetPadding(id), mySize_y);
1183         }
1184
1185         // cap against panel's own limits
1186         vector minSize;
1187         minSize = HUD_Panel_GetMinSize(id); // mySize_x at least minSize_x * mySize_y, and vice versa
1188
1189         mySize_x = max(minSize_x * mySize_y, mySize_x);
1190         mySize_y = max(minSize_y * mySize_x, mySize_y);
1191
1192         // collision testing|
1193         // -----------------+
1194
1195         // we need to know pos at this stage, but it might still change later if we hit a screen edge/other panel (?)
1196         if(resizeCorner == 1) {
1197                 myPos_x = resizeorigin_x - mySize_x;
1198                 myPos_y = resizeorigin_y - mySize_y;
1199         } else if(resizeCorner == 2) {
1200                 myPos_x = resizeorigin_x;
1201                 myPos_y = resizeorigin_y - mySize_y;
1202         } else if(resizeCorner == 3) {
1203                 myPos_x = resizeorigin_x - mySize_x;
1204                 myPos_y = resizeorigin_y;
1205         } else { // resizeCorner == 4
1206                 myPos_x = resizeorigin_x;
1207                 myPos_y = resizeorigin_y;
1208         }
1209
1210         // left/top screen edges
1211         mySize_x = min(myPos_x + mySize_x, mySize_x);
1212         mySize_y = min(myPos_y + mySize_y, mySize_y);
1213
1214         // bottom/right screen edges
1215         mySize_x = min(vid_conwidth - myPos_x, mySize_x); 
1216         mySize_y = min(vid_conheight - myPos_y, mySize_y); 
1217
1218         if(cvar("hud_configure_checkcollisions"))
1219                 mySize = HUD_Panel_CheckResize(id, myPos, mySize, resizeorigin);
1220
1221         if(cvar("hud_configure_grid"))
1222         {
1223                 mySize_x = floor(mySize_x/cvar("hud_configure_grid_x") + 0.5) * cvar("hud_configure_grid_x");
1224                 mySize_y = floor(mySize_y/cvar("hud_configure_grid_y") + 0.5) * cvar("hud_configure_grid_y");
1225         }
1226
1227         // do another pos check, as size might have changed by now
1228         if(resizeCorner == 1) {
1229                 myPos_x = resizeorigin_x - mySize_x;
1230                 myPos_y = resizeorigin_y - mySize_y;
1231         } else if(resizeCorner == 2) {
1232                 myPos_x = resizeorigin_x;
1233                 myPos_y = resizeorigin_y - mySize_y;
1234         } else if(resizeCorner == 3) {
1235                 myPos_x = resizeorigin_x - mySize_x;
1236                 myPos_y = resizeorigin_y;
1237         } else { // resizeCorner == 4
1238                 myPos_x = resizeorigin_x;
1239                 myPos_y = resizeorigin_y;
1240         }
1241
1242         string s;
1243         s = strcat(ftos(mySize_x/vid_conwidth), " ", ftos(mySize_y/vid_conheight));
1244         cvar_set(strcat("hud_", HUD_Panel_GetName(id), "_size"), s);
1245
1246         s = strcat(ftos(myPos_x/vid_conwidth), " ", ftos(myPos_y/vid_conheight));
1247         cvar_set(strcat("hud_", HUD_Panel_GetName(id), "_pos"), s);
1248 }
1249
1250 float mouseClicked;
1251 float prevMouseClicked; // previous state
1252 float prevMouseClickedTime; // time during previous mouse click, to check for doubleclicks
1253 vector prevMouseClickedPos; // pos during previous mouse click, to check for doubleclicks
1254
1255 float menu_enabled;
1256 float menu_enabled_time;
1257 float HUD_Panel_InputEvent(float bInputType, float nPrimary, float nSecondary)
1258 {
1259         if(!hud_configure)
1260                 return false;
1261
1262         // allow console bind to work
1263         string con_keys;
1264         float keys;
1265         con_keys = findkeysforcommand("toggleconsole");
1266         keys = tokenize(con_keys);
1267
1268         float hit_con_bind, i;
1269         for (i = 0; i < keys; ++i)
1270         {
1271                 if(nPrimary == stof(argv(i)))
1272                         hit_con_bind = 1;
1273         }
1274
1275         if(nPrimary == K_MOUSE1)
1276         {
1277                 if(bInputType == 0) { // key pressed
1278                         mouseClicked = 1;
1279                         return true;
1280                 }
1281                 else if(bInputType == 1) {// key released
1282                         mouseClicked = 0;
1283                         return true;
1284                 }
1285         }
1286         else if(nPrimary == K_ESCAPE)
1287         {
1288                 disable_menu_alphacheck = 1;
1289                 menu_enabled = 1;
1290                 menu_enabled_time = time;
1291                 localcmd("menu_showhudexit\n");
1292         }
1293
1294         else if(hit_con_bind)
1295                 return false;
1296
1297         return true; // Suppress ALL other input
1298 }
1299
1300 void HUD_Panel_Mouse()
1301 {
1302         // TODO: needs better check... is there any float that contains the current state of the menu? _menu_alpha isn't apparently updated the frame the menu gets enabled
1303         if (menu_enabled == 0) // menu dialog closed, enable normal alpha stuff again
1304                 disable_menu_alphacheck = 0;
1305         if (cvar("_menu_alpha") == 0 && time - menu_enabled_time > 0.5)
1306                 menu_enabled = 0;
1307
1308         /*
1309         print("Disable menu_alphacheck: ", ftos(disable_menu_alphacheck), "\n");
1310         print("Highlighted: ", ftos(highlightedPanel), "\n");
1311         print("Menu alpha: ", cvar_string("_menu_alpha"), "\n");
1312         */
1313
1314         if(mouseClicked == 0 && disable_menu_alphacheck != 2) { // don't reset these variables in disable_menu_alphacheck mode 2!
1315                 highlightedPanel = -1;
1316                 highlightedAction = 0;
1317         }
1318
1319         mousepos = mousepos + getmousepos();
1320
1321         mousepos_x = bound(0, mousepos_x, vid_conwidth);
1322         mousepos_y = bound(0, mousepos_y, vid_conheight);
1323
1324         drawpic(mousepos, strcat("gfx/menu/", cvar_string("menu_skin"), "/cursor.tga"), '32 32 0', '1 1 1', 1, DRAWFLAG_NORMAL);
1325
1326         if(mouseClicked)
1327         {
1328                 float i, border;
1329                 vector panelPos;
1330                 vector panelSize;
1331
1332                 for(i = 0; i < HUD_PANEL_NUM; ++i)
1333                 {
1334                         panelPos = HUD_Panel_GetPos(i);
1335                         panelSize = HUD_Panel_GetSize(i);
1336                         border = HUD_Panel_GetBorder(i);
1337                         if(prevMouseClicked == 0) {
1338                                 // move
1339                                 if(mousepos_x >= panelPos_x && mousepos_y >= panelPos_y && mousepos_x <= panelPos_x + panelSize_x && mousepos_y <= panelPos_y + panelSize_y)
1340                                 {
1341                                         highlightedPanel = i;
1342                                         highlightedAction = 1;
1343                                 }
1344                                 // resize from topleft border
1345                                 else if(mousepos_x >= panelPos_x - border && mousepos_y >= panelPos_y - border && mousepos_x <= panelPos_x + 0.5 * panelSize_x && mousepos_y <= panelPos_y + 0.5 * panelSize_y)
1346                                 {
1347                                         highlightedPanel = i;
1348                                         highlightedAction = 2;
1349                                         resizeCorner = 1;
1350                                 }
1351                                 // resize from topright border
1352                                 else if(mousepos_x >= panelPos_x + 0.5 * panelSize_x && mousepos_y >= panelPos_y - border && mousepos_x <= panelPos_x + panelSize_x + border && mousepos_y <= panelPos_y + 0.5 * panelSize_y)
1353                                 {
1354                                         highlightedPanel = i;
1355                                         highlightedAction = 2;
1356                                         resizeCorner = 2;
1357                                 }
1358                                 // resize from bottomleft border
1359                                 else if(mousepos_x >= panelPos_x - border && mousepos_y >= panelPos_y + 0.5 * panelSize_y && mousepos_x <= panelPos_x + 0.5 * panelSize_x && mousepos_y <= panelPos_y + panelSize_y + border)
1360                                 {
1361                                         highlightedPanel = i;
1362                                         highlightedAction = 2;
1363                                         resizeCorner = 3;
1364                                 }
1365                                 // resize from bottomright border
1366                                 else if(mousepos_x >= panelPos_x + 0.5 * panelSize_x && mousepos_y >= panelPos_y + 0.5 * panelSize_y && mousepos_x <= panelPos_x + panelSize_x + border && mousepos_y <= panelPos_y + panelSize_y + border)
1367                                 {
1368                                         highlightedPanel = i;
1369                                         highlightedAction = 2;
1370                                         resizeCorner = 4;
1371                                 }
1372                         }
1373
1374                         if(highlightedPanel == i)
1375                         {
1376                                 if(prevMouseClicked == 0)
1377                                 {
1378                                         if(highlightedAction == 1)
1379                                                 panel_click_distance = mousepos - panelPos;
1380                                         else if(highlightedAction == 2)
1381                                         {
1382                                                 if(resizeCorner == 1) {
1383                                                         panel_click_distance = mousepos - panelPos;
1384                                                         panel_click_resizeorigin = panelPos + panelSize;
1385                                                 } else if(resizeCorner == 2) {
1386                                                         panel_click_distance_x = panelSize_x - mousepos_x + panelPos_x;
1387                                                         panel_click_distance_y = mousepos_y - panelPos_y;
1388                                                         panel_click_resizeorigin = panelPos + eY * panelSize_y;
1389                                                 } else if(resizeCorner == 3) {
1390                                                         panel_click_distance_x = mousepos_x - panelPos_x;
1391                                                         panel_click_distance_y = panelSize_y - mousepos_y + panelPos_y;
1392                                                         panel_click_resizeorigin = panelPos + eX * panelSize_x;
1393                                                 } else if(resizeCorner == 4) {
1394                                                         panel_click_distance = panelSize - mousepos + panelPos;
1395                                                         panel_click_resizeorigin = panelPos;
1396                                                 }
1397                                         }       
1398                                 }
1399
1400                                 if(highlightedAction == 1)
1401                                         HUD_Panel_SetPos(i, mousepos - panel_click_distance);
1402                                 else if(highlightedAction == 2)
1403                                         HUD_Panel_SetPosSize(i, panel_click_resizeorigin);
1404                         }
1405                 }
1406
1407                 // doubleclick check
1408                 if(time - prevMouseClickedTime < 0.4 && prevMouseClicked == 0 && prevMouseClickedPos == mousepos && highlightedPanel >= 0)
1409                 {
1410                         mouseClicked = 0; // to prevent spam, I guess.
1411                         disable_menu_alphacheck = 2;
1412                         menu_enabled = 1;
1413                         menu_enabled_time = time;
1414                         localcmd("menu_showhudoptions ", ftos(highlightedPanel), "\n");
1415                         return;
1416                 }
1417                 if(prevMouseClicked == 0)
1418                 {
1419                         prevMouseClickedTime = time;
1420                         prevMouseClickedPos = mousepos;
1421                 }
1422         }
1423         prevMouseClicked = mouseClicked;
1424 }
1425
1426 // Weapon icons (#0)
1427 //
1428 float weaponspace[10];
1429 void HUD_WeaponIcons_Clear()
1430 {
1431         float idx;
1432         for(idx = 0; idx < 10; ++idx)
1433                 weaponspace[idx] = 0;
1434 }
1435
1436 entity weaponorder[WEP_MAXCOUNT];
1437
1438 void weaponorder_swap(float i, float j, entity pass)
1439 {
1440         entity h;
1441         h = weaponorder[i];
1442         weaponorder[i] = weaponorder[j];
1443         weaponorder[j] = h;
1444 }
1445
1446 float weaponorder_cmp(float i, float j, entity pass)
1447 {
1448         float d;
1449         d = mod(weaponorder[i].impulse + 9, 10) - mod(weaponorder[j].impulse + 9, 10);
1450         if(d)
1451                 return d;
1452         d = weaponorder[i].weapon - weaponorder[j].weapon;
1453         return d;
1454 }
1455
1456 void HUD_WeaponIcons(void)
1457 {
1458         float id = HUD_PANEL_WEAPONICONS;
1459         float alpha, stat_weapons; // "constants"
1460         vector pos, mySize, accuracy_color;
1461         float i, weapid, fade, weapon_stats, weapon_hit, weapon_damage, weapon_cnt; // variables
1462
1463         pos = HUD_Panel_GetPos(id);
1464         mySize = HUD_Panel_GetSize(id);
1465
1466         stat_weapons = getstati(STAT_WEAPONS);
1467         for(i = WEP_FIRST; i <= WEP_LAST; ++i)
1468         {
1469                 self = get_weaponinfo(i);
1470                 if(self.weapons && (self.impulse >= 0) && (stat_weapons & self.weapons) || hud_configure)
1471                 {
1472                         weaponorder[weapon_cnt] = self;
1473                         ++weapon_cnt;
1474                 }
1475         }
1476         heapsort(weapon_cnt, weaponorder_swap, weaponorder_cmp, world);
1477
1478         HUD_Panel_DrawBg(id, pos, mySize, 0);
1479         float padding;
1480         padding = HUD_Panel_GetPadding(id);
1481         if(padding)
1482         {
1483                 pos += '1 1 0' * padding;
1484                 mySize -= '2 2 0' * padding;
1485         }
1486
1487         // hits
1488         weapon_stats = getstati(STAT_DAMAGE_HITS);
1489         weapon_number = weapon_stats & 63;
1490         weapon_hits[weapon_number-WEP_FIRST] = floor(weapon_stats / 64);
1491         // fired
1492         weapon_stats = getstati(STAT_DAMAGE_FIRED);
1493         weapon_number = weapon_stats & 63;
1494         weapon_fired[weapon_number-WEP_FIRST] = floor(weapon_stats / 64);
1495
1496         if(cvar_or("hud_weaponicons_fade", 1))
1497         {
1498                 fade = 3.2 - 2 * (time - weapontime);
1499                 fade = bound(0.7, fade, 1);
1500         }
1501         else
1502                 fade = 1;
1503
1504         HUD_WeaponIcons_Clear();
1505
1506         float rows, columns;
1507         rows = mySize_y/mySize_x;
1508         rows = bound(1, floor((sqrt(4 * (2/1) * rows * WEP_COUNT + rows * rows) + rows + 0.5) / 2), WEP_COUNT);
1509         //                               ^^^ weapon icon aspect goes here
1510
1511         columns = ceil(WEP_COUNT/rows);
1512         float row, column;
1513         for(i = 0; i < weapon_cnt; ++i)
1514         {
1515                 self = weaponorder[i];
1516                 if((self.weapons && (self.impulse >= 0) && (stat_weapons & self.weapons)) || hud_configure)
1517                 {
1518                         weapid = self.impulse;
1519
1520                         alpha = (self.weapon == activeweapon) ? 1 : 0.6;
1521
1522                         weapon_hit = weapon_hits[self.weapon-WEP_FIRST];
1523                         weapon_damage = weapon_fired[self.weapon-WEP_FIRST];
1524
1525                         // draw background behind currently selected weapon
1526                         if(self.weapon == activeweapon)
1527                                 drawpic_skin(pos + eX * column * mySize_x*(1/columns) + eY * row * mySize_y*(1/rows), "weapon_current_bg", eX * mySize_x*(1/columns) + eY * mySize_y*(1/rows), '1 1 1', fade * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1528
1529                         // draw the weapon accuracy on the HUD
1530                         if(hud_accuracy_hud && !(gametype == GAME_RACE || gametype == GAME_CTS))
1531                         {
1532                                 if(weapon_damage)
1533                                         weapon_stats = floor(100 * weapon_hit / weapon_damage);
1534
1535                                 accuracy_color = HUD_AccuracyColor(weapon_stats);
1536                                 if(weapon_damage)
1537                                         drawpic_skin(pos + eX * column * mySize_x*(1/columns) + eY * row * mySize_y*(1/rows), "weapon_accuracy", eX * mySize_x*(1/columns) + eY * mySize_y*(1/rows), accuracy_color, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1538                         }
1539
1540                         // draw the weapon icon
1541                         drawpic_skin(pos + eX * column * mySize_x*(1/columns) + eY * row * mySize_y*(1/rows), strcat("weapon", self.netname), eX * mySize_x*(1/columns) + eY * mySize_y*(1/rows), '1 1 1', fade * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1542
1543                         if(cvar_or("hud_weaponicons_number", 1))
1544                                 drawstring(pos + eX * column * mySize_x*(1/columns) + eY * row * mySize_y*(1/rows), ftos(weapid), '1 1 0' * 0.5 * mySize_y*(1/rows), '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1545                 }
1546
1547                 ++row;
1548                 if(row >= rows)
1549                 {
1550                         row = 0;
1551                         ++column;
1552                 }
1553         }
1554
1555 }
1556
1557 // Inventory (#1)
1558 //
1559 float GetAmmoStat(float i)
1560 {
1561         switch(i)
1562         {
1563                 case 0: return STAT_SHELLS;
1564                 case 1: return STAT_NAILS;
1565                 case 2: return STAT_ROCKETS;
1566                 case 3: return STAT_CELLS;
1567                 case 4: return STAT_FUEL;
1568                 default: return -1;
1569         }
1570 }
1571
1572 float GetAmmoItemCode(float i)
1573 {
1574         switch(i)
1575         {
1576                 case 0: return IT_SHELLS;
1577                 case 1: return IT_NAILS;
1578                 case 2: return IT_ROCKETS;
1579                 case 3: return IT_CELLS;
1580                 case 4: return IT_FUEL;
1581                 default: return -1;
1582         }
1583 }
1584
1585 string GetAmmoPicture(float i)
1586 {
1587         switch(i)
1588         {
1589                 case 0: return "ammo_shells";
1590                 case 1: return "ammo_bullets";
1591                 case 2: return "ammo_rockets";
1592                 case 3: return "ammo_cells";
1593                 case 4: return "ammo_fuel";
1594                 default: return "";
1595         }
1596 }
1597
1598 void HUD_Inventory(void)
1599 {
1600         float id = HUD_PANEL_INVENTORY;
1601         float i;
1602         float stat_items;
1603
1604         vector pos, mySize, mysize, mypos;
1605         pos = HUD_Panel_GetPos(id);
1606         mySize = HUD_Panel_GetSize(id);
1607
1608         HUD_Panel_DrawBg(id, pos, mySize, 0);
1609         float padding;
1610         padding = HUD_Panel_GetPadding(id);
1611         if(padding)
1612         {
1613                 pos += '1 1 0' * padding;
1614                 mySize -= '2 2 0' * padding;
1615         }
1616
1617         // ammo
1618         stat_items = getstati(STAT_ITEMS);
1619         for (i = 0; i < 4; ++i) {
1620                 float a;
1621                 a = getstati(GetAmmoStat(i)); // how much ammo do we have of type i?
1622                 if(hud_configure)
1623                         a = 100;
1624
1625                 if(cvar("hud_inventory_onlycurrent")) {
1626                         if(hud_configure)
1627                                 i = 2;
1628                         if (stat_items & GetAmmoItemCode(i) || hud_configure) {
1629                                 drawpic_skin(pos, GetAmmoPicture(i), '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1630                                 if(a < 10)
1631                                         HUD_DrawXNum(pos + eX * mySize_y + eY * 0.25 * mySize_y, a, strlen(ftos(a)), 0, 0.5 * mySize_y, '0.7 0 0', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1632                                 else
1633                                         HUD_DrawXNum(pos + eX * mySize_y + eY * 0.25 * mySize_y, a, strlen(ftos(a)), 0, 0.5 * mySize_y, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1634                         }
1635                         if(hud_configure)
1636                                 break;
1637                 } else {
1638                         if (a > 0) {
1639                                 if(mySize_x/mySize_y >= 10) { // arrange horizontally
1640                                         switch (i) {
1641                                                 case 0: mypos_x = pos_x;                        mypos_y = pos_y;                        break; // shells
1642                                                 case 1: mypos_x = pos_x + 0.25 * mySize_x;      mypos_y = pos_y;                        break; // bullets
1643                                                 case 2: mypos_x = pos_x + 0.5  * mySize_x;      mypos_y = pos_y;                        break; // rockets
1644                                                 case 3: mypos_x = pos_x + 0.75 * mySize_x;      mypos_y = pos_y;                        break; // cells
1645                                         }
1646                                         mysize_x = 0.25 * mySize_x;
1647                                         mysize_y = mySize_y;
1648                                 } else if(mySize_x/mySize_y >= 2.5) { // arrange in a 2x2 grid
1649                                         switch (i) {
1650                                                 case 0: mypos_x = pos_x + 0.5 * mySize_x;       mypos_y = pos_y + 0.5 * mySize_y;       break; // shells
1651                                                 case 1: mypos_x = pos_x + 0.5 * mySize_x;       mypos_y = pos_y;                        break; // bullets
1652                                                 case 2: mypos_x = pos_x;                        mypos_y = pos_y + 0.5 * mySize_y;       break; // rockets
1653                                                 case 3: mypos_x = pos_x;                        mypos_y = pos_y;                        break; // cells
1654                                         }
1655                                         mysize_x = 0.5 * mySize_x;
1656                                         mysize_y = 0.5 * mySize_y;
1657                                 } else { // arrange vertically
1658                                         switch (i) {
1659                                                 case 0: mypos_x = pos_x;                        mypos_y = pos_y;                        break; // shells
1660                                                 case 1: mypos_x = pos_x;                        mypos_y = pos_y + 0.25 * mySize_y;      break; // bullets
1661                                                 case 2: mypos_x = pos_x;                        mypos_y = pos_y + 0.5  * mySize_y;      break; // rockets
1662                                                 case 3: mypos_x = pos_x;                        mypos_y = pos_y + 0.75 * mySize_y;      break; // cells
1663                                         }
1664                                         mysize_x = mySize_x;
1665                                         mysize_y = 0.25 * mySize_y;
1666                                 }
1667
1668                                 if (stat_items & GetAmmoItemCode(i))
1669                                         drawpic_skin(mypos, "ammo_current_bg", mysize, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1670                                 drawpic_skin(mypos + eY * 0.05 * mysize_y, GetAmmoPicture(i), '1 1 0' * 0.8 * mysize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1671                                 if (a < 10) {
1672                                         if(stat_items & GetAmmoItemCode(i))
1673                                                 HUD_DrawXNum(mypos + eX * 0.8 * mysize_y + eY * 0.25 * mysize_y, a, strlen(ftos(a)), 0, 0.5 * mysize_y, '0.7 0 0', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1674                                         else
1675                                                 HUD_DrawXNum(mypos + eX * 0.8 * mysize_y + eY * 0.25 * mysize_y, a, strlen(ftos(a)), 0, 0.5 * mysize_y, '0.7 0 0', 0, 0, HUD_Panel_GetFgAlpha(id) * 0.7, DRAWFLAG_NORMAL);
1676                                 } else {
1677                                         if(stat_items & GetAmmoItemCode(i))
1678                                                 HUD_DrawXNum(mypos + eX * 0.8 * mysize_y + eY * 0.25 * mysize_y, a, strlen(ftos(a)), 0, 0.5 * mysize_y, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1679                                         else
1680                                                 HUD_DrawXNum(mypos + eX * 0.8 * mysize_y + eY * 0.25 * mysize_y, a, strlen(ftos(a)), 0, 0.5 * mysize_y, '0.7 0.7 0.7', 0, 0, HUD_Panel_GetFgAlpha(id) * 0.7, DRAWFLAG_NORMAL);
1681                                 }
1682                         }
1683                 }
1684         }
1685 }
1686
1687
1688 // Powerups (#2)
1689 //
1690 void HUD_Powerups(void) {
1691         float id = HUD_PANEL_POWERUPS;
1692         float stat_items;
1693         stat_items = getstati(STAT_ITEMS);
1694
1695         if(!hud_configure)
1696         {
1697                 if not(stat_items & IT_STRENGTH)
1698                         if not(stat_items & IT_INVINCIBLE)
1699                                 return;
1700
1701                 if (getstati(STAT_HEALTH) <= 0)
1702                         return;
1703         }
1704
1705         vector pos, mySize;
1706         pos = HUD_Panel_GetPos(id);
1707         mySize = HUD_Panel_GetSize(id);
1708
1709         HUD_Panel_DrawBg(id, pos, mySize, 0);
1710         float padding;
1711         padding = HUD_Panel_GetPadding(id);
1712         if(padding)
1713         {
1714                 pos += '1 1 0' * padding;
1715                 mySize -= '2 2 0' * padding;
1716         }
1717
1718         float strength_time, shield_time;
1719
1720         strength_time = bound(0, getstatf(STAT_STRENGTH_FINISHED) - time, 99);
1721         shield_time = bound(0, getstatf(STAT_INVINCIBLE_FINISHED) - time, 99);
1722
1723         if(hud_configure)
1724         {
1725                 strength_time = 15;
1726                 shield_time = 27;
1727         }
1728
1729         float len;
1730
1731         vector barpos, barsize;
1732         vector picpos;
1733         vector numpos;
1734
1735         string leftname, rightname;
1736         float leftcnt, rightcnt;
1737         float leftexact, rightexact;
1738         float leftalpha, rightalpha;
1739         if (cvar(strcat("hud_", HUD_Panel_GetName(id), "_flip"))) {
1740                 leftname = "strength";
1741                 leftcnt = ceil(strength_time);
1742                 leftexact = strength_time;
1743
1744                 rightname = "shield";
1745                 rightcnt = ceil(shield_time);
1746                 rightexact = shield_time;
1747         } else {
1748                 leftname = "shield";
1749                 leftcnt = ceil(shield_time);
1750                 leftexact = shield_time;
1751
1752                 rightname = "strength";
1753                 rightcnt = ceil(strength_time);
1754                 rightexact = strength_time;
1755         }
1756         leftalpha = bound(0, leftexact, 1);
1757         rightalpha = bound(0, rightexact, 1);
1758
1759         if (mySize_x/mySize_y > 4)
1760         {
1761                 if(leftcnt)
1762                 {
1763                         len = strlen(ftos(leftcnt));
1764
1765                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1766                                 barpos = pos + eX * 0.5 * mySize_x - eX * 0.5 * mySize_x * min(1, leftcnt/30);
1767                                 barsize = eX * 0.5 * mySize_x * min(1, leftcnt/30) + eY * mySize_y;
1768                                 picpos = pos + eX * 0.5 * mySize_x - eX * mySize_y;
1769                                 numpos = picpos - eX * 2 * 0.5 * mySize_y + eX * (2-len) * 0.5 * mySize_y + eY * 0.25 * mySize_y;
1770                         } else {
1771                                 barpos = pos;
1772                                 barsize = eX * 0.5 * mySize_x * min(1, leftcnt/30) + eY * mySize_y;
1773                                 picpos = pos;
1774                                 numpos = picpos + eX * mySize_y - eX * (2-len) * 0.5 * mySize_y + eY * 0.25 * mySize_y;
1775                         }
1776
1777                         HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1778                         if(leftcnt <= 5)
1779                                 drawpic_skin_expanding_two(picpos, leftname, '1 1 0' * mySize_y, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE, bound(0, (leftcnt - leftexact) / 0.5, 1));
1780                         else
1781                                 drawpic_skin(picpos, leftname, '1 1 0' * mySize_y, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1782                         HUD_DrawXNum(numpos, leftcnt, 2, 0, 0.5 * mySize_y, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1783                 }
1784
1785                 if(rightcnt)
1786                 {
1787                         len = strlen(ftos(rightcnt));
1788
1789                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1790                                 barpos = pos + eX * 0.5 * mySize_x;
1791                                 barsize = eX * 0.5 * mySize_x * min(1, rightcnt/30) + eY * mySize_y;
1792                                 picpos = pos + eX * 0.5 * mySize_x;
1793                                 numpos = picpos + eX * mySize_y - eX * (2-len) * 0.5 * mySize_y + eY * 0.25 * mySize_y;
1794                         } else {
1795                                 barpos = pos + eX * mySize_x - eX * 0.5 * mySize_x * min(1, rightcnt/30);
1796                                 barsize = eX * 0.5 * mySize_x * min(1, rightcnt/30) + eY * mySize_y;
1797                                 picpos = pos + eX * mySize_x - eX * mySize_y;
1798                                 numpos = picpos - eX * mySize_y + eY * 0.25 * mySize_y;
1799                         }
1800
1801                         HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1802                         if(rightcnt <= 5)
1803                                 drawpic_skin_expanding_two(picpos, rightname, '1 1 0' * mySize_y, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE, bound(0, (rightcnt - rightexact) / 0.5, 1));
1804                         else
1805                                 drawpic_skin(picpos, rightname, '1 1 0' * mySize_y, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1806                         HUD_DrawXNum(numpos, rightcnt, 2, 0, 0.5 * mySize_y, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1807                 }
1808         }
1809         else if (mySize_x/mySize_y > 1.5)
1810         {
1811                 if(leftcnt)
1812                 {
1813                         len = strlen(ftos(leftcnt));
1814
1815                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1816                                 barpos = pos + eX * mySize_x - eX * mySize_x * min(1, leftcnt/30);
1817                                 barsize = eX * mySize_x * min(1, leftcnt/30) + eY * 0.5 * mySize_y;
1818                                 picpos = pos + eX * mySize_x - eX * 0.5 * mySize_y;
1819                                 numpos = picpos - eX * len * 0.5 * mySize_y;
1820                         } else {
1821                                 barpos = pos;
1822                                 barsize = eX * mySize_x * min(1, leftcnt/30) + eY * 0.5 * mySize_y;
1823                                 picpos = pos;
1824                                 numpos = picpos + eX * 0.5 * mySize_y;
1825                         }
1826
1827                         HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1828                         if(leftcnt <= 5)
1829                                 drawpic_skin_expanding_two(picpos, leftname, '0.5 0.5 0' * mySize_y, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE, bound(0, (leftcnt - leftexact) / 0.5, 1));
1830                         else
1831                                 drawpic_skin(picpos, leftname, '0.5 0.5 0' * mySize_y, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1832                         HUD_DrawXNum(numpos, leftcnt, len, 0, 0.5 * mySize_y, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1833                 }
1834
1835                 if(rightcnt)
1836                 {
1837                         len = strlen(ftos(rightcnt));
1838
1839                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1840                                 barpos = pos + eX * mySize_x - eX * mySize_x * min(1, rightcnt/30) + eY * 0.5 * mySize_y;
1841                                 barsize = eX * mySize_x * min(1, rightcnt/30) + eY * 0.5 * mySize_y;
1842                                 picpos = pos + eX * mySize_x - eX * 0.5 * mySize_y + eY * 0.5 * mySize_y;
1843                                 numpos = picpos - eX * len * 0.5 * mySize_y;
1844                         } else {
1845                                 barpos = pos + eY * 0.5 * mySize_y;
1846                                 barsize = eX * mySize_x * min(1, rightcnt/30) + eY * 0.5 * mySize_y;
1847                                 picpos = pos + eY * 0.5 * mySize_y;
1848                                 numpos = picpos + eX * 0.5 * mySize_y;
1849                         }
1850
1851                         HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1852                         if(rightcnt <= 5)
1853                                 drawpic_skin_expanding_two(picpos, rightname, '0.5 0.5 0' * mySize_y, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE, bound(0, (rightcnt - rightexact) / 0.5, 1));
1854                         else
1855                                 drawpic_skin(picpos, rightname, '0.5 0.5 0' * mySize_y, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1856                         HUD_DrawXNum(numpos, rightcnt, len, 0, 0.5 * mySize_y, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1857                 }
1858         }
1859         else
1860         {
1861                 if(leftcnt)
1862                 {
1863                         len = strlen(ftos(leftcnt));
1864
1865                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1866                                 barpos = pos;
1867                                 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, leftcnt/30);
1868                                 picpos = pos + eX * 0.05 * mySize_x;
1869                                 numpos = pos + eX * ((2-len)/2) * 0.25 * mySize_x + eY * 0.4 * mySize_x;
1870                         } else {
1871                                 barpos = pos + eY * mySize_y - eY * mySize_y * min(1, leftcnt/30);
1872                                 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, leftcnt/30);
1873                                 picpos = pos + eX * 0.05 * mySize_x + eY * mySize_y - eY * 0.65 * mySize_x;
1874                                 numpos = pos + eX * ((2-len)/2) * 0.25 * mySize_x + eY * mySize_y - eY * 0.25 * mySize_x;
1875                         }
1876
1877                         HUD_Panel_DrawProgressBar(barpos, 1, barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1878                         if(leftcnt <= 5)
1879                                 drawpic_skin_expanding_two(picpos, leftname, '0.4 0.4 0' * mySize_x, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE, bound(0, (leftcnt - leftexact) / 0.5, 1));
1880                         else
1881                                 drawpic_skin(picpos, leftname, '0.4 0.4 0' * mySize_x, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1882                         HUD_DrawXNum(numpos, leftcnt, len, 0, 0.25 * mySize_x, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1883                 }
1884
1885                 if(rightcnt)
1886                 {
1887                         len = strlen(ftos(rightcnt));
1888
1889                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1890                                 barpos = pos + eX * 0.5 * mySize_x;
1891                                 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, rightcnt/30);
1892                                 picpos = pos + eX * 0.05 * mySize_x + eX * 0.5 * mySize_x;
1893                                 numpos = pos + eX * ((2-len)/2) * 0.25 * mySize_x + eY * 0.4 * mySize_x + eX * 0.5 * mySize_x;
1894                         } else {
1895                                 barpos = pos + eY * mySize_y - eY * mySize_y * min(1, rightcnt/30) + eX * 0.5 * mySize_x;
1896                                 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, rightcnt/30);
1897                                 picpos = pos + eX * 0.05 * mySize_x + eY * mySize_y - eY * 0.65 * mySize_x + eX * 0.5 * mySize_x;
1898                                 numpos = pos + eX * ((2-len)/2) * 0.25 * mySize_x + eY * mySize_y - eY * 0.25 * mySize_x + eX * 0.5 * mySize_x;
1899                         }
1900
1901                         HUD_Panel_DrawProgressBar(barpos, 1, barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1902                         if(rightcnt <= 5)
1903                                 drawpic_skin_expanding_two(picpos, rightname, '0.4 0.4 0' * mySize_x, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE, bound(0, (rightcnt - rightexact) / 0.5, 1));
1904                         else
1905                                 drawpic_skin(picpos, rightname, '0.4 0.4 0' * mySize_x, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1906                         HUD_DrawXNum(numpos, rightcnt, len, 0, 0.25 * mySize_x, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1907                 }
1908         }
1909 }
1910
1911 // Health/armor (#3)
1912 //
1913 void HUD_HealthArmor(void)
1914 {
1915         float id = HUD_PANEL_HEALTHARMOR;
1916         vector pos, mySize;
1917         pos = HUD_Panel_GetPos(id);
1918         mySize = HUD_Panel_GetSize(id);
1919
1920         HUD_Panel_DrawBg(id, pos, mySize, 0);
1921         float padding;
1922         padding = HUD_Panel_GetPadding(id);
1923         if(padding)
1924         {
1925                 pos += '1 1 0' * padding;
1926                 mySize -= '2 2 0' * padding;
1927         }
1928
1929         float armor, health;
1930         armor = getstati(STAT_ARMOR);
1931         health = getstati(STAT_HEALTH);
1932
1933         float fuel;
1934         fuel = getstati(GetAmmoStat(4)); // how much fuel do we have?
1935
1936         if(hud_configure)
1937         {
1938                 armor = 150;
1939                 health = 100;
1940                 fuel = 70;
1941         }
1942
1943         if(health <= 0)
1944                 return;
1945
1946         float len;
1947         vector barpos, barsize;
1948         vector picpos;
1949         vector numpos;
1950
1951         if(cvar("hud_healtharmor") == 2) // combined health and armor display
1952         {
1953                 vector v;
1954                 v = healtharmor_maxdamage(health, armor, armorblockpercent);
1955
1956                 float x;
1957                 x = floor(v_x + 1);
1958
1959                 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1960                         barpos = pos + eX * mySize_x - eX * mySize_x * min(1, x/400);
1961                         barsize = eX * mySize_x * min(1, x/400) + eY * mySize_y;
1962                         picpos = pos;
1963                         numpos = picpos + eX * 1.5 * mySize_y;
1964                 } else {
1965                         barpos = pos;
1966                         barsize = eX * mySize_x * min(1, x/400) + eY * mySize_y;
1967                         picpos = pos + eX * 3 * mySize_y;
1968                         numpos = pos;
1969                 }
1970
1971                 if(v_z) // NOT fully armored
1972                 {
1973                         HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor("health"), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1974                         drawpic_skin(picpos, "health", '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1975                         if(armor)
1976                                 drawpic_skin(picpos + eX * mySize_y, "armor", '0.5 0.5 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id) * armor / health, DRAWFLAG_NORMAL);
1977                 }
1978                 else
1979                 {
1980                         HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor("armor"), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1981                         drawpic_skin(picpos + eX * mySize_y, "health", '0.5 0.5 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id) * health / armor, DRAWFLAG_NORMAL);
1982                         if(armor)
1983                                 drawpic_skin(picpos, "armor", '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1984                 }
1985                 HUD_DrawXNum_Colored(numpos, x, 3, mySize_y, HUD_Panel_GetFgAlpha(id)); // draw the combined health and armor
1986
1987                 // fuel
1988                 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1989                         barpos = pos + eX * mySize_x - eX * mySize_x * min(1, fuel/100);
1990                         barsize = eX * mySize_x * min(1, fuel/100) + eY * 0.2 * mySize_y;
1991                 } else {
1992                         barpos = pos;
1993                         barsize = eX * mySize_x * min(1, fuel/100) + eY * 0.2 * mySize_y;
1994                 }
1995                 if(fuel)
1996                         HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor("fuel"), HUD_Panel_GetFgAlpha(id) * 0.8, DRAWFLAG_NORMAL);
1997         }
1998
1999         else
2000         {
2001                 string leftname, rightname;
2002                 float leftcnt, rightcnt;
2003                 float leftactive, rightactive;
2004                 float leftalpha, rightalpha;
2005                 if (cvar(strcat("hud_", HUD_Panel_GetName(id), "_flip"))) { // old style layout with armor left/top of health
2006                         leftname = "armor";
2007                         leftcnt = armor;
2008                         if(leftcnt)
2009                                 leftactive = 1;
2010                         leftalpha = min((armor+10)/55, 1);
2011
2012                         rightname = "health";
2013                         rightcnt = health;
2014                         rightactive = 1;
2015                         rightalpha = 1;
2016                 } else {
2017                         leftname = "health";
2018                         leftcnt = health;
2019                         leftactive = 1;
2020                         leftalpha = 1;
2021
2022                         rightname = "armor";
2023                         rightcnt = armor;
2024                         if(rightcnt)
2025                                 rightactive = 1;
2026                         rightalpha = min((armor+10)/55, 1);
2027                 }
2028
2029                 if (mySize_x/mySize_y > 5)
2030                 {
2031                         if(leftactive)
2032                         {
2033                                 len = strlen(ftos(leftcnt));
2034
2035                                 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
2036                                         barpos = pos + eX * 0.5 * mySize_x - eX * 0.5 * mySize_x * min(1, leftcnt/200);
2037                                         barsize = eX * 0.5 * mySize_x * min(1, leftcnt/200) + eY * mySize_y;
2038                                         picpos = pos + eX * 0.5 * mySize_x - eX * mySize_y;
2039                                         numpos = picpos - eX * 3 * 0.5 * mySize_y + eX * (3-len) * 0.5 * mySize_y + eY * 0.25 * mySize_y;
2040                                 } else {
2041                                         barpos = pos;
2042                                         barsize = eX * 0.5 * mySize_x * min(1, leftcnt/200) + eY * mySize_y;
2043                                         picpos = pos;
2044                                         numpos = picpos + eX * mySize_y + eY * 0.25 * mySize_y;
2045                                 }
2046
2047                                 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2048                                 drawpic_skin(picpos, leftname, '1 1 0' * mySize_y, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2049                                 HUD_DrawXNum_Colored(numpos, leftcnt, len, 0.5 * mySize_y, HUD_Panel_GetFgAlpha(id));
2050                         }
2051
2052                         if(rightactive)
2053                         {
2054                                 len = strlen(ftos(rightcnt));
2055
2056                                 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
2057                                         barpos = pos + eX * 0.5 * mySize_x;
2058                                         barsize = eX * 0.5 * mySize_x * min(1, rightcnt/200) + eY * mySize_y;
2059                                         picpos = pos + eX * 0.5 * mySize_x;
2060                                         numpos = picpos + eX * mySize_y - eX * (3-len) * 0.5 * mySize_y + eY * 0.25 * mySize_y;
2061                                 } else {
2062                                         barpos = pos + eX * mySize_x - eX * 0.5 * mySize_x * min(1, rightcnt/200);
2063                                         barsize = eX * 0.5 * mySize_x * min(1, rightcnt/200) + eY * mySize_y;
2064                                         picpos = pos + eX * mySize_x - eX * mySize_y;
2065                                         numpos = picpos - eX * 1.5 * mySize_y + eY * 0.25 * mySize_y;
2066                                 }
2067
2068                                 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2069                                 drawpic_skin(picpos, rightname, '1 1 0' * mySize_y, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2070                                 HUD_DrawXNum_Colored(numpos, rightcnt, 3, 0.5 * mySize_y, HUD_Panel_GetFgAlpha(id));
2071                         }
2072
2073                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
2074                                 barpos = pos + eX * mySize_x - eX * mySize_x * min(1, fuel/100);
2075                                 barsize = eX * mySize_x * min(1, fuel/100) + eY * 0.2 * mySize_y;
2076                         } else {
2077                                 barpos = pos;
2078                                 barsize = eX * mySize_x * min(1, fuel/100) + eY * 0.2 * mySize_y;
2079                         }
2080                         if(fuel)
2081                                 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor("fuel"), HUD_Panel_GetFgAlpha(id) * 0.8, DRAWFLAG_NORMAL);
2082                 }
2083                 else if (mySize_x/mySize_y > 2)
2084                 {
2085                         if(leftactive)
2086                         {
2087                                 len = strlen(ftos(leftcnt));
2088
2089                                 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
2090                                         barpos = pos + eX * mySize_x - eX * mySize_x * min(1, leftcnt/200);
2091                                         barsize = eX * mySize_x * min(1, leftcnt/200) + eY * 0.5 * mySize_y;
2092                                         picpos = pos + eX * mySize_x - eX * 0.5 * mySize_y;
2093                                         numpos = picpos - eX * len * 0.5 * mySize_y;
2094                                 } else {
2095                                         barpos = pos;
2096                                         barsize = eX * mySize_x * min(1, leftcnt/200) + eY * 0.5 * mySize_y;
2097                                         picpos = pos;
2098                                         numpos = picpos + eX * 0.5 * mySize_y;
2099                                 }
2100
2101                                 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2102                                 drawpic_skin(picpos, leftname, '0.5 0.5 0' * mySize_y, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2103                                 HUD_DrawXNum_Colored(numpos, leftcnt, len, 0.5 * mySize_y, HUD_Panel_GetFgAlpha(id));
2104                         }
2105
2106                         if(rightactive)
2107                         {
2108                                 len = strlen(ftos(rightcnt));
2109
2110                                 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
2111                                         barpos = pos + eX * mySize_x - eX * mySize_x * min(1, rightcnt/200) + eY * 0.5 * mySize_y;
2112                                         barsize = eX * mySize_x * min(1, rightcnt/200) + eY * 0.5 * mySize_y;
2113                                         picpos = pos + eX * mySize_x - eX * 0.5 * mySize_y + eY * 0.5 * mySize_y;
2114                                         numpos = picpos - eX * len * 0.5 * mySize_y;
2115                                 } else {
2116                                         barpos = pos + eY * 0.5 * mySize_y;
2117                                         barsize = eX * mySize_x * min(1, rightcnt/200) + eY * 0.5 * mySize_y;
2118                                         picpos = pos + eY * 0.5 * mySize_y;
2119                                         numpos = picpos + eX * 0.5 * mySize_y;
2120                                 }
2121
2122                                 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2123                                 drawpic_skin(picpos, rightname, '0.5 0.5 0' * mySize_y, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2124                                 HUD_DrawXNum_Colored(numpos, rightcnt, len, 0.5 * mySize_y, HUD_Panel_GetFgAlpha(id));
2125                         }
2126
2127                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
2128                                 barpos = pos + eX * mySize_x - eX * mySize_x * min(1, fuel/100);
2129                                 barsize = eX * mySize_x * min(1, fuel/100) + eY * 0.1 * mySize_y;
2130                         } else {
2131                                 barpos = pos;
2132                                 barsize = eX * mySize_x * min(1, fuel/100) + eY * 0.1 * mySize_y;
2133                         }
2134                         if(fuel)
2135                                 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor("fuel"), HUD_Panel_GetFgAlpha(id) * 0.8, DRAWFLAG_NORMAL);
2136                 }
2137                 else
2138                 {
2139                         if(leftactive)
2140                         {
2141                                 len = strlen(ftos(leftcnt));
2142
2143                                 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
2144                                         barpos = pos;
2145                                         barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, leftcnt/200);
2146                                         picpos = pos + eX * 0.05 * mySize_x;
2147                                         numpos = pos + eX * ((3-len)/2) * 0.25 * mySize_x + eY * 0.4 * mySize_x;
2148                                 } else {
2149                                         barpos = pos + eY * mySize_y - eY * mySize_y * min(1, leftcnt/200);
2150                                         barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, leftcnt/200);
2151                                         picpos = pos + eX * 0.05 * mySize_x + eY * mySize_y - eY * 0.566 * mySize_x;
2152                                         numpos = pos + eX * ((3-len)/2) * 0.25 * mySize_x + eY * mySize_y - eY * 0.166 * mySize_x;
2153                                 }
2154
2155                                 HUD_Panel_DrawProgressBar(barpos, 1, barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2156                                 drawpic_skin(picpos, leftname, '0.4 0.4 0' * mySize_x, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2157                                 HUD_DrawXNum_Colored(numpos, leftcnt, len, 0.166 * mySize_x, HUD_Panel_GetFgAlpha(id));
2158                         }
2159
2160                         if(rightactive)
2161                         {
2162                                 len = strlen(ftos(rightcnt));
2163
2164                                 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
2165                                         barpos = pos + eX * 0.5 * mySize_x;
2166                                         barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, rightcnt/200);
2167                                         picpos = pos + eX * 0.05 * mySize_x + eX * 0.5 * mySize_x;
2168                                         numpos = pos + eX * ((3-len)/2) * 0.25 * mySize_x + eY * 0.4 * mySize_x + eX * 0.5 * mySize_x;
2169                                 } else {
2170                                         barpos = pos + eY * mySize_y - eY * mySize_y * min(1, rightcnt/200) + eX * 0.5 * mySize_x;
2171                                         barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, rightcnt/200);
2172                                         picpos = pos + eX * 0.05 * mySize_x + eY * mySize_y - eY * 0.566 * mySize_x + eX * 0.5 * mySize_x;
2173                                         numpos = pos + eX * ((3-len)/2) * 0.25 * mySize_x + eY * mySize_y - eY * 0.166 * mySize_x + eX * 0.5 * mySize_x;
2174                                 }
2175
2176                                 HUD_Panel_DrawProgressBar(barpos, 1, barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2177                                 drawpic_skin(picpos, rightname, '0.4 0.4 0' * mySize_x, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2178                                 HUD_DrawXNum_Colored(numpos, rightcnt, len, 0.166 * mySize_x, HUD_Panel_GetFgAlpha(id));
2179                         }
2180
2181                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
2182                                 barpos = pos;
2183                                 barsize = eX * 0.05 * mySize_x + eY * mySize_y * min(1, fuel/100);
2184                         } else {
2185                                 barpos = pos + eY * mySize_y - eY * mySize_y * min(1, fuel/100);
2186                                 barsize = eX * 0.05 * mySize_x + eY * mySize_y * min(1, fuel/100);
2187                         }
2188                         if(fuel)
2189                                 HUD_Panel_DrawProgressBar(barpos, 1, barsize, HUD_Panel_GetProgressBarColor("fuel"), HUD_Panel_GetFgAlpha(id) * 0.8, DRAWFLAG_NORMAL);
2190                 }
2191         }
2192 }
2193
2194 // ___TODO___ !!!
2195 // Notification area (#4)
2196 //
2197
2198 string Weapon_SuicideMessage(float deathtype)
2199 {
2200         w_deathtype = deathtype;
2201         get_weaponinfo(DEATH_WEAPONOF(deathtype)).weapon_func(WR_SUICIDEMESSAGE);
2202         return w_deathtypestring;
2203 }
2204
2205 string Weapon_KillMessage(float deathtype)
2206 {
2207         w_deathtype = deathtype;
2208         get_weaponinfo(DEATH_WEAPONOF(deathtype)).weapon_func(WR_KILLMESSAGE);
2209         return w_deathtypestring;
2210 }
2211
2212 float killnotify_times[10];
2213 float killnotify_deathtype[10];
2214 string killnotify_attackers[10];
2215 string killnotify_victims[10];
2216 void HUD_KillNotify_Push(string attacker, string victim, float wpn)
2217 {
2218         float i;
2219         for (i = 9; i > 0; --i) {
2220                 killnotify_times[i] = killnotify_times[i-1];
2221                 killnotify_deathtype[i] = killnotify_deathtype[i-1];
2222                 if(killnotify_attackers[i])
2223                         strunzone(killnotify_attackers[i]);
2224                 killnotify_attackers[i] = strzone(killnotify_attackers[i-1]);
2225                 if(killnotify_victims[i])
2226                         strunzone(killnotify_victims[i]);
2227                 killnotify_victims[i] = strzone(killnotify_victims[i-1]);
2228         }
2229         killnotify_times[0] = time;
2230         killnotify_deathtype[0] = wpn;
2231         if(killnotify_attackers[0])
2232                 strunzone(killnotify_attackers[0]);
2233         killnotify_attackers[0] = strzone(attacker);
2234         if(killnotify_victims[0])
2235                 strunzone(killnotify_victims[0]);
2236         killnotify_victims[0] = strzone(victim);
2237 }
2238
2239 void HUD_KillNotify(string s1, string s2, string s3, float type, float msg)
2240 {
2241         float w;
2242         if(msg == MSG_SUICIDE) {
2243                 HUD_KillNotify_Push(s1, "", DEATH_KILL);
2244
2245                 // TODO: cl_gentle
2246                 w = DEATH_WEAPONOF(type);
2247                 if(WEP_VALID(w)) {
2248                         if (!HUD_Panel_CheckActive(4) || cvar("hud_notify_print"))
2249                                 print("^1", s1, "^1 ", Weapon_SuicideMessage(type), "\n");
2250                 }
2251                 else if (type == DEATH_KILL)
2252                         print ("^1",s1, "^1 couldn't take it anymore\n");
2253                 else if (type == DEATH_ROT)
2254                         print ("^1",s1, "^1 died\n");
2255                 else if (type == DEATH_NOAMMO)
2256                         print ("^7",s1, "^7 committed suicide. What's the point of living without ammo?\n");
2257                 else if (type == DEATH_CAMP)
2258                         print ("^1",s1, "^1 thought they found a nice camping ground\n");
2259                 else if (type == DEATH_MIRRORDAMAGE)
2260                         print ("^1",s1, "^1 didn't become friends with the Lord of Teamplay\n");
2261                 else if (type == DEATH_CHEAT)
2262                         print ("^1",s1, "^1 unfairly eliminated themself\n");
2263                 else if (type == DEATH_FIRE)
2264                         print ("^1",s1, "^1 burned to death\n");
2265                 else if (type != DEATH_TEAMCHANGE && type != DEATH_QUIET)
2266                         print ("^1",s1, "^1 couldn't resist the urge to self-destruct\n");
2267                 if (stof(s2) > 2) // killcount > 2
2268                         print ("^1",s1,"^1 ended it all after a ",s2," kill spree\n");
2269         } else if(msg == MSG_KILL) {
2270                 w = DEATH_WEAPONOF(type);
2271                 if(WEP_VALID(w)) {
2272                         HUD_KillNotify_Push(s2, s1, w);
2273                         if (!HUD_Panel_CheckActive(4) || cvar("hud_notify_print"))
2274                                 print("^1", s1, "^1 ", Weapon_KillMessage(type), "\n");
2275                 }
2276                 else if(type == KILL_TEAM || type == KILL_TEAM_SPREE) {
2277                                 if(cvar("cl_gentle")) {
2278                                         print ("^1", s1, "^1 took action against a team mate\n");
2279                                 } else {
2280                                         print ("^1", s1, "^1 mows down a team mate\n");
2281                                 }
2282                                 if (stof(s2) > 2 && type == KILL_TEAM_SPREE) {
2283                                         if(cvar("cl_gentle"))
2284                                                 print ("^1",s1,"^1 ended a ",s2," scoring spree by going against a team mate\n");
2285                                         else
2286                                                 print ("^1",s1,"^1 ended a ",s2," kill spree by killing a team mate\n");
2287                                 }
2288                                 else if (stof(s2) > 2) {
2289                                         if(cvar("cl_gentle"))
2290                                                 print ("^1",s1,"'s ^1",s2," scoring spree was ended by a team mate!\n");
2291                                         else
2292                                                 print ("^1",s1,"'s ^1",s2," kill spree was ended by a team mate!\n");
2293                                 }
2294                 }
2295                 else if(type == KILL_FIRST_BLOOD)
2296                         print("^1",s1, "^1 drew first blood", "\n");
2297                 else if (type == DEATH_TELEFRAG)
2298                         print ("^1",s1, "^1 was telefragged by ", s2, "\n");
2299                 else if (type == DEATH_DROWN) {
2300                         HUD_KillNotify_Push(s2, s1, DEATH_FALL);
2301                         print ("^1",s1, "^1 was drowned by ", s2, "\n");
2302                 }
2303                 else if (type == DEATH_SLIME) {
2304                         HUD_KillNotify_Push(s2, s1, DEATH_FALL);
2305                         print ("^1",s1, "^1 was slimed by ", s2, "\n");
2306                 }
2307                 else if (type == DEATH_LAVA) {
2308                         HUD_KillNotify_Push(s2, s1, DEATH_FALL);
2309                         print ("^1",s1, "^1 was cooked by ", s2, "\n");
2310                 }
2311                 else if (type == DEATH_FALL) {
2312                         HUD_KillNotify_Push(s2, s1, DEATH_FALL);
2313                         print ("^1",s1, "^1 was grounded by ", s2, "\n");
2314                 }
2315                 else if (type == DEATH_SHOOTING_STAR) {
2316                         HUD_KillNotify_Push(s2, s1, DEATH_FALL);
2317                         print ("^1",s1, "^1 was shot into space by ", s2, "\n");
2318                 }
2319                 else if (type == DEATH_SWAMP) {
2320                         HUD_KillNotify_Push(s2, s1, DEATH_FALL);
2321                         print ("^1",s1, "^1 was conserved by ", s2, "\n");
2322                 }
2323                 else if (type == DEATH_HURTTRIGGER && s3 != "")
2324                 {
2325                         HUD_KillNotify_Push(s2, s1, DEATH_FALL);
2326                         // p ?!?! :o
2327                         //if(p < 0)
2328                                 print("^1", s1, "^1 ", s3, " ", s2, "\n");
2329                         //else
2330                         //      bprint("^1", s1, "^1 ", substring(s3, 0, p), s2, "^1", substring(s3, p+1, strlen(s3) - (p+1)), "\n");
2331                 }
2332                 else if(type == DEATH_SBCRUSH)
2333                         print ("^1",s1, "^1 was crushed by ^1", s2, "\n");
2334                 else if(type == DEATH_SBMINIGUN)
2335                         print ("^1",s1, "^1 got shredded by ^1", s2, "\n");
2336                 else if(type == DEATH_SBROCKET)
2337                         print ("^1",s1, "^1 was blased to bits by ^1", s2, "\n");
2338                 else if(type == DEATH_SBBLOWUP)
2339                         print ("^1",s1, "^1 got cought in the destruction of ^1", s2, "'s vehicle\n");
2340
2341                 else if(type == DEATH_WAKIGUN)
2342                         print ("^1",s1, "^1 was bolted down by ^1", s2, "\n");
2343                 else if(type == DEATH_WAKIROCKET)
2344                         print ("^1",s1, "^1 could find no shelter from ^1", s2, "'s rockets\n");
2345                 else if(type == DEATH_WAKIBLOWUP)
2346                         print ("^1",s1, "^1 dies when ^1", s2, "'s wakizashi dies.\n");
2347
2348                 else if(type == DEATH_TURRET)
2349                         print ("^1",s1, "^1 was pushed into the line of fire by ^1", s2, "\n");
2350                 else if(type == DEATH_TOUCHEXPLODE)
2351                         print ("^1",s1, "^1 was pushed into an accident by ^1", s2, "\n");
2352                 else if(type == DEATH_CHEAT)
2353                         print ("^1",s1, "^1 was unfairly eliminated by ^1", s2, "\n");
2354                 else if (type == DEATH_FIRE)
2355                         print ("^1",s1, "^1 was burnt to death by ^1", s2, "\n");
2356                 else if (type == DEATH_CUSTOM)
2357                         print ("^1",s1, "^1 ", s2, "\n");
2358                 else
2359                         print ("^1",s1, "^1 was fragged by ", s2, "\n");
2360         } else if(msg == MSG_SPREE) {
2361                 if(type == KILL_END_SPREE) {
2362                         if(cvar("cl_gentle"))
2363                                 print ("^1",s1,"'s ^1", s2, " scoring spree was ended by ", s3, "\n");
2364                         else
2365                                 print ("^1",s1,"'s ^1", s2, " kill spree was ended by ", s3, "\n");
2366                 } else if(type == KILL_SPREE) {
2367                         if(cvar("cl_gentle"))
2368                                 print ("^1",s1,"^1 made ",s2," scores in a row\n");
2369                         else
2370                                 print ("^1",s1,"^1 has ",s2," frags in a row\n");
2371                 } else if(type == KILL_SPREE_3) {
2372                         if(cvar("cl_gentle"))
2373                                 print (s1,"^7 made a ^1TRIPLE SCORE\n");
2374                         else
2375                                 print (s1,"^7 made a ^1TRIPLE FRAG\n");
2376                 } else if(type == KILL_SPREE_5) {
2377                         if(cvar("cl_gentle"))
2378                                 print (s1,"^7 unleashes ^1SCORING RAGE\n");
2379                         else
2380                                 print (s1,"^7 unleashes ^1RAGE\n");
2381                 } else if(type == KILL_SPREE_10) {
2382                         if(cvar("cl_gentle"))
2383                                 print (s1,"^7 made ^1TEN SCORES IN A ROW!\n");
2384                         else
2385                                 print (s1,"^7 starts the ^1MASSACRE!\n");
2386                 } else if(type == KILL_SPREE_15) {
2387                         if(cvar("cl_gentle"))
2388                                 print (s1,"^7 made ^1FIFTEEN SCORES IN A ROW!\n");
2389                         else
2390                                 print (s1,"^7 executes ^1MAYHEM!\n");
2391                 } else if(type == KILL_SPREE_20) {
2392                         if(cvar("cl_gentle"))
2393                                 print (s1,"^7 made ^1TWENTY SCORES IN A ROW!\n");
2394                         else
2395                                 print (s1,"^7 is a ^1BERSERKER!\n");
2396                 } else if(type == KILL_SPREE_25) {
2397                         if(cvar("cl_gentle"))
2398                                 print (s1,"^7 made ^1TWENTY FIFE SCORES IN A ROW!\n");
2399                         else
2400                                 print (s1,"^7 inflicts ^1CARNAGE!\n");
2401                 } else if(type == KILL_SPREE_30) {
2402                         if(cvar("cl_gentle"))
2403                                 print (s1,"^7 made ^1THIRTY SCORES IN A ROW!\n");
2404                         else
2405                                 print (s1,"^7 unleashes ^1ARMAGEDDON!\n");
2406                 }
2407         } else if(msg == MSG_KILL_ACTION) { // wtf is this? isnt it basically the same as MSG_SUICIDE?
2408                 HUD_KillNotify_Push(s1, "", DEATH_KILL);
2409                 if (type == DEATH_DROWN) {
2410                         if(cvar("cl_gentle"))
2411                                 print ("^1",s1, "^1 was in the water for too long\n");
2412                         else
2413                                 print ("^1",s1, "^1 drowned\n");
2414                 }
2415                 else if (type == DEATH_SLIME)
2416                         print ("^1",s1, "^1 was slimed\n");
2417                 else if (type == DEATH_LAVA) {
2418                         if(cvar("cl_gentle"))
2419                                 print ("^1",s1, "^1 found a hot place\n");
2420                         else
2421                                 print ("^1",s1, "^1 turned into hot slag\n");
2422                 }
2423                 else if (type == DEATH_FALL) {
2424                         if(cvar("cl_gentle"))
2425                                 print ("^1",s1, "^1 tested gravity (and it worked)\n");
2426                         else
2427                                 print ("^1",s1, "^1 hit the ground with a crunch\n");
2428                 }
2429                 else if (type == DEATH_SHOOTING_STAR)
2430                         print ("^1",s1, "^1 became a shooting star\n");
2431                 else if (type == DEATH_SWAMP) {
2432                         if(cvar("cl_gentle"))
2433                                 print ("^1",s1, "^1 discovered a swamp\n");
2434                         else
2435                                 print ("^1",s1, "^1 is now conserved for centuries to come\n");
2436                 }
2437                 else if(type == DEATH_TURRET)
2438                         print ("^1",s1, "^1 was mowed down by a turret \n");
2439                 else if (type == DEATH_CUSTOM)
2440                         print ("^1",s1, "^1 ", s2, "\n");
2441                 else if(type == DEATH_TOUCHEXPLODE)
2442                         print ("^1",s1, "^1 died in an accident\n");
2443                 else if(type == DEATH_CHEAT)
2444                         print ("^1",s1, "^1 was unfairly eliminated\n");
2445                 else if(type == DEATH_FIRE) {
2446                         if(cvar("cl_gentle"))
2447                                 print ("^1",s1, "^1 felt a little hot\n");
2448                         else
2449                                 print ("^1",s1, "^1 burnt to death\n");
2450                 }
2451                 else {
2452                         if(cvar("cl_gentle"))
2453                                 print ("^1",s1, "^1 needs a restart\n");
2454                         else
2455                                 print ("^1",s1, "^1 died\n");
2456                 }
2457         } else if(msg == MSG_KILL_ACTION_SPREE) {
2458                 HUD_KillNotify_Push(s1, "", DEATH_KILL);
2459                 if(cvar("cl_gentle"))
2460                         print ("^1",s1,"^1 needs a restart after a ",s2," scoring spree\n");
2461                 else
2462                         print ("^1",s1,"^1 died with a ",s2," kill spree\n");
2463         } else if(msg == MSG_INFO) {
2464                 if(type == INFO_GOTFLAG) {
2465                         HUD_KillNotify_Push(s1, s2, INFO_GOTFLAG);
2466                         print(s1, "^7 got the ", s2, "\n");
2467                 } else if(type == INFO_LOSTFLAG) {
2468                         HUD_KillNotify_Push(s1, s2, INFO_LOSTFLAG);
2469                         print(s1, "^7 lost the ", s2, "\n");
2470                 } else if(type == INFO_PICKUPFLAG) {
2471                         HUD_KillNotify_Push(s1, s2, INFO_GOTFLAG);
2472                         print(s1, "^7 picked up the ", s2, "\n");
2473                 } else if(type == INFO_RETURNFLAG) {
2474                         HUD_KillNotify_Push(s1, s2, INFO_RETURNFLAG);
2475                         print(s1, "^7 returned the ", s2, "\n");
2476                 }
2477         }
2478
2479 }
2480
2481 #define DAMAGE_CENTERPRINT_SPACER NEWLINES
2482
2483 void HUD_Centerprint(string s1, float type, float msg)
2484 {
2485         if(msg == MSG_SUICIDE) {
2486                 if (type == DEATH_TEAMCHANGE) {
2487                         centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "You are now on: ", s1));
2488                 } else if (type == DEATH_AUTOTEAMCHANGE) {
2489                         centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "You have been moved into a different team to improve team balance\nYou are now on: ", s1));
2490                 } else if (type == DEATH_CAMP) {
2491                         if(cvar("cl_gentle"))
2492                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Reconsider your tactics, camper!"));
2493                         else
2494                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Die camper!"));
2495                 } else if (type == DEATH_NOAMMO) {
2496                         if(cvar("cl_gentle"))
2497                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You are reinserted into the game for running out of ammo..."));
2498                         else
2499                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You were killed for running out of ammo..."));
2500                 } else if (type == DEATH_ROT) {
2501                         if(cvar("cl_gentle"))
2502                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You need to preserve your health"));
2503                         else
2504                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You grew too old without taking your medicine"));
2505                 } else if (type == DEATH_MIRRORDAMAGE) {
2506                         if(cvar("cl_gentle"))
2507                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Don't go against team mates!"));
2508                         else
2509                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Don't shoot your team mates!"));
2510                 } else if (type == DEATH_QUIET) {
2511                         // do nothing
2512                 } else if (type == DEATH_KILL) {
2513                         if(cvar("cl_gentle"))
2514                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You need to be more careful!"));
2515                         else
2516                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You killed your own dumb self!"));
2517                 }
2518         } else if(msg == MSG_KILL) {
2519                 if (type == KILL_TEAM) {
2520                         if(cvar("cl_gentle")) {
2521                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Moron! You went against a team mate!"));
2522                         } else {
2523                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Moron! You fragged ", s1, ", a team mate!"));
2524                         }
2525                 } else if (type == KILL_FIRST_BLOOD) {
2526                         if(cvar("cl_gentle")) {
2527                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1First score"));
2528                         } else {
2529                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1First blood"));
2530                         }
2531                 } else if (type == KILL_FIRST_VICTIM) {
2532                         if(cvar("cl_gentle")) {
2533                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1First casualty"));
2534                         } else {
2535                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1First victim"));
2536                         }
2537                 } else if (type == KILL_TYPEFRAG) {
2538                         if(cvar("cl_gentle")) {
2539                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You scored against ^7", s1, "^7 who was typing!"));
2540                         } else {
2541                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You typefragged ^7", s1));
2542                         }
2543                 } else if (type == KILL_TYPEFRAGGED) {
2544                         if(cvar("cl_gentle")) {
2545                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You were scored against by ^7", s1, "^7 while you were typing!"));
2546                         } else {
2547                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You were typefragged by ^7", s1));
2548                         }
2549                 } else if (type == KILL_FRAG) {
2550                         if(cvar("cl_gentle")) {
2551                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^4You scored against ^7", s1));
2552                         } else {
2553                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^4You fragged ^7", s1));
2554                         }
2555                 } else if (type == KILL_FRAGGED) {
2556                         if(cvar("cl_gentle")) {
2557                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^4You were scored against by ^7", s1));
2558                         } else {
2559                                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^4You were fragged by ^7", s1));
2560                         }
2561                 }
2562         } else if(msg == MSG_KILL_ACTION) {
2563                 // TODO: invent more centerprints here?
2564                 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Watch your step!", s1));
2565         }
2566 }
2567
2568 void HUD_Notify (void)
2569 {
2570         float id = HUD_PANEL_NOTIFY;
2571         vector pos, mySize;
2572         pos = HUD_Panel_GetPos(id);
2573         mySize = HUD_Panel_GetSize(id);
2574
2575         HUD_Panel_DrawBg(id, pos, mySize, 0);
2576         float padding;
2577         padding = HUD_Panel_GetPadding(id);
2578         if(padding)
2579         {
2580                 pos += '1 1 0' * padding;
2581                 mySize -= '2 2 0' * padding;
2582         }
2583
2584         float entries, height;
2585         entries = bound(1, floor(12 * mySize_y/mySize_x), 10);
2586         height = mySize_y/entries;
2587         
2588         vector fontsize;
2589         fontsize = '0.5 0.5 0' * height;
2590
2591         float a;
2592         float when;
2593         when = cvar("hud_notify_time");
2594         float fadetime;
2595         fadetime = cvar("hud_notify_fadetime");
2596
2597         string s;
2598
2599         vector pos_attacker, pos_victim;
2600         vector weap_pos;
2601         float width_attacker, width_victim;
2602         string attacker, victim;
2603
2604         float i, j;
2605         for(j = 0; j < entries; ++j)
2606         {
2607                 if(cvar("hud_notify_flip"))
2608                         i = j;
2609                 else // rather nasty hack for ordering items from the bottom up
2610                         i = entries - j - 1;
2611
2612                 if(fadetime)
2613                 {
2614                         if(killnotify_times[j] + when > time)
2615                                 a = 1;
2616                         else
2617                                 a = bound(0, (killnotify_times[j] + when + fadetime - time) / fadetime, 1);
2618                 }
2619                 else
2620                 {
2621                         if(killnotify_times[j] + when > time)
2622                                 a = 1;
2623                         else
2624                                 a = 0;
2625                 }
2626
2627                 // TODO: maybe print in team colors?
2628                 // TODO: maybe this could be cleaned up somehow...
2629                 //
2630                 // X [did action to] Y
2631                 if(hud_configure || WEP_VALID(killnotify_deathtype[j]) || killnotify_deathtype[j] == DEATH_FALL)
2632                 {
2633                         if(hud_configure)
2634                         {
2635                                 attacker = textShortenToWidth("Player1", 0.5 * mySize_x - height, fontsize, stringwidth_colors);
2636                                 victim = textShortenToWidth("Player2", 0.5 * mySize_x - height, fontsize, stringwidth_colors);
2637                                 a = bound(0, (when - j) / 4, 1);
2638                         }
2639                         else
2640                         {
2641                                 attacker = textShortenToWidth(killnotify_attackers[j], 0.5 * mySize_x - height, fontsize, stringwidth_colors);
2642                                 victim = textShortenToWidth(killnotify_victims[j], 0.5 * mySize_x - height, fontsize, stringwidth_colors);
2643                         }
2644                         width_attacker = stringwidth(attacker, TRUE, fontsize);
2645                         width_victim = stringwidth(victim, TRUE, fontsize);
2646                         pos_attacker = pos + eX * 0.5 * ((0.5 * mySize_x - height) - width_attacker) + eY * 0.5 * fontsize_y + eY * i * height;
2647                         pos_victim = pos + eX * 0.5 * ((0.5 * mySize_x - height) - width_victim) + eY * 0.5 * fontsize_y + eX * 0.5 * mySize_x + eX * height + eY * i * height;
2648                         weap_pos = pos + eX * 0.5 * mySize_x - eX * height + eY * i * height;
2649
2650                         if(hud_configure) // example actions for config mode
2651                         {
2652                                 drawpic_skin(weap_pos, strcat("weapon", "electro"), '2 1 0' * height, '1 1 1', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2653                                 drawcolorcodedstring(pos_attacker, attacker, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2654                                 drawcolorcodedstring(pos_victim, victim, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2655                         }
2656                         else if(WEP_VALID(killnotify_deathtype[j]))
2657                         {
2658                                 self = get_weaponinfo(killnotify_deathtype[j]);
2659                                 drawpic_skin(weap_pos, strcat("weapon", self.netname), '2 1 0' * height, '1 1 1', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2660                                 drawcolorcodedstring(pos_attacker, attacker, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2661                                 drawcolorcodedstring(pos_victim, victim, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2662                         }
2663                         else if(killnotify_deathtype[j] == DEATH_FALL)
2664                         {
2665                                 drawpic_skin(weap_pos, "notify_pushoffedge", '2 1 0' * height, '1 1 1', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2666                                 drawcolorcodedstring(pos_attacker, attacker, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2667                                 drawcolorcodedstring(pos_victim, victim, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2668                         }
2669                 }
2670
2671                 // Y [used by] X
2672                 else
2673                 {
2674                         attacker = textShortenToWidth(killnotify_attackers[j], mySize_x - 2 * height, fontsize, stringwidth_colors);
2675
2676                         width_attacker = stringwidth(attacker, TRUE, fontsize);
2677                         pos_attacker = pos + eX * 0.5 * (mySize_x - width_attacker + 2 * height) + eY * 0.5 * fontsize_y + eY * i * height;
2678
2679                         weap_pos = pos + eX * 0.5 * (mySize_x - width_attacker) - eX * height + eY * i * height;
2680                         if(killnotify_deathtype[j] == DEATH_KILL)
2681                         {
2682                                 drawpic_skin(weap_pos, "notify_selfkill", '2 1 0' * height, '1 1 1', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2683                                 drawcolorcodedstring(pos_attacker, attacker, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2684                         }
2685                         else if(killnotify_deathtype[j] == INFO_GOTFLAG)
2686                         {
2687                                 if(killnotify_victims[j] == "^1RED^7 flag")
2688                                         s = "red";
2689                                 else
2690                                         s = "blue";
2691                                 drawpic_skin(weap_pos, strcat("flag_", s, "_carrying"), '1 1 0' * height, '1 1 1', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2692                                 drawcolorcodedstring(pos_attacker, attacker, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2693                         }
2694                         else if(killnotify_deathtype[j] == INFO_RETURNFLAG)
2695                         {
2696                                 if(killnotify_victims[j] == "^1RED^7 flag")
2697                                         s = "red";
2698                                 else
2699                                         s = "blue";
2700                                 drawpic_skin(weap_pos, strcat("flag_", s, "_taken"), '1 1 0' * height, '1 1 1', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2701                                 drawcolorcodedstring(pos_attacker, attacker, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2702                         }
2703                         else if(killnotify_deathtype[j] == INFO_LOSTFLAG)
2704                         {
2705                                 if(killnotify_victims[j] == "^1RED^7 flag")
2706                                         s = "red";
2707                                 else
2708                                         s = "blue";
2709                                 drawpic_skin(weap_pos, strcat("flag_", s, "_lost"), '1 1 0' * height, '1 1 1', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2710                                 drawcolorcodedstring(pos_attacker, attacker, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2711                         }
2712                 }
2713         }
2714         /* This will come later.
2715         string s;
2716         entity tm;
2717         if(spectatee_status && !intermission)
2718         {
2719                 drawfont = hud_bigfont;
2720                 if(spectatee_status == -1)
2721                         s = "^1Observing";
2722                 else
2723                         s = GetPlayerName(spectatee_status - 1);
2724                 // spectated player name between HUD and chat area, aligned to the left
2725                 pos_x = 0;
2726                 pos_y = - 50 - hud_fontsize_spec_y;
2727                 s = textShortenToWidth(s, vid_conwidth/2.5, hud_fontsize_spec, stringwidth_colors);
2728                 drawcolorcodedstring(pos, s, hud_fontsize_spec, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2729                 drawfont = hud_font;
2730
2731                 // spectator text in the upper right corner
2732                 if(spectatee_status == -1)
2733                         s = strcat("^1Press ^3", getcommandkey("primary fire", "+attack"), "^1 to spectate");
2734                 else
2735                         s = strcat("^1Press ^3", getcommandkey("primary fire", "+attack"), "^1 for another player");
2736
2737                 if(spectatee_status == -1)
2738                         s = strcat("^1Use ^3", getcommandkey("next weapon", "weapnext"), "^1 or ^3", getcommandkey("previous weapon", "weapprev"), "^1 to change the speed");
2739                 else
2740                         s = strcat("^1Press ^3", getcommandkey("secondary fire", "+attack2"), "^1 to observe");
2741
2742                 s = strcat("^1Press ^3", getcommandkey("server info", "+show_info"), "^1 for gamemode info");
2743
2744                 if(gametype == GAME_ARENA)
2745                         s = "^1Wait for your turn to join";
2746                 else if(gametype == GAME_LMS)
2747                 {
2748                         entity sk;
2749                         sk = playerslots[player_localentnum - 1];
2750                         if(sk.(scores[ps_primary]) >= 666)
2751                                 s = "^1Match has already begun";
2752                         else if(sk.(scores[ps_primary]) > 0)
2753                                 s = "^1You have no more lives left";
2754                         else
2755                                 s = strcat("^1Press ^3", getcommandkey("jump", "+jump"), "^1 to join");
2756                 }
2757                 else
2758                         s = strcat("^1Press ^3", getcommandkey("jump", "+jump"), "^1 to join");
2759
2760                 //show restart countdown:
2761                 if (time < getstatf(STAT_GAMESTARTTIME)) {
2762                         float countdown;
2763                         //we need to ceil, otherwise the countdown would be off by .5 when using round()
2764                         countdown = ceil(getstatf(STAT_GAMESTARTTIME) - time);
2765                         s = strcat("^1Game starts in ^3", ftos(countdown), "^1 seconds");
2766                 }
2767         }
2768         if(warmup_stage && !intermission)
2769         {
2770                 s = "^2Currently in ^1warmup^2 stage!";
2771         }
2772
2773         // move more important stuff more to the middle so its more visible
2774
2775         string blinkcolor;
2776         if(mod(time, 1) >= 0.5)
2777                 blinkcolor = "^1";
2778         else
2779                 blinkcolor = "^3";
2780
2781         if(ready_waiting && !intermission && !spectatee_status)
2782         {
2783                 if(ready_waiting_for_me)
2784                 {
2785                         if(warmup_stage)
2786                                 s = strcat(blinkcolor, "Press ^3", getcommandkey("ready", "ready"), blinkcolor, " to end warmup");
2787                         else
2788                                 s = strcat(blinkcolor, "Press ^3", getcommandkey("ready", "ready"), blinkcolor, " once you are ready");
2789                 }
2790                 else
2791                 {
2792                         if(warmup_stage)
2793                                 s = strcat("^2Waiting for others to ready up to end warmup...");
2794                         else
2795                                 s = strcat("^2Waiting for others to ready up...");
2796                 }
2797         }
2798         else if(warmup_stage && !intermission && !spectatee_status)
2799         {
2800                 s = strcat("^2Press ^3", getcommandkey("ready", "ready"), "^2 to end warmup");
2801         }
2802
2803         if(teamplay && !intermission && !spectatee_status && gametype != GAME_CA && teamnagger)
2804         {
2805                 float ts_min, ts_max;
2806                 tm = teams.sort_next;
2807                 if (tm)
2808                 {
2809                         for(; tm.sort_next; tm = tm.sort_next)
2810                         {
2811                                 if(!tm.team_size || tm.team == COLOR_SPECTATOR)
2812                                         continue;
2813                                 if(!ts_min) ts_min = tm.team_size;
2814                                 else ts_min = min(ts_min, tm.team_size);
2815                                 if(!ts_max) ts_max = tm.team_size;
2816                                 else ts_max = max(ts_max, tm.team_size);
2817                         }
2818                         if ((ts_max - ts_min) > 1)
2819                         {
2820                                 s = strcat(blinkcolor, "Teamnumbers are unbalanced!");
2821                                 tm = GetTeam(myteam, false);
2822                                 if (tm)
2823                                 if (tm.team != COLOR_SPECTATOR)
2824                                 if (tm.team_size == ts_max)
2825                                         s = strcat(s, " Press ^3", getcommandkey("team menu", "menu_showteamselect"), blinkcolor, " to adjust");
2826
2827                         }
2828                 }
2829         }
2830         */
2831 }
2832
2833 // Timer (#5)
2834 //
2835 void HUD_Timer(void)
2836 {
2837         float id = HUD_PANEL_TIMER;
2838         vector pos, mySize;
2839         pos = HUD_Panel_GetPos(id);
2840         mySize = HUD_Panel_GetSize(id);
2841
2842         HUD_Panel_DrawBg(id, pos, mySize, 0);
2843         float padding;
2844         padding = HUD_Panel_GetPadding(id);
2845         if(padding)
2846         {
2847                 pos += '1 1 0' * padding;
2848                 mySize -= '2 2 0' * padding;
2849         }
2850
2851         float timelimit, elapsedTime, minutes, seconds, timeleft, minutesLeft, secondsLeft;
2852
2853         timelimit = getstatf(STAT_TIMELIMIT);
2854
2855         timeleft = max(0, timelimit * 60 + getstatf(STAT_GAMESTARTTIME) - time);
2856         timeleft = ceil(timeleft);
2857         minutesLeft = floor(timeleft / 60);
2858         secondsLeft = timeleft - minutesLeft*60;
2859
2860         vector timer_color;
2861         if(minutesLeft >= 5 || warmup_stage || timelimit == 0) //don't use red or yellow in warmup or when there is no timelimit
2862                 timer_color = '1 1 1'; //white
2863         else if(minutesLeft >= 1)
2864                 timer_color = '1 1 0'; //yellow
2865         else
2866                 timer_color = '1 0 0'; //red
2867
2868         if (cvar("hud_timer_increment") || timelimit == 0 || warmup_stage) {
2869                 if (time < getstatf(STAT_GAMESTARTTIME)) {
2870                         //while restart is still active, show 00:00
2871                         minutes = seconds = 0;
2872                 } else {
2873                         elapsedTime = floor(time - getstatf(STAT_GAMESTARTTIME)); //127
2874                         minutes = floor(elapsedTime / 60);
2875                         seconds = elapsedTime - minutes*60;
2876                 }
2877         } else {
2878                 minutes = minutesLeft;
2879                 seconds = secondsLeft;
2880         }
2881
2882         if(minutes > 999)
2883                 seconds = 99;
2884         minutes = min(minutes, 999);
2885         if(minutesLeft >= 1 || cvar("hud_timer_increment") || timelimit == 0 || warmup_stage) {
2886                 HUD_DrawXNum(pos + eX * mySize_x - eX * 5.1 * mySize_y, minutes, 3, 0, mySize_y, timer_color, 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2887                 drawpic_skin(pos + eX * mySize_x - eX * 2.57 * mySize_y, "num_colon", '1 1 0' * mySize_y, timer_color, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2888         }
2889         HUD_DrawXNum(pos + eX * mySize_x - eX * 2 * mySize_y, seconds, -2, 0, mySize_y, timer_color, 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2890 }
2891
2892 // Radar (#6)
2893 //
2894 void HUD_Radar(void)
2895 {
2896         float id = HUD_PANEL_RADAR;
2897         vector pos, mySize;
2898         pos = HUD_Panel_GetPos(id);
2899         mySize = HUD_Panel_GetSize(id);
2900
2901         HUD_Panel_DrawBg(id, pos, mySize, 0);
2902         float padding;
2903         padding = HUD_Panel_GetPadding(id);
2904         if(padding)
2905         {
2906                 pos += '1 1 0' * padding;
2907                 mySize -= '2 2 0' * padding;
2908         }
2909
2910         local float color1, color2; // color already declared as a global in hud.qc
2911         local vector rgb;
2912         local entity tm;
2913         float scale2d, normalsize, bigsize;
2914         float f;
2915
2916         teamradar_origin2d = pos + 0.5 * mySize;
2917         teamradar_size2d = mySize;
2918
2919         if(minimapname == "")
2920                 return;
2921
2922         teamradar_loadcvars();
2923
2924         switch(hud_radar_zoommode)
2925         {
2926                 default:
2927                 case 0:
2928                         f = current_zoomfraction;
2929                         break;
2930                 case 1:
2931                         f = 1 - current_zoomfraction;
2932                         break;
2933                 case 2:
2934                         f = 0;
2935                         break;
2936                 case 3:
2937                         f = 1;
2938                         break;
2939         }
2940
2941         switch(hud_radar_rotation)
2942         {
2943                 case 0:
2944                         teamradar_angle = view_angles_y - 90;
2945                         break;
2946                 default:
2947                         teamradar_angle = 90 * hud_radar_rotation;
2948                         break;
2949         }
2950
2951         scale2d = vlen_maxnorm2d(mi_picmax - mi_picmin);
2952         teamradar_size2d = mySize;
2953
2954         teamradar_extraclip_mins = teamradar_extraclip_maxs = '0 0 0'; // we always center
2955
2956         // pixels per world qu to match the teamradar_size2d_x range in the longest dimension
2957         if(hud_radar_rotation == 0)
2958         {
2959                 // max-min distance must fit the radar in any rotation
2960                 bigsize = vlen_minnorm2d(teamradar_size2d) * scale2d / (1.05 * vlen2d(mi_max - mi_min));
2961         }
2962         else
2963         {
2964                 vector c0, c1, c2, c3, span;
2965                 c0 = rotate(mi_min, teamradar_angle * DEG2RAD);
2966                 c1 = rotate(mi_max, teamradar_angle * DEG2RAD);
2967                 c2 = rotate('1 0 0' * mi_min_x + '0 1 0' * mi_max_y, teamradar_angle * DEG2RAD);
2968                 c3 = rotate('1 0 0' * mi_max_x + '0 1 0' * mi_min_y, teamradar_angle * DEG2RAD);
2969                 span = '0 0 0';
2970                 span_x = max4(c0_x, c1_x, c2_x, c3_x) - min4(c0_x, c1_x, c2_x, c3_x);
2971                 span_y = max4(c0_y, c1_y, c2_y, c3_y) - min4(c0_y, c1_y, c2_y, c3_y);
2972
2973                 // max-min distance must fit the radar in x=x, y=y
2974                 bigsize = min(
2975                         teamradar_size2d_x * scale2d / (1.05 * span_x),
2976                         teamradar_size2d_y * scale2d / (1.05 * span_y)
2977                 );
2978         }
2979
2980         normalsize = vlen_maxnorm2d(teamradar_size2d) * scale2d / hud_radar_scale;
2981         if(bigsize > normalsize)
2982                 normalsize = bigsize;
2983
2984         teamradar_size =
2985                   f * bigsize
2986                 + (1 - f) * normalsize;
2987         teamradar_origin3d_in_texcoord = teamradar_3dcoord_to_texcoord(
2988                   f * (mi_min + mi_max) * 0.5
2989                 + (1 - f) * view_origin);
2990
2991         color1 = GetPlayerColor(player_localentnum-1);
2992         rgb = GetTeamRGB(color1);
2993
2994         drawsetcliparea(
2995                 pos_x,
2996                 pos_y,
2997                 mySize_x,
2998                 mySize_y
2999         );
3000
3001         draw_teamradar_background(hud_radar_background_alpha, hud_radar_foreground_alpha);
3002
3003         for(tm = world; (tm = find(tm, classname, "radarlink")); )
3004                 draw_teamradar_link(tm.origin, tm.velocity, tm.team);
3005         for(tm = world; (tm = findflags(tm, teamradar_icon, 0xFFFFFF)); )
3006                 draw_teamradar_icon(tm.origin, tm.teamradar_icon, tm, tm.teamradar_color, HUD_Panel_GetFgAlpha(id));
3007         for(tm = world; (tm = find(tm, classname, "entcs_receiver")); )
3008         {
3009                 color2 = GetPlayerColor(tm.sv_entnum);
3010                 //if(color == COLOR_SPECTATOR || color == color2)
3011                         draw_teamradar_player(tm.origin, tm.angles, GetTeamRGB(color2));
3012         }
3013         draw_teamradar_player(view_origin, view_angles, '1 1 1');
3014
3015         drawresetcliparea();
3016 };
3017
3018 // Score (#7)
3019 //
3020 void HUD_Score(void)
3021 {
3022         float id = HUD_PANEL_SCORE;
3023         vector pos, mySize;
3024         pos = HUD_Panel_GetPos(id);
3025         mySize = HUD_Panel_GetSize(id);
3026
3027         HUD_Panel_DrawBg(id, pos, mySize, 0);
3028         float padding;
3029         padding = HUD_Panel_GetPadding(id);
3030         if(padding)
3031         {
3032                 pos += '1 1 0' * padding;
3033                 mySize -= '2 2 0' * padding;
3034         }
3035
3036         float score, distribution, leader;
3037         float score_len, distr_len;
3038         vector distribution_color;
3039         entity tm, pl, me;
3040         me = (spectatee_status > 0) ? playerslots[spectatee_status - 1] : playerslots[player_localentnum - 1];
3041
3042         // TODO... this (race part) still uses constant coordinates :/
3043         if((scores_flags[ps_primary] & SFL_TIME) && !teamplay) { // race/cts record display on HUD
3044                 /*pl = players.sort_next;
3045                 if(pl == me)
3046                         pl = pl.sort_next;
3047                 if(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)
3048                         if(pl.scores[ps_primary] == 0)
3049                                 pl = world;
3050
3051                 score = me.(scores[ps_primary]);
3052
3053                 float racemin, racesec, racemsec;
3054                 float distsec, distmsec, minusplus;
3055
3056                 racemin = floor(score/(60 * TIME_FACTOR));
3057                 racesec = floor((score - racemin*(60 * TIME_FACTOR))/TIME_FACTOR);
3058                 racemsec = score - racemin*60*TIME_FACTOR - racesec*TIME_FACTOR;
3059
3060                 if (pl && ((!(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)) || score)) {
3061                         // distribution display
3062                         distribution = me.(scores[ps_primary]) - pl.(scores[ps_primary]);
3063
3064                         if (distribution < TIME_FACTOR && distribution > -TIME_FACTOR)
3065                                 distmsec = fabs(distribution);
3066                         else {
3067                                 distsec = floor(fabs(distribution)/TIME_FACTOR);
3068                                 distmsec = fabs(distribution) - distsec*TIME_FACTOR;
3069                                 if (distribution < 0)
3070                                         distsec = -distsec;
3071                         }
3072
3073                         if (distribution <= 0) {
3074                                 distribution_color = eY;
3075                                 minusplus = 1; // minusplus 1: always prefix with minus sign
3076                         }
3077                         else {
3078                                 distribution_color = eX;
3079                                 minusplus = 2; // minusplus 1: always prefix with plus sign
3080                         }
3081                         HUD_DrawXNum(bottomright - '0 48 0' - '16 0 0' * TIME_DECIMALS, distmsec, -TIME_DECIMALS, 0, 16, distribution_color, 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3082                         HUD_DrawXNum(bottomright - '68 48 0' - '16 0 0' * TIME_DECIMALS, distsec, 4, minusplus, 16, distribution_color, 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3083                         drawpic_skin(bottomright - '10 48 0' - '16 0 0' * TIME_DECIMALS, "num_dot", '16 16 0', distribution_color, HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE);
3084                 }
3085                 // race record display
3086                 if (distribution <= 0 || distribution == score) // draw the highlight background behind the timer if we have the lead
3087                         drawpic_skin(bottomright - '0 32 0' - '32 0 0' * (4 + TIME_DECIMALS), "num_leading_4", '0 28 0' + '32 0 0' * (4 + TIME_DECIMALS), '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3088
3089                 HUD_DrawXNum(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0', racemsec, -TIME_DECIMALS, 0, 30, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3090                 HUD_DrawXNum(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0'  - '66 0 0', racesec, -2, 0, 30, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3091                 drawpic_skin(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0' - '18 0 0', "num_dot", '30 30 0', '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE);
3092
3093                 HUD_DrawXNum(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0' - '132 0 0', racemin, -2, 0, 30, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3094                 drawpic_skin(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0' - '84 0 0', "num_colon", '30 30 0', '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE);
3095                 */
3096         } else if (!teamplay) { // non-teamgames
3097                 // me vector := [team/connected frags id]
3098                 pl = players.sort_next;
3099                 if(pl == me)
3100                         pl = pl.sort_next;
3101
3102                 if(hud_configure)
3103                         distribution = 42;
3104                 else if(pl)
3105                         distribution = me.(scores[ps_primary]) - pl.(scores[ps_primary]);
3106                 else
3107                         distribution = 0;
3108
3109                 score = me.(scores[ps_primary]);
3110                 if(hud_configure)
3111                         score = 123;
3112
3113                 if(distribution >= 5) {
3114                         distribution_color = eY;
3115                         leader = 1;
3116                 } else if(distribution >= 0) {
3117                         distribution_color = '1 1 1';
3118                         leader = 1;
3119                 } else if(distribution >= -5)
3120                         distribution_color = '1 1 0';
3121                 else
3122                         distribution_color = eX;
3123
3124                 score_len = strlen(ftos(score));
3125                 distr_len = strlen(ftos(distribution));
3126
3127                 HUD_DrawXNum(pos + eX * mySize_x - eX * 3 * 0.33 * mySize_y, distribution, 3, 3, 0.33 * mySize_y, distribution_color, 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3128                 if (leader)
3129                         drawpic_skin(pos + eX * mySize_x - eX * score_len * mySize_y - eX * 3 * 0.33 * mySize_y, strcat("num_leading_", ftos(score_len)), eX * score_len * mySize_y + eY * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3130                 HUD_DrawXNum(pos + eX * mySize_x - eX * 3 * mySize_y - eX * 3 * 0.33 * mySize_y, score, 3, 0, mySize_y, distribution_color, 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3131         } else { // teamgames
3132                 float max_fragcount;
3133                 max_fragcount = -99;
3134
3135                 float teamnum;
3136                 for(tm = teams.sort_next; tm; tm = tm.sort_next) {
3137                         if(tm.team == COLOR_SPECTATOR || (!tm.team_size && !hud_configure)) // no players? don't display
3138                                 continue;
3139                         score = tm.(teamscores[ts_primary]);
3140                         if(hud_configure)
3141                                 score = 123;
3142                         leader = 0;
3143                         
3144                         score_len = strlen(ftos(score));
3145
3146                         if (score > max_fragcount)
3147                                 max_fragcount = score;
3148
3149                         if(tm.team == myteam) {
3150                                 if (max_fragcount == score)
3151                                         leader = 1;
3152                                 if (leader)
3153                                         drawpic_skin(pos + eX * mySize_x - eX * score_len * mySize_y - eX * 3 * 0.33 * mySize_y, strcat("num_leading_", ftos(score_len)), eX * score_len * mySize_y + eY * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3154                                 HUD_DrawXNum(pos + eX * mySize_x - eX * 3 * mySize_y - eX * 3 * 0.33 * mySize_y, score, 3, 0, mySize_y, GetTeamRGB(tm.team) * 0.8, 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3155                         } else {
3156                                 if (max_fragcount == score)
3157                                         leader = 1;
3158                                 if (leader)
3159                                         drawpic_skin(pos + eX * mySize_x - eX * 0.33 * score_len * mySize_y + eY * 0.33 * mySize_y * teamnum, strcat("num_leading_", ftos(score_len)), eX * 0.33 * score_len * mySize_y + eY * 0.33 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3160                                 HUD_DrawXNum(pos + eX * mySize_x - eX * 3 * 0.33 * mySize_y + eY * 0.33 * mySize_y * teamnum, score, 3, 0, 0.33 * mySize_y, GetTeamRGB(tm.team) * 0.8, 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3161                                 teamnum += 1;
3162                         }
3163                 }
3164         }
3165 }
3166
3167 // Race timer (#8)
3168 //
3169 void HUD_RaceTimer (void) {
3170         float id = HUD_PANEL_RACETIMER;
3171         vector pos, mySize;
3172         pos = HUD_Panel_GetPos(id);
3173         mySize = HUD_Panel_GetSize(id);
3174
3175         HUD_Panel_DrawBg(id, pos, mySize, 0);
3176         float padding;
3177         padding = HUD_Panel_GetPadding(id);
3178         if(padding)
3179         {
3180                 pos += '1 1 0' * padding;
3181                 mySize -= '2 2 0' * padding;
3182         }
3183
3184         drawfont = hud_bigfont;
3185         float a, t;
3186         string s, forcetime;
3187
3188         if(hud_configure)
3189         {
3190                 s = "0:13:37";
3191                 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', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3192                 s = "^1Intermediate 1 (+15.42)";
3193                 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, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3194                 s = strcat("^1PENALTY: ", ftos_decimals(20 * 0.1, 1), " (missing a checkpoint)");
3195                 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, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3196         }
3197         else if(race_checkpointtime)
3198         {
3199                 a = bound(0, 2 - (time - race_checkpointtime), 1);
3200                 s = "";
3201                 forcetime = "";
3202                 if(a > 0) // just hit a checkpoint?
3203                 {
3204                         if(race_checkpoint != 254)
3205                         {
3206                                 if(race_time && race_previousbesttime)
3207                                         s = MakeRaceString(race_checkpoint, TIME_DECODE(race_time) - TIME_DECODE(race_previousbesttime), 0, 0, race_previousbestname);
3208                                 else
3209                                         s = MakeRaceString(race_checkpoint, 0, -1, 0, race_previousbestname);
3210                                 if(race_time)
3211                                         forcetime = TIME_ENCODED_TOSTRING(race_time);
3212                         }
3213                 }
3214                 else
3215                 {
3216                         if(race_laptime && race_nextbesttime && race_nextcheckpoint != 254)
3217                         {
3218                                 a = bound(0, 2 - ((race_laptime + TIME_DECODE(race_nextbesttime)) - (time + TIME_DECODE(race_penaltyaccumulator))), 1);
3219                                 if(a > 0) // next one?
3220                                 {
3221                                         s = MakeRaceString(race_nextcheckpoint, (time + TIME_DECODE(race_penaltyaccumulator)) - race_laptime, TIME_DECODE(race_nextbesttime), 0, race_nextbestname);
3222                                 }
3223                         }
3224                 }
3225
3226                 if(s != "" && a > 0)
3227                 {
3228                         dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
3229                         //drawcolorcodedstring(m - '0 16 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3230                         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, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3231                 }
3232
3233                 if(race_penaltytime)
3234                 {
3235                         a = bound(0, 2 - (time - race_penaltyeventtime), 1);
3236                         if(a > 0)
3237                         {
3238                                 s = strcat("^1PENALTY: ", ftos_decimals(race_penaltytime * 0.1, 1), " (", race_penaltyreason, ")");
3239                                 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
3240                                 //drawcolorcodedstring(m - '0 32 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3241                                 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, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3242                         }
3243                 }
3244
3245                 if(forcetime != "")
3246                 {
3247                         a = bound(0, (time - race_checkpointtime) / 0.5, 1);
3248                         //drawstring_expanding(m - '16 0 0' * stringwidth(forcetime, FALSE), forcetime, '32 32 0', '1 1 1', HUD_Panel_GetFgAlpha(id), 0, a);
3249                         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', HUD_Panel_GetFgAlpha(id), 0, a);
3250                 }
3251                 else
3252                         a = 1;
3253
3254                 if(race_laptime && race_checkpoint != 255)
3255                 {
3256                         s = TIME_ENCODED_TOSTRING(TIME_ENCODE(time + TIME_DECODE(race_penaltyaccumulator) - race_laptime));
3257                         //drawstring(m - '16 0 0' * stringwidth(s, FALSE), s, '32 32 0', '1 1 1', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3258                         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', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3259                 }
3260         }
3261         else
3262         {
3263                 if(race_mycheckpointtime)
3264                 {
3265                         a = bound(0, 2 - (time - race_mycheckpointtime), 1);
3266                         s = MakeRaceString(race_mycheckpoint, TIME_DECODE(race_mycheckpointdelta), -!race_mycheckpointenemy, race_mycheckpointlapsdelta, race_mycheckpointenemy);
3267                         dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
3268                         //drawcolorcodedstring(m - '0 16 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3269                         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, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3270                 }
3271                 if(race_othercheckpointtime && race_othercheckpointenemy != "")
3272                 {
3273                         a = bound(0, 2 - (time - race_othercheckpointtime), 1);
3274                         s = MakeRaceString(race_othercheckpoint, -TIME_DECODE(race_othercheckpointdelta), -!race_othercheckpointenemy, race_othercheckpointlapsdelta, race_othercheckpointenemy);
3275                         dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
3276                         //drawcolorcodedstring(m - '0 0 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3277                         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, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3278                 }
3279
3280                 if(race_penaltytime && !race_penaltyaccumulator)
3281                 {
3282                         t = race_penaltytime * 0.1 + race_penaltyeventtime;
3283                         a = bound(0, (1 + t - time), 1);
3284                         if(a > 0)
3285                         {
3286                                 if(time < t)
3287                                         s = strcat("^1PENALTY: ", ftos_decimals(t - time, 1), " (", race_penaltyreason, ")");
3288                                 else
3289                                         s = strcat("^2PENALTY: 0.0 (", race_penaltyreason, ")");
3290                                 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
3291                                 //drawcolorcodedstring(m - '0 32 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3292                                 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, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3293                         }
3294                 }
3295         }
3296
3297         drawfont = hud_font;
3298 }
3299
3300 // Vote window (#9)
3301 //
3302 float vote_yescount;
3303 float vote_nocount;
3304 float vote_needed;
3305 float vote_highlighted; // currently selected vote
3306
3307 float vote_active; // is there an active vote?
3308 float vote_prev; // previous state of vote_active to check for a change
3309 float vote_alpha;
3310 float vote_change; // "time" when vote_active changed
3311
3312 void HUD_VoteWindow(void) 
3313 {
3314         float id = HUD_PANEL_VOTE;
3315         vector pos, mySize;
3316         pos = HUD_Panel_GetPos(id);
3317         mySize = HUD_Panel_GetSize(id);
3318
3319         string s;
3320         float a;
3321         if(vote_active != vote_prev) {
3322                 vote_change = time;
3323                 vote_prev = vote_active;
3324         }
3325
3326         if(vote_active || hud_configure)
3327                 vote_alpha = bound(0, (time - vote_change) * 2, 1);
3328         else
3329                 vote_alpha = bound(0, 1 - (time - vote_change) * 2, 1);
3330
3331         if(hud_configure)
3332         {
3333                 vote_yescount = 3;
3334                 vote_nocount = 2;
3335                 vote_needed = 4;
3336         }
3337
3338         if(!vote_alpha)
3339                 return;
3340
3341         a = vote_alpha * bound(cvar_or("hud_vote_alreadyvoted_alpha", 0.75), 1 - vote_highlighted, 1);
3342
3343         HUD_Panel_DrawBg(id, pos, mySize, a);
3344         float padding;
3345         padding = HUD_Panel_GetPadding(id);
3346         if(padding)
3347         {
3348                 pos += '1 1 0' * padding;
3349                 mySize -= '2 2 0' * padding;
3350         }
3351
3352         drawpic_skin(pos, "voteprogress_back", mySize, '1 1 1', a * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3353
3354         s = "A vote has been called for: ";
3355         drawstring(pos + '0.5 0 0' * mySize_x + '0 0.1 0' * mySize_y - eX * stringwidth(s, FALSE, '1 1 0' * 0.5 * mySize_y*(1/5)), s, '1 1 0' * mySize_y*(1/5), '1 1 1', a * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3356         s = textShortenToWidth(vote_called_vote, mySize_x * 0.96, '1 1 0' * mySize_y*(1/5), stringwidth_colors); // TODO: broken?
3357         if(hud_configure)
3358                 s = "Configure the HUD";
3359         drawcolorcodedstring(pos + '0.52 0 0' * mySize_x + '0 0.3 0' * mySize_y - eX * stringwidth(s, FALSE, '1 1 0' * 0.5 * mySize_y*(1/6)), s, '1 1 0' * mySize_y*(1/6), a * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3360
3361         // print the yes/no counts
3362         s = strcat("Yes: ", ftos(vote_yescount));
3363         drawstring(pos + '0 0.6 0' * mySize_y + '0.02 0 0' * mySize_x, s, '1 1 0' * mySize_y*(1/6) , eY, a * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3364         s = strcat("No: ", ftos(vote_nocount));
3365         drawstring(pos + '0 0.6 0' * mySize_y + '0.98 0 0' * mySize_x - eX * stringwidth(s, FALSE, '1 1 0' * mySize_y*(1/6)), s, '1 1 0' * mySize_y*(1/6), eX, a * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3366
3367         // draw the progress bars
3368         drawsetcliparea(pos_x, pos_y, mySize_x * 0.5 * (vote_yescount/vote_needed), mySize_y);
3369         drawpic_skin(pos, "voteprogress_prog", mySize, eY, a * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3370
3371         drawsetcliparea(pos_x + mySize_x - mySize_x * 0.5 * (vote_nocount/vote_needed), pos_y, mySize_x * 0.5, mySize_y);
3372         drawpic_skin(pos, "voteprogress_prog", mySize, eX, a * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3373
3374         // draw the highlights
3375         if(vote_highlighted == 1) {
3376                 drawsetcliparea(pos_x, pos_y, mySize_x * 0.5, mySize_y);
3377                 drawpic_skin(pos, "voteprogress_voted", mySize, eY, a * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3378         }
3379         else if(vote_highlighted == 2) {
3380                 drawsetcliparea(pos_x + 0.5 * mySize_x, pos_y, mySize_x * 0.5, mySize_y);
3381                 drawpic_skin(pos, "voteprogress_voted", mySize, eX, a * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3382         }
3383
3384         drawresetcliparea();
3385
3386         if(!vote_active) {
3387                 vote_highlighted = 0;
3388         }
3389 }
3390
3391 // Mod icons panel (#10)
3392 //
3393
3394 float mod_active; // is there any active mod icon?
3395
3396 // CTF HUD modicon section
3397 float redflag_prevframe, blueflag_prevframe; // status during previous frame
3398 float redflag_prevstatus, blueflag_prevstatus; // last remembered status
3399 float redflag_statuschange_time, blueflag_statuschange_time; // time when the status changed
3400
3401 void HUD_Mod_CTF_Reset(void)
3402 {
3403         redflag_prevstatus = blueflag_prevstatus = redflag_prevframe = blueflag_prevframe = redflag_statuschange_time = blueflag_statuschange_time = 0;
3404 }
3405
3406 void HUD_Mod_CTF(vector pos, vector mySize)
3407 {
3408         vector redflag_pos, blueflag_pos;
3409         float f; // every function should have that
3410
3411         float redflag, blueflag; // current status
3412         float redflag_statuschange_elapsedtime, blueflag_statuschange_elapsedtime; // time since the status changed
3413         float stat_items;
3414
3415         stat_items = getstati(STAT_ITEMS);
3416         redflag = (stat_items/IT_RED_FLAG_TAKEN) & 3;
3417         blueflag = (stat_items/IT_BLUE_FLAG_TAKEN) & 3;
3418         
3419         if(redflag || blueflag)
3420                 mod_active = 1;
3421         else
3422                 mod_active = 0;
3423
3424         if(hud_configure)
3425         {
3426                 redflag = 1;
3427                 blueflag = 2;
3428         }
3429
3430         // when status CHANGES, set old status into prevstatus and current status into status
3431         if (redflag != redflag_prevframe)
3432         {
3433                 redflag_statuschange_time = time;
3434                 redflag_prevstatus = redflag_prevframe;
3435                 redflag_prevframe = redflag;
3436         }
3437
3438         if (blueflag != blueflag_prevframe)
3439         {
3440                 blueflag_statuschange_time = time;
3441                 blueflag_prevstatus = blueflag_prevframe;
3442                 blueflag_prevframe = blueflag;
3443         }
3444
3445         redflag_statuschange_elapsedtime = time - redflag_statuschange_time;
3446         blueflag_statuschange_elapsedtime = time - blueflag_statuschange_time;
3447
3448         float BLINK_FACTOR = 0.15;
3449         float BLINK_BASE = 0.85;
3450         // note:
3451         //   RMS = sqrt(BLINK_BASE^2 + 0.5 * BLINK_FACTOR^2)
3452         // thus
3453         //   BLINK_BASE = sqrt(RMS^2 - 0.5 * BLINK_FACTOR^2)
3454         // ensure RMS == 1
3455         float BLINK_FREQ = 5; // circle frequency, = 2*pi*frequency in hertz
3456
3457         string red_icon, red_icon_prevstatus;
3458         float red_alpha, red_alpha_prevstatus;
3459         red_alpha = red_alpha_prevstatus = 1;
3460         switch(redflag) {
3461                 case 1: red_icon = "flag_red_taken"; break;
3462                 case 2: red_icon = "flag_red_lost"; break;
3463                 case 3: red_icon = "flag_red_carrying"; red_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
3464                 default:
3465                         if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM2))
3466                                 red_icon = "flag_red_shielded";
3467                         else
3468                                 red_icon = string_null;
3469                         break;
3470         }
3471         switch(redflag_prevstatus) {
3472                 case 1: red_icon_prevstatus = "flag_red_taken"; break;
3473                 case 2: red_icon_prevstatus = "flag_red_lost"; break;
3474                 case 3: red_icon_prevstatus = "flag_red_carrying"; red_alpha_prevstatus = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
3475                 default:
3476                         if(redflag == 3)
3477                                 red_icon_prevstatus = "flag_red_carrying"; // make it more visible
3478                         else if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM2))
3479                                 red_icon_prevstatus = "flag_red_shielded";
3480                         else
3481                                 red_icon_prevstatus = string_null;
3482                         break;
3483         }
3484
3485         string blue_icon, blue_icon_prevstatus;
3486         float blue_alpha, blue_alpha_prevstatus;
3487         blue_alpha = blue_alpha_prevstatus = 1;
3488         switch(blueflag) {
3489                 case 1: blue_icon = "flag_blue_taken"; break;
3490                 case 2: blue_icon = "flag_blue_lost"; break;
3491                 case 3: blue_icon = "flag_blue_carrying"; blue_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
3492                 default:
3493                         if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM1))
3494                                 blue_icon = "flag_blue_shielded";
3495                         else
3496                                 blue_icon = string_null;
3497                         break;
3498         }
3499         switch(blueflag_prevstatus) {
3500                 case 1: blue_icon_prevstatus = "flag_blue_taken"; break;
3501                 case 2: blue_icon_prevstatus = "flag_blue_lost"; break;
3502                 case 3: blue_icon_prevstatus = "flag_blue_carrying"; blue_alpha_prevstatus = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
3503                 default:
3504                         if(blueflag == 3)
3505                                 blue_icon_prevstatus = "flag_blue_carrying"; // make it more visible
3506                         else if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM1))
3507                                 blue_icon_prevstatus = "flag_blue_shielded";
3508                         else
3509                                 blue_icon_prevstatus = string_null;
3510                         break;
3511         }
3512
3513         if (myteam == COLOR_TEAM1) { // always draw own flag on left
3514                 redflag_pos = pos;
3515                 blueflag_pos = pos + eX * mySize_y;
3516         } else {
3517                 blueflag_pos = pos;
3518                 redflag_pos = pos + eX * mySize_y;
3519         }
3520
3521         f = bound(0, redflag_statuschange_elapsedtime*2, 1);
3522         if(red_icon_prevstatus && f < 1)
3523                 drawpic_skin_expanding(redflag_pos, red_icon_prevstatus, '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * red_alpha_prevstatus, DRAWFLAG_NORMAL, f);
3524         if(red_icon)
3525                 drawpic_skin(redflag_pos, red_icon, '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * red_alpha * f, DRAWFLAG_NORMAL);
3526
3527         f = bound(0, blueflag_statuschange_elapsedtime*2, 1);
3528         if(blue_icon_prevstatus && f < 1)
3529                 drawpic_skin_expanding(blueflag_pos, blue_icon_prevstatus, '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * blue_alpha_prevstatus, DRAWFLAG_NORMAL, f);
3530         if(blue_icon)
3531                 drawpic_skin(blueflag_pos, blue_icon, '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * blue_alpha * f, DRAWFLAG_NORMAL);
3532 }
3533
3534 // Keyhunt HUD modicon section
3535 float kh_runheretime;
3536
3537 void HUD_Mod_KH_Reset(void)
3538 {
3539         kh_runheretime = 0;
3540 }
3541
3542 void HUD_Mod_KH(vector pos, vector mySize)
3543 {
3544         mod_active = 1; // keyhunt should never hide the mod icons panel
3545         float kh_keys;
3546         float keyteam;
3547         float a, aa;
3548         vector p, pa, kh_size, kh_asize;
3549
3550         p_x = pos_x;
3551         p_y = pos_y + 0.25 * mySize_y;
3552
3553         kh_keys = getstati(STAT_KH_KEYS);
3554
3555         kh_size_x = mySize_x * 0.25;
3556         kh_size_y = 0.75 * mySize_y;
3557
3558         pa = p - eY * 0.25 * mySize_y;
3559
3560         kh_asize_x = mySize_x * 0.25;
3561         kh_asize_y = mySize_y * 0.25;
3562
3563         float i, key;
3564
3565         float keycount;
3566         keycount = 0;
3567         for(i = 0; i < 4; ++i)
3568         {
3569                 key = floor(kh_keys / pow(32, i)) & 31;
3570                 keyteam = key - 1;
3571                 if(keyteam == 30 && keycount <= 4)
3572                         keycount += 4;
3573                 if(keyteam == myteam || keyteam == -1 || keyteam == 30)
3574                         keycount += 1;
3575         }
3576
3577         // this yields 8 exactly if "RUN HERE" shows
3578
3579         if(keycount == 8)
3580         {
3581                 if(!kh_runheretime)
3582                         kh_runheretime = time;
3583                 pa_y -= fabs(sin((time - kh_runheretime) * 3.5)) * 6; // make the arrows jump in case of RUN HERE
3584         }
3585         else
3586                 kh_runheretime = 0;
3587
3588         for(i = 0; i < 4; ++i)
3589         {
3590                 key = floor(kh_keys / pow(32, i)) & 31;
3591                 keyteam = key - 1;
3592                 switch(keyteam)
3593                 {
3594                         case 30: // my key
3595                                 keyteam = myteam;
3596                                 a = 1;
3597                                 aa = 1;
3598                                 break;
3599                         case -1: // no key
3600                                 a = 0;
3601                                 aa = 0;
3602                                 break;
3603                         default: // owned or dropped
3604                                 a = 0.2;
3605                                 aa = 0.5;
3606                                 break;
3607                 }
3608                 a = a * HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS);
3609                 aa = aa * HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS);
3610                 if(a > 0)
3611                 {
3612                         switch(keyteam)
3613                         {
3614                                 case COLOR_TEAM1:
3615                                         drawpic_skin(pa, "kh_redarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
3616                                         break;
3617                                 case COLOR_TEAM2:
3618                                         drawpic_skin(pa, "kh_bluearrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
3619                                         break;
3620                                 case COLOR_TEAM3:
3621                                         drawpic_skin(pa, "kh_yellowarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
3622                                         break;
3623                                 case COLOR_TEAM4:
3624                                         drawpic_skin(pa, "kh_pinkarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
3625                                         break;
3626                                 default:
3627                                         break;
3628                         }
3629                         switch(i) // YAY! switch(i) inside a for loop for i. DailyWTF, here we come!
3630                         {
3631                                 case 0:
3632                                         drawpic_skin(p, "kh_red", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
3633                                         break;
3634                                 case 1:
3635                                         drawpic_skin(p, "kh_blue", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
3636                                         break;
3637                                 case 2:
3638                                         drawpic_skin(p, "kh_yellow", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
3639                                         break;
3640                                 case 3:
3641                                         drawpic_skin(p, "kh_pink", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
3642                                         break;
3643                         }
3644                 }
3645                 p_x += 0.25 * mySize_x;
3646                 pa_x += 0.25 * mySize_x;
3647         }
3648 }
3649
3650 // Nexball HUD mod icon
3651 void HUD_Mod_NexBall(vector pos, vector mySize)
3652 {
3653         float stat_items, nb_pb_starttime, dt, p;
3654
3655         stat_items = getstati(STAT_ITEMS);
3656         nb_pb_starttime = getstatf(STAT_NB_METERSTART);
3657
3658         if (stat_items & IT_KEY1)
3659                 mod_active = 1;
3660         else
3661                 mod_active = 0;
3662
3663         //Manage the progress bar if any
3664         if (nb_pb_starttime > 0)
3665         {
3666                 dt = mod(time - nb_pb_starttime, nb_pb_period);
3667                 // one period of positive triangle
3668                 p = 2 * dt / nb_pb_period;
3669                 if (p > 1)
3670                         p = 2 - p;
3671
3672                 //Draw the filling
3673                 HUD_Panel_DrawProgressBar(pos, 0, eX * p * mySize_x + eY * mySize_y, HUD_Panel_GetProgressBarColor("nexball"), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3674         }
3675
3676         pos_x += 0.5 * mySize_x - 0.5 * mySize_y; //horizontal margin to the picture
3677
3678         if (stat_items & IT_KEY1)
3679                 drawpic_skin(pos, "nexball_carrying", '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3680 }
3681
3682 // Race/CTS HUD mod icons
3683 float crecordtime_prev; // last remembered crecordtime
3684 float crecordtime_change_time; // time when crecordtime last changed
3685 float srecordtime_prev; // last remembered srecordtime
3686 float srecordtime_change_time; // time when srecordtime last changed
3687
3688 float race_status_time;
3689 float race_status_prev;
3690 string race_status_name_prev;
3691 void HUD_Mod_Race(vector pos, vector mySize)
3692 {
3693         mod_active = 1; // race should never hide the mod icons panel
3694         entity me;
3695         me = playerslots[player_localentnum - 1];
3696         float t, score;
3697         float f; // yet another function has this
3698         score = me.(scores[ps_primary]);
3699
3700         if not((scores_flags[ps_primary] & SFL_TIME) && !teamplay) // race/cts record display on HUD
3701                 return; // no records in the actual race
3702
3703         drawfont = hud_bigfont;
3704
3705         // clientside personal record
3706         string rr;
3707         if(gametype == GAME_CTS)
3708                 rr = CTS_RECORD;
3709         else
3710                 rr = RACE_RECORD;
3711         t = stof(db_get(ClientProgsDB, strcat(shortmapname, rr, "time")));
3712
3713         if(score && (score < t || !t)) {
3714                 db_put(ClientProgsDB, strcat(shortmapname, rr, "time"), ftos(score));
3715                 if(cvar("cl_autodemo_delete_keeprecords"))
3716                 {
3717                         f = cvar("cl_autodemo_delete");
3718                         f &~= 1;
3719                         cvar_set("cl_autodemo_delete", ftos(f)); // don't delete demo with new record!
3720                 }
3721         }
3722
3723         if(t != crecordtime_prev) {
3724                 crecordtime_prev = t;
3725                 crecordtime_change_time = time;
3726         }
3727         f = time - crecordtime_change_time;
3728
3729         if (f > 1) {
3730                 drawstring(pos, "Personal best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3731                 drawstring(pos + eY * 0.2 * mySize_y, TIME_ENCODED_TOSTRING(t), '1 1 0' * 0.2 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3732         } else {
3733                 drawstring(pos, "Personal best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3734                 drawstring(pos + eY * 0.2 * mySize_y, TIME_ENCODED_TOSTRING(t), '1 1 0' * 0.2 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3735                 drawstring_expanding(pos, "Personal best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL, f);
3736                 drawstring_expanding(pos + eY * 0.2 * mySize_y, TIME_ENCODED_TOSTRING(t), '1 1 0' * 0.2 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL, f);
3737         }
3738
3739         // server record
3740         t = race_server_record;
3741         if(t != srecordtime_prev) {
3742                 srecordtime_prev = t;
3743                 srecordtime_change_time = time;
3744         }
3745         f = time - srecordtime_change_time;
3746
3747         if (f > 1) {
3748                 drawstring(pos + eY * 0.5 * mySize_y, "Server best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3749                 drawstring(pos + eY * 0.5 * mySize_y + eY * 0.2 * mySize_y, TIME_ENCODED_TOSTRING(t),'1 1 0' * 0.2 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3750         } else {
3751                 drawstring(pos + eY * 0.5 * mySize_y, "Server best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3752                 drawstring(pos + eY * 0.5 * mySize_y + eY * 0.2 * mySize_y, TIME_ENCODED_TOSTRING(t),'1 1 0' * 0.2 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3753                 drawstring_expanding(pos + eY * 0.5 * mySize_y, "Server best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL, f);
3754                 drawstring_expanding(pos + eY * 0.5 * mySize_y + eY * 0.2 * mySize_y, TIME_ENCODED_TOSTRING(t),'1 1 0' * 0.2 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL, f);
3755         }
3756
3757         if (race_status != race_status_prev || race_status_name != race_status_name_prev) {
3758                 race_status_time = time + 5;
3759                 race_status_prev = race_status;
3760                 if (race_status_name_prev)
3761                         strunzone(race_status_name_prev);
3762                 race_status_name_prev = strzone(race_status_name);
3763         }
3764
3765         pos_x += mySize_x/2;
3766         // race "awards"
3767         float a;
3768         a = bound(0, race_status_time - time, 1);
3769
3770         string s;
3771         s = textShortenToWidth(race_status_name, mySize_y, '1 1 0' * 0.1 * mySize_y, stringwidth_colors);
3772
3773         float rank;
3774         if(race_status > 0)
3775                 rank = race_CheckName(race_status_name);
3776         string rankname;
3777         rankname = race_PlaceName(rank);
3778
3779         vector namepos;
3780         namepos = pos + '0.5 0.9 0' * mySize_y - eX * stringwidth(s, TRUE, '1 1 0' * 0.1 * mySize_y);
3781         vector rankpos;
3782         rankpos = pos + '0.5 0.25 0' * mySize_y - eX * stringwidth(rankname, TRUE, '1 1 0' * 0.15 * mySize_y);
3783
3784         if(race_status == 0)
3785                 drawpic_skin(pos, "race_newfail", '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3786         else if(race_status == 1) {
3787                 drawpic_skin(pos, "race_newtime", '1 1 0' * 0.9 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3788                 drawcolorcodedstring(namepos, s, '1 1 0' * 0.1 * mySize_y, HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3789                 drawstring(rankpos, rankname, '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3790         } else if(race_status == 2) {
3791                 if(race_status_name == GetPlayerName(player_localentnum -1) || !race_myrank || race_myrank < rank)
3792                         drawpic_skin(pos, "race_newrankgreen", '1 1 0' * 0.9 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3793                 else
3794                         drawpic_skin(pos, "race_newrankyellow", '1 1 0' * 0.9 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3795                 drawcolorcodedstring(namepos, s, '1 1 0' * 0.1 * mySize_y, HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3796                 drawstring(rankpos, rankname, '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3797         } else if(race_status == 3) {
3798                 drawpic_skin(pos, "race_newrecordserver", '1 1 0' * 0.9 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3799                 drawcolorcodedstring(namepos, s, '1 1 0' * 0.1 * mySize_y, HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3800                 drawstring(rankpos, rankname, '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3801         }
3802
3803         if (race_status_time - time <= 0) {
3804                 race_status_prev = -1;
3805                 race_status = -1;
3806                 if(race_status_name)
3807                         strunzone(race_status_name);
3808                 race_status_name = string_null;
3809                 if(race_status_name_prev)
3810                         strunzone(race_status_name_prev);
3811                 race_status_name_prev = string_null;
3812         }
3813         drawfont = hud_font;
3814 }
3815
3816 float mod_prev; // previous state of mod_active to check for a change
3817 float mod_alpha;
3818 float mod_change; // "time" when mod_active changed
3819
3820 void HUD_ModIcons(void)
3821 {
3822         if (gametype != GAME_KEYHUNT && gametype != GAME_CTF && gametype != GAME_NEXBALL && gametype != GAME_CTS && gametype != GAME_RACE && !hud_configure)
3823                 return;
3824
3825         float id = HUD_PANEL_MODICONS;
3826         vector pos, mySize;
3827         pos = HUD_Panel_GetPos(id);
3828         mySize = HUD_Panel_GetSize(id);
3829
3830         if(mod_active != mod_prev) {
3831                 mod_change = time;
3832                 mod_prev = mod_active;
3833         }
3834
3835         if(mod_active || hud_configure)
3836                 mod_alpha = bound(0, (time - mod_change) * 2, 1);
3837         else
3838                 mod_alpha = bound(0, 1 - (time - mod_change) * 2, 1);
3839
3840         if(mod_alpha)
3841                 HUD_Panel_DrawBg(id, pos, mySize, mod_alpha);
3842
3843         float padding;
3844         padding = HUD_Panel_GetPadding(id);
3845         if(padding)
3846         {
3847                 pos += '1 1 0' * padding;
3848                 mySize -= '2 2 0' * padding;
3849         }
3850
3851         // these MUST be ran in order to update mod_active
3852         if(gametype == GAME_KEYHUNT)
3853                 HUD_Mod_KH(pos, mySize);
3854         else if(gametype == GAME_CTF || hud_configure)
3855                 HUD_Mod_CTF(pos, mySize); // forcealpha only needed for ctf icons, as only they are shown in config mode
3856         else if(gametype == GAME_NEXBALL)
3857                 HUD_Mod_NexBall(pos, mySize);
3858         else if(gametype == GAME_CTS || gametype == GAME_RACE)
3859                 HUD_Mod_Race(pos, mySize);
3860 }
3861
3862 // Draw pressed keys (#11)
3863 //
3864 void HUD_DrawPressedKeys(void)
3865 {
3866         float id = HUD_PANEL_PRESSEDKEYS;
3867         vector pos, mySize;
3868         pos = HUD_Panel_GetPos(id);
3869         mySize = HUD_Panel_GetSize(id);
3870
3871         HUD_Panel_DrawBg(id, pos, mySize, 0);
3872         float padding;
3873         padding = HUD_Panel_GetPadding(id);
3874         if(padding)
3875         {
3876                 pos += '1 1 0' * padding;
3877                 mySize -= '2 2 0' * padding;
3878         }
3879
3880         float pressedkeys;
3881
3882         pressedkeys = getstatf(STAT_PRESSED_KEYS);
3883         drawpic_skin(pos, "key_bg.tga",           mySize, '1 1 1', 0.1 * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3884         drawpic_skin(pos + eX * mySize_x - eX * 0.22 * mySize_x +       eY * 0.195 * mySize_y, ((pressedkeys & KEY_CROUCH) ? "key_crouch_inv.tga" : "key_crouch.tga"),        '1 1 0' * (1/3) * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3885         drawpic_skin(pos + eX * 0.5 * mySize_x - eX * 0.23 * mySize_y + eY * 0.040 * mySize_y, ((pressedkeys & KEY_FORWARD) ? "key_forward_inv.tga" : "key_forward.tga"),     '1 1 0' * 0.46 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3886         drawpic_skin(pos + eX * 0.023 * mySize_x +                      eY * 0.195 * mySize_y, ((pressedkeys & KEY_JUMP) ? "key_jump_inv.tga" : "key_jump.tga"),              '1 1 0' * (1/3) * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3887         drawpic_skin(pos + eX * 0.1 * mySize_x +                        eY * 0.486 * mySize_y, ((pressedkeys & KEY_LEFT) ? "key_left_inv.tga" : "key_left.tga"),              '1 1 0' * 0.46 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3888         drawpic_skin(pos + eX * 0.5 * mySize_x - eX * 0.23 * mySize_y + eY * 0.486 * mySize_y, ((pressedkeys & KEY_BACKWARD) ? "key_backward_inv.tga" : "key_backward.tga"),  '1 1 0' * 0.46 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3889         drawpic_skin(pos + eX * mySize_x - eX * 0.372 * mySize_x +      eY * 0.486 * mySize_y, ((pressedkeys & KEY_RIGHT) ? "key_right_inv.tga" : "key_right.tga"),           '1 1 0' * 0.46 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3890 }
3891
3892 // Handle chat as a panel (#12)
3893 //
3894 void HUD_Chat(void)
3895 {
3896         float id = HUD_PANEL_CHAT;
3897         vector pos, mySize;
3898         pos = HUD_Panel_GetPos(id);
3899         mySize = HUD_Panel_GetSize(id);
3900
3901         HUD_Panel_DrawBg(id, pos, mySize, 0);
3902         float padding;
3903         padding = HUD_Panel_GetPadding(id);
3904         if(padding)
3905         {
3906                 pos += '1 1 0' * padding;
3907                 mySize -= '2 2 0' * padding;
3908         }
3909
3910         cvar_set("con_chatrect", "1");
3911
3912         cvar_set("con_chatrect_x", ftos(pos_x/vid_conwidth));
3913         cvar_set("con_chatrect_y", ftos(pos_y/vid_conheight));
3914
3915         cvar_set("con_chatwidth", ftos(mySize_x/vid_conwidth));
3916         cvar_set("con_chat", ftos(floor(mySize_y/cvar("con_chatsize") - 0.5)));
3917
3918         if(hud_configure)
3919         {
3920                 float chatsize;
3921                 chatsize = cvar("con_chatsize");
3922                 cvar_set("con_chatrect_x", "9001"); // over 9000, we'll fake it instead for more control over alpha and such
3923                 float i, a;
3924                 for(i = 0; i < cvar("con_chat"); ++i)
3925                 {
3926                         if(i == cvar("con_chat") - 1)
3927                                 a = HUD_Panel_GetFgAlpha(id);
3928                         else
3929                                 a = HUD_Panel_GetFgAlpha(id) * floor(((i + 1) * 7 + cvar("con_chattime"))/45);
3930                         drawcolorcodedstring(pos + eY * i * chatsize, textShortenToWidth("^3Player^7: This is the chat area.", mySize_x, '1 1 0' * chatsize, stringwidth_colors), '1 1 0' * chatsize, a, DRAWFLAG_NORMAL);
3931                 }
3932         }
3933 }
3934
3935 /*
3936 ==================
3937 Main HUD system
3938 ==================
3939 */
3940
3941 void HUD_ShowSpeed(void)
3942 {
3943         vector numsize;
3944         float pos, conversion_factor;
3945         string speed, zspeed, unit;
3946
3947         switch(cvar("cl_showspeed_unit"))
3948         {
3949                 default:
3950                 case 0:
3951                         unit = "";
3952                         conversion_factor = 1.0;
3953                         break;
3954                 case 1:
3955                         unit = " qu/s";
3956                         conversion_factor = 1.0;
3957                         break;
3958                 case 2:
3959                         unit = " m/s";
3960                         conversion_factor = 0.0254;
3961                         break;
3962                 case 3:
3963                         unit = " km/h";
3964                         conversion_factor = 0.0254 * 3.6;
3965                         break;
3966                 case 4:
3967                         unit = " mph";
3968                         conversion_factor = 0.0254 * 3.6 * 0.6213711922;
3969                         break;
3970                 case 5:
3971                         unit = " knots";
3972                         conversion_factor = 0.0254 * 1.943844492; // 1 m/s = 1.943844492 knots, because 1 knot = 1.852 km/h
3973                         break;
3974         }
3975
3976         speed = strcat(ftos(floor( vlen(pmove_vel - pmove_vel_z * '0 0 1') * conversion_factor + 0.5 )), unit);
3977
3978         numsize_x = numsize_y = cvar("cl_showspeed_size");
3979         pos = (vid_conheight - numsize_y) * cvar("cl_showspeed_position");
3980
3981         drawfont = hud_bigfont;
3982         drawstringcenter(eX + pos * eY, speed, numsize, '1 1 1', hud_fg_alpha, DRAWFLAG_NORMAL);
3983
3984         if (cvar("cl_showspeed_z") == 1) {
3985                 zspeed = strcat(ftos(fabs(floor( pmove_vel_z * conversion_factor + 0.5 ))), unit);
3986                 drawstringcenter(eX + pos * eY + numsize_y * eY, zspeed, numsize * 0.5, '1 1 1', hud_fg_alpha, DRAWFLAG_NORMAL);
3987         }
3988
3989         drawfont = hud_font;
3990 }
3991
3992 vector acc_prevspeed;
3993 float acc_prevtime;
3994 float acc_avg;
3995
3996 void HUD_ShowAcceleration(void)
3997 {
3998         float acceleration, sz, scale, alpha, f;
3999         vector pos, top, rgb;
4000         top_x = vid_conwidth/2;
4001         top_y = 0;
4002
4003         f = time - acc_prevtime;
4004         if(cvar("cl_showacceleration_z"))
4005                 acceleration = (vlen(pmove_vel) - vlen(acc_prevspeed)) * (1 / f);
4006         else
4007                 acceleration = (vlen(pmove_vel - '0 0 1' * pmove_vel_z) - vlen(acc_prevspeed - '0 0 1' * acc_prevspeed_z)) * (1 / f);
4008         acc_prevspeed = pmove_vel;
4009         acc_prevtime = time;
4010
4011         f = bound(0, f * 10, 1);
4012         acc_avg = acc_avg * (1 - f) + acceleration * f;
4013         acceleration = acc_avg / getstatf(STAT_MOVEVARS_MAXSPEED);
4014
4015         pos = top - sz/2 * eY + (cvar("cl_showacceleration_position") * vid_conheight) * eY;
4016
4017         sz = cvar("cl_showacceleration_size");
4018         scale = cvar("cl_showacceleration_scale");
4019         alpha = cvar("cl_showacceleration_alpha");
4020         if (cvar("cl_showacceleration_color_custom"))
4021                 rgb = stov(cvar_string("cl_showacceleration_color"));
4022         else {
4023                 rgb = '1 1 1';
4024                 if (acceleration < 0) {
4025                         rgb = '1 .5 .5' - '0 .5 .5' * bound(0, -acceleration * 0.2, 1);
4026                 } else if (acceleration > 0) {
4027                         rgb = '.5 1 .5' - '.5 0 .5' * bound(0, +acceleration * 0.2, 1);
4028                 }
4029         }
4030
4031         if (acceleration > 0)
4032                 HUD_Panel_DrawProgressBar(pos, 0, acceleration * scale * '40 0 0' + sz * eY, rgb, alpha * hud_fg_alpha, DRAWFLAG_NORMAL);
4033         else if (acceleration < 0)
4034                 HUD_Panel_DrawProgressBar(pos + acceleration * scale * '40 0 0', 0, -acceleration * scale * '40 0 0' + sz * eY, rgb, alpha * hud_fg_alpha, DRAWFLAG_NORMAL);
4035 }
4036
4037 void HUD_Reset (void)
4038 {
4039         // reset gametype specific icons
4040         if(gametype == GAME_KEYHUNT)
4041                 HUD_Mod_KH_Reset();
4042         else if(gametype == GAME_CTF)
4043                 HUD_Mod_CTF_Reset();
4044 }
4045
4046 void HUD_Main (void)
4047 {
4048         if(disable_menu_alphacheck == 1)
4049                 menu_fade_alpha = 1;
4050         else
4051                 menu_fade_alpha = (1 - cvar("_menu_alpha"));
4052         hud_fg_alpha = cvar("hud_fg_alpha");
4053
4054         hud_border_thickness = bound(0, cvar("hud_border_thickness"), 5);
4055         hud_accuracy_border_thickness = bound(0, cvar_or("hud_accuracy_border_thickness", 1), 5);
4056         hud_color_bg_team = cvar("hud_color_bg_team");
4057
4058         hud_fontsize = HUD_GetFontsize("hud_fontsize");
4059         hud_fontsize_spec = HUD_GetFontsize("hud_fontsize_spec");
4060
4061         hud_configure = cvar("_hud_configure");
4062
4063         // Drawing stuff
4064
4065         // HUD configure visible grid
4066         if(hud_configure && cvar("hud_configure_grid") && cvar("hud_configure_grid_alpha"))
4067         {
4068                 float i;
4069                 // x-axis
4070                 for(i = 0; i < vid_conwidth/max(2, cvar("hud_configure_grid_x")); ++i)
4071                 {
4072                         drawfill(eX * i * max(2, cvar("hud_configure_grid_x")), eX + eY * vid_conheight, '0.5 0.5 0.5', cvar("hud_configure_grid_alpha"), DRAWFLAG_NORMAL);
4073                 }
4074                 // y-axis
4075                 for(i = 0; i < vid_conheight/max(2, cvar("hud_configure_grid_y")); ++i)
4076                 {
4077                         drawfill(eY * i * max(2, cvar("hud_configure_grid_y")), eY + eX * vid_conwidth, '0.5 0.5 0.5', cvar("hud_configure_grid_alpha"), DRAWFLAG_NORMAL);
4078                 }
4079         }
4080
4081         if(cvar_string("hud_dock") != "")
4082                 drawpic_skin('0 0 0', cvar_string("hud_dock"), eX * vid_conwidth + eY * vid_conheight, HUD_Panel_Dock_GetColor(), cvar("hud_dock_alpha") * menu_fade_alpha, DRAWFLAG_NORMAL);
4083
4084         if(HUD_Panel_CheckActive(HUD_PANEL_WEAPONICONS) || hud_configure)
4085                 HUD_WeaponIcons();
4086         if(HUD_Panel_CheckActive(HUD_PANEL_INVENTORY) || hud_configure)
4087                 HUD_Inventory();
4088         if(HUD_Panel_CheckActive(HUD_PANEL_POWERUPS) || hud_configure)
4089                 HUD_Powerups();
4090         if(HUD_Panel_CheckActive(HUD_PANEL_HEALTHARMOR) || hud_configure)
4091                 HUD_HealthArmor();
4092         if(HUD_Panel_CheckActive(HUD_PANEL_NOTIFY) || hud_configure)
4093                 HUD_Notify();
4094         if(HUD_Panel_CheckActive(HUD_PANEL_TIMER) || hud_configure)
4095                 HUD_Timer();
4096         // TODO hud'ify
4097         if(HUD_Panel_CheckActive(HUD_PANEL_RADAR) || hud_configure)
4098                 if(cvar_string("hud_radar") != "0" && (cvar("hud_radar") == 2 || teamplay))
4099                         HUD_Radar();
4100         if(HUD_Panel_CheckActive(HUD_PANEL_SCORE) || hud_configure)
4101                 HUD_Score();
4102         if(HUD_Panel_CheckActive(HUD_PANEL_RACETIMER) || hud_configure)
4103                 if(gametype == GAME_RACE || gametype == GAME_CTS || hud_configure)
4104                         HUD_RaceTimer();
4105         if(HUD_Panel_CheckActive(HUD_PANEL_VOTE) || hud_configure)
4106                 HUD_VoteWindow();
4107         if(HUD_Panel_CheckActive(HUD_PANEL_MODICONS) || hud_configure)
4108                 HUD_ModIcons();
4109         // TODO hud'ify
4110         if(HUD_Panel_CheckActive(HUD_PANEL_PRESSEDKEYS) || hud_configure)
4111                 if(spectatee_status > 0 || cvar("hud_pressedkeys") >= 2 || hud_configure)
4112                         HUD_DrawPressedKeys();
4113         if(HUD_Panel_CheckActive(HUD_PANEL_CHAT) || hud_configure)
4114                 HUD_Chat();
4115         else
4116                 cvar_set("con_csqcpositioning", "0");
4117
4118         // TODO hud_'ify these
4119         if (cvar("cl_showspeed"))
4120                 HUD_ShowSpeed();
4121         if (cvar("cl_showacceleration"))
4122                 HUD_ShowAcceleration();
4123
4124         if (hud_configure && spectatee_status) // try to join if we are in hud_configure mode, but still spectating (in order to get rid of motd and such)
4125                 localcmd("cmd selectteam auto; cmd join\n");
4126
4127         if (!hud_configure) // hud config mode disabled, enable normal alpha stuff again
4128                 disable_menu_alphacheck = 0;
4129 }