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