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