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