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