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