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