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