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