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