]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/hud.qc
force showing a background in config mode, also adapt old nexuiz hud config for the...
[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 // return HUD background color
88 vector HUD_GetBgColor()
89 {
90         vector color;
91         if (teamplay)
92                 GetTeamRGB(myteam) * hud_color_bg_team;
93         else {
94                 // allow custom HUD colors in non-teamgames
95                 color_x = cvar("hud_color_bg_r");
96                 color_y = cvar("hud_color_bg_g");
97                 color_z = cvar("hud_color_bg_b");
98         }
99         return color;
100 }
101
102 // return accuracy text color
103 vector HUD_AccuracyColor(float accuracy)
104 {
105         vector rgb;
106         float yellow_accuracy = cvar("hud_weaponicons_accuracy_yellow"); // value at which this function returns yellow
107         if(accuracy >= 100) {
108                 rgb_x = 0;
109                 rgb_y = 1;
110         }
111         else if(accuracy > yellow_accuracy) {
112                 rgb_x = 1 - (accuracy-yellow_accuracy)/(100-yellow_accuracy); // red value between 1 -> 0
113                 rgb_y = 1;
114         }
115         else {
116                 rgb_x = 1;
117                 rgb_y = accuracy/yellow_accuracy; // green value between 0 -> 1
118         }
119         rgb_z = 0;
120         return rgb;
121 }
122
123 // draw number in the XSCALE font
124 void HUD_DrawXNum (vector pos, float num, float digits, float showsign, float lettersize, vector rgb, float highlighted, float stroke, float alpha, float dflags)
125 {
126         float l, i;
127         string str, tmp, l_length;
128         float minus, plus;
129         vector vsize, num_color;
130
131         vsize_x = vsize_y = lettersize;
132         vsize_z = 0;
133
134         // showsign 1: always prefix with minus sign (useful in race distribution display)
135         // showsign 2: always prefix with plus sign (useful in race distribution display)
136         // showsign 3: prefix with minus sign if negative, plus sign if positive (useful in score distribution display)
137
138         if((showsign == 2 && num >= 0) || (num > 0 && showsign == 3))
139         {
140                 plus = true;
141                 pos_x -= lettersize;
142         } else
143                 plus = false;
144
145         if(num < 0 || (num < 0 && showsign == 3) || (showsign == 1 && num <= 0))
146         {
147                 minus = true;
148                 num = -num;
149                 pos_x -= lettersize;
150         } else
151                 minus = false;
152
153         if(digits < 0)
154         {
155                 tmp = ftos(num);
156                 digits = -digits;
157                 str = strcat(substring("0000000000", 0, digits - strlen(tmp)), tmp);
158         } else
159                 str = ftos(num);
160
161         l = strlen(str);
162         l_length = ftos(l);
163
164         if(l > digits)
165         {
166                 str = substring(str, l-digits, 999);
167                 l = strlen(str);
168         } else if(l < digits)
169                 pos_x += (digits-l) * lettersize;
170
171         if (highlighted == 1) {
172                 vector hl_size;
173                 hl_size_x = vsize_x * l + vsize_x * 0.2;
174                 hl_size_y = vsize_y * 1.1;
175                 hl_size_z = 0;
176                 if(minus)
177                         hl_size_x = hl_size_x + vsize_x;
178
179                 vector hl_pos;
180                 hl_pos_x = pos_x - lettersize/10;
181                 hl_pos_y = pos_y - lettersize/20;
182                 hl_pos_z = 0;
183
184                 drawpic_skin(hl_pos, strcat("highlight_", l_length), hl_size, '1 1 1', alpha, dflags);
185         }
186
187         if (stroke == 1)
188                 num_color = '1 1 1';
189         else
190                 num_color = rgb;
191
192         if(minus)
193         {
194                 if (stroke == 1)
195                         drawpic_skin(pos, "num_minus_stroke", vsize, rgb, alpha, dflags);
196                 drawpic_skin(pos, "num_minus", vsize, num_color, alpha, dflags);
197                 pos_x += lettersize;
198         } else if(plus)
199         {
200                 if (stroke == 1)
201                         drawpic_skin(pos, "num_plus_stroke", vsize, rgb, alpha, dflags);
202                 drawpic_skin(pos, "num_plus", vsize, num_color, alpha, dflags);
203                 pos_x += lettersize;
204         }
205
206         for(i = 0; i < l; ++i)
207         {
208                 tmp = substring(str, i, 1);
209                 if (stroke == 1)
210                         drawpic_skin(pos, strcat("num_", tmp, "_stroke"), vsize, rgb, alpha, dflags);
211                 drawpic_skin(pos, strcat("num_", tmp), vsize, num_color, alpha, dflags);
212                 pos_x += lettersize;
213         }
214 }
215
216 // color the number differently based on how big it is (used in the health/armor panel)
217 void HUD_DrawXNum_Colored (vector pos, float x, float digits, float lettersize, float alpha)
218 {
219         vector color;
220         if(x > 200) {
221                 color_x = 0;
222                 color_y = 1;
223                 color_z = 0;
224         }
225         else if(x > 150) {
226                 color_x = 0.4 - (x-150)*0.02 * 0.4; //red value between 0.4 -> 0
227                 color_y = 0.9 + (x-150)*0.02 * 0.1; // green value between 0.9 -> 1
228                 color_z = 0;
229         }
230         else if(x > 100) {
231                 color_x = 1 - (x-100)*0.02 * 0.6; //red value between 1 -> 0.4
232                 color_y = 1 - (x-100)*0.02 * 0.1; // green value between 1 -> 0.9
233                 color_z = 1 - (x-100)*0.02; // blue value between 1 -> 0
234         }
235         else if(x > 50) {
236                 color_x = 1;
237                 color_y = 1;
238                 color_z = 0.2 + (x-50)*0.02 * 0.8; // blue value between 0.2 -> 1
239         }
240         else if(x > 20) {
241                 color_x = 1;
242                 color_y = (x-20)*90/27/100; // green value between 0 -> 1
243                 color_z = (x-20)*90/27/100 * 0.2; // blue value between 0 -> 0.2
244         }
245         else {
246                 color_x = 1;
247                 color_y = 0;
248                 color_z = 0;
249         }
250         HUD_DrawXNum(pos, x, digits, 0, lettersize, color, 0, 0, alpha, DRAWFLAG_NORMAL);
251 }
252
253 float stringwidth_colors(string s, vector theSize)
254 {
255         return stringwidth(s, TRUE, theSize);
256 }
257
258 float stringwidth_nocolors(string s, vector theSize)
259 {
260         return stringwidth(s, FALSE, theSize);
261 }
262
263 #define CENTERPRINT_MAX_LINES 30
264 string centerprint_messages[CENTERPRINT_MAX_LINES];
265 float centerprint_width[CENTERPRINT_MAX_LINES];
266 vector centerprint_start;
267 float centerprint_expire;
268 float centerprint_num;
269 float centerprint_offset_hint;
270 vector centerprint_fontsize;
271
272 void centerprint(string strMessage)
273 {
274         float i, j, n, hcount;
275         string s;
276
277         centerprint_fontsize = HUD_GetFontsize("scr_centersize");
278
279         centerprint_expire = min(centerprint_expire, time); // if any of the returns happens, this message will fade out
280
281         if(cvar("scr_centertime") <= 0)
282                 return;
283
284         if(strMessage == "")
285                 return;
286
287         // strip trailing newlines
288         j = strlen(strMessage) - 1;
289         while(substring(strMessage, j, 1) == "\n" && j >= 0)
290                 j = j - 1;
291         strMessage = substring(strMessage, 0, j + 1);
292
293         if(strMessage == "")
294                 return;
295
296         // strip leading newlines and remember them, they are a hint that the message should be lower on the screen
297         j = 0;
298         while(substring(strMessage, j, 1) == "\n" && j < strlen(strMessage))
299                 j = j + 1;
300         strMessage = substring(strMessage, j, strlen(strMessage) - j);
301         centerprint_offset_hint = j;
302
303         if(strMessage == "")
304                 return;
305
306         // if we get here, we have a message. Initialize its height.
307         centerprint_num = 0;
308
309         n = tokenizebyseparator(strMessage, "\n");
310         i = hcount = 0;
311         for(j = 0; j < n; ++j)
312         {
313                 getWrappedLine_remaining = argv(j);
314                 while(getWrappedLine_remaining)
315                 {
316                         s = getWrappedLine(vid_conwidth * 0.75, centerprint_fontsize, stringwidth_colors);
317                         if(centerprint_messages[i])
318                                 strunzone(centerprint_messages[i]);
319                         centerprint_messages[i] = strzone(s);
320                         centerprint_width[i] = stringwidth(s, TRUE, centerprint_fontsize);
321                         ++i;
322
323                         // half height for empty lines looks better
324                         if(s == "")
325                                 hcount += 0.5;
326                         else
327                                 hcount += 1;
328
329                         if(i >= CENTERPRINT_MAX_LINES)
330                                 break;
331                 }
332         }
333
334         float h, havail;
335         h = centerprint_fontsize_y*hcount;
336
337         havail = vid_conheight;
338         if(cvar("con_chatpos") < 0)
339                 havail -= (-cvar("con_chatpos") + cvar("con_chat")) * cvar("con_chatsize"); // avoid overlapping chat
340         if(havail > vid_conheight - 70)
341                 havail = vid_conheight - 70; // avoid overlapping HUD
342
343         centerprint_start_x = 0;
344
345 #if 0
346         float forbiddenmin, forbiddenmax, allowedmin, allowedmax, preferred;
347
348         // here, the centerprint would cover the crosshair. REALLY BAD.
349         forbiddenmin = vid_conheight * 0.5 - h - 16;
350         forbiddenmax = vid_conheight * 0.5 + 16;
351
352         allowedmin = scoreboard_bottom;
353         allowedmax = havail - h;
354         preferred = (havail - h)/2;
355
356
357         // possible orderings (total: 4! / 4 = 6)
358         //  allowedmin allowedmax forbiddenmin forbiddenmax
359         //  forbiddenmin forbiddenmax allowedmin allowedmax
360         if(allowedmax < forbiddenmin || allowedmin > forbiddenmax)
361         {
362                 // forbidden doesn't matter in this case
363                 centerprint_start_y = bound(allowedmin, preferred, allowedmax);
364         }
365         //  allowedmin forbiddenmin allowedmax forbiddenmax
366         else if(allowedmin < forbiddenmin && allowedmax < forbiddenmax)
367         {
368                 centerprint_start_y = bound(allowedmin, preferred, forbiddenmin);
369         }
370         //  allowedmin forbiddenmin forbiddenmax allowedmax
371         else if(allowedmin < forbiddenmin)
372         {
373                 // make sure the forbidden zone is not covered
374                 if(preferred > (forbiddenmin + forbiddenmax) * 0.5)
375                         centerprint_start_y = bound(allowedmin, preferred, forbiddenmin);
376                 else
377                         centerprint_start_y = bound(forbiddenmax, preferred, allowedmin);
378         }
379         //  forbiddenmin allowedmin allowedmax forbiddenmax
380         else if(allowedmax < forbiddenmax)
381         {
382                 // it's better to leave the allowed zone (overlap with scoreboard) than
383                 // to cover the forbidden zone (crosshair)
384                 if(preferred > (forbiddenmin + forbiddenmax) * 0.5)
385                         centerprint_start_y = forbiddenmax;
386                 else
387                         centerprint_start_y = forbiddenmin;
388         }
389         //  forbiddenmin allowedmin forbiddenmax allowedmax
390         else
391         {
392                 centerprint_start_y = bound(forbiddenmax, preferred, allowedmax);
393         }
394 #else
395         centerprint_start_y =
396                 min(
397                         max(
398                                 max(scoreboard_bottom, vid_conheight * 0.5 + 16),
399                                 (havail - h)/2
400                         ),
401                         havail - h
402                 );
403 #endif
404
405         centerprint_num = i;
406         centerprint_expire = time + cvar("scr_centertime");
407 }
408
409 void HUD_DrawCenterPrint (void)
410 {
411         float i;
412         vector pos;
413         string ts;
414         float a;
415
416         //if(time > centerprint_expire)
417         //      return;
418
419         //a = bound(0, 1 - 2 * (time - centerprint_expire), 1);
420         a = bound(0, 1 - 4 * (time - centerprint_expire), 1);
421         //sz = 1.2 / (a + 0.2);
422
423         if(a <= 0)
424                 return;
425
426         pos = centerprint_start;
427         for (i=0; i<centerprint_num; i = i + 1)
428         {
429                 pos_x = (vid_conwidth - centerprint_width[i]) * 0.5;
430                 ts = centerprint_messages[i];
431                 if (ts != "")
432                 {
433                         dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
434                         drawcolorcodedstring(pos, ts, centerprint_fontsize, a, DRAWFLAG_NORMAL);
435                         //  - '0 0.5 0' * (sz - 1) * centerprint_fontsize_x - '0.5 0 0' * (sz - 1) * centerprint_width[i] * centerprint_fontsize_y, centerprint_fontsize * sz
436                         pos_y = pos_y + centerprint_fontsize_y;
437                 }
438                 else
439                         // half height for empty lines looks better
440                         pos_y = pos_y + centerprint_fontsize_y * 0.5;
441         }
442 }
443
444 void drawstringright(vector position, string text, vector scale, vector rgb, float alpha, float flag)
445 {
446         position_x -= 2 / 3 * strlen(text) * scale_x;
447         drawstring(position, text, scale, rgb, alpha, flag);
448 }
449
450 void drawstringcenter(vector position, string text, vector scale, vector rgb, float alpha, float flag)
451 {
452         position_x = 0.5 * (vid_conwidth - 0.6025 * strlen(text) * scale_x);
453         drawstring(position, text, scale, rgb, alpha, flag);
454 }
455
456 // return the string of the given race place
457 string race_PlaceName(float pos) {
458         if(pos == 1)
459                 return "1st";
460         else if(pos == 2)
461                 return "2nd";
462         else if(pos == 3)
463                 return "3rd";
464         else
465                 return strcat(ftos(pos), "th");
466 }
467
468 // return the string of the onscreen race timer
469 string MakeRaceString(float cp, float mytime, float histime, float lapdelta, string hisname)
470 {
471         string col;
472         string timestr;
473         string cpname;
474         string lapstr;
475         lapstr = "";
476
477         if(histime == 0) // goal hit
478         {
479                 if(mytime > 0)
480                 {
481                         timestr = strcat("+", ftos_decimals(+mytime, TIME_DECIMALS));
482                         col = "^1";
483                 }
484                 else if(mytime == 0)
485                 {
486                         timestr = "+0.0";
487                         col = "^3";
488                 }
489                 else
490                 {
491                         timestr = strcat("-", ftos_decimals(-mytime, TIME_DECIMALS));
492                         col = "^2";
493                 }
494
495                 if(lapdelta > 0)
496                 {
497                         lapstr = strcat(" (-", ftos(lapdelta), "L)");
498                         col = "^2";
499                 }
500                 else if(lapdelta < 0)
501                 {
502                         lapstr = strcat(" (+", ftos(-lapdelta), "L)");
503                         col = "^1";
504                 }
505         }
506         else if(histime > 0) // anticipation
507         {
508                 if(mytime >= histime)
509                         timestr = strcat("+", ftos_decimals(mytime - histime, TIME_DECIMALS));
510                 else
511                         timestr = TIME_ENCODED_TOSTRING(TIME_ENCODE(histime));
512                 col = "^3";
513         }
514         else
515                 col = "^7";
516
517         if(cp == 254)
518                 cpname = "Start line";
519         else if(cp == 255)
520                 cpname = "Finish line";
521         else if(cp)
522                 cpname = strcat("Intermediate ", ftos(cp));
523         else
524                 cpname = "Finish line";
525
526         if(histime < 0)
527                 return strcat(col, cpname);
528         else if(hisname == "")
529                 return strcat(col, cpname, " (", timestr, ")");
530         else
531                 return strcat(col, cpname, " (", timestr, " ", strcat(hisname, col, lapstr), ")");
532 }
533
534 // Check if the given name already exist in race rankings? In that case, where? (otherwise return 0)
535 float race_CheckName(string net_name) {
536         float i;
537         for (i=RANKINGS_CNT-1;i>=0;--i)
538                 if(grecordholder[i] == net_name)
539                         return i+1;
540         return 0;
541 }
542
543 /*
544 ==================
545 HUD panels
546 ==================
547 */
548
549 string HUD_Panel_GetName(float id)
550 {
551         switch(id) {
552                 case 0: return "weaponicons"; break;
553                 case 1: return "inventory"; break;
554                 case 2: return "powerups"; break;
555                 case 3: return "healtharmor"; break;
556                 case 4: return "notify"; break;
557                 case 5: return "timer"; break;
558                 case 6: return "radar"; break;
559                 case 7: return "score"; break;
560                 case 8: return "racetimer"; break;
561                 case 9: return "vote"; break;
562                 case 10: return "modicons"; break;
563                 case 11: return "pressedkeys"; break;
564                 default: return "";
565         }
566 }
567
568 // Save the config
569 void HUD_Panel_ExportCfg(string cfgname)
570 {
571         float fh;
572         fh = fopen(strcat("hud_", cvar_string("hud_skin"), "_", cfgname, ".cfg"), FILE_WRITE);
573         if(fh >= 0)
574         {
575                 fputs(fh, strcat("seta hud_skin \"", cvar_string("hud_skin"), "\"", "\n"));
576                 fputs(fh, strcat("seta hud_bg \"", cvar_string("hud_bg"), "\"", "\n"));
577                 fputs(fh, strcat("seta hud_bg_color \"", cvar_string("hud_bg_color"), "\"", "\n"));
578                 fputs(fh, strcat("seta hud_bg_alpha ", cvar_string("hud_bg_alpha"), "\n"));
579                 fputs(fh, strcat("seta hud_bg_border ", cvar_string("hud_bg_border"), "\n"));
580                 fputs(fh, strcat("seta hud_bg_padding ", cvar_string("hud_bg_padding"), "\n"));
581                 fputs(fh, strcat("seta hud_fg_alpha ", cvar_string("hud_fg_alpha"), "\n"));
582                 fputs(fh, "\n");
583
584                 fputs(fh, strcat("seta hud_dock \"", cvar_string("hud_dock"), "\"", "\n"));
585                 fputs(fh, strcat("seta hud_dock_color \"", cvar_string("hud_dock_color"), "\"", "\n"));
586                 fputs(fh, strcat("seta hud_dock_alpha ", ftos(cvar("hud_dock_alpha")), "\n"));
587                 fputs(fh, "\n");
588
589                 fputs(fh, strcat("seta hud_progressbar_alpha ", ftos(cvar("hud_progressbar_alpha")), "\n"));
590                 fputs(fh, strcat("seta hud_progressbar_strength_color \"", cvar_string("hud_progressbar_strength_color"), "\"", "\n"));
591                 fputs(fh, strcat("seta hud_progressbar_shield_color \"", cvar_string("hud_progressbar_shield_color"), "\"", "\n"));
592                 fputs(fh, strcat("seta hud_progressbar_health_color \"", cvar_string("hud_progressbar_health_color"), "\"", "\n"));
593                 fputs(fh, strcat("seta hud_progressbar_armor_color \"", cvar_string("hud_progressbar_armor_color"), "\"", "\n"));
594                 fputs(fh, strcat("seta hud_progressbar_fuel_color \"", cvar_string("hud_progressbar_fuel_color"), "\"", "\n"));
595                 fputs(fh, strcat("seta hud_progressbar_nexball_color \"", cvar_string("hud_progressbar_nexball_color"), "\"", "\n"));
596                 fputs(fh, "\n");
597
598                 // common cvars for all panels
599                 float i;
600                 for (i = 0; i < panel_cnt; ++i)
601                 {
602                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), " ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i)))), "\n"));
603                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_pos \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_pos")), "\"", "\n"));
604                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_size \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_size")), "\"", "\n"));
605                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_bg \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_bg")), "\"", "\n"));
606                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_bg_color \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_bg_color")), "\"", "\n"));
607                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_bg_alpha ", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_bg_alpha")), "\n"));
608                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_bg_border ", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_bg_border")), "\n"));
609                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_bg_padding ", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_bg_padding")), "\n"));
610                         switch(i) {
611                                 case 0:
612                                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_accuracy_height ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_accuracy_height"))), "\n"));
613                                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_accuracy_yellow ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_accuracy_yellow"))), "\n"));
614                                         break;
615                                 case 1:
616                                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_onlycurrent ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_onlycurrent"))), "\n"));
617                                         break;
618                                 case 2:
619                                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_flip ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_flip"))), "\n"));
620                                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_mirror ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_mirror"))), "\n"));
621                                         break;
622                                 case 3:
623                                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_flip ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_flip"))), "\n"));
624                                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_mirror ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_mirror"))), "\n"));
625                                         break;
626                                 case 9:
627                                         fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_alreadyvoted_alpha ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_alreadyvoted_alpha"))), "\n"));
628                                         break;
629                         }
630                         fputs(fh, "\n");
631                 }
632
633                 print("^2Successfully exported to hud_", cvar_string("hud_skin"), "_", cfgname, ".cfg! (Note: It's saved in data/data/)\n");
634         }
635         fclose(fh);
636 }
637
638 vector HUD_Panel_CheckLimitSize(float id, vector mySize)
639 {
640         switch(id) {
641                 case 0: 
642                         mySize_x = max(mySize_y * (1/10), mySize_x); // at least 1/10 * height
643                         mySize_y = max(mySize_x * (1/26), mySize_y); // at least 1/26 * width
644                         break;
645                 case 1: 
646                         mySize_x = max(mySize_y * 0.7, mySize_x); // at least 0.7 * height
647                         break;
648                 //case 2: 
649                 //      mySize_x = max(mySize_y * 1.5, mySize_x); // at least 1.5 * height
650                 //      break;
651                 //case 3: 
652                 //      mySize_x = max(mySize_y * 2, mySize_x); // at least 2 * height
653                 //      break;
654                 case 5: 
655                         mySize_y = (1/4.1) * mySize_x; // 1/4.1 * width, trial and error...
656                         break;
657                 case 7: 
658                         mySize_y = (1/4) * mySize_x; // 1/4 * width
659                         break;
660                 case 8: 
661                         mySize_y = (1/4) * mySize_x; // 1/4 * width
662                         break;
663                 case 9: 
664                         mySize_y = (1/4) * mySize_x; // 1/4 * width
665                         break;
666                 case 10: 
667                         mySize_y = (1/2) * mySize_x; // 1/2 * width
668                         break;
669                 case 11: 
670                         mySize_y = 0.5898 * mySize_x; // 0.5898 * width, reason: bg has weird dimensions...
671                         break;
672         }
673         return mySize;
674 }
675
676 // return active status of panel
677 float HUD_Panel_CheckActive(float id)
678 {
679         if (cvar_or(strcat("hud_", HUD_Panel_GetName(id)), 1))
680                 return 1;
681         return 0;
682 }
683
684 // return size of given panel
685 vector HUD_Panel_GetSize(float id)
686 {
687         vector mySize;
688         mySize = stov(cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_size")));
689
690         mySize = eX * mySize_x * vid_conwidth + eY * mySize_y * vid_conheight;
691
692         return mySize;
693 }
694
695 // return pos of given panel
696 vector HUD_Panel_GetPos(float id)
697 {
698         vector pos;
699         pos = stov(cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_pos")));
700
701         pos = eX * pos_x * vid_conwidth + eY * pos_y * vid_conheight;
702
703         if (pos_x < 0)
704                 pos_x = vid_conwidth + pos_x;
705         if (pos_y < 0)
706                 pos_y = vid_conheight + pos_y;
707         return pos;
708 }
709
710 float HUD_Panel_GetBorder(float id)
711 {
712         string border;
713         border = cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg_border"));
714         if(border == "")
715                 border = cvar_string("hud_bg_border");
716         return stof(border);
717 }
718
719 vector HUD_Panel_GetColor(float id)
720 {
721         string color;
722         color = cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg_color"));
723         if(color == "")
724                 color = cvar_string("hud_bg_color");
725         return stov(color);
726 }
727
728 float HUD_Panel_GetAlpha(float id)
729 {
730         string alpha;
731         alpha = cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg_alpha"));
732         if(alpha == "")
733                 alpha = cvar_string("hud_bg_alpha");
734         return stof(alpha);
735 }
736
737 float HUD_Panel_GetPadding(float id)
738 {
739         string padding;
740         padding = cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg_padding"));
741         if(padding == "")
742                 padding = cvar_string("hud_bg_padding");
743         return stof(padding);
744 }
745
746 // draw the background/borders
747 void HUD_Panel_DrawBg(float id, vector pos, vector mySize)
748 {
749         float alpha;
750
751         if(!hud_configure && cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg")) == "0")
752                 return;
753
754         string bg;
755         bg = cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg"));
756         if(bg == "")
757                 bg = cvar_string("hud_bg");
758
759         if(bg == "0" && hud_configure) {
760                 bg = "border"; // we probably want to see a background in config mode at all times...
761                 alpha = cvar("hud_configure_bg_minalpha");
762         }
763
764         if(bg != "0")
765         {
766                 float border;
767                 border = max(0.0000001, HUD_Panel_GetBorder(id)); // draw_BorderPicture does not like border = 0
768
769                 vector color;
770                 color = HUD_Panel_GetColor(id);
771
772                 if(!alpha)
773                         alpha = HUD_Panel_GetAlpha(id);
774
775                 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));
776         }
777 }
778
779 vector HUD_Panel_GetProgressBarColor(string item)
780 {
781         return stov(cvar_string(strcat("hud_progressbar_", item, "_color")));
782 }
783
784 float resizeCorner; // 1 = topleft, 2 = topright, 3 = bottomleft, 4 = bottomright
785 // check if resize will result in panel being moved into another panel. If so, return snapped vector, otherwise return the given vector
786 vector HUD_Panel_CheckResize(float id, vector myPos, vector mySize)
787 {
788         float i;
789
790         vector myTarget;
791         myTarget = mySize;
792
793         vector targPos;
794         vector targSize;
795         vector myCenter;
796         vector targCenter;
797         myCenter = '0 0 0'; // shut up fteqcc, there IS a reference
798         targCenter = '0 0 0'; // shut up fteqcc, there IS a reference
799
800         for (i = 0; i < panel_cnt; ++i) {
801                 if(i == id || !HUD_Panel_CheckActive(i))
802                         continue;
803
804                 targPos = HUD_Panel_GetPos(i);
805                 targSize = HUD_Panel_GetSize(i);
806
807                 targPos = HUD_Panel_GetPos(i) - '1 1 0' * HUD_Panel_GetBorder(id);
808                 targSize = HUD_Panel_GetSize(i) + '2 2 0' * HUD_Panel_GetBorder(id);
809
810                 if(myPos_y + mySize_y < targPos_y)
811                         continue;
812                 if(myPos_y > targPos_y + targSize_y)
813                         continue;
814
815                 if(myPos_x + mySize_x < targPos_x)
816                         continue;
817                 if(myPos_x > targPos_x + targSize_x)
818                         continue;
819
820                 // OK, there IS a collision.
821
822                 myCenter_x = myPos_x + 0.5 * mySize_x;
823                 myCenter_y = myPos_y + 0.5 * mySize_y;
824
825                 targCenter_x = targPos_x + 0.5 * targSize_x;
826                 targCenter_y = targPos_y + 0.5 * targSize_y;
827
828                 if(myCenter_x < targCenter_x && myCenter_y < targCenter_y && resizeCorner != 1) // top left (of target panel)
829                 {
830                         if(myPos_x + mySize_x - targPos_x < myPos_y + mySize_y - targPos_y) // push it to the side
831                                 myTarget_x = targPos_x - myPos_x;
832                         else // push it upwards
833                                 myTarget_y = targPos_y - myPos_y;
834                 }
835                 else if(myCenter_x > targCenter_x && myCenter_y < targCenter_y && resizeCorner != 2) // top right
836                 {
837                         if(targPos_x + targSize_x - myPos_x < myPos_y + mySize_y - targPos_y) // push it to the side
838                                 myTarget_x = targPos_x + targSize_x;
839                         else // push it upwards
840                                 myTarget_y = targPos_y - myPos_y;
841                 }
842                 else if(myCenter_x < targCenter_x && myCenter_y > targCenter_y) // bottom left
843                 {
844                         if(myPos_x + mySize_x - targPos_x < targPos_y + targSize_y - myPos_y) // push it to the side
845                                 myTarget_x = targPos_x - myPos_x;
846                         else // push it downwards
847                                 myTarget_y = targPos_y + targSize_y;
848                 }
849                 else if(myCenter_x > targCenter_x && myCenter_y > targCenter_y) // bottom right
850                 {
851                         if(targPos_x + targSize_x - myPos_x < targPos_y + targSize_y - myPos_y) // push it to the side
852                                 myTarget_x = targPos_x + targSize_x;
853                         else // push it downwards
854                                 myTarget_y = targPos_y + targSize_y;
855                 }
856         }
857
858         return myTarget;
859 }
860
861 // TODO: checkResize
862 float HUD_Panel_SetSize(float id, vector mySize)
863 {
864         float didntresize;
865
866         vector oldSize;
867         oldSize = stov(cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_size")));
868
869         vector myPos;
870         myPos = HUD_Panel_GetPos(id);
871
872         // check for collisions
873         if(cvar("hud_configure_checkcollisions"))
874                 mySize = HUD_Panel_CheckResize(id, HUD_Panel_GetPos(id), mySize);
875
876         mySize_x = bound(0.025 * vid_conwidth, mySize_x, vid_conwidth - myPos_x);
877         mySize_y = bound(0.025 * vid_conheight, mySize_y, vid_conheight - myPos_y);
878
879         // cap against panel's own limits
880         mySize = HUD_Panel_CheckLimitSize(id, mySize);
881
882         //mySize_x = bound(0.025 * vid_conwidth, mySize_x, vid_conwidth);
883         //mySize_y = bound(0.025 * vid_conheight, mySize_y, vid_conheight);
884
885         if(cvar("hud_configure_grid"))
886         {
887                 mySize_x = floor(mySize_x/cvar("hud_configure_grid_x") + 0.5) * cvar("hud_configure_grid_x");
888                 mySize_y = floor(mySize_y/cvar("hud_configure_grid_y") + 0.5) * cvar("hud_configure_grid_y");
889         }
890
891         // TODO: is this needed?
892         // this is to check if (and how) SetPos should be called
893         if(mySize_x == oldSize_x && mySize_y == oldSize_y)
894                 didntresize = 3; // didnt resize either
895         else if(mySize_x == oldSize_x && mySize_y != oldSize_y)
896                 didntresize = 2; // resized Y
897         else if(mySize_y == oldSize_y && mySize_x != oldSize_x)
898                 didntresize = 1; // resized X
899
900         string s;
901         s = strcat(ftos(mySize_x/vid_conwidth), " ", ftos(mySize_y/vid_conheight));
902         cvar_set(strcat("hud_", HUD_Panel_GetName(id), "_size"), s);
903         return didntresize;
904 }
905
906 // check if move will result in panel being moved into another panel. If so, return snapped vector, otherwise return the given vector
907 vector HUD_Panel_CheckMove(float id, vector myPos, vector mySize)
908 {
909         float i;
910
911         vector myTarget;
912         myTarget = myPos;
913
914         vector targPos;
915         vector targSize;
916         vector myCenter;
917         vector targCenter;
918         myCenter = '0 0 0'; // shut up fteqcc, there IS a reference
919         targCenter = '0 0 0'; // shut up fteqcc, there IS a reference
920
921         for (i = 0; i < panel_cnt; ++i) {
922                 if(i == id || !HUD_Panel_CheckActive(i))
923                         continue;
924
925                 targPos = HUD_Panel_GetPos(i) - '1 1 0' * HUD_Panel_GetBorder(id);
926                 targSize = HUD_Panel_GetSize(i) + '2 2 0' * HUD_Panel_GetBorder(id);
927
928                 if(myPos_y + mySize_y < targPos_y)
929                         continue;
930                 if(myPos_y > targPos_y + targSize_y)
931                         continue;
932
933                 if(myPos_x + mySize_x < targPos_x)
934                         continue;
935                 if(myPos_x > targPos_x + targSize_x)
936                         continue;
937
938                 // OK, there IS a collision.
939
940                 myCenter_x = myPos_x + 0.5 * mySize_x;
941                 myCenter_y = myPos_y + 0.5 * mySize_y;
942
943                 targCenter_x = targPos_x + 0.5 * targSize_x;
944                 targCenter_y = targPos_y + 0.5 * targSize_y;
945
946                 if(myCenter_x < targCenter_x && myCenter_y < targCenter_y) // top left (of the target panel)
947                 {
948                         if(myPos_x + mySize_x - targPos_x < myPos_y + mySize_y - targPos_y) // push it to the side
949                                 myTarget_x = targPos_x - mySize_x;
950                         else // push it upwards
951                                 myTarget_y = targPos_y - mySize_y;
952                 }
953                 else if(myCenter_x > targCenter_x && myCenter_y < targCenter_y) // top right
954                 {
955                         if(targPos_x + targSize_x - myPos_x < myPos_y + mySize_y - targPos_y) // push it to the side
956                                 myTarget_x = targPos_x + targSize_x;
957                         else // push it upwards
958                                 myTarget_y = targPos_y - mySize_y;
959                 }
960                 else if(myCenter_x < targCenter_x && myCenter_y > targCenter_y) // bottom left
961                 {
962                         if(myPos_x + mySize_x - targPos_x < targPos_y + targSize_y - myPos_y) // push it to the side
963                                 myTarget_x = targPos_x - mySize_x;
964                         else // push it downwards
965                                 myTarget_y = targPos_y + targSize_y;
966                 }
967                 else if(myCenter_x > targCenter_x && myCenter_y > targCenter_y) // bottom right
968                 {
969                         if(targPos_x + targSize_x - myPos_x < targPos_y + targSize_y - myPos_y) // push it to the side
970                                 myTarget_x = targPos_x + targSize_x;
971                         else // push it downwards
972                                 myTarget_y = targPos_y + targSize_y;
973                 }
974         }
975
976         return myTarget;
977 }
978
979 void HUD_Panel_SetPos(float id, vector pos, float didntresize)
980 {
981         vector oldPos;
982         oldPos = HUD_Panel_GetPos(id);
983         if(didntresize == 2)
984                 pos_x = oldPos_x;
985         else if(didntresize == 1)
986                 pos_y = oldPos_y;
987         else if(didntresize == 3)
988                 return;
989
990         vector mySize;
991         mySize = HUD_Panel_GetSize(id);
992
993         if(cvar("hud_configure_checkcollisions"))
994                 pos = HUD_Panel_CheckMove(id, pos, mySize);
995
996         pos_x = bound(0, pos_x, vid_conwidth - mySize_x);
997         pos_y = bound(0, pos_y, vid_conheight - mySize_y);
998
999         if(cvar("hud_configure_grid"))
1000         {
1001                 pos_x = floor(pos_x/cvar("hud_configure_grid_x") + 0.5) * cvar("hud_configure_grid_x");
1002                 pos_y = floor(pos_y/cvar("hud_configure_grid_y") + 0.5) * cvar("hud_configure_grid_y");
1003         }
1004
1005         if (pos_x + 0.5 * mySize_x > 0.5 * vid_conwidth)
1006                 pos_x = pos_x - vid_conwidth;
1007         if (pos_y + 0.5 * mySize_y > 0.5 * vid_conheight)
1008                 pos_y = pos_y - vid_conheight;
1009
1010         string s;
1011         s = strcat(ftos(pos_x/vid_conwidth), " ", ftos(pos_y/vid_conheight));
1012
1013         cvar_set(strcat("hud_", HUD_Panel_GetName(id), "_pos"), s);
1014 }
1015
1016 float mouseClicked;
1017 float prevMouseClicked; // previous state
1018 float HUD_Panel_InputEvent(float bInputType, float nPrimary, float nSecondary)
1019 {
1020         prevMouseClicked = mouseClicked;
1021         if(nPrimary == K_MOUSE1)
1022         {
1023                 if(bInputType == 0) { // key pressed
1024                         mouseClicked = 1;
1025                         return true;
1026                 }
1027                 if(bInputType == 1) {// key released
1028                         mouseClicked = 0;
1029                         return true;
1030                 }
1031         }
1032         return false;
1033 }
1034
1035 vector mousepos, mouseprevpos;
1036 vector panel_click_distance; // mouse cursor distance from the top left corner of the panel (saved only upon a click)
1037 vector panel_click_pos; // panel pos (saved only upon a click)
1038 vector panel_click_size; // panel size (saved only upon a click)
1039 float highlightedPanel;
1040 float highlightedAction; // 0 = nothing, 1 = move, 2 = resize
1041 void HUD_Panel_Mouse()
1042 {
1043         if(mouseClicked == 0) {
1044                 highlightedPanel = -1;
1045                 highlightedAction = 0;
1046         }
1047
1048         mousepos = mousepos + getmousepos();
1049
1050         mousepos_x = bound(0, mousepos_x, vid_conwidth);
1051         mousepos_y = bound(0, mousepos_y, vid_conheight);
1052
1053         drawpic(mousepos, strcat("gfx/menu/", cvar_string("menu_skin"), "/cursor.tga"), '32 32 0', '1 1 1', 1, DRAWFLAG_NORMAL);
1054
1055         if(mouseClicked)
1056         {
1057                 float i, border;
1058                 vector panelPos;
1059                 vector panelSize;
1060
1061                 for(i = 0; i <= panel_cnt; ++i)
1062                 {
1063                         panelPos = HUD_Panel_GetPos(i);
1064                         panelSize = HUD_Panel_GetSize(i);
1065                         border = HUD_Panel_GetBorder(i);
1066                         if(prevMouseClicked == 0) {
1067                                 // move
1068                                 if(mousepos_x >= panelPos_x && mousepos_y >= panelPos_y && mousepos_x <= panelPos_x + panelSize_x && mousepos_y <= panelPos_y + panelSize_y)
1069                                 {
1070                                         highlightedPanel = i;
1071                                         highlightedAction = 1;
1072                                 }
1073                                 // resize from topleft border
1074                                 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)
1075                                 {
1076                                         highlightedPanel = i;
1077                                         highlightedAction = 2;
1078                                         resizeCorner = 1;
1079                                 }
1080                                 // resize from topright border
1081                                 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)
1082                                 {
1083                                         highlightedPanel = i;
1084                                         highlightedAction = 2;
1085                                         resizeCorner = 2;
1086                                 }
1087                                 // resize from bottomleft border
1088                                 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)
1089                                 {
1090                                         highlightedPanel = i;
1091                                         highlightedAction = 2;
1092                                         resizeCorner = 3;
1093                                 }
1094                                 // resize from bottomright border
1095                                 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)
1096                                 {
1097                                         highlightedPanel = i;
1098                                         highlightedAction = 2;
1099                                         resizeCorner = 4;
1100                                 }
1101                         }
1102
1103                         if(highlightedPanel == i)
1104                         {
1105                                 if(prevMouseClicked == 0)
1106                                 {
1107                                         panel_click_distance = mousepos - panelPos;
1108                                         panel_click_pos = panelPos;
1109                                         panel_click_size = panelSize;
1110                                 }
1111
1112                                 if(highlightedAction == 1)
1113                                         HUD_Panel_SetPos(i, mousepos - panel_click_distance, 0);
1114                                 else if(highlightedAction == 2)
1115                                 {
1116                                         float didntresize; // panel too big/too small, dont resize (also has to affect moving)
1117                                         if(resizeCorner == 1) {
1118                                                 didntresize = HUD_Panel_SetSize(i, panelSize + mouseprevpos - mousepos);
1119                                                 HUD_Panel_SetPos(i, mousepos - panel_click_distance, didntresize);
1120                                         }
1121                                         if(resizeCorner == 2) {
1122                                                 didntresize = HUD_Panel_SetSize(i, eY * panel_click_size_y + eX * (mousepos_x - panelPos_x - (panel_click_distance_x - panel_click_size_x))
1123                                                                 + eY * (panel_click_distance_y + (panel_click_pos_y - mousepos_y)));
1124                                                 HUD_Panel_SetPos(i, eX * panelPos_x + eY * (mousepos_y - panel_click_distance_y), didntresize);
1125                                         }
1126                                         if(resizeCorner == 3) {
1127                                                 didntresize = HUD_Panel_SetSize(i, panelSize + eX * (mouseprevpos_x - mousepos_x) + eY * (mousepos_y - mouseprevpos_y));
1128                                                 HUD_Panel_SetPos(i, eX * (mousepos_x - panel_click_distance_x) + eY * panelPos_y, didntresize);
1129                                         }
1130                                         if(resizeCorner == 4) {
1131                                                 HUD_Panel_SetSize(i, mousepos - panelPos - (panel_click_distance - panel_click_size));
1132                                         }
1133                                 }
1134                         }
1135                 }
1136         }
1137         mouseprevpos = mousepos;
1138         prevMouseClicked = mouseClicked;
1139 }
1140
1141 /*void HUD_DrawDockEdge(float id, vector p1, vector p2, float target)
1142 {
1143         vector pos;
1144         vector size;
1145
1146         pos =
1147 */ // maybe one day, since this will be quite complicated
1148
1149 // Weapon icons (#0)
1150 //
1151 float weaponspace[10];
1152 void HUD_WeaponIcons_Clear()
1153 {
1154         float idx;
1155         for(idx = 0; idx < 10; ++idx)
1156                 weaponspace[idx] = 0;
1157 }
1158
1159 entity weaponorder[WEP_MAXCOUNT];
1160
1161 void weaponorder_swap(float i, float j, entity pass)
1162 {
1163         entity h;
1164         h = weaponorder[i];
1165         weaponorder[i] = weaponorder[j];
1166         weaponorder[j] = h;
1167 }
1168
1169 float weaponorder_cmp(float i, float j, entity pass)
1170 {
1171         float d;
1172         d = mod(weaponorder[i].impulse + 9, 10) - mod(weaponorder[j].impulse + 9, 10);
1173         if(d)
1174                 return d;
1175         d = weaponorder[i].weapon - weaponorder[j].weapon;
1176         return d;
1177 }
1178
1179 void HUD_WeaponIcons()
1180 {
1181         float id = 0;
1182         float alpha, stat_weapons; // "constants"
1183         vector pos, mySize, accuracy_color;
1184         float i, weapid, fade, weapon_stats, weapon_hit, weapon_damage, weapon_cnt; // variables
1185
1186         pos = HUD_Panel_GetPos(id);
1187         mySize = HUD_Panel_GetSize(id);
1188
1189         stat_weapons = getstati(STAT_WEAPONS);
1190         for(i = WEP_FIRST; i <= WEP_LAST; ++i)
1191         {
1192                 self = get_weaponinfo(i);
1193                 if(self.weapons && (self.impulse >= 0) && (stat_weapons & self.weapons) || hud_configure)
1194                 {
1195                         weaponorder[weapon_cnt] = self;
1196                         ++weapon_cnt;
1197                 }
1198         }
1199         heapsort(weapon_cnt, weaponorder_swap, weaponorder_cmp, world);
1200
1201         HUD_Panel_DrawBg(id, pos, mySize);
1202         float padding;
1203         padding = cvar(strcat("hud_", HUD_Panel_GetName(id), "_bg_padding"));
1204         if(padding)
1205         {
1206                 pos += '1 1 0' * padding;
1207                 mySize -= '2 2 0' * padding;
1208         }
1209
1210         // hits
1211         weapon_stats = getstati(STAT_DAMAGE_HITS);
1212         weapon_number = weapon_stats & 63;
1213         weapon_hits[weapon_number-WEP_FIRST] = floor(weapon_stats / 64);
1214         // fired
1215         weapon_stats = getstati(STAT_DAMAGE_FIRED);
1216         weapon_number = weapon_stats & 63;
1217         weapon_fired[weapon_number-WEP_FIRST] = floor(weapon_stats / 64);
1218
1219         if(cvar_or("hud_weaponicons_fade", 1))
1220         {
1221                 fade = 3.2 - 2 * (time - weapontime);
1222                 fade = bound(0.7, fade, 1);
1223         }
1224         else
1225                 fade = 1;
1226
1227         HUD_WeaponIcons_Clear();
1228
1229         float rows, columns;
1230         rows = mySize_y/mySize_x;
1231         rows = bound(1, floor((sqrt(4 * (2/1) * rows * WEP_COUNT + rows * rows) + rows + 0.5) / 2), WEP_COUNT);
1232         //                               ^^^ weapon icon aspect goes here
1233
1234         columns = ceil(WEP_COUNT/rows);
1235         float row, column;
1236         for(i = 0; i < weapon_cnt; ++i)
1237         {
1238                 self = weaponorder[i];
1239                 if((self.weapons && (self.impulse >= 0) && (stat_weapons & self.weapons)) || hud_configure)
1240                 {
1241                         weapid = self.impulse;
1242
1243                         alpha = (self.weapon == activeweapon) ? 1 : 0.6;
1244
1245                         weapon_hit = weapon_hits[self.weapon-WEP_FIRST];
1246                         weapon_damage = weapon_fired[self.weapon-WEP_FIRST];
1247
1248                         // draw background behind currently selected weapon
1249                         if(self.weapon == activeweapon)
1250                                 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_alpha_fg, DRAWFLAG_NORMAL);
1251
1252                         // draw the weapon accuracy on the HUD
1253                         if(hud_accuracy_hud && !(gametype == GAME_RACE || gametype == GAME_CTS))
1254                         {
1255                                 if(weapon_damage)
1256                                         weapon_stats = floor(100 * weapon_hit / weapon_damage);
1257
1258                                 accuracy_color = HUD_AccuracyColor(weapon_stats);
1259                                 if(weapon_damage)
1260                                         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_alpha_fg, DRAWFLAG_NORMAL);
1261                         }
1262
1263                         // draw the weapon icon
1264                         drawpic(pos + eX * column * mySize_x*(1/columns) + eY * row * mySize_y*(1/rows), strcat("gfx/weapons/weapon", self.netname), eX * mySize_x*(1/columns) + eY * mySize_y*(1/rows), '1 1 1', fade * hud_alpha_fg, DRAWFLAG_NORMAL);
1265
1266                         if(cvar_or("hud_weaponicons_number", 1))
1267                                 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_alpha_fg, DRAWFLAG_NORMAL);
1268                 }
1269
1270                 ++row;
1271                 if(row >= rows)
1272                 {
1273                         row = 0;
1274                         ++column;
1275                 }
1276         }
1277
1278 }
1279
1280 // Inventory (#1)
1281 //
1282 float GetAmmoStat(float i)
1283 {
1284         switch(i)
1285         {
1286                 case 0: return STAT_SHELLS;
1287                 case 1: return STAT_NAILS;
1288                 case 2: return STAT_ROCKETS;
1289                 case 3: return STAT_CELLS;
1290                 case 4: return STAT_FUEL;
1291                 default: return -1;
1292         }
1293 }
1294
1295 float GetAmmoItemCode(float i)
1296 {
1297         switch(i)
1298         {
1299                 case 0: return IT_SHELLS;
1300                 case 1: return IT_NAILS;
1301                 case 2: return IT_ROCKETS;
1302                 case 3: return IT_CELLS;
1303                 case 4: return IT_FUEL;
1304                 default: return -1;
1305         }
1306 }
1307
1308 string GetAmmoPicture(float i)
1309 {
1310         switch(i)
1311         {
1312                 case 0: return "ammo_shells";
1313                 case 1: return "ammo_bullets";
1314                 case 2: return "ammo_rocket";
1315                 case 3: return "ammo_cells";
1316                 case 4: return "ammo_fuel";
1317                 default: return "";
1318         }
1319 }
1320
1321 void HUD_Inventory()
1322 {
1323         float id = 1;
1324         float i;
1325         float stat_items;
1326
1327         vector pos, mySize, mysize, mypos;
1328         pos = HUD_Panel_GetPos(id);
1329         mySize = HUD_Panel_GetSize(id);
1330
1331         HUD_Panel_DrawBg(id, pos, mySize);
1332         float padding;
1333         padding = cvar(strcat("hud_", HUD_Panel_GetName(id), "_bg_padding"));
1334         if(padding)
1335         {
1336                 pos += '1 1 0' * padding;
1337                 mySize -= '2 2 0' * padding;
1338         }
1339
1340         // ammo
1341         stat_items = getstati(STAT_ITEMS);
1342         for (i = 0; i < 4; ++i) {
1343                 float a;
1344                 a = getstati(GetAmmoStat(i)); // how much ammo do we have of type i?
1345                 if(hud_configure)
1346                         a = 100;
1347
1348                 if(cvar("hud_inventory_onlycurrent")) {
1349                         if (stat_items & GetAmmoItemCode(i)) {
1350                                 drawpic_skin(pos + eY * 0.05 * mySize_y, GetAmmoPicture(i), '1 1 0' * 0.8 * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
1351                                 if(a < 10)
1352                                         HUD_DrawXNum(pos + 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_alpha_fg, DRAWFLAG_NORMAL);
1353                                 else
1354                                         HUD_DrawXNum(pos + 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_alpha_fg, DRAWFLAG_NORMAL);
1355                         }
1356                 } else {
1357                         if (a > 0) {
1358                                 if(mySize_x/mySize_y >= 10) { // arrange horizontally
1359                                         switch (i) {
1360                                                 case 0: mypos_x = pos_x;                        mypos_y = pos_y;                        break; // shells
1361                                                 case 1: mypos_x = pos_x + 0.25 * mySize_x;      mypos_y = pos_y;                        break; // bullets
1362                                                 case 2: mypos_x = pos_x + 0.5  * mySize_x;      mypos_y = pos_y;                        break; // rockets
1363                                                 case 3: mypos_x = pos_x + 0.75 * mySize_x;      mypos_y = pos_y;                        break; // cells
1364                                         }
1365                                         mysize_x = 0.25 * mySize_x;
1366                                         mysize_y = mySize_y;
1367                                 } else if(mySize_x/mySize_y >= 2.5) { // arrange in a 2x2 grid
1368                                         switch (i) {
1369                                                 case 0: mypos_x = pos_x + 0.5 * mySize_x;       mypos_y = pos_y + 0.5 * mySize_y;       break; // shells
1370                                                 case 1: mypos_x = pos_x + 0.5 * mySize_x;       mypos_y = pos_y;                        break; // bullets
1371                                                 case 2: mypos_x = pos_x;                        mypos_y = pos_y + 0.5 * mySize_y;       break; // rockets
1372                                                 case 3: mypos_x = pos_x;                        mypos_y = pos_y;                        break; // cells
1373                                         }
1374                                         mysize_x = 0.5 * mySize_x;
1375                                         mysize_y = 0.5 * mySize_y;
1376                                 } else { // arrange vertically
1377                                         switch (i) {
1378                                                 case 0: mypos_x = pos_x;                        mypos_y = pos_y;                        break; // shells
1379                                                 case 1: mypos_x = pos_x;                        mypos_y = pos_y + 0.25 * mySize_y;      break; // bullets
1380                                                 case 2: mypos_x = pos_x;                        mypos_y = pos_y + 0.5  * mySize_y;      break; // rockets
1381                                                 case 3: mypos_x = pos_x;                        mypos_y = pos_y + 0.75 * mySize_y;      break; // cells
1382                                         }
1383                                         mysize_x = mySize_x;
1384                                         mysize_y = 0.25 * mySize_y;
1385                                 }
1386
1387                                 if (stat_items & GetAmmoItemCode(i))
1388                                         drawpic_skin(mypos, "ammo_current_bg", mysize, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
1389                                 drawpic_skin(mypos + eY * 0.05 * mysize_y, GetAmmoPicture(i), '1 1 0' * 0.8 * mysize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
1390                                 if (a < 10) {
1391                                         if(stat_items & GetAmmoItemCode(i))
1392                                                 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_alpha_fg, DRAWFLAG_NORMAL);
1393                                         else
1394                                                 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_alpha_fg * 0.7, DRAWFLAG_NORMAL);
1395                                 } else {
1396                                         if(stat_items & GetAmmoItemCode(i))
1397                                                 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_alpha_fg, DRAWFLAG_NORMAL);
1398                                         else
1399                                                 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_alpha_fg * 0.7, DRAWFLAG_NORMAL);
1400                                 }
1401                         }
1402                 }
1403         }
1404 }
1405
1406
1407 // Powerups (#2)
1408 //
1409 void HUD_Powerups() {
1410         float id = 2;
1411         float stat_items;
1412         stat_items = getstati(STAT_ITEMS);
1413
1414         if(!hud_configure)
1415         {
1416                 if not(stat_items & IT_STRENGTH)
1417                         if not(stat_items & IT_INVINCIBLE)
1418                                 return;
1419
1420                 if (getstati(STAT_HEALTH) <= 0)
1421                         return;
1422         }
1423
1424         vector pos, mySize;
1425         pos = HUD_Panel_GetPos(id);
1426         mySize = HUD_Panel_GetSize(id);
1427
1428         HUD_Panel_DrawBg(id, pos, mySize);
1429         float padding;
1430         padding = cvar(strcat("hud_", HUD_Panel_GetName(id), "_bg_padding"));
1431         if(padding)
1432         {
1433                 pos += '1 1 0' * padding;
1434                 mySize -= '2 2 0' * padding;
1435         }
1436
1437         float strength_time, shield_time;
1438
1439         strength_time = bound(0, ceil(getstatf(STAT_STRENGTH_FINISHED) - time), 99);
1440         shield_time = bound(0, ceil(getstatf(STAT_INVINCIBLE_FINISHED) - time), 99);
1441
1442         if(hud_configure)
1443         {
1444                 strength_time = 15;
1445                 shield_time = 27;
1446         }
1447
1448         float len;
1449
1450         vector barpos, barsize;
1451         vector picpos;
1452         vector numpos;
1453
1454         string leftname, rightname;
1455         float leftcnt, rightcnt;
1456         float leftalpha, rightalpha;
1457         if (cvar(strcat("hud_", HUD_Panel_GetName(id), "_flip"))) {
1458                 leftname = "strength";
1459                 leftcnt = strength_time;
1460
1461                 rightname = "shield";
1462                 rightcnt = shield_time;
1463         } else {
1464                 leftname = "shield";
1465                 leftcnt = shield_time;
1466
1467                 rightname = "strength";
1468                 rightcnt = strength_time;
1469         }
1470         leftalpha = bound(0, leftcnt, 1);
1471         rightalpha = bound(0, rightcnt, 1);
1472
1473         // TODO: tile statusbars?
1474         if (mySize_x/mySize_y > 4)
1475         {
1476                 if(leftcnt)
1477                 {
1478                         len = strlen(ftos(leftcnt));
1479
1480                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1481                                 barpos = pos + eX * 0.5 * mySize_x - eX * 0.5 * mySize_x * min(1, leftcnt/30);
1482                                 barsize = eX * 0.5 * mySize_x * min(1, leftcnt/30) + eY * mySize_y;
1483                                 picpos = pos + eX * 0.5 * mySize_x - eX * mySize_y;
1484                                 numpos = picpos - eX * 2 * 0.5 * mySize_y + eX * (2-len) * 0.5 * mySize_y + eY * 0.25 * mySize_y;
1485                         } else {
1486                                 barpos = pos;
1487                                 barsize = eX * 0.5 * mySize_x * min(1, leftcnt/30) + eY * mySize_y;
1488                                 picpos = pos;
1489                                 numpos = picpos + eX * mySize_y - eX * (2-len) * 0.5 * mySize_y + eY * 0.25 * mySize_y;
1490                         }
1491
1492                         drawpic_skin(barpos, "statusbar", barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha"), DRAWFLAG_NORMAL);
1493                         drawpic_skin(picpos, leftname, '1 1 0' * mySize_y, '1 1 1', leftalpha * hud_alpha_fg, DRAWFLAG_NORMAL);
1494                         HUD_DrawXNum(numpos, leftcnt, 2, 0, 0.5 * mySize_y, '1 1 1', 0, 0, hud_alpha_fg, DRAWFLAG_NORMAL);
1495                 }
1496
1497                 if(rightcnt)
1498                 {
1499                         len = strlen(ftos(rightcnt));
1500
1501                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1502                                 barpos = pos + eX * 0.5 * mySize_x;
1503                                 barsize = eX * 0.5 * mySize_x * min(1, rightcnt/30) + eY * mySize_y;
1504                                 picpos = pos + eX * 0.5 * mySize_x;
1505                                 numpos = picpos + eX * mySize_y - eX * (2-len) * 0.5 * mySize_y + eY * 0.25 * mySize_y;
1506                         } else {
1507                                 barpos = pos + eX * mySize_x - eX * 0.5 * mySize_x * min(1, rightcnt/30);
1508                                 barsize = eX * 0.5 * mySize_x * min(1, rightcnt/30) + eY * mySize_y;
1509                                 picpos = pos + eX * mySize_x - eX * mySize_y;
1510                                 numpos = picpos - eX * mySize_y + eY * 0.25 * mySize_y;
1511                         }
1512
1513                         drawpic_skin(barpos, "statusbar", barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha"), DRAWFLAG_NORMAL);
1514                         drawpic_skin(picpos, rightname, '1 1 0' * mySize_y, '1 1 1', rightalpha * hud_alpha_fg, DRAWFLAG_NORMAL);
1515                         HUD_DrawXNum(numpos, rightcnt, 2, 0, 0.5 * mySize_y, '1 1 1', 0, 0, hud_alpha_fg, DRAWFLAG_NORMAL);
1516                 }
1517         }
1518         else if (mySize_x/mySize_y > 1.5)
1519         {
1520                 if(leftcnt)
1521                 {
1522                         len = strlen(ftos(leftcnt));
1523
1524                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1525                                 barpos = pos + eX * mySize_x - eX * mySize_x * min(1, leftcnt/30);
1526                                 barsize = eX * mySize_x * min(1, leftcnt/30) + eY * 0.5 * mySize_y;
1527                                 picpos = pos + eX * mySize_x - eX * 0.5 * mySize_y;
1528                                 numpos = picpos - eX * len * 0.5 * mySize_y;
1529                         } else {
1530                                 barpos = pos;
1531                                 barsize = eX * mySize_x * min(1, leftcnt/30) + eY * 0.5 * mySize_y;
1532                                 picpos = pos;
1533                                 numpos = picpos + eX * 0.5 * mySize_y;
1534                         }
1535
1536                         drawpic_skin(barpos, "statusbar", barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha"), DRAWFLAG_NORMAL);
1537                         drawpic_skin(picpos, leftname, '0.5 0.5 0' * mySize_y, '1 1 1', leftalpha * hud_alpha_fg, DRAWFLAG_NORMAL);
1538                         HUD_DrawXNum(numpos, leftcnt, len, 0, 0.5 * mySize_y, '1 1 1', 0, 0, hud_alpha_fg, DRAWFLAG_NORMAL);
1539                 }
1540
1541                 if(rightcnt)
1542                 {
1543                         len = strlen(ftos(rightcnt));
1544
1545                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1546                                 barpos = pos + eX * mySize_x - eX * mySize_x * min(1, rightcnt/30) + eY * 0.5 * mySize_y;
1547                                 barsize = eX * mySize_x * min(1, rightcnt/30) + eY * 0.5 * mySize_y;
1548                                 picpos = pos + eX * mySize_x - eX * 0.5 * mySize_y + eY * 0.5 * mySize_y;
1549                                 numpos = picpos - eX * len * 0.5 * mySize_y;
1550                         } else {
1551                                 barpos = pos + eY * 0.5 * mySize_y;
1552                                 barsize = eX * mySize_x * min(1, rightcnt/30) + eY * 0.5 * mySize_y;
1553                                 picpos = pos + eY * 0.5 * mySize_y;
1554                                 numpos = picpos + eX * 0.5 * mySize_y;
1555                         }
1556
1557                         drawpic_skin(barpos, "statusbar", barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha"), DRAWFLAG_NORMAL);
1558                         drawpic_skin(picpos, rightname, '0.5 0.5 0' * mySize_y, '1 1 1', rightalpha * hud_alpha_fg, DRAWFLAG_NORMAL);
1559                         HUD_DrawXNum(numpos, rightcnt, len, 0, 0.5 * mySize_y, '1 1 1', 0, 0, hud_alpha_fg, DRAWFLAG_NORMAL);
1560                 }
1561         }
1562         else
1563         {
1564                 if(leftcnt)
1565                 {
1566                         len = strlen(ftos(leftcnt));
1567
1568                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1569                                 barpos = pos;
1570                                 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, leftcnt/30);
1571                                 picpos = pos + eX * 0.05 * mySize_x;
1572                                 numpos = pos + eX * ((2-len)/2) * 0.25 * mySize_x + eY * 0.4 * mySize_x;
1573                         } else {
1574                                 barpos = pos + eY * mySize_y - eY * mySize_y * min(1, leftcnt/30);
1575                                 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, leftcnt/30);
1576                                 picpos = pos + eX * 0.05 * mySize_x + eY * mySize_y - eY * 0.65 * mySize_x;
1577                                 numpos = pos + eX * ((2-len)/2) * 0.25 * mySize_x + eY * mySize_y - eY * 0.25 * mySize_x;
1578                         }
1579
1580                         drawpic_skin(barpos, "statusbar_vertical", barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha"), DRAWFLAG_NORMAL);
1581                         drawpic_skin(picpos, leftname, '0.4 0.4 0' * mySize_x, '1 1 1', leftalpha * hud_alpha_fg, DRAWFLAG_NORMAL);
1582                         HUD_DrawXNum(numpos, leftcnt, len, 0, 0.25 * mySize_x, '1 1 1', 0, 0, hud_alpha_fg, DRAWFLAG_NORMAL);
1583                 }
1584
1585                 if(rightcnt)
1586                 {
1587                         len = strlen(ftos(rightcnt));
1588
1589                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1590                                 barpos = pos + eX * 0.5 * mySize_x;
1591                                 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, rightcnt/30);
1592                                 picpos = pos + eX * 0.05 * mySize_x + eX * 0.5 * mySize_x;
1593                                 numpos = pos + eX * ((2-len)/2) * 0.25 * mySize_x + eY * 0.4 * mySize_x + eX * 0.5 * mySize_x;
1594                         } else {
1595                                 barpos = pos + eY * mySize_y - eY * mySize_y * min(1, rightcnt/30) + eX * 0.5 * mySize_x;
1596                                 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, rightcnt/30);
1597                                 picpos = pos + eX * 0.05 * mySize_x + eY * mySize_y - eY * 0.65 * mySize_x + eX * 0.5 * mySize_x;
1598                                 numpos = pos + eX * ((2-len)/2) * 0.25 * mySize_x + eY * mySize_y - eY * 0.25 * mySize_x + eX * 0.5 * mySize_x;
1599                         }
1600
1601                         drawpic_skin(barpos, "statusbar_vertical", barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha"), DRAWFLAG_NORMAL);
1602                         drawpic_skin(picpos, rightname, '0.4 0.4 0' * mySize_x, '1 1 1', rightalpha * hud_alpha_fg, DRAWFLAG_NORMAL);
1603                         HUD_DrawXNum(numpos, rightcnt, len, 0, 0.25 * mySize_x, '1 1 1', 0, 0, hud_alpha_fg, DRAWFLAG_NORMAL);
1604                 }
1605         }
1606
1607         /* TODO: add expand from old code!
1608         //strength
1609         if (strength_time) {
1610                 dt = strength_time - time;
1611                 if(dt > 0)
1612                 {
1613                         if(dt < 5)
1614                         {
1615                                 drawpic_expanding_two(pos, "str", '1 1 0' * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_ADDITIVE,
1616                                         bound(0, (ceil(dt) - dt) / 0.5, 1));
1617                         }
1618                         else
1619                         {
1620                                 drawpic_skin(pos, "str", '1 1 0' * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_ADDITIVE);
1621                         }
1622                         HUD_DrawXNum(pos - '40 -2 0', ceil(dt), 2, 0, countdown_fontsize, '1 1 1', 0, 0, hud_alpha_fg, DRAWFLAG_NORMAL);
1623                 }
1624                 else if(dt > -1)
1625                 {
1626                         drawpic_expanding(pos, "str", '1 1 0' * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_ADDITIVE,
1627                                 bound(0, -dt / 0.5, 1));
1628                 }
1629         }
1630
1631         //invincibility
1632         if (invincibility_time) {
1633                 dt = invincibility_time - time;
1634                 if(dt > 0)
1635                 {
1636                         if(dt < 5)
1637                         {
1638                                 drawpic_expanding_two(pos - '0 -22 0', "invinc", '1 1 0' * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_ADDITIVE,
1639                                         bound(0, (ceil(dt) - dt) / 0.5, 1));
1640                         }
1641                         else
1642                         {
1643                                 drawpic_skin(pos - '0 -22 0', "invinc", '1 1 0' * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_ADDITIVE);
1644                         }
1645                         HUD_DrawXNum(pos - '40 -24 0', ceil(dt), 2, 0, countdown_fontsize, '1 1 1', 0, 0, hud_alpha_fg, DRAWFLAG_NORMAL);
1646                 }
1647                 else if(dt > -1)
1648                 {
1649                         drawpic_expanding(pos - '0 -22 0', "invinc", '1 1 0' * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_ADDITIVE,
1650                                 bound(0, -dt / 0.5, 1));
1651                 }
1652         }
1653         */
1654 }
1655
1656 // Health/armor (#3)
1657 //
1658 void HUD_HealthArmor(void)
1659 {
1660         float id = 3;
1661         vector pos, mySize;
1662         pos = HUD_Panel_GetPos(id);
1663         mySize = HUD_Panel_GetSize(id);
1664
1665         HUD_Panel_DrawBg(id, pos, mySize);
1666         float padding;
1667         padding = cvar(strcat("hud_", HUD_Panel_GetName(id), "_bg_padding"));
1668         if(padding)
1669         {
1670                 pos += '1 1 0' * padding;
1671                 mySize -= '2 2 0' * padding;
1672         }
1673
1674         float armor, health;
1675         armor = getstati(STAT_ARMOR);
1676         health = getstati(STAT_HEALTH);
1677
1678         float fuel;
1679         fuel = getstati(GetAmmoStat(4)); // how much fuel do we have?
1680
1681         if(hud_configure)
1682         {
1683                 armor = 150;
1684                 health = 100;
1685                 fuel = 70;
1686         }
1687
1688         if(health <= 0)
1689                 return;
1690
1691         float len;
1692
1693         // TODO!
1694         /*
1695         if(hud_hudselector == 2) // combined health and armor display
1696         {
1697                 vector v;
1698                 v = healtharmor_maxdamage(health, armor, armorblockpercent);
1699
1700                 vector num_pos;
1701                 num_pos = - '96 28 0';
1702
1703                 x = floor(v_x + 1);
1704
1705                 if(v_z) // fully armored
1706                 {
1707                         // here, armorideal > armor
1708                         drawpic_skin(num_pos + '78 -4.5 0', "health", '32 32 0', '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
1709                         drawpic_skin(num_pos + '108 -4.5 0', "armor", '20 20 0', '1 1 1', hud_alpha_fg * armor / v_y, DRAWFLAG_NORMAL);
1710                 }
1711                 else
1712                 {
1713                         drawpic_skin(num_pos + '108 -4.5 0', "health", '20 20 0', '1 1 1', hud_alpha_fg * v_y / armor, DRAWFLAG_NORMAL);
1714                         drawpic_skin(num_pos + '78 -4.5 0', "armor", '32 32 0', '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
1715                 }
1716                 HUD_DrawXNum_Colored(num_pos, x, 3, 24, hud_alpha_fg); // draw the combined health and armor
1717         }
1718
1719         else
1720         {
1721         */
1722         vector barpos, barsize;
1723         vector picpos;
1724         vector numpos;
1725
1726         string leftname, rightname;
1727         float leftcnt, rightcnt;
1728         float leftactive, rightactive;
1729         float leftalpha, rightalpha;
1730         // TODO!
1731         if (cvar(strcat("hud_", HUD_Panel_GetName(id), "_flip"))) { // old style layout with armor left/top of health
1732                 leftname = "armor";
1733                 leftcnt = armor;
1734                 if(leftcnt)
1735                         leftactive = 1;
1736                 leftalpha = min((armor+10)/55, 1);
1737
1738                 rightname = "health";
1739                 rightcnt = health;
1740                 rightactive = 1;
1741                 rightalpha = 1;
1742         } else {
1743                 leftname = "health";
1744                 leftcnt = health;
1745                 leftactive = 1;
1746                 leftalpha = 1;
1747
1748                 rightname = "armor";
1749                 rightcnt = armor;
1750                 if(rightcnt)
1751                         rightactive = 1;
1752                 rightalpha = min((armor+10)/55, 1);
1753         }
1754
1755         // TODO: tile statusbars?
1756         if (mySize_x/mySize_y > 5)
1757         {
1758                 if(leftactive)
1759                 {
1760                         len = strlen(ftos(leftcnt));
1761
1762                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1763                                 barpos = pos + eX * 0.5 * mySize_x - eX * 0.5 * mySize_x * min(1, leftcnt/200);
1764                                 barsize = eX * 0.5 * mySize_x * min(1, leftcnt/200) + eY * mySize_y;
1765                                 picpos = pos + eX * 0.5 * mySize_x - eX * mySize_y;
1766                                 numpos = picpos - eX * 3 * 0.5 * mySize_y + eX * (3-len) * 0.5 * mySize_y + eY * 0.25 * mySize_y;
1767                         } else {
1768                                 barpos = pos;
1769                                 barsize = eX * 0.5 * mySize_x * min(1, leftcnt/200) + eY * mySize_y;
1770                                 picpos = pos;
1771                                 numpos = picpos + eX * mySize_y + eY * 0.25 * mySize_y;
1772                         }
1773
1774                         drawpic_skin(barpos, "statusbar", barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha"), DRAWFLAG_NORMAL);
1775                         drawpic_skin(picpos, leftname, '1 1 0' * mySize_y, '1 1 1', leftalpha * hud_alpha_fg, DRAWFLAG_NORMAL);
1776                         HUD_DrawXNum_Colored(numpos, leftcnt, len, 0.5 * mySize_y, hud_alpha_fg);
1777                 }
1778
1779                 if(rightactive)
1780                 {
1781                         len = strlen(ftos(rightcnt));
1782
1783                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1784                                 barpos = pos + eX * 0.5 * mySize_x;
1785                                 barsize = eX * 0.5 * mySize_x * min(1, rightcnt/200) + eY * mySize_y;
1786                                 picpos = pos + eX * 0.5 * mySize_x;
1787                                 numpos = picpos + eX * mySize_y - eX * (3-len) * 0.5 * mySize_y + eY * 0.25 * mySize_y;
1788                         } else {
1789                                 barpos = pos + eX * mySize_x - eX * 0.5 * mySize_x * min(1, rightcnt/200);
1790                                 barsize = eX * 0.5 * mySize_x * min(1, rightcnt/200) + eY * mySize_y;
1791                                 picpos = pos + eX * mySize_x - eX * mySize_y;
1792                                 numpos = picpos - eX * 1.5 * mySize_y + eY * 0.25 * mySize_y;
1793                         }
1794
1795                         drawpic_skin(barpos, "statusbar", barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha"), DRAWFLAG_NORMAL);
1796                         drawpic_skin(picpos, rightname, '1 1 0' * mySize_y, '1 1 1', rightalpha * hud_alpha_fg, DRAWFLAG_NORMAL);
1797                         HUD_DrawXNum_Colored(numpos, rightcnt, 3, 0.5 * mySize_y, hud_alpha_fg);
1798                 }
1799
1800                 if(fuel)
1801                         drawpic_skin(pos, "statusbar", eX * mySize_x * min(1, fuel/100) + eY * 0.2 * mySize_y, HUD_Panel_GetProgressBarColor("fuel"), hud_alpha_fg * 0.8, DRAWFLAG_NORMAL);
1802         }
1803         else if (mySize_x/mySize_y > 2)
1804         {
1805                 if(leftactive)
1806                 {
1807                         len = strlen(ftos(leftcnt));
1808
1809                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1810                                 barpos = pos + eX * mySize_x - eX * mySize_x * min(1, leftcnt/200);
1811                                 barsize = eX * mySize_x * min(1, leftcnt/200) + eY * 0.5 * mySize_y;
1812                                 picpos = pos + eX * mySize_x - eX * 0.5 * mySize_y;
1813                                 numpos = picpos - eX * len * 0.5 * mySize_y;
1814                         } else {
1815                                 barpos = pos;
1816                                 barsize = eX * mySize_x * min(1, leftcnt/200) + eY * 0.5 * mySize_y;
1817                                 picpos = pos;
1818                                 numpos = picpos + eX * 0.5 * mySize_y;
1819                         }
1820
1821                         drawpic_skin(barpos, "statusbar", barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha"), DRAWFLAG_NORMAL);
1822                         drawpic_skin(picpos, leftname, '0.5 0.5 0' * mySize_y, '1 1 1', leftalpha * hud_alpha_fg, DRAWFLAG_NORMAL);
1823                         HUD_DrawXNum_Colored(numpos, leftcnt, len, 0.5 * mySize_y, hud_alpha_fg);
1824                 }
1825
1826                 if(rightactive)
1827                 {
1828                         len = strlen(ftos(rightcnt));
1829
1830                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1831                                 barpos = pos + eX * mySize_x - eX * mySize_x * min(1, rightcnt/200) + eY * 0.5 * mySize_y;
1832                                 barsize = eX * mySize_x * min(1, rightcnt/200) + eY * 0.5 * mySize_y;
1833                                 picpos = pos + eX * mySize_x - eX * 0.5 * mySize_y + eY * 0.5 * mySize_y;
1834                                 numpos = picpos - eX * len * 0.5 * mySize_y;
1835                         } else {
1836                                 barpos = pos + eY * 0.5 * mySize_y;
1837                                 barsize = eX * mySize_x * min(1, rightcnt/200) + eY * 0.5 * mySize_y;
1838                                 picpos = pos + eY * 0.5 * mySize_y;
1839                                 numpos = picpos + eX * 0.5 * mySize_y;
1840                         }
1841
1842                         drawpic_skin(barpos, "statusbar", barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha"), DRAWFLAG_NORMAL);
1843                         drawpic_skin(picpos, rightname, '0.5 0.5 0' * mySize_y, '1 1 1', rightalpha * hud_alpha_fg, DRAWFLAG_NORMAL);
1844                         HUD_DrawXNum_Colored(numpos, rightcnt, len, 0.5 * mySize_y, hud_alpha_fg);
1845                 }
1846
1847                 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1848                         barpos = pos + eX * mySize_x - eX * mySize_x * min(1, fuel/100);
1849                         barsize = eX * mySize_x * min(1, fuel/100) + eY * 0.1 * mySize_y;
1850                 } else {
1851                         barpos = pos;
1852                         barsize = eX * mySize_x * min(1, fuel/100) + eY * 0.1 * mySize_y;
1853                 }
1854                 if(fuel)
1855                         drawpic_skin(barpos, "statusbar", barsize, HUD_Panel_GetProgressBarColor("fuel"), hud_alpha_fg * 0.8, DRAWFLAG_NORMAL);
1856         }
1857         else
1858         {
1859                 if(leftactive)
1860                 {
1861                         len = strlen(ftos(leftcnt));
1862
1863                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1864                                 barpos = pos;
1865                                 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, leftcnt/200);
1866                                 picpos = pos + eX * 0.05 * mySize_x;
1867                                 numpos = pos + eX * ((3-len)/2) * 0.25 * mySize_x + eY * 0.4 * mySize_x;
1868                         } else {
1869                                 barpos = pos + eY * mySize_y - eY * mySize_y * min(1, leftcnt/200);
1870                                 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, leftcnt/200);
1871                                 picpos = pos + eX * 0.05 * mySize_x + eY * mySize_y - eY * 0.566 * mySize_x;
1872                                 numpos = pos + eX * ((3-len)/2) * 0.25 * mySize_x + eY * mySize_y - eY * 0.166 * mySize_x;
1873                         }
1874
1875                         drawpic_skin(barpos, "statusbar_vertical", barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha"), DRAWFLAG_NORMAL);
1876                         drawpic_skin(picpos, leftname, '0.4 0.4 0' * mySize_x, '1 1 1', leftalpha * hud_alpha_fg, DRAWFLAG_NORMAL);
1877                         HUD_DrawXNum_Colored(numpos, leftcnt, len, 0.166 * mySize_x, hud_alpha_fg);
1878                 }
1879
1880                 if(rightactive)
1881                 {
1882                         len = strlen(ftos(rightcnt));
1883
1884                         if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1885                                 barpos = pos + eX * 0.5 * mySize_x;
1886                                 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, rightcnt/200);
1887                                 picpos = pos + eX * 0.05 * mySize_x + eX * 0.5 * mySize_x;
1888                                 numpos = pos + eX * ((3-len)/2) * 0.25 * mySize_x + eY * 0.4 * mySize_x + eX * 0.5 * mySize_x;
1889                         } else {
1890                                 barpos = pos + eY * mySize_y - eY * mySize_y * min(1, rightcnt/200) + eX * 0.5 * mySize_x;
1891                                 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, rightcnt/200);
1892                                 picpos = pos + eX * 0.05 * mySize_x + eY * mySize_y - eY * 0.566 * mySize_x + eX * 0.5 * mySize_x;
1893                                 numpos = pos + eX * ((3-len)/2) * 0.25 * mySize_x + eY * mySize_y - eY * 0.166 * mySize_x + eX * 0.5 * mySize_x;
1894                         }
1895
1896                         drawpic_skin(barpos, "statusbar_vertical", barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha"), DRAWFLAG_NORMAL);
1897                         drawpic_skin(picpos, rightname, '0.4 0.4 0' * mySize_x, '1 1 1', rightalpha * hud_alpha_fg, DRAWFLAG_NORMAL);
1898                         HUD_DrawXNum_Colored(numpos, rightcnt, len, 0.166 * mySize_x, hud_alpha_fg);
1899                 }
1900
1901                 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1902                         barpos = pos;
1903                         barsize = eX * 0.05 * mySize_x + eY * mySize_y * min(1, fuel/100);
1904                 } else {
1905                         barpos = pos + eY * mySize_y - eY * mySize_y * min(1, fuel/100);
1906                         barsize = eX * 0.05 * mySize_x + eY * mySize_y * min(1, fuel/100);
1907                 }
1908                 if(fuel)
1909                         drawpic_skin(barpos, "statusbar_vertical", barsize, HUD_Panel_GetProgressBarColor("fuel"), hud_alpha_fg * 0.8, DRAWFLAG_NORMAL);
1910         }
1911 }
1912
1913 // ___TODO___ !!!
1914 // Notification area (#4)
1915 //
1916 void HUD_Notify (void)
1917 {
1918         float id = 4;
1919         vector pos, mySize;
1920         pos = HUD_Panel_GetPos(id);
1921         mySize = HUD_Panel_GetSize(id);
1922
1923         HUD_Panel_DrawBg(id, pos, mySize);
1924         float padding;
1925         padding = cvar(strcat("hud_", HUD_Panel_GetName(id), "_bg_padding"));
1926         if(padding)
1927         {
1928                 pos += '1 1 0' * padding;
1929                 mySize -= '2 2 0' * padding;
1930         }
1931
1932         string s;
1933         entity tm;
1934         if(spectatee_status && !intermission)
1935         {
1936                 drawfont = hud_bigfont;
1937                 if(spectatee_status == -1)
1938                         s = "^1Observing";
1939                 else
1940                         s = GetPlayerName(spectatee_status - 1);
1941                 // spectated player name between HUD and chat area, aligned to the left
1942                 pos_x = 0;
1943                 pos_y = - 50 - hud_fontsize_spec_y;
1944                 s = textShortenToWidth(s, vid_conwidth/2.5, hud_fontsize_spec, stringwidth_colors);
1945                 drawcolorcodedstring(pos, s, hud_fontsize_spec, hud_alpha_fg, DRAWFLAG_NORMAL);
1946                 drawfont = hud_font;
1947
1948                 // spectator text in the upper right corner
1949                 if(spectatee_status == -1)
1950                         s = strcat("^1Press ^3", getcommandkey("primary fire", "+attack"), "^1 to spectate");
1951                 else
1952                         s = strcat("^1Press ^3", getcommandkey("primary fire", "+attack"), "^1 for another player");
1953
1954                 if(spectatee_status == -1)
1955                         s = strcat("^1Use ^3", getcommandkey("next weapon", "weapnext"), "^1 or ^3", getcommandkey("previous weapon", "weapprev"), "^1 to change the speed");
1956                 else
1957                         s = strcat("^1Press ^3", getcommandkey("secondary fire", "+attack2"), "^1 to observe");
1958
1959                 s = strcat("^1Press ^3", getcommandkey("server info", "+show_info"), "^1 for gamemode info");
1960
1961                 if(gametype == GAME_ARENA)
1962                         s = "^1Wait for your turn to join";
1963                 else if(gametype == GAME_LMS)
1964                 {
1965                         entity sk;
1966                         sk = playerslots[player_localentnum - 1];
1967                         if(sk.(scores[ps_primary]) >= 666)
1968                                 s = "^1Match has already begun";
1969                         else if(sk.(scores[ps_primary]) > 0)
1970                                 s = "^1You have no more lives left";
1971                         else
1972                                 s = strcat("^1Press ^3", getcommandkey("jump", "+jump"), "^1 to join");
1973                 }
1974                 else
1975                         s = strcat("^1Press ^3", getcommandkey("jump", "+jump"), "^1 to join");
1976
1977                 //show restart countdown:
1978                 if (time < getstatf(STAT_GAMESTARTTIME)) {
1979                         float countdown;
1980                         //we need to ceil, otherwise the countdown would be off by .5 when using round()
1981                         countdown = ceil(getstatf(STAT_GAMESTARTTIME) - time);
1982                         s = strcat("^1Game starts in ^3", ftos(countdown), "^1 seconds");
1983                 }
1984         }
1985         if(warmup_stage && !intermission)
1986         {
1987                 s = "^2Currently in ^1warmup^2 stage!";
1988         }
1989
1990         // move more important stuff more to the middle so its more visible
1991
1992         string blinkcolor;
1993         if(mod(time, 1) >= 0.5)
1994                 blinkcolor = "^1";
1995         else
1996                 blinkcolor = "^3";
1997
1998         if(ready_waiting && !intermission && !spectatee_status)
1999         {
2000                 if(ready_waiting_for_me)
2001                 {
2002                         if(warmup_stage)
2003                                 s = strcat(blinkcolor, "Press ^3", getcommandkey("ready", "ready"), blinkcolor, " to end warmup");
2004                         else
2005                                 s = strcat(blinkcolor, "Press ^3", getcommandkey("ready", "ready"), blinkcolor, " once you are ready");
2006                 }
2007                 else
2008                 {
2009                         if(warmup_stage)
2010                                 s = strcat("^2Waiting for others to ready up to end warmup...");
2011                         else
2012                                 s = strcat("^2Waiting for others to ready up...");
2013                 }
2014         }
2015         else if(warmup_stage && !intermission && !spectatee_status)
2016         {
2017                 s = strcat("^2Press ^3", getcommandkey("ready", "ready"), "^2 to end warmup");
2018         }
2019
2020         if(teamplay && !intermission && !spectatee_status && gametype != GAME_CA && teamnagger)
2021         {
2022                 float ts_min, ts_max;
2023                 tm = teams.sort_next;
2024                 if (tm)
2025                 {
2026                         for(; tm.sort_next; tm = tm.sort_next)
2027                         {
2028                                 if(!tm.team_size || tm.team == COLOR_SPECTATOR)
2029                                         continue;
2030                                 if(!ts_min) ts_min = tm.team_size;
2031                                 else ts_min = min(ts_min, tm.team_size);
2032                                 if(!ts_max) ts_max = tm.team_size;
2033                                 else ts_max = max(ts_max, tm.team_size);
2034                         }
2035                         if ((ts_max - ts_min) > 1)
2036                         {
2037                                 s = strcat(blinkcolor, "Teamnumbers are unbalanced!");
2038                                 tm = GetTeam(myteam, false);
2039                                 if (tm)
2040                                 if (tm.team != COLOR_SPECTATOR)
2041                                 if (tm.team_size == ts_max)
2042                                         s = strcat(s, " Press ^3", getcommandkey("team menu", "menu_showteamselect"), blinkcolor, " to adjust");
2043
2044                         }
2045                 }
2046         }
2047 }
2048
2049 // Timer (#5)
2050 //
2051 void HUD_Timer()
2052 {
2053         float id = 5;
2054         vector pos, mySize;
2055         pos = HUD_Panel_GetPos(id);
2056         mySize = HUD_Panel_GetSize(id);
2057
2058         HUD_Panel_DrawBg(id, pos, mySize);
2059         float padding;
2060         padding = cvar(strcat("hud_", HUD_Panel_GetName(id), "_bg_padding"));
2061         if(padding)
2062         {
2063                 pos += '1 1 0' * padding;
2064                 mySize -= '2 2 0' * padding;
2065         }
2066
2067         float timelimit, elapsedTime, minutes, seconds, timeleft, minutesLeft, secondsLeft;
2068
2069         timelimit = getstatf(STAT_TIMELIMIT);
2070
2071         timeleft = max(0, timelimit * 60 + getstatf(STAT_GAMESTARTTIME) - time);
2072         timeleft = ceil(timeleft);
2073         minutesLeft = floor(timeleft / 60);
2074         secondsLeft = timeleft - minutesLeft*60;
2075
2076         vector timer_color;
2077         if(minutesLeft >= 5 || warmup_stage || timelimit == 0) //don't use red or yellow in warmup or when there is no timelimit
2078                 timer_color = '1 1 1'; //white
2079         else if(minutesLeft >= 1)
2080                 timer_color = '1 1 0'; //yellow
2081         else
2082                 timer_color = '1 0 0'; //red
2083
2084         if (cvar("hud_timer_increment") || timelimit == 0 || warmup_stage) {
2085                 if (time < getstatf(STAT_GAMESTARTTIME)) {
2086                         //while restart is still active, show 00:00
2087                         minutes = seconds = 0;
2088                 } else {
2089                         elapsedTime = floor(time - getstatf(STAT_GAMESTARTTIME)); //127
2090                         minutes = floor(elapsedTime / 60);
2091                         seconds = elapsedTime - minutes*60;
2092                 }
2093         } else {
2094                 minutes = minutesLeft;
2095                 seconds = secondsLeft;
2096         }
2097
2098         if(minutes > 999)
2099                 seconds = 99;
2100         minutes = min(minutes, 999);
2101         if(minutesLeft >= 1 || cvar("hud_timer_increment") || timelimit == 0 || warmup_stage) {
2102                 HUD_DrawXNum(pos + eX * mySize_x - eX * 5.1 * mySize_y, minutes, 3, 0, mySize_y, timer_color, 0, 0, hud_alpha_fg, DRAWFLAG_NORMAL);
2103                 drawpic_skin(pos + eX * mySize_x - eX * 2.57 * mySize_y, "num_colon", '1 1 0' * mySize_y, timer_color, hud_alpha_fg, DRAWFLAG_NORMAL);
2104         }
2105         HUD_DrawXNum(pos + eX * mySize_x - eX * 2 * mySize_y, seconds, -2, 0, mySize_y, timer_color, 0, 0, hud_alpha_fg, DRAWFLAG_NORMAL);
2106 }
2107
2108 // Radar (#6)
2109 //
2110 void HUD_Radar(void)
2111 {
2112         float id = 6;
2113         vector pos, mySize;
2114         pos = HUD_Panel_GetPos(id);
2115         mySize = HUD_Panel_GetSize(id);
2116
2117         HUD_Panel_DrawBg(id, pos, mySize);
2118         float padding;
2119         padding = cvar(strcat("hud_", HUD_Panel_GetName(id), "_bg_padding"));
2120         if(padding)
2121         {
2122                 pos += '1 1 0' * padding;
2123                 mySize -= '2 2 0' * padding;
2124         }
2125
2126         local float color1, color2; // color already declared as a global in hud.qc
2127         local vector rgb;
2128         local entity tm;
2129         float scale2d, normalsize, bigsize;
2130         float f;
2131
2132         teamradar_origin2d = pos + 0.5 * mySize; // TODO: stupid compat, should be removed
2133         teamradar_size2d = mySize;
2134
2135         if(minimapname == "" && !ons_showmap)
2136                 return;
2137
2138         teamradar_loadcvars();
2139
2140         switch(cl_teamradar_zoommode)
2141         {
2142                 default:
2143                 case 0:
2144                         f = current_zoomfraction;
2145                         break;
2146                 case 1:
2147                         f = 1 - current_zoomfraction;
2148                         break;
2149                 case 2:
2150                         f = 0;
2151                         break;
2152                 case 3:
2153                         f = 1;
2154                         break;
2155         }
2156
2157         switch(cl_teamradar_rotation)
2158         {
2159                 case 0:
2160                         teamradar_angle = view_angles_y - 90;
2161                         break;
2162                 default:
2163                         teamradar_angle = 90 * cl_teamradar_rotation;
2164                         break;
2165         }
2166
2167         scale2d = vlen_maxnorm2d(mi_picmax - mi_picmin);
2168         teamradar_size2d = mySize;
2169
2170         teamradar_extraclip_mins = teamradar_extraclip_maxs = '0 0 0'; // we always center
2171
2172         // pixels per world qu to match the teamradar_size2d_x range in the longest dimension
2173         if(cl_teamradar_rotation == 0)
2174         {
2175                 // max-min distance must fit the radar in any rotation
2176                 bigsize = vlen_minnorm2d(teamradar_size2d) * scale2d / (1.05 * vlen2d(mi_max - mi_min));
2177         }
2178         else
2179         {
2180                 vector c0, c1, c2, c3, span;
2181                 c0 = rotate(mi_min, teamradar_angle * DEG2RAD);
2182                 c1 = rotate(mi_max, teamradar_angle * DEG2RAD);
2183                 c2 = rotate('1 0 0' * mi_min_x + '0 1 0' * mi_max_y, teamradar_angle * DEG2RAD);
2184                 c3 = rotate('1 0 0' * mi_max_x + '0 1 0' * mi_min_y, teamradar_angle * DEG2RAD);
2185                 span = '0 0 0';
2186                 span_x = max4(c0_x, c1_x, c2_x, c3_x) - min4(c0_x, c1_x, c2_x, c3_x);
2187                 span_y = max4(c0_y, c1_y, c2_y, c3_y) - min4(c0_y, c1_y, c2_y, c3_y);
2188
2189                 // max-min distance must fit the radar in x=x, y=y
2190                 bigsize = min(
2191                         teamradar_size2d_x * scale2d / (1.05 * span_x),
2192                         teamradar_size2d_y * scale2d / (1.05 * span_y)
2193                 );
2194         }
2195
2196         normalsize = vlen_maxnorm2d(teamradar_size2d) * scale2d / cl_teamradar_scale;
2197         if(bigsize > normalsize)
2198                 normalsize = bigsize;
2199
2200         teamradar_size =
2201                   f * bigsize
2202                 + (1 - f) * normalsize;
2203         teamradar_origin3d_in_texcoord = teamradar_3dcoord_to_texcoord(
2204                   f * (mi_min + mi_max) * 0.5
2205                 + (1 - f) * view_origin);
2206
2207         color1 = GetPlayerColor(player_localentnum-1);
2208         rgb = GetTeamRGB(color1);
2209
2210         drawsetcliparea(
2211                 pos_x,
2212                 pos_y,
2213                 mySize_x,
2214                 mySize_y
2215         );
2216
2217         draw_teamradar_background(cl_teamradar_background_alpha, cl_teamradar_foreground_alpha);
2218
2219         if(ons_showmap)
2220         {
2221                 drawresetcliparea();
2222
2223                 vector frame_origin, frame_size;
2224                 frame_origin = frame_size = '0 0 0';
2225
2226                 frame_origin_x = pos_x - teamradar_size2d_x * 0.55859375; // matches the picture
2227                 frame_origin_y = pos_y - teamradar_size2d_y * 0.55859375; // matches the picture
2228                 frame_size_x = pos_x * 1.1171875; // matches the picture
2229                 frame_size_y = pos_y * 1.1171875; // matches the picture
2230                 drawpic_skin(frame_origin, "gfx/ons-frame.tga", frame_size, '1 1 1', hud_alpha_fg, 0);
2231                 drawpic_skin(frame_origin, "gfx/ons-frame-team.tga", frame_size, rgb, hud_alpha_fg, 0);
2232
2233                 drawsetcliparea(
2234                         pos_x - teamradar_size2d_x * 0.5,
2235                         pos_y - teamradar_size2d_y * 0.5,
2236                         teamradar_size2d_x,
2237                         teamradar_size2d_y
2238                 );
2239         }
2240
2241         for(tm = world; (tm = find(tm, classname, "radarlink")); )
2242                 draw_teamradar_link(tm.origin, tm.velocity, tm.team);
2243         for(tm = world; (tm = findflags(tm, teamradar_icon, 0xFFFFFF)); )
2244                 draw_teamradar_icon(tm.origin, tm.teamradar_icon, tm, tm.teamradar_color, hud_alpha_fg);
2245         for(tm = world; (tm = find(tm, classname, "entcs_receiver")); )
2246         {
2247                 color2 = GetPlayerColor(tm.sv_entnum);
2248                 //if(color == COLOR_SPECTATOR || color == color2)
2249                         draw_teamradar_player(tm.origin, tm.angles, GetTeamRGB(color2));
2250         }
2251         draw_teamradar_player(view_origin, view_angles, '1 1 1');
2252
2253         drawresetcliparea();
2254 };
2255
2256 // Score (#7)
2257 //
2258 void HUD_Score()
2259 {
2260         float id = 7;
2261         vector pos, mySize;
2262         pos = HUD_Panel_GetPos(id);
2263         mySize = HUD_Panel_GetSize(id);
2264
2265         HUD_Panel_DrawBg(id, pos, mySize);
2266         float padding;
2267         padding = cvar(strcat("hud_", HUD_Panel_GetName(id), "_bg_padding"));
2268         if(padding)
2269         {
2270                 pos += '1 1 0' * padding;
2271                 mySize -= '2 2 0' * padding;
2272         }
2273
2274         float score, distribution, leader;
2275         float score_len, distr_len;
2276         vector distribution_color;
2277         entity tm, pl, me;
2278         me = (spectatee_status > 0) ? playerslots[spectatee_status - 1] : playerslots[player_localentnum - 1];
2279
2280         // TODO... this (race part) still uses constant coordinates :/
2281         if((scores_flags[ps_primary] & SFL_TIME) && !teamplay) { // race/cts record display on HUD
2282                 /*pl = players.sort_next;
2283                 if(pl == me)
2284                         pl = pl.sort_next;
2285                 if(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)
2286                         if(pl.scores[ps_primary] == 0)
2287                                 pl = world;
2288
2289                 score = me.(scores[ps_primary]);
2290
2291                 float racemin, racesec, racemsec;
2292                 float distsec, distmsec, minusplus;
2293
2294                 racemin = floor(score/(60 * TIME_FACTOR));
2295                 racesec = floor((score - racemin*(60 * TIME_FACTOR))/TIME_FACTOR);
2296                 racemsec = score - racemin*60*TIME_FACTOR - racesec*TIME_FACTOR;
2297
2298                 if (pl && ((!(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)) || score)) {
2299                         // distribution display
2300                         distribution = me.(scores[ps_primary]) - pl.(scores[ps_primary]);
2301
2302                         if (distribution < TIME_FACTOR && distribution > -TIME_FACTOR)
2303                                 distmsec = fabs(distribution);
2304                         else {
2305                                 distsec = floor(fabs(distribution)/TIME_FACTOR);
2306                                 distmsec = fabs(distribution) - distsec*TIME_FACTOR;
2307                                 if (distribution < 0)
2308                                         distsec = -distsec;
2309                         }
2310
2311                         if (distribution <= 0) {
2312                                 distribution_color = eY;
2313                                 minusplus = 1; // minusplus 1: always prefix with minus sign
2314                         }
2315                         else {
2316                                 distribution_color = eX;
2317                                 minusplus = 2; // minusplus 1: always prefix with plus sign
2318                         }
2319                         HUD_DrawXNum(bottomright - '0 48 0' - '16 0 0' * TIME_DECIMALS, distmsec, -TIME_DECIMALS, 0, 16, distribution_color, 0, 0, hud_alpha_fg, DRAWFLAG_NORMAL);
2320                         HUD_DrawXNum(bottomright - '68 48 0' - '16 0 0' * TIME_DECIMALS, distsec, 4, minusplus, 16, distribution_color, 0, 0, hud_alpha_fg, DRAWFLAG_NORMAL);
2321                         drawpic_skin(bottomright - '10 48 0' - '16 0 0' * TIME_DECIMALS, "num_dot", '16 16 0', distribution_color, hud_alpha_fg, DRAWFLAG_ADDITIVE);
2322                 }
2323                 // race record display
2324                 if (distribution <= 0 || distribution == score) // draw the highlight background behind the timer if we have the lead
2325                         drawpic_skin(bottomright - '0 32 0' - '32 0 0' * (4 + TIME_DECIMALS), "highlight_4", '0 28 0' + '32 0 0' * (4 + TIME_DECIMALS), '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
2326
2327                 HUD_DrawXNum(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0', racemsec, -TIME_DECIMALS, 0, 30, '1 1 1', 0, 0, hud_alpha_fg, DRAWFLAG_NORMAL);
2328                 HUD_DrawXNum(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0'  - '66 0 0', racesec, -2, 0, 30, '1 1 1', 0, 0, hud_alpha_fg, DRAWFLAG_NORMAL);
2329                 drawpic_skin(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0' - '18 0 0', "num_dot", '30 30 0', '1 1 1', hud_alpha_fg, DRAWFLAG_ADDITIVE);
2330
2331                 HUD_DrawXNum(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0' - '132 0 0', racemin, -2, 0, 30, '1 1 1', 0, 0, hud_alpha_fg, DRAWFLAG_NORMAL);
2332                 drawpic_skin(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0' - '84 0 0', "num_colon", '30 30 0', '1 1 1', hud_alpha_fg, DRAWFLAG_ADDITIVE);
2333                 */
2334         } else if (!teamplay) { // non-teamgames
2335                 // me vector := [team/connected frags id]
2336                 pl = players.sort_next;
2337                 if(pl == me)
2338                         pl = pl.sort_next;
2339
2340                 if(hud_configure)
2341                         distribution = 42;
2342                 else if(pl)
2343                         distribution = me.(scores[ps_primary]) - pl.(scores[ps_primary]);
2344                 else
2345                         distribution = 0;
2346
2347                 score = me.(scores[ps_primary]);
2348                 if(hud_configure)
2349                         score = 123;
2350
2351                 if(distribution >= 5) {
2352                         distribution_color = eY;
2353                         leader = 1;
2354                 } else if(distribution >= 0) {
2355                         distribution_color = '1 1 1';
2356                         leader = 1;
2357                 } else if(distribution >= -5)
2358                         distribution_color = '1 1 0';
2359                 else
2360                         distribution_color = eX;
2361
2362                 score_len = strlen(ftos(score));
2363                 distr_len = strlen(ftos(distribution));
2364
2365                 HUD_DrawXNum(pos + eX * mySize_x - eX * 3 * 0.33 * mySize_y, distribution, 3, 3, 0.33 * mySize_y, distribution_color, 0, 0, hud_alpha_fg, DRAWFLAG_NORMAL);
2366                 if (leader)
2367                         drawpic_skin(pos + eX * mySize_x - eX * score_len * mySize_y - eX * 3 * 0.33 * mySize_y, strcat("highlight_", ftos(score_len)), eX * score_len * mySize_y + eY * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
2368                 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_alpha_fg, DRAWFLAG_NORMAL);
2369         } else { // teamgames
2370                 float max_fragcount;
2371                 max_fragcount = -99;
2372
2373                 float teamnum;
2374                 for(tm = teams.sort_next; tm; tm = tm.sort_next) {
2375                         if(tm.team == COLOR_SPECTATOR || (!tm.team_size && !hud_configure)) // no players? don't display
2376                                 continue;
2377                         score = tm.(teamscores[ts_primary]);
2378                         if(hud_configure)
2379                                 score = 123;
2380                         leader = 0;
2381                         
2382                         score_len = strlen(ftos(score));
2383
2384                         if (score > max_fragcount)
2385                                 max_fragcount = score;
2386
2387                         if(tm.team == myteam) {
2388                                 if (max_fragcount == score)
2389                                         leader = 1;
2390                                 if (leader)
2391                                         drawpic_skin(pos + eX * mySize_x - eX * score_len * mySize_y - eX * 3 * 0.33 * mySize_y, strcat("highlight_", ftos(score_len)), eX * score_len * mySize_y + eY * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
2392                                 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_alpha_fg, DRAWFLAG_NORMAL);
2393                         } else {
2394                                 if (max_fragcount == score)
2395                                         leader = 1;
2396                                 if (leader)
2397                                         drawpic_skin(pos + eX * mySize_x - eX * 0.33 * score_len * mySize_y + eY * 0.33 * mySize_y * teamnum, strcat("highlight_", ftos(score_len)), eX * 0.33 * score_len * mySize_y + eY * 0.33 * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
2398                                 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_alpha_fg, DRAWFLAG_NORMAL);
2399                                 teamnum += 1;
2400                         }
2401                 }
2402         }
2403 }
2404
2405 // Race timer (#8)
2406 //
2407 void HUD_RaceTimer (void) {
2408         float id = 8;
2409         vector pos, mySize;
2410         pos = HUD_Panel_GetPos(id);
2411         mySize = HUD_Panel_GetSize(id);
2412
2413         HUD_Panel_DrawBg(id, pos, mySize);
2414         float padding;
2415         padding = cvar(strcat("hud_", HUD_Panel_GetName(id), "_bg_padding"));
2416         if(padding)
2417         {
2418                 pos += '1 1 0' * padding;
2419                 mySize -= '2 2 0' * padding;
2420         }
2421
2422         drawfont = hud_bigfont;
2423         float a, t;
2424         string s, forcetime;
2425
2426         if(hud_configure)
2427         {
2428                 s = "0:13:37";
2429                 drawstring(pos + eX * 0.5 * mySize_x - '0.5 0 0' * stringwidth(s, FALSE, '0.75 0.75 0' * mySize_y), s, '0.75 0.75 0' * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
2430                 s = "^1Intermediate 1 (+15.42)";
2431                 drawcolorcodedstring(pos + eX * 0.5 * mySize_x - '0.5 0 0' * stringwidth(s, TRUE, '1 1 0' * 0.25 * mySize_y) + eY * 0.75 * mySize_y, s, '1 1 0' * 0.25 * mySize_y, hud_alpha_fg, DRAWFLAG_NORMAL);
2432         }
2433         else if(race_checkpointtime)
2434         {
2435                 a = bound(0, 2 - (time - race_checkpointtime), 1);
2436                 s = "";
2437                 forcetime = "";
2438                 if(a > 0) // just hit a checkpoint?
2439                 {
2440                         if(race_checkpoint != 254)
2441                         {
2442                                 if(race_time && race_previousbesttime)
2443                                         s = MakeRaceString(race_checkpoint, TIME_DECODE(race_time) - TIME_DECODE(race_previousbesttime), 0, 0, race_previousbestname);
2444                                 else
2445                                         s = MakeRaceString(race_checkpoint, 0, -1, 0, race_previousbestname);
2446                                 if(race_time)
2447                                         forcetime = TIME_ENCODED_TOSTRING(race_time);
2448                         }
2449                 }
2450                 else
2451                 {
2452                         if(race_laptime && race_nextbesttime && race_nextcheckpoint != 254)
2453                         {
2454                                 a = bound(0, 2 - ((race_laptime + TIME_DECODE(race_nextbesttime)) - (time + TIME_DECODE(race_penaltyaccumulator))), 1);
2455                                 if(a > 0) // next one?
2456                                 {
2457                                         s = MakeRaceString(race_nextcheckpoint, (time + TIME_DECODE(race_penaltyaccumulator)) - race_laptime, TIME_DECODE(race_nextbesttime), 0, race_nextbestname);
2458                                 }
2459                         }
2460                 }
2461
2462                 if(s != "" && a > 0)
2463                 {
2464                         dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
2465                         //drawcolorcodedstring(m - '0 16 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', hud_alpha_fg * a, DRAWFLAG_NORMAL);
2466                         drawcolorcodedstring(pos + eX * 0.5 * mySize_x - '0.5 0 0' * stringwidth(s, TRUE, '1 1 0' * 0.25 * mySize_y) + eY * 0.75 * mySize_y, s, '1 1 0' * 0.25 * mySize_y, hud_alpha_fg * a, DRAWFLAG_NORMAL);
2467                 }
2468
2469                 // ___ TODO!!!___
2470                 if(race_penaltytime)
2471                 {
2472                         a = bound(0, 2 - (time - race_penaltyeventtime), 1);
2473                         if(a > 0)
2474                         {
2475                                 s = strcat("^1PENALTY: ", ftos_decimals(race_penaltytime * 0.1, 1), " (", race_penaltyreason, ")");
2476                                 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
2477                                 //drawcolorcodedstring(m - '0 32 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', hud_alpha_fg * a, DRAWFLAG_NORMAL);
2478                                 drawcolorcodedstring(pos - '0 32 0' - '0.5 0 0' * stringwidth(s, TRUE, '16 16 0'), s, '16 16 0', hud_alpha_fg * a, DRAWFLAG_NORMAL);
2479                         }
2480                 }
2481
2482                 if(forcetime != "")
2483                 {
2484                         a = bound(0, (time - race_checkpointtime) / 0.5, 1);
2485                         //drawstring_expanding(m - '16 0 0' * stringwidth(forcetime, FALSE), forcetime, '32 32 0', '1 1 1', hud_alpha_fg, 0, a);
2486                         drawstring_expanding(pos + eX * 0.5 * mySize_x - '0.5 0 0' * stringwidth(forcetime, FALSE, '1 1 0' * 0.75 * mySize_y), forcetime, '1 1 0' * 0.75 * mySize_y, '1 1 1', hud_alpha_fg, 0, a);
2487                 }
2488                 else
2489                         a = 1;
2490
2491                 if(race_laptime && race_checkpoint != 255)
2492                 {
2493                         s = TIME_ENCODED_TOSTRING(TIME_ENCODE(time + TIME_DECODE(race_penaltyaccumulator) - race_laptime));
2494                         //drawstring(m - '16 0 0' * stringwidth(s, FALSE), s, '32 32 0', '1 1 1', hud_alpha_fg * a, DRAWFLAG_NORMAL);
2495                         drawstring(pos + eX * 0.5 * mySize_x - '0.5 0 0' * stringwidth(s, FALSE, '0.75 0.75 0' * mySize_y), s, '0.75 0.75 0' * mySize_y, '1 1 1', hud_alpha_fg * a, DRAWFLAG_NORMAL);
2496                 }
2497         }
2498         else
2499         {
2500                 if(race_mycheckpointtime)
2501                 {
2502                         a = bound(0, 2 - (time - race_mycheckpointtime), 1);
2503                         s = MakeRaceString(race_mycheckpoint, TIME_DECODE(race_mycheckpointdelta), -!race_mycheckpointenemy, race_mycheckpointlapsdelta, race_mycheckpointenemy);
2504                         dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
2505                         //drawcolorcodedstring(m - '0 16 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', hud_alpha_fg * a, DRAWFLAG_NORMAL);
2506                         drawcolorcodedstring(pos - '0 16 0' - '0.5 0 0' * stringwidth(s, TRUE, '16 16 0'), s, '16 16 0', hud_alpha_fg * a, DRAWFLAG_NORMAL);
2507                 }
2508                 if(race_othercheckpointtime && race_othercheckpointenemy != "")
2509                 {
2510                         a = bound(0, 2 - (time - race_othercheckpointtime), 1);
2511                         s = MakeRaceString(race_othercheckpoint, -TIME_DECODE(race_othercheckpointdelta), -!race_othercheckpointenemy, race_othercheckpointlapsdelta, race_othercheckpointenemy);
2512                         dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
2513                         //drawcolorcodedstring(m - '0 0 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', hud_alpha_fg * a, DRAWFLAG_NORMAL);
2514                         drawcolorcodedstring(pos - '0 0 0' - '0.5 0 0' * stringwidth(s, TRUE, '16 16 0'), s, '16 16 0', hud_alpha_fg * a, DRAWFLAG_NORMAL);
2515                 }
2516
2517                 if(race_penaltytime && !race_penaltyaccumulator)
2518                 {
2519                         t = race_penaltytime * 0.1 + race_penaltyeventtime;
2520                         a = bound(0, (1 + t - time), 1);
2521                         if(a > 0)
2522                         {
2523                                 if(time < t)
2524                                         s = strcat("^1PENALTY: ", ftos_decimals(t - time, 1), " (", race_penaltyreason, ")");
2525                                 else
2526                                         s = strcat("^2PENALTY: 0.0 (", race_penaltyreason, ")");
2527                                 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
2528                                 //drawcolorcodedstring(m - '0 32 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', hud_alpha_fg * a, DRAWFLAG_NORMAL);
2529                                 drawcolorcodedstring(pos - '0 32 0' - '0.5 0 0' * stringwidth(s, TRUE, '16 16 0'), s, '16 16 0', hud_alpha_fg * a, DRAWFLAG_NORMAL);
2530                         }
2531                 }
2532         }
2533
2534         drawfont = hud_font;
2535 }
2536
2537 // Vote window (#9)
2538 //
2539 float vote_yescount;
2540 float vote_nocount;
2541 float vote_needed;
2542 float vote_highlighted; // currently selected vote
2543
2544 float vote_active; // is there an active vote?
2545 float vote_prev; // previous state of vote_active to check for a change
2546 float vote_alpha;
2547 float vote_change; // "time" when vote_active changed
2548
2549 void HUD_VoteWindow(void) 
2550 {
2551         float id = 9;
2552         vector pos, mySize;
2553         pos = HUD_Panel_GetPos(id);
2554         mySize = HUD_Panel_GetSize(id);
2555
2556         string s;
2557         float a;
2558         if(vote_active != vote_prev) {
2559                 vote_change = time;
2560                 vote_prev = bound(0, vote_active, 1);
2561         }
2562
2563         if(vote_active)
2564                 vote_alpha = bound(0, (time - vote_change) * 2, 1);
2565         else
2566                 vote_alpha = bound(0, 1 - (time - vote_change) * 2, 1);
2567
2568         if(hud_configure)
2569         {
2570                 vote_alpha = 1;
2571                 vote_yescount = 3;
2572                 vote_nocount = 2;
2573                 vote_needed = 4;
2574         }
2575
2576         HUD_Panel_DrawBg(id, pos, mySize);
2577         float padding;
2578         padding = cvar(strcat("hud_", HUD_Panel_GetName(id), "_bg_padding"));
2579         if(padding)
2580         {
2581                 pos += '1 1 0' * padding;
2582                 mySize -= '2 2 0' * padding;
2583         }
2584
2585         if(vote_alpha) {
2586                 a = vote_alpha * bound(cvar_or("hud_vote_alreadyvoted_alpha", 0.75), 1 - vote_highlighted, 1);
2587
2588                 drawpic_skin(pos, "voteprogress_back", mySize, HUD_GetBgColor(), a * hud_alpha_bg, DRAWFLAG_NORMAL);
2589
2590                 s = "A vote has been called for: ";
2591                 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_alpha_fg, DRAWFLAG_NORMAL);
2592                 s = textShortenToWidth(vote_called_vote, mySize_x * 0.96, '10 0 0', stringwidth_colors);
2593                 if(hud_configure)
2594                         s = "Configure the HUD";
2595                 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_alpha_fg, DRAWFLAG_NORMAL);
2596
2597                 // print the yes/no counts
2598                 s = strcat("Yes: ", ftos(vote_yescount));
2599                 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_alpha_fg, DRAWFLAG_NORMAL);
2600                 s = strcat("No: ", ftos(vote_nocount));
2601                 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_alpha_fg, DRAWFLAG_NORMAL);
2602
2603                 // draw the progress bars
2604                 drawsetcliparea(pos_x, pos_y, mySize_x * 0.5 * (vote_yescount/vote_needed), mySize_y);
2605                 drawpic_skin(pos, "voteprogress_prog", mySize, eY, a * hud_alpha_fg, DRAWFLAG_NORMAL);
2606
2607                 drawsetcliparea(pos_x + mySize_x - mySize_x * 0.5 * (vote_nocount/vote_needed), pos_y, mySize_x * 0.5, mySize_y);
2608                 drawpic_skin(pos, "voteprogress_prog", mySize, eX, a * hud_alpha_fg, DRAWFLAG_NORMAL);
2609
2610                 // draw the highlights
2611                 if(vote_highlighted == 1) {
2612                         drawsetcliparea(pos_x, pos_y, mySize_x * 0.5, mySize_y);
2613                         drawpic_skin(pos, "voteprogress_voted", mySize, eY, a * hud_alpha_fg, DRAWFLAG_NORMAL);
2614                 }
2615                 else if(vote_highlighted == 2) {
2616                         drawsetcliparea(pos_x + 0.5 * mySize_x, pos_y, mySize_x * 0.5, mySize_y);
2617                         drawpic_skin(pos, "voteprogress_voted", mySize, eX, a * hud_alpha_fg, DRAWFLAG_NORMAL);
2618                 }
2619
2620                 drawresetcliparea();
2621         }
2622         else if(!vote_active) {
2623                 vote_highlighted = 0;
2624         }
2625 }
2626
2627 // Mod icons panel (#10)
2628 //
2629
2630 // CTF HUD modicon section
2631 float redflag_prevframe, blueflag_prevframe; // status during previous frame
2632 float redflag_prevstatus, blueflag_prevstatus; // last remembered status
2633 float redflag_statuschange_time, blueflag_statuschange_time; // time when the status changed
2634
2635 void HUD_Mod_CTF_Reset(void)
2636 {
2637         redflag_prevstatus = blueflag_prevstatus = redflag_prevframe = blueflag_prevframe = redflag_statuschange_time = blueflag_statuschange_time = 0;
2638 }
2639
2640 void HUD_Mod_CTF(vector pos, vector mySize)
2641 {
2642         vector redflag_pos, blueflag_pos;
2643         float f; // every function should have that
2644
2645         float redflag, blueflag; // current status
2646         float redflag_statuschange_elapsedtime, blueflag_statuschange_elapsedtime; // time since the status changed
2647         float stat_items;
2648
2649         stat_items = getstati(STAT_ITEMS);
2650         redflag = (stat_items/IT_RED_FLAG_TAKEN) & 3;
2651         blueflag = (stat_items/IT_BLUE_FLAG_TAKEN) & 3;
2652
2653         if(hud_configure)
2654         {
2655                 redflag = 1;
2656                 blueflag = 2;
2657         }
2658
2659         // when status CHANGES, set old status into prevstatus and current status into status
2660         if (redflag != redflag_prevframe)
2661         {
2662                 redflag_statuschange_time = time;
2663                 redflag_prevstatus = redflag_prevframe;
2664                 redflag_prevframe = redflag;
2665         }
2666
2667         if (blueflag != blueflag_prevframe)
2668         {
2669                 blueflag_statuschange_time = time;
2670                 blueflag_prevstatus = blueflag_prevframe;
2671                 blueflag_prevframe = blueflag;
2672         }
2673
2674         redflag_statuschange_elapsedtime = time - redflag_statuschange_time;
2675         blueflag_statuschange_elapsedtime = time - blueflag_statuschange_time;
2676
2677         float BLINK_FACTOR = 0.15;
2678         float BLINK_BASE = 0.85;
2679         // note:
2680         //   RMS = sqrt(BLINK_BASE^2 + 0.5 * BLINK_FACTOR^2)
2681         // thus
2682         //   BLINK_BASE = sqrt(RMS^2 - 0.5 * BLINK_FACTOR^2)
2683         // ensure RMS == 1
2684         float BLINK_FREQ = 5; // circle frequency, = 2*pi*frequency in hertz
2685
2686         string red_icon, red_icon_prevstatus;
2687         float red_alpha, red_alpha_prevstatus;
2688         red_alpha = red_alpha_prevstatus = 1;
2689         switch(redflag) {
2690                 case 1: red_icon = "flag_red_taken"; break;
2691                 case 2: red_icon = "flag_red_lost"; break;
2692                 case 3: red_icon = "flag_red_carrying"; red_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
2693                 default:
2694                         if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM2))
2695                                 red_icon = "flag_red_shielded";
2696                         else
2697                                 red_icon = string_null;
2698                         break;
2699         }
2700         switch(redflag_prevstatus) {
2701                 case 1: red_icon_prevstatus = "flag_red_taken"; break;
2702                 case 2: red_icon_prevstatus = "flag_red_lost"; break;
2703                 case 3: red_icon_prevstatus = "flag_red_carrying"; red_alpha_prevstatus = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
2704                 default:
2705                         if(redflag == 3)
2706                                 red_icon_prevstatus = "flag_red_carrying"; // make it more visible
2707                         else if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM2))
2708                                 red_icon_prevstatus = "flag_red_shielded";
2709                         else
2710                                 red_icon_prevstatus = string_null;
2711                         break;
2712         }
2713
2714         string blue_icon, blue_icon_prevstatus;
2715         float blue_alpha, blue_alpha_prevstatus;
2716         blue_alpha = blue_alpha_prevstatus = 1;
2717         switch(blueflag) {
2718                 case 1: blue_icon = "flag_blue_taken"; break;
2719                 case 2: blue_icon = "flag_blue_lost"; break;
2720                 case 3: blue_icon = "flag_blue_carrying"; blue_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
2721                 default:
2722                         if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM1))
2723                                 blue_icon = "flag_blue_shielded";
2724                         else
2725                                 blue_icon = string_null;
2726                         break;
2727         }
2728         switch(blueflag_prevstatus) {
2729                 case 1: blue_icon_prevstatus = "flag_blue_taken"; break;
2730                 case 2: blue_icon_prevstatus = "flag_blue_lost"; break;
2731                 case 3: blue_icon_prevstatus = "flag_blue_carrying"; blue_alpha_prevstatus = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
2732                 default:
2733                         if(blueflag == 3)
2734                                 blue_icon_prevstatus = "flag_blue_carrying"; // make it more visible
2735                         else if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM1))
2736                                 blue_icon_prevstatus = "flag_blue_shielded";
2737                         else
2738                                 blue_icon_prevstatus = string_null;
2739                         break;
2740         }
2741
2742         if (myteam == COLOR_TEAM1) { // always draw own flag on left
2743                 redflag_pos = pos;
2744                 blueflag_pos = pos + eX * mySize_y;
2745         } else {
2746                 blueflag_pos = pos;
2747                 redflag_pos = pos + eX * mySize_y;
2748         }
2749
2750         f = bound(0, redflag_statuschange_elapsedtime*2, 1);
2751         if(red_icon_prevstatus && f < 1)
2752                 drawpic_skin_expanding(redflag_pos, red_icon_prevstatus, '1 1 0' * mySize_y, '1 1 1', hud_alpha_fg * red_alpha_prevstatus, DRAWFLAG_NORMAL, f);
2753         if(red_icon)
2754                 drawpic_skin(redflag_pos, red_icon, '1 1 0' * mySize_y, '1 1 1', hud_alpha_fg * red_alpha * f, DRAWFLAG_NORMAL);
2755
2756         f = bound(0, blueflag_statuschange_elapsedtime*2, 1);
2757         if(blue_icon_prevstatus && f < 1)
2758                 drawpic_skin_expanding(blueflag_pos, blue_icon_prevstatus, '1 1 0' * mySize_y, '1 1 1', hud_alpha_fg * blue_alpha_prevstatus, DRAWFLAG_NORMAL, f);
2759         if(blue_icon)
2760                 drawpic_skin(blueflag_pos, blue_icon, '1 1 0' * mySize_y, '1 1 1', hud_alpha_fg * blue_alpha * f, DRAWFLAG_NORMAL);
2761 }
2762
2763 // Keyhunt HUD modicon section
2764 float kh_runheretime;
2765
2766 void HUD_Mod_KH_Reset(void)
2767 {
2768         kh_runheretime = 0;
2769 }
2770
2771 void HUD_Mod_KH(vector pos, vector mySize)
2772 {
2773         float kh_keys;
2774         float keyteam;
2775         float a, aa;
2776         vector p, pa, kh_size, kh_asize;
2777
2778         p_x = pos_x;
2779         p_y = pos_y + 0.25 * mySize_y;
2780
2781         kh_keys = getstati(STAT_KH_KEYS);
2782
2783         kh_size_x = mySize_x * 0.25;
2784         kh_size_y = 0.75 * mySize_y;
2785
2786         pa = p - eY * 0.25 * mySize_y;
2787
2788         kh_asize_x = mySize_x * 0.25;
2789         kh_asize_y = mySize_y * 0.25;
2790
2791         float i, key;
2792
2793         float keycount;
2794         keycount = 0;
2795         for(i = 0; i < 4; ++i)
2796         {
2797                 key = floor(kh_keys / pow(32, i)) & 31;
2798                 keyteam = key - 1;
2799                 if(keyteam == 30 && keycount <= 4)
2800                         keycount += 4;
2801                 if(keyteam == myteam || keyteam == -1 || keyteam == 30)
2802                         keycount += 1;
2803         }
2804         // this yields 8 exactly if "RUN HERE" shows
2805
2806         if(keycount == 8)
2807         {
2808                 if(!kh_runheretime)
2809                         kh_runheretime = time;
2810                 pa_y -= fabs(sin((time - kh_runheretime) * 3.5)) * 6; // make the arrows jump in case of RUN HERE
2811         }
2812         else
2813                 kh_runheretime = 0;
2814
2815         for(i = 0; i < 4; ++i)
2816         {
2817                 key = floor(kh_keys / pow(32, i)) & 31;
2818                 keyteam = key - 1;
2819                 switch(keyteam)
2820                 {
2821                         case 30: // my key
2822                                 keyteam = myteam;
2823                                 a = 1;
2824                                 aa = 1;
2825                                 break;
2826                         case -1: // no key
2827                                 a = 0;
2828                                 aa = 0;
2829                                 break;
2830                         default: // owned or dropped
2831                                 a = 0.2;
2832                                 aa = 0.5;
2833                                 break;
2834                 }
2835                 a = a * hud_alpha_fg;
2836                 aa = aa * hud_alpha_fg;
2837                 if(a > 0)
2838                 {
2839                         switch(keyteam)
2840                         {
2841                                 case COLOR_TEAM1:
2842                                         drawpic_skin(pa, "kh_redarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
2843                                         break;
2844                                 case COLOR_TEAM2:
2845                                         drawpic_skin(pa, "kh_bluearrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
2846                                         break;
2847                                 case COLOR_TEAM3:
2848                                         drawpic_skin(pa, "kh_yellowarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
2849                                         break;
2850                                 case COLOR_TEAM4:
2851                                         drawpic_skin(pa, "kh_pinkarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
2852                                         break;
2853                                 default:
2854                                         break;
2855                         }
2856                         switch(i) // YAY! switch(i) inside a for loop for i. DailyWTF, here we come!
2857                         {
2858                                 case 0:
2859                                         drawpic_skin(p, "kh_red", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
2860                                         break;
2861                                 case 1:
2862                                         drawpic_skin(p, "kh_blue", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
2863                                         break;
2864                                 case 2:
2865                                         drawpic_skin(p, "kh_yellow", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
2866                                         break;
2867                                 case 3:
2868                                         drawpic_skin(p, "kh_pink", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
2869                                         break;
2870                         }
2871                 }
2872                 p_x += 0.25 * mySize_x;
2873                 pa_x += 0.25 * mySize_x;
2874         }
2875 }
2876
2877 // Nexball HUD mod icon
2878 void HUD_Mod_NexBall(vector pos, vector mySize)
2879 {
2880         float stat_items, nb_pb_starttime, dt, p;
2881
2882         stat_items = getstati(STAT_ITEMS);
2883         nb_pb_starttime = getstatf(STAT_NB_METERSTART);
2884
2885         //Manage the progress bar if any
2886         if (nb_pb_starttime > 0)
2887         {
2888                 dt = mod(time - nb_pb_starttime, nb_pb_period);
2889                 // one period of positive triangle
2890                 p = 2 * dt / nb_pb_period;
2891                 if (p > 1)
2892                         p = 2 - p;
2893
2894                 //Draw the filling
2895                 drawpic_skin(pos, "statusbar", eX * p * mySize_x + eY * mySize_y, HUD_Panel_GetProgressBarColor("nexball"), cvar("hud_progressbar_alpha"), DRAWFLAG_NORMAL);
2896         }
2897
2898         pos_x += 0.5 * mySize_x - 0.5 * mySize_y; //horizontal margin to the picture
2899
2900         if (stat_items & IT_KEY1)
2901                 drawpic_skin(pos, "nexball_carrying", '1 1 0' * mySize_y, '1 1 1', 1, DRAWFLAG_NORMAL);
2902 }
2903
2904 // Race/CTS HUD mod icons
2905 float crecordtime_prev; // last remembered crecordtime
2906 float crecordtime_change_time; // time when crecordtime last changed
2907 float srecordtime_prev; // last remembered srecordtime
2908 float srecordtime_change_time; // time when srecordtime last changed
2909
2910 float race_status_time;
2911 float race_status_prev;
2912 string race_status_name_prev;
2913 void HUD_Mod_Race(vector pos, vector mySize)
2914 {
2915         entity me;
2916         me = playerslots[player_localentnum - 1];
2917         float t, score;
2918         float f; // yet another function has this
2919         score = me.(scores[ps_primary]);
2920
2921         if not((scores_flags[ps_primary] & SFL_TIME) && !teamplay) // race/cts record display on HUD
2922                 return; // no records in the actual race
2923
2924         drawfont = hud_bigfont;
2925
2926         // clientside personal record
2927         string rr;
2928         if(gametype == GAME_CTS)
2929                 rr = CTS_RECORD;
2930         else
2931                 rr = RACE_RECORD;
2932         t = stof(db_get(ClientProgsDB, strcat(shortmapname, rr, "time")));
2933
2934         if(score && (score < t || !t)) {
2935                 db_put(ClientProgsDB, strcat(shortmapname, rr, "time"), ftos(score));
2936                 if(cvar("cl_autodemo_delete_keeprecords"))
2937                 {
2938                         f = cvar("cl_autodemo_delete");
2939                         f &~= 1;
2940                         cvar_set("cl_autodemo_delete", ftos(f)); // don't delete demo with new record!
2941                 }
2942         }
2943
2944         if(t != crecordtime_prev) {
2945                 crecordtime_prev = t;
2946                 crecordtime_change_time = time;
2947         }
2948         f = time - crecordtime_change_time;
2949
2950         if (f > 1) {
2951                 drawstring(pos, "Personal best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
2952                 drawstring(pos + eY * 0.2 * mySize_y, TIME_ENCODED_TOSTRING(t), '1 1 0' * 0.2 * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
2953         } else {
2954                 drawstring(pos, "Personal best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
2955                 drawstring(pos + eY * 0.2 * mySize_y, TIME_ENCODED_TOSTRING(t), '1 1 0' * 0.2 * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
2956                 drawstring_expanding(pos, "Personal best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL, f);
2957                 drawstring_expanding(pos + eY * 0.2 * mySize_y, TIME_ENCODED_TOSTRING(t), '1 1 0' * 0.2 * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL, f);
2958         }
2959
2960         // server record
2961         t = race_server_record;
2962         if(t != srecordtime_prev) {
2963                 srecordtime_prev = t;
2964                 srecordtime_change_time = time;
2965         }
2966         f = time - srecordtime_change_time;
2967
2968         if (f > 1) {
2969                 drawstring(pos + eY * 0.5 * mySize_y, "Server best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
2970                 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_alpha_fg, DRAWFLAG_NORMAL);
2971         } else {
2972                 drawstring(pos + eY * 0.5 * mySize_y, "Server best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
2973                 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_alpha_fg, DRAWFLAG_NORMAL);
2974                 drawstring_expanding(pos + eY * 0.5 * mySize_y, "Server best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL, f);
2975                 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_alpha_fg, DRAWFLAG_NORMAL, f);
2976         }
2977
2978         if (race_status != race_status_prev || race_status_name != race_status_name_prev) {
2979                 race_status_time = time + 5;
2980                 race_status_prev = race_status;
2981                 if (race_status_name_prev)
2982                         strunzone(race_status_name_prev);
2983                 race_status_name_prev = strzone(race_status_name);
2984         }
2985
2986         pos_x += mySize_x/2;
2987         // race "awards"
2988         float a;
2989         a = bound(0, race_status_time - time, 1);
2990
2991         string s;
2992         s = textShortenToWidth(race_status_name, 120, '10 10 0', stringwidth_colors);
2993
2994         float rank;
2995         if(race_status > 0)
2996                 rank = race_CheckName(race_status_name);
2997         string rankname;
2998         rankname = race_PlaceName(rank);
2999
3000         if(race_status == 0)
3001                 drawpic_skin(pos, "race_newfail", '80 80 0', '1 1 1', hud_alpha_fg * a, DRAWFLAG_NORMAL);
3002         else if(race_status == 1) {
3003                 drawpic_skin(pos, "race_newtime", '80 80 0', '1 1 1', hud_alpha_fg * a, DRAWFLAG_NORMAL);
3004                 drawcolorcodedstring(pos + '40 80 0' - eX * stringwidth(s, TRUE, '5 0 0'), s, '10 10 0', hud_alpha_fg * a, DRAWFLAG_NORMAL);
3005                 drawstring(pos + '40 20 0' - eX * stringwidth(rankname, TRUE, '7 0 0'), rankname, '14 14 0', '1 1 1', hud_alpha_fg * a, DRAWFLAG_NORMAL);
3006         } else if(race_status == 2) {
3007                 if(race_status_name == GetPlayerName(player_localentnum -1) || !race_myrank || race_myrank < rank)
3008                         drawpic_skin(pos, "race_newrankgreen", '80 80 0', '1 1 1', hud_alpha_fg * a, DRAWFLAG_NORMAL);
3009                 else
3010                         drawpic_skin(pos, "race_newrankyellow", '80 80 0', '1 1 1', hud_alpha_fg * a, DRAWFLAG_NORMAL);
3011                 drawcolorcodedstring(pos + '40 80 0' - eX * stringwidth(s, TRUE, '5 0 0'), s, '10 10 0', hud_alpha_fg * a, DRAWFLAG_NORMAL);
3012                 drawstring(pos + '40 20 0' - eX * stringwidth(rankname, TRUE, '7 0 0'), rankname, '14 14 0', '1 1 1', hud_alpha_fg * a, DRAWFLAG_NORMAL);
3013         } else if(race_status == 3) {
3014                 drawpic_skin(pos, "race_newrecordserver", '80 80 0', '1 1 1', hud_alpha_fg * a, DRAWFLAG_NORMAL);
3015                 drawcolorcodedstring(pos + '40 80 0' - eX * stringwidth(s, TRUE, '5 0 0'), s, '10 10 0', hud_alpha_fg * a, DRAWFLAG_NORMAL);
3016                 drawstring(pos + '40 20 0' - eX * stringwidth(rankname, TRUE, '7 0 0'), rankname, '14 14 0', '1 1 1', hud_alpha_fg * a, DRAWFLAG_NORMAL);
3017         }
3018
3019         if (race_status_time - time <= 0) {
3020                 race_status_prev = -1;
3021                 race_status = -1;
3022                 if(race_status_name)
3023                         strunzone(race_status_name);
3024                 race_status_name = string_null;
3025                 if(race_status_name_prev)
3026                         strunzone(race_status_name_prev);
3027                 race_status_name_prev = string_null;
3028         }
3029         drawfont = hud_font;
3030 }
3031
3032 // TODO: idea: alpha fade in/out empty panels
3033 void HUD_ModIcons(void)
3034 {
3035         if (gametype != GAME_KEYHUNT && gametype != GAME_CTF && gametype != GAME_NEXBALL && gametype != GAME_CTS && gametype != GAME_RACE && !hud_configure)
3036                 return;
3037         float id = 10;
3038         vector pos, mySize;
3039         pos = HUD_Panel_GetPos(id);
3040         mySize = HUD_Panel_GetSize(id);
3041
3042         HUD_Panel_DrawBg(id, pos, mySize);
3043         float padding;
3044         padding = cvar(strcat("hud_", HUD_Panel_GetName(id), "_bg_padding"));
3045         if(padding)
3046         {
3047                 pos += '1 1 0' * padding;
3048                 mySize -= '2 2 0' * padding;
3049         }
3050
3051         // TODO... well make them work in a panel etc
3052         if(gametype == GAME_KEYHUNT)
3053                 HUD_Mod_KH(pos, mySize);
3054         else if(gametype == GAME_CTF || hud_configure)
3055                 HUD_Mod_CTF(pos, mySize);
3056         else if(gametype == GAME_NEXBALL)
3057                 HUD_Mod_NexBall(pos, mySize);
3058         else if(gametype == GAME_CTS || gametype == GAME_RACE)
3059                 HUD_Mod_Race(pos, mySize);
3060 }
3061
3062 // Draw pressed keys (#11)
3063 //
3064 void HUD_DrawPressedKeys(void)
3065 {
3066         float id = 11;
3067         vector pos, mySize;
3068         pos = HUD_Panel_GetPos(id);
3069         mySize = HUD_Panel_GetSize(id);
3070
3071         HUD_Panel_DrawBg(id, pos, mySize);
3072         float padding;
3073         padding = cvar(strcat("hud_", HUD_Panel_GetName(id), "_bg_padding"));
3074         if(padding)
3075         {
3076                 pos += '1 1 0' * padding;
3077                 mySize -= '2 2 0' * padding;
3078         }
3079
3080         float pressedkeys;
3081
3082         pressedkeys = getstatf(STAT_PRESSED_KEYS);
3083         drawpic_skin(pos, "key_bg.tga",           mySize, '1 1 1', 0.1 * hud_alpha_fg, DRAWFLAG_NORMAL);
3084         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_alpha_fg, DRAWFLAG_NORMAL);
3085         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_alpha_fg, DRAWFLAG_NORMAL);
3086         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_alpha_fg, DRAWFLAG_NORMAL);
3087         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_alpha_fg, DRAWFLAG_NORMAL);
3088         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_alpha_fg, DRAWFLAG_NORMAL);
3089         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_alpha_fg, DRAWFLAG_NORMAL);
3090 }
3091
3092 /*
3093 ==================
3094 Main HUD system
3095 ==================
3096 */
3097
3098 void HUD_ShowSpeed(void)
3099 {
3100         vector numsize;
3101         float pos, conversion_factor;
3102         string speed, zspeed, unit;
3103
3104         switch(cvar("cl_showspeed_unit"))
3105         {
3106                 default:
3107                 case 0:
3108                         unit = "";
3109                         conversion_factor = 1.0;
3110                         break;
3111                 case 1:
3112                         unit = " qu/s";
3113                         conversion_factor = 1.0;
3114                         break;
3115                 case 2:
3116                         unit = " m/s";
3117                         conversion_factor = 0.0254;
3118                         break;
3119                 case 3:
3120                         unit = " km/h";
3121                         conversion_factor = 0.0254 * 3.6;
3122                         break;
3123                 case 4:
3124                         unit = " mph";
3125                         conversion_factor = 0.0254 * 3.6 * 0.6213711922;
3126                         break;
3127                 case 5:
3128                         unit = " knots";
3129                         conversion_factor = 0.0254 * 1.943844492; // 1 m/s = 1.943844492 knots, because 1 knot = 1.852 km/h
3130                         break;
3131         }
3132
3133         speed = strcat(ftos(floor( vlen(pmove_vel - pmove_vel_z * '0 0 1') * conversion_factor + 0.5 )), unit);
3134
3135         numsize_x = numsize_y = cvar("cl_showspeed_size");
3136         pos = (vid_conheight - numsize_y) * cvar("cl_showspeed_position");
3137
3138         drawfont = hud_bigfont;
3139         drawstringcenter(eX + pos * eY, speed, numsize, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
3140
3141         if (cvar("cl_showspeed_z") == 1) {
3142                 zspeed = strcat(ftos(fabs(floor( pmove_vel_z * conversion_factor + 0.5 ))), unit);
3143                 drawstringcenter(eX + pos * eY + numsize_y * eY, zspeed, numsize * 0.5, '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
3144         }
3145
3146         drawfont = hud_font;
3147 }
3148
3149 vector acc_prevspeed;
3150 float acc_prevtime;
3151 float acc_avg;
3152
3153 void HUD_ShowAcceleration(void)
3154 {
3155         float acceleration, sz, scale, alpha, f;
3156         vector pos, top, rgb;
3157         top_x = vid_conwidth/2;
3158         top_y = 0;
3159
3160         f = time - acc_prevtime;
3161         if(cvar("cl_showacceleration_z"))
3162                 acceleration = (vlen(pmove_vel) - vlen(acc_prevspeed)) * (1 / f);
3163         else
3164                 acceleration = (vlen(pmove_vel - '0 0 1' * pmove_vel_z) - vlen(acc_prevspeed - '0 0 1' * acc_prevspeed_z)) * (1 / f);
3165         acc_prevspeed = pmove_vel;
3166         acc_prevtime = time;
3167
3168         f = bound(0, f * 10, 1);
3169         acc_avg = acc_avg * (1 - f) + acceleration * f;
3170         acceleration = acc_avg / getstatf(STAT_MOVEVARS_MAXSPEED);
3171
3172         pos = top - sz/2 * eY + (cvar("cl_showacceleration_position") * vid_conheight) * eY;
3173
3174         sz = cvar("cl_showacceleration_size");
3175         scale = cvar("cl_showacceleration_scale");
3176         alpha = cvar("cl_showacceleration_alpha");
3177         if (cvar("cl_showacceleration_color_custom"))
3178                 rgb = stov(cvar_string("cl_showacceleration_color"));
3179         else {
3180                 rgb = '1 1 1';
3181                 if (acceleration < 0) {
3182                         rgb = '1 .5 .5' - '0 .5 .5' * bound(0, -acceleration * 0.2, 1);
3183                 } else if (acceleration > 0) {
3184                         rgb = '.5 1 .5' - '.5 0 .5' * bound(0, +acceleration * 0.2, 1);
3185                 }
3186         }
3187
3188         if (acceleration > 0)
3189                 drawpic_skin(pos, "statusbar", acceleration * scale * '40 0 0' + sz * eY, rgb, alpha * hud_alpha_fg, DRAWFLAG_NORMAL);
3190         else if (acceleration < 0)
3191                 drawpic_skin(pos + acceleration * scale * '40 0 0', "statusbar", -acceleration * scale * '40 0 0' + sz * eY, rgb, alpha * hud_alpha_fg, DRAWFLAG_NORMAL);
3192 }
3193
3194 void HUD_Reset (void)
3195 {
3196         // reset gametype specific icons
3197         if(gametype == GAME_KEYHUNT)
3198                 HUD_Mod_KH_Reset();
3199         else if(gametype == GAME_CTF)
3200                 HUD_Mod_CTF_Reset();
3201 }
3202
3203 void HUD_Main (void)
3204 {
3205         hud_alpha_bg = cvar_or("hud_bg_alpha", 0.8) * (1 - cvar("_menu_alpha"));
3206         hud_border_thickness = bound(0, cvar("hud_border_thickness"), 5);
3207         hud_accuracy_border_thickness = bound(0, cvar_or("hud_accuracy_border_thickness", 1), 5);
3208         hud_color_bg_team = cvar("hud_color_bg_team");
3209
3210         hud_fontsize = HUD_GetFontsize("hud_fontsize");
3211         hud_fontsize_spec = HUD_GetFontsize("hud_fontsize_spec");
3212
3213         hud_configure = cvar("_hud_configure");
3214
3215         // Drawing stuff
3216         if(cvar("hud_dock"))
3217                 drawpic_skin('0 0 0', "dock", eX * vid_conwidth + eY * vid_conheight, stov(cvar_string("hud_dock_color")), cvar("hud_dock_alpha"), DRAWFLAG_NORMAL);
3218
3219         if(HUD_Panel_CheckActive(0))
3220                 HUD_WeaponIcons();
3221         if(HUD_Panel_CheckActive(1))
3222                 HUD_Inventory();
3223         if(HUD_Panel_CheckActive(2))
3224                 HUD_Powerups();
3225         if(HUD_Panel_CheckActive(3))
3226                 HUD_HealthArmor();
3227         if(HUD_Panel_CheckActive(4))
3228                 HUD_Notify();
3229         if(HUD_Panel_CheckActive(5))
3230                 HUD_Timer();
3231         // TODO hud'ify
3232         if(HUD_Panel_CheckActive(6))
3233                 if(ons_showmap || cvar_string("cl_teamradar") != "0" && (cvar("cl_teamradar") == 2 || teamplay))
3234                         HUD_Radar();
3235         if(HUD_Panel_CheckActive(7))
3236                 HUD_Score();
3237         if(HUD_Panel_CheckActive(8))
3238                 if(gametype == GAME_RACE || gametype == GAME_CTS || hud_configure)
3239                         HUD_RaceTimer();
3240         if(HUD_Panel_CheckActive(9))
3241                 HUD_VoteWindow();
3242         if(HUD_Panel_CheckActive(10))
3243                 HUD_ModIcons();
3244         // TODO hud'ify
3245         if(HUD_Panel_CheckActive(11))
3246                 if(spectatee_status > 0 || cvar("hud_pressedkeys") >= 2 || hud_configure)
3247                         HUD_DrawPressedKeys();
3248
3249         // TODO hud_'ify these
3250         if (cvar("cl_showspeed"))
3251                 HUD_ShowSpeed();
3252         if (cvar("cl_showacceleration"))
3253                 HUD_ShowAcceleration();
3254 }