]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/hud.qc
Merge branch 'master' into Mario/ons_updates
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / hud.qc
1 #include "hud.qh"
2 #include "_all.qh"
3
4 #include "hud_config.qh"
5 #include "mapvoting.qh"
6 #include "scoreboard.qh"
7 #include "sortlist.qh"
8 #include "teamradar.qh"
9 #include "t_items.qh"
10
11 #include "../dpdefs/keycodes.qh"
12
13 #include "../common/buffs.qh"
14 #include "../common/constants.qh"
15 #include "../common/counting.qh"
16 #include "../common/deathtypes.qh"
17 #include "../common/mapinfo.qh"
18 #include "../common/nades.qh"
19 #include "../common/stats.qh"
20
21 #include "../csqcmodellib/cl_player.qh"
22
23 #include "../warpzonelib/mathlib.qh"
24
25 /*
26 ==================
27 Misc HUD functions
28 ==================
29 */
30
31 // a border picture is a texture containing nine parts:
32 //   1/4 width: left part
33 //   1/2 width: middle part (stretched)
34 //   1/4 width: right part
35 // divided into
36 //   1/4 height: top part
37 //   1/2 height: middle part (stretched)
38 //   1/4 height: bottom part
39 void draw_BorderPicture(vector theOrigin, string pic, vector theSize, vector theColor, float theAlpha, vector theBorderSize)
40 {
41     if (theBorderSize.x < 0 && theBorderSize.y < 0) // draw whole image as it is
42     {
43                 drawpic(theOrigin, pic, theSize, theColor, theAlpha, 0);
44                 return;
45     }
46         if (theBorderSize.x == 0 && theBorderSize.y == 0) // no border
47         {
48                 // draw only the central part
49                 drawsubpic(theOrigin, theSize, pic, '0.25 0.25 0', '0.5 0.5 0', theColor, theAlpha, 0);
50                 return;
51         }
52
53         vector dX, dY;
54         vector width, height;
55         vector bW, bH;
56         //pic = draw_UseSkinFor(pic);
57         width = eX * theSize.x;
58         height = eY * theSize.y;
59         if(theSize.x <= theBorderSize.x * 2)
60         {
61                 // not wide enough... draw just left and right then
62                 bW = eX * (0.25 * theSize.x / (theBorderSize.x * 2));
63                 if(theSize.y <= theBorderSize.y * 2)
64                 {
65                         // not high enough... draw just corners
66                         bH = eY * (0.25 * theSize.y / (theBorderSize.y * 2));
67                         drawsubpic(theOrigin,                 width * 0.5 + height * 0.5, pic, '0 0 0',           bW + bH, theColor, theAlpha, 0);
68                         drawsubpic(theOrigin + width   * 0.5, width * 0.5 + height * 0.5, pic, eX - bW,           bW + bH, theColor, theAlpha, 0);
69                         drawsubpic(theOrigin + height  * 0.5, width * 0.5 + height * 0.5, pic, eY - bH,           bW + bH, theColor, theAlpha, 0);
70                         drawsubpic(theOrigin + theSize * 0.5, width * 0.5 + height * 0.5, pic, eX + eY - bW - bH, bW + bH, theColor, theAlpha, 0);
71                 }
72                 else
73                 {
74                         dY = theBorderSize.x * eY;
75                         drawsubpic(theOrigin,                             width * 0.5          +     dY, pic, '0 0    0',           '0 0.25 0' + bW, theColor, theAlpha, 0);
76                         drawsubpic(theOrigin + width * 0.5,               width * 0.5          +     dY, pic, '0 0    0' + eX - bW, '0 0.25 0' + bW, theColor, theAlpha, 0);
77                         drawsubpic(theOrigin                        + dY, width * 0.5 + height - 2 * dY, pic, '0 0.25 0',           '0 0.5  0' + bW, theColor, theAlpha, 0);
78                         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);
79                         drawsubpic(theOrigin               + height - dY, width * 0.5          +     dY, pic, '0 0.75 0',           '0 0.25 0' + bW, theColor, theAlpha, 0);
80                         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);
81                 }
82         }
83         else
84         {
85                 if(theSize.y <= theBorderSize.y * 2)
86                 {
87                         // not high enough... draw just top and bottom then
88                         bH = eY * (0.25 * theSize.y / (theBorderSize.y * 2));
89                         dX = theBorderSize.x * eX;
90                         drawsubpic(theOrigin,                                         dX + height * 0.5, pic, '0    0 0',           '0.25 0 0' + bH, theColor, theAlpha, 0);
91                         drawsubpic(theOrigin + dX,                        width - 2 * dX + height * 0.5, pic, '0.25 0 0',           '0.5  0 0' + bH, theColor, theAlpha, 0);
92                         drawsubpic(theOrigin + width - dX,                            dX + height * 0.5, pic, '0.75 0 0',           '0.25 0 0' + bH, theColor, theAlpha, 0);
93                         drawsubpic(theOrigin              + height * 0.5,             dX + height * 0.5, pic, '0    0 0' + eY - bH, '0.25 0 0' + bH, theColor, theAlpha, 0);
94                         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);
95                         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);
96                 }
97                 else
98                 {
99                         dX = theBorderSize.x * eX;
100                         dY = theBorderSize.x * eY;
101                         drawsubpic(theOrigin,                                        dX          +     dY, pic, '0    0    0', '0.25 0.25 0', theColor, theAlpha, 0);
102                         drawsubpic(theOrigin                  + dX,      width - 2 * dX          +     dY, pic, '0.25 0    0', '0.5  0.25 0', theColor, theAlpha, 0);
103                         drawsubpic(theOrigin          + width - dX,                  dX          +     dY, pic, '0.75 0    0', '0.25 0.25 0', theColor, theAlpha, 0);
104                         drawsubpic(theOrigin          + dY,                          dX + height - 2 * dY, pic, '0    0.25 0', '0.25 0.5  0', theColor, theAlpha, 0);
105                         drawsubpic(theOrigin          + dY         + dX, width - 2 * dX + height - 2 * dY, pic, '0.25 0.25 0', '0.5  0.5  0', theColor, theAlpha, 0);
106                         drawsubpic(theOrigin          + dY + width - dX,             dX + height - 2 * dY, pic, '0.75 0.25 0', '0.25 0.5  0', theColor, theAlpha, 0);
107                         drawsubpic(theOrigin + height - dY,                          dX          +     dY, pic, '0    0.75 0', '0.25 0.25 0', theColor, theAlpha, 0);
108                         drawsubpic(theOrigin + height - dY         + dX, width - 2 * dX          +     dY, pic, '0.25 0.75 0', '0.5  0.25 0', theColor, theAlpha, 0);
109                         drawsubpic(theOrigin + height - dY + width - dX,             dX          +     dY, pic, '0.75 0.75 0', '0.25 0.25 0', theColor, theAlpha, 0);
110                 }
111         }
112 }
113
114 vector HUD_Get_Num_Color (float x, float maxvalue)
115 {
116         float blinkingamt;
117         vector color;
118         if(x >= maxvalue) {
119                 color.x = sin(2*M_PI*time);
120                 color.y = 1;
121                 color.z = sin(2*M_PI*time);
122         }
123         else if(x > maxvalue * 0.75) {
124                 color.x = 0.4 - (x-150)*0.02 * 0.4; //red value between 0.4 -> 0
125                 color.y = 0.9 + (x-150)*0.02 * 0.1; // green value between 0.9 -> 1
126                 color.z = 0;
127         }
128         else if(x > maxvalue * 0.5) {
129                 color.x = 1 - (x-100)*0.02 * 0.6; //red value between 1 -> 0.4
130                 color.y = 1 - (x-100)*0.02 * 0.1; // green value between 1 -> 0.9
131                 color.z = 1 - (x-100)*0.02; // blue value between 1 -> 0
132         }
133         else if(x > maxvalue * 0.25) {
134                 color.x = 1;
135                 color.y = 1;
136                 color.z = 0.2 + (x-50)*0.02 * 0.8; // blue value between 0.2 -> 1
137         }
138         else if(x > maxvalue * 0.1) {
139                 color.x = 1;
140                 color.y = (x-20)*90/27/100; // green value between 0 -> 1
141                 color.z = (x-20)*90/27/100 * 0.2; // blue value between 0 -> 0.2
142         }
143         else {
144                 color.x = 1;
145                 color.y = 0;
146                 color.z = 0;
147         }
148
149         blinkingamt = (1 - x/maxvalue/0.25);
150         if(blinkingamt > 0)
151         {
152                 color.x = color.x - color.x * blinkingamt * sin(2*M_PI*time);
153                 color.y = color.y - color.y * blinkingamt * sin(2*M_PI*time);
154                 color.z = color.z - color.z * blinkingamt * sin(2*M_PI*time);
155         }
156         return color;
157 }
158
159 float HUD_GetRowCount(int item_count, vector size, float item_aspect)
160 {
161         float aspect = size_y / size_x;
162         return bound(1, floor((sqrt(4 * item_aspect * aspect * item_count + aspect * aspect) + aspect + 0.5) / 2), item_count);
163 }
164
165 vector HUD_GetTableSize(int item_count, vector psize, float item_aspect)
166 {
167         float columns, rows;
168         float ratio, best_ratio = 0;
169         float best_columns = 1, best_rows = 1;
170         bool vertical = (psize.x / psize.y >= item_aspect);
171         if(vertical)
172         {
173                 psize = eX * psize.y + eY * psize.x;
174                 item_aspect = 1 / item_aspect;
175         }
176
177         rows = ceil(sqrt(item_count));
178         columns = ceil(item_count/rows);
179         while(columns >= 1)
180         {
181                 ratio = (psize.x/columns) / (psize.y/rows);
182                 if(ratio > item_aspect)
183                         ratio = item_aspect * item_aspect / ratio;
184
185                 if(ratio <= best_ratio)
186                         break; // ratio starts decreasing by now, skip next configurations
187
188                 best_columns = columns;
189                 best_rows = rows;
190                 best_ratio = ratio;
191
192                 if(columns == 1)
193                         break;
194
195                 --columns;
196                 rows = ceil(item_count/columns);
197         }
198
199         if(vertical)
200                 return eX * best_rows + eY * best_columns;
201         else
202                 return eX * best_columns + eY * best_rows;
203 }
204
205 float stringwidth_colors(string s, vector theSize)
206 {
207         return stringwidth(s, true, theSize);
208 }
209
210 float stringwidth_nocolors(string s, vector theSize)
211 {
212         return stringwidth(s, false, theSize);
213 }
214
215 void drawstringright(vector position, string text, vector theScale, vector rgb, float theAlpha, int flag)
216 {
217         position.x -= 2 / 3 * strlen(text) * theScale.x;
218         drawstring(position, text, theScale, rgb, theAlpha, flag);
219 }
220
221 void drawstringcenter(vector position, string text, vector theScale, vector rgb, float theAlpha, int flag)
222 {
223         position.x = 0.5 * (vid_conwidth - 0.6025 * strlen(text) * theScale.x);
224         drawstring(position, text, theScale, rgb, theAlpha, flag);
225 }
226
227 // return the string of the onscreen race timer
228 string MakeRaceString(int cp, float mytime, float theirtime, float lapdelta, string theirname)
229 {
230         string col;
231         string timestr;
232         string cpname;
233         string lapstr;
234         lapstr = "";
235
236         if(theirtime == 0) // goal hit
237         {
238                 if(mytime > 0)
239                 {
240                         timestr = strcat("+", ftos_decimals(+mytime, TIME_DECIMALS));
241                         col = "^1";
242                 }
243                 else if(mytime == 0)
244                 {
245                         timestr = "+0.0";
246                         col = "^3";
247                 }
248                 else
249                 {
250                         timestr = strcat("-", ftos_decimals(-mytime, TIME_DECIMALS));
251                         col = "^2";
252                 }
253
254                 if(lapdelta > 0)
255                 {
256                         lapstr = sprintf(_(" (-%dL)"), lapdelta);
257                         col = "^2";
258                 }
259                 else if(lapdelta < 0)
260                 {
261                         lapstr = sprintf(_(" (+%dL)"), -lapdelta);
262                         col = "^1";
263                 }
264         }
265         else if(theirtime > 0) // anticipation
266         {
267                 if(mytime >= theirtime)
268                         timestr = strcat("+", ftos_decimals(mytime - theirtime, TIME_DECIMALS));
269                 else
270                         timestr = TIME_ENCODED_TOSTRING(TIME_ENCODE(theirtime));
271                 col = "^3";
272         }
273         else
274         {
275                 col = "^7";
276                 timestr = "";
277         }
278
279         if(cp == 254)
280                 cpname = _("Start line");
281         else if(cp == 255)
282                 cpname = _("Finish line");
283         else if(cp)
284                 cpname = sprintf(_("Intermediate %d"), cp);
285         else
286                 cpname = _("Finish line");
287
288         if(theirtime < 0)
289                 return strcat(col, cpname);
290         else if(theirname == "")
291                 return strcat(col, sprintf("%s (%s)", cpname, timestr));
292         else
293                 return strcat(col, sprintf("%s (%s %s)", cpname, timestr, strcat(theirname, col, lapstr)));
294 }
295
296 // Check if the given name already exist in race rankings? In that case, where? (otherwise return 0)
297 int race_CheckName(string net_name)
298 {
299         int i;
300         for (i=RANKINGS_CNT-1;i>=0;--i)
301                 if(grecordholder[i] == net_name)
302                         return i+1;
303         return 0;
304 }
305
306 int GetPlayerColorForce(int i)
307 {
308         if(!teamplay)
309                 return 0;
310         else
311                 return stof(getplayerkeyvalue(i, "colors")) & 15;
312 }
313
314 int GetPlayerColor(int i)
315 {
316         if(!playerslots[i].gotscores) // unconnected
317                 return NUM_SPECTATOR;
318         else if(stof(getplayerkeyvalue(i, "frags")) == FRAGS_SPECTATOR)
319                 return NUM_SPECTATOR;
320         else
321                 return GetPlayerColorForce(i);
322 }
323
324 string GetPlayerName(int i)
325 {
326         return ColorTranslateRGB(getplayerkeyvalue(i, "name"));
327 }
328
329
330 /*
331 ==================
332 HUD panels
333 ==================
334 */
335
336 // draw the background/borders
337 #define HUD_Panel_DrawBg(theAlpha) do {                                                                                                                                                         \
338         if(panel.current_panel_bg != "0" && panel.current_panel_bg != "")                                                                                               \
339                 draw_BorderPicture(panel_pos - '1 1 0' * panel_bg_border, panel.current_panel_bg, panel_size + '1 1 0' * 2 * panel_bg_border, panel_bg_color, panel_bg_alpha * theAlpha, '1 1 0' * (panel_bg_border/BORDER_MULTIPLIER));\
340 } while(0)
341
342 //basically the same code of draw_ButtonPicture and draw_VertButtonPicture for the menu
343 void HUD_Panel_DrawProgressBar(vector theOrigin, vector theSize, string pic, float length_ratio, bool vertical, float baralign, vector theColor, float theAlpha, int drawflag)
344 {
345         if(!length_ratio || !theAlpha)
346                 return;
347         if(length_ratio > 1)
348                 length_ratio = 1;
349         if (baralign == 3)
350         {
351                 if(length_ratio < -1)
352                         length_ratio = -1;
353         }
354         else if(length_ratio < 0)
355                 return;
356
357         vector square;
358         vector width, height;
359         if(vertical) {
360                 pic = strcat(hud_skin_path, "/", pic, "_vertical");
361                 if(precache_pic(pic) == "") {
362                         pic = "gfx/hud/default/progressbar_vertical";
363                 }
364
365         if (baralign == 1) // bottom align
366                         theOrigin.y += (1 - length_ratio) * theSize.y;
367         else if (baralign == 2) // center align
368             theOrigin.y += 0.5 * (1 - length_ratio) * theSize.y;
369         else if (baralign == 3) // center align, positive values down, negative up
370                 {
371                         theSize.y *= 0.5;
372                         if (length_ratio > 0)
373                                 theOrigin.y += theSize.y;
374                         else
375                         {
376                                 theOrigin.y += (1 + length_ratio) * theSize.y;
377                                 length_ratio = -length_ratio;
378                         }
379                 }
380                 theSize.y *= length_ratio;
381
382                 vector bH;
383                 width = eX * theSize.x;
384                 height = eY * theSize.y;
385                 if(theSize.y <= theSize.x * 2)
386                 {
387                         // button not high enough
388                         // draw just upper and lower part then
389                         square = eY * theSize.y * 0.5;
390                         bH = eY * (0.25 * theSize.y / (theSize.x * 2));
391                         drawsubpic(theOrigin,          square + width, pic, '0 0 0', eX + bH, theColor, theAlpha, drawflag);
392                         drawsubpic(theOrigin + square, square + width, pic, eY - bH, eX + bH, theColor, theAlpha, drawflag);
393                 }
394                 else
395                 {
396                         square = eY * theSize.x;
397                         drawsubpic(theOrigin,                   width   +     square, pic, '0 0    0', '1 0.25 0', theColor, theAlpha, drawflag);
398                         drawsubpic(theOrigin +          square, theSize - 2 * square, pic, '0 0.25 0', '1 0.5  0', theColor, theAlpha, drawflag);
399                         drawsubpic(theOrigin + height - square, width   +     square, pic, '0 0.75 0', '1 0.25 0', theColor, theAlpha, drawflag);
400                 }
401         } else {
402                 pic = strcat(hud_skin_path, "/", pic);
403                 if(precache_pic(pic) == "") {
404                         pic = "gfx/hud/default/progressbar";
405                 }
406
407                 if (baralign == 1) // right align
408                         theOrigin.x += (1 - length_ratio) * theSize.x;
409         else if (baralign == 2) // center align
410             theOrigin.x += 0.5 * (1 - length_ratio) * theSize.x;
411         else if (baralign == 3) // center align, positive values on the right, negative on the left
412                 {
413                         theSize.x *= 0.5;
414                         if (length_ratio > 0)
415                                 theOrigin.x += theSize.x;
416                         else
417                         {
418                                 theOrigin.x += (1 + length_ratio) * theSize.x;
419                                 length_ratio = -length_ratio;
420                         }
421                 }
422                 theSize.x *= length_ratio;
423
424                 vector bW;
425                 width = eX * theSize.x;
426                 height = eY * theSize.y;
427                 if(theSize.x <= theSize.y * 2)
428                 {
429                         // button not wide enough
430                         // draw just left and right part then
431                         square = eX * theSize.x * 0.5;
432                         bW = eX * (0.25 * theSize.x / (theSize.y * 2));
433                         drawsubpic(theOrigin,          square + height, pic, '0 0 0', eY + bW, theColor, theAlpha, drawflag);
434                         drawsubpic(theOrigin + square, square + height, pic, eX - bW, eY + bW, theColor, theAlpha, drawflag);
435                 }
436                 else
437                 {
438                         square = eX * theSize.y;
439                         drawsubpic(theOrigin,                  height  +     square, pic, '0    0 0', '0.25 1 0', theColor, theAlpha, drawflag);
440                         drawsubpic(theOrigin +         square, theSize - 2 * square, pic, '0.25 0 0', '0.5  1 0', theColor, theAlpha, drawflag);
441                         drawsubpic(theOrigin + width - square, height  +     square, pic, '0.75 0 0', '0.25 1 0', theColor, theAlpha, drawflag);
442                 }
443         }
444 }
445
446 void HUD_Panel_DrawHighlight(vector pos, vector mySize, vector color, float theAlpha, int drawflag)
447 {
448         if(!theAlpha)
449                 return;
450
451         string pic;
452         pic = strcat(hud_skin_path, "/num_leading");
453         if(precache_pic(pic) == "") {
454                 pic = "gfx/hud/default/num_leading";
455         }
456
457         drawsubpic(pos, eX * min(mySize.x * 0.5, mySize.y) + eY * mySize.y, pic, '0 0 0', '0.25 1 0', color, theAlpha, drawflag);
458         if(mySize.x/mySize.y > 2)
459                 drawsubpic(pos + eX * mySize.y, eX * (mySize.x - 2 * mySize.y) + eY * mySize.y, pic, '0.25 0 0', '0.5 1 0', color, theAlpha, drawflag);
460         drawsubpic(pos + eX * mySize.x - eX * min(mySize.x * 0.5, mySize.y), eX * min(mySize.x * 0.5, mySize.y) + eY * mySize.y, pic, '0.75 0 0', '0.25 1 0', color, theAlpha, drawflag);
461 }
462
463 // Weapon icons (#0)
464 //
465 entity weaponorder[WEP_MAXCOUNT];
466 void weaponorder_swap(int i, int j, entity pass)
467 {
468         entity h = weaponorder[i];
469         weaponorder[i] = weaponorder[j];
470         weaponorder[j] = h;
471 }
472
473 string weaponorder_cmp_str;
474 int weaponorder_cmp(int i, int j, entity pass)
475 {
476         int ai, aj;
477         ai = strstrofs(weaponorder_cmp_str, sprintf(" %d ", weaponorder[i].weapon), 0);
478         aj = strstrofs(weaponorder_cmp_str, sprintf(" %d ", weaponorder[j].weapon), 0);
479         return aj - ai; // the string is in REVERSE order (higher prio at the right is what we want, but higher prio first is the string)
480 }
481
482 void HUD_Weapons(void)
483 {
484         // declarations
485         WepSet weapons_stat = WepSet_GetFromStat();
486         int i;
487         float f, a;
488         float screen_ar;
489         vector center = '0 0 0';
490         int weapon_count, weapon_id;
491         int row, column, rows = 0, columns = 0;
492         bool vertical_order = true;
493         float aspect = autocvar_hud_panel_weapons_aspect;
494
495         float timeout = autocvar_hud_panel_weapons_timeout;
496         float timein_effect_length = autocvar_hud_panel_weapons_timeout_speed_in; //? 0.375 : 0);
497         float timeout_effect_length = autocvar_hud_panel_weapons_timeout_speed_out; //? 0.75 : 0);
498
499         vector barsize = '0 0 0', baroffset = '0 0 0';
500         vector ammo_color = '1 0 1';
501         float ammo_alpha = 1;
502
503         float when = max(1, autocvar_hud_panel_weapons_complainbubble_time);
504         float fadetime = max(0, autocvar_hud_panel_weapons_complainbubble_fadetime);
505
506         vector weapon_pos, weapon_size = '0 0 0';
507         vector color;
508
509         // check to see if we want to continue
510         if(hud != HUD_NORMAL) { return; }
511
512         if(!autocvar__hud_configure)
513         {
514                 if((!autocvar_hud_panel_weapons) || (spectatee_status == -1))
515                         return;
516                 if(timeout && time >= weapontime + timeout + timeout_effect_length)
517                 if(autocvar_hud_panel_weapons_timeout_effect == 3 || (autocvar_hud_panel_weapons_timeout_effect == 1 && !(autocvar_hud_panel_weapons_timeout_fadebgmin + autocvar_hud_panel_weapons_timeout_fadefgmin)))
518                 {
519                         weaponprevtime = time;
520                         return;
521                 }
522         }
523
524         // update generic hud functions
525         HUD_Panel_UpdateCvars();
526
527         // figure out weapon order (how the weapons are sorted) // TODO make this configurable
528         if(weaponorder_bypriority != autocvar_cl_weaponpriority || !weaponorder[0])
529         {
530                 int weapon_cnt;
531                 if(weaponorder_bypriority)
532                         strunzone(weaponorder_bypriority);
533                 if(weaponorder_byimpulse)
534                         strunzone(weaponorder_byimpulse);
535
536                 weaponorder_bypriority = strzone(autocvar_cl_weaponpriority);
537                 weaponorder_byimpulse = strzone(W_FixWeaponOrder_BuildImpulseList(W_FixWeaponOrder_ForceComplete(W_NumberWeaponOrder(weaponorder_bypriority))));
538                 weaponorder_cmp_str = strcat(" ", weaponorder_byimpulse, " ");
539
540                 weapon_cnt = 0;
541                 for(i = WEP_FIRST; i <= WEP_LAST; ++i)
542                 {
543                         self = get_weaponinfo(i);
544                         if(self.impulse >= 0)
545                         {
546                                 weaponorder[weapon_cnt] = self;
547                                 ++weapon_cnt;
548                         }
549                 }
550                 for(i = weapon_cnt; i < WEP_MAXCOUNT; ++i)
551                         weaponorder[i] = world;
552                 heapsort(weapon_cnt, weaponorder_swap, weaponorder_cmp, world);
553
554                 weaponorder_cmp_str = string_null;
555         }
556
557         if(!autocvar_hud_panel_weapons_complainbubble || autocvar__hud_configure || time - complain_weapon_time >= when + fadetime)
558                 complain_weapon = 0;
559
560         if(autocvar__hud_configure)
561         {
562                 if(!weapons_stat)
563                         for(i = WEP_FIRST; i <= WEP_LAST; i += floor((WEP_LAST-WEP_FIRST)/5))
564                                 weapons_stat |= WepSet_FromWeapon(i);
565
566                 #if 0
567                 /// debug code
568                 if(cvar("wep_add"))
569                 {
570                         weapons_stat = '0 0 0';
571                         float countw = 1 + floor((floor(time * cvar("wep_add"))) % WEP_COUNT);
572                         for(i = WEP_FIRST; i <= countw; ++i)
573                                 weapons_stat |= WepSet_FromWeapon(i);
574                 }
575                 #endif
576         }
577
578         // determine which weapons are going to be shown
579         if (autocvar_hud_panel_weapons_onlyowned)
580         {
581                 if(autocvar__hud_configure)
582                 {
583                         if(menu_enabled != 2)
584                                 HUD_Panel_DrawBg(1); // also draw the bg of the entire panel
585                 }
586
587                 // do we own this weapon?
588                 weapon_count = 0;
589                 for(i = 0; i <= WEP_LAST-WEP_FIRST; ++i)
590                         if((weapons_stat & WepSet_FromWeapon(weaponorder[i].weapon)) || (weaponorder[i].weapon == complain_weapon))
591                                 ++weapon_count;
592
593
594                 // might as well commit suicide now, no reason to live ;)
595                 if (weapon_count == 0)
596                         return;
597
598                 vector old_panel_size = panel_size;
599                 vector padded_panel_size = panel_size - '2 2 0' * panel_bg_padding;
600
601                 // get the all-weapons layout
602                 vector table_size = HUD_GetTableSize(WEP_COUNT, padded_panel_size, aspect);
603                 columns = table_size.x;
604                 rows = table_size.y;
605                 weapon_size.x = padded_panel_size.x / columns;
606                 weapon_size.y = padded_panel_size.y / rows;
607
608                 // NOTE: although weapons should aways look the same even if onlyowned is enabled,
609                 // we enlarge them a bit when possible to better match the desired aspect ratio
610                 if(padded_panel_size.x / padded_panel_size.y < aspect)
611                 {
612                         // maximum number of rows that allows to display items with the desired aspect ratio
613                         int max_rows = floor(padded_panel_size.y / (weapon_size.x / aspect));
614                         columns = min(columns, ceil(weapon_count / max_rows));
615                         rows = ceil(weapon_count / columns);
616                         weapon_size.y = min(padded_panel_size.y / rows, weapon_size.x / aspect);
617                         weapon_size.x = min(padded_panel_size.x / columns, aspect * weapon_size.y);
618                         vertical_order = false;
619                 }
620                 else
621                 {
622                         int max_columns = floor(padded_panel_size.x / (weapon_size.y * aspect));
623                         rows = min(rows, ceil(weapon_count / max_columns));
624                         columns = ceil(weapon_count / rows);
625                         weapon_size.x = min(padded_panel_size.x / columns, aspect * weapon_size.y);
626                         weapon_size.y = min(padded_panel_size.y / rows, weapon_size.x / aspect);
627                         vertical_order = true;
628                 }
629
630                 // reduce size of the panel
631                 panel_size.x = columns * weapon_size.x;
632                 panel_size.y = rows * weapon_size.y;
633                 panel_size += '2 2 0' * panel_bg_padding;
634
635                 // center the resized panel, or snap it to the screen edge when close enough
636                 if(panel_pos.x > vid_conwidth * 0.001)
637                 {
638                         if(panel_pos.x + old_panel_size.x > vid_conwidth * 0.999)
639                                 panel_pos.x += old_panel_size.x - panel_size.x;
640                         else
641                                 panel_pos.x += (old_panel_size.x - panel_size.x) / 2;
642                 }
643                 else if(old_panel_size.x > vid_conwidth * 0.999)
644                         panel_pos.x += (old_panel_size.x - panel_size.x) / 2;
645
646                 if(panel_pos.y > vid_conheight * 0.001)
647                 {
648                         if(panel_pos.y + old_panel_size.y > vid_conheight * 0.999)
649                                 panel_pos.y += old_panel_size.y - panel_size.y;
650                         else
651                                 panel_pos.y += (old_panel_size.y - panel_size.y) / 2;
652                 }
653                 else if(old_panel_size.y > vid_conheight * 0.999)
654                         panel_pos.y += (old_panel_size.y - panel_size.y) / 2;
655         }
656         else
657                 weapon_count = WEP_COUNT;
658
659         // animation for fading in/out the panel respectively when not in use
660         if(!autocvar__hud_configure)
661         {
662                 if (timeout && time >= weapontime + timeout) // apply timeout effect if needed
663                 {
664                         f = bound(0, (time - (weapontime + timeout)) / timeout_effect_length, 1);
665
666                         // fade the panel alpha
667                         if(autocvar_hud_panel_weapons_timeout_effect == 1)
668                         {
669                                 panel_bg_alpha *= (autocvar_hud_panel_weapons_timeout_fadebgmin * f + (1 - f));
670                                 panel_fg_alpha *= (autocvar_hud_panel_weapons_timeout_fadefgmin * f + (1 - f));
671                         }
672                         else if(autocvar_hud_panel_weapons_timeout_effect == 3)
673                         {
674                                 panel_bg_alpha *= (1 - f);
675                                 panel_fg_alpha *= (1 - f);
676                         }
677
678                         // move the panel off the screen
679                         if (autocvar_hud_panel_weapons_timeout_effect == 2 || autocvar_hud_panel_weapons_timeout_effect == 3)
680                         {
681                                 f *= f; // for a cooler movement
682                                 center.x = panel_pos.x + panel_size.x/2;
683                                 center.y = panel_pos.y + panel_size.y/2;
684                                 screen_ar = vid_conwidth/vid_conheight;
685                                 if (center.x/center.y < screen_ar) //bottom left
686                                 {
687                                         if ((vid_conwidth - center.x)/center.y < screen_ar) //bottom
688                                                 panel_pos.y += f * (vid_conheight - panel_pos.y);
689                                         else //left
690                                                 panel_pos.x -= f * (panel_pos.x + panel_size.x);
691                                 }
692                                 else //top right
693                                 {
694                                         if ((vid_conwidth - center.x)/center.y < screen_ar) //right
695                                                 panel_pos.x += f * (vid_conwidth - panel_pos.x);
696                                         else //top
697                                                 panel_pos.y -= f * (panel_pos.y + panel_size.y);
698                                 }
699                                 if(f == 1)
700                                         center.x = -1; // mark the panel as off screen
701                         }
702                         weaponprevtime = time - (1 - f) * timein_effect_length;
703                 }
704                 else if (timeout && time < weaponprevtime + timein_effect_length) // apply timein effect if needed
705                 {
706                         f = bound(0, (time - weaponprevtime) / timein_effect_length, 1);
707
708                         // fade the panel alpha
709                         if(autocvar_hud_panel_weapons_timeout_effect == 1)
710                         {
711                                 panel_bg_alpha *= (autocvar_hud_panel_weapons_timeout_fadebgmin * (1 - f) + f);
712                                 panel_fg_alpha *= (autocvar_hud_panel_weapons_timeout_fadefgmin * (1 - f) + f);
713                         }
714                         else if(autocvar_hud_panel_weapons_timeout_effect == 3)
715                         {
716                                 panel_bg_alpha *= (f);
717                                 panel_fg_alpha *= (f);
718                         }
719
720                         // move the panel back on screen
721                         if (autocvar_hud_panel_weapons_timeout_effect == 2 || autocvar_hud_panel_weapons_timeout_effect == 3)
722                         {
723                                 f *= f; // for a cooler movement
724                                 f = 1 - f;
725                                 center.x = panel_pos.x + panel_size.x/2;
726                                 center.y = panel_pos.y + panel_size.y/2;
727                                 screen_ar = vid_conwidth/vid_conheight;
728                                 if (center.x/center.y < screen_ar) //bottom left
729                                 {
730                                         if ((vid_conwidth - center.x)/center.y < screen_ar) //bottom
731                                                 panel_pos.y += f * (vid_conheight - panel_pos.y);
732                                         else //left
733                                                 panel_pos.x -= f * (panel_pos.x + panel_size.x);
734                                 }
735                                 else //top right
736                                 {
737                                         if ((vid_conwidth - center.x)/center.y < screen_ar) //right
738                                                 panel_pos.x += f * (vid_conwidth - panel_pos.x);
739                                         else //top
740                                                 panel_pos.y -= f * (panel_pos.y + panel_size.y);
741                                 }
742                         }
743                 }
744         }
745
746         // draw the background, then change the virtual size of it to better fit other items inside
747         HUD_Panel_DrawBg(1);
748
749         if(center.x == -1)
750                 return;
751
752         if(panel_bg_padding)
753         {
754                 panel_pos += '1 1 0' * panel_bg_padding;
755                 panel_size -= '2 2 0' * panel_bg_padding;
756         }
757
758         // after the sizing and animations are done, update the other values
759
760         if(!rows) // if rows is > 0 onlyowned code has already updated these vars
761         {
762                 vector table_size = HUD_GetTableSize(WEP_COUNT, panel_size, aspect);
763                 columns = table_size.x;
764                 rows = table_size.y;
765                 weapon_size.x = panel_size.x / columns;
766                 weapon_size.y = panel_size.y / rows;
767                 vertical_order = (panel_size.x / panel_size.y >= aspect);
768         }
769
770         // calculate position/size for visual bar displaying ammount of ammo status
771         if (autocvar_hud_panel_weapons_ammo)
772         {
773                 ammo_color = stov(autocvar_hud_panel_weapons_ammo_color);
774                 ammo_alpha = panel_fg_alpha * autocvar_hud_panel_weapons_ammo_alpha;
775
776                 if(weapon_size.x/weapon_size.y > aspect)
777                 {
778                         barsize.x = aspect * weapon_size.y;
779                         barsize.y = weapon_size.y;
780                         baroffset.x = (weapon_size.x - barsize.x) / 2;
781                 }
782                 else
783                 {
784                         barsize.y = 1/aspect * weapon_size.x;
785                         barsize.x = weapon_size.x;
786                         baroffset.y = (weapon_size.y - barsize.y) / 2;
787                 }
788         }
789         if(autocvar_hud_panel_weapons_accuracy)
790                 Accuracy_LoadColors();
791
792         // draw items
793         row = column = 0;
794         vector label_size = '1 1 0' * min(weapon_size.x, weapon_size.y) * bound(0, autocvar_hud_panel_weapons_label_scale, 1);
795         for(i = 0; i <= WEP_LAST-WEP_FIRST; ++i)
796         {
797                 // retrieve information about the current weapon to be drawn
798                 self = weaponorder[i];
799                 weapon_id = self.impulse;
800
801                 // skip if this weapon doesn't exist
802                 if(!self || weapon_id < 0) { continue; }
803
804                 // skip this weapon if we don't own it (and onlyowned is enabled)-- or if weapons_complainbubble is showing for this weapon
805                 if(autocvar_hud_panel_weapons_onlyowned)
806                 if (!((weapons_stat & WepSet_FromWeapon(self.weapon)) || (self.weapon == complain_weapon)))
807                         continue;
808
809                 // figure out the drawing position of weapon
810                 weapon_pos = (panel_pos
811                         + eX * column * weapon_size.x
812                         + eY * row * weapon_size.y);
813
814                 // draw background behind currently selected weapon
815                 if(self.weapon == switchweapon)
816                         drawpic_aspect_skin(weapon_pos, "weapon_current_bg", weapon_size, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
817
818                 // draw the weapon accuracy
819                 if(autocvar_hud_panel_weapons_accuracy)
820                 {
821                         float panel_weapon_accuracy = weapon_accuracy[self.weapon-WEP_FIRST];
822                         if(panel_weapon_accuracy >= 0)
823                         {
824                                 color = Accuracy_GetColor(panel_weapon_accuracy);
825                                 drawpic_aspect_skin(weapon_pos, "weapon_accuracy", weapon_size, color, panel_fg_alpha, DRAWFLAG_NORMAL);
826                         }
827                 }
828
829                 // drawing all the weapon items
830                 if(weapons_stat & WepSet_FromWeapon(self.weapon))
831                 {
832                         // draw the weapon image
833                         drawpic_aspect_skin(weapon_pos, self.model2, weapon_size, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
834
835                         // draw weapon label string
836                         switch(autocvar_hud_panel_weapons_label)
837                         {
838                                 case 1: // weapon number
839                                         drawstring(weapon_pos, ftos(weapon_id), label_size, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
840                                         break;
841
842                                 case 2: // bind
843                                         drawstring(weapon_pos, getcommandkey(ftos(weapon_id), strcat("weapon_group_", ftos(weapon_id))), label_size, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
844                                         break;
845
846                                 case 3: // weapon name
847                                         drawstring(weapon_pos, strtolower(self.message), label_size, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
848                                         break;
849
850                                 default: // nothing
851                                         break;
852                         }
853
854                         // draw ammo status bar
855                         if(autocvar_hud_panel_weapons_ammo && (self.ammo_field != ammo_none))
856                         {
857                                 float ammo_full;
858                                 a = getstati(GetAmmoStat(self.ammo_field)); // how much ammo do we have?
859
860                                 if(a > 0)
861                                 {
862                                         switch(self.ammo_field)
863                                         {
864                                                 case ammo_shells:  ammo_full = autocvar_hud_panel_weapons_ammo_full_shells;  break;
865                                                 case ammo_nails:   ammo_full = autocvar_hud_panel_weapons_ammo_full_nails;   break;
866                                                 case ammo_rockets: ammo_full = autocvar_hud_panel_weapons_ammo_full_rockets; break;
867                                                 case ammo_cells:   ammo_full = autocvar_hud_panel_weapons_ammo_full_cells;   break;
868                                                 case ammo_plasma:  ammo_full = autocvar_hud_panel_weapons_ammo_full_plasma;  break;
869                                                 case ammo_fuel:    ammo_full = autocvar_hud_panel_weapons_ammo_full_fuel;    break;
870                                                 default: ammo_full = 60;
871                                         }
872
873                                         drawsetcliparea(
874                                                 weapon_pos.x + baroffset.x,
875                                                 weapon_pos.y + baroffset.y,
876                                                 barsize.x * bound(0, a/ammo_full, 1),
877                                                 barsize.y
878                                         );
879
880                                         drawpic_aspect_skin(
881                                                 weapon_pos,
882                                                 "weapon_ammo",
883                                                 weapon_size,
884                                                 ammo_color,
885                                                 ammo_alpha,
886                                                 DRAWFLAG_NORMAL
887                                         );
888
889                                         drawresetcliparea();
890                                 }
891                         }
892                 }
893                 else // draw a "ghost weapon icon" if you don't have the weapon
894                 {
895                         drawpic_aspect_skin(weapon_pos, self.model2, weapon_size, '0 0 0', panel_fg_alpha * 0.5, DRAWFLAG_NORMAL);
896                 }
897
898                 // draw the complain message
899                 if(self.weapon == complain_weapon)
900                 {
901                         if(fadetime)
902                                 a = ((complain_weapon_time + when > time) ? 1 : bound(0, (complain_weapon_time + when + fadetime - time) / fadetime, 1));
903                         else
904                                 a = ((complain_weapon_time + when > time) ? 1 : 0);
905
906                         string s;
907                         if(complain_weapon_type == 0) {
908                                 s = _("Out of ammo");
909                                 color = stov(autocvar_hud_panel_weapons_complainbubble_color_outofammo);
910                         }
911                         else if(complain_weapon_type == 1) {
912                                 s = _("Don't have");
913                                 color = stov(autocvar_hud_panel_weapons_complainbubble_color_donthave);
914                         }
915                         else {
916                                 s = _("Unavailable");
917                                 color = stov(autocvar_hud_panel_weapons_complainbubble_color_unavailable);
918                         }
919                         float padding = autocvar_hud_panel_weapons_complainbubble_padding;
920                         drawpic_aspect_skin(weapon_pos + '1 1 0' * padding, "weapon_complainbubble", weapon_size - '2 2 0' * padding, color, a * panel_fg_alpha, DRAWFLAG_NORMAL);
921                         drawstring_aspect(weapon_pos + '1 1 0' * padding, s, weapon_size - '2 2 0' * padding, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
922                 }
923
924                 #if 0
925                 /// debug code
926                 if(!autocvar_hud_panel_weapons_onlyowned)
927                 {
928                         drawfill(weapon_pos + '1 1 0', weapon_size - '2 2 0', '1 1 1', panel_fg_alpha * 0.2, DRAWFLAG_NORMAL);
929                         drawstring(weapon_pos, ftos(i + 1), label_size, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
930                 }
931                 #endif
932
933                 // continue with new position for the next weapon
934                 if(vertical_order)
935                 {
936                         ++column;
937                         if(column >= columns)
938                         {
939                                 column = 0;
940                                 ++row;
941                         }
942                 }
943                 else
944                 {
945                         ++row;
946                         if(row >= rows)
947                         {
948                                 row = 0;
949                                 ++column;
950                         }
951                 }
952         }
953 }
954
955 // Ammo (#1)
956 void DrawNadeProgressBar(vector myPos, vector mySize, float progress, vector color)
957 {
958         HUD_Panel_DrawProgressBar(
959                 myPos + eX * autocvar_hud_panel_ammo_progressbar_xoffset * mySize.x,
960                 mySize - eX * autocvar_hud_panel_ammo_progressbar_xoffset * mySize.x,
961                 autocvar_hud_panel_ammo_progressbar_name,
962                 progress, 0, 0, color,
963                 autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
964 }
965
966 void DrawAmmoNades(vector myPos, vector mySize, bool draw_expanding, float expand_time)
967 {
968         float bonusNades    = getstatf(STAT_NADE_BONUS);
969         float bonusProgress = getstatf(STAT_NADE_BONUS_SCORE);
970         float bonusType     = getstati(STAT_NADE_BONUS_TYPE);
971         vector nadeColor    = Nade_Color(bonusType);
972         string nadeIcon     = Nade_Icon(bonusType);
973
974         vector iconPos, textPos;
975
976         if(autocvar_hud_panel_ammo_iconalign)
977         {
978                 iconPos = myPos + eX * 2 * mySize.y;
979                 textPos = myPos;
980         }
981         else
982         {
983                 iconPos = myPos;
984                 textPos = myPos + eX * mySize.y;
985         }
986
987         if(bonusNades > 0 || bonusProgress > 0)
988         {
989                 DrawNadeProgressBar(myPos, mySize, bonusProgress, nadeColor);
990
991                 if(autocvar_hud_panel_ammo_text)
992                         drawstring_aspect(textPos, ftos(bonusNades), eX * (2/3) * mySize.x + eY * mySize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
993
994                 if(draw_expanding)
995                         drawpic_aspect_skin_expanding(iconPos, nadeIcon, '1 1 0' * mySize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL, expand_time);
996
997                 drawpic_aspect_skin(iconPos, nadeIcon, '1 1 0' * mySize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
998         }
999 }
1000
1001 void DrawAmmoItem(vector myPos, vector mySize, .int ammoType, bool isCurrent, bool isInfinite)
1002 {
1003         if(ammoType == ammo_none)
1004                 return;
1005
1006         // Initialize variables
1007
1008         int ammo;
1009         if(autocvar__hud_configure)
1010         {
1011                 isCurrent = (ammoType == ammo_rockets); // Rockets always current
1012                 ammo = 60;
1013         }
1014         else
1015                 ammo = getstati(GetAmmoStat(ammoType));
1016
1017         if(!isCurrent)
1018         {
1019                 float scale = bound(0, autocvar_hud_panel_ammo_noncurrent_scale, 1);
1020                 myPos = myPos + (mySize - mySize * scale) * 0.5;
1021                 mySize = mySize * scale;
1022         }
1023
1024         vector iconPos, textPos;
1025         if(autocvar_hud_panel_ammo_iconalign)
1026         {
1027                 iconPos = myPos + eX * 2 * mySize.y;
1028                 textPos = myPos;
1029         }
1030         else
1031         {
1032                 iconPos = myPos;
1033                 textPos = myPos + eX * mySize.y;
1034         }
1035
1036         bool isShadowed = (ammo <= 0 && !isCurrent && !isInfinite);
1037
1038         vector iconColor = isShadowed ? '0 0 0' : '1 1 1';
1039         vector textColor;
1040         if(isInfinite)
1041                 textColor = '0.2 0.95 0';
1042         else if(isShadowed)
1043                 textColor = '0 0 0';
1044         else if(ammo < 10)
1045                 textColor = '0.8 0.04 0';
1046         else
1047                 textColor = '1 1 1';
1048
1049         float alpha;
1050         if(isCurrent)
1051                 alpha = panel_fg_alpha;
1052         else if(isShadowed)
1053                 alpha = panel_fg_alpha * bound(0, autocvar_hud_panel_ammo_noncurrent_alpha, 1) * 0.5;
1054         else
1055                 alpha = panel_fg_alpha * bound(0, autocvar_hud_panel_ammo_noncurrent_alpha, 1);
1056
1057         string text = isInfinite ? "\xE2\x88\x9E" : ftos(ammo); // Use infinity symbol (U+221E)
1058
1059         // Draw item
1060
1061         if(isCurrent)
1062                 drawpic_aspect_skin(myPos, "ammo_current_bg", mySize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
1063
1064         if(ammo > 0 && autocvar_hud_panel_ammo_progressbar)
1065                 HUD_Panel_DrawProgressBar(myPos + eX * autocvar_hud_panel_ammo_progressbar_xoffset * mySize.x, mySize - eX * autocvar_hud_panel_ammo_progressbar_xoffset * mySize.x, autocvar_hud_panel_ammo_progressbar_name, ammo/autocvar_hud_panel_ammo_maxammo, 0, 0, textColor, autocvar_hud_progressbar_alpha * alpha, DRAWFLAG_NORMAL);
1066
1067         if(autocvar_hud_panel_ammo_text)
1068                 drawstring_aspect(textPos, text, eX * (2/3) * mySize.x + eY * mySize.y, textColor, alpha, DRAWFLAG_NORMAL);
1069
1070         drawpic_aspect_skin(iconPos, GetAmmoPicture(ammoType), '1 1 0' * mySize.y, iconColor, alpha, DRAWFLAG_NORMAL);
1071 }
1072
1073 int nade_prevstatus;
1074 int nade_prevframe;
1075 float nade_statuschange_time;
1076 void HUD_Ammo(void)
1077 {
1078         if(hud != HUD_NORMAL) return;
1079         if(!autocvar__hud_configure)
1080         {
1081                 if(!autocvar_hud_panel_ammo) return;
1082                 if(spectatee_status == -1) return;
1083         }
1084
1085         HUD_Panel_UpdateCvars();
1086
1087         draw_beginBoldFont();
1088
1089         vector pos, mySize;
1090         pos = panel_pos;
1091         mySize = panel_size;
1092
1093         HUD_Panel_DrawBg(1);
1094         if(panel_bg_padding)
1095         {
1096                 pos += '1 1 0' * panel_bg_padding;
1097                 mySize -= '2 2 0' * panel_bg_padding;
1098         }
1099
1100         int rows = 0, columns, row, column;
1101         float nade_cnt = getstatf(STAT_NADE_BONUS), nade_score = getstatf(STAT_NADE_BONUS_SCORE);
1102         bool draw_nades = (nade_cnt > 0 || nade_score > 0);
1103         float nade_statuschange_elapsedtime;
1104         int total_ammo_count;
1105
1106         vector ammo_size;
1107         if (autocvar_hud_panel_ammo_onlycurrent)
1108                 total_ammo_count = 1;
1109         else
1110                 total_ammo_count = AMMO_COUNT;
1111
1112         if(draw_nades)
1113         {
1114                 ++total_ammo_count;
1115                 if (nade_cnt != nade_prevframe)
1116                 {
1117                         nade_statuschange_time = time;
1118                         nade_prevstatus = nade_prevframe;
1119                         nade_prevframe = nade_cnt;
1120                 }
1121         }
1122         else
1123                 nade_prevstatus = nade_prevframe = nade_statuschange_time = 0;
1124
1125         rows = HUD_GetRowCount(total_ammo_count, mySize, 3);
1126         columns = ceil((total_ammo_count)/rows);
1127         ammo_size = eX * mySize.x*(1/columns) + eY * mySize.y*(1/rows);
1128
1129         vector offset = '0 0 0'; // fteqcc sucks
1130         float newSize;
1131         if(ammo_size.x/ammo_size.y > 3)
1132         {
1133                 newSize = 3 * ammo_size.y;
1134                 offset.x = ammo_size.x - newSize;
1135                 pos.x += offset.x/2;
1136                 ammo_size.x = newSize;
1137         }
1138         else
1139         {
1140                 newSize = 1/3 * ammo_size.x;
1141                 offset.y = ammo_size.y - newSize;
1142                 pos.y += offset.y/2;
1143                 ammo_size.y = newSize;
1144         }
1145
1146         int i;
1147         bool infinite_ammo = (getstati(STAT_ITEMS, 0, 24) & IT_UNLIMITED_WEAPON_AMMO);
1148         row = column = 0;
1149         if(autocvar_hud_panel_ammo_onlycurrent)
1150         {
1151                 if(autocvar__hud_configure)
1152                 {
1153                         DrawAmmoItem(pos, ammo_size, ammo_rockets, true, false);
1154                 }
1155                 else
1156                 {
1157                         DrawAmmoItem(
1158                                 pos,
1159                                 ammo_size,
1160                                 (get_weaponinfo(switchweapon)).ammo_field,
1161                                 true,
1162                                 infinite_ammo
1163                         );
1164                 }
1165
1166                 ++row;
1167                 if(row >= rows)
1168                 {
1169                         row = 0;
1170                         column = column + 1;
1171                 }
1172         }
1173         else
1174         {
1175                 .int ammotype;
1176                 row = column = 0;
1177                 for(i = 0; i < AMMO_COUNT; ++i)
1178                 {
1179                         ammotype = GetAmmoFieldFromNum(i);
1180                         DrawAmmoItem(
1181                                 pos + eX * column * (ammo_size.x + offset.x) + eY * row * (ammo_size.y + offset.y),
1182                                 ammo_size,
1183                                 ammotype,
1184                                 ((get_weaponinfo(switchweapon)).ammo_field == ammotype),
1185                                 infinite_ammo
1186                         );
1187
1188                         ++row;
1189                         if(row >= rows)
1190                         {
1191                                 row = 0;
1192                                 column = column + 1;
1193                         }
1194                 }
1195         }
1196
1197         if (draw_nades)
1198         {
1199                 nade_statuschange_elapsedtime = time - nade_statuschange_time;
1200
1201                 float f = bound(0, nade_statuschange_elapsedtime*2, 1);
1202
1203                 DrawAmmoNades(pos + eX * column * (ammo_size.x + offset.x) + eY * row * (ammo_size.y + offset.y), ammo_size, nade_prevstatus < nade_cnt && nade_cnt != 0 && f < 1, f);
1204         }
1205
1206         draw_endBoldFont();
1207 }
1208
1209 void DrawNumIcon_expanding(vector myPos, vector mySize, float x, string icon, bool vertical, bool icon_right_align, vector color, float theAlpha, float fadelerp)
1210 {
1211         vector newPos = '0 0 0', newSize = '0 0 0';
1212         vector picpos, numpos;
1213
1214         if (vertical)
1215         {
1216                 if(mySize.y/mySize.x > 2)
1217                 {
1218                         newSize.y = 2 * mySize.x;
1219                         newSize.x = mySize.x;
1220
1221                         newPos.y = myPos.y + (mySize.y - newSize.y) / 2;
1222                         newPos.x = myPos.x;
1223                 }
1224                 else
1225                 {
1226                         newSize.x = 1/2 * mySize.y;
1227                         newSize.y = mySize.y;
1228
1229                         newPos.x = myPos.x + (mySize.x - newSize.x) / 2;
1230                         newPos.y = myPos.y;
1231                 }
1232
1233                 if(icon_right_align)
1234                 {
1235                         numpos = newPos;
1236                         picpos = newPos + eY * newSize.x;
1237                 }
1238                 else
1239                 {
1240                         picpos = newPos;
1241                         numpos = newPos + eY * newSize.x;
1242                 }
1243
1244                 newSize.y /= 2;
1245                 drawpic_aspect_skin(picpos, icon, newSize, '1 1 1', panel_fg_alpha * theAlpha, DRAWFLAG_NORMAL);
1246                 // make number smaller than icon, it looks better
1247                 // reduce only y to draw numbers with different number of digits with the same y size
1248                 numpos.y += newSize.y * ((1 - 0.7) / 2);
1249                 newSize.y *= 0.7;
1250                 drawstring_aspect(numpos, ftos(x), newSize, color, panel_fg_alpha * theAlpha, DRAWFLAG_NORMAL);
1251                 return;
1252         }
1253
1254         if(mySize.x/mySize.y > 3)
1255         {
1256                 newSize.x = 3 * mySize.y;
1257                 newSize.y = mySize.y;
1258
1259                 newPos.x = myPos.x + (mySize.x - newSize.x) / 2;
1260                 newPos.y = myPos.y;
1261         }
1262         else
1263         {
1264                 newSize.y = 1/3 * mySize.x;
1265                 newSize.x = mySize.x;
1266
1267                 newPos.y = myPos.y + (mySize.y - newSize.y) / 2;
1268                 newPos.x = myPos.x;
1269         }
1270
1271         if(icon_right_align) // right align
1272         {
1273                 numpos = newPos;
1274                 picpos = newPos + eX * 2 * newSize.y;
1275         }
1276         else // left align
1277         {
1278                 numpos = newPos + eX * newSize.y;
1279                 picpos = newPos;
1280         }
1281
1282         // NOTE: newSize_x is always equal to 3 * mySize_y so we can use
1283         // '2 1 0' * newSize_y instead of eX * (2/3) * newSize_x + eY * newSize_y
1284         drawstring_aspect_expanding(numpos, ftos(x), '2 1 0' * newSize.y, color, panel_fg_alpha * theAlpha, DRAWFLAG_NORMAL, fadelerp);
1285         drawpic_aspect_skin_expanding(picpos, icon, '1 1 0' * newSize.y, '1 1 1', panel_fg_alpha * theAlpha, DRAWFLAG_NORMAL, fadelerp);
1286 }
1287
1288 void DrawNumIcon(vector myPos, vector mySize, float x, string icon, bool vertical, bool icon_right_align, vector color, float theAlpha)
1289 {
1290         DrawNumIcon_expanding(myPos, mySize, x, icon, vertical, icon_right_align, color, theAlpha, 0);
1291 }
1292
1293 // Powerups (#2)
1294 //
1295 void HUD_Powerups(void)
1296 {
1297         float strength_time, shield_time, superweapons_time;
1298         if(!autocvar__hud_configure)
1299         {
1300                 if(!autocvar_hud_panel_powerups) return;
1301                 if(spectatee_status == -1) return;
1302                 if(!(getstati(STAT_ITEMS, 0, 24) & (IT_STRENGTH | IT_INVINCIBLE | IT_SUPERWEAPON))) return;
1303                 if (getstati(STAT_HEALTH) <= 0) return;
1304
1305                 strength_time = bound(0, getstatf(STAT_STRENGTH_FINISHED) - time, 99);
1306                 shield_time = bound(0, getstatf(STAT_INVINCIBLE_FINISHED) - time, 99);
1307                 superweapons_time = bound(0, getstatf(STAT_SUPERWEAPONS_FINISHED) - time, 99);
1308
1309                 if (getstati(STAT_ITEMS, 0, 24) & IT_UNLIMITED_SUPERWEAPONS)
1310                         superweapons_time = 99; // force max
1311
1312                 // prevent stuff to show up on mismatch that will be fixed next frame
1313                 if (!(getstati(STAT_ITEMS, 0, 24) & IT_SUPERWEAPON))
1314                         superweapons_time = 0;
1315         }
1316         else
1317         {
1318                 strength_time = 15;
1319                 shield_time = 27;
1320                 superweapons_time = 13;
1321         }
1322
1323         HUD_Panel_UpdateCvars();
1324
1325         draw_beginBoldFont();
1326
1327         vector pos, mySize;
1328         pos = panel_pos;
1329         mySize = panel_size;
1330
1331         HUD_Panel_DrawBg(bound(0, max(strength_time, shield_time, superweapons_time), 1));
1332         if(panel_bg_padding)
1333         {
1334                 pos += '1 1 0' * panel_bg_padding;
1335                 mySize -= '2 2 0' * panel_bg_padding;
1336         }
1337
1338         float panel_ar = mySize.x/mySize.y;
1339         bool is_vertical = (panel_ar < 1);
1340         vector shield_offset = '0 0 0', strength_offset = '0 0 0', superweapons_offset = '0 0 0';
1341
1342         int superweapons_is = -1;
1343
1344         if(superweapons_time)
1345         {
1346                 if(strength_time)
1347                 {
1348                         if(shield_time)
1349                                 superweapons_is = 0;
1350                         else
1351                                 superweapons_is = 2;
1352                 }
1353                 else
1354                 {
1355                         if(shield_time)
1356                                 superweapons_is = 1;
1357                         else
1358                                 superweapons_is = 2;
1359                 }
1360         }
1361
1362         // FIXME handle superweapons here
1363         if(superweapons_is == 0)
1364         {
1365                 if (panel_ar >= 4 || (panel_ar >= 1/4 && panel_ar < 1))
1366                 {
1367                         mySize.x *= (1.0 / 3.0);
1368                         superweapons_offset.x = mySize.x;
1369                         if (autocvar_hud_panel_powerups_flip)
1370                                 shield_offset.x = 2*mySize.x;
1371                         else
1372                                 strength_offset.x = 2*mySize.x;
1373                 }
1374                 else
1375                 {
1376                         mySize.y *= (1.0 / 3.0);
1377                         superweapons_offset.y = mySize.y;
1378                         if (autocvar_hud_panel_powerups_flip)
1379                                 shield_offset.y = 2*mySize.y;
1380                         else
1381                                 strength_offset.y = 2*mySize.y;
1382                 }
1383         }
1384         else
1385         {
1386                 if (panel_ar >= 4 || (panel_ar >= 1/4 && panel_ar < 1))
1387                 {
1388                         mySize.x *= 0.5;
1389                         if (autocvar_hud_panel_powerups_flip)
1390                                 shield_offset.x = mySize.x;
1391                         else
1392                                 strength_offset.x = mySize.x;
1393                 }
1394                 else
1395                 {
1396                         mySize.y *= 0.5;
1397                         if (autocvar_hud_panel_powerups_flip)
1398                                 shield_offset.y = mySize.y;
1399                         else
1400                                 strength_offset.y = mySize.y;
1401                 }
1402         }
1403
1404         bool shield_baralign, strength_baralign, superweapons_baralign;
1405         bool shield_iconalign, strength_iconalign, superweapons_iconalign;
1406
1407         if (autocvar_hud_panel_powerups_flip)
1408         {
1409                 strength_baralign = (autocvar_hud_panel_powerups_baralign == 2 || autocvar_hud_panel_powerups_baralign == 1);
1410                 shield_baralign = (autocvar_hud_panel_powerups_baralign == 3 || autocvar_hud_panel_powerups_baralign == 1);
1411                 strength_iconalign = (autocvar_hud_panel_powerups_iconalign == 2 || autocvar_hud_panel_powerups_iconalign == 1);
1412                 shield_iconalign = (autocvar_hud_panel_powerups_iconalign == 3 || autocvar_hud_panel_powerups_iconalign == 1);
1413         }
1414         else
1415         {
1416                 shield_baralign = (autocvar_hud_panel_powerups_baralign == 2 || autocvar_hud_panel_powerups_baralign == 1);
1417                 strength_baralign = (autocvar_hud_panel_powerups_baralign == 3 || autocvar_hud_panel_powerups_baralign == 1);
1418                 shield_iconalign = (autocvar_hud_panel_powerups_iconalign == 2 || autocvar_hud_panel_powerups_iconalign == 1);
1419                 strength_iconalign = (autocvar_hud_panel_powerups_iconalign == 3 || autocvar_hud_panel_powerups_iconalign == 1);
1420         }
1421
1422         if(superweapons_is == 0)
1423         {
1424                 superweapons_iconalign = strength_iconalign;
1425                 superweapons_baralign = 2;
1426         }
1427         else if(superweapons_is == 1)
1428         {
1429                 superweapons_offset = strength_offset;
1430                 superweapons_iconalign = strength_iconalign;
1431                 superweapons_baralign = strength_baralign;
1432         }
1433         else // if(superweapons_is == 2)
1434         {
1435                 superweapons_offset = shield_offset;
1436                 superweapons_iconalign = shield_iconalign;
1437                 superweapons_baralign = shield_baralign;
1438         }
1439
1440         if(shield_time)
1441         {
1442                 const float maxshield = 30;
1443                 float shield = ceil(shield_time);
1444                 if(autocvar_hud_panel_powerups_progressbar)
1445                         HUD_Panel_DrawProgressBar(pos + shield_offset, mySize, autocvar_hud_panel_powerups_progressbar_shield, shield/maxshield, is_vertical, shield_baralign, autocvar_hud_progressbar_shield_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
1446                 if(autocvar_hud_panel_powerups_text)
1447                 {
1448                         if(shield > 1)
1449                                 DrawNumIcon(pos + shield_offset, mySize, shield, "shield", is_vertical, shield_iconalign, '1 1 1', 1);
1450                         if(shield <= 5)
1451                                 DrawNumIcon_expanding(pos + shield_offset, mySize, shield, "shield", is_vertical, shield_iconalign, '1 1 1', 1, bound(0, (shield - shield_time) / 0.5, 1));
1452                 }
1453         }
1454
1455         if(strength_time)
1456         {
1457                 const float maxstrength = 30;
1458                 float strength = ceil(strength_time);
1459                 if(autocvar_hud_panel_powerups_progressbar)
1460                         HUD_Panel_DrawProgressBar(pos + strength_offset, mySize, autocvar_hud_panel_powerups_progressbar_strength, strength/maxstrength, is_vertical, strength_baralign, autocvar_hud_progressbar_strength_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
1461                 if(autocvar_hud_panel_powerups_text)
1462                 {
1463                         if(strength > 1)
1464                                 DrawNumIcon(pos + strength_offset, mySize, strength, "strength", is_vertical, strength_iconalign, '1 1 1', 1);
1465                         if(strength <= 5)
1466                                 DrawNumIcon_expanding(pos + strength_offset, mySize, strength, "strength", is_vertical, strength_iconalign, '1 1 1', 1, bound(0, (strength - strength_time) / 0.5, 1));
1467                 }
1468         }
1469
1470         if(superweapons_time)
1471         {
1472                 const float maxsuperweapons = 30;
1473                 float superweapons = ceil(superweapons_time);
1474                 if(autocvar_hud_panel_powerups_progressbar)
1475                         HUD_Panel_DrawProgressBar(pos + superweapons_offset, mySize, autocvar_hud_panel_powerups_progressbar_superweapons, superweapons/maxsuperweapons, is_vertical, superweapons_baralign, autocvar_hud_progressbar_superweapons_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
1476                 if(autocvar_hud_panel_powerups_text)
1477                 {
1478                         if(superweapons > 1)
1479                                 DrawNumIcon(pos + superweapons_offset, mySize, superweapons, "superweapons", is_vertical, superweapons_iconalign, '1 1 1', 1);
1480                         if(superweapons <= 5)
1481                                 DrawNumIcon_expanding(pos + superweapons_offset, mySize, superweapons, "superweapons", is_vertical, superweapons_iconalign, '1 1 1', 1, bound(0, (superweapons - superweapons_time) / 0.5, 1));
1482                 }
1483         }
1484
1485         draw_endBoldFont();
1486 }
1487
1488 // Health/armor (#3)
1489 //
1490
1491
1492 void HUD_HealthArmor(void)
1493 {
1494         int armor, health, fuel;
1495         if(!autocvar__hud_configure)
1496         {
1497                 if(!autocvar_hud_panel_healtharmor) return;
1498                 if(hud != HUD_NORMAL) return;
1499                 if(spectatee_status == -1) return;
1500
1501                 health = getstati(STAT_HEALTH);
1502                 if(health <= 0)
1503                 {
1504                         prev_health = -1;
1505                         return;
1506                 }
1507                 armor = getstati(STAT_ARMOR);
1508
1509                 // code to check for spectatee_status changes is in Ent_ClientData()
1510                 // prev_p_health and prev_health can be set to -1 there
1511
1512                 if (prev_p_health == -1)
1513                 {
1514                         // no effect
1515                         health_beforedamage = 0;
1516                         armor_beforedamage = 0;
1517                         health_damagetime = 0;
1518                         armor_damagetime = 0;
1519                         prev_health = health;
1520                         prev_armor = armor;
1521                         old_p_health = health;
1522                         old_p_armor = armor;
1523                         prev_p_health = health;
1524                         prev_p_armor = armor;
1525                 }
1526                 else if (prev_health == -1)
1527                 {
1528                         //start the load effect
1529                         health_damagetime = 0;
1530                         armor_damagetime = 0;
1531                         prev_health = 0;
1532                         prev_armor = 0;
1533                 }
1534                 fuel = getstati(STAT_FUEL);
1535         }
1536         else
1537         {
1538                 health = 150;
1539                 armor = 75;
1540                 fuel = 20;
1541         }
1542
1543         HUD_Panel_UpdateCvars();
1544
1545         draw_beginBoldFont();
1546
1547         vector pos, mySize;
1548         pos = panel_pos;
1549         mySize = panel_size;
1550
1551         HUD_Panel_DrawBg(1);
1552         if(panel_bg_padding)
1553         {
1554                 pos += '1 1 0' * panel_bg_padding;
1555                 mySize -= '2 2 0' * panel_bg_padding;
1556         }
1557
1558         int baralign = autocvar_hud_panel_healtharmor_baralign;
1559         int iconalign = autocvar_hud_panel_healtharmor_iconalign;
1560
1561     int maxhealth = autocvar_hud_panel_healtharmor_maxhealth;
1562     int maxarmor = autocvar_hud_panel_healtharmor_maxarmor;
1563         if(autocvar_hud_panel_healtharmor == 2) // combined health and armor display
1564         {
1565                 vector v;
1566                 v = healtharmor_maxdamage(health, armor, armorblockpercent, DEATH_WEAPON);
1567
1568                 float x;
1569                 x = floor(v.x + 1);
1570
1571         float maxtotal = maxhealth + maxarmor;
1572                 string biggercount;
1573                 if(v.z) // NOT fully armored
1574                 {
1575                         biggercount = "health";
1576                         if(autocvar_hud_panel_healtharmor_progressbar)
1577                                 HUD_Panel_DrawProgressBar(pos, mySize, autocvar_hud_panel_healtharmor_progressbar_health, x/maxtotal, 0, (baralign == 1 || baralign == 2), autocvar_hud_progressbar_health_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
1578                         if(armor)
1579             if(autocvar_hud_panel_healtharmor_text)
1580                                 drawpic_aspect_skin(pos + eX * mySize.x - eX * 0.5 * mySize.y, "armor", '0.5 0.5 0' * mySize.y, '1 1 1', panel_fg_alpha * armor / health, DRAWFLAG_NORMAL);
1581                 }
1582                 else
1583                 {
1584                         biggercount = "armor";
1585                         if(autocvar_hud_panel_healtharmor_progressbar)
1586                                 HUD_Panel_DrawProgressBar(pos, mySize, autocvar_hud_panel_healtharmor_progressbar_armor, x/maxtotal, 0, (baralign == 1 || baralign == 2), autocvar_hud_progressbar_armor_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
1587                         if(health)
1588             if(autocvar_hud_panel_healtharmor_text)
1589                                 drawpic_aspect_skin(pos + eX * mySize.x - eX * 0.5 * mySize.y, "health", '0.5 0.5 0' * mySize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
1590                 }
1591         if(autocvar_hud_panel_healtharmor_text)
1592                         DrawNumIcon(pos, mySize, x, biggercount, 0, iconalign, HUD_Get_Num_Color(x, maxtotal), 1);
1593
1594                 if(fuel)
1595                         HUD_Panel_DrawProgressBar(pos, eX * mySize.x + eY * 0.2 * mySize.y, "progressbar", fuel/100, 0, (baralign == 1 || baralign == 3), autocvar_hud_progressbar_fuel_color, panel_fg_alpha * 0.8, DRAWFLAG_NORMAL);
1596         }
1597         else
1598         {
1599                 float panel_ar = mySize.x/mySize.y;
1600                 bool is_vertical = (panel_ar < 1);
1601                 vector health_offset = '0 0 0', armor_offset = '0 0 0';
1602                 if (panel_ar >= 4 || (panel_ar >= 1/4 && panel_ar < 1))
1603                 {
1604                         mySize.x *= 0.5;
1605                         if (autocvar_hud_panel_healtharmor_flip)
1606                                 health_offset.x = mySize.x;
1607                         else
1608                                 armor_offset.x = mySize.x;
1609                 }
1610                 else
1611                 {
1612                         mySize.y *= 0.5;
1613                         if (autocvar_hud_panel_healtharmor_flip)
1614                                 health_offset.y = mySize.y;
1615                         else
1616                                 armor_offset.y = mySize.y;
1617                 }
1618
1619                 bool health_baralign, armor_baralign, fuel_baralign;
1620                 bool health_iconalign, armor_iconalign;
1621                 if (autocvar_hud_panel_healtharmor_flip)
1622                 {
1623                         armor_baralign = (autocvar_hud_panel_healtharmor_baralign == 2 || autocvar_hud_panel_healtharmor_baralign == 1);
1624                         health_baralign = (autocvar_hud_panel_healtharmor_baralign == 3 || autocvar_hud_panel_healtharmor_baralign == 1);
1625                         fuel_baralign = health_baralign;
1626                         armor_iconalign = (autocvar_hud_panel_healtharmor_iconalign == 2 || autocvar_hud_panel_healtharmor_iconalign == 1);
1627                         health_iconalign = (autocvar_hud_panel_healtharmor_iconalign == 3 || autocvar_hud_panel_healtharmor_iconalign == 1);
1628                 }
1629                 else
1630                 {
1631                         health_baralign = (autocvar_hud_panel_healtharmor_baralign == 2 || autocvar_hud_panel_healtharmor_baralign == 1);
1632                         armor_baralign = (autocvar_hud_panel_healtharmor_baralign == 3 || autocvar_hud_panel_healtharmor_baralign == 1);
1633                         fuel_baralign = armor_baralign;
1634                         health_iconalign = (autocvar_hud_panel_healtharmor_iconalign == 2 || autocvar_hud_panel_healtharmor_iconalign == 1);
1635                         armor_iconalign = (autocvar_hud_panel_healtharmor_iconalign == 3 || autocvar_hud_panel_healtharmor_iconalign == 1);
1636                 }
1637
1638                 //if(health)
1639                 {
1640                         if(autocvar_hud_panel_healtharmor_progressbar)
1641                         {
1642                                 float p_health, pain_health_alpha;
1643                                 p_health = health;
1644                                 pain_health_alpha = 1;
1645                                 if (autocvar_hud_panel_healtharmor_progressbar_gfx)
1646                                 {
1647                                         if (autocvar_hud_panel_healtharmor_progressbar_gfx_smooth > 0)
1648                                         {
1649                                                 if (fabs(prev_health - health) >= autocvar_hud_panel_healtharmor_progressbar_gfx_smooth)
1650                                                 {
1651                                                         if (time - old_p_healthtime < 1)
1652                                                                 old_p_health = prev_p_health;
1653                                                         else
1654                                                                 old_p_health = prev_health;
1655                                                         old_p_healthtime = time;
1656                                                 }
1657                                                 if (time - old_p_healthtime < 1)
1658                                                 {
1659                                                         p_health += (old_p_health - health) * (1 - (time - old_p_healthtime));
1660                                                         prev_p_health = p_health;
1661                                                 }
1662                                         }
1663                                         if (autocvar_hud_panel_healtharmor_progressbar_gfx_damage > 0)
1664                                         {
1665                                                 if (prev_health - health >= autocvar_hud_panel_healtharmor_progressbar_gfx_damage)
1666                                                 {
1667                                                         if (time - health_damagetime >= 1)
1668                                                                 health_beforedamage = prev_health;
1669                                                         health_damagetime = time;
1670                                                 }
1671                                                 if (time - health_damagetime < 1)
1672                                                 {
1673                                                         float health_damagealpha = 1 - (time - health_damagetime)*(time - health_damagetime);
1674                                                         HUD_Panel_DrawProgressBar(pos + health_offset, mySize, autocvar_hud_panel_healtharmor_progressbar_health, health_beforedamage/maxhealth, is_vertical, health_baralign, autocvar_hud_progressbar_health_color, autocvar_hud_progressbar_alpha * panel_fg_alpha * health_damagealpha, DRAWFLAG_NORMAL);
1675                                                 }
1676                                         }
1677                                         prev_health = health;
1678
1679                                         if (health <= autocvar_hud_panel_healtharmor_progressbar_gfx_lowhealth)
1680                                         {
1681                                                 float BLINK_FACTOR = 0.15;
1682                                                 float BLINK_BASE = 0.85;
1683                                                 float BLINK_FREQ = 9;
1684                                                 pain_health_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ);
1685                                         }
1686                                 }
1687                                 HUD_Panel_DrawProgressBar(pos + health_offset, mySize, autocvar_hud_panel_healtharmor_progressbar_health, p_health/maxhealth, is_vertical, health_baralign, autocvar_hud_progressbar_health_color, autocvar_hud_progressbar_alpha * panel_fg_alpha * pain_health_alpha, DRAWFLAG_NORMAL);
1688                         }
1689                         if(autocvar_hud_panel_healtharmor_text)
1690                                 DrawNumIcon(pos + health_offset, mySize, health, "health", is_vertical, health_iconalign, HUD_Get_Num_Color(health, maxhealth), 1);
1691                 }
1692
1693                 if(armor)
1694                 {
1695                         if(autocvar_hud_panel_healtharmor_progressbar)
1696                         {
1697                                 float p_armor;
1698                                 p_armor = armor;
1699                                 if (autocvar_hud_panel_healtharmor_progressbar_gfx)
1700                                 {
1701                                         if (autocvar_hud_panel_healtharmor_progressbar_gfx_smooth > 0)
1702                                         {
1703                                                 if (fabs(prev_armor - armor) >= autocvar_hud_panel_healtharmor_progressbar_gfx_smooth)
1704                                                 {
1705                                                         if (time - old_p_armortime < 1)
1706                                                                 old_p_armor = prev_p_armor;
1707                                                         else
1708                                                                 old_p_armor = prev_armor;
1709                                                         old_p_armortime = time;
1710                                                 }
1711                                                 if (time - old_p_armortime < 1)
1712                                                 {
1713                                                         p_armor += (old_p_armor - armor) * (1 - (time - old_p_armortime));
1714                                                         prev_p_armor = p_armor;
1715                                                 }
1716                                         }
1717                                         if (autocvar_hud_panel_healtharmor_progressbar_gfx_damage > 0)
1718                                         {
1719                                                 if (prev_armor - armor >= autocvar_hud_panel_healtharmor_progressbar_gfx_damage)
1720                                                 {
1721                                                         if (time - armor_damagetime >= 1)
1722                                                                 armor_beforedamage = prev_armor;
1723                                                         armor_damagetime = time;
1724                                                 }
1725                                                 if (time - armor_damagetime < 1)
1726                                                 {
1727                                                         float armor_damagealpha = 1 - (time - armor_damagetime)*(time - armor_damagetime);
1728                                                         HUD_Panel_DrawProgressBar(pos + armor_offset, mySize, autocvar_hud_panel_healtharmor_progressbar_armor, armor_beforedamage/maxarmor, is_vertical, armor_baralign, autocvar_hud_progressbar_armor_color, autocvar_hud_progressbar_alpha * panel_fg_alpha * armor_damagealpha, DRAWFLAG_NORMAL);
1729                                                 }
1730                                         }
1731                                         prev_armor = armor;
1732                                 }
1733                                 HUD_Panel_DrawProgressBar(pos + armor_offset, mySize, autocvar_hud_panel_healtharmor_progressbar_armor, p_armor/maxarmor, is_vertical, armor_baralign, autocvar_hud_progressbar_armor_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
1734                         }
1735                         if(autocvar_hud_panel_healtharmor_text)
1736                                 DrawNumIcon(pos + armor_offset, mySize, armor, "armor", is_vertical, armor_iconalign, HUD_Get_Num_Color(armor, maxarmor), 1);
1737                 }
1738
1739                 if(fuel)
1740                 {
1741                         if (is_vertical)
1742                                 mySize.x *= 0.2 / 2; //if vertical always halve x to not cover too much numbers with 3 digits
1743                         else
1744                                 mySize.y *= 0.2;
1745                         if (panel_ar >= 4)
1746                                 mySize.x *= 2; //restore full panel size
1747                         else if (panel_ar < 1/4)
1748                                 mySize.y *= 2; //restore full panel size
1749                         HUD_Panel_DrawProgressBar(pos, mySize, "progressbar", fuel/100, is_vertical, fuel_baralign, autocvar_hud_progressbar_fuel_color, panel_fg_alpha * 0.8, DRAWFLAG_NORMAL);
1750                 }
1751         }
1752
1753         draw_endBoldFont();
1754 }
1755
1756 // Notification area (#4)
1757 //
1758
1759 void HUD_Notify_Push(string icon, string attacker, string victim)
1760 {
1761         if (icon == "")
1762                 return;
1763
1764         ++notify_count;
1765         --notify_index;
1766
1767         if (notify_index == -1)
1768                 notify_index = NOTIFY_MAX_ENTRIES-1;
1769
1770         // Free old strings
1771         if (notify_attackers[notify_index])
1772                 strunzone(notify_attackers[notify_index]);
1773
1774         if (notify_victims[notify_index])
1775                 strunzone(notify_victims[notify_index]);
1776
1777         if (notify_icons[notify_index])
1778                 strunzone(notify_icons[notify_index]);
1779
1780         // Allocate new strings
1781         if (victim != "")
1782         {
1783                 notify_attackers[notify_index] = strzone(attacker);
1784                 notify_victims[notify_index] = strzone(victim);
1785         }
1786         else
1787         {
1788                 // In case of a notification without a victim, the attacker
1789                 // is displayed on the victim's side. Instead of special
1790                 // treatment later on, we can simply switch them here.
1791                 notify_attackers[notify_index] = string_null;
1792                 notify_victims[notify_index] = strzone(attacker);
1793         }
1794
1795         notify_icons[notify_index] = strzone(icon);
1796         notify_times[notify_index] = time;
1797 }
1798
1799 void HUD_Notify(void)
1800 {
1801         if (!autocvar__hud_configure)
1802                 if (!autocvar_hud_panel_notify)
1803                         return;
1804
1805         HUD_Panel_UpdateCvars();
1806         HUD_Panel_DrawBg(1);
1807
1808         if (!autocvar__hud_configure)
1809                 if (notify_count == 0)
1810                         return;
1811
1812         vector pos, size;
1813         pos  = panel_pos;
1814         size = panel_size;
1815
1816         if (panel_bg_padding)
1817         {
1818                 pos  += '1 1 0' * panel_bg_padding;
1819                 size -= '2 2 0' * panel_bg_padding;
1820         }
1821
1822         float fade_start = max(0, autocvar_hud_panel_notify_time);
1823         float fade_time = max(0, autocvar_hud_panel_notify_fadetime);
1824         float icon_aspect = max(1, autocvar_hud_panel_notify_icon_aspect);
1825
1826         int entry_count = bound(1, floor(NOTIFY_MAX_ENTRIES * size.y / size.x), NOTIFY_MAX_ENTRIES);
1827         float entry_height = size.y / entry_count;
1828
1829         float panel_width_half = size.x * 0.5;
1830         float icon_width_half = entry_height * icon_aspect / 2;
1831         float name_maxwidth = panel_width_half - icon_width_half - size.x * NOTIFY_ICON_MARGIN;
1832
1833         vector font_size = '0.5 0.5 0' * entry_height * autocvar_hud_panel_notify_fontsize;
1834         vector icon_size = (eX * icon_aspect + eY) * entry_height;
1835         vector icon_left = eX * (panel_width_half - icon_width_half);
1836         vector attacker_right = eX * name_maxwidth;
1837         vector victim_left = eX * (size.x - name_maxwidth);
1838
1839         vector attacker_pos, victim_pos, icon_pos;
1840         string attacker, victim, icon;
1841         int i, j, count, step, limit;
1842         float alpha;
1843
1844         if (autocvar_hud_panel_notify_flip)
1845         {
1846                 // Order items from the top down
1847                 i = 0;
1848                 step = +1;
1849                 limit = entry_count;
1850         }
1851         else
1852         {
1853                 // Order items from the bottom up
1854                 i = entry_count - 1;
1855                 step = -1;
1856                 limit = -1;
1857         }
1858
1859         for (j = notify_index, count = 0; i != limit; i += step, ++j, ++count)
1860         {
1861                 if(autocvar__hud_configure)
1862                 {
1863                         attacker = sprintf(_("Player %d"), count + 1);
1864                         victim = sprintf(_("Player %d"), count + 2);
1865                         icon = get_weaponinfo(min(WEP_FIRST + count * 2, WEP_LAST)).model2;
1866                         alpha = bound(0, 1.2 - count / entry_count, 1);
1867                 }
1868                 else
1869                 {
1870                         if (j == NOTIFY_MAX_ENTRIES)
1871                                 j = 0;
1872
1873                         if (notify_times[j] + fade_start > time)
1874                                 alpha = 1;
1875                         else if (fade_time != 0)
1876                         {
1877                                 alpha = bound(0, (notify_times[j] + fade_start + fade_time - time) / fade_time, 1);
1878                                 if (alpha == 0)
1879                                         break;
1880                         }
1881                         else
1882                                 break;
1883
1884                         attacker = notify_attackers[j];
1885                         victim = notify_victims[j];
1886                         icon = notify_icons[j];
1887                 }
1888
1889                 if (icon != "" && victim != "")
1890                 {
1891                         vector name_top = eY * (i * entry_height + 0.5 * (entry_height - font_size.y));
1892
1893                         icon_pos = pos + icon_left + eY * i * entry_height;
1894                         drawpic_aspect_skin(icon_pos, icon, icon_size, '1 1 1', panel_fg_alpha * alpha, DRAWFLAG_NORMAL);
1895
1896                         victim = textShortenToWidth(victim, name_maxwidth, font_size, stringwidth_colors);
1897                         victim_pos = pos + victim_left + name_top;
1898                         drawcolorcodedstring(victim_pos, victim, font_size, panel_fg_alpha * alpha, DRAWFLAG_NORMAL);
1899
1900                         if (attacker != "")
1901                         {
1902                                 attacker = textShortenToWidth(attacker, name_maxwidth, font_size, stringwidth_colors);
1903                                 attacker_pos = pos + attacker_right - eX * stringwidth(attacker, true, font_size) + name_top;
1904                                 drawcolorcodedstring(attacker_pos, attacker, font_size, panel_fg_alpha * alpha, DRAWFLAG_NORMAL);
1905                         }
1906                 }
1907         }
1908
1909         notify_count = count;
1910 }
1911
1912 // Timer (#5)
1913 //
1914 // TODO: macro
1915 string seconds_tostring(float sec)
1916 {
1917         float minutes;
1918         minutes = floor(sec / 60);
1919
1920         sec -= minutes * 60;
1921         return sprintf("%d:%02d", minutes, sec);
1922 }
1923
1924 void HUD_Timer(void)
1925 {
1926         if(!autocvar__hud_configure)
1927         {
1928                 if(!autocvar_hud_panel_timer) return;
1929         }
1930
1931         HUD_Panel_UpdateCvars();
1932
1933         draw_beginBoldFont();
1934
1935         vector pos, mySize;
1936         pos = panel_pos;
1937         mySize = panel_size;
1938
1939         HUD_Panel_DrawBg(1);
1940         if(panel_bg_padding)
1941         {
1942                 pos += '1 1 0' * panel_bg_padding;
1943                 mySize -= '2 2 0' * panel_bg_padding;
1944         }
1945
1946         string timer;
1947         float timelimit, elapsedTime, timeleft, minutesLeft;
1948
1949         timelimit = getstatf(STAT_TIMELIMIT);
1950
1951         timeleft = max(0, timelimit * 60 + getstatf(STAT_GAMESTARTTIME) - time);
1952         timeleft = ceil(timeleft);
1953
1954         minutesLeft = floor(timeleft / 60);
1955
1956         vector timer_color;
1957         if(minutesLeft >= 5 || warmup_stage || timelimit == 0) //don't use red or yellow in warmup or when there is no timelimit
1958                 timer_color = '1 1 1'; //white
1959         else if(minutesLeft >= 1)
1960                 timer_color = '1 1 0'; //yellow
1961         else
1962                 timer_color = '1 0 0'; //red
1963
1964         if (autocvar_hud_panel_timer_increment || timelimit == 0 || warmup_stage) {
1965                 if (time < getstatf(STAT_GAMESTARTTIME)) {
1966                         //while restart is still active, show 00:00
1967                         timer = seconds_tostring(0);
1968                 } else {
1969                         elapsedTime = floor(time - getstatf(STAT_GAMESTARTTIME)); //127
1970                         timer = seconds_tostring(elapsedTime);
1971                 }
1972         } else {
1973                 timer = seconds_tostring(timeleft);
1974         }
1975
1976         drawstring_aspect(pos, timer, mySize, timer_color, panel_fg_alpha, DRAWFLAG_NORMAL);
1977
1978         draw_endBoldFont();
1979 }
1980
1981 // Radar (#6)
1982 //
1983
1984 float HUD_Radar_Clickable()
1985 {
1986         return hud_panel_radar_mouse && !hud_panel_radar_temp_hidden;
1987 }
1988
1989 void HUD_Radar_Show_Maximized(float show,float clickable)
1990 {
1991         hud_panel_radar_maximized = show;
1992         hud_panel_radar_temp_hidden = 0;
1993         
1994         if ( show )
1995         {
1996                 if (clickable)
1997                 {
1998                         if(autocvar_hud_cursormode)
1999                                 setcursormode(1);
2000                         hud_panel_radar_mouse = 1; 
2001                 }
2002         }
2003         else if ( hud_panel_radar_mouse )
2004         {
2005                 hud_panel_radar_mouse = 0;
2006                 mouseClicked = 0;
2007                 if(autocvar_hud_cursormode)
2008                 if(!mv_active)
2009                         setcursormode(0);
2010         }
2011 }
2012 void HUD_Radar_Hide_Maximized()
2013 {
2014         HUD_Radar_Show_Maximized(false,false);
2015 }
2016
2017
2018 float HUD_Radar_InputEvent(float bInputType, float nPrimary, float nSecondary)
2019 {
2020         if(!hud_panel_radar_maximized || !hud_panel_radar_mouse || 
2021                 autocvar__hud_configure || mv_active)
2022                 return false;
2023
2024         if(bInputType == 3)
2025         {
2026                 mousepos_x = nPrimary;
2027                 mousepos_y = nSecondary;
2028                 return true;
2029         }
2030
2031         if(nPrimary == K_MOUSE1)
2032         {
2033                 if(bInputType == 0) // key pressed
2034                         mouseClicked |= S_MOUSE1;
2035                 else if(bInputType == 1) // key released
2036                         mouseClicked -= (mouseClicked & S_MOUSE1);
2037         }
2038         else if(nPrimary == K_MOUSE2)
2039         {
2040                 if(bInputType == 0) // key pressed
2041                         mouseClicked |= S_MOUSE2;
2042                 else if(bInputType == 1) // key released
2043                         mouseClicked -= (mouseClicked & S_MOUSE2);
2044         }
2045         else if ( nPrimary == K_ESCAPE && bInputType == 0 )
2046         {
2047                 HUD_Radar_Hide_Maximized();
2048         }
2049         else
2050         {
2051                 // allow console/use binds to work without hiding the map
2052                 string con_keys;
2053                 float keys;
2054                 float i;
2055                 con_keys = strcat(findkeysforcommand("toggleconsole", 0)," ",findkeysforcommand("+use", 0)) ;
2056                 keys = tokenize(con_keys); // findkeysforcommand returns data for this
2057                 for (i = 0; i < keys; ++i)
2058                 {
2059                         if(nPrimary == stof(argv(i)))
2060                                 return false;
2061                 }
2062                 
2063                 if ( getstati(STAT_HEALTH) <= 0 )
2064                 {
2065                         // Show scoreboard
2066                         if ( bInputType < 2 )
2067                         {
2068                                 con_keys = findkeysforcommand("+showscores", 0);
2069                                 keys = tokenize(con_keys);
2070                                 for (i = 0; i < keys; ++i)
2071                                 {
2072                                         if ( nPrimary == stof(argv(i)) )
2073                                         {
2074                                                 hud_panel_radar_temp_hidden = bInputType == 0;
2075                                                 return false;
2076                                         }
2077                                 }
2078                         }
2079                 }
2080                 else if ( bInputType == 0 )
2081                         HUD_Radar_Hide_Maximized();
2082                 
2083                 return false;
2084         }
2085
2086         return true;
2087 }
2088
2089 void HUD_Radar_Mouse()
2090 {
2091         if ( !hud_panel_radar_mouse ) return;
2092         if(mv_active) return;
2093         
2094         if ( intermission )
2095         {
2096                 HUD_Radar_Hide_Maximized();
2097                 return;
2098         }
2099         
2100         if(mouseClicked & S_MOUSE2)
2101         {
2102                 HUD_Radar_Hide_Maximized();
2103                 return;
2104         }
2105         
2106         if(!autocvar_hud_cursormode)
2107         {
2108                 mousepos = mousepos + getmousepos() * autocvar_menu_mouse_speed;
2109
2110                 mousepos_x = bound(0, mousepos_x, vid_conwidth);
2111                 mousepos_y = bound(0, mousepos_y, vid_conheight);
2112         }
2113
2114         HUD_Panel_UpdateCvars();
2115         
2116         
2117         panel_size = autocvar_hud_panel_radar_maximized_size;
2118         panel_size_x = bound(0.2, panel_size_x, 1) * vid_conwidth;
2119         panel_size_y = bound(0.2, panel_size_y, 1) * vid_conheight;
2120         panel_pos_x = (vid_conwidth - panel_size_x) / 2;
2121         panel_pos_y = (vid_conheight - panel_size_y) / 2;
2122                 
2123         if(mouseClicked & S_MOUSE1)
2124         {
2125                 // click outside
2126                 if ( mousepos_x < panel_pos_x || mousepos_x > panel_pos_x + panel_size_x ||
2127                          mousepos_y < panel_pos_y || mousepos_y > panel_pos_y + panel_size_y )
2128                 {
2129                         HUD_Radar_Hide_Maximized();
2130                         return;
2131                 }
2132                 vector pos = teamradar_texcoord_to_3dcoord(teamradar_2dcoord_to_texcoord(mousepos),view_origin_z);
2133                 localcmd(sprintf("cmd ons_spawn %f %f %f",pos_x,pos_y,pos_z));
2134                 
2135                 HUD_Radar_Hide_Maximized();
2136                 return;
2137         }
2138         
2139
2140         const vector cursor_size = '32 32 0';
2141         drawpic(mousepos-'8 4 0', strcat("gfx/menu/", autocvar_menu_skin, "/cursor.tga"), cursor_size, '1 1 1', 0.8, DRAWFLAG_NORMAL);
2142 }
2143
2144 void HUD_Radar(void)
2145 {
2146         if (!autocvar__hud_configure)
2147         {
2148                 if (hud_panel_radar_maximized)
2149                 {
2150                         if (!hud_draw_maximized) return;
2151                 }
2152                 else
2153                 {
2154                         if (autocvar_hud_panel_radar == 0) return;
2155                         if (autocvar_hud_panel_radar != 2 && !teamplay) return;
2156                         if(radar_panel_modified)
2157                         {
2158                                 panel.update_time = time; // forces reload of panel attributes
2159                                 radar_panel_modified = false;
2160                         }
2161                 }
2162         }
2163
2164         if ( hud_panel_radar_temp_hidden )
2165                 return;
2166
2167         HUD_Panel_UpdateCvars();
2168
2169         float f = 0;
2170
2171         if (hud_panel_radar_maximized && !autocvar__hud_configure)
2172         {
2173                 panel_size = autocvar_hud_panel_radar_maximized_size;
2174                 panel_size.x = bound(0.2, panel_size.x, 1) * vid_conwidth;
2175                 panel_size.y = bound(0.2, panel_size.y, 1) * vid_conheight;
2176                 panel_pos.x = (vid_conwidth - panel_size.x) / 2;
2177                 panel_pos.y = (vid_conheight - panel_size.y) / 2;
2178
2179                 string panel_bg;
2180                 panel_bg = strcat(hud_skin_path, "/border_default"); // always use the default border when maximized
2181                 if(precache_pic(panel_bg) == "")
2182                         panel_bg = "gfx/hud/default/border_default"; // fallback
2183                 if(!radar_panel_modified && panel_bg != panel.current_panel_bg)
2184                         radar_panel_modified = true;
2185                 if(panel.current_panel_bg)
2186                         strunzone(panel.current_panel_bg);
2187                 panel.current_panel_bg = strzone(panel_bg);
2188
2189                 switch(hud_panel_radar_maximized_zoommode)
2190                 {
2191                         default:
2192                         case 0:
2193                                 f = current_zoomfraction;
2194                                 break;
2195                         case 1:
2196                                 f = 1 - current_zoomfraction;
2197                                 break;
2198                         case 2:
2199                                 f = 0;
2200                                 break;
2201                         case 3:
2202                                 f = 1;
2203                                 break;
2204                 }
2205
2206                 switch(hud_panel_radar_maximized_rotation)
2207                 {
2208                         case 0:
2209                                 teamradar_angle = view_angles.y - 90;
2210                                 break;
2211                         default:
2212                                 teamradar_angle = 90 * hud_panel_radar_maximized_rotation;
2213                                 break;
2214                 }
2215         }
2216         if (!hud_panel_radar_maximized && !autocvar__hud_configure)
2217         {
2218                 switch(hud_panel_radar_zoommode)
2219                 {
2220                         default:
2221                         case 0:
2222                                 f = current_zoomfraction;
2223                                 break;
2224                         case 1:
2225                                 f = 1 - current_zoomfraction;
2226                                 break;
2227                         case 2:
2228                                 f = 0;
2229                                 break;
2230                         case 3:
2231                                 f = 1;
2232                                 break;
2233                 }
2234
2235                 switch(hud_panel_radar_rotation)
2236                 {
2237                         case 0:
2238                                 teamradar_angle = view_angles.y - 90;
2239                                 break;
2240                         default:
2241                                 teamradar_angle = 90 * hud_panel_radar_rotation;
2242                                 break;
2243                 }
2244         }
2245
2246         vector pos, mySize;
2247         pos = panel_pos;
2248         mySize = panel_size;
2249
2250         HUD_Panel_DrawBg(1);
2251         if(panel_bg_padding)
2252         {
2253                 pos += '1 1 0' * panel_bg_padding;
2254                 mySize -= '2 2 0' * panel_bg_padding;
2255         }
2256
2257         int color2;
2258         entity tm;
2259         float scale2d, normalsize, bigsize;
2260
2261         teamradar_origin2d = pos + 0.5 * mySize;
2262         teamradar_size2d = mySize;
2263
2264         if(minimapname == "")
2265                 return;
2266
2267         teamradar_loadcvars();
2268
2269         scale2d = vlen_maxnorm2d(mi_picmax - mi_picmin);
2270         teamradar_size2d = mySize;
2271
2272         teamradar_extraclip_mins = teamradar_extraclip_maxs = '0 0 0'; // we always center
2273
2274         // pixels per world qu to match the teamradar_size2d_x range in the longest dimension
2275         if((hud_panel_radar_rotation == 0 && !hud_panel_radar_maximized) || (hud_panel_radar_maximized_rotation == 0 && hud_panel_radar_maximized))
2276         {
2277                 // max-min distance must fit the radar in any rotation
2278                 bigsize = vlen_minnorm2d(teamradar_size2d) * scale2d / (1.05 * vlen2d(mi_scale));
2279         }
2280         else
2281         {
2282                 vector c0, c1, c2, c3, span;
2283                 c0 = rotate(mi_min, teamradar_angle * DEG2RAD);
2284                 c1 = rotate(mi_max, teamradar_angle * DEG2RAD);
2285                 c2 = rotate('1 0 0' * mi_min.x + '0 1 0' * mi_max.y, teamradar_angle * DEG2RAD);
2286                 c3 = rotate('1 0 0' * mi_max.x + '0 1 0' * mi_min.y, teamradar_angle * DEG2RAD);
2287                 span = '0 0 0';
2288                 span.x = max(c0_x, c1_x, c2_x, c3_x) - min(c0_x, c1_x, c2_x, c3_x);
2289                 span.y = max(c0_y, c1_y, c2_y, c3_y) - min(c0_y, c1_y, c2_y, c3_y);
2290
2291                 // max-min distance must fit the radar in x=x, y=y
2292                 bigsize = min(
2293                         teamradar_size2d.x * scale2d / (1.05 * span.x),
2294                         teamradar_size2d.y * scale2d / (1.05 * span.y)
2295                 );
2296         }
2297
2298         normalsize = vlen_maxnorm2d(teamradar_size2d) * scale2d / hud_panel_radar_scale;
2299         if(bigsize > normalsize)
2300                 normalsize = bigsize;
2301
2302         teamradar_size =
2303                   f * bigsize
2304                 + (1 - f) * normalsize;
2305         teamradar_origin3d_in_texcoord = teamradar_3dcoord_to_texcoord(
2306                   f * mi_center
2307                 + (1 - f) * view_origin);
2308
2309         drawsetcliparea(
2310                 pos.x,
2311                 pos.y,
2312                 mySize.x,
2313                 mySize.y
2314         );
2315
2316         draw_teamradar_background(hud_panel_radar_foreground_alpha);
2317
2318         for(tm = world; (tm = find(tm, classname, "radarlink")); )
2319                 draw_teamradar_link(tm.origin, tm.velocity, tm.team);
2320
2321         vector coord;
2322         vector brightcolor;
2323         for(tm = world; (tm = findflags(tm, teamradar_icon, 0xFFFFFF)); )
2324         {
2325                 if ( hud_panel_radar_mouse )
2326                 if ( tm.health > 0 )
2327                 if ( tm.team == myteam+1 )
2328                 {
2329                         coord = teamradar_texcoord_to_2dcoord(teamradar_3dcoord_to_texcoord(tm.origin));
2330                         if ( vlen(mousepos-coord) < 8 )
2331                         {
2332                                 brightcolor_x = min(1,tm.teamradar_color_x*1.5);
2333                                 brightcolor_y = min(1,tm.teamradar_color_y*1.5);
2334                                 brightcolor_z = min(1,tm.teamradar_color_z*1.5);
2335                                 drawpic(coord - '8 8 0', "gfx/teamradar_icon_glow", '16 16 0', brightcolor, panel_fg_alpha, 0);
2336                         }
2337                 }
2338
2339                 draw_teamradar_icon(tm.origin, tm.teamradar_icon, tm, tm.teamradar_color, panel_fg_alpha);
2340         }
2341         for(tm = world; (tm = find(tm, classname, "entcs_receiver")); )
2342         {
2343                 color2 = GetPlayerColor(tm.sv_entnum);
2344                 //if(color == NUM_SPECTATOR || color == color2)
2345                         draw_teamradar_player(tm.origin, tm.angles, Team_ColorRGB(color2));
2346         }
2347         draw_teamradar_player(view_origin, view_angles, '1 1 1');
2348
2349         drawresetcliparea();
2350
2351         if ( hud_panel_radar_mouse )
2352         {                       
2353                 string message = "Click to select teleport destination";
2354
2355                 if ( getstati(STAT_HEALTH) <= 0 )
2356                 {
2357                         message = "Click to select spawn location";
2358                 }
2359
2360                 drawcolorcodedstring(pos + '0.5 0 0' * (mySize_x - stringwidth(message, true, hud_fontsize)) - '0 1 0' * hud_fontsize_y * 2,
2361                                                          message, hud_fontsize, hud_panel_radar_foreground_alpha, DRAWFLAG_NORMAL);
2362
2363                 hud_panel_radar_bottom = pos_y + mySize_y + hud_fontsize_y;
2364         }
2365 }
2366
2367 // Score (#7)
2368 //
2369 void HUD_UpdatePlayerTeams();
2370 void HUD_Score_Rankings(vector pos, vector mySize, entity me)
2371 {
2372         float score;
2373         entity tm = world, pl;
2374         int SCOREPANEL_MAX_ENTRIES = 6;
2375         float SCOREPANEL_ASPECTRATIO = 2;
2376         int entries = bound(1, floor(SCOREPANEL_MAX_ENTRIES * mySize.y/mySize.x * SCOREPANEL_ASPECTRATIO), SCOREPANEL_MAX_ENTRIES);
2377         vector fontsize = '1 1 0' * (mySize.y/entries);
2378
2379         vector rgb, score_color;
2380         rgb = '1 1 1';
2381         score_color = '1 1 1';
2382
2383         float name_size = mySize.x*0.75;
2384         float spacing_size = mySize.x*0.04;
2385         const float highlight_alpha = 0.2;
2386         int i = 0, first_pl = 0;
2387         bool me_printed = false;
2388         string s;
2389         if (autocvar__hud_configure)
2390         {
2391                 float players_per_team = 0;
2392                 if (team_count)
2393                 {
2394                         // show team scores in the first line
2395                         float score_size = mySize.x / team_count;
2396                         players_per_team = max(2, ceil((entries - 1) / team_count));
2397                         for(i=0; i<team_count; ++i) {
2398                                 if (i == floor((entries - 2) / players_per_team) || (entries == 1 && i == 0))
2399                                         HUD_Panel_DrawHighlight(pos + eX * score_size * i, eX * score_size + eY * fontsize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
2400                                 drawstring_aspect(pos + eX * score_size * i, ftos(175 - 23*i), eX * score_size + eY * fontsize.y, Team_ColorRGB(ColorByTeam(i)) * 0.8, panel_fg_alpha, DRAWFLAG_NORMAL);
2401                         }
2402                         first_pl = 1;
2403                         pos.y += fontsize.y;
2404                 }
2405                 score = 10 + SCOREPANEL_MAX_ENTRIES * 3;
2406                 for (i=first_pl; i<entries; ++i)
2407                 {
2408                         //simulate my score is lower than all displayed players,
2409                         //so that I don't appear at all showing pure rankings.
2410                         //This is to better show the difference between the 2 ranking views
2411                         if (i == entries-1 && autocvar_hud_panel_score_rankings == 1)
2412                         {
2413                                 rgb = '1 1 0';
2414                                 drawfill(pos, eX * mySize.x + eY * fontsize.y, rgb, highlight_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
2415                                 s = GetPlayerName(player_localnum);
2416                                 score = 7;
2417                         }
2418                         else
2419                         {
2420                                 s = sprintf(_("Player %d"), i + 1 - first_pl);
2421                                 score -= 3;
2422                         }
2423
2424                         if (team_count)
2425                                 score_color = Team_ColorRGB(ColorByTeam(floor((i - first_pl) / players_per_team))) * 0.8;
2426                         s = textShortenToWidth(s, name_size, fontsize, stringwidth_colors);
2427                         drawcolorcodedstring(pos + eX * (name_size - stringwidth(s, true, fontsize)), s, fontsize, panel_fg_alpha, DRAWFLAG_NORMAL);
2428                         drawstring(pos + eX * (name_size + spacing_size), ftos(score), fontsize, score_color, panel_fg_alpha, DRAWFLAG_NORMAL);
2429                         pos.y += fontsize.y;
2430                 }
2431                 return;
2432         }
2433
2434         if (!scoreboard_fade_alpha) // the scoreboard too calls HUD_UpdatePlayerTeams
2435                 HUD_UpdatePlayerTeams();
2436         if (team_count)
2437         {
2438                 // show team scores in the first line
2439                 float score_size = mySize.x / team_count;
2440                 for(tm = teams.sort_next; tm; tm = tm.sort_next) {
2441                         if(tm.team == NUM_SPECTATOR)
2442                                 continue;
2443                         if (tm.team == myteam)
2444                                 drawfill(pos + eX * score_size * i, eX * score_size + eY * fontsize.y, '1 1 1', highlight_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
2445                         drawstring_aspect(pos + eX * score_size * i, ftos(tm.(teamscores[ts_primary])), eX * score_size + eY * fontsize.y, Team_ColorRGB(tm.team) * 0.8, panel_fg_alpha, DRAWFLAG_NORMAL);
2446                         ++i;
2447                 }
2448                 first_pl = 1;
2449                 pos.y += fontsize.y;
2450                 tm = teams.sort_next;
2451         }
2452         i = first_pl;
2453
2454         do
2455         for (pl = players.sort_next; pl && i<entries; pl = pl.sort_next)
2456         {
2457                 if ((team_count && pl.team != tm.team) || pl.team == NUM_SPECTATOR)
2458                         continue;
2459
2460                 if (i == entries-1 && !me_printed && pl != me)
2461                 if (autocvar_hud_panel_score_rankings == 1 && spectatee_status != -1)
2462                 {
2463                         for (pl = me.sort_next; pl; pl = pl.sort_next)
2464                                 if (pl.team != NUM_SPECTATOR)
2465                                         break;
2466
2467                         if (pl)
2468                                 rgb = '1 1 0'; //not last but not among the leading players: yellow
2469                         else
2470                                 rgb = '1 0 0'; //last: red
2471                         pl = me;
2472                 }
2473
2474                 if (pl == me)
2475                 {
2476                         if (i == first_pl)
2477                                 rgb = '0 1 0'; //first: green
2478                         me_printed = true;
2479                         drawfill(pos, eX * mySize.x + eY * fontsize.y, rgb, highlight_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
2480                 }
2481                 if (team_count)
2482                         score_color = Team_ColorRGB(pl.team) * 0.8;
2483                 s = textShortenToWidth(GetPlayerName(pl.sv_entnum), name_size, fontsize, stringwidth_colors);
2484                 drawcolorcodedstring(pos + eX * (name_size - stringwidth(s, true, fontsize)), s, fontsize, panel_fg_alpha, DRAWFLAG_NORMAL);
2485                 drawstring(pos + eX * (name_size + spacing_size), ftos(pl.(scores[ps_primary])), fontsize, score_color, panel_fg_alpha, DRAWFLAG_NORMAL);
2486                 pos.y += fontsize.y;
2487                 ++i;
2488         }
2489         while (i<entries && team_count && (tm = tm.sort_next) && (tm.team != NUM_SPECTATOR || (tm = tm.sort_next)));
2490 }
2491
2492 void HUD_Score(void)
2493 {
2494         if(!autocvar__hud_configure)
2495         {
2496                 if(!autocvar_hud_panel_score) return;
2497                 if(spectatee_status == -1 && (gametype == MAPINFO_TYPE_RACE || gametype == MAPINFO_TYPE_CTS)) return;
2498         }
2499
2500         HUD_Panel_UpdateCvars();
2501         vector pos, mySize;
2502         pos = panel_pos;
2503         mySize = panel_size;
2504
2505         HUD_Panel_DrawBg(1);
2506         if(panel_bg_padding)
2507         {
2508                 pos += '1 1 0' * panel_bg_padding;
2509                 mySize -= '2 2 0' * panel_bg_padding;
2510         }
2511
2512         float score, distribution = 0;
2513         string sign;
2514         vector distribution_color;
2515         entity tm, pl, me;
2516
2517         me = playerslots[current_player];
2518
2519         if((scores_flags[ps_primary] & SFL_TIME) && !teamplay) { // race/cts record display on HUD
2520                 string timer, distrtimer;
2521
2522                 pl = players.sort_next;
2523                 if(pl == me)
2524                         pl = pl.sort_next;
2525                 if(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)
2526                         if(pl.scores[ps_primary] == 0)
2527                                 pl = world;
2528
2529                 score = me.(scores[ps_primary]);
2530                 timer = TIME_ENCODED_TOSTRING(score);
2531
2532                 draw_beginBoldFont();
2533                 if (pl && ((!(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)) || score)) {
2534                         // distribution display
2535                         distribution = me.(scores[ps_primary]) - pl.(scores[ps_primary]);
2536
2537                         distrtimer = ftos_decimals(fabs(distribution/pow(10, TIME_DECIMALS)), TIME_DECIMALS);
2538
2539                         if (distribution <= 0) {
2540                                 distribution_color = '0 1 0';
2541                                 sign = "-";
2542                         }
2543                         else {
2544                                 distribution_color = '1 0 0';
2545                                 sign = "+";
2546                         }
2547                         drawstring_aspect(pos + eX * 0.75 * mySize.x, strcat(sign, distrtimer), eX * 0.25 * mySize.x + eY * (1/3) * mySize.y, distribution_color, panel_fg_alpha, DRAWFLAG_NORMAL);
2548                 }
2549                 // race record display
2550                 if (distribution <= 0)
2551                         HUD_Panel_DrawHighlight(pos, eX * 0.75 * mySize.x + eY * mySize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
2552                 drawstring_aspect(pos, timer, eX * 0.75 * mySize.x + eY * mySize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
2553                 draw_endBoldFont();
2554         } else if (!teamplay) { // non-teamgames
2555                 if ((spectatee_status == -1 && !autocvar__hud_configure) || autocvar_hud_panel_score_rankings)
2556                 {
2557                         HUD_Score_Rankings(pos, mySize, me);
2558                         return;
2559                 }
2560                 // me vector := [team/connected frags id]
2561                 pl = players.sort_next;
2562                 if(pl == me)
2563                         pl = pl.sort_next;
2564
2565                 if(autocvar__hud_configure)
2566                         distribution = 42;
2567                 else if(pl)
2568                         distribution = me.(scores[ps_primary]) - pl.(scores[ps_primary]);
2569                 else
2570                         distribution = 0;
2571
2572                 score = me.(scores[ps_primary]);
2573                 if(autocvar__hud_configure)
2574                         score = 123;
2575
2576                 if(distribution >= 5)
2577                         distribution_color = eY;
2578                 else if(distribution >= 0)
2579                         distribution_color = '1 1 1';
2580                 else if(distribution >= -5)
2581                         distribution_color = '1 1 0';
2582                 else
2583                         distribution_color = eX;
2584
2585                 string distribution_str;
2586                 distribution_str = ftos(distribution);
2587                 draw_beginBoldFont();
2588                 if (distribution >= 0)
2589                 {
2590                         if (distribution > 0)
2591                                 distribution_str = strcat("+", distribution_str);
2592                         HUD_Panel_DrawHighlight(pos, eX * 0.75 * mySize.x + eY * mySize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
2593                 }
2594                 drawstring_aspect(pos, ftos(score), eX * 0.75 * mySize.x + eY * mySize.y, distribution_color, panel_fg_alpha, DRAWFLAG_NORMAL);
2595                 drawstring_aspect(pos + eX * 0.75 * mySize.x, distribution_str, eX * 0.25 * mySize.x + eY * (1/3) * mySize.y, distribution_color, panel_fg_alpha, DRAWFLAG_NORMAL);
2596                 draw_endBoldFont();
2597         } else { // teamgames
2598                 float row, column, rows = 0, columns = 0;
2599                 vector offset = '0 0 0';
2600                 vector score_pos, score_size; //for scores other than myteam
2601                 if(autocvar_hud_panel_score_rankings)
2602                 {
2603                         HUD_Score_Rankings(pos, mySize, me);
2604                         return;
2605                 }
2606                 if(spectatee_status == -1)
2607                 {
2608                         rows = HUD_GetRowCount(team_count, mySize, 3);
2609                         columns = ceil(team_count/rows);
2610                         score_size = eX * mySize.x*(1/columns) + eY * mySize.y*(1/rows);
2611
2612                         float newSize;
2613                         if(score_size.x/score_size.y > 3)
2614                         {
2615                                 newSize = 3 * score_size.y;
2616                                 offset.x = score_size.x - newSize;
2617                                 pos.x += offset.x/2;
2618                                 score_size.x = newSize;
2619                         }
2620                         else
2621                         {
2622                                 newSize = 1/3 * score_size.x;
2623                                 offset.y = score_size.y - newSize;
2624                                 pos.y += offset.y/2;
2625                                 score_size.y = newSize;
2626                         }
2627                 }
2628                 else
2629                         score_size = eX * mySize.x*(1/4) + eY * mySize.y*(1/3);
2630
2631                 float max_fragcount;
2632                 max_fragcount = -99;
2633                 draw_beginBoldFont();
2634                 row = column = 0;
2635                 for(tm = teams.sort_next; tm; tm = tm.sort_next) {
2636                         if(tm.team == NUM_SPECTATOR)
2637                                 continue;
2638                         score = tm.(teamscores[ts_primary]);
2639                         if(autocvar__hud_configure)
2640                                 score = 123;
2641
2642                         if (score > max_fragcount)
2643                                 max_fragcount = score;
2644
2645                         if (spectatee_status == -1)
2646                         {
2647                                 score_pos = pos + eX * column * (score_size.x + offset.x) + eY * row * (score_size.y + offset.y);
2648                                 if (max_fragcount == score)
2649                                         HUD_Panel_DrawHighlight(score_pos, score_size, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
2650                                 drawstring_aspect(score_pos, ftos(score), score_size, Team_ColorRGB(tm.team) * 0.8, panel_fg_alpha, DRAWFLAG_NORMAL);
2651                                 ++row;
2652                                 if(row >= rows)
2653                                 {
2654                                         row = 0;
2655                                         ++column;
2656                                 }
2657                         }
2658                         else if(tm.team == myteam) {
2659                                 if (max_fragcount == score)
2660                                         HUD_Panel_DrawHighlight(pos, eX * 0.75 * mySize.x + eY * mySize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
2661                                 drawstring_aspect(pos, ftos(score), eX * 0.75 * mySize.x + eY * mySize.y, Team_ColorRGB(tm.team) * 0.8, panel_fg_alpha, DRAWFLAG_NORMAL);
2662                         } else {
2663                                 if (max_fragcount == score)
2664                                         HUD_Panel_DrawHighlight(pos + eX * 0.75 * mySize.x + eY * (1/3) * rows * mySize.y, score_size, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
2665                                 drawstring_aspect(pos + eX * 0.75 * mySize.x + eY * (1/3) * rows * mySize.y, ftos(score), score_size, Team_ColorRGB(tm.team) * 0.8, panel_fg_alpha, DRAWFLAG_NORMAL);
2666                                 ++rows;
2667                         }
2668                 }
2669                 draw_endBoldFont();
2670         }
2671 }
2672
2673 // Race timer (#8)
2674 //
2675 void HUD_RaceTimer (void)
2676 {
2677         if(!autocvar__hud_configure)
2678         {
2679                 if(!autocvar_hud_panel_racetimer) return;
2680                 if(!(gametype == MAPINFO_TYPE_RACE || gametype == MAPINFO_TYPE_CTS)) return;
2681                 if(spectatee_status == -1) return;
2682         }
2683
2684         HUD_Panel_UpdateCvars();
2685
2686         vector pos, mySize;
2687         pos = panel_pos;
2688         mySize = panel_size;
2689
2690         HUD_Panel_DrawBg(1);
2691         if(panel_bg_padding)
2692         {
2693                 pos += '1 1 0' * panel_bg_padding;
2694                 mySize -= '2 2 0' * panel_bg_padding;
2695         }
2696
2697         // always force 4:1 aspect
2698         vector newSize = '0 0 0';
2699         if(mySize.x/mySize.y > 4)
2700         {
2701                 newSize.x = 4 * mySize.y;
2702                 newSize.y = mySize.y;
2703
2704                 pos.x = pos.x + (mySize.x - newSize.x) / 2;
2705         }
2706         else
2707         {
2708                 newSize.y = 1/4 * mySize.x;
2709                 newSize.x = mySize.x;
2710
2711                 pos.y = pos.y + (mySize.y - newSize.y) / 2;
2712         }
2713         mySize = newSize;
2714
2715         float a, t;
2716         string s, forcetime;
2717
2718         if(autocvar__hud_configure)
2719         {
2720                 s = "0:13:37";
2721                 draw_beginBoldFont();
2722                 drawstring(pos + eX * 0.5 * mySize.x - '0.5 0 0' * stringwidth(s, false, '0.60 0.60 0' * mySize.y), s, '0.60 0.60 0' * mySize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
2723                 draw_endBoldFont();
2724                 s = _("^1Intermediate 1 (+15.42)");
2725                 drawcolorcodedstring(pos + eX * 0.5 * mySize.x - '0.5 0 0' * stringwidth(s, true, '1 1 0' * 0.20 * mySize.y) + eY * 0.60 * mySize.y, s, '1 1 0' * 0.20 * mySize.y, panel_fg_alpha, DRAWFLAG_NORMAL);
2726                 s = sprintf(_("^1PENALTY: %.1f (%s)"), 2, "missing a checkpoint");
2727                 drawcolorcodedstring(pos + eX * 0.5 * mySize.x - '0.5 0 0' * stringwidth(s, true, '1 1 0' * 0.20 * mySize.y) + eY * 0.80 * mySize.y, s, '1 1 0' * 0.20 * mySize.y, panel_fg_alpha, DRAWFLAG_NORMAL);
2728         }
2729         else if(race_checkpointtime)
2730         {
2731                 a = bound(0, 2 - (time - race_checkpointtime), 1);
2732                 s = "";
2733                 forcetime = "";
2734                 if(a > 0) // just hit a checkpoint?
2735                 {
2736                         if(race_checkpoint != 254)
2737                         {
2738                                 if(race_time && race_previousbesttime)
2739                                         s = MakeRaceString(race_checkpoint, TIME_DECODE(race_time) - TIME_DECODE(race_previousbesttime), 0, 0, race_previousbestname);
2740                                 else
2741                                         s = MakeRaceString(race_checkpoint, 0, -1, 0, race_previousbestname);
2742                                 if(race_time)
2743                                         forcetime = TIME_ENCODED_TOSTRING(race_time);
2744                         }
2745                 }
2746                 else
2747                 {
2748                         if(race_laptime && race_nextbesttime && race_nextcheckpoint != 254)
2749                         {
2750                                 a = bound(0, 2 - ((race_laptime + TIME_DECODE(race_nextbesttime)) - (time + TIME_DECODE(race_penaltyaccumulator))), 1);
2751                                 if(a > 0) // next one?
2752                                 {
2753                                         s = MakeRaceString(race_nextcheckpoint, (time + TIME_DECODE(race_penaltyaccumulator)) - race_laptime, TIME_DECODE(race_nextbesttime), 0, race_nextbestname);
2754                                 }
2755                         }
2756                 }
2757
2758                 if(s != "" && a > 0)
2759                 {
2760                         drawcolorcodedstring(pos + eX * 0.5 * mySize.x - '0.5 0 0' * stringwidth(s, true, '1 1 0' * 0.2 * mySize.y) + eY * 0.6 * mySize.y, s, '1 1 0' * 0.2 * mySize.y, panel_fg_alpha * a, DRAWFLAG_NORMAL);
2761                 }
2762
2763                 if(race_penaltytime)
2764                 {
2765                         a = bound(0, 2 - (time - race_penaltyeventtime), 1);
2766                         if(a > 0)
2767                         {
2768                                 s = sprintf(_("^1PENALTY: %.1f (%s)"), race_penaltytime * 0.1, race_penaltyreason);
2769                                 drawcolorcodedstring(pos + eX * 0.5 * mySize.x - '0.5 0 0' * stringwidth(s, true, '1 1 0' * 0.2 * mySize.y) + eY * 0.8 * mySize.y, s, '1 1 0' * 0.2 * mySize.y, panel_fg_alpha * a, DRAWFLAG_NORMAL);
2770                         }
2771                 }
2772
2773                 draw_beginBoldFont();
2774
2775                 if(forcetime != "")
2776                 {
2777                         a = bound(0, (time - race_checkpointtime) / 0.5, 1);
2778                         drawstring_expanding(pos + eX * 0.5 * mySize.x - '0.5 0 0' * stringwidth(forcetime, false, '1 1 0' * 0.6 * mySize.y), forcetime, '1 1 0' * 0.6 * mySize.y, '1 1 1', panel_fg_alpha, 0, a);
2779                 }
2780                 else
2781                         a = 1;
2782
2783                 if(race_laptime && race_checkpoint != 255)
2784                 {
2785                         s = TIME_ENCODED_TOSTRING(TIME_ENCODE(time + TIME_DECODE(race_penaltyaccumulator) - race_laptime));
2786                         drawstring(pos + eX * 0.5 * mySize.x - '0.5 0 0' * stringwidth(s, false, '0.6 0.6 0' * mySize.y), s, '0.6 0.6 0' * mySize.y, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
2787                 }
2788
2789                 draw_endBoldFont();
2790         }
2791         else
2792         {
2793                 if(race_mycheckpointtime)
2794                 {
2795                         a = bound(0, 2 - (time - race_mycheckpointtime), 1);
2796                         s = MakeRaceString(race_mycheckpoint, TIME_DECODE(race_mycheckpointdelta), -(race_mycheckpointenemy == ""), race_mycheckpointlapsdelta, race_mycheckpointenemy);
2797                         drawcolorcodedstring(pos + eX * 0.5 * mySize.x - '0.5 0 0' * stringwidth(s, true, '1 1 0' * 0.2 * mySize.y) + eY * 0.6 * mySize.y, s, '1 1 0' * 0.2 * mySize.y, panel_fg_alpha * a, DRAWFLAG_NORMAL);
2798                 }
2799                 if(race_othercheckpointtime && race_othercheckpointenemy != "")
2800                 {
2801                         a = bound(0, 2 - (time - race_othercheckpointtime), 1);
2802                         s = MakeRaceString(race_othercheckpoint, -TIME_DECODE(race_othercheckpointdelta), -(race_othercheckpointenemy == ""), race_othercheckpointlapsdelta, race_othercheckpointenemy);
2803                         drawcolorcodedstring(pos + eX * 0.5 * mySize.x - '0.5 0 0' * stringwidth(s, true, '1 1 0' * 0.2 * mySize.y) + eY * 0.6 * mySize.y, s, '1 1 0' * 0.2 * mySize.y, panel_fg_alpha * a, DRAWFLAG_NORMAL);
2804                 }
2805
2806                 if(race_penaltytime && !race_penaltyaccumulator)
2807                 {
2808                         t = race_penaltytime * 0.1 + race_penaltyeventtime;
2809                         a = bound(0, (1 + t - time), 1);
2810                         if(a > 0)
2811                         {
2812                                 if(time < t)
2813                                         s = sprintf(_("^1PENALTY: %.1f (%s)"), (t - time) * 0.1, race_penaltyreason);
2814                                 else
2815                                         s = sprintf(_("^2PENALTY: %.1f (%s)"), 0, race_penaltyreason);
2816                                 drawcolorcodedstring(pos + eX * 0.5 * mySize.x - '0.5 0 0' * stringwidth(s, true, '1 1 0' * 0.2 * mySize.y) + eY * 0.6 * mySize.y, s, '1 1 0' * 0.2 * mySize.y, panel_fg_alpha * a, DRAWFLAG_NORMAL);
2817                         }
2818                 }
2819         }
2820 }
2821
2822 // Vote window (#9)
2823 //
2824
2825 void HUD_Vote(void)
2826 {
2827         if(autocvar_cl_allow_uid2name == -1 && (gametype == MAPINFO_TYPE_CTS || gametype == MAPINFO_TYPE_RACE || (serverflags & SERVERFLAG_PLAYERSTATS)))
2828         {
2829                 vote_active = 1;
2830                 if (autocvar__hud_configure)
2831                 {
2832                         vote_yescount = 0;
2833                         vote_nocount = 0;
2834                         print(_("^1You must answer before entering hud configure mode\n"));
2835                         cvar_set("_hud_configure", "0");
2836                 }
2837                 if(vote_called_vote)
2838                         strunzone(vote_called_vote);
2839                 vote_called_vote = strzone(_("^2Name ^7instead of \"^1Anonymous player^7\" in stats"));
2840                 uid2name_dialog = 1;
2841         }
2842
2843         if(!autocvar__hud_configure)
2844         {
2845                 if(!autocvar_hud_panel_vote) return;
2846
2847                 panel_fg_alpha = autocvar_hud_panel_fg_alpha;
2848                 panel_bg_alpha_str = autocvar_hud_panel_vote_bg_alpha;
2849
2850                 if(panel_bg_alpha_str == "") {
2851                         panel_bg_alpha_str = ftos(autocvar_hud_panel_bg_alpha);
2852                 }
2853                 panel_bg_alpha = stof(panel_bg_alpha_str);
2854         }
2855         else
2856         {
2857                 vote_yescount = 3;
2858                 vote_nocount = 2;
2859                 vote_needed = 4;
2860         }
2861
2862         string s;
2863         float a;
2864         if(vote_active != vote_prev) {
2865                 vote_change = time;
2866                 vote_prev = vote_active;
2867         }
2868
2869         if(vote_active || autocvar__hud_configure)
2870                 vote_alpha = bound(0, (time - vote_change) * 2, 1);
2871         else
2872                 vote_alpha = bound(0, 1 - (time - vote_change) * 2, 1);
2873
2874         if(!vote_alpha)
2875                 return;
2876
2877         HUD_Panel_UpdateCvars();
2878
2879         if(uid2name_dialog)
2880         {
2881                 panel_pos = eX * 0.3 * vid_conwidth + eY * 0.1 * vid_conheight;
2882                 panel_size = eX * 0.4 * vid_conwidth + eY * 0.3 * vid_conheight;
2883         }
2884
2885     // these must be below above block
2886         vector pos, mySize;
2887         pos = panel_pos;
2888         mySize = panel_size;
2889
2890         a = vote_alpha * (vote_highlighted ? autocvar_hud_panel_vote_alreadyvoted_alpha : 1);
2891         HUD_Panel_DrawBg(a);
2892         a = panel_fg_alpha * a;
2893
2894         if(panel_bg_padding)
2895         {
2896                 pos += '1 1 0' * panel_bg_padding;
2897                 mySize -= '2 2 0' * panel_bg_padding;
2898         }
2899
2900         // always force 3:1 aspect
2901         vector newSize = '0 0 0';
2902         if(mySize.x/mySize.y > 3)
2903         {
2904                 newSize.x = 3 * mySize.y;
2905                 newSize.y = mySize.y;
2906
2907                 pos.x = pos.x + (mySize.x - newSize.x) / 2;
2908         }
2909         else
2910         {
2911                 newSize.y = 1/3 * mySize.x;
2912                 newSize.x = mySize.x;
2913
2914                 pos.y = pos.y + (mySize.y - newSize.y) / 2;
2915         }
2916         mySize = newSize;
2917
2918         s = _("A vote has been called for:");
2919         if(uid2name_dialog)
2920                 s = _("Allow servers to store and display your name?");
2921         drawstring_aspect(pos, s, eX * mySize.x + eY * (2/8) * mySize.y, '1 1 1', a, DRAWFLAG_NORMAL);
2922         s = textShortenToWidth(vote_called_vote, mySize.x, '1 1 0' * mySize.y * (1/8), stringwidth_colors);
2923         if(autocvar__hud_configure)
2924                 s = _("^1Configure the HUD");
2925         drawcolorcodedstring_aspect(pos + eY * (2/8) * mySize.y, s, eX * mySize.x + eY * (1.75/8) * mySize.y, a, DRAWFLAG_NORMAL);
2926
2927         // print the yes/no counts
2928     s = sprintf(_("Yes (%s): %d"), getcommandkey("vyes", "vyes"), vote_yescount);
2929         drawstring_aspect(pos + eY * (4/8) * mySize.y, s, eX * 0.5 * mySize.x + eY * (1.5/8) * mySize.y, '0 1 0', a, DRAWFLAG_NORMAL);
2930     s = sprintf(_("No (%s): %d"), getcommandkey("vno", "vno"), vote_nocount);
2931         drawstring_aspect(pos + eX * 0.5 * mySize.x + eY * (4/8) * mySize.y, s, eX * 0.5 * mySize.x + eY * (1.5/8) * mySize.y, '1 0 0', a, DRAWFLAG_NORMAL);
2932
2933         // draw the progress bar backgrounds
2934         drawpic_skin(pos + eY * (5/8) * mySize.y, "voteprogress_back", eX * mySize.x + eY * (3/8) * mySize.y, '1 1 1', a, DRAWFLAG_NORMAL);
2935
2936         // draw the highlights
2937         if(vote_highlighted == 1) {
2938                 drawsetcliparea(pos.x, pos.y, mySize.x * 0.5, mySize.y);
2939                 drawpic_skin(pos + eY * (5/8) * mySize.y, "voteprogress_voted", eX * mySize.x + eY * (3/8) * mySize.y, '1 1 1', a, DRAWFLAG_NORMAL);
2940         }
2941         else if(vote_highlighted == -1) {
2942                 drawsetcliparea(pos.x + 0.5 * mySize.x, pos.y, mySize.x * 0.5, mySize.y);
2943                 drawpic_skin(pos + eY * (5/8) * mySize.y, "voteprogress_voted", eX * mySize.x + eY * (3/8) * mySize.y, '1 1 1', a, DRAWFLAG_NORMAL);
2944         }
2945
2946         // draw the progress bars
2947         if(vote_yescount && vote_needed)
2948         {
2949                 drawsetcliparea(pos.x, pos.y, mySize.x * 0.5 * (vote_yescount/vote_needed), mySize.y);
2950                 drawpic_skin(pos + eY * (5/8) * mySize.y, "voteprogress_prog", eX * mySize.x + eY * (3/8) * mySize.y, '1 1 1', a, DRAWFLAG_NORMAL);
2951         }
2952
2953         if(vote_nocount && vote_needed)
2954         {
2955                 drawsetcliparea(pos.x + mySize.x - mySize.x * 0.5 * (vote_nocount/vote_needed), pos.y, mySize.x * 0.5, mySize.y);
2956                 drawpic_skin(pos + eY * (5/8) * mySize.y, "voteprogress_prog", eX * mySize.x + eY * (3/8) * mySize.y, '1 1 1', a, DRAWFLAG_NORMAL);
2957         }
2958
2959         drawresetcliparea();
2960 }
2961
2962 // Mod icons panel (#10)
2963 //
2964
2965 bool mod_active; // is there any active mod icon?
2966
2967 void DrawCAItem(vector myPos, vector mySize, float aspect_ratio, int layout, int i)
2968 {
2969         int stat = -1;
2970         string pic = "";
2971         vector color = '0 0 0';
2972         switch(i)
2973         {
2974                 case 0:
2975                         stat = getstati(STAT_REDALIVE);
2976                         pic = "player_red.tga";
2977                         color = '1 0 0';
2978                         break;
2979                 case 1:
2980                         stat = getstati(STAT_BLUEALIVE);
2981                         pic = "player_blue.tga";
2982                         color = '0 0 1';
2983                         break;
2984                 case 2:
2985                         stat = getstati(STAT_YELLOWALIVE);
2986                         pic = "player_yellow.tga";
2987                         color = '1 1 0';
2988                         break;
2989                 default:
2990                 case 3:
2991                         stat = getstati(STAT_PINKALIVE);
2992                         pic = "player_pink.tga";
2993                         color = '1 0 1';
2994                         break;
2995         }
2996
2997         if(mySize.x/mySize.y > aspect_ratio)
2998         {
2999                 i = aspect_ratio * mySize.y;
3000                 myPos.x = myPos.x + (mySize.x - i) / 2;
3001                 mySize.x = i;
3002         }
3003         else
3004         {
3005                 i = 1/aspect_ratio * mySize.x;
3006                 myPos.y = myPos.y + (mySize.y - i) / 2;
3007                 mySize.y = i;
3008         }
3009
3010         if(layout)
3011         {
3012                 drawpic_aspect_skin(myPos, pic, eX * 0.7 * mySize.x + eY * mySize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3013                 drawstring_aspect(myPos + eX * 0.7 * mySize.x, ftos(stat), eX * 0.3 * mySize.x + eY * mySize.y, color, panel_fg_alpha, DRAWFLAG_NORMAL);
3014         }
3015         else
3016                 drawstring_aspect(myPos, ftos(stat), mySize, color, panel_fg_alpha, DRAWFLAG_NORMAL);
3017 }
3018
3019 // Clan Arena and Freeze Tag HUD modicons
3020 void HUD_Mod_CA(vector myPos, vector mySize)
3021 {
3022         mod_active = 1; // required in each mod function that always shows something
3023
3024         int layout;
3025         if(gametype == MAPINFO_TYPE_CA)
3026                 layout = autocvar_hud_panel_modicons_ca_layout;
3027         else //if(gametype == MAPINFO_TYPE_FREEZETAG)
3028                 layout = autocvar_hud_panel_modicons_freezetag_layout;
3029         int rows, columns;
3030         float aspect_ratio;
3031         aspect_ratio = (layout) ? 2 : 1;
3032         rows = HUD_GetRowCount(team_count, mySize, aspect_ratio);
3033         columns = ceil(team_count/rows);
3034
3035         int i;
3036         float row = 0, column = 0;
3037         vector pos, itemSize;
3038         itemSize = eX * mySize.x*(1/columns) + eY * mySize.y*(1/rows);
3039         for(i=0; i<team_count; ++i)
3040         {
3041                 pos = myPos + eX * column * itemSize.x + eY * row * itemSize.y;
3042
3043                 DrawCAItem(pos, itemSize, aspect_ratio, layout, i);
3044
3045                 ++row;
3046                 if(row >= rows)
3047                 {
3048                         row = 0;
3049                         ++column;
3050                 }
3051         }
3052 }
3053
3054 // CTF HUD modicon section
3055 float redflag_prevframe, blueflag_prevframe; // status during previous frame
3056 int redflag_prevstatus, blueflag_prevstatus; // last remembered status
3057 float redflag_statuschange_time, blueflag_statuschange_time; // time when the status changed
3058
3059 void HUD_Mod_CTF_Reset(void)
3060 {
3061         redflag_prevstatus = blueflag_prevstatus = redflag_prevframe = blueflag_prevframe = redflag_statuschange_time = blueflag_statuschange_time = 0;
3062 }
3063
3064 void HUD_Mod_CTF(vector pos, vector mySize)
3065 {
3066         vector redflag_pos, blueflag_pos;
3067         vector flag_size;
3068         float f; // every function should have that
3069
3070         int redflag, blueflag; // current status
3071         float redflag_statuschange_elapsedtime, blueflag_statuschange_elapsedtime; // time since the status changed
3072         int stat_items;
3073
3074         stat_items = getstati(STAT_ITEMS, 0, 24);
3075         redflag = (stat_items/IT_RED_FLAG_TAKEN) & 3;
3076         blueflag = (stat_items/IT_BLUE_FLAG_TAKEN) & 3;
3077
3078         if(redflag || blueflag)
3079                 mod_active = 1;
3080         else
3081                 mod_active = 0;
3082
3083         if(autocvar__hud_configure)
3084         {
3085                 redflag = 1;
3086                 blueflag = 2;
3087         }
3088
3089         // when status CHANGES, set old status into prevstatus and current status into status
3090         if (redflag != redflag_prevframe)
3091         {
3092                 redflag_statuschange_time = time;
3093                 redflag_prevstatus = redflag_prevframe;
3094                 redflag_prevframe = redflag;
3095         }
3096
3097         if (blueflag != blueflag_prevframe)
3098         {
3099                 blueflag_statuschange_time = time;
3100                 blueflag_prevstatus = blueflag_prevframe;
3101                 blueflag_prevframe = blueflag;
3102         }
3103
3104         redflag_statuschange_elapsedtime = time - redflag_statuschange_time;
3105         blueflag_statuschange_elapsedtime = time - blueflag_statuschange_time;
3106
3107         float BLINK_FACTOR = 0.15;
3108         float BLINK_BASE = 0.85;
3109         // note:
3110         //   RMS = sqrt(BLINK_BASE^2 + 0.5 * BLINK_FACTOR^2)
3111         // thus
3112         //   BLINK_BASE = sqrt(RMS^2 - 0.5 * BLINK_FACTOR^2)
3113         // ensure RMS == 1
3114         float BLINK_FREQ = 5; // circle frequency, = 2*pi*frequency in hertz
3115
3116         string red_icon, red_icon_prevstatus;
3117         float red_alpha, red_alpha_prevstatus;
3118         red_alpha = red_alpha_prevstatus = 1;
3119         switch(redflag) {
3120                 case 1: red_icon = "flag_red_taken"; break;
3121                 case 2: red_icon = "flag_red_lost"; break;
3122                 case 3: red_icon = "flag_red_carrying"; red_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
3123                 default:
3124                         if((stat_items & IT_CTF_SHIELDED) && (myteam == NUM_TEAM_2))
3125                                 red_icon = "flag_red_shielded";
3126                         else
3127                                 red_icon = string_null;
3128                         break;
3129         }
3130         switch(redflag_prevstatus) {
3131                 case 1: red_icon_prevstatus = "flag_red_taken"; break;
3132                 case 2: red_icon_prevstatus = "flag_red_lost"; break;
3133                 case 3: red_icon_prevstatus = "flag_red_carrying"; red_alpha_prevstatus = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
3134                 default:
3135                         if(redflag == 3)
3136                                 red_icon_prevstatus = "flag_red_carrying"; // make it more visible
3137                         else if((stat_items & IT_CTF_SHIELDED) && (myteam == NUM_TEAM_2))
3138                                 red_icon_prevstatus = "flag_red_shielded";
3139                         else
3140                                 red_icon_prevstatus = string_null;
3141                         break;
3142         }
3143
3144         string blue_icon, blue_icon_prevstatus;
3145         float blue_alpha, blue_alpha_prevstatus;
3146         blue_alpha = blue_alpha_prevstatus = 1;
3147         switch(blueflag) {
3148                 case 1: blue_icon = "flag_blue_taken"; break;
3149                 case 2: blue_icon = "flag_blue_lost"; break;
3150                 case 3: blue_icon = "flag_blue_carrying"; blue_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
3151                 default:
3152                         if((stat_items & IT_CTF_SHIELDED) && (myteam == NUM_TEAM_1))
3153                                 blue_icon = "flag_blue_shielded";
3154                         else
3155                                 blue_icon = string_null;
3156                         break;
3157         }
3158         switch(blueflag_prevstatus) {
3159                 case 1: blue_icon_prevstatus = "flag_blue_taken"; break;
3160                 case 2: blue_icon_prevstatus = "flag_blue_lost"; break;
3161                 case 3: blue_icon_prevstatus = "flag_blue_carrying"; blue_alpha_prevstatus = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
3162                 default:
3163                         if(blueflag == 3)
3164                                 blue_icon_prevstatus = "flag_blue_carrying"; // make it more visible
3165                         else if((stat_items & IT_CTF_SHIELDED) && (myteam == NUM_TEAM_1))
3166                                 blue_icon_prevstatus = "flag_blue_shielded";
3167                         else
3168                                 blue_icon_prevstatus = string_null;
3169                         break;
3170         }
3171
3172         if(mySize.x > mySize.y) {
3173                 if (myteam == NUM_TEAM_1) { // always draw own flag on left
3174                         redflag_pos = pos;
3175                         blueflag_pos = pos + eX * 0.5 * mySize.x;
3176                 } else {
3177                         blueflag_pos = pos;
3178                         redflag_pos = pos + eX * 0.5 * mySize.x;
3179                 }
3180                 flag_size = eX * 0.5 * mySize.x + eY * mySize.y;
3181         } else {
3182                 if (myteam == NUM_TEAM_1) { // always draw own flag on left
3183                         redflag_pos = pos;
3184                         blueflag_pos = pos + eY * 0.5 * mySize.y;
3185                 } else {
3186                         blueflag_pos = pos;
3187                         redflag_pos = pos + eY * 0.5 * mySize.y;
3188                 }
3189                 flag_size = eY * 0.5 * mySize.y + eX * mySize.x;
3190         }
3191
3192         f = bound(0, redflag_statuschange_elapsedtime*2, 1);
3193         if(red_icon_prevstatus && f < 1)
3194                 drawpic_aspect_skin_expanding(redflag_pos, red_icon_prevstatus, flag_size, '1 1 1', panel_fg_alpha * red_alpha_prevstatus, DRAWFLAG_NORMAL, f);
3195         if(red_icon)
3196                 drawpic_aspect_skin(redflag_pos, red_icon, flag_size, '1 1 1', panel_fg_alpha * red_alpha * f, DRAWFLAG_NORMAL);
3197
3198         f = bound(0, blueflag_statuschange_elapsedtime*2, 1);
3199         if(blue_icon_prevstatus && f < 1)
3200                 drawpic_aspect_skin_expanding(blueflag_pos, blue_icon_prevstatus, flag_size, '1 1 1', panel_fg_alpha * blue_alpha_prevstatus, DRAWFLAG_NORMAL, f);
3201         if(blue_icon)
3202                 drawpic_aspect_skin(blueflag_pos, blue_icon, flag_size, '1 1 1', panel_fg_alpha * blue_alpha * f, DRAWFLAG_NORMAL);
3203 }
3204
3205 // Keyhunt HUD modicon section
3206 vector KH_SLOTS[4];
3207
3208 void HUD_Mod_KH(vector pos, vector mySize)
3209 {
3210         mod_active = 1; // keyhunt should never hide the mod icons panel
3211
3212         // Read current state
3213
3214         int state = getstati(STAT_KH_KEYS);
3215         int i, key_state;
3216         int all_keys, team1_keys, team2_keys, team3_keys, team4_keys, dropped_keys, carrying_keys;
3217         all_keys = team1_keys = team2_keys = team3_keys = team4_keys = dropped_keys = carrying_keys = 0;
3218
3219         for(i = 0; i < 4; ++i)
3220         {
3221                 key_state = (bitshift(state, i * -5) & 31) - 1;
3222
3223                 if(key_state == -1)
3224                         continue;
3225
3226                 if(key_state == 30)
3227                 {
3228                         ++carrying_keys;
3229                         key_state = myteam;
3230                 }
3231
3232                 switch(key_state)
3233                 {
3234                         case NUM_TEAM_1: ++team1_keys; break;
3235                         case NUM_TEAM_2: ++team2_keys; break;
3236                         case NUM_TEAM_3: ++team3_keys; break;
3237                         case NUM_TEAM_4: ++team4_keys; break;
3238                         case 29: ++dropped_keys; break;
3239                 }
3240
3241                 ++all_keys;
3242         }
3243
3244         // Calculate slot measurements
3245
3246         vector slot_size;
3247
3248         if(all_keys == 4 && mySize.x * 0.5 < mySize.y && mySize.y * 0.5 < mySize.x)
3249         {
3250                 // Quadratic arrangement
3251                 slot_size = eX * mySize.x * 0.5 + eY * mySize.y * 0.5;
3252                 KH_SLOTS[0] = pos;
3253                 KH_SLOTS[1] = pos + eX * slot_size.x;
3254                 KH_SLOTS[2] = pos + eY * slot_size.y;
3255                 KH_SLOTS[3] = pos + eX * slot_size.x + eY * slot_size.y;
3256         }
3257         else
3258         {
3259                 if(mySize.x > mySize.y)
3260                 {
3261                         // Horizontal arrangement
3262                         slot_size = eX * mySize.x / all_keys + eY * mySize.y;
3263                         for(i = 0; i < all_keys; ++i)
3264                                 KH_SLOTS[i] = pos + eX * slot_size.x * i;
3265                 }
3266                 else
3267                 {
3268                         // Vertical arrangement
3269                         slot_size = eX * mySize.x + eY * mySize.y / all_keys;
3270                         for(i = 0; i < all_keys; ++i)
3271                                 KH_SLOTS[i] = pos + eY * slot_size.y * i;
3272                 }
3273         }
3274
3275         // Make icons blink in case of RUN HERE
3276
3277         float blink = 0.6 + sin(2*M_PI*time) / 2.5; // Oscillate between 0.2 and 1
3278         float alpha;
3279         alpha = 1;
3280
3281         if(carrying_keys)
3282                 switch(myteam)
3283                 {
3284                         case NUM_TEAM_1: if(team1_keys == all_keys) alpha = blink; break;
3285                         case NUM_TEAM_2: if(team2_keys == all_keys) alpha = blink; break;
3286                         case NUM_TEAM_3: if(team3_keys == all_keys) alpha = blink; break;
3287                         case NUM_TEAM_4: if(team4_keys == all_keys) alpha = blink; break;
3288                 }
3289
3290         // Draw icons
3291
3292         i = 0;
3293
3294         while(team1_keys--)
3295                 if(myteam == NUM_TEAM_1 && carrying_keys)
3296                 {
3297                         drawpic_aspect_skin(KH_SLOTS[i++], "kh_red_carrying", slot_size, '1 1 1', alpha, DRAWFLAG_NORMAL);
3298                         --carrying_keys;
3299                 }
3300                 else
3301                         drawpic_aspect_skin(KH_SLOTS[i++], "kh_red_taken", slot_size, '1 1 1', alpha, DRAWFLAG_NORMAL);
3302
3303         while(team2_keys--)
3304                 if(myteam == NUM_TEAM_2 && carrying_keys)
3305                 {
3306                         drawpic_aspect_skin(KH_SLOTS[i++], "kh_blue_carrying", slot_size, '1 1 1', alpha, DRAWFLAG_NORMAL);
3307                         --carrying_keys;
3308                 }
3309                 else
3310                         drawpic_aspect_skin(KH_SLOTS[i++], "kh_blue_taken", slot_size, '1 1 1', alpha, DRAWFLAG_NORMAL);
3311
3312         while(team3_keys--)
3313                 if(myteam == NUM_TEAM_3 && carrying_keys)
3314                 {
3315                         drawpic_aspect_skin(KH_SLOTS[i++], "kh_yellow_carrying", slot_size, '1 1 1', alpha, DRAWFLAG_NORMAL);
3316                         --carrying_keys;
3317                 }
3318                 else
3319                         drawpic_aspect_skin(KH_SLOTS[i++], "kh_yellow_taken", slot_size, '1 1 1', alpha, DRAWFLAG_NORMAL);
3320
3321         while(team4_keys--)
3322                 if(myteam == NUM_TEAM_4 && carrying_keys)
3323                 {
3324                         drawpic_aspect_skin(KH_SLOTS[i++], "kh_pink_carrying", slot_size, '1 1 1', alpha, DRAWFLAG_NORMAL);
3325                         --carrying_keys;
3326                 }
3327                 else
3328                         drawpic_aspect_skin(KH_SLOTS[i++], "kh_pink_taken", slot_size, '1 1 1', alpha, DRAWFLAG_NORMAL);
3329
3330         while(dropped_keys--)
3331                 drawpic_aspect_skin(KH_SLOTS[i++], "kh_dropped", slot_size, '1 1 1', alpha, DRAWFLAG_NORMAL);
3332 }
3333
3334 // Keepaway HUD mod icon
3335 int kaball_prevstatus; // last remembered status
3336 float kaball_statuschange_time; // time when the status changed
3337
3338 // we don't need to reset for keepaway since it immediately
3339 // autocorrects prevstatus as to if the player has the ball or not
3340
3341 void HUD_Mod_Keepaway(vector pos, vector mySize)
3342 {
3343         mod_active = 1; // keepaway should always show the mod HUD
3344
3345         float BLINK_FACTOR = 0.15;
3346         float BLINK_BASE = 0.85;
3347         float BLINK_FREQ = 5;
3348         float kaball_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ);
3349
3350         int stat_items = getstati(STAT_ITEMS, 0, 24);
3351         int kaball = (stat_items/IT_KEY1) & 1;
3352
3353         if(kaball != kaball_prevstatus)
3354         {
3355                 kaball_statuschange_time = time;
3356                 kaball_prevstatus = kaball;
3357         }
3358
3359         vector kaball_pos, kaball_size;
3360
3361         if(mySize.x > mySize.y) {
3362                 kaball_pos = pos + eX * 0.25 * mySize.x;
3363                 kaball_size = eX * 0.5 * mySize.x + eY * mySize.y;
3364         } else {
3365                 kaball_pos = pos + eY * 0.25 * mySize.y;
3366                 kaball_size = eY * 0.5 * mySize.y + eX * mySize.x;
3367         }
3368
3369         float kaball_statuschange_elapsedtime = time - kaball_statuschange_time;
3370         float f = bound(0, kaball_statuschange_elapsedtime*2, 1);
3371
3372         if(kaball_prevstatus && f < 1)
3373                 drawpic_aspect_skin_expanding(kaball_pos, "keepawayball_carrying", kaball_size, '1 1 1', panel_fg_alpha * kaball_alpha, DRAWFLAG_NORMAL, f);
3374
3375         if(kaball)
3376                 drawpic_aspect_skin(pos, "keepawayball_carrying", eX * mySize.x + eY * mySize.y, '1 1 1', panel_fg_alpha * kaball_alpha * f, DRAWFLAG_NORMAL);
3377 }
3378
3379
3380 // Nexball HUD mod icon
3381 void HUD_Mod_NexBall(vector pos, vector mySize)
3382 {
3383         float nb_pb_starttime, dt, p;
3384         int stat_items;
3385
3386         stat_items = getstati(STAT_ITEMS, 0, 24);
3387         nb_pb_starttime = getstatf(STAT_NB_METERSTART);
3388
3389         if (stat_items & IT_KEY1)
3390                 mod_active = 1;
3391         else
3392                 mod_active = 0;
3393
3394         //Manage the progress bar if any
3395         if (nb_pb_starttime > 0)
3396         {
3397                 dt = (time - nb_pb_starttime) % nb_pb_period;
3398                 // one period of positive triangle
3399                 p = 2 * dt / nb_pb_period;
3400                 if (p > 1)
3401                         p = 2 - p;
3402
3403                 HUD_Panel_DrawProgressBar(pos, mySize, "progressbar", p, (mySize.x <= mySize.y), 0, autocvar_hud_progressbar_nexball_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
3404         }
3405
3406         if (stat_items & IT_KEY1)
3407                 drawpic_aspect_skin(pos, "nexball_carrying", eX * mySize.x + eY * mySize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3408 }
3409
3410 // Race/CTS HUD mod icons
3411 float crecordtime_prev; // last remembered crecordtime
3412 float crecordtime_change_time; // time when crecordtime last changed
3413 float srecordtime_prev; // last remembered srecordtime
3414 float srecordtime_change_time; // time when srecordtime last changed
3415
3416 float race_status_time;
3417 int race_status_prev;
3418 string race_status_name_prev;
3419 void HUD_Mod_Race(vector pos, vector mySize)
3420 {
3421         mod_active = 1; // race should never hide the mod icons panel
3422         entity me;
3423         me = playerslots[player_localnum];
3424         float t, score;
3425         float f; // yet another function has this
3426         score = me.(scores[ps_primary]);
3427
3428         if(!(scores_flags[ps_primary] & SFL_TIME) || teamplay) // race/cts record display on HUD
3429                 return; // no records in the actual race
3430
3431         // clientside personal record
3432         string rr;
3433         if(gametype == MAPINFO_TYPE_CTS)
3434                 rr = CTS_RECORD;
3435         else
3436                 rr = RACE_RECORD;
3437         t = stof(db_get(ClientProgsDB, strcat(shortmapname, rr, "time")));
3438
3439         if(score && (score < t || !t)) {
3440                 db_put(ClientProgsDB, strcat(shortmapname, rr, "time"), ftos(score));
3441                 if(autocvar_cl_autodemo_delete_keeprecords)
3442                 {
3443                         f = autocvar_cl_autodemo_delete;
3444                         f &= ~1;
3445                         cvar_set("cl_autodemo_delete", ftos(f)); // don't delete demo with new record!
3446                 }
3447         }
3448
3449         if(t != crecordtime_prev) {
3450                 crecordtime_prev = t;
3451                 crecordtime_change_time = time;
3452         }
3453
3454         vector textPos, medalPos;
3455         float squareSize;
3456         if(mySize.x > mySize.y) {
3457                 // text on left side
3458                 squareSize = min(mySize.y, mySize.x/2);
3459                 textPos = pos + eX * 0.5 * max(0, mySize.x/2 - squareSize) + eY * 0.5 * (mySize.y - squareSize);
3460                 medalPos = pos + eX * 0.5 * max(0, mySize.x/2 - squareSize) + eX * 0.5 * mySize.x + eY * 0.5 * (mySize.y - squareSize);
3461         } else {
3462                 // text on top
3463                 squareSize = min(mySize.x, mySize.y/2);
3464                 textPos = pos + eY * 0.5 * max(0, mySize.y/2 - squareSize) + eX * 0.5 * (mySize.x - squareSize);
3465                 medalPos = pos + eY * 0.5 * max(0, mySize.y/2 - squareSize) + eY * 0.5 * mySize.y + eX * 0.5 * (mySize.x - squareSize);
3466         }
3467
3468         f = time - crecordtime_change_time;
3469
3470         if (f > 1) {
3471                 drawstring_aspect(textPos, _("Personal best"), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3472                 drawstring_aspect(textPos + eY * 0.25 * squareSize, TIME_ENCODED_TOSTRING(t), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3473         } else {
3474                 drawstring_aspect(textPos, _("Personal best"), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3475                 drawstring_aspect(textPos + eY * 0.25 * squareSize, TIME_ENCODED_TOSTRING(t), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3476                 drawstring_aspect_expanding(pos, _("Personal best"), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL, f);
3477                 drawstring_aspect_expanding(pos + eY * 0.25 * squareSize, TIME_ENCODED_TOSTRING(t), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL, f);
3478         }
3479
3480         // server record
3481         t = race_server_record;
3482         if(t != srecordtime_prev) {
3483                 srecordtime_prev = t;
3484                 srecordtime_change_time = time;
3485         }
3486         f = time - srecordtime_change_time;
3487
3488         if (f > 1) {
3489                 drawstring_aspect(textPos + eY * 0.5 * squareSize, _("Server best"), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3490                 drawstring_aspect(textPos + eY * 0.75 * squareSize, TIME_ENCODED_TOSTRING(t), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3491         } else {
3492                 drawstring_aspect(textPos + eY * 0.5 * squareSize, _("Server best"), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3493                 drawstring_aspect(textPos + eY * 0.75 * squareSize, TIME_ENCODED_TOSTRING(t), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3494                 drawstring_aspect_expanding(textPos + eY * 0.5 * squareSize, _("Server best"), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL, f);
3495                 drawstring_aspect_expanding(textPos + eY * 0.75 * squareSize, TIME_ENCODED_TOSTRING(t), eX * squareSize + eY * 0.25 * squareSize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL, f);
3496         }
3497
3498         if (race_status != race_status_prev || race_status_name != race_status_name_prev) {
3499                 race_status_time = time + 5;
3500                 race_status_prev = race_status;
3501                 if (race_status_name_prev)
3502                         strunzone(race_status_name_prev);
3503                 race_status_name_prev = strzone(race_status_name);
3504         }
3505
3506         // race "awards"
3507         float a;
3508         a = bound(0, race_status_time - time, 1);
3509
3510         string s;
3511         s = textShortenToWidth(race_status_name, squareSize, '1 1 0' * 0.1 * squareSize, stringwidth_colors);
3512
3513         float rank;
3514         if(race_status > 0)
3515                 rank = race_CheckName(race_status_name);
3516         else
3517                 rank = 0;
3518         string rankname;
3519         rankname = count_ordinal(rank);
3520
3521         vector namepos;
3522         namepos = medalPos + '0 0.8 0' * squareSize;
3523         vector rankpos;
3524         rankpos = medalPos + '0 0.15 0' * squareSize;
3525
3526         if(race_status == 0)
3527                 drawpic_aspect_skin(medalPos, "race_newfail", '1 1 0' * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
3528         else if(race_status == 1) {
3529                 drawpic_aspect_skin(medalPos + '0.1 0 0' * squareSize, "race_newtime", '1 1 0' * 0.8 * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
3530                 drawcolorcodedstring_aspect(namepos, s, '1 0.2 0' * squareSize, panel_fg_alpha * a, DRAWFLAG_NORMAL);
3531                 drawstring_aspect(rankpos, rankname, '1 0.15 0' * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
3532         } else if(race_status == 2) {
3533                 if(race_status_name == GetPlayerName(player_localnum) || !race_myrank || race_myrank < rank)
3534                         drawpic_aspect_skin(medalPos + '0.1 0 0' * squareSize, "race_newrankgreen", '1 1 0' * 0.8 * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
3535                 else
3536                         drawpic_aspect_skin(medalPos + '0.1 0 0' * squareSize, "race_newrankyellow", '1 1 0' * 0.8 * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
3537                 drawcolorcodedstring_aspect(namepos, s, '1 0.2 0' * squareSize, panel_fg_alpha * a, DRAWFLAG_NORMAL);
3538                 drawstring_aspect(rankpos, rankname, '1 0.15 0' * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
3539         } else if(race_status == 3) {
3540                 drawpic_aspect_skin(medalPos + '0.1 0 0' * squareSize, "race_newrecordserver", '1 1 0' * 0.8 * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
3541                 drawcolorcodedstring_aspect(namepos, s, '1 0.2 0' * squareSize, panel_fg_alpha * a, DRAWFLAG_NORMAL);
3542                 drawstring_aspect(rankpos, rankname, '1 0.15 0' * squareSize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
3543         }
3544
3545         if (race_status_time - time <= 0) {
3546                 race_status_prev = -1;
3547                 race_status = -1;
3548                 if(race_status_name)
3549                         strunzone(race_status_name);
3550                 race_status_name = string_null;
3551                 if(race_status_name_prev)
3552                         strunzone(race_status_name_prev);
3553                 race_status_name_prev = string_null;
3554         }
3555 }
3556
3557 void DrawDomItem(vector myPos, vector mySize, float aspect_ratio, int layout, int i)
3558 {
3559         float stat = -1;
3560         string pic = "";
3561         vector color = '0 0 0';
3562         switch(i)
3563         {
3564                 case 0:
3565                         stat = getstatf(STAT_DOM_PPS_RED);
3566                         pic = "dom_icon_red";
3567                         color = '1 0 0';
3568                         break;
3569                 case 1:
3570                         stat = getstatf(STAT_DOM_PPS_BLUE);
3571                         pic = "dom_icon_blue";
3572                         color = '0 0 1';
3573                         break;
3574                 case 2:
3575                         stat = getstatf(STAT_DOM_PPS_YELLOW);
3576                         pic = "dom_icon_yellow";
3577                         color = '1 1 0';
3578                         break;
3579                 default:
3580                 case 3:
3581                         stat = getstatf(STAT_DOM_PPS_PINK);
3582                         pic = "dom_icon_pink";
3583                         color = '1 0 1';
3584                         break;
3585         }
3586         float pps_ratio = stat / getstatf(STAT_DOM_TOTAL_PPS);
3587
3588         if(mySize.x/mySize.y > aspect_ratio)
3589         {
3590                 i = aspect_ratio * mySize.y;
3591                 myPos.x = myPos.x + (mySize.x - i) / 2;
3592                 mySize.x = i;
3593         }
3594         else
3595         {
3596                 i = 1/aspect_ratio * mySize.x;
3597                 myPos.y = myPos.y + (mySize.y - i) / 2;
3598                 mySize.y = i;
3599         }
3600
3601         if (layout) // show text too
3602         {
3603                 //draw the text
3604                 color *= 0.5 + pps_ratio * (1 - 0.5); // half saturated color at min, full saturated at max
3605                 if (layout == 2) // average pps
3606                         drawstring_aspect(myPos + eX * mySize.y, ftos_decimals(stat, 2), eX * (2/3) * mySize.x + eY * mySize.y, color, panel_fg_alpha, DRAWFLAG_NORMAL);
3607                 else // percentage of average pps
3608                         drawstring_aspect(myPos + eX * mySize.y, strcat( ftos(floor(pps_ratio*100 + 0.5)), "%" ), eX * (2/3) * mySize.x + eY * mySize.y, color, panel_fg_alpha, DRAWFLAG_NORMAL);
3609         }
3610
3611         //draw the icon
3612         drawpic_aspect_skin(myPos, pic, '1 1 0' * mySize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3613         if (stat > 0)
3614         {
3615                 drawsetcliparea(myPos.x, myPos.y + mySize.y * (1 - pps_ratio), mySize.y, mySize.y * pps_ratio);
3616                 drawpic_aspect_skin(myPos, strcat(pic, "-highlighted"), '1 1 0' * mySize.y, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3617                 drawresetcliparea();
3618         }
3619 }
3620
3621 void HUD_Mod_Dom(vector myPos, vector mySize)
3622 {
3623         mod_active = 1; // required in each mod function that always shows something
3624
3625         int layout = autocvar_hud_panel_modicons_dom_layout;
3626         int rows, columns;
3627         float aspect_ratio;
3628         aspect_ratio = (layout) ? 3 : 1;
3629         rows = HUD_GetRowCount(team_count, mySize, aspect_ratio);
3630         columns = ceil(team_count/rows);
3631
3632         int i;
3633         float row = 0, column = 0;
3634         vector pos, itemSize;
3635         itemSize = eX * mySize.x*(1/columns) + eY * mySize.y*(1/rows);
3636         for(i=0; i<team_count; ++i)
3637         {
3638                 pos = myPos + eX * column * itemSize.x + eY * row * itemSize.y;
3639
3640                 DrawDomItem(pos, itemSize, aspect_ratio, layout, i);
3641
3642                 ++row;
3643                 if(row >= rows)
3644                 {
3645                         row = 0;
3646                         ++column;
3647                 }
3648         }
3649 }
3650
3651 void HUD_ModIcons_SetFunc()
3652 {
3653         switch(gametype)
3654         {
3655                 case MAPINFO_TYPE_KEYHUNT:              HUD_ModIcons_GameType = HUD_Mod_KH; break;
3656                 case MAPINFO_TYPE_CTF:                  HUD_ModIcons_GameType = HUD_Mod_CTF; break;
3657                 case MAPINFO_TYPE_NEXBALL:              HUD_ModIcons_GameType = HUD_Mod_NexBall; break;
3658                 case MAPINFO_TYPE_CTS:
3659                 case MAPINFO_TYPE_RACE:         HUD_ModIcons_GameType = HUD_Mod_Race; break;
3660                 case MAPINFO_TYPE_CA:
3661                 case MAPINFO_TYPE_FREEZETAG:    HUD_ModIcons_GameType = HUD_Mod_CA; break;
3662                 case MAPINFO_TYPE_DOMINATION:   HUD_ModIcons_GameType = HUD_Mod_Dom; break;
3663                 case MAPINFO_TYPE_KEEPAWAY:     HUD_ModIcons_GameType = HUD_Mod_Keepaway; break;
3664         }
3665 }
3666
3667 int mod_prev; // previous state of mod_active to check for a change
3668 float mod_alpha;
3669 float mod_change; // "time" when mod_active changed
3670
3671 void HUD_ModIcons(void)
3672 {
3673         if(!autocvar__hud_configure)
3674         {
3675                 if(!autocvar_hud_panel_modicons) return;
3676                 if(!HUD_ModIcons_GameType) return;
3677         }
3678
3679         HUD_Panel_UpdateCvars();
3680
3681         draw_beginBoldFont();
3682
3683         if(mod_active != mod_prev) {
3684                 mod_change = time;
3685                 mod_prev = mod_active;
3686         }
3687
3688         if(mod_active || autocvar__hud_configure)
3689                 mod_alpha = bound(0, (time - mod_change) * 2, 1);
3690         else
3691                 mod_alpha = bound(0, 1 - (time - mod_change) * 2, 1);
3692
3693         if(mod_alpha)
3694                 HUD_Panel_DrawBg(mod_alpha);
3695
3696         if(panel_bg_padding)
3697         {
3698                 panel_pos += '1 1 0' * panel_bg_padding;
3699                 panel_size -= '2 2 0' * panel_bg_padding;
3700         }
3701
3702         if(autocvar__hud_configure)
3703                 HUD_Mod_CTF(panel_pos, panel_size);
3704         else
3705                 HUD_ModIcons_GameType(panel_pos, panel_size);
3706
3707         draw_endBoldFont();
3708 }
3709
3710 // Draw pressed keys (#11)
3711 //
3712 void HUD_PressedKeys(void)
3713 {
3714         if(!autocvar__hud_configure)
3715         {
3716                 if(!autocvar_hud_panel_pressedkeys) return;
3717                 if(spectatee_status <= 0 && autocvar_hud_panel_pressedkeys < 2) return;
3718         }
3719
3720         HUD_Panel_UpdateCvars();
3721         vector pos, mySize;
3722         pos = panel_pos;
3723         mySize = panel_size;
3724
3725         HUD_Panel_DrawBg(1);
3726         if(panel_bg_padding)
3727         {
3728                 pos += '1 1 0' * panel_bg_padding;
3729                 mySize -= '2 2 0' * panel_bg_padding;
3730         }
3731
3732         // force custom aspect
3733         float aspect = autocvar_hud_panel_pressedkeys_aspect;
3734         if(aspect)
3735         {
3736                 vector newSize = '0 0 0';
3737                 if(mySize.x/mySize.y > aspect)
3738                 {
3739                         newSize.x = aspect * mySize.y;
3740                         newSize.y = mySize.y;
3741
3742                         pos.x = pos.x + (mySize.x - newSize.x) / 2;
3743                 }
3744                 else
3745                 {
3746                         newSize.y = 1/aspect * mySize.x;
3747                         newSize.x = mySize.x;
3748
3749                         pos.y = pos.y + (mySize.y - newSize.y) / 2;
3750                 }
3751                 mySize = newSize;
3752         }
3753
3754         vector keysize;
3755         keysize = eX * mySize.x * (1/3.0) + eY * mySize.y * (1/(3.0 - !autocvar_hud_panel_pressedkeys_attack));
3756         float pressedkeys;
3757         pressedkeys = getstatf(STAT_PRESSED_KEYS);
3758
3759         if(autocvar_hud_panel_pressedkeys_attack)
3760         {
3761                 drawpic_aspect_skin(pos + eX * keysize.x * 0.5, ((pressedkeys & KEY_ATCK) ? "key_atck_inv.tga" : "key_atck.tga"), keysize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3762                 drawpic_aspect_skin(pos + eX * keysize.x * 1.5, ((pressedkeys & KEY_ATCK2) ? "key_atck_inv.tga" : "key_atck.tga"), keysize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3763                 pos.y += keysize.y;
3764         }
3765
3766         drawpic_aspect_skin(pos, ((pressedkeys & KEY_CROUCH) ? "key_crouch_inv.tga" : "key_crouch.tga"), keysize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3767         drawpic_aspect_skin(pos + eX * keysize.x, ((pressedkeys & KEY_FORWARD) ? "key_forward_inv.tga" : "key_forward.tga"), keysize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3768         drawpic_aspect_skin(pos + eX * keysize.x * 2, ((pressedkeys & KEY_JUMP) ? "key_jump_inv.tga" : "key_jump.tga"), keysize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3769         pos.y += keysize.y;
3770         drawpic_aspect_skin(pos, ((pressedkeys & KEY_LEFT) ? "key_left_inv.tga" : "key_left.tga"), keysize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3771         drawpic_aspect_skin(pos + eX * keysize.x, ((pressedkeys & KEY_BACKWARD) ? "key_backward_inv.tga" : "key_backward.tga"), keysize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3772         drawpic_aspect_skin(pos + eX * keysize.x * 2, ((pressedkeys & KEY_RIGHT) ? "key_right_inv.tga" : "key_right.tga"), keysize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
3773 }
3774
3775 // Handle chat as a panel (#12)
3776 //
3777 void HUD_Chat(void)
3778 {
3779         if(!autocvar__hud_configure)
3780         {
3781                 if (!autocvar_hud_panel_chat)
3782                 {
3783                         if (!autocvar_con_chatrect)
3784                                 cvar_set("con_chatrect", "0");
3785                         return;
3786                 }
3787                 if(autocvar__con_chat_maximized)
3788                 {
3789                         if(!hud_draw_maximized) return;
3790                 }
3791                 else if(chat_panel_modified)
3792                 {
3793                         panel.update_time = time; // forces reload of panel attributes
3794                         chat_panel_modified = false;
3795                 }
3796         }
3797
3798         HUD_Panel_UpdateCvars();
3799
3800         if(autocvar__con_chat_maximized && !autocvar__hud_configure) // draw at full screen height if maximized
3801         {
3802                 panel_pos.y = panel_bg_border;
3803                 panel_size.y = vid_conheight - panel_bg_border * 2;
3804                 if(panel.current_panel_bg == "0") // force a border when maximized
3805                 {
3806                         string panel_bg;
3807                         panel_bg = strcat(hud_skin_path, "/border_default");
3808                         if(precache_pic(panel_bg) == "")
3809                                 panel_bg = "gfx/hud/default/border_default";
3810                         if(panel.current_panel_bg)
3811                                 strunzone(panel.current_panel_bg);
3812                         panel.current_panel_bg = strzone(panel_bg);
3813                         chat_panel_modified = true;
3814                 }
3815                 panel_bg_alpha = max(0.75, panel_bg_alpha); // force an theAlpha of at least 0.75
3816         }
3817
3818         vector pos, mySize;
3819         pos = panel_pos;
3820         mySize = panel_size;
3821
3822         HUD_Panel_DrawBg(1);
3823
3824         if(panel_bg_padding)
3825         {
3826                 pos += '1 1 0' * panel_bg_padding;
3827                 mySize -= '2 2 0' * panel_bg_padding;
3828         }
3829
3830         if (!autocvar_con_chatrect)
3831                 cvar_set("con_chatrect", "1");
3832
3833         cvar_set("con_chatrect_x", ftos(pos.x/vid_conwidth));
3834         cvar_set("con_chatrect_y", ftos(pos.y/vid_conheight));
3835
3836         cvar_set("con_chatwidth", ftos(mySize.x/vid_conwidth));
3837         cvar_set("con_chat", ftos(floor(mySize.y/autocvar_con_chatsize - 0.5)));
3838
3839         if(autocvar__hud_configure)
3840         {
3841                 vector chatsize;
3842                 chatsize = '1 1 0' * autocvar_con_chatsize;
3843                 cvar_set("con_chatrect_x", "9001"); // over 9000, we'll fake it instead for more control over theAlpha and such
3844                 float i, a;
3845                 for(i = 0; i < autocvar_con_chat; ++i)
3846                 {
3847                         if(i == autocvar_con_chat - 1)
3848                                 a = panel_fg_alpha;
3849                         else
3850                                 a = panel_fg_alpha * floor(((i + 1) * 7 + autocvar_con_chattime)/45);
3851                         drawcolorcodedstring(pos, textShortenToWidth(_("^3Player^7: This is the chat area."), mySize.x, chatsize, stringwidth_colors), chatsize, a, DRAWFLAG_NORMAL);
3852                         pos.y += chatsize.y;
3853                 }
3854         }
3855 }
3856
3857 // Engine info panel (#13)
3858 //
3859 float prevfps;
3860 float prevfps_time;
3861 int framecounter;
3862
3863 float frametimeavg;
3864 float frametimeavg1; // 1 frame ago
3865 float frametimeavg2; // 2 frames ago
3866 void HUD_EngineInfo(void)
3867 {
3868         if(!autocvar__hud_configure)
3869         {
3870                 if(!autocvar_hud_panel_engineinfo) return;
3871         }
3872
3873         HUD_Panel_UpdateCvars();
3874         vector pos, mySize;
3875         pos = panel_pos;
3876         mySize = panel_size;
3877
3878         HUD_Panel_DrawBg(1);
3879         if(panel_bg_padding)
3880         {
3881                 pos += '1 1 0' * panel_bg_padding;
3882                 mySize -= '2 2 0' * panel_bg_padding;
3883         }
3884
3885         float currentTime = gettime(GETTIME_REALTIME);
3886         if(cvar("hud_panel_engineinfo_framecounter_exponentialmovingaverage"))
3887         {
3888                 float currentframetime = currentTime - prevfps_time;
3889                 frametimeavg = (frametimeavg + frametimeavg1 + frametimeavg2 + currentframetime)/4; // average three frametimes into framecounter for slightly more stable fps readings :P
3890                 frametimeavg2 = frametimeavg1;
3891                 frametimeavg1 = frametimeavg;
3892
3893                 float weight;
3894                 weight = cvar("hud_panel_engineinfo_framecounter_exponentialmovingaverage_new_weight");
3895                 if(currentframetime > 0.0001) // filter out insane values which sometimes seem to occur and throw off the average? If you are getting 10,000 fps or more, then you don't need a framerate counter.
3896                 {
3897                         if(fabs(prevfps - (1/frametimeavg)) > prevfps * cvar("hud_panel_engineinfo_framecounter_exponentialmovingaverage_instantupdate_change_threshold")) // if there was a big jump in fps, just force prevfps at current (1/currentframetime) to make big updates instant
3898                                 prevfps = (1/currentframetime);
3899                         prevfps = (1 - weight) * prevfps + weight * (1/frametimeavg); // framecounter just used so there's no need for a new variable, think of it as "frametime average"
3900                 }
3901                 prevfps_time = currentTime;
3902         }
3903         else
3904         {
3905                 framecounter += 1;
3906                 if(currentTime - prevfps_time > autocvar_hud_panel_engineinfo_framecounter_time)
3907                 {
3908                         prevfps = framecounter/(currentTime - prevfps_time);
3909                         framecounter = 0;
3910                         prevfps_time = currentTime;
3911                 }
3912         }
3913
3914         vector color;
3915         color = HUD_Get_Num_Color (prevfps, 100);
3916         drawstring_aspect(pos, sprintf(_("FPS: %.*f"), autocvar_hud_panel_engineinfo_framecounter_decimals, prevfps), mySize, color, panel_fg_alpha, DRAWFLAG_NORMAL);
3917 }
3918
3919 // Info messages panel (#14)
3920 //
3921 #define drawInfoMessage(s) do {                                                                                                                                                                         \
3922         if(autocvar_hud_panel_infomessages_flip)                                                                                                                                                \
3923                 o.x = pos.x + mySize.x - stringwidth(s, true, fontsize);                                                                                                        \
3924         drawcolorcodedstring(o, s, fontsize, a, DRAWFLAG_NORMAL);                                                                                                               \
3925         o.y += fontsize.y;                                                                                                                                                                                              \
3926 } while(0)
3927 void HUD_InfoMessages(void)
3928 {
3929         if(!autocvar__hud_configure)
3930         {
3931                 if(!autocvar_hud_panel_infomessages) return;
3932         }
3933
3934         HUD_Panel_UpdateCvars();
3935         vector pos, mySize;
3936         pos = panel_pos;
3937         mySize = panel_size;
3938
3939         HUD_Panel_DrawBg(1);
3940         if(panel_bg_padding)
3941         {
3942                 pos += '1 1 0' * panel_bg_padding;
3943                 mySize -= '2 2 0' * panel_bg_padding;
3944         }
3945
3946         // always force 5:1 aspect
3947         vector newSize = '0 0 0';
3948         if(mySize.x/mySize.y > 5)
3949         {
3950                 newSize.x = 5 * mySize.y;
3951                 newSize.y = mySize.y;
3952
3953                 pos.x = pos.x + (mySize.x - newSize.x) / 2;
3954         }
3955         else
3956         {
3957                 newSize.y = 1/5 * mySize.x;
3958                 newSize.x = mySize.x;
3959
3960                 pos.y = pos.y + (mySize.y - newSize.y) / 2;
3961         }
3962
3963         mySize = newSize;
3964         entity tm;
3965         vector o;
3966         o = pos;
3967
3968         vector fontsize;
3969         fontsize = '0.20 0.20 0' * mySize.y;
3970
3971         float a;
3972         a = panel_fg_alpha;
3973
3974         string s;
3975         if(!autocvar__hud_configure)
3976         {
3977                 if(spectatee_status && !intermission)
3978                 {
3979                         a = 1;
3980                         if(spectatee_status == -1)
3981                                 s = _("^1Observing");
3982                         else
3983                                 s = sprintf(_("^1Spectating: ^7%s"), GetPlayerName(current_player));
3984                         drawInfoMessage(s);
3985
3986                         if(spectatee_status == -1)
3987                                 s = sprintf(_("^1Press ^3%s^1 to spectate"), getcommandkey("primary fire", "+fire"));
3988                         else
3989                                 s = sprintf(_("^1Press ^3%s^1 or ^3%s^1 for next or previous player"), getcommandkey("next weapon", "weapnext"), getcommandkey("previous weapon", "weapprev"));
3990                         drawInfoMessage(s);
3991
3992                         if(spectatee_status == -1)
3993                                 s = sprintf(_("^1Use ^3%s^1 or ^3%s^1 to change the speed"), getcommandkey("next weapon", "weapnext"), getcommandkey("previous weapon", "weapprev"));
3994                         else
3995                                 s = sprintf(_("^1Press ^3%s^1 to observe"), getcommandkey("secondary fire", "+fire2"));
3996                         drawInfoMessage(s);
3997
3998                         s = sprintf(_("^1Press ^3%s^1 for gamemode info"), getcommandkey("server info", "+show_info"));
3999                         drawInfoMessage(s);
4000
4001                         if(gametype == MAPINFO_TYPE_LMS)
4002                         {
4003                                 entity sk;
4004                                 sk = playerslots[player_localnum];
4005                                 if(sk.(scores[ps_primary]) >= 666)
4006                                         s = _("^1Match has already begun");
4007                                 else if(sk.(scores[ps_primary]) > 0)
4008                                         s = _("^1You have no more lives left");
4009                                 else
4010                                         s = sprintf(_("^1Press ^3%s^1 to join"), getcommandkey("jump", "+jump"));
4011                         }
4012                         else
4013                                 s = sprintf(_("^1Press ^3%s^1 to join"), getcommandkey("jump", "+jump"));
4014                         drawInfoMessage(s);
4015
4016                         //show restart countdown:
4017                         if (time < getstatf(STAT_GAMESTARTTIME)) {
4018                                 float countdown;
4019                                 //we need to ceil, otherwise the countdown would be off by .5 when using round()
4020                                 countdown = ceil(getstatf(STAT_GAMESTARTTIME) - time);
4021                                 s = sprintf(_("^1Game starts in ^3%d^1 seconds"), countdown);
4022                                 drawcolorcodedstring(o, s, fontsize, a, DRAWFLAG_NORMAL);
4023                                 o.y += fontsize.y;
4024                         }
4025                 }
4026                 if(warmup_stage && !intermission)
4027                 {
4028                         s = _("^2Currently in ^1warmup^2 stage!");
4029                         drawInfoMessage(s);
4030                 }
4031
4032                 string blinkcolor;
4033                 if(time % 1 >= 0.5)
4034                         blinkcolor = "^1";
4035                 else
4036                         blinkcolor = "^3";
4037
4038                 if(ready_waiting && !intermission && !spectatee_status)
4039                 {
4040                         if(ready_waiting_for_me)
4041                         {
4042                                 if(warmup_stage)
4043                                         s = sprintf(_("%sPress ^3%s%s to end warmup"), blinkcolor, getcommandkey("ready", "ready"), blinkcolor);
4044                                 else
4045                                         s = sprintf(_("%sPress ^3%s%s once you are ready"), blinkcolor, getcommandkey("ready", "ready"), blinkcolor);
4046                         }
4047                         else
4048                         {
4049                                 if(warmup_stage)
4050                                         s = _("^2Waiting for others to ready up to end warmup...");
4051                                 else
4052                                         s = _("^2Waiting for others to ready up...");
4053                         }
4054                         drawInfoMessage(s);
4055                 }
4056                 else if(warmup_stage && !intermission && !spectatee_status)
4057                 {
4058                         s = sprintf(_("^2Press ^3%s^2 to end warmup"), getcommandkey("ready", "ready"));
4059                         drawInfoMessage(s);
4060                 }
4061
4062                 if(teamplay && !intermission && !spectatee_status && gametype != MAPINFO_TYPE_CA && teamnagger)
4063                 {
4064                         float ts_min = 0, ts_max = 0;
4065                         tm = teams.sort_next;
4066                         if (tm)
4067                         {
4068                                 for (; tm.sort_next; tm = tm.sort_next)
4069                                 {
4070                                         if(!tm.team_size || tm.team == NUM_SPECTATOR)
4071                                                 continue;
4072                                         if(!ts_min) ts_min = tm.team_size;
4073                                         else ts_min = min(ts_min, tm.team_size);
4074                                         if(!ts_max) ts_max = tm.team_size;
4075                                         else ts_max = max(ts_max, tm.team_size);
4076                                 }
4077                                 if ((ts_max - ts_min) > 1)
4078                                 {
4079                                         s = strcat(blinkcolor, _("Teamnumbers are unbalanced!"));
4080                                         tm = GetTeam(myteam, false);
4081                                         if (tm)
4082                                         if (tm.team != NUM_SPECTATOR)
4083                                         if (tm.team_size == ts_max)
4084                                                 s = strcat(s, sprintf(_(" Press ^3%s%s to adjust"), getcommandkey("team menu", "menu_showteamselect"), blinkcolor));
4085                                         drawInfoMessage(s);
4086                                 }
4087                         }
4088                 }
4089         }
4090         else
4091         {
4092                 s = _("^7Press ^3ESC ^7to show HUD options.");
4093                 drawInfoMessage(s);
4094                 s = _("^3Doubleclick ^7a panel for panel-specific options.");
4095                 drawInfoMessage(s);
4096                 s = _("^3CTRL ^7to disable collision testing, ^3SHIFT ^7and");
4097                 drawInfoMessage(s);
4098                 s = _("^3ALT ^7+ ^3ARROW KEYS ^7for fine adjustments.");
4099                 drawInfoMessage(s);
4100         }
4101 }
4102
4103 // Physics panel (#15)
4104 //
4105 vector acc_prevspeed;
4106 float acc_prevtime, acc_avg, top_speed, top_speed_time;
4107 float physics_update_time, discrete_speed, discrete_acceleration;
4108 void HUD_Physics(void)
4109 {
4110         if(!autocvar__hud_configure)
4111         {
4112                 if(!autocvar_hud_panel_physics) return;
4113                 if(spectatee_status == -1 && (autocvar_hud_panel_physics == 1 || autocvar_hud_panel_physics == 3)) return;
4114                 if(autocvar_hud_panel_physics == 3 && !(gametype == MAPINFO_TYPE_RACE || gametype == MAPINFO_TYPE_CTS)) return;
4115         }
4116
4117         HUD_Panel_UpdateCvars();
4118
4119         draw_beginBoldFont();
4120
4121         HUD_Panel_DrawBg(1);
4122         if(panel_bg_padding)
4123         {
4124                 panel_pos += '1 1 0' * panel_bg_padding;
4125                 panel_size -= '2 2 0' * panel_bg_padding;
4126         }
4127
4128         float acceleration_progressbar_scale = 0;
4129         if(autocvar_hud_panel_physics_progressbar && autocvar_hud_panel_physics_acceleration_progressbar_scale > 1)
4130                 acceleration_progressbar_scale = autocvar_hud_panel_physics_acceleration_progressbar_scale;
4131
4132         float text_scale;
4133         if (autocvar_hud_panel_physics_text_scale <= 0)
4134                 text_scale = 1;
4135         else
4136                 text_scale = min(autocvar_hud_panel_physics_text_scale, 1);
4137
4138         //compute speed
4139         float speed, conversion_factor;
4140         string unit;
4141
4142         switch(autocvar_hud_panel_physics_speed_unit)
4143         {
4144                 default:
4145                 case 1:
4146                         unit = _(" qu/s");
4147                         conversion_factor = 1.0;
4148                         break;
4149                 case 2:
4150                         unit = _(" m/s");
4151                         conversion_factor = 0.0254;
4152                         break;
4153                 case 3:
4154                         unit = _(" km/h");
4155                         conversion_factor = 0.0254 * 3.6;
4156                         break;
4157                 case 4:
4158                         unit = _(" mph");
4159                         conversion_factor = 0.0254 * 3.6 * 0.6213711922;
4160                         break;
4161                 case 5:
4162                         unit = _(" knots");
4163                         conversion_factor = 0.0254 * 1.943844492; // 1 m/s = 1.943844492 knots, because 1 knot = 1.852 km/h
4164                         break;
4165         }
4166
4167         vector vel = (csqcplayer ? csqcplayer.velocity : pmove_vel);
4168
4169         float max_speed = floor( autocvar_hud_panel_physics_speed_max * conversion_factor + 0.5 );
4170         if (autocvar__hud_configure)
4171                 speed = floor( max_speed * 0.65 + 0.5 );
4172         else if(autocvar_hud_panel_physics_speed_vertical)
4173                 speed = floor( vlen(vel) * conversion_factor + 0.5 );
4174         else
4175                 speed = floor( vlen(vel - vel.z * '0 0 1') * conversion_factor + 0.5 );
4176
4177         //compute acceleration
4178         float acceleration, f;
4179         if (autocvar__hud_configure)
4180                 acceleration = autocvar_hud_panel_physics_acceleration_max * 0.3;
4181         else
4182         {
4183                 // 1 m/s = 0.0254 qu/s; 1 g = 9.80665 m/s^2
4184                 f = time - acc_prevtime;
4185                 if(autocvar_hud_panel_physics_acceleration_vertical)
4186                         acceleration = (vlen(vel) - vlen(acc_prevspeed));
4187                 else
4188                         acceleration = (vlen(vel - '0 0 1' * vel.z) - vlen(acc_prevspeed - '0 0 1' * acc_prevspeed.z));
4189
4190                 acceleration = acceleration * (1 / max(0.0001, f)) * (0.0254 / 9.80665);
4191
4192                 acc_prevspeed = vel;
4193                 acc_prevtime = time;
4194
4195                 if(autocvar_hud_panel_physics_acceleration_movingaverage)
4196                 {
4197                         f = bound(0, f * 10, 1);
4198                         acc_avg = acc_avg * (1 - f) + acceleration * f;
4199                         acceleration = acc_avg;
4200                 }
4201         }
4202
4203         int acc_decimals = 2;
4204         if(time > physics_update_time)
4205         {
4206                 // workaround for ftos_decimals returning a negative 0
4207                 if(discrete_acceleration > -1 / pow(10, acc_decimals) && discrete_acceleration < 0)
4208                         discrete_acceleration = 0;
4209                 discrete_acceleration = acceleration;
4210                 discrete_speed = speed;
4211                 physics_update_time += autocvar_hud_panel_physics_update_interval;
4212         }
4213
4214         //compute layout
4215         float panel_ar = panel_size.x/panel_size.y;
4216         vector speed_offset = '0 0 0', acceleration_offset = '0 0 0';
4217         if (panel_ar >= 5 && !acceleration_progressbar_scale)
4218         {
4219                 panel_size.x *= 0.5;
4220                 if (autocvar_hud_panel_physics_flip)
4221                         speed_offset.x = panel_size.x;
4222                 else
4223                         acceleration_offset.x = panel_size.x;
4224         }
4225         else
4226         {
4227                 panel_size.y *= 0.5;
4228                 if (autocvar_hud_panel_physics_flip)
4229                         speed_offset.y = panel_size.y;
4230                 else
4231                         acceleration_offset.y = panel_size.y;
4232         }
4233         int speed_baralign, acceleration_baralign;
4234         if (autocvar_hud_panel_physics_baralign == 1)
4235                 acceleration_baralign = speed_baralign = 1;
4236     else if(autocvar_hud_panel_physics_baralign == 4)
4237                 acceleration_baralign = speed_baralign = 2;
4238         else if (autocvar_hud_panel_physics_flip)
4239         {
4240                 acceleration_baralign = (autocvar_hud_panel_physics_baralign == 2);
4241                 speed_baralign = (autocvar_hud_panel_physics_baralign == 3);
4242         }
4243         else
4244         {
4245                 speed_baralign = (autocvar_hud_panel_physics_baralign == 2);
4246                 acceleration_baralign = (autocvar_hud_panel_physics_baralign == 3);
4247         }
4248         if (autocvar_hud_panel_physics_acceleration_progressbar_mode == 0)
4249                 acceleration_baralign = 3; //override hud_panel_physics_baralign value for acceleration
4250
4251         //draw speed
4252         if(speed)
4253         if(autocvar_hud_panel_physics_progressbar == 1 || autocvar_hud_panel_physics_progressbar == 2)
4254                 HUD_Panel_DrawProgressBar(panel_pos + speed_offset, panel_size, "progressbar", speed/max_speed, 0, speed_baralign, autocvar_hud_progressbar_speed_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
4255         vector tmp_offset = '0 0 0', tmp_size = '0 0 0';
4256         if (autocvar_hud_panel_physics_text == 1 || autocvar_hud_panel_physics_text == 2)
4257         {
4258                 tmp_size.x = panel_size.x * 0.75;
4259                 tmp_size.y = panel_size.y * text_scale;
4260                 if (speed_baralign)
4261                         tmp_offset.x = panel_size.x - tmp_size.x;
4262                 //else
4263                         //tmp_offset_x = 0;
4264                 tmp_offset.y = (panel_size.y - tmp_size.y) / 2;
4265                 drawstring_aspect(panel_pos + speed_offset + tmp_offset, ftos(discrete_speed), tmp_size, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4266
4267                 //draw speed unit
4268                 if (speed_baralign)
4269                         tmp_offset.x = 0;
4270                 else
4271                         tmp_offset.x = tmp_size.x;
4272                 if (autocvar_hud_panel_physics_speed_unit_show)
4273                 {
4274                         //tmp_offset_y = 0;
4275                         tmp_size.x = panel_size.x * (1 - 0.75);
4276                         tmp_size.y = panel_size.y * 0.4 * text_scale;
4277                         tmp_offset.y = (panel_size.y * 0.4 - tmp_size.y) / 2;
4278                         drawstring_aspect(panel_pos + speed_offset + tmp_offset, unit, tmp_size, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4279                 }
4280         }
4281
4282         //compute and draw top speed
4283         if (autocvar_hud_panel_physics_topspeed)
4284         if (autocvar_hud_panel_physics_text == 1 || autocvar_hud_panel_physics_text == 2)
4285         {
4286                 if (autocvar__hud_configure)
4287                 {
4288                         top_speed = floor( max_speed * 0.75 + 0.5 );
4289                         f = 1;
4290                 }
4291                 else
4292                 {
4293                         if (speed >= top_speed)
4294                         {
4295                                 top_speed = speed;
4296                                 top_speed_time = time;
4297                         }
4298                         if (top_speed != 0)
4299                         {
4300                                 f = max(1, autocvar_hud_panel_physics_topspeed_time);
4301                                 // divide by f to make it start from 1
4302                                 f = cos( ((time - top_speed_time) / f) * PI/2 );
4303                         }
4304             else //hide top speed 0, it would be stupid
4305                                 f = 0;
4306                 }
4307                 if (f > 0)
4308                 {
4309                         //top speed progressbar peak
4310                         if(speed < top_speed)
4311                         if(autocvar_hud_panel_physics_progressbar == 1 || autocvar_hud_panel_physics_progressbar == 2)
4312                         {
4313                                 float peak_offsetX;
4314                                 vector peak_size = '0 0 0';
4315                                 if (speed_baralign == 0)
4316                                         peak_offsetX = min(top_speed, max_speed)/max_speed * panel_size.x;
4317                 else if (speed_baralign == 1)
4318                                         peak_offsetX = (1 - min(top_speed, max_speed)/max_speed) * panel_size.x;
4319                 else // if (speed_baralign == 2)
4320                     peak_offsetX = min(top_speed, max_speed)/max_speed * panel_size.x * 0.5;
4321                                 peak_size.x = floor(panel_size.x * 0.01 + 1.5);
4322                 peak_size.y = panel_size.y;
4323                 if (speed_baralign == 2) // draw two peaks, on both sides
4324                 {
4325                     drawfill(panel_pos + speed_offset + eX * (0.5 * panel_size.x + peak_offsetX - peak_size.x), peak_size, autocvar_hud_progressbar_speed_color, f * autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
4326                     drawfill(panel_pos + speed_offset + eX * (0.5 * panel_size.x - peak_offsetX + peak_size.x), peak_size, autocvar_hud_progressbar_speed_color, f * autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
4327                 }
4328                 else
4329                     drawfill(panel_pos + speed_offset + eX * (peak_offsetX - peak_size.x), peak_size, autocvar_hud_progressbar_speed_color, f * autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
4330                         }
4331
4332                         //top speed
4333                         tmp_offset.y = panel_size.y * 0.4;
4334                         tmp_size.x = panel_size.x * (1 - 0.75);
4335                         tmp_size.y = (panel_size.y - tmp_offset.y) * text_scale;
4336                         tmp_offset.y += (panel_size.y - tmp_offset.y - tmp_size.y) / 2;
4337                         drawstring_aspect(panel_pos + speed_offset + tmp_offset, ftos(top_speed), tmp_size, '1 0 0', f * panel_fg_alpha, DRAWFLAG_NORMAL);
4338                 }
4339                 else
4340                         top_speed = 0;
4341         }
4342
4343         //draw acceleration
4344         if(acceleration)
4345         if(autocvar_hud_panel_physics_progressbar == 1 || autocvar_hud_panel_physics_progressbar == 3)
4346         {
4347                 vector progressbar_color;
4348                 if(acceleration < 0)
4349                         progressbar_color = autocvar_hud_progressbar_acceleration_neg_color;
4350                 else
4351                         progressbar_color = autocvar_hud_progressbar_acceleration_color;
4352
4353                 f = acceleration/autocvar_hud_panel_physics_acceleration_max;
4354                 if (autocvar_hud_panel_physics_acceleration_progressbar_nonlinear)
4355                         f = (f >= 0 ? sqrt(f) : -sqrt(-f));
4356
4357                 if (acceleration_progressbar_scale) // allow progressbar to go out of panel bounds
4358                 {
4359                         tmp_size = acceleration_progressbar_scale * panel_size.x * eX + panel_size.y * eY;
4360
4361                         if (acceleration_baralign == 1)
4362                                 tmp_offset.x = panel_size.x - tmp_size.x;
4363                         else if (acceleration_baralign == 2 || acceleration_baralign == 3)
4364                                 tmp_offset.x = (panel_size.x - tmp_size.x) / 2;
4365                         else
4366                                 tmp_offset.x = 0;
4367                         tmp_offset.y = 0;
4368                 }
4369                 else
4370                 {
4371                         tmp_size = panel_size;
4372                         tmp_offset = '0 0 0';
4373                 }
4374
4375                 HUD_Panel_DrawProgressBar(panel_pos + acceleration_offset + tmp_offset, tmp_size, "accelbar", f, 0, acceleration_baralign, progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
4376         }
4377
4378         if(autocvar_hud_panel_physics_text == 1 || autocvar_hud_panel_physics_text == 3)
4379         {
4380                 tmp_size.x = panel_size.x;
4381                 tmp_size.y = panel_size.y * text_scale;
4382                 tmp_offset.x = 0;
4383                 tmp_offset.y = (panel_size.y - tmp_size.y) / 2;
4384
4385                 drawstring_aspect(panel_pos + acceleration_offset + tmp_offset, strcat(ftos_decimals(discrete_acceleration, acc_decimals), "g"), tmp_size, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
4386         }
4387
4388         draw_endBoldFont();
4389 }
4390
4391 // CenterPrint (#16)
4392 //
4393 const int CENTERPRINT_MAX_MSGS = 10;
4394 const int CENTERPRINT_MAX_ENTRIES = 50;
4395 const float CENTERPRINT_SPACING = 0.7;
4396 int cpm_index;
4397 string centerprint_messages[CENTERPRINT_MAX_MSGS];
4398 int centerprint_msgID[CENTERPRINT_MAX_MSGS];
4399 float centerprint_time[CENTERPRINT_MAX_MSGS];
4400 float centerprint_expire_time[CENTERPRINT_MAX_MSGS];
4401 int centerprint_countdown_num[CENTERPRINT_MAX_MSGS];
4402 bool centerprint_showing;
4403
4404 void centerprint_generic(int new_id, string strMessage, float duration, int countdown_num)
4405 {
4406         //printf("centerprint_generic(%d, '%s^7', %d, %d);\n", new_id, strMessage, duration, countdown_num);
4407         int i, j;
4408
4409         if(strMessage == "" && new_id == 0)
4410                 return;
4411
4412         // strip trailing newlines
4413         j = strlen(strMessage) - 1;
4414         while(substring(strMessage, j, 1) == "\n" && j >= 0)
4415                 --j;
4416         if (j < strlen(strMessage) - 1)
4417                 strMessage = substring(strMessage, 0, j + 1);
4418
4419         if(strMessage == "" && new_id == 0)
4420                 return;
4421
4422         // strip leading newlines
4423         j = 0;
4424         while(substring(strMessage, j, 1) == "\n" && j < strlen(strMessage))
4425                 ++j;
4426         if (j > 0)
4427                 strMessage = substring(strMessage, j, strlen(strMessage) - j);
4428
4429         if(strMessage == "" && new_id == 0)
4430                 return;
4431
4432         if (!centerprint_showing)
4433                 centerprint_showing = true;
4434
4435         for (i=0, j=cpm_index; i<CENTERPRINT_MAX_MSGS; ++i, ++j)
4436         {
4437                 if (j == CENTERPRINT_MAX_MSGS)
4438                         j = 0;
4439                 if (new_id && new_id == centerprint_msgID[j])
4440                 {
4441                         if (strMessage == "" && centerprint_messages[j] != "" && centerprint_countdown_num[j] == 0)
4442                         {
4443                                 // fade out the current msg (duration and countdown_num are ignored)
4444                                 centerprint_time[j] = min(5, autocvar_hud_panel_centerprint_fade_out);
4445                                 if (centerprint_expire_time[j] > time + min(5, autocvar_hud_panel_centerprint_fade_out) || centerprint_expire_time[j] < time)
4446                                         centerprint_expire_time[j] = time + min(5, autocvar_hud_panel_centerprint_fade_out);
4447                                 return;
4448                         }
4449                         break; // found a msg with the same id, at position j
4450                 }
4451         }
4452
4453         if (i == CENTERPRINT_MAX_MSGS)
4454         {
4455                 // a msg with the same id was not found, add the msg at the next position
4456                 --cpm_index;
4457                 if (cpm_index == -1)
4458                         cpm_index = CENTERPRINT_MAX_MSGS - 1;
4459                 j = cpm_index;
4460         }
4461         if(centerprint_messages[j])
4462                 strunzone(centerprint_messages[j]);
4463         centerprint_messages[j] = strzone(strMessage);
4464         centerprint_msgID[j] = new_id;
4465         if (duration < 0)
4466         {
4467                 centerprint_time[j] = -1;
4468                 centerprint_expire_time[j] = time;
4469         }
4470         else
4471         {
4472                 if(duration == 0)
4473                         duration = max(1, autocvar_hud_panel_centerprint_time);
4474                 centerprint_time[j] = duration;
4475                 centerprint_expire_time[j] = time + duration;
4476         }
4477         centerprint_countdown_num[j] = countdown_num;
4478 }
4479
4480 void centerprint_hud(string strMessage)
4481 {
4482         centerprint_generic(0, strMessage, autocvar_hud_panel_centerprint_time, 0);
4483 }
4484
4485 void reset_centerprint_messages(void)
4486 {
4487         int i;
4488         for (i=0; i<CENTERPRINT_MAX_MSGS; ++i)
4489         {
4490                 centerprint_expire_time[i] = 0;
4491                 centerprint_time[i] = 1;
4492                 centerprint_msgID[i] = 0;
4493                 if(centerprint_messages[i])
4494                         strunzone(centerprint_messages[i]);
4495                 centerprint_messages[i] = string_null;
4496         }
4497 }
4498 float hud_configure_cp_generation_time;
4499 void HUD_CenterPrint (void)
4500 {
4501         if(!autocvar__hud_configure)
4502         {
4503                 if(!autocvar_hud_panel_centerprint) return;
4504
4505                 if(hud_configure_prev)
4506                         reset_centerprint_messages();
4507         }
4508         else
4509         {
4510                 if(!hud_configure_prev)
4511                         reset_centerprint_messages();
4512                 if (time > hud_configure_cp_generation_time)
4513                 {
4514                         if(HUD_PANEL(CENTERPRINT) == highlightedPanel)
4515                         {
4516                                 float r;
4517                                 r = random();
4518                                 if (r > 0.8)
4519                                         centerprint_generic(floor(r*1000), strcat(sprintf("^3Countdown message at time %s", seconds_tostring(time)), ", seconds left: ^COUNT"), 1, 10);
4520                                 else if (r > 0.55)
4521                                         centerprint_generic(0, sprintf("^1Multiline message at time %s that\n^1lasts longer than normal", seconds_tostring(time)), 20, 0);
4522                                 else
4523                                         centerprint_hud(sprintf("Message at time %s", seconds_tostring(time)));
4524                                 hud_configure_cp_generation_time = time + 1 + random()*4;
4525                         }
4526                         else
4527                         {
4528                                 centerprint_generic(0, sprintf("Centerprint message", seconds_tostring(time)), 10, 0);
4529                                 hud_configure_cp_generation_time = time + 10 - random()*3;
4530                         }
4531                 }
4532         }
4533
4534         // this panel fades only when the menu does
4535         float hud_fade_alpha_save = 0;
4536         if(scoreboard_fade_alpha)
4537         {
4538                 hud_fade_alpha_save = hud_fade_alpha;
4539                 hud_fade_alpha = 1 - autocvar__menu_alpha;
4540         }
4541         HUD_Panel_UpdateCvars();
4542
4543         if ( HUD_Radar_Clickable() )
4544         {
4545                 if (hud_panel_radar_bottom >= 0.96 * vid_conheight)
4546                         return;
4547
4548                 panel_pos = eY * hud_panel_radar_bottom + eX * 0.5 * (vid_conwidth - panel_size_x);
4549                 panel_size_y = min(panel_size_y, vid_conheight - hud_panel_radar_bottom);
4550         }
4551         else if(scoreboard_fade_alpha)
4552         {
4553                 hud_fade_alpha = hud_fade_alpha_save;
4554
4555                 // move the panel below the scoreboard
4556                 if (scoreboard_bottom >= 0.96 * vid_conheight)
4557                         return;
4558                 vector target_pos;
4559
4560                 target_pos = eY * scoreboard_bottom + eX * 0.5 * (vid_conwidth - panel_size.x);
4561
4562                 if(target_pos.y > panel_pos.y)
4563                 {
4564                         panel_pos = panel_pos + (target_pos - panel_pos) * sqrt(scoreboard_fade_alpha);
4565                         panel_size.y = min(panel_size.y, vid_conheight - scoreboard_bottom);
4566                 }
4567         }
4568
4569         HUD_Panel_DrawBg(1);
4570
4571         if (!centerprint_showing)
4572                 return;
4573
4574         if(panel_bg_padding)
4575         {
4576                 panel_pos += '1 1 0' * panel_bg_padding;
4577                 panel_size -= '2 2 0' * panel_bg_padding;
4578         }
4579
4580         int entries;
4581         float height;
4582         vector fontsize;
4583         // entries = bound(1, floor(CENTERPRINT_MAX_ENTRIES * 4 * panel_size_y/panel_size_x), CENTERPRINT_MAX_ENTRIES);
4584         // height = panel_size_y/entries;
4585         // fontsize = '1 1 0' * height;
4586         height = vid_conheight/50 * autocvar_hud_panel_centerprint_fontscale;
4587         fontsize = '1 1 0' * height;
4588         entries = bound(1, floor(panel_size.y/height), CENTERPRINT_MAX_ENTRIES);
4589
4590         int i, j, k, n, g;
4591         float a, sz, align, current_msg_posY = 0, msg_size;
4592         vector pos;
4593         string ts;
4594         bool all_messages_expired = true;
4595
4596         pos = panel_pos;
4597         if (autocvar_hud_panel_centerprint_flip)
4598                 pos.y += panel_size.y;
4599         align = bound(0, autocvar_hud_panel_centerprint_align, 1);
4600         for (g=0, i=0, j=cpm_index; i<CENTERPRINT_MAX_MSGS; ++i, ++j)
4601         {
4602                 if (j == CENTERPRINT_MAX_MSGS)
4603                         j = 0;
4604                 if (centerprint_expire_time[j] <= time)
4605                 {
4606                         if (centerprint_countdown_num[j] && centerprint_time[j] > 0)
4607                         {
4608                                 centerprint_countdown_num[j] = centerprint_countdown_num[j] - 1;
4609                                 if (centerprint_countdown_num[j] == 0)
4610                                         continue;
4611                                 centerprint_expire_time[j] = centerprint_expire_time[j] + centerprint_time[j];
4612                         }
4613                         else if(centerprint_time[j] != -1)
4614                                 continue;
4615                 }
4616
4617                 all_messages_expired = false;
4618
4619                 // fade the centerprint_hud in/out
4620                 if(centerprint_time[j] < 0)  // Expired but forced. Expire time is the fade-in time.
4621                         a = (time - centerprint_expire_time[j]) / max(0.0001, autocvar_hud_panel_centerprint_fade_in);
4622                 else if(centerprint_expire_time[j] - autocvar_hud_panel_centerprint_fade_out > time)  // Regularily printed. Not fading out yet.
4623                         a = (time - (centerprint_expire_time[j] - centerprint_time[j])) / max(0.0001, autocvar_hud_panel_centerprint_fade_in);
4624                 else // Expiring soon, so fade it out.
4625                         a = (centerprint_expire_time[j] - time) / max(0.0001, autocvar_hud_panel_centerprint_fade_out);
4626
4627                 // while counting down show it anyway in order to hold the current message position
4628                 if (a <= 0.5/255.0 && centerprint_countdown_num[j] == 0)  // Guaranteed invisible - don't show.
4629                         continue;
4630                 if (a > 1)
4631                         a = 1;
4632
4633                 // set the size from fading in/out before subsequent fading
4634                 sz = autocvar_hud_panel_centerprint_fade_minfontsize + a * (1 - autocvar_hud_panel_centerprint_fade_minfontsize);
4635
4636                 // also fade it based on positioning
4637                 if(autocvar_hud_panel_centerprint_fade_subsequent)
4638                 {
4639                         a = a * bound(autocvar_hud_panel_centerprint_fade_subsequent_passone_minalpha, (1 - (g / max(1, autocvar_hud_panel_centerprint_fade_subsequent_passone))), 1); // pass one: all messages after the first have half theAlpha
4640                         a = a * bound(autocvar_hud_panel_centerprint_fade_subsequent_passtwo_minalpha, (1 - (g / max(1, autocvar_hud_panel_centerprint_fade_subsequent_passtwo))), 1); // pass two: after that, gradually lower theAlpha even more for each message
4641                 }
4642                 a *= panel_fg_alpha;
4643
4644                 // finally set the size based on the new theAlpha from subsequent fading
4645                 sz = sz * (autocvar_hud_panel_centerprint_fade_subsequent_minfontsize + a * (1 - autocvar_hud_panel_centerprint_fade_subsequent_minfontsize));
4646                 drawfontscale = sz * '1 1 0';
4647
4648                 if (centerprint_countdown_num[j])
4649                         n = tokenizebyseparator(strreplace("^COUNT", count_seconds(centerprint_countdown_num[j]), centerprint_messages[j]), "\n");
4650                 else
4651                         n = tokenizebyseparator(centerprint_messages[j], "\n");
4652
4653                 if (autocvar_hud_panel_centerprint_flip)
4654                 {
4655                         // check if the message can be entirely shown
4656                         for(k = 0; k < n; ++k)
4657                         {
4658                                 getWrappedLine_remaining = argv(k);
4659                                 while(getWrappedLine_remaining)
4660                                 {
4661                                         ts = getWrappedLine(panel_size.x * sz, fontsize, stringwidth_colors);
4662                                         if (ts != "")
4663                                                 pos.y -= fontsize.y;
4664                                         else
4665                                                 pos.y -= fontsize.y * CENTERPRINT_SPACING/2;
4666                                 }
4667                         }
4668                         current_msg_posY = pos.y; // save starting pos (first line) of the current message
4669                 }
4670
4671                 msg_size = pos.y;
4672                 for(k = 0; k < n; ++k)
4673                 {
4674                         getWrappedLine_remaining = argv(k);
4675                         while(getWrappedLine_remaining)
4676                         {
4677                                 ts = getWrappedLine(panel_size.x * sz, fontsize, stringwidth_colors);
4678                                 if (ts != "")
4679                                 {
4680                                         if (align)
4681                                                 pos.x = panel_pos.x + (panel_size.x - stringwidth(ts, true, fontsize)) * align;
4682                                         if (a > 0.5/255.0)  // Otherwise guaranteed invisible - don't show. This is checked a second time after some multiplications with other factors were done so temporary changes of these cannot cause flicker.
4683                                                 drawcolorcodedstring(pos + eY * 0.5 * (1 - sz) * fontsize.y, ts, fontsize, a, DRAWFLAG_NORMAL);
4684                                         pos.y += fontsize.y;
4685                                 }
4686                                 else
4687                                         pos.y += fontsize.y * CENTERPRINT_SPACING/2;
4688                         }
4689                 }
4690
4691                 ++g; // move next position number up
4692
4693                 msg_size = pos.y - msg_size;
4694                 if (autocvar_hud_panel_centerprint_flip)
4695                 {
4696                         pos.y = current_msg_posY - CENTERPRINT_SPACING * fontsize.y;
4697                         if (a < 1 && centerprint_msgID[j] == 0) // messages with id can be replaced just after they are faded out, so never move over them the next messages
4698                                 pos.y += (msg_size + CENTERPRINT_SPACING * fontsize.y) * (1 - sqrt(sz));
4699
4700                         if (pos.y < panel_pos.y) // check if the next message can be shown
4701                         {
4702                                 drawfontscale = '1 1 0';
4703                                 return;
4704                         }
4705                 }
4706                 else
4707                 {
4708                         pos.y += CENTERPRINT_SPACING * fontsize.y;
4709                         if (a < 1 && centerprint_msgID[j] == 0) // messages with id can be replaced just after they are faded out, so never move over them the next messages
4710                                 pos.y -= (msg_size + CENTERPRINT_SPACING * fontsize.y) * (1 - sqrt(sz));
4711
4712                         if(pos.y > panel_pos.y + panel_size.y - fontsize.y) // check if the next message can be shown
4713                         {
4714                                 drawfontscale = '1 1 0';
4715                                 return;
4716                         }
4717                 }
4718         }
4719         drawfontscale = '1 1 0';
4720         if (all_messages_expired)
4721         {
4722                 centerprint_showing = false;
4723                 reset_centerprint_messages();
4724         }
4725 }
4726
4727 // Buffs (#18)
4728 //
4729 void HUD_Buffs(void)
4730 {
4731         int buffs = getstati(STAT_BUFFS, 0, 24);
4732         if(!autocvar__hud_configure)
4733         {
4734                 if(!autocvar_hud_panel_buffs) return;
4735                 if(spectatee_status == -1) return;
4736                 if(getstati(STAT_HEALTH) <= 0) return;
4737                 if(!buffs) return;
4738         }
4739         else
4740         {
4741                 buffs = Buff_Type_first.items; // force first buff
4742         }
4743
4744         int b = 0; // counter to tell other functions that we have buffs
4745         entity e;
4746         string s = "";
4747         for(e = Buff_Type_first; e; e = e.enemy) if(buffs & e.items)
4748         {
4749                 ++b;
4750                 string o = strcat(rgb_to_hexcolor(Buff_Color(e.items)), Buff_PrettyName(e.items));
4751                 if(s == "")
4752                         s = o;
4753                 else
4754                         s = strcat(s, " ", o);
4755         }
4756
4757         HUD_Panel_UpdateCvars();
4758
4759         draw_beginBoldFont();
4760
4761         vector pos, mySize;
4762         pos = panel_pos;
4763         mySize = panel_size;
4764
4765         HUD_Panel_DrawBg(bound(0, b, 1));
4766         if(panel_bg_padding)
4767         {
4768                 pos += '1 1 0' * panel_bg_padding;
4769                 mySize -= '2 2 0' * panel_bg_padding;
4770         }
4771
4772         //float panel_ar = mySize_x/mySize_y;
4773         //bool is_vertical = (panel_ar < 1);
4774         //float buff_iconalign = autocvar_hud_panel_buffs_iconalign;
4775         vector buff_offset = '0 0 0';
4776
4777         for(e = Buff_Type_first; e; e = e.enemy) if(buffs & e.items)
4778         {
4779                 //DrawNumIcon(pos + buff_offset, mySize, shield, "shield", is_vertical, buff_iconalign, '1 1 1', 1);
4780                 drawcolorcodedstring_aspect(pos + buff_offset, s, mySize, panel_fg_alpha * 0.5, DRAWFLAG_NORMAL);
4781         }
4782
4783         draw_endBoldFont();
4784 }
4785
4786
4787 /*
4788 ==================
4789 Main HUD system
4790 ==================
4791 */
4792
4793 void HUD_Reset (void)
4794 {
4795         // reset gametype specific icons
4796         if(gametype == MAPINFO_TYPE_CTF)
4797                 HUD_Mod_CTF_Reset();
4798 }
4799
4800 void HUD_Main (void)
4801 {
4802         int i;
4803         // global hud theAlpha fade
4804         if(menu_enabled == 1)
4805                 hud_fade_alpha = 1;
4806         else
4807                 hud_fade_alpha = (1 - autocvar__menu_alpha);
4808
4809         if(scoreboard_fade_alpha)
4810                 hud_fade_alpha = (1 - scoreboard_fade_alpha);
4811
4812         HUD_Configure_Frame();
4813
4814         if(intermission == 2) // no hud during mapvote
4815                 hud_fade_alpha = 0;
4816
4817         // panels that we want to be active together with the scoreboard
4818         // they must fade only when the menu does
4819         if(scoreboard_fade_alpha == 1)
4820         {
4821                 (panel = HUD_PANEL(CENTERPRINT)).panel_draw();
4822                 return;
4823         }
4824
4825         if(!autocvar__hud_configure && !hud_fade_alpha)
4826                 return;
4827
4828         // Drawing stuff
4829         if (hud_skin_prev != autocvar_hud_skin)
4830         {
4831                 if (hud_skin_path)
4832                         strunzone(hud_skin_path);
4833                 hud_skin_path = strzone(strcat("gfx/hud/", autocvar_hud_skin));
4834                 if (hud_skin_prev)
4835                         strunzone(hud_skin_prev);
4836                 hud_skin_prev = strzone(autocvar_hud_skin);
4837         }
4838
4839         // draw the dock
4840         if(autocvar_hud_dock != "" && autocvar_hud_dock != "0")
4841         {
4842                 int f;
4843                 vector color;
4844                 float hud_dock_color_team = autocvar_hud_dock_color_team;
4845                 if((teamplay) && hud_dock_color_team) {
4846                         if(autocvar__hud_configure && myteam == NUM_SPECTATOR)
4847                                 color = '1 0 0' * hud_dock_color_team;
4848                         else
4849                                 color = myteamcolors * hud_dock_color_team;
4850                 }
4851                 else if(autocvar_hud_configure_teamcolorforced && autocvar__hud_configure && hud_dock_color_team) {
4852                         color = '1 0 0' * hud_dock_color_team;
4853                 }
4854                 else
4855                 {
4856                         string hud_dock_color = autocvar_hud_dock_color;
4857                         if(hud_dock_color == "shirt") {
4858                                 f = stof(getplayerkeyvalue(current_player, "colors"));
4859                                 color = colormapPaletteColor(floor(f / 16), 0);
4860                         }
4861                         else if(hud_dock_color == "pants") {
4862                                 f = stof(getplayerkeyvalue(current_player, "colors"));
4863                                 color = colormapPaletteColor(f % 16, 1);
4864                         }
4865                         else
4866                                 color = stov(hud_dock_color);
4867                 }
4868
4869                 string pic;
4870                 pic = strcat(hud_skin_path, "/", autocvar_hud_dock);
4871                 if(precache_pic(pic) == "") {
4872                         pic = strcat(hud_skin_path, "/dock_medium");
4873                         if(precache_pic(pic) == "") {
4874                                 pic = "gfx/hud/default/dock_medium";
4875                         }
4876                 }
4877                 drawpic('0 0 0', pic, eX * vid_conwidth + eY * vid_conheight, color, autocvar_hud_dock_alpha * hud_fade_alpha, DRAWFLAG_NORMAL); // no aspect ratio forcing on dock...
4878         }
4879
4880         // cache the panel order into the panel_order array
4881         if(autocvar__hud_panelorder != hud_panelorder_prev) {
4882                 for(i = 0; i < HUD_PANEL_NUM; ++i)
4883                         panel_order[i] = -1;
4884                 string s = "";
4885                 int p_num;
4886                 bool warning = false;
4887                 int argc = tokenize_console(autocvar__hud_panelorder);
4888                 if (argc > HUD_PANEL_NUM)
4889                         warning = true;
4890                 //first detect wrong/missing panel numbers
4891                 for(i = 0; i < HUD_PANEL_NUM; ++i) {
4892                         p_num = stoi(argv(i));
4893                         if (p_num >= 0 && p_num < HUD_PANEL_NUM) { //correct panel number?
4894                                 if (panel_order[p_num] == -1) //found for the first time?
4895                                         s = strcat(s, ftos(p_num), " ");
4896                                 panel_order[p_num] = 1; //mark as found
4897                         }
4898                         else
4899                                 warning = true;
4900                 }
4901                 for(i = 0; i < HUD_PANEL_NUM; ++i) {
4902                         if (panel_order[i] == -1) {
4903                                 warning = true;
4904                                 s = strcat(s, ftos(i), " "); //add missing panel number
4905                         }
4906                 }
4907                 if (warning)
4908                         dprint("Automatically fixed wrong/missing panel numbers in _hud_panelorder\n");
4909
4910                 cvar_set("_hud_panelorder", s);
4911                 if(hud_panelorder_prev)
4912                         strunzone(hud_panelorder_prev);
4913                 hud_panelorder_prev = strzone(s);
4914
4915                 //now properly set panel_order
4916                 tokenize_console(s);
4917                 for(i = 0; i < HUD_PANEL_NUM; ++i) {
4918                         panel_order[i] = stof(argv(i));
4919                 }
4920         }
4921
4922         hud_draw_maximized = 0;
4923         // draw panels in order specified by panel_order array
4924         for(i = HUD_PANEL_NUM - 1; i >= 0; --i)
4925                 (panel = hud_panel[panel_order[i]]).panel_draw();
4926
4927         hud_draw_maximized = 1; // panels that may be maximized must check this var
4928         // draw maximized panels on top
4929         if(hud_panel_radar_maximized)
4930                 (panel = HUD_PANEL(RADAR)).panel_draw();
4931         if(autocvar__con_chat_maximized)
4932                 (panel = HUD_PANEL(CHAT)).panel_draw();
4933
4934         HUD_Configure_PostDraw();
4935
4936         hud_configure_prev = autocvar__hud_configure;
4937 }