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