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