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
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)
20 //pic = draw_UseSkinFor(pic);
21 width = eX * theSize_x;
22 height = eY * theSize_y;
23 if(theSize_x <= theBorderSize_x * 2)
25 // not wide enough... draw just left and right then
26 bW = eX * (0.25 * theSize_x / (theBorderSize_x * 2));
27 if(theSize_y <= theBorderSize_y * 2)
29 // not high enough... draw just corners
30 bH = eY * (0.25 * theSize_y / (theBorderSize_y * 2));
31 drawsubpic(theOrigin, width * 0.5 + height * 0.5, pic, '0 0 0', bW + bH, theColor, theAlpha, 0);
32 drawsubpic(theOrigin + width * 0.5, width * 0.5 + height * 0.5, pic, eX - bW, bW + bH, theColor, theAlpha, 0);
33 drawsubpic(theOrigin + height * 0.5, width * 0.5 + height * 0.5, pic, eY - bH, bW + bH, theColor, theAlpha, 0);
34 drawsubpic(theOrigin + theSize * 0.5, width * 0.5 + height * 0.5, pic, eX + eY - bW - bH, bW + bH, theColor, theAlpha, 0);
38 dY = theBorderSize_x * eY;
39 drawsubpic(theOrigin, width * 0.5 + dY, pic, '0 0 0', '0 0.25 0' + bW, theColor, theAlpha, 0);
40 drawsubpic(theOrigin + width * 0.5, width * 0.5 + dY, pic, '0 0 0' + eX - bW, '0 0.25 0' + bW, theColor, theAlpha, 0);
41 drawsubpic(theOrigin + dY, width * 0.5 + height - 2 * dY, pic, '0 0.25 0', '0 0.5 0' + bW, theColor, theAlpha, 0);
42 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);
43 drawsubpic(theOrigin + height - dY, width * 0.5 + dY, pic, '0 0.75 0', '0 0.25 0' + bW, theColor, theAlpha, 0);
44 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);
49 if(theSize_y <= theBorderSize_y * 2)
51 // not high enough... draw just top and bottom then
52 bH = eY * (0.25 * theSize_y / (theBorderSize_y * 2));
53 dX = theBorderSize_x * eX;
54 drawsubpic(theOrigin, dX + height * 0.5, pic, '0 0 0', '0.25 0 0' + bH, theColor, theAlpha, 0);
55 drawsubpic(theOrigin + dX, width - 2 * dX + height * 0.5, pic, '0.25 0 0', '0.5 0 0' + bH, theColor, theAlpha, 0);
56 drawsubpic(theOrigin + width - dX, dX + height * 0.5, pic, '0.75 0 0', '0.25 0 0' + bH, theColor, theAlpha, 0);
57 drawsubpic(theOrigin + height * 0.5, dX + height * 0.5, pic, '0 0 0' + eY - bH, '0.25 0 0' + bH, theColor, theAlpha, 0);
58 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);
59 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);
63 dX = theBorderSize_x * eX;
64 dY = theBorderSize_x * eY;
65 drawsubpic(theOrigin, dX + dY, pic, '0 0 0', '0.25 0.25 0', theColor, theAlpha, 0);
66 drawsubpic(theOrigin + dX, width - 2 * dX + dY, pic, '0.25 0 0', '0.5 0.25 0', theColor, theAlpha, 0);
67 drawsubpic(theOrigin + width - dX, dX + dY, pic, '0.75 0 0', '0.25 0.25 0', theColor, theAlpha, 0);
68 drawsubpic(theOrigin + dY, dX + height - 2 * dY, pic, '0 0.25 0', '0.25 0.5 0', theColor, theAlpha, 0);
69 drawsubpic(theOrigin + dY + dX, width - 2 * dX + height - 2 * dY, pic, '0.25 0.25 0', '0.5 0.5 0', theColor, theAlpha, 0);
70 drawsubpic(theOrigin + dY + width - dX, dX + height - 2 * dY, pic, '0.75 0.25 0', '0.25 0.5 0', theColor, theAlpha, 0);
71 drawsubpic(theOrigin + height - dY, dX + dY, pic, '0 0.75 0', '0.25 0.25 0', theColor, theAlpha, 0);
72 drawsubpic(theOrigin + height - dY + dX, width - 2 * dX + dY, pic, '0.25 0.75 0', '0.5 0.25 0', theColor, theAlpha, 0);
73 drawsubpic(theOrigin + height - dY + width - dX, dX + dY, pic, '0.75 0.75 0', '0.25 0.25 0', theColor, theAlpha, 0);
78 // draw HUD element with image from gfx/hud/hud_skin/foo.tga if it exists, otherwise gfx/hud/default/foo.tga
79 void drawpic_skin(vector pos, string pic, vector sz, vector color, float alpha, float drawflag) {
80 drawpic(pos, strcat("gfx/hud/", cvar_string("hud_skin"), "/", pic), sz, color, alpha, drawflag);
83 void drawpic_skin_expanding(vector pos, string pic, vector sz, vector rgb, float alpha, float flag, float fadelerp) {
84 drawpic_expanding(pos, strcat("gfx/hud/", cvar_string("hud_skin"), "/", pic), sz, rgb, alpha, flag, fadelerp);
87 void drawpic_skin_expanding_two(vector pos, string pic, vector sz, vector rgb, float alpha, float flag, float fadelerp) {
88 drawpic_expanding_two(pos, strcat("gfx/hud/", cvar_string("hud_skin"), "/", pic), sz, rgb, alpha, flag, fadelerp);
91 // return HUD background color
92 vector HUD_GetBgColor()
96 GetTeamRGB(myteam) * hud_color_bg_team;
98 // allow custom HUD colors in non-teamgames
99 color_x = cvar("hud_color_bg_r");
100 color_y = cvar("hud_color_bg_g");
101 color_z = cvar("hud_color_bg_b");
106 // return accuracy text color
107 vector HUD_AccuracyColor(float accuracy)
110 float yellow_accuracy = cvar("hud_weaponicons_accuracy_yellow"); // value at which this function returns yellow
111 if(accuracy >= 100) {
115 else if(accuracy > yellow_accuracy) {
116 rgb_x = 1 - (accuracy-yellow_accuracy)/(100-yellow_accuracy); // red value between 1 -> 0
121 rgb_y = accuracy/yellow_accuracy; // green value between 0 -> 1
127 // draw number in the XSCALE font
128 void HUD_DrawXNum (vector pos, float num, float digits, float showsign, float lettersize, vector rgb, float highlighted, float stroke, float alpha, float dflags)
131 string str, tmp, l_length;
133 vector vsize, num_color;
135 vsize_x = vsize_y = lettersize;
138 // showsign 1: always prefix with minus sign (useful in race distribution display)
139 // showsign 2: always prefix with plus sign (useful in race distribution display)
140 // showsign 3: prefix with minus sign if negative, plus sign if positive (useful in score distribution display)
142 if((showsign == 2 && num >= 0) || (num > 0 && showsign == 3))
149 if(num < 0 || (num < 0 && showsign == 3) || (showsign == 1 && num <= 0))
161 str = strcat(substring("0000000000", 0, digits - strlen(tmp)), tmp);
170 str = substring(str, l-digits, 999);
172 } else if(l < digits)
173 pos_x += (digits-l) * lettersize;
175 if (highlighted == 1) {
177 hl_size_x = vsize_x * l + vsize_x * 0.2;
178 hl_size_y = vsize_y * 1.1;
181 hl_size_x = hl_size_x + vsize_x;
184 hl_pos_x = pos_x - lettersize/10;
185 hl_pos_y = pos_y - lettersize/20;
188 drawpic_skin(hl_pos, strcat("num_leading_", l_length), hl_size, '1 1 1', alpha, dflags);
199 drawpic_skin(pos, "num_minus_stroke", vsize, rgb, alpha, dflags);
200 drawpic_skin(pos, "num_minus", vsize, num_color, alpha, dflags);
205 drawpic_skin(pos, "num_plus_stroke", vsize, rgb, alpha, dflags);
206 drawpic_skin(pos, "num_plus", vsize, num_color, alpha, dflags);
210 for(i = 0; i < l; ++i)
212 tmp = substring(str, i, 1);
214 drawpic_skin(pos, strcat("num_", tmp, "_stroke"), vsize, rgb, alpha, dflags);
215 drawpic_skin(pos, strcat("num_", tmp), vsize, num_color, alpha, dflags);
220 // color the number differently based on how big it is (used in the health/armor panel)
221 void HUD_DrawXNum_Colored (vector pos, float x, float digits, float lettersize, float alpha)
230 color_x = 0.4 - (x-150)*0.02 * 0.4; //red value between 0.4 -> 0
231 color_y = 0.9 + (x-150)*0.02 * 0.1; // green value between 0.9 -> 1
235 color_x = 1 - (x-100)*0.02 * 0.6; //red value between 1 -> 0.4
236 color_y = 1 - (x-100)*0.02 * 0.1; // green value between 1 -> 0.9
237 color_z = 1 - (x-100)*0.02; // blue value between 1 -> 0
242 color_z = 0.2 + (x-50)*0.02 * 0.8; // blue value between 0.2 -> 1
246 color_y = (x-20)*90/27/100; // green value between 0 -> 1
247 color_z = (x-20)*90/27/100 * 0.2; // blue value between 0 -> 0.2
254 HUD_DrawXNum(pos, x, digits, 0, lettersize, color, 0, 0, alpha, DRAWFLAG_NORMAL);
257 float stringwidth_colors(string s, vector theSize)
259 return stringwidth(s, TRUE, theSize);
262 float stringwidth_nocolors(string s, vector theSize)
264 return stringwidth(s, FALSE, theSize);
267 #define CENTERPRINT_MAX_LINES 30
268 string centerprint_messages[CENTERPRINT_MAX_LINES];
269 float centerprint_width[CENTERPRINT_MAX_LINES];
270 vector centerprint_start;
271 float centerprint_expire;
272 float centerprint_num;
273 float centerprint_offset_hint;
274 vector centerprint_fontsize;
276 void centerprint(string strMessage)
278 float i, j, n, hcount;
281 centerprint_fontsize = HUD_GetFontsize("scr_centersize");
283 centerprint_expire = min(centerprint_expire, time); // if any of the returns happens, this message will fade out
285 if(cvar("scr_centertime") <= 0)
291 // strip trailing newlines
292 j = strlen(strMessage) - 1;
293 while(substring(strMessage, j, 1) == "\n" && j >= 0)
295 strMessage = substring(strMessage, 0, j + 1);
300 // strip leading newlines and remember them, they are a hint that the message should be lower on the screen
302 while(substring(strMessage, j, 1) == "\n" && j < strlen(strMessage))
304 strMessage = substring(strMessage, j, strlen(strMessage) - j);
305 centerprint_offset_hint = j;
310 // if we get here, we have a message. Initialize its height.
313 n = tokenizebyseparator(strMessage, "\n");
315 for(j = 0; j < n; ++j)
317 getWrappedLine_remaining = argv(j);
318 while(getWrappedLine_remaining)
320 s = getWrappedLine(vid_conwidth * 0.75, centerprint_fontsize, stringwidth_colors);
321 if(centerprint_messages[i])
322 strunzone(centerprint_messages[i]);
323 centerprint_messages[i] = strzone(s);
324 centerprint_width[i] = stringwidth(s, TRUE, centerprint_fontsize);
327 // half height for empty lines looks better
333 if(i >= CENTERPRINT_MAX_LINES)
339 h = centerprint_fontsize_y*hcount;
341 havail = vid_conheight;
342 if(cvar("con_chatpos") < 0)
343 havail -= (-cvar("con_chatpos") + cvar("con_chat")) * cvar("con_chatsize"); // avoid overlapping chat
344 if(havail > vid_conheight - 70)
345 havail = vid_conheight - 70; // avoid overlapping HUD
347 centerprint_start_x = 0;
350 float forbiddenmin, forbiddenmax, allowedmin, allowedmax, preferred;
352 // here, the centerprint would cover the crosshair. REALLY BAD.
353 forbiddenmin = vid_conheight * 0.5 - h - 16;
354 forbiddenmax = vid_conheight * 0.5 + 16;
356 allowedmin = scoreboard_bottom;
357 allowedmax = havail - h;
358 preferred = (havail - h)/2;
361 // possible orderings (total: 4! / 4 = 6)
362 // allowedmin allowedmax forbiddenmin forbiddenmax
363 // forbiddenmin forbiddenmax allowedmin allowedmax
364 if(allowedmax < forbiddenmin || allowedmin > forbiddenmax)
366 // forbidden doesn't matter in this case
367 centerprint_start_y = bound(allowedmin, preferred, allowedmax);
369 // allowedmin forbiddenmin allowedmax forbiddenmax
370 else if(allowedmin < forbiddenmin && allowedmax < forbiddenmax)
372 centerprint_start_y = bound(allowedmin, preferred, forbiddenmin);
374 // allowedmin forbiddenmin forbiddenmax allowedmax
375 else if(allowedmin < forbiddenmin)
377 // make sure the forbidden zone is not covered
378 if(preferred > (forbiddenmin + forbiddenmax) * 0.5)
379 centerprint_start_y = bound(allowedmin, preferred, forbiddenmin);
381 centerprint_start_y = bound(forbiddenmax, preferred, allowedmin);
383 // forbiddenmin allowedmin allowedmax forbiddenmax
384 else if(allowedmax < forbiddenmax)
386 // it's better to leave the allowed zone (overlap with scoreboard) than
387 // to cover the forbidden zone (crosshair)
388 if(preferred > (forbiddenmin + forbiddenmax) * 0.5)
389 centerprint_start_y = forbiddenmax;
391 centerprint_start_y = forbiddenmin;
393 // forbiddenmin allowedmin forbiddenmax allowedmax
396 centerprint_start_y = bound(forbiddenmax, preferred, allowedmax);
399 centerprint_start_y =
402 max(scoreboard_bottom, vid_conheight * 0.5 + 16),
410 centerprint_expire = time + cvar("scr_centertime");
413 void HUD_DrawCenterPrint (void)
420 //if(time > centerprint_expire)
423 //a = bound(0, 1 - 2 * (time - centerprint_expire), 1);
424 a = bound(0, 1 - 4 * (time - centerprint_expire), 1);
425 //sz = 1.2 / (a + 0.2);
430 pos = centerprint_start;
431 for (i=0; i<centerprint_num; i = i + 1)
433 pos_x = (vid_conwidth - centerprint_width[i]) * 0.5;
434 ts = centerprint_messages[i];
437 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
438 drawcolorcodedstring(pos, ts, centerprint_fontsize, a, DRAWFLAG_NORMAL);
439 // - '0 0.5 0' * (sz - 1) * centerprint_fontsize_x - '0.5 0 0' * (sz - 1) * centerprint_width[i] * centerprint_fontsize_y, centerprint_fontsize * sz
440 pos_y = pos_y + centerprint_fontsize_y;
443 // half height for empty lines looks better
444 pos_y = pos_y + centerprint_fontsize_y * 0.5;
448 void drawstringright(vector position, string text, vector scale, vector rgb, float alpha, float flag)
450 position_x -= 2 / 3 * strlen(text) * scale_x;
451 drawstring(position, text, scale, rgb, alpha, flag);
454 void drawstringcenter(vector position, string text, vector scale, vector rgb, float alpha, float flag)
456 position_x = 0.5 * (vid_conwidth - 0.6025 * strlen(text) * scale_x);
457 drawstring(position, text, scale, rgb, alpha, flag);
460 // return the string of the given race place
461 string race_PlaceName(float pos) {
469 return strcat(ftos(pos), "th");
472 // return the string of the onscreen race timer
473 string MakeRaceString(float cp, float mytime, float histime, float lapdelta, string hisname)
481 if(histime == 0) // goal hit
485 timestr = strcat("+", ftos_decimals(+mytime, TIME_DECIMALS));
495 timestr = strcat("-", ftos_decimals(-mytime, TIME_DECIMALS));
501 lapstr = strcat(" (-", ftos(lapdelta), "L)");
504 else if(lapdelta < 0)
506 lapstr = strcat(" (+", ftos(-lapdelta), "L)");
510 else if(histime > 0) // anticipation
512 if(mytime >= histime)
513 timestr = strcat("+", ftos_decimals(mytime - histime, TIME_DECIMALS));
515 timestr = TIME_ENCODED_TOSTRING(TIME_ENCODE(histime));
522 cpname = "Start line";
524 cpname = "Finish line";
526 cpname = strcat("Intermediate ", ftos(cp));
528 cpname = "Finish line";
531 return strcat(col, cpname);
532 else if(hisname == "")
533 return strcat(col, cpname, " (", timestr, ")");
535 return strcat(col, cpname, " (", timestr, " ", strcat(hisname, col, lapstr), ")");
538 // Check if the given name already exist in race rankings? In that case, where? (otherwise return 0)
539 float race_CheckName(string net_name) {
541 for (i=RANKINGS_CNT-1;i>=0;--i)
542 if(grecordholder[i] == net_name)
554 void HUD_Panel_ExportCfg(string cfgname)
557 fh = fopen(strcat("hud_", cvar_string("hud_skin"), "_", cfgname, ".cfg"), FILE_WRITE);
560 fputs(fh, strcat("seta hud_skin \"", cvar_string("hud_skin"), "\"", "\n"));
561 fputs(fh, strcat("seta hud_bg \"", cvar_string("hud_bg"), "\"", "\n"));
562 fputs(fh, strcat("seta hud_bg_color \"", cvar_string("hud_bg_color"), "\"", "\n"));
563 fputs(fh, strcat("seta hud_bg_color_team \"", cvar_string("hud_bg_color_team"), "\"", "\n"));
564 fputs(fh, strcat("seta hud_bg_alpha \"", cvar_string("hud_bg_alpha"), "\"", "\n"));
565 fputs(fh, strcat("seta hud_bg_border \"", cvar_string("hud_bg_border"), "\"", "\n"));
566 fputs(fh, strcat("seta hud_bg_padding \"", cvar_string("hud_bg_padding"), "\"", "\n"));
567 fputs(fh, strcat("seta hud_fg_alpha) \"", cvar_string("hud_fg_alpha"), "\"", "\n"));
570 fputs(fh, strcat("seta hud_dock \"", cvar_string("hud_dock"), "\"", "\n"));
571 fputs(fh, strcat("seta hud_dock_color \"", cvar_string("hud_dock_color"), "\"", "\n"));
572 fputs(fh, strcat("seta hud_dock_color_team \"", cvar_string("hud_dock_color_team"), "\"", "\n"));
573 fputs(fh, strcat("seta hud_dock_alpha \"", ftos(cvar("hud_dock_alpha")), "\"", "\n"));
576 fputs(fh, strcat("seta hud_progressbar_alpha ", ftos(cvar("hud_progressbar_alpha")), "\n"));
577 fputs(fh, strcat("seta hud_progressbar_strength_color \"", cvar_string("hud_progressbar_strength_color"), "\"", "\n"));
578 fputs(fh, strcat("seta hud_progressbar_shield_color \"", cvar_string("hud_progressbar_shield_color"), "\"", "\n"));
579 fputs(fh, strcat("seta hud_progressbar_health_color \"", cvar_string("hud_progressbar_health_color"), "\"", "\n"));
580 fputs(fh, strcat("seta hud_progressbar_armor_color \"", cvar_string("hud_progressbar_armor_color"), "\"", "\n"));
581 fputs(fh, strcat("seta hud_progressbar_fuel_color \"", cvar_string("hud_progressbar_fuel_color"), "\"", "\n"));
582 fputs(fh, strcat("seta hud_progressbar_nexball_color \"", cvar_string("hud_progressbar_nexball_color"), "\"", "\n"));
585 // common cvars for all panels
587 for (i = 0; i < HUD_PANEL_NUM; ++i)
589 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), " ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i)))), "\n"));
590 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_pos \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_pos")), "\"", "\n"));
591 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_size \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_size")), "\"", "\n"));
592 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_bg \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_bg")), "\"", "\n"));
593 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_bg_color \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_bg_color")), "\"", "\n"));
594 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_bg_color_team \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_bg_color_team")), "\"", "\n"));
595 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_bg_alpha \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_bg_alpha")), "\"", "\n"));
596 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_bg_border \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_bg_border")), "\"", "\n"));
597 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_bg_padding \"", cvar_string(strcat("hud_", HUD_Panel_GetName(i), "_bg_padding")), "\"", "\n"));
600 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_accuracy_height ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_accuracy_height"))), "\n"));
601 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_accuracy_yellow ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_accuracy_yellow"))), "\n"));
604 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_onlycurrent ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_onlycurrent"))), "\n"));
607 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_flip ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_flip"))), "\n"));
608 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_mirror ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_mirror"))), "\n"));
611 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_flip ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_flip"))), "\n"));
612 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_mirror ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_mirror"))), "\n"));
615 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_flip ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_flip"))), "\n"));
618 fputs(fh, strcat("seta hud_", HUD_Panel_GetName(i), "_alreadyvoted_alpha ", ftos(cvar(strcat("hud_", HUD_Panel_GetName(i), "_alreadyvoted_alpha"))), "\n"));
624 print("^2Successfully exported to hud_", cvar_string("hud_skin"), "_", cfgname, ".cfg! (Note: It's saved in data/data/)\n");
629 vector HUD_Panel_GetMinSize(float id)
632 // note: please only set mySize_y on aspect ratio forced panels
635 mySize_x = 1/10; // at least 1/10 * height
636 mySize_y = 1/26; // at least 1/26 * width
639 if(cvar("hud_inventory_onlycurrent"))
640 mySize_y = 2/5; // 2/5 width
642 mySize_x = 0.7; // at least 0.7 * height
645 if(cvar("hud_healtharmor") == 2)
647 mySize_x = 4.35; // 4.35 * height, trial and error...
648 mySize_y = 0.01; // "unlimited" ;)
652 mySize_x = 1.2; // 12/10 * height, as panel cant support more than 10 entries...
653 mySize_y = 1/12; // 1/12 * width
656 mySize_y = 1/4.1; // 1/4.1 * width, trial and error...
659 mySize_y = 1/4; // 1/4 * width
662 mySize_y = 1/4; // 1/4 * width
665 mySize_y = 1/4; // 1/4 * width
668 mySize_y = 1/2; // 1/2 * width
671 mySize_y = 0.5898; // 0.5898 * width, reason: bg has weird dimensions...
674 if(!mySize_x && mySize_y)
675 mySize_x = 1/mySize_y;
679 // return active status of panel
680 float HUD_Panel_CheckActive(float id)
682 if (cvar_or(strcat("hud_", HUD_Panel_GetName(id)), 1))
687 // return size of given panel
688 vector HUD_Panel_GetSize(float id)
691 mySize = stov(cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_size")));
693 mySize = eX * mySize_x * vid_conwidth + eY * mySize_y * vid_conheight;
695 if(disable_menu_alphacheck == 2 && id == highlightedPanel)
697 vector menu_enable_maxsize, menu_enable_size;
698 menu_enable_maxsize = '0 0 0'; // shut up FTEQCC
699 menu_enable_maxsize_x = 0.3 * vid_conwidth;
700 menu_enable_maxsize_y = 0.18 * vid_conheight;
701 if(mySize_x > mySize_y)
703 if(mySize_y > menu_enable_maxsize_y)
705 menu_enable_size_y = menu_enable_maxsize_y;
706 menu_enable_size_x = mySize_x * (menu_enable_maxsize_y/mySize_y);
707 mySize = (1 - cvar("_menu_alpha")) * mySize + (cvar("_menu_alpha")) * menu_enable_size;
712 if(mySize_x > menu_enable_maxsize_x)
714 menu_enable_size_x = menu_enable_maxsize_x;
715 menu_enable_size_y = mySize_y * (menu_enable_maxsize_x/mySize_x);
716 mySize = (1 - cvar("_menu_alpha")) * mySize + (cvar("_menu_alpha")) * menu_enable_size;
723 // return pos of given panel
724 vector HUD_Panel_GetPos(float id)
727 pos = stov(cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_pos")));
729 pos = eX * pos_x * vid_conwidth + eY * pos_y * vid_conheight;
732 pos_x = vid_conwidth + pos_x;
734 pos_y = vid_conheight + pos_y;
736 if(disable_menu_alphacheck == 2 && id == highlightedPanel)
738 vector mySize, menu_enable_panelpos;
739 mySize = HUD_Panel_GetSize(id);
740 if(mySize_x > mySize_y)
741 menu_enable_panelpos = eX * 0.5 * vid_conwidth - eX * 0.5 * mySize_x + eY * 0.82 * vid_conheight;
743 menu_enable_panelpos = eY * 0.5 * vid_conheight - eY * 0.5 * mySize_y + eX * 0.7 * vid_conwidth;
744 pos = (1 - cvar("_menu_alpha")) * pos + (cvar("_menu_alpha")) * menu_enable_panelpos;
749 float HUD_Panel_GetBorder(float id)
752 border = cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg_border"));
754 border = cvar_string("hud_bg_border");
758 vector HUD_Panel_GetColor(float id)
764 // fetch per-panel color
765 if(teamplay && cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg_color_team")) != "") {
766 f = stof(getplayerkey(self.sv_entnum, "colors"));
767 color = vtos(colormapPaletteColor(mod(f, 16), 1) * cvar(strcat("hud_", HUD_Panel_GetName(id), "_bg_color_team")));
770 color = cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg_color"));
771 color_vec = stov(color);
773 if(color == "") { // fetch default color
774 color = cvar_string("hud_bg_color");
775 color_vec = stov(color);
776 if(teamplay && cvar(strcat("hud_bg_color_team"))) {
777 f = stof(getplayerkey(self.sv_entnum, "colors"));
778 color_vec = colormapPaletteColor(mod(f, 16), 1) * cvar("hud_bg_color_team");
780 else if(color == "shirt") {
781 f = stof(getplayerkey(self.sv_entnum, "colors"));
782 color_vec = colormapPaletteColor(floor(f / 16), 0);
784 else if(color == "pants") {
785 f = stof(getplayerkey(self.sv_entnum, "colors"));
786 color_vec = colormapPaletteColor(mod(f, 16), 1);
789 else if(color == "shirt") {
790 f = stof(getplayerkey(self.sv_entnum, "colors"));
791 color_vec = colormapPaletteColor(floor(f / 16), 0);
793 else if(color == "pants") {
794 f = stof(getplayerkey(self.sv_entnum, "colors"));
795 color_vec = colormapPaletteColor(mod(f, 16), 1);
800 vector HUD_Panel_Dock_GetColor(void)
805 color = cvar_string("hud_dock_color");
806 color_vec = stov(color);
807 if(teamplay && cvar(strcat("hud_dock_color_team"))) {
808 f = stof(getplayerkey(self.sv_entnum, "colors"));
809 color_vec = colormapPaletteColor(mod(f, 16), 1) * cvar("hud_dock_color_team");
811 else if(color == "shirt") {
812 f = stof(getplayerkey(self.sv_entnum, "colors"));
813 color_vec = colormapPaletteColor(floor(f / 16), 0);
815 else if(color == "pants") {
816 f = stof(getplayerkey(self.sv_entnum, "colors"));
817 color_vec = colormapPaletteColor(mod(f, 16), 1);
822 float HUD_Panel_GetBgAlpha(float id)
825 alpha = cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg_alpha"));
827 alpha = cvar_string("hud_bg_alpha");
829 if(hud_configure && disable_menu_alphacheck == 2 && highlightedPanel == id) // do not set a minalpha cap when showing the config dialog for this panel
830 alpha = ftos((1 - cvar("_menu_alpha")) * max(cvar("hud_configure_bg_minalpha"), stof(alpha)) + (cvar("_menu_alpha")) * stof(alpha));
831 else if(hud_configure)
832 alpha = ftos(max(cvar("hud_configure_bg_minalpha"), stof(alpha)));
834 if(hud_configure && !cvar(strcat("hud_", HUD_Panel_GetName(id)))) // ALWAYS show disabled panels at 0.25 alpha when in config mode
837 if(disable_menu_alphacheck == 2 && highlightedPanel == id) // don't fade this panel when showing the panel-specific menu dialog
840 return stof(alpha) * menu_fade_alpha;
843 float HUD_Panel_GetFgAlpha(float id)
846 alpha = hud_fg_alpha;
848 if(hud_configure && !cvar(strcat("hud_", HUD_Panel_GetName(id)))) // ALWAYS show disabled panels at 0.25 alpha when in config mode
851 if(disable_menu_alphacheck == 2 && highlightedPanel == id) // don't fade this panel when showing the panel-specific menu dialog
854 return alpha * menu_fade_alpha;
857 float HUD_Panel_GetPadding(float id)
860 padding = cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg_padding"));
862 padding = cvar_string("hud_bg_padding");
865 mySize = HUD_Panel_GetSize(id);
867 smallestsize = min(mySize_x, mySize_y);
868 return min(smallestsize/2 - 5, stof(padding));
871 // draw the background/borders
872 void HUD_Panel_DrawBg(float id, vector pos, vector mySize, float alpha)
874 if(!hud_configure && cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg")) == "0")
878 bg = cvar_string(strcat("hud_", HUD_Panel_GetName(id), "_bg"));
880 bg = cvar_string("hud_bg");
882 if(bg == "0" && hud_configure) {
883 bg = "border"; // we probably want to see a background in config mode at all times...
889 border = max(0.0000001, HUD_Panel_GetBorder(id)); // draw_BorderPicture does not like border = 0
892 color = HUD_Panel_GetColor(id);
895 alpha = HUD_Panel_GetBgAlpha(id) * alpha; // allow panels to fade in/out by passing an alpha value
897 alpha = HUD_Panel_GetBgAlpha(id);
899 draw_BorderPicture(pos - '1 1 0' * border, strcat("gfx/hud/", cvar_string("hud_skin"), "/", bg), mySize + '1 1 0' * 2 * border, color, alpha, '1 1 0' * (border/BORDER_MULTIPLIER));
903 void HUD_Panel_DrawProgressBar(vector pos, float vertical, vector mySize, vector color, float alpha, float drawflag)
905 //float drawsubpic(vector position, vector size, string pic, vector srcPosition, vector srcSize, vector rgb, float alpha, float flag) = #328;
907 pic = strcat("gfx/hud/", cvar_string("hud_skin"), "/");
909 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);
910 if(mySize_y/mySize_x > 2)
911 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);
912 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);
914 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);
915 if(mySize_x/mySize_y > 2)
916 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);
917 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);
921 vector HUD_Panel_GetProgressBarColor(string item)
923 return stov(cvar_string(strcat("hud_progressbar_", item, "_color")));
926 // check if move will result in panel being moved into another panel. If so, return snapped vector, otherwise return the given vector
927 vector HUD_Panel_CheckMove(float id, vector myPos, vector mySize)
938 myCenter = '0 0 0'; // shut up fteqcc, there IS a reference
939 targCenter = '0 0 0'; // shut up fteqcc, there IS a reference
941 for (i = 0; i < HUD_PANEL_NUM; ++i) {
942 if(i == id || !HUD_Panel_CheckActive(i))
945 targPos = HUD_Panel_GetPos(i) - '1 1 0' * HUD_Panel_GetBorder(id);
946 targSize = HUD_Panel_GetSize(i) + '2 2 0' * HUD_Panel_GetBorder(id);
948 if(myPos_y + mySize_y < targPos_y)
950 if(myPos_y > targPos_y + targSize_y)
953 if(myPos_x + mySize_x < targPos_x)
955 if(myPos_x > targPos_x + targSize_x)
958 // OK, there IS a collision.
960 myCenter_x = myPos_x + 0.5 * mySize_x;
961 myCenter_y = myPos_y + 0.5 * mySize_y;
963 targCenter_x = targPos_x + 0.5 * targSize_x;
964 targCenter_y = targPos_y + 0.5 * targSize_y;
966 if(myCenter_x < targCenter_x && myCenter_y < targCenter_y) // top left (of the target panel)
968 if(myPos_x + mySize_x - targPos_x < myPos_y + mySize_y - targPos_y) // push it to the side
969 myTarget_x = targPos_x - mySize_x;
970 else // push it upwards
971 myTarget_y = targPos_y - mySize_y;
973 else if(myCenter_x > targCenter_x && myCenter_y < targCenter_y) // top right
975 if(targPos_x + targSize_x - myPos_x < myPos_y + mySize_y - targPos_y) // push it to the side
976 myTarget_x = targPos_x + targSize_x;
977 else // push it upwards
978 myTarget_y = targPos_y - mySize_y;
980 else if(myCenter_x < targCenter_x && myCenter_y > targCenter_y) // bottom left
982 if(myPos_x + mySize_x - targPos_x < targPos_y + targSize_y - myPos_y) // push it to the side
983 myTarget_x = targPos_x - mySize_x;
984 else // push it downwards
985 myTarget_y = targPos_y + targSize_y;
987 else if(myCenter_x > targCenter_x && myCenter_y > targCenter_y) // bottom right
989 if(targPos_x + targSize_x - myPos_x < targPos_y + targSize_y - myPos_y) // push it to the side
990 myTarget_x = targPos_x + targSize_x;
991 else // push it downwards
992 myTarget_y = targPos_y + targSize_y;
999 void HUD_Panel_SetPos(float id, vector pos)
1002 oldPos = HUD_Panel_GetPos(id);
1005 mySize = HUD_Panel_GetSize(id);
1007 if(cvar("hud_configure_checkcollisions"))
1008 pos = HUD_Panel_CheckMove(id, pos, mySize);
1010 pos_x = bound(0, pos_x, vid_conwidth - mySize_x);
1011 pos_y = bound(0, pos_y, vid_conheight - mySize_y);
1013 if(cvar("hud_configure_grid"))
1015 pos_x = floor(pos_x/cvar("hud_configure_grid_x") + 0.5) * cvar("hud_configure_grid_x");
1016 pos_y = floor(pos_y/cvar("hud_configure_grid_y") + 0.5) * cvar("hud_configure_grid_y");
1019 if (pos_x + 0.5 * mySize_x > 0.5 * vid_conwidth)
1020 pos_x = pos_x - vid_conwidth;
1021 if (pos_y + 0.5 * mySize_y > 0.5 * vid_conheight)
1022 pos_y = pos_y - vid_conheight;
1025 s = strcat(ftos(pos_x/vid_conwidth), " ", ftos(pos_y/vid_conheight));
1027 cvar_set(strcat("hud_", HUD_Panel_GetName(id), "_pos"), s);
1030 // check if resize will result in panel being moved into another panel. If so, return snapped vector, otherwise return the given vector
1031 vector HUD_Panel_CheckResize(float id, vector myPos, vector mySize)
1042 myCenter = '0 0 0'; // shut up fteqcc, there IS a reference
1043 targCenter = '0 0 0'; // shut up fteqcc, there IS a reference
1045 for (i = 0; i < HUD_PANEL_NUM; ++i) {
1046 if(i == id || !HUD_Panel_CheckActive(i))
1049 targPos = HUD_Panel_GetPos(i);
1050 targSize = HUD_Panel_GetSize(i);
1052 targPos = HUD_Panel_GetPos(i) - '1 1 0' * HUD_Panel_GetBorder(id);
1053 targSize = HUD_Panel_GetSize(i) + '2 2 0' * HUD_Panel_GetBorder(id);
1055 if(myPos_y + mySize_y < targPos_y)
1057 if(myPos_y > targPos_y + targSize_y)
1060 if(myPos_x + mySize_x < targPos_x)
1062 if(myPos_x > targPos_x + targSize_x)
1065 // OK, there IS a collision.
1067 myCenter_x = myPos_x + 0.5 * mySize_x;
1068 myCenter_y = myPos_y + 0.5 * mySize_y;
1070 targCenter_x = targPos_x + 0.5 * targSize_x;
1071 targCenter_y = targPos_y + 0.5 * targSize_y;
1073 if(myCenter_x < targCenter_x && myCenter_y < targCenter_y) // top left (of target panel)
1075 if(myPos_x + mySize_x - targPos_x < myPos_y + mySize_y - targPos_y) // push it to the side
1076 myTarget_x = targPos_x - myPos_x;
1077 else // push it upwards
1078 myTarget_y = targPos_y - myPos_y;
1080 else if(myCenter_x > targCenter_x && myCenter_y < targCenter_y) // top right
1082 if(targPos_x + targSize_x - myPos_x < myPos_y + mySize_y - targPos_y) // push it to the side
1083 myTarget_x = targPos_x + targSize_x;
1084 else // push it upwards
1085 myTarget_y = targPos_y - myPos_y;
1087 else if(myCenter_x < targCenter_x && myCenter_y > targCenter_y) // bottom left
1089 if(myPos_x + mySize_x - targPos_x < targPos_y + targSize_y - myPos_y) // push it to the side
1090 myTarget_x = targPos_x - myPos_x;
1091 else // push it downwards
1092 myTarget_y = targPos_y + targSize_y;
1094 else if(myCenter_x > targCenter_x && myCenter_y > targCenter_y) // bottom right
1096 if(targPos_x + targSize_x - myPos_x < targPos_y + targSize_y - myPos_y) // push it to the side
1097 myTarget_x = targPos_x + targSize_x;
1098 else // push it downwards
1099 myTarget_y = targPos_y + targSize_y;
1106 void HUD_Panel_SetPosSize(float id, vector resizeorigin)
1108 vector mySize, myPos;
1111 if(resizeCorner == 1) {
1112 mySize_x = resizeorigin_x - (mousepos_x - panel_click_distance_x);
1113 mySize_y = resizeorigin_y - (mousepos_y - panel_click_distance_y);
1114 } else if(resizeCorner == 2) {
1115 mySize_x = mousepos_x + panel_click_distance_x - resizeorigin_x;
1116 mySize_y = panel_click_distance_y + resizeorigin_y - mousepos_y;
1117 } else if(resizeCorner == 3) {
1118 mySize_x = resizeorigin_x + panel_click_distance_x - mousepos_x;
1119 mySize_y = mousepos_y + panel_click_distance_y - resizeorigin_y;
1120 } else { // resizeCorner == 4
1121 mySize_x = mousepos_x - (resizeorigin_x - panel_click_distance_x);
1122 mySize_y = mousepos_y - (resizeorigin_y - panel_click_distance_y);
1125 // minimum panel size cap
1126 mySize_x = max(0.025 * vid_conwidth, mySize_x);
1127 mySize_y = max(0.025 * vid_conheight, mySize_y);
1129 if(id == 12) // 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.
1131 mySize_x = max(17 * cvar("con_chatsize"), mySize_x);
1132 mySize_y = max(2 * cvar("con_chatsize") + 2 * HUD_Panel_GetPadding(id), mySize_y);
1135 // cap against panel's own limits
1137 minSize = HUD_Panel_GetMinSize(id); // mySize_x at least minSize_x * mySize_y, and vice versa
1139 mySize_x = max(minSize_x * mySize_y, mySize_x);
1140 mySize_y = max(minSize_y * mySize_x, mySize_y);
1142 // collision testing|
1143 // -----------------+
1145 // we need to know pos at this stage, but it might still change later if we hit a screen edge/other panel (?)
1146 if(resizeCorner == 1) {
1147 myPos_x = resizeorigin_x - mySize_x;
1148 myPos_y = resizeorigin_y - mySize_y;
1149 } else if(resizeCorner == 2) {
1150 myPos_x = resizeorigin_x;
1151 myPos_y = resizeorigin_y - mySize_y;
1152 } else if(resizeCorner == 3) {
1153 myPos_x = resizeorigin_x - mySize_x;
1154 myPos_y = resizeorigin_y;
1155 } else { // resizeCorner == 4
1156 myPos_x = resizeorigin_x;
1157 myPos_y = resizeorigin_y;
1160 // left/top screen edges
1161 mySize_x = min(myPos_x + mySize_x, mySize_x);
1162 mySize_y = min(myPos_y + mySize_y, mySize_y);
1164 // bottom/right screen edges
1165 mySize_x = min(vid_conwidth - myPos_x, mySize_x);
1166 mySize_y = min(vid_conheight - myPos_y, mySize_y);
1168 if(cvar("hud_configure_checkcollisions")) {
1170 mySize = HUD_Panel_CheckResize(id, myPos, mySize);
1171 myPos = HUD_Panel_CheckMove(id, myPos, mySize); // touching myPos won't do anything... unless we make it change mySize somehow, see next line
1172 mySize = mySize - myPos + oldPos; // TODO: this is still borked in some situations :(
1175 if(cvar("hud_configure_grid"))
1177 mySize_x = floor(mySize_x/cvar("hud_configure_grid_x") + 0.5) * cvar("hud_configure_grid_x");
1178 mySize_y = floor(mySize_y/cvar("hud_configure_grid_y") + 0.5) * cvar("hud_configure_grid_y");
1181 // do another pos check, as size might have changed by now
1182 if(resizeCorner == 1) {
1183 myPos_x = resizeorigin_x - mySize_x;
1184 myPos_y = resizeorigin_y - mySize_y;
1185 } else if(resizeCorner == 2) {
1186 myPos_x = resizeorigin_x;
1187 myPos_y = resizeorigin_y - mySize_y;
1188 } else if(resizeCorner == 3) {
1189 myPos_x = resizeorigin_x - mySize_x;
1190 myPos_y = resizeorigin_y;
1191 } else { // resizeCorner == 4
1192 myPos_x = resizeorigin_x;
1193 myPos_y = resizeorigin_y;
1197 s = strcat(ftos(mySize_x/vid_conwidth), " ", ftos(mySize_y/vid_conheight));
1198 cvar_set(strcat("hud_", HUD_Panel_GetName(id), "_size"), s);
1200 s = strcat(ftos(myPos_x/vid_conwidth), " ", ftos(myPos_y/vid_conheight));
1201 cvar_set(strcat("hud_", HUD_Panel_GetName(id), "_pos"), s);
1205 float prevMouseClicked; // previous state
1206 float prevMouseClickedTime; // time during previous mouse click, to check for doubleclicks
1207 vector prevMouseClickedPos; // pos during previous mouse click, to check for doubleclicks
1210 float menu_enabled_time;
1211 float HUD_Panel_InputEvent(float bInputType, float nPrimary, float nSecondary)
1216 // allow console bind to work
1219 con_keys = findkeysforcommand("toggleconsole");
1220 keys = tokenize(con_keys);
1222 float hit_con_bind, i;
1223 for (i = 0; i < keys; ++i)
1225 if(nPrimary == stof(argv(i)))
1229 if(nPrimary == K_MOUSE1)
1231 if(bInputType == 0) { // key pressed
1235 else if(bInputType == 1) {// key released
1240 else if(nPrimary == K_ESCAPE)
1242 disable_menu_alphacheck = 1;
1244 menu_enabled_time = time;
1245 localcmd("menu_showhudexit\n");
1248 else if(hit_con_bind)
1251 return true; // Suppress ALL other input
1254 void HUD_Panel_Mouse()
1256 // 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
1257 if (menu_enabled == 0) // menu dialog closed, enable normal alpha stuff again
1258 disable_menu_alphacheck = 0;
1259 if (cvar("_menu_alpha") == 0 && time - menu_enabled_time > 0.5)
1263 print("Disable menu_alphacheck: ", ftos(disable_menu_alphacheck), "\n");
1264 print("Highlighted: ", ftos(highlightedPanel), "\n");
1265 print("Menu alpha: ", cvar_string("_menu_alpha"), "\n");
1268 if(mouseClicked == 0 && disable_menu_alphacheck != 2) { // don't reset these variables in disable_menu_alphacheck mode 2!
1269 highlightedPanel = -1;
1270 highlightedAction = 0;
1273 mousepos = mousepos + getmousepos();
1275 mousepos_x = bound(0, mousepos_x, vid_conwidth);
1276 mousepos_y = bound(0, mousepos_y, vid_conheight);
1278 drawpic(mousepos, strcat("gfx/menu/", cvar_string("menu_skin"), "/cursor.tga"), '32 32 0', '1 1 1', 1, DRAWFLAG_NORMAL);
1286 for(i = 0; i < HUD_PANEL_NUM; ++i)
1288 panelPos = HUD_Panel_GetPos(i);
1289 panelSize = HUD_Panel_GetSize(i);
1290 border = HUD_Panel_GetBorder(i);
1291 if(prevMouseClicked == 0) {
1293 if(mousepos_x >= panelPos_x && mousepos_y >= panelPos_y && mousepos_x <= panelPos_x + panelSize_x && mousepos_y <= panelPos_y + panelSize_y)
1295 highlightedPanel = i;
1296 highlightedAction = 1;
1298 // resize from topleft border
1299 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)
1301 highlightedPanel = i;
1302 highlightedAction = 2;
1305 // resize from topright border
1306 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)
1308 highlightedPanel = i;
1309 highlightedAction = 2;
1312 // resize from bottomleft border
1313 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)
1315 highlightedPanel = i;
1316 highlightedAction = 2;
1319 // resize from bottomright border
1320 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)
1322 highlightedPanel = i;
1323 highlightedAction = 2;
1328 if(highlightedPanel == i)
1330 if(prevMouseClicked == 0)
1332 if(highlightedAction == 1)
1333 panel_click_distance = mousepos - panelPos;
1334 else if(highlightedAction == 2)
1336 if(resizeCorner == 1) {
1337 panel_click_distance = mousepos - panelPos;
1338 panel_click_resizeorigin = panelPos + panelSize;
1339 } else if(resizeCorner == 2) {
1340 panel_click_distance_x = panelSize_x - mousepos_x + panelPos_x;
1341 panel_click_distance_y = mousepos_y - panelPos_y;
1342 panel_click_resizeorigin = panelPos + eY * panelSize_y;
1343 } else if(resizeCorner == 3) {
1344 panel_click_distance_x = mousepos_x - panelPos_x;
1345 panel_click_distance_y = panelSize_y - mousepos_y + panelPos_y;
1346 panel_click_resizeorigin = panelPos + eX * panelSize_x;
1347 } else if(resizeCorner == 4) {
1348 panel_click_distance = panelSize - mousepos + panelPos;
1349 panel_click_resizeorigin = panelPos;
1354 if(highlightedAction == 1)
1355 HUD_Panel_SetPos(i, mousepos - panel_click_distance);
1356 else if(highlightedAction == 2)
1357 HUD_Panel_SetPosSize(i, panel_click_resizeorigin);
1361 // doubleclick check
1362 if(time - prevMouseClickedTime < 0.4 && prevMouseClicked == 0 && prevMouseClickedPos == mousepos && highlightedPanel >= 0)
1364 mouseClicked = 0; // to prevent spam, I guess.
1365 disable_menu_alphacheck = 2;
1367 menu_enabled_time = time;
1368 localcmd("menu_showhudoptions ", ftos(highlightedPanel), "\n");
1371 if(prevMouseClicked == 0)
1373 prevMouseClickedTime = time;
1374 prevMouseClickedPos = mousepos;
1377 prevMouseClicked = mouseClicked;
1380 // Weapon icons (#0)
1382 float weaponspace[10];
1383 void HUD_WeaponIcons_Clear()
1386 for(idx = 0; idx < 10; ++idx)
1387 weaponspace[idx] = 0;
1390 entity weaponorder[WEP_MAXCOUNT];
1392 void weaponorder_swap(float i, float j, entity pass)
1396 weaponorder[i] = weaponorder[j];
1400 float weaponorder_cmp(float i, float j, entity pass)
1403 d = mod(weaponorder[i].impulse + 9, 10) - mod(weaponorder[j].impulse + 9, 10);
1406 d = weaponorder[i].weapon - weaponorder[j].weapon;
1410 void HUD_WeaponIcons(void)
1412 float id = HUD_PANEL_WEAPONICONS;
1413 float alpha, stat_weapons; // "constants"
1414 vector pos, mySize, accuracy_color;
1415 float i, weapid, fade, weapon_stats, weapon_hit, weapon_damage, weapon_cnt; // variables
1417 pos = HUD_Panel_GetPos(id);
1418 mySize = HUD_Panel_GetSize(id);
1420 stat_weapons = getstati(STAT_WEAPONS);
1421 for(i = WEP_FIRST; i <= WEP_LAST; ++i)
1423 self = get_weaponinfo(i);
1424 if(self.weapons && (self.impulse >= 0) && (stat_weapons & self.weapons) || hud_configure)
1426 weaponorder[weapon_cnt] = self;
1430 heapsort(weapon_cnt, weaponorder_swap, weaponorder_cmp, world);
1432 HUD_Panel_DrawBg(id, pos, mySize, 0);
1434 padding = HUD_Panel_GetPadding(id);
1437 pos += '1 1 0' * padding;
1438 mySize -= '2 2 0' * padding;
1442 weapon_stats = getstati(STAT_DAMAGE_HITS);
1443 weapon_number = weapon_stats & 63;
1444 weapon_hits[weapon_number-WEP_FIRST] = floor(weapon_stats / 64);
1446 weapon_stats = getstati(STAT_DAMAGE_FIRED);
1447 weapon_number = weapon_stats & 63;
1448 weapon_fired[weapon_number-WEP_FIRST] = floor(weapon_stats / 64);
1450 if(cvar_or("hud_weaponicons_fade", 1))
1452 fade = 3.2 - 2 * (time - weapontime);
1453 fade = bound(0.7, fade, 1);
1458 HUD_WeaponIcons_Clear();
1460 float rows, columns;
1461 rows = mySize_y/mySize_x;
1462 rows = bound(1, floor((sqrt(4 * (2/1) * rows * WEP_COUNT + rows * rows) + rows + 0.5) / 2), WEP_COUNT);
1463 // ^^^ weapon icon aspect goes here
1465 columns = ceil(WEP_COUNT/rows);
1467 for(i = 0; i < weapon_cnt; ++i)
1469 self = weaponorder[i];
1470 if((self.weapons && (self.impulse >= 0) && (stat_weapons & self.weapons)) || hud_configure)
1472 weapid = self.impulse;
1474 alpha = (self.weapon == activeweapon) ? 1 : 0.6;
1476 weapon_hit = weapon_hits[self.weapon-WEP_FIRST];
1477 weapon_damage = weapon_fired[self.weapon-WEP_FIRST];
1479 // draw background behind currently selected weapon
1480 if(self.weapon == activeweapon)
1481 drawpic_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 * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1483 // draw the weapon accuracy on the HUD
1484 if(hud_accuracy_hud && !(gametype == GAME_RACE || gametype == GAME_CTS))
1487 weapon_stats = floor(100 * weapon_hit / weapon_damage);
1489 accuracy_color = HUD_AccuracyColor(weapon_stats);
1491 drawpic_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), accuracy_color, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1494 // draw the weapon icon
1495 drawpic_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 * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1497 if(cvar_or("hud_weaponicons_number", 1))
1498 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', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1513 float GetAmmoStat(float i)
1517 case 0: return STAT_SHELLS;
1518 case 1: return STAT_NAILS;
1519 case 2: return STAT_ROCKETS;
1520 case 3: return STAT_CELLS;
1521 case 4: return STAT_FUEL;
1526 float GetAmmoItemCode(float i)
1530 case 0: return IT_SHELLS;
1531 case 1: return IT_NAILS;
1532 case 2: return IT_ROCKETS;
1533 case 3: return IT_CELLS;
1534 case 4: return IT_FUEL;
1539 string GetAmmoPicture(float i)
1543 case 0: return "ammo_shells";
1544 case 1: return "ammo_bullets";
1545 case 2: return "ammo_rockets";
1546 case 3: return "ammo_cells";
1547 case 4: return "ammo_fuel";
1552 void HUD_Inventory(void)
1554 float id = HUD_PANEL_INVENTORY;
1558 vector pos, mySize, mysize, mypos;
1559 pos = HUD_Panel_GetPos(id);
1560 mySize = HUD_Panel_GetSize(id);
1562 HUD_Panel_DrawBg(id, pos, mySize, 0);
1564 padding = HUD_Panel_GetPadding(id);
1567 pos += '1 1 0' * padding;
1568 mySize -= '2 2 0' * padding;
1572 stat_items = getstati(STAT_ITEMS);
1573 for (i = 0; i < 4; ++i) {
1575 a = getstati(GetAmmoStat(i)); // how much ammo do we have of type i?
1579 if(cvar("hud_inventory_onlycurrent")) {
1582 if (stat_items & GetAmmoItemCode(i) || hud_configure) {
1583 drawpic_skin(pos, GetAmmoPicture(i), '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1585 HUD_DrawXNum(pos + eX * mySize_y + eY * 0.25 * mySize_y, a, strlen(ftos(a)), 0, 0.5 * mySize_y, '0.7 0 0', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1587 HUD_DrawXNum(pos + eX * mySize_y + eY * 0.25 * mySize_y, a, strlen(ftos(a)), 0, 0.5 * mySize_y, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1593 if(mySize_x/mySize_y >= 10) { // arrange horizontally
1595 case 0: mypos_x = pos_x; mypos_y = pos_y; break; // shells
1596 case 1: mypos_x = pos_x + 0.25 * mySize_x; mypos_y = pos_y; break; // bullets
1597 case 2: mypos_x = pos_x + 0.5 * mySize_x; mypos_y = pos_y; break; // rockets
1598 case 3: mypos_x = pos_x + 0.75 * mySize_x; mypos_y = pos_y; break; // cells
1600 mysize_x = 0.25 * mySize_x;
1601 mysize_y = mySize_y;
1602 } else if(mySize_x/mySize_y >= 2.5) { // arrange in a 2x2 grid
1604 case 0: mypos_x = pos_x + 0.5 * mySize_x; mypos_y = pos_y + 0.5 * mySize_y; break; // shells
1605 case 1: mypos_x = pos_x + 0.5 * mySize_x; mypos_y = pos_y; break; // bullets
1606 case 2: mypos_x = pos_x; mypos_y = pos_y + 0.5 * mySize_y; break; // rockets
1607 case 3: mypos_x = pos_x; mypos_y = pos_y; break; // cells
1609 mysize_x = 0.5 * mySize_x;
1610 mysize_y = 0.5 * mySize_y;
1611 } else { // arrange vertically
1613 case 0: mypos_x = pos_x; mypos_y = pos_y; break; // shells
1614 case 1: mypos_x = pos_x; mypos_y = pos_y + 0.25 * mySize_y; break; // bullets
1615 case 2: mypos_x = pos_x; mypos_y = pos_y + 0.5 * mySize_y; break; // rockets
1616 case 3: mypos_x = pos_x; mypos_y = pos_y + 0.75 * mySize_y; break; // cells
1618 mysize_x = mySize_x;
1619 mysize_y = 0.25 * mySize_y;
1622 if (stat_items & GetAmmoItemCode(i))
1623 drawpic_skin(mypos, "ammo_current_bg", mysize, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1624 drawpic_skin(mypos + eY * 0.05 * mysize_y, GetAmmoPicture(i), '1 1 0' * 0.8 * mysize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1626 if(stat_items & GetAmmoItemCode(i))
1627 HUD_DrawXNum(mypos + eX * 0.8 * mysize_y + eY * 0.25 * mysize_y, a, strlen(ftos(a)), 0, 0.5 * mysize_y, '0.7 0 0', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1629 HUD_DrawXNum(mypos + eX * 0.8 * mysize_y + eY * 0.25 * mysize_y, a, strlen(ftos(a)), 0, 0.5 * mysize_y, '0.7 0 0', 0, 0, HUD_Panel_GetFgAlpha(id) * 0.7, DRAWFLAG_NORMAL);
1631 if(stat_items & GetAmmoItemCode(i))
1632 HUD_DrawXNum(mypos + eX * 0.8 * mysize_y + eY * 0.25 * mysize_y, a, strlen(ftos(a)), 0, 0.5 * mysize_y, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1634 HUD_DrawXNum(mypos + eX * 0.8 * mysize_y + eY * 0.25 * mysize_y, a, strlen(ftos(a)), 0, 0.5 * mysize_y, '0.7 0.7 0.7', 0, 0, HUD_Panel_GetFgAlpha(id) * 0.7, DRAWFLAG_NORMAL);
1644 void HUD_Powerups(void) {
1645 float id = HUD_PANEL_POWERUPS;
1647 stat_items = getstati(STAT_ITEMS);
1651 if not(stat_items & IT_STRENGTH)
1652 if not(stat_items & IT_INVINCIBLE)
1655 if (getstati(STAT_HEALTH) <= 0)
1660 pos = HUD_Panel_GetPos(id);
1661 mySize = HUD_Panel_GetSize(id);
1663 HUD_Panel_DrawBg(id, pos, mySize, 0);
1665 padding = HUD_Panel_GetPadding(id);
1668 pos += '1 1 0' * padding;
1669 mySize -= '2 2 0' * padding;
1672 float strength_time, shield_time;
1674 strength_time = bound(0, getstatf(STAT_STRENGTH_FINISHED) - time, 99);
1675 shield_time = bound(0, getstatf(STAT_INVINCIBLE_FINISHED) - time, 99);
1685 vector barpos, barsize;
1689 string leftname, rightname;
1690 float leftcnt, rightcnt;
1691 float leftexact, rightexact;
1692 float leftalpha, rightalpha;
1693 if (cvar(strcat("hud_", HUD_Panel_GetName(id), "_flip"))) {
1694 leftname = "strength";
1695 leftcnt = ceil(strength_time);
1696 leftexact = strength_time;
1698 rightname = "shield";
1699 rightcnt = ceil(shield_time);
1700 rightexact = shield_time;
1702 leftname = "shield";
1703 leftcnt = ceil(shield_time);
1704 leftexact = shield_time;
1706 rightname = "strength";
1707 rightcnt = ceil(strength_time);
1708 rightexact = strength_time;
1710 leftalpha = bound(0, leftexact, 1);
1711 rightalpha = bound(0, rightexact, 1);
1713 if (mySize_x/mySize_y > 4)
1717 len = strlen(ftos(leftcnt));
1719 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1720 barpos = pos + eX * 0.5 * mySize_x - eX * 0.5 * mySize_x * min(1, leftcnt/30);
1721 barsize = eX * 0.5 * mySize_x * min(1, leftcnt/30) + eY * mySize_y;
1722 picpos = pos + eX * 0.5 * mySize_x - eX * mySize_y;
1723 numpos = picpos - eX * 2 * 0.5 * mySize_y + eX * (2-len) * 0.5 * mySize_y + eY * 0.25 * mySize_y;
1726 barsize = eX * 0.5 * mySize_x * min(1, leftcnt/30) + eY * mySize_y;
1728 numpos = picpos + eX * mySize_y - eX * (2-len) * 0.5 * mySize_y + eY * 0.25 * mySize_y;
1731 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1733 drawpic_skin_expanding_two(picpos, leftname, '1 1 0' * mySize_y, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE, bound(0, (leftcnt - leftexact) / 0.5, 1));
1735 drawpic_skin(picpos, leftname, '1 1 0' * mySize_y, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1736 HUD_DrawXNum(numpos, leftcnt, 2, 0, 0.5 * mySize_y, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1741 len = strlen(ftos(rightcnt));
1743 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1744 barpos = pos + eX * 0.5 * mySize_x;
1745 barsize = eX * 0.5 * mySize_x * min(1, rightcnt/30) + eY * mySize_y;
1746 picpos = pos + eX * 0.5 * mySize_x;
1747 numpos = picpos + eX * mySize_y - eX * (2-len) * 0.5 * mySize_y + eY * 0.25 * mySize_y;
1749 barpos = pos + eX * mySize_x - eX * 0.5 * mySize_x * min(1, rightcnt/30);
1750 barsize = eX * 0.5 * mySize_x * min(1, rightcnt/30) + eY * mySize_y;
1751 picpos = pos + eX * mySize_x - eX * mySize_y;
1752 numpos = picpos - eX * mySize_y + eY * 0.25 * mySize_y;
1755 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1757 drawpic_skin_expanding_two(picpos, rightname, '1 1 0' * mySize_y, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE, bound(0, (rightcnt - rightexact) / 0.5, 1));
1759 drawpic_skin(picpos, rightname, '1 1 0' * mySize_y, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1760 HUD_DrawXNum(numpos, rightcnt, 2, 0, 0.5 * mySize_y, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1763 else if (mySize_x/mySize_y > 1.5)
1767 len = strlen(ftos(leftcnt));
1769 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1770 barpos = pos + eX * mySize_x - eX * mySize_x * min(1, leftcnt/30);
1771 barsize = eX * mySize_x * min(1, leftcnt/30) + eY * 0.5 * mySize_y;
1772 picpos = pos + eX * mySize_x - eX * 0.5 * mySize_y;
1773 numpos = picpos - eX * len * 0.5 * mySize_y;
1776 barsize = eX * mySize_x * min(1, leftcnt/30) + eY * 0.5 * mySize_y;
1778 numpos = picpos + eX * 0.5 * mySize_y;
1781 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1783 drawpic_skin_expanding_two(picpos, leftname, '0.5 0.5 0' * mySize_y, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE, bound(0, (leftcnt - leftexact) / 0.5, 1));
1785 drawpic_skin(picpos, leftname, '0.5 0.5 0' * mySize_y, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1786 HUD_DrawXNum(numpos, leftcnt, len, 0, 0.5 * mySize_y, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1791 len = strlen(ftos(rightcnt));
1793 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1794 barpos = pos + eX * mySize_x - eX * mySize_x * min(1, rightcnt/30) + eY * 0.5 * mySize_y;
1795 barsize = eX * mySize_x * min(1, rightcnt/30) + eY * 0.5 * mySize_y;
1796 picpos = pos + eX * mySize_x - eX * 0.5 * mySize_y + eY * 0.5 * mySize_y;
1797 numpos = picpos - eX * len * 0.5 * mySize_y;
1799 barpos = pos + eY * 0.5 * mySize_y;
1800 barsize = eX * mySize_x * min(1, rightcnt/30) + eY * 0.5 * mySize_y;
1801 picpos = pos + eY * 0.5 * mySize_y;
1802 numpos = picpos + eX * 0.5 * mySize_y;
1805 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1807 drawpic_skin_expanding_two(picpos, rightname, '0.5 0.5 0' * mySize_y, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE, bound(0, (rightcnt - rightexact) / 0.5, 1));
1809 drawpic_skin(picpos, rightname, '0.5 0.5 0' * mySize_y, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1810 HUD_DrawXNum(numpos, rightcnt, len, 0, 0.5 * mySize_y, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1817 len = strlen(ftos(leftcnt));
1819 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1821 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, leftcnt/30);
1822 picpos = pos + eX * 0.05 * mySize_x;
1823 numpos = pos + eX * ((2-len)/2) * 0.25 * mySize_x + eY * 0.4 * mySize_x;
1825 barpos = pos + eY * mySize_y - eY * mySize_y * min(1, leftcnt/30);
1826 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, leftcnt/30);
1827 picpos = pos + eX * 0.05 * mySize_x + eY * mySize_y - eY * 0.65 * mySize_x;
1828 numpos = pos + eX * ((2-len)/2) * 0.25 * mySize_x + eY * mySize_y - eY * 0.25 * mySize_x;
1831 HUD_Panel_DrawProgressBar(barpos, 1, barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1833 drawpic_skin_expanding_two(picpos, leftname, '0.4 0.4 0' * mySize_x, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE, bound(0, (leftcnt - leftexact) / 0.5, 1));
1835 drawpic_skin(picpos, leftname, '0.4 0.4 0' * mySize_x, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1836 HUD_DrawXNum(numpos, leftcnt, len, 0, 0.25 * mySize_x, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1841 len = strlen(ftos(rightcnt));
1843 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1844 barpos = pos + eX * 0.5 * mySize_x;
1845 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, rightcnt/30);
1846 picpos = pos + eX * 0.05 * mySize_x + eX * 0.5 * mySize_x;
1847 numpos = pos + eX * ((2-len)/2) * 0.25 * mySize_x + eY * 0.4 * mySize_x + eX * 0.5 * mySize_x;
1849 barpos = pos + eY * mySize_y - eY * mySize_y * min(1, rightcnt/30) + eX * 0.5 * mySize_x;
1850 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, rightcnt/30);
1851 picpos = pos + eX * 0.05 * mySize_x + eY * mySize_y - eY * 0.65 * mySize_x + eX * 0.5 * mySize_x;
1852 numpos = pos + eX * ((2-len)/2) * 0.25 * mySize_x + eY * mySize_y - eY * 0.25 * mySize_x + eX * 0.5 * mySize_x;
1855 HUD_Panel_DrawProgressBar(barpos, 1, barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1857 drawpic_skin_expanding_two(picpos, rightname, '0.4 0.4 0' * mySize_x, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE, bound(0, (rightcnt - rightexact) / 0.5, 1));
1859 drawpic_skin(picpos, rightname, '0.4 0.4 0' * mySize_x, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1860 HUD_DrawXNum(numpos, rightcnt, len, 0, 0.25 * mySize_x, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1865 // Health/armor (#3)
1867 void HUD_HealthArmor(void)
1869 float id = HUD_PANEL_HEALTHARMOR;
1871 pos = HUD_Panel_GetPos(id);
1872 mySize = HUD_Panel_GetSize(id);
1874 HUD_Panel_DrawBg(id, pos, mySize, 0);
1876 padding = HUD_Panel_GetPadding(id);
1879 pos += '1 1 0' * padding;
1880 mySize -= '2 2 0' * padding;
1883 float armor, health;
1884 armor = getstati(STAT_ARMOR);
1885 health = getstati(STAT_HEALTH);
1888 fuel = getstati(GetAmmoStat(4)); // how much fuel do we have?
1901 vector barpos, barsize;
1905 if(cvar("hud_healtharmor") == 2) // combined health and armor display
1908 v = healtharmor_maxdamage(health, armor, armorblockpercent);
1913 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1914 barpos = pos + eX * mySize_x - eX * mySize_x * min(1, x/400);
1915 barsize = eX * mySize_x * min(1, x/400) + eY * mySize_y;
1917 numpos = picpos + eX * 1.5 * mySize_y;
1920 barsize = eX * mySize_x * min(1, x/400) + eY * mySize_y;
1921 picpos = pos + eX * 3 * mySize_y;
1925 if(v_z) // NOT fully armored
1927 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor("health"), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1928 drawpic_skin(picpos, "health", '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1930 drawpic_skin(picpos + eX * mySize_y, "armor", '0.5 0.5 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id) * armor / health, DRAWFLAG_NORMAL);
1934 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor("armor"), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1935 drawpic_skin(picpos + eX * mySize_y, "health", '0.5 0.5 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id) * health / armor, DRAWFLAG_NORMAL);
1937 drawpic_skin(picpos, "armor", '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
1939 HUD_DrawXNum_Colored(numpos, x, 3, mySize_y, HUD_Panel_GetFgAlpha(id)); // draw the combined health and armor
1942 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1943 barpos = pos + eX * mySize_x - eX * mySize_x * min(1, fuel/100);
1944 barsize = eX * mySize_x * min(1, fuel/100) + eY * 0.2 * mySize_y;
1947 barsize = eX * mySize_x * min(1, fuel/100) + eY * 0.2 * mySize_y;
1950 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor("fuel"), HUD_Panel_GetFgAlpha(id) * 0.8, DRAWFLAG_NORMAL);
1955 string leftname, rightname;
1956 float leftcnt, rightcnt;
1957 float leftactive, rightactive;
1958 float leftalpha, rightalpha;
1959 if (cvar(strcat("hud_", HUD_Panel_GetName(id), "_flip"))) { // old style layout with armor left/top of health
1964 leftalpha = min((armor+10)/55, 1);
1966 rightname = "health";
1971 leftname = "health";
1976 rightname = "armor";
1980 rightalpha = min((armor+10)/55, 1);
1983 if (mySize_x/mySize_y > 5)
1987 len = strlen(ftos(leftcnt));
1989 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
1990 barpos = pos + eX * 0.5 * mySize_x - eX * 0.5 * mySize_x * min(1, leftcnt/200);
1991 barsize = eX * 0.5 * mySize_x * min(1, leftcnt/200) + eY * mySize_y;
1992 picpos = pos + eX * 0.5 * mySize_x - eX * mySize_y;
1993 numpos = picpos - eX * 3 * 0.5 * mySize_y + eX * (3-len) * 0.5 * mySize_y + eY * 0.25 * mySize_y;
1996 barsize = eX * 0.5 * mySize_x * min(1, leftcnt/200) + eY * mySize_y;
1998 numpos = picpos + eX * mySize_y + eY * 0.25 * mySize_y;
2001 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2002 drawpic_skin(picpos, leftname, '1 1 0' * mySize_y, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2003 HUD_DrawXNum_Colored(numpos, leftcnt, len, 0.5 * mySize_y, HUD_Panel_GetFgAlpha(id));
2008 len = strlen(ftos(rightcnt));
2010 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
2011 barpos = pos + eX * 0.5 * mySize_x;
2012 barsize = eX * 0.5 * mySize_x * min(1, rightcnt/200) + eY * mySize_y;
2013 picpos = pos + eX * 0.5 * mySize_x;
2014 numpos = picpos + eX * mySize_y - eX * (3-len) * 0.5 * mySize_y + eY * 0.25 * mySize_y;
2016 barpos = pos + eX * mySize_x - eX * 0.5 * mySize_x * min(1, rightcnt/200);
2017 barsize = eX * 0.5 * mySize_x * min(1, rightcnt/200) + eY * mySize_y;
2018 picpos = pos + eX * mySize_x - eX * mySize_y;
2019 numpos = picpos - eX * 1.5 * mySize_y + eY * 0.25 * mySize_y;
2022 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2023 drawpic_skin(picpos, rightname, '1 1 0' * mySize_y, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2024 HUD_DrawXNum_Colored(numpos, rightcnt, 3, 0.5 * mySize_y, HUD_Panel_GetFgAlpha(id));
2027 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
2028 barpos = pos + eX * mySize_x - eX * mySize_x * min(1, fuel/100);
2029 barsize = eX * mySize_x * min(1, fuel/100) + eY * 0.2 * mySize_y;
2032 barsize = eX * mySize_x * min(1, fuel/100) + eY * 0.2 * mySize_y;
2035 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor("fuel"), HUD_Panel_GetFgAlpha(id) * 0.8, DRAWFLAG_NORMAL);
2037 else if (mySize_x/mySize_y > 2)
2041 len = strlen(ftos(leftcnt));
2043 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
2044 barpos = pos + eX * mySize_x - eX * mySize_x * min(1, leftcnt/200);
2045 barsize = eX * mySize_x * min(1, leftcnt/200) + eY * 0.5 * mySize_y;
2046 picpos = pos + eX * mySize_x - eX * 0.5 * mySize_y;
2047 numpos = picpos - eX * len * 0.5 * mySize_y;
2050 barsize = eX * mySize_x * min(1, leftcnt/200) + eY * 0.5 * mySize_y;
2052 numpos = picpos + eX * 0.5 * mySize_y;
2055 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2056 drawpic_skin(picpos, leftname, '0.5 0.5 0' * mySize_y, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2057 HUD_DrawXNum_Colored(numpos, leftcnt, len, 0.5 * mySize_y, HUD_Panel_GetFgAlpha(id));
2062 len = strlen(ftos(rightcnt));
2064 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
2065 barpos = pos + eX * mySize_x - eX * mySize_x * min(1, rightcnt/200) + eY * 0.5 * mySize_y;
2066 barsize = eX * mySize_x * min(1, rightcnt/200) + eY * 0.5 * mySize_y;
2067 picpos = pos + eX * mySize_x - eX * 0.5 * mySize_y + eY * 0.5 * mySize_y;
2068 numpos = picpos - eX * len * 0.5 * mySize_y;
2070 barpos = pos + eY * 0.5 * mySize_y;
2071 barsize = eX * mySize_x * min(1, rightcnt/200) + eY * 0.5 * mySize_y;
2072 picpos = pos + eY * 0.5 * mySize_y;
2073 numpos = picpos + eX * 0.5 * mySize_y;
2076 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2077 drawpic_skin(picpos, rightname, '0.5 0.5 0' * mySize_y, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2078 HUD_DrawXNum_Colored(numpos, rightcnt, len, 0.5 * mySize_y, HUD_Panel_GetFgAlpha(id));
2081 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
2082 barpos = pos + eX * mySize_x - eX * mySize_x * min(1, fuel/100);
2083 barsize = eX * mySize_x * min(1, fuel/100) + eY * 0.1 * mySize_y;
2086 barsize = eX * mySize_x * min(1, fuel/100) + eY * 0.1 * mySize_y;
2089 HUD_Panel_DrawProgressBar(barpos, 0, barsize, HUD_Panel_GetProgressBarColor("fuel"), HUD_Panel_GetFgAlpha(id) * 0.8, DRAWFLAG_NORMAL);
2095 len = strlen(ftos(leftcnt));
2097 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
2099 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, leftcnt/200);
2100 picpos = pos + eX * 0.05 * mySize_x;
2101 numpos = pos + eX * ((3-len)/2) * 0.25 * mySize_x + eY * 0.4 * mySize_x;
2103 barpos = pos + eY * mySize_y - eY * mySize_y * min(1, leftcnt/200);
2104 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, leftcnt/200);
2105 picpos = pos + eX * 0.05 * mySize_x + eY * mySize_y - eY * 0.566 * mySize_x;
2106 numpos = pos + eX * ((3-len)/2) * 0.25 * mySize_x + eY * mySize_y - eY * 0.166 * mySize_x;
2109 HUD_Panel_DrawProgressBar(barpos, 1, barsize, HUD_Panel_GetProgressBarColor(leftname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2110 drawpic_skin(picpos, leftname, '0.4 0.4 0' * mySize_x, '1 1 1', leftalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2111 HUD_DrawXNum_Colored(numpos, leftcnt, len, 0.166 * mySize_x, HUD_Panel_GetFgAlpha(id));
2116 len = strlen(ftos(rightcnt));
2118 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
2119 barpos = pos + eX * 0.5 * mySize_x;
2120 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, rightcnt/200);
2121 picpos = pos + eX * 0.05 * mySize_x + eX * 0.5 * mySize_x;
2122 numpos = pos + eX * ((3-len)/2) * 0.25 * mySize_x + eY * 0.4 * mySize_x + eX * 0.5 * mySize_x;
2124 barpos = pos + eY * mySize_y - eY * mySize_y * min(1, rightcnt/200) + eX * 0.5 * mySize_x;
2125 barsize = eX * 0.5 * mySize_x + eY * mySize_y * min(1, rightcnt/200);
2126 picpos = pos + eX * 0.05 * mySize_x + eY * mySize_y - eY * 0.566 * mySize_x + eX * 0.5 * mySize_x;
2127 numpos = pos + eX * ((3-len)/2) * 0.25 * mySize_x + eY * mySize_y - eY * 0.166 * mySize_x + eX * 0.5 * mySize_x;
2130 HUD_Panel_DrawProgressBar(barpos, 1, barsize, HUD_Panel_GetProgressBarColor(rightname), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2131 drawpic_skin(picpos, rightname, '0.4 0.4 0' * mySize_x, '1 1 1', rightalpha * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2132 HUD_DrawXNum_Colored(numpos, rightcnt, len, 0.166 * mySize_x, HUD_Panel_GetFgAlpha(id));
2135 if(cvar(strcat("hud_", HUD_Panel_GetName(id), "_mirror"))) {
2137 barsize = eX * 0.05 * mySize_x + eY * mySize_y * min(1, fuel/100);
2139 barpos = pos + eY * mySize_y - eY * mySize_y * min(1, fuel/100);
2140 barsize = eX * 0.05 * mySize_x + eY * mySize_y * min(1, fuel/100);
2143 HUD_Panel_DrawProgressBar(barpos, 1, barsize, HUD_Panel_GetProgressBarColor("fuel"), HUD_Panel_GetFgAlpha(id) * 0.8, DRAWFLAG_NORMAL);
2149 // Notification area (#4)
2152 string Weapon_SuicideMessage(float deathtype)
2154 w_deathtype = deathtype;
2155 get_weaponinfo(DEATH_WEAPONOF(deathtype)).weapon_func(WR_SUICIDEMESSAGE);
2156 return w_deathtypestring;
2159 string Weapon_KillMessage(float deathtype)
2161 w_deathtype = deathtype;
2162 get_weaponinfo(DEATH_WEAPONOF(deathtype)).weapon_func(WR_KILLMESSAGE);
2163 return w_deathtypestring;
2166 float killnotify_times[10];
2167 float killnotify_deathtype[10];
2168 string killnotify_attackers[10];
2169 string killnotify_victims[10];
2170 void HUD_KillNotify_Push(string attacker, string victim, float wpn)
2173 for (i = 9; i > 0; --i) {
2174 killnotify_times[i] = killnotify_times[i-1];
2175 killnotify_deathtype[i] = killnotify_deathtype[i-1];
2176 if(killnotify_attackers[i])
2177 strunzone(killnotify_attackers[i]);
2178 killnotify_attackers[i] = strzone(killnotify_attackers[i-1]);
2179 if(killnotify_victims[i])
2180 strunzone(killnotify_victims[i]);
2181 killnotify_victims[i] = strzone(killnotify_victims[i-1]);
2183 killnotify_times[0] = time;
2184 killnotify_deathtype[0] = wpn;
2185 if(killnotify_attackers[0])
2186 strunzone(killnotify_attackers[0]);
2187 killnotify_attackers[0] = strzone(attacker);
2188 if(killnotify_victims[0])
2189 strunzone(killnotify_victims[0]);
2190 killnotify_victims[0] = strzone(victim);
2193 void HUD_KillNotify(string s1, string s2, string s3, float type, float msg)
2196 if(msg == MSG_SUICIDE) {
2197 HUD_KillNotify_Push(s1, "", DEATH_KILL);
2200 w = DEATH_WEAPONOF(type);
2202 if (!HUD_Panel_CheckActive(4) || cvar("hud_notify_print"))
2203 print("^1", s1, "^1 ", Weapon_SuicideMessage(type), "\n");
2205 else if (type == DEATH_KILL)
2206 print ("^1",s1, "^1 couldn't take it anymore\n");
2207 else if (type == DEATH_ROT)
2208 print ("^1",s1, "^1 died\n");
2209 else if (type == DEATH_NOAMMO)
2210 print ("^7",s1, "^7 committed suicide. What's the point of living without ammo?\n");
2211 else if (type == DEATH_CAMP)
2212 print ("^1",s1, "^1 thought they found a nice camping ground\n");
2213 else if (type == DEATH_MIRRORDAMAGE)
2214 print ("^1",s1, "^1 didn't become friends with the Lord of Teamplay\n");
2215 else if (type == DEATH_CHEAT)
2216 print ("^1",s1, "^1 unfairly eliminated themself\n");
2217 else if (type == DEATH_FIRE)
2218 print ("^1",s1, "^1 burned to death\n");
2219 else if (type != DEATH_TEAMCHANGE && type != DEATH_QUIET)
2220 print ("^1",s1, "^1 couldn't resist the urge to self-destruct\n");
2221 if (stof(s2) > 2) // killcount > 2
2222 print ("^1",s1,"^1 ended it all after a ",s2," kill spree\n");
2223 } else if(msg == MSG_KILL) {
2224 w = DEATH_WEAPONOF(type);
2226 HUD_KillNotify_Push(s2, s1, w);
2227 if (!HUD_Panel_CheckActive(4) || cvar("hud_notify_print"))
2228 print("^1", s1, "^1 ", Weapon_KillMessage(type), "\n");
2230 else if(type == KILL_TEAM || type == KILL_TEAM_SPREE) {
2231 if(cvar("cl_gentle")) {
2232 print ("^1", s1, "^1 took action against a team mate\n");
2234 print ("^1", s1, "^1 mows down a team mate\n");
2236 if (stof(s2) > 2 && type == KILL_TEAM_SPREE) {
2237 if(cvar("cl_gentle"))
2238 print ("^1",s1,"^1 ended a ",s2," scoring spree by going against a team mate\n");
2240 print ("^1",s1,"^1 ended a ",s2," kill spree by killing a team mate\n");
2242 else if (stof(s2) > 2) {
2243 if(cvar("cl_gentle"))
2244 print ("^1",s1,"'s ^1",s2," scoring spree was ended by a team mate!\n");
2246 print ("^1",s1,"'s ^1",s2," kill spree was ended by a team mate!\n");
2249 else if(type == KILL_FIRST_BLOOD)
2250 print("^1",s1, "^1 drew first blood", "\n");
2251 else if (type == DEATH_TELEFRAG)
2252 print ("^1",s1, "^1 was telefragged by ", s2, "\n");
2253 else if (type == DEATH_DROWN) {
2254 HUD_KillNotify_Push(s2, s1, DEATH_FALL);
2255 print ("^1",s1, "^1 was drowned by ", s2, "\n");
2257 else if (type == DEATH_SLIME) {
2258 HUD_KillNotify_Push(s2, s1, DEATH_FALL);
2259 print ("^1",s1, "^1 was slimed by ", s2, "\n");
2261 else if (type == DEATH_LAVA) {
2262 HUD_KillNotify_Push(s2, s1, DEATH_FALL);
2263 print ("^1",s1, "^1 was cooked by ", s2, "\n");
2265 else if (type == DEATH_FALL) {
2266 HUD_KillNotify_Push(s2, s1, DEATH_FALL);
2267 print ("^1",s1, "^1 was grounded by ", s2, "\n");
2269 else if (type == DEATH_SHOOTING_STAR) {
2270 HUD_KillNotify_Push(s2, s1, DEATH_FALL);
2271 print ("^1",s1, "^1 was shot into space by ", s2, "\n");
2273 else if (type == DEATH_SWAMP) {
2274 HUD_KillNotify_Push(s2, s1, DEATH_FALL);
2275 print ("^1",s1, "^1 was conserved by ", s2, "\n");
2277 else if (type == DEATH_HURTTRIGGER && s3 != "")
2279 HUD_KillNotify_Push(s2, s1, DEATH_FALL);
2282 print("^1", s1, "^1 ", s3, " ", s2, "\n");
2284 // bprint("^1", s1, "^1 ", substring(s3, 0, p), s2, "^1", substring(s3, p+1, strlen(s3) - (p+1)), "\n");
2286 else if(type == DEATH_SBCRUSH)
2287 print ("^1",s1, "^1 was crushed by ^1", s2, "\n");
2288 else if(type == DEATH_SBMINIGUN)
2289 print ("^1",s1, "^1 got shredded by ^1", s2, "\n");
2290 else if(type == DEATH_SBROCKET)
2291 print ("^1",s1, "^1 was blased to bits by ^1", s2, "\n");
2292 else if(type == DEATH_SBBLOWUP)
2293 print ("^1",s1, "^1 got cought in the destruction of ^1", s2, "'s vehicle\n");
2295 else if(type == DEATH_WAKIGUN)
2296 print ("^1",s1, "^1 was bolted down by ^1", s2, "\n");
2297 else if(type == DEATH_WAKIROCKET)
2298 print ("^1",s1, "^1 could find no shelter from ^1", s2, "'s rockets\n");
2299 else if(type == DEATH_WAKIBLOWUP)
2300 print ("^1",s1, "^1 dies when ^1", s2, "'s wakizashi dies.\n");
2302 else if(type == DEATH_TURRET)
2303 print ("^1",s1, "^1 was pushed into the line of fire by ^1", s2, "\n");
2304 else if(type == DEATH_TOUCHEXPLODE)
2305 print ("^1",s1, "^1 was pushed into an accident by ^1", s2, "\n");
2306 else if(type == DEATH_CHEAT)
2307 print ("^1",s1, "^1 was unfairly eliminated by ^1", s2, "\n");
2308 else if (type == DEATH_FIRE)
2309 print ("^1",s1, "^1 was burnt to death by ^1", s2, "\n");
2310 else if (type == DEATH_CUSTOM)
2311 print ("^1",s1, "^1 ", s2, "\n");
2313 print ("^1",s1, "^1 was fragged by ", s2, "\n");
2314 } else if(msg == MSG_SPREE) {
2315 if(type == KILL_END_SPREE) {
2316 if(cvar("cl_gentle"))
2317 print ("^1",s1,"'s ^1", s2, " scoring spree was ended by ", s3, "\n");
2319 print ("^1",s1,"'s ^1", s2, " kill spree was ended by ", s3, "\n");
2320 } else if(type == KILL_SPREE) {
2321 if(cvar("cl_gentle"))
2322 print ("^1",s1,"^1 made ",s2," scores in a row\n");
2324 print ("^1",s1,"^1 has ",s2," frags in a row\n");
2325 } else if(type == KILL_SPREE_3) {
2326 if(cvar("cl_gentle"))
2327 print (s1,"^7 made a ^1TRIPLE SCORE\n");
2329 print (s1,"^7 made a ^1TRIPLE FRAG\n");
2330 } else if(type == KILL_SPREE_5) {
2331 if(cvar("cl_gentle"))
2332 print (s1,"^7 unleashes ^1SCORING RAGE\n");
2334 print (s1,"^7 unleashes ^1RAGE\n");
2335 } else if(type == KILL_SPREE_10) {
2336 if(cvar("cl_gentle"))
2337 print (s1,"^7 made ^1TEN SCORES IN A ROW!\n");
2339 print (s1,"^7 starts the ^1MASSACRE!\n");
2340 } else if(type == KILL_SPREE_15) {
2341 if(cvar("cl_gentle"))
2342 print (s1,"^7 made ^1FIFTEEN SCORES IN A ROW!\n");
2344 print (s1,"^7 executes ^1MAYHEM!\n");
2345 } else if(type == KILL_SPREE_20) {
2346 if(cvar("cl_gentle"))
2347 print (s1,"^7 made ^1TWENTY SCORES IN A ROW!\n");
2349 print (s1,"^7 is a ^1BERSERKER!\n");
2350 } else if(type == KILL_SPREE_25) {
2351 if(cvar("cl_gentle"))
2352 print (s1,"^7 made ^1TWENTY FIFE SCORES IN A ROW!\n");
2354 print (s1,"^7 inflicts ^1CARNAGE!\n");
2355 } else if(type == KILL_SPREE_30) {
2356 if(cvar("cl_gentle"))
2357 print (s1,"^7 made ^1THIRTY SCORES IN A ROW!\n");
2359 print (s1,"^7 unleashes ^1ARMAGEDDON!\n");
2361 } else if(msg == MSG_KILL_ACTION) { // wtf is this? isnt it basically the same as MSG_SUICIDE?
2362 HUD_KillNotify_Push(s1, "", DEATH_KILL);
2363 if (type == DEATH_DROWN) {
2364 if(cvar("cl_gentle"))
2365 print ("^1",s1, "^1 was in the water for too long\n");
2367 print ("^1",s1, "^1 drowned\n");
2369 else if (type == DEATH_SLIME)
2370 print ("^1",s1, "^1 was slimed\n");
2371 else if (type == DEATH_LAVA) {
2372 if(cvar("cl_gentle"))
2373 print ("^1",s1, "^1 found a hot place\n");
2375 print ("^1",s1, "^1 turned into hot slag\n");
2377 else if (type == DEATH_FALL) {
2378 if(cvar("cl_gentle"))
2379 print ("^1",s1, "^1 tested gravity (and it worked)\n");
2381 print ("^1",s1, "^1 hit the ground with a crunch\n");
2383 else if (type == DEATH_SHOOTING_STAR)
2384 print ("^1",s1, "^1 became a shooting star\n");
2385 else if (type == DEATH_SWAMP) {
2386 if(cvar("cl_gentle"))
2387 print ("^1",s1, "^1 discovered a swamp\n");
2389 print ("^1",s1, "^1 is now conserved for centuries to come\n");
2391 else if(type == DEATH_TURRET)
2392 print ("^1",s1, "^1 was mowed down by a turret \n");
2393 else if (type == DEATH_CUSTOM)
2394 print ("^1",s1, "^1 ", s2, "\n");
2395 else if(type == DEATH_TOUCHEXPLODE)
2396 print ("^1",s1, "^1 died in an accident\n");
2397 else if(type == DEATH_CHEAT)
2398 print ("^1",s1, "^1 was unfairly eliminated\n");
2399 else if(type == DEATH_FIRE) {
2400 if(cvar("cl_gentle"))
2401 print ("^1",s1, "^1 felt a little hot\n");
2403 print ("^1",s1, "^1 burnt to death\n");
2406 if(cvar("cl_gentle"))
2407 print ("^1",s1, "^1 needs a restart\n");
2409 print ("^1",s1, "^1 died\n");
2411 } else if(msg == MSG_KILL_ACTION_SPREE) {
2412 HUD_KillNotify_Push(s1, "", DEATH_KILL);
2413 if(cvar("cl_gentle"))
2414 print ("^1",s1,"^1 needs a restart after a ",s2," scoring spree\n");
2416 print ("^1",s1,"^1 died with a ",s2," kill spree\n");
2417 } else if(msg == MSG_INFO) {
2418 if(type == INFO_GOTFLAG) {
2419 HUD_KillNotify_Push(s1, s2, INFO_GOTFLAG);
2420 print(s1, "^7 got the ", s2, "\n");
2421 } else if(type == INFO_LOSTFLAG) {
2422 HUD_KillNotify_Push(s1, s2, INFO_LOSTFLAG);
2423 print(s1, "^7 lost the ", s2, "\n");
2424 } else if(type == INFO_PICKUPFLAG) {
2425 HUD_KillNotify_Push(s1, s2, INFO_GOTFLAG);
2426 print(s1, "^7 picked up the ", s2, "\n");
2427 } else if(type == INFO_RETURNFLAG) {
2428 HUD_KillNotify_Push(s1, s2, INFO_RETURNFLAG);
2429 print(s1, "^7 returned the ", s2, "\n");
2435 #define DAMAGE_CENTERPRINT_SPACER NEWLINES
2437 void HUD_Centerprint(string s1, float type, float msg)
2439 if(msg == MSG_SUICIDE) {
2440 if (type == DEATH_TEAMCHANGE) {
2441 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "You are now on: ", s1));
2442 } else if (type == DEATH_AUTOTEAMCHANGE) {
2443 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "You have been moved into a different team to improve team balance\nYou are now on: ", s1));
2444 } else if (type == DEATH_CAMP) {
2445 if(cvar("cl_gentle"))
2446 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Reconsider your tactics, camper!"));
2448 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Die camper!"));
2449 } else if (type == DEATH_NOAMMO) {
2450 if(cvar("cl_gentle"))
2451 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You are reinserted into the game for running out of ammo..."));
2453 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You were killed for running out of ammo..."));
2454 } else if (type == DEATH_ROT) {
2455 if(cvar("cl_gentle"))
2456 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You need to preserve your health"));
2458 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You grew too old without taking your medicine"));
2459 } else if (type == DEATH_MIRRORDAMAGE) {
2460 if(cvar("cl_gentle"))
2461 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Don't go against team mates!"));
2463 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Don't shoot your team mates!"));
2464 } else if (type == DEATH_QUIET) {
2466 } else if (type == DEATH_KILL) {
2467 if(cvar("cl_gentle"))
2468 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You need to be more careful!"));
2470 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You killed your own dumb self!"));
2472 } else if(msg == MSG_KILL) {
2473 if (type == KILL_TEAM) {
2474 if(cvar("cl_gentle")) {
2475 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Moron! You went against a team mate!"));
2477 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Moron! You fragged ", s1, ", a team mate!"));
2479 } else if (type == KILL_FIRST_BLOOD) {
2480 if(cvar("cl_gentle")) {
2481 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1First score"));
2483 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1First blood"));
2485 } else if (type == KILL_FIRST_VICTIM) {
2486 if(cvar("cl_gentle")) {
2487 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1First casualty"));
2489 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1First victim"));
2491 } else if (type == KILL_TYPEFRAG) {
2492 if(cvar("cl_gentle")) {
2493 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You scored against ^7", s1, "^7 who was typing!"));
2495 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You typefragged ^7", s1));
2497 } else if (type == KILL_TYPEFRAGGED) {
2498 if(cvar("cl_gentle")) {
2499 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You were scored against by ^7", s1, "^7 while you were typing!"));
2501 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1You were typefragged by ^7", s1));
2503 } else if (type == KILL_FRAG) {
2504 if(cvar("cl_gentle")) {
2505 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^4You scored against ^7", s1));
2507 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^4You fragged ^7", s1));
2509 } else if (type == KILL_FRAGGED) {
2510 if(cvar("cl_gentle")) {
2511 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^4You were scored against by ^7", s1));
2513 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^4You were fragged by ^7", s1));
2516 } else if(msg == MSG_KILL_ACTION) {
2517 // TODO: invent more centerprints here?
2518 centerprint(strcat(DAMAGE_CENTERPRINT_SPACER, "^1Watch your step!", s1));
2522 void HUD_Notify (void)
2524 float id = HUD_PANEL_NOTIFY;
2526 pos = HUD_Panel_GetPos(id);
2527 mySize = HUD_Panel_GetSize(id);
2529 HUD_Panel_DrawBg(id, pos, mySize, 0);
2531 padding = HUD_Panel_GetPadding(id);
2534 pos += '1 1 0' * padding;
2535 mySize -= '2 2 0' * padding;
2538 float entries, height;
2539 entries = bound(1, floor(12 * mySize_y/mySize_x), 10);
2540 height = mySize_y/entries;
2543 fontsize = '0.5 0.5 0' * height;
2547 when = cvar("hud_notify_time");
2549 fadetime = cvar("hud_notify_fadetime");
2553 vector pos_attacker, pos_victim;
2555 float width_attacker, width_victim;
2556 string attacker, victim;
2559 for(j = 0; j < entries; ++j)
2561 if(cvar("hud_notify_flip"))
2563 else // rather nasty hack for ordering items from the bottom up
2564 i = entries - j - 1;
2568 if(killnotify_times[j] + when > time)
2571 a = bound(0, (killnotify_times[j] + when + fadetime - time) / fadetime, 1);
2575 if(killnotify_times[j] + when > time)
2581 // TODO: maybe print in team colors?
2582 // TODO: maybe this could be cleaned up somehow...
2584 // X [did action to] Y
2585 if(hud_configure || WEP_VALID(killnotify_deathtype[j]) || killnotify_deathtype[j] == DEATH_FALL)
2589 attacker = textShortenToWidth("Player1", 0.5 * mySize_x - height, fontsize, stringwidth_colors);
2590 victim = textShortenToWidth("Player2", 0.5 * mySize_x - height, fontsize, stringwidth_colors);
2591 a = bound(0, (when - j) / 4, 1);
2595 attacker = textShortenToWidth(killnotify_attackers[j], 0.5 * mySize_x - height, fontsize, stringwidth_colors);
2596 victim = textShortenToWidth(killnotify_victims[j], 0.5 * mySize_x - height, fontsize, stringwidth_colors);
2598 width_attacker = stringwidth(attacker, TRUE, fontsize);
2599 width_victim = stringwidth(victim, TRUE, fontsize);
2600 pos_attacker = pos + eX * 0.5 * ((0.5 * mySize_x - height) - width_attacker) + eY * 0.5 * fontsize_y + eY * i * height;
2601 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;
2602 weap_pos = pos + eX * 0.5 * mySize_x - eX * height + eY * i * height;
2604 if(hud_configure) // example actions for config mode
2606 drawpic_skin(weap_pos, strcat("weapon", "electro"), '2 1 0' * height, '1 1 1', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2607 drawcolorcodedstring(pos_attacker, attacker, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2608 drawcolorcodedstring(pos_victim, victim, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2610 else if(WEP_VALID(killnotify_deathtype[j]))
2612 self = get_weaponinfo(killnotify_deathtype[j]);
2613 drawpic_skin(weap_pos, strcat("weapon", self.netname), '2 1 0' * height, '1 1 1', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2614 drawcolorcodedstring(pos_attacker, attacker, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2615 drawcolorcodedstring(pos_victim, victim, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2617 else if(killnotify_deathtype[j] == DEATH_FALL)
2619 drawpic_skin(weap_pos, "notify_pushoffedge", '2 1 0' * height, '1 1 1', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2620 drawcolorcodedstring(pos_attacker, attacker, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2621 drawcolorcodedstring(pos_victim, victim, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2628 attacker = textShortenToWidth(killnotify_attackers[j], mySize_x - 2 * height, fontsize, stringwidth_colors);
2630 width_attacker = stringwidth(attacker, TRUE, fontsize);
2631 pos_attacker = pos + eX * 0.5 * (mySize_x - width_attacker + 2 * height) + eY * 0.5 * fontsize_y + eY * i * height;
2633 weap_pos = pos + eX * 0.5 * (mySize_x - width_attacker) - eX * height + eY * i * height;
2634 if(killnotify_deathtype[j] == DEATH_KILL)
2636 drawpic_skin(weap_pos, "notify_selfkill", '2 1 0' * height, '1 1 1', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2637 drawcolorcodedstring(pos_attacker, attacker, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2639 else if(killnotify_deathtype[j] == INFO_GOTFLAG)
2641 if(killnotify_victims[j] == "^1RED^7 flag")
2645 drawpic_skin(weap_pos, strcat("flag_", s, "_carrying"), '1 1 0' * height, '1 1 1', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2646 drawcolorcodedstring(pos_attacker, attacker, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2648 else if(killnotify_deathtype[j] == INFO_RETURNFLAG)
2650 if(killnotify_victims[j] == "^1RED^7 flag")
2654 drawpic_skin(weap_pos, strcat("flag_", s, "_taken"), '1 1 0' * height, '1 1 1', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2655 drawcolorcodedstring(pos_attacker, attacker, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2657 else if(killnotify_deathtype[j] == INFO_LOSTFLAG)
2659 if(killnotify_victims[j] == "^1RED^7 flag")
2663 drawpic_skin(weap_pos, strcat("flag_", s, "_lost"), '1 1 0' * height, '1 1 1', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2664 drawcolorcodedstring(pos_attacker, attacker, fontsize, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
2668 /* This will come later.
2671 if(spectatee_status && !intermission)
2673 drawfont = hud_bigfont;
2674 if(spectatee_status == -1)
2677 s = GetPlayerName(spectatee_status - 1);
2678 // spectated player name between HUD and chat area, aligned to the left
2680 pos_y = - 50 - hud_fontsize_spec_y;
2681 s = textShortenToWidth(s, vid_conwidth/2.5, hud_fontsize_spec, stringwidth_colors);
2682 drawcolorcodedstring(pos, s, hud_fontsize_spec, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2683 drawfont = hud_font;
2685 // spectator text in the upper right corner
2686 if(spectatee_status == -1)
2687 s = strcat("^1Press ^3", getcommandkey("primary fire", "+attack"), "^1 to spectate");
2689 s = strcat("^1Press ^3", getcommandkey("primary fire", "+attack"), "^1 for another player");
2691 if(spectatee_status == -1)
2692 s = strcat("^1Use ^3", getcommandkey("next weapon", "weapnext"), "^1 or ^3", getcommandkey("previous weapon", "weapprev"), "^1 to change the speed");
2694 s = strcat("^1Press ^3", getcommandkey("secondary fire", "+attack2"), "^1 to observe");
2696 s = strcat("^1Press ^3", getcommandkey("server info", "+show_info"), "^1 for gamemode info");
2698 if(gametype == GAME_ARENA)
2699 s = "^1Wait for your turn to join";
2700 else if(gametype == GAME_LMS)
2703 sk = playerslots[player_localentnum - 1];
2704 if(sk.(scores[ps_primary]) >= 666)
2705 s = "^1Match has already begun";
2706 else if(sk.(scores[ps_primary]) > 0)
2707 s = "^1You have no more lives left";
2709 s = strcat("^1Press ^3", getcommandkey("jump", "+jump"), "^1 to join");
2712 s = strcat("^1Press ^3", getcommandkey("jump", "+jump"), "^1 to join");
2714 //show restart countdown:
2715 if (time < getstatf(STAT_GAMESTARTTIME)) {
2717 //we need to ceil, otherwise the countdown would be off by .5 when using round()
2718 countdown = ceil(getstatf(STAT_GAMESTARTTIME) - time);
2719 s = strcat("^1Game starts in ^3", ftos(countdown), "^1 seconds");
2722 if(warmup_stage && !intermission)
2724 s = "^2Currently in ^1warmup^2 stage!";
2727 // move more important stuff more to the middle so its more visible
2730 if(mod(time, 1) >= 0.5)
2735 if(ready_waiting && !intermission && !spectatee_status)
2737 if(ready_waiting_for_me)
2740 s = strcat(blinkcolor, "Press ^3", getcommandkey("ready", "ready"), blinkcolor, " to end warmup");
2742 s = strcat(blinkcolor, "Press ^3", getcommandkey("ready", "ready"), blinkcolor, " once you are ready");
2747 s = strcat("^2Waiting for others to ready up to end warmup...");
2749 s = strcat("^2Waiting for others to ready up...");
2752 else if(warmup_stage && !intermission && !spectatee_status)
2754 s = strcat("^2Press ^3", getcommandkey("ready", "ready"), "^2 to end warmup");
2757 if(teamplay && !intermission && !spectatee_status && gametype != GAME_CA && teamnagger)
2759 float ts_min, ts_max;
2760 tm = teams.sort_next;
2763 for(; tm.sort_next; tm = tm.sort_next)
2765 if(!tm.team_size || tm.team == COLOR_SPECTATOR)
2767 if(!ts_min) ts_min = tm.team_size;
2768 else ts_min = min(ts_min, tm.team_size);
2769 if(!ts_max) ts_max = tm.team_size;
2770 else ts_max = max(ts_max, tm.team_size);
2772 if ((ts_max - ts_min) > 1)
2774 s = strcat(blinkcolor, "Teamnumbers are unbalanced!");
2775 tm = GetTeam(myteam, false);
2777 if (tm.team != COLOR_SPECTATOR)
2778 if (tm.team_size == ts_max)
2779 s = strcat(s, " Press ^3", getcommandkey("team menu", "menu_showteamselect"), blinkcolor, " to adjust");
2789 void HUD_Timer(void)
2791 float id = HUD_PANEL_TIMER;
2793 pos = HUD_Panel_GetPos(id);
2794 mySize = HUD_Panel_GetSize(id);
2796 HUD_Panel_DrawBg(id, pos, mySize, 0);
2798 padding = HUD_Panel_GetPadding(id);
2801 pos += '1 1 0' * padding;
2802 mySize -= '2 2 0' * padding;
2805 float timelimit, elapsedTime, minutes, seconds, timeleft, minutesLeft, secondsLeft;
2807 timelimit = getstatf(STAT_TIMELIMIT);
2809 timeleft = max(0, timelimit * 60 + getstatf(STAT_GAMESTARTTIME) - time);
2810 timeleft = ceil(timeleft);
2811 minutesLeft = floor(timeleft / 60);
2812 secondsLeft = timeleft - minutesLeft*60;
2815 if(minutesLeft >= 5 || warmup_stage || timelimit == 0) //don't use red or yellow in warmup or when there is no timelimit
2816 timer_color = '1 1 1'; //white
2817 else if(minutesLeft >= 1)
2818 timer_color = '1 1 0'; //yellow
2820 timer_color = '1 0 0'; //red
2822 if (cvar("hud_timer_increment") || timelimit == 0 || warmup_stage) {
2823 if (time < getstatf(STAT_GAMESTARTTIME)) {
2824 //while restart is still active, show 00:00
2825 minutes = seconds = 0;
2827 elapsedTime = floor(time - getstatf(STAT_GAMESTARTTIME)); //127
2828 minutes = floor(elapsedTime / 60);
2829 seconds = elapsedTime - minutes*60;
2832 minutes = minutesLeft;
2833 seconds = secondsLeft;
2838 minutes = min(minutes, 999);
2839 if(minutesLeft >= 1 || cvar("hud_timer_increment") || timelimit == 0 || warmup_stage) {
2840 HUD_DrawXNum(pos + eX * mySize_x - eX * 5.1 * mySize_y, minutes, 3, 0, mySize_y, timer_color, 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2841 drawpic_skin(pos + eX * mySize_x - eX * 2.57 * mySize_y, "num_colon", '1 1 0' * mySize_y, timer_color, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2843 HUD_DrawXNum(pos + eX * mySize_x - eX * 2 * mySize_y, seconds, -2, 0, mySize_y, timer_color, 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
2848 void HUD_Radar(void)
2850 float id = HUD_PANEL_RADAR;
2852 pos = HUD_Panel_GetPos(id);
2853 mySize = HUD_Panel_GetSize(id);
2855 HUD_Panel_DrawBg(id, pos, mySize, 0);
2857 padding = HUD_Panel_GetPadding(id);
2860 pos += '1 1 0' * padding;
2861 mySize -= '2 2 0' * padding;
2864 local float color1, color2; // color already declared as a global in hud.qc
2867 float scale2d, normalsize, bigsize;
2870 teamradar_origin2d = pos + 0.5 * mySize;
2871 teamradar_size2d = mySize;
2873 if(minimapname == "")
2876 teamradar_loadcvars();
2878 switch(hud_radar_zoommode)
2882 f = current_zoomfraction;
2885 f = 1 - current_zoomfraction;
2895 switch(hud_radar_rotation)
2898 teamradar_angle = view_angles_y - 90;
2901 teamradar_angle = 90 * hud_radar_rotation;
2905 scale2d = vlen_maxnorm2d(mi_picmax - mi_picmin);
2906 teamradar_size2d = mySize;
2908 teamradar_extraclip_mins = teamradar_extraclip_maxs = '0 0 0'; // we always center
2910 // pixels per world qu to match the teamradar_size2d_x range in the longest dimension
2911 if(hud_radar_rotation == 0)
2913 // max-min distance must fit the radar in any rotation
2914 bigsize = vlen_minnorm2d(teamradar_size2d) * scale2d / (1.05 * vlen2d(mi_max - mi_min));
2918 vector c0, c1, c2, c3, span;
2919 c0 = rotate(mi_min, teamradar_angle * DEG2RAD);
2920 c1 = rotate(mi_max, teamradar_angle * DEG2RAD);
2921 c2 = rotate('1 0 0' * mi_min_x + '0 1 0' * mi_max_y, teamradar_angle * DEG2RAD);
2922 c3 = rotate('1 0 0' * mi_max_x + '0 1 0' * mi_min_y, teamradar_angle * DEG2RAD);
2924 span_x = max4(c0_x, c1_x, c2_x, c3_x) - min4(c0_x, c1_x, c2_x, c3_x);
2925 span_y = max4(c0_y, c1_y, c2_y, c3_y) - min4(c0_y, c1_y, c2_y, c3_y);
2927 // max-min distance must fit the radar in x=x, y=y
2929 teamradar_size2d_x * scale2d / (1.05 * span_x),
2930 teamradar_size2d_y * scale2d / (1.05 * span_y)
2934 normalsize = vlen_maxnorm2d(teamradar_size2d) * scale2d / hud_radar_scale;
2935 if(bigsize > normalsize)
2936 normalsize = bigsize;
2940 + (1 - f) * normalsize;
2941 teamradar_origin3d_in_texcoord = teamradar_3dcoord_to_texcoord(
2942 f * (mi_min + mi_max) * 0.5
2943 + (1 - f) * view_origin);
2945 color1 = GetPlayerColor(player_localentnum-1);
2946 rgb = GetTeamRGB(color1);
2955 draw_teamradar_background(hud_radar_background_alpha, hud_radar_foreground_alpha);
2957 for(tm = world; (tm = find(tm, classname, "radarlink")); )
2958 draw_teamradar_link(tm.origin, tm.velocity, tm.team);
2959 for(tm = world; (tm = findflags(tm, teamradar_icon, 0xFFFFFF)); )
2960 draw_teamradar_icon(tm.origin, tm.teamradar_icon, tm, tm.teamradar_color, HUD_Panel_GetFgAlpha(id));
2961 for(tm = world; (tm = find(tm, classname, "entcs_receiver")); )
2963 color2 = GetPlayerColor(tm.sv_entnum);
2964 //if(color == COLOR_SPECTATOR || color == color2)
2965 draw_teamradar_player(tm.origin, tm.angles, GetTeamRGB(color2));
2967 draw_teamradar_player(view_origin, view_angles, '1 1 1');
2969 drawresetcliparea();
2974 void HUD_Score(void)
2976 float id = HUD_PANEL_SCORE;
2978 pos = HUD_Panel_GetPos(id);
2979 mySize = HUD_Panel_GetSize(id);
2981 HUD_Panel_DrawBg(id, pos, mySize, 0);
2983 padding = HUD_Panel_GetPadding(id);
2986 pos += '1 1 0' * padding;
2987 mySize -= '2 2 0' * padding;
2990 float score, distribution, leader;
2991 float score_len, distr_len;
2992 vector distribution_color;
2994 me = (spectatee_status > 0) ? playerslots[spectatee_status - 1] : playerslots[player_localentnum - 1];
2996 // TODO... this (race part) still uses constant coordinates :/
2997 if((scores_flags[ps_primary] & SFL_TIME) && !teamplay) { // race/cts record display on HUD
2998 /*pl = players.sort_next;
3001 if(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)
3002 if(pl.scores[ps_primary] == 0)
3005 score = me.(scores[ps_primary]);
3007 float racemin, racesec, racemsec;
3008 float distsec, distmsec, minusplus;
3010 racemin = floor(score/(60 * TIME_FACTOR));
3011 racesec = floor((score - racemin*(60 * TIME_FACTOR))/TIME_FACTOR);
3012 racemsec = score - racemin*60*TIME_FACTOR - racesec*TIME_FACTOR;
3014 if (pl && ((!(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)) || score)) {
3015 // distribution display
3016 distribution = me.(scores[ps_primary]) - pl.(scores[ps_primary]);
3018 if (distribution < TIME_FACTOR && distribution > -TIME_FACTOR)
3019 distmsec = fabs(distribution);
3021 distsec = floor(fabs(distribution)/TIME_FACTOR);
3022 distmsec = fabs(distribution) - distsec*TIME_FACTOR;
3023 if (distribution < 0)
3027 if (distribution <= 0) {
3028 distribution_color = eY;
3029 minusplus = 1; // minusplus 1: always prefix with minus sign
3032 distribution_color = eX;
3033 minusplus = 2; // minusplus 1: always prefix with plus sign
3035 HUD_DrawXNum(bottomright - '0 48 0' - '16 0 0' * TIME_DECIMALS, distmsec, -TIME_DECIMALS, 0, 16, distribution_color, 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3036 HUD_DrawXNum(bottomright - '68 48 0' - '16 0 0' * TIME_DECIMALS, distsec, 4, minusplus, 16, distribution_color, 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3037 drawpic_skin(bottomright - '10 48 0' - '16 0 0' * TIME_DECIMALS, "num_dot", '16 16 0', distribution_color, HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE);
3039 // race record display
3040 if (distribution <= 0 || distribution == score) // draw the highlight background behind the timer if we have the lead
3041 drawpic_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', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3043 HUD_DrawXNum(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0', racemsec, -TIME_DECIMALS, 0, 30, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3044 HUD_DrawXNum(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0' - '66 0 0', racesec, -2, 0, 30, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3045 drawpic_skin(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0' - '18 0 0', "num_dot", '30 30 0', '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE);
3047 HUD_DrawXNum(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0' - '132 0 0', racemin, -2, 0, 30, '1 1 1', 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3048 drawpic_skin(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0' - '84 0 0', "num_colon", '30 30 0', '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_ADDITIVE);
3050 } else if (!teamplay) { // non-teamgames
3051 // me vector := [team/connected frags id]
3052 pl = players.sort_next;
3059 distribution = me.(scores[ps_primary]) - pl.(scores[ps_primary]);
3063 score = me.(scores[ps_primary]);
3067 if(distribution >= 5) {
3068 distribution_color = eY;
3070 } else if(distribution >= 0) {
3071 distribution_color = '1 1 1';
3073 } else if(distribution >= -5)
3074 distribution_color = '1 1 0';
3076 distribution_color = eX;
3078 score_len = strlen(ftos(score));
3079 distr_len = strlen(ftos(distribution));
3081 HUD_DrawXNum(pos + eX * mySize_x - eX * 3 * 0.33 * mySize_y, distribution, 3, 3, 0.33 * mySize_y, distribution_color, 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3083 drawpic_skin(pos + eX * mySize_x - eX * score_len * mySize_y - eX * 3 * 0.33 * mySize_y, strcat("num_leading_", ftos(score_len)), eX * score_len * mySize_y + eY * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3084 HUD_DrawXNum(pos + eX * mySize_x - eX * 3 * mySize_y - eX * 3 * 0.33 * mySize_y, score, 3, 0, mySize_y, distribution_color, 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3085 } else { // teamgames
3086 float max_fragcount;
3087 max_fragcount = -99;
3090 for(tm = teams.sort_next; tm; tm = tm.sort_next) {
3091 if(tm.team == COLOR_SPECTATOR || (!tm.team_size && !hud_configure)) // no players? don't display
3093 score = tm.(teamscores[ts_primary]);
3098 score_len = strlen(ftos(score));
3100 if (score > max_fragcount)
3101 max_fragcount = score;
3103 if(tm.team == myteam) {
3104 if (max_fragcount == score)
3107 drawpic_skin(pos + eX * mySize_x - eX * score_len * mySize_y - eX * 3 * 0.33 * mySize_y, strcat("num_leading_", ftos(score_len)), eX * score_len * mySize_y + eY * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3108 HUD_DrawXNum(pos + eX * mySize_x - eX * 3 * mySize_y - eX * 3 * 0.33 * mySize_y, score, 3, 0, mySize_y, GetTeamRGB(tm.team) * 0.8, 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3110 if (max_fragcount == score)
3113 drawpic_skin(pos + eX * mySize_x - eX * 0.33 * score_len * mySize_y + eY * 0.33 * mySize_y * teamnum, strcat("num_leading_", ftos(score_len)), eX * 0.33 * score_len * mySize_y + eY * 0.33 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3114 HUD_DrawXNum(pos + eX * mySize_x - eX * 3 * 0.33 * mySize_y + eY * 0.33 * mySize_y * teamnum, score, 3, 0, 0.33 * mySize_y, GetTeamRGB(tm.team) * 0.8, 0, 0, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3123 void HUD_RaceTimer (void) {
3124 float id = HUD_PANEL_RACETIMER;
3126 pos = HUD_Panel_GetPos(id);
3127 mySize = HUD_Panel_GetSize(id);
3129 HUD_Panel_DrawBg(id, pos, mySize, 0);
3131 padding = HUD_Panel_GetPadding(id);
3134 pos += '1 1 0' * padding;
3135 mySize -= '2 2 0' * padding;
3138 drawfont = hud_bigfont;
3140 string s, forcetime;
3145 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', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3146 s = "^1Intermediate 1 (+15.42)";
3147 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, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3148 s = strcat("^1PENALTY: ", ftos_decimals(20 * 0.1, 1), " (missing a checkpoint)");
3149 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, HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3151 else if(race_checkpointtime)
3153 a = bound(0, 2 - (time - race_checkpointtime), 1);
3156 if(a > 0) // just hit a checkpoint?
3158 if(race_checkpoint != 254)
3160 if(race_time && race_previousbesttime)
3161 s = MakeRaceString(race_checkpoint, TIME_DECODE(race_time) - TIME_DECODE(race_previousbesttime), 0, 0, race_previousbestname);
3163 s = MakeRaceString(race_checkpoint, 0, -1, 0, race_previousbestname);
3165 forcetime = TIME_ENCODED_TOSTRING(race_time);
3170 if(race_laptime && race_nextbesttime && race_nextcheckpoint != 254)
3172 a = bound(0, 2 - ((race_laptime + TIME_DECODE(race_nextbesttime)) - (time + TIME_DECODE(race_penaltyaccumulator))), 1);
3173 if(a > 0) // next one?
3175 s = MakeRaceString(race_nextcheckpoint, (time + TIME_DECODE(race_penaltyaccumulator)) - race_laptime, TIME_DECODE(race_nextbesttime), 0, race_nextbestname);
3180 if(s != "" && a > 0)
3182 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
3183 //drawcolorcodedstring(m - '0 16 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3184 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, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3187 if(race_penaltytime)
3189 a = bound(0, 2 - (time - race_penaltyeventtime), 1);
3192 s = strcat("^1PENALTY: ", ftos_decimals(race_penaltytime * 0.1, 1), " (", race_penaltyreason, ")");
3193 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
3194 //drawcolorcodedstring(m - '0 32 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3195 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, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3201 a = bound(0, (time - race_checkpointtime) / 0.5, 1);
3202 //drawstring_expanding(m - '16 0 0' * stringwidth(forcetime, FALSE), forcetime, '32 32 0', '1 1 1', HUD_Panel_GetFgAlpha(id), 0, a);
3203 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', HUD_Panel_GetFgAlpha(id), 0, a);
3208 if(race_laptime && race_checkpoint != 255)
3210 s = TIME_ENCODED_TOSTRING(TIME_ENCODE(time + TIME_DECODE(race_penaltyaccumulator) - race_laptime));
3211 //drawstring(m - '16 0 0' * stringwidth(s, FALSE), s, '32 32 0', '1 1 1', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3212 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', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3217 if(race_mycheckpointtime)
3219 a = bound(0, 2 - (time - race_mycheckpointtime), 1);
3220 s = MakeRaceString(race_mycheckpoint, TIME_DECODE(race_mycheckpointdelta), -!race_mycheckpointenemy, race_mycheckpointlapsdelta, race_mycheckpointenemy);
3221 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
3222 //drawcolorcodedstring(m - '0 16 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3223 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, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3225 if(race_othercheckpointtime && race_othercheckpointenemy != "")
3227 a = bound(0, 2 - (time - race_othercheckpointtime), 1);
3228 s = MakeRaceString(race_othercheckpoint, -TIME_DECODE(race_othercheckpointdelta), -!race_othercheckpointenemy, race_othercheckpointlapsdelta, race_othercheckpointenemy);
3229 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
3230 //drawcolorcodedstring(m - '0 0 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3231 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, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3234 if(race_penaltytime && !race_penaltyaccumulator)
3236 t = race_penaltytime * 0.1 + race_penaltyeventtime;
3237 a = bound(0, (1 + t - time), 1);
3241 s = strcat("^1PENALTY: ", ftos_decimals(t - time, 1), " (", race_penaltyreason, ")");
3243 s = strcat("^2PENALTY: 0.0 (", race_penaltyreason, ")");
3244 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
3245 //drawcolorcodedstring(m - '0 32 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3246 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, HUD_Panel_GetFgAlpha(id) * a, DRAWFLAG_NORMAL);
3251 drawfont = hud_font;
3256 float vote_yescount;
3259 float vote_highlighted; // currently selected vote
3261 float vote_active; // is there an active vote?
3262 float vote_prev; // previous state of vote_active to check for a change
3264 float vote_change; // "time" when vote_active changed
3266 void HUD_VoteWindow(void)
3268 float id = HUD_PANEL_VOTE;
3270 pos = HUD_Panel_GetPos(id);
3271 mySize = HUD_Panel_GetSize(id);
3275 if(vote_active != vote_prev) {
3277 vote_prev = vote_active;
3280 if(vote_active || hud_configure)
3281 vote_alpha = bound(0, (time - vote_change) * 2, 1);
3283 vote_alpha = bound(0, 1 - (time - vote_change) * 2, 1);
3295 a = vote_alpha * bound(cvar_or("hud_vote_alreadyvoted_alpha", 0.75), 1 - vote_highlighted, 1);
3297 HUD_Panel_DrawBg(id, pos, mySize, a);
3299 padding = HUD_Panel_GetPadding(id);
3302 pos += '1 1 0' * padding;
3303 mySize -= '2 2 0' * padding;
3306 drawpic_skin(pos, "voteprogress_back", mySize, '1 1 1', a * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3308 s = "A vote has been called for: ";
3309 drawstring(pos + '0.5 0 0' * mySize_x + '0 0.1 0' * mySize_y - eX * stringwidth(s, FALSE, '1 1 0' * 0.5 * mySize_y*(1/5)), s, '1 1 0' * mySize_y*(1/5), '1 1 1', a * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3310 s = textShortenToWidth(vote_called_vote, mySize_x * 0.96, '1 1 0' * mySize_y*(1/5), stringwidth_colors); // TODO: broken?
3312 s = "Configure the HUD";
3313 drawcolorcodedstring(pos + '0.52 0 0' * mySize_x + '0 0.3 0' * mySize_y - eX * stringwidth(s, FALSE, '1 1 0' * 0.5 * mySize_y*(1/6)), s, '1 1 0' * mySize_y*(1/6), a * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3315 // print the yes/no counts
3316 s = strcat("Yes: ", ftos(vote_yescount));
3317 drawstring(pos + '0 0.6 0' * mySize_y + '0.02 0 0' * mySize_x, s, '1 1 0' * mySize_y*(1/6) , eY, a * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3318 s = strcat("No: ", ftos(vote_nocount));
3319 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 * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3321 // draw the progress bars
3322 drawsetcliparea(pos_x, pos_y, mySize_x * 0.5 * (vote_yescount/vote_needed), mySize_y);
3323 drawpic_skin(pos, "voteprogress_prog", mySize, eY, a * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3325 drawsetcliparea(pos_x + mySize_x - mySize_x * 0.5 * (vote_nocount/vote_needed), pos_y, mySize_x * 0.5, mySize_y);
3326 drawpic_skin(pos, "voteprogress_prog", mySize, eX, a * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3328 // draw the highlights
3329 if(vote_highlighted == 1) {
3330 drawsetcliparea(pos_x, pos_y, mySize_x * 0.5, mySize_y);
3331 drawpic_skin(pos, "voteprogress_voted", mySize, eY, a * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3333 else if(vote_highlighted == 2) {
3334 drawsetcliparea(pos_x + 0.5 * mySize_x, pos_y, mySize_x * 0.5, mySize_y);
3335 drawpic_skin(pos, "voteprogress_voted", mySize, eX, a * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3338 drawresetcliparea();
3341 vote_highlighted = 0;
3345 // Mod icons panel (#10)
3348 float mod_active; // is there any active mod icon?
3350 // CTF HUD modicon section
3351 float redflag_prevframe, blueflag_prevframe; // status during previous frame
3352 float redflag_prevstatus, blueflag_prevstatus; // last remembered status
3353 float redflag_statuschange_time, blueflag_statuschange_time; // time when the status changed
3355 void HUD_Mod_CTF_Reset(void)
3357 redflag_prevstatus = blueflag_prevstatus = redflag_prevframe = blueflag_prevframe = redflag_statuschange_time = blueflag_statuschange_time = 0;
3360 void HUD_Mod_CTF(vector pos, vector mySize)
3362 vector redflag_pos, blueflag_pos;
3363 float f; // every function should have that
3365 float redflag, blueflag; // current status
3366 float redflag_statuschange_elapsedtime, blueflag_statuschange_elapsedtime; // time since the status changed
3369 stat_items = getstati(STAT_ITEMS);
3370 redflag = (stat_items/IT_RED_FLAG_TAKEN) & 3;
3371 blueflag = (stat_items/IT_BLUE_FLAG_TAKEN) & 3;
3373 if(redflag || blueflag)
3384 // when status CHANGES, set old status into prevstatus and current status into status
3385 if (redflag != redflag_prevframe)
3387 redflag_statuschange_time = time;
3388 redflag_prevstatus = redflag_prevframe;
3389 redflag_prevframe = redflag;
3392 if (blueflag != blueflag_prevframe)
3394 blueflag_statuschange_time = time;
3395 blueflag_prevstatus = blueflag_prevframe;
3396 blueflag_prevframe = blueflag;
3399 redflag_statuschange_elapsedtime = time - redflag_statuschange_time;
3400 blueflag_statuschange_elapsedtime = time - blueflag_statuschange_time;
3402 float BLINK_FACTOR = 0.15;
3403 float BLINK_BASE = 0.85;
3405 // RMS = sqrt(BLINK_BASE^2 + 0.5 * BLINK_FACTOR^2)
3407 // BLINK_BASE = sqrt(RMS^2 - 0.5 * BLINK_FACTOR^2)
3409 float BLINK_FREQ = 5; // circle frequency, = 2*pi*frequency in hertz
3411 string red_icon, red_icon_prevstatus;
3412 float red_alpha, red_alpha_prevstatus;
3413 red_alpha = red_alpha_prevstatus = 1;
3415 case 1: red_icon = "flag_red_taken"; break;
3416 case 2: red_icon = "flag_red_lost"; break;
3417 case 3: red_icon = "flag_red_carrying"; red_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
3419 if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM2))
3420 red_icon = "flag_red_shielded";
3422 red_icon = string_null;
3425 switch(redflag_prevstatus) {
3426 case 1: red_icon_prevstatus = "flag_red_taken"; break;
3427 case 2: red_icon_prevstatus = "flag_red_lost"; break;
3428 case 3: red_icon_prevstatus = "flag_red_carrying"; red_alpha_prevstatus = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
3431 red_icon_prevstatus = "flag_red_carrying"; // make it more visible
3432 else if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM2))
3433 red_icon_prevstatus = "flag_red_shielded";
3435 red_icon_prevstatus = string_null;
3439 string blue_icon, blue_icon_prevstatus;
3440 float blue_alpha, blue_alpha_prevstatus;
3441 blue_alpha = blue_alpha_prevstatus = 1;
3443 case 1: blue_icon = "flag_blue_taken"; break;
3444 case 2: blue_icon = "flag_blue_lost"; break;
3445 case 3: blue_icon = "flag_blue_carrying"; blue_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
3447 if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM1))
3448 blue_icon = "flag_blue_shielded";
3450 blue_icon = string_null;
3453 switch(blueflag_prevstatus) {
3454 case 1: blue_icon_prevstatus = "flag_blue_taken"; break;
3455 case 2: blue_icon_prevstatus = "flag_blue_lost"; break;
3456 case 3: blue_icon_prevstatus = "flag_blue_carrying"; blue_alpha_prevstatus = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
3459 blue_icon_prevstatus = "flag_blue_carrying"; // make it more visible
3460 else if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM1))
3461 blue_icon_prevstatus = "flag_blue_shielded";
3463 blue_icon_prevstatus = string_null;
3467 if (myteam == COLOR_TEAM1) { // always draw own flag on left
3469 blueflag_pos = pos + eX * mySize_y;
3472 redflag_pos = pos + eX * mySize_y;
3475 f = bound(0, redflag_statuschange_elapsedtime*2, 1);
3476 if(red_icon_prevstatus && f < 1)
3477 drawpic_skin_expanding(redflag_pos, red_icon_prevstatus, '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * red_alpha_prevstatus, DRAWFLAG_NORMAL, f);
3479 drawpic_skin(redflag_pos, red_icon, '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * red_alpha * f, DRAWFLAG_NORMAL);
3481 f = bound(0, blueflag_statuschange_elapsedtime*2, 1);
3482 if(blue_icon_prevstatus && f < 1)
3483 drawpic_skin_expanding(blueflag_pos, blue_icon_prevstatus, '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * blue_alpha_prevstatus, DRAWFLAG_NORMAL, f);
3485 drawpic_skin(blueflag_pos, blue_icon, '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * blue_alpha * f, DRAWFLAG_NORMAL);
3488 // Keyhunt HUD modicon section
3489 float kh_runheretime;
3491 void HUD_Mod_KH_Reset(void)
3496 void HUD_Mod_KH(vector pos, vector mySize)
3498 mod_active = 1; // keyhunt should never hide the mod icons panel
3502 vector p, pa, kh_size, kh_asize;
3505 p_y = pos_y + 0.25 * mySize_y;
3507 kh_keys = getstati(STAT_KH_KEYS);
3509 kh_size_x = mySize_x * 0.25;
3510 kh_size_y = 0.75 * mySize_y;
3512 pa = p - eY * 0.25 * mySize_y;
3514 kh_asize_x = mySize_x * 0.25;
3515 kh_asize_y = mySize_y * 0.25;
3521 for(i = 0; i < 4; ++i)
3523 key = floor(kh_keys / pow(32, i)) & 31;
3525 if(keyteam == 30 && keycount <= 4)
3527 if(keyteam == myteam || keyteam == -1 || keyteam == 30)
3531 // this yields 8 exactly if "RUN HERE" shows
3536 kh_runheretime = time;
3537 pa_y -= fabs(sin((time - kh_runheretime) * 3.5)) * 6; // make the arrows jump in case of RUN HERE
3542 for(i = 0; i < 4; ++i)
3544 key = floor(kh_keys / pow(32, i)) & 31;
3557 default: // owned or dropped
3562 a = a * HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS);
3563 aa = aa * HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS);
3569 drawpic_skin(pa, "kh_redarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL); // show 30% alpha key
3572 drawpic_skin(pa, "kh_bluearrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL); // show 30% alpha key
3575 drawpic_skin(pa, "kh_yellowarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL); // show 30% alpha key
3578 drawpic_skin(pa, "kh_pinkarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL); // show 30% alpha key
3583 switch(i) // YAY! switch(i) inside a for loop for i. DailyWTF, here we come!
3586 drawpic_skin(p, "kh_red", kh_size, '1 1 1', a, DRAWFLAG_NORMAL); // show 30% alpha key
3589 drawpic_skin(p, "kh_blue", kh_size, '1 1 1', a, DRAWFLAG_NORMAL); // show 30% alpha key
3592 drawpic_skin(p, "kh_yellow", kh_size, '1 1 1', a, DRAWFLAG_NORMAL); // show 30% alpha key
3595 drawpic_skin(p, "kh_pink", kh_size, '1 1 1', a, DRAWFLAG_NORMAL); // show 30% alpha key
3599 p_x += 0.25 * mySize_x;
3600 pa_x += 0.25 * mySize_x;
3604 // Nexball HUD mod icon
3605 void HUD_Mod_NexBall(vector pos, vector mySize)
3607 float stat_items, nb_pb_starttime, dt, p;
3609 stat_items = getstati(STAT_ITEMS);
3610 nb_pb_starttime = getstatf(STAT_NB_METERSTART);
3612 if (stat_items & IT_KEY1)
3617 //Manage the progress bar if any
3618 if (nb_pb_starttime > 0)
3620 dt = mod(time - nb_pb_starttime, nb_pb_period);
3621 // one period of positive triangle
3622 p = 2 * dt / nb_pb_period;
3627 HUD_Panel_DrawProgressBar(pos, 0, eX * p * mySize_x + eY * mySize_y, HUD_Panel_GetProgressBarColor("nexball"), cvar("hud_progressbar_alpha") * HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3630 pos_x += 0.5 * mySize_x - 0.5 * mySize_y; //horizontal margin to the picture
3632 if (stat_items & IT_KEY1)
3633 drawpic_skin(pos, "nexball_carrying", '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3636 // Race/CTS HUD mod icons
3637 float crecordtime_prev; // last remembered crecordtime
3638 float crecordtime_change_time; // time when crecordtime last changed
3639 float srecordtime_prev; // last remembered srecordtime
3640 float srecordtime_change_time; // time when srecordtime last changed
3642 float race_status_time;
3643 float race_status_prev;
3644 string race_status_name_prev;
3645 void HUD_Mod_Race(vector pos, vector mySize)
3647 mod_active = 1; // race should never hide the mod icons panel
3649 me = playerslots[player_localentnum - 1];
3651 float f; // yet another function has this
3652 score = me.(scores[ps_primary]);
3654 if not((scores_flags[ps_primary] & SFL_TIME) && !teamplay) // race/cts record display on HUD
3655 return; // no records in the actual race
3657 drawfont = hud_bigfont;
3659 // clientside personal record
3661 if(gametype == GAME_CTS)
3665 t = stof(db_get(ClientProgsDB, strcat(shortmapname, rr, "time")));
3667 if(score && (score < t || !t)) {
3668 db_put(ClientProgsDB, strcat(shortmapname, rr, "time"), ftos(score));
3669 if(cvar("cl_autodemo_delete_keeprecords"))
3671 f = cvar("cl_autodemo_delete");
3673 cvar_set("cl_autodemo_delete", ftos(f)); // don't delete demo with new record!
3677 if(t != crecordtime_prev) {
3678 crecordtime_prev = t;
3679 crecordtime_change_time = time;
3681 f = time - crecordtime_change_time;
3684 drawstring(pos, "Personal best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3685 drawstring(pos + eY * 0.2 * mySize_y, TIME_ENCODED_TOSTRING(t), '1 1 0' * 0.2 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3687 drawstring(pos, "Personal best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3688 drawstring(pos + eY * 0.2 * mySize_y, TIME_ENCODED_TOSTRING(t), '1 1 0' * 0.2 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3689 drawstring_expanding(pos, "Personal best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL, f);
3690 drawstring_expanding(pos + eY * 0.2 * mySize_y, TIME_ENCODED_TOSTRING(t), '1 1 0' * 0.2 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL, f);
3694 t = race_server_record;
3695 if(t != srecordtime_prev) {
3696 srecordtime_prev = t;
3697 srecordtime_change_time = time;
3699 f = time - srecordtime_change_time;
3702 drawstring(pos + eY * 0.5 * mySize_y, "Server best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3703 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', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3705 drawstring(pos + eY * 0.5 * mySize_y, "Server best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3706 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', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL);
3707 drawstring_expanding(pos + eY * 0.5 * mySize_y, "Server best ", '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL, f);
3708 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', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS), DRAWFLAG_NORMAL, f);
3711 if (race_status != race_status_prev || race_status_name != race_status_name_prev) {
3712 race_status_time = time + 5;
3713 race_status_prev = race_status;
3714 if (race_status_name_prev)
3715 strunzone(race_status_name_prev);
3716 race_status_name_prev = strzone(race_status_name);
3719 pos_x += mySize_x/2;
3722 a = bound(0, race_status_time - time, 1);
3725 s = textShortenToWidth(race_status_name, mySize_y, '1 1 0' * 0.1 * mySize_y, stringwidth_colors);
3729 rank = race_CheckName(race_status_name);
3731 rankname = race_PlaceName(rank);
3734 namepos = pos + '0.5 0.9 0' * mySize_y - eX * stringwidth(s, TRUE, '1 1 0' * 0.1 * mySize_y);
3736 rankpos = pos + '0.5 0.25 0' * mySize_y - eX * stringwidth(rankname, TRUE, '1 1 0' * 0.15 * mySize_y);
3738 if(race_status == 0)
3739 drawpic_skin(pos, "race_newfail", '1 1 0' * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3740 else if(race_status == 1) {
3741 drawpic_skin(pos, "race_newtime", '1 1 0' * 0.9 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3742 drawcolorcodedstring(namepos, s, '1 1 0' * 0.1 * mySize_y, HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3743 drawstring(rankpos, rankname, '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3744 } else if(race_status == 2) {
3745 if(race_status_name == GetPlayerName(player_localentnum -1) || !race_myrank || race_myrank < rank)
3746 drawpic_skin(pos, "race_newrankgreen", '1 1 0' * 0.9 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3748 drawpic_skin(pos, "race_newrankyellow", '1 1 0' * 0.9 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3749 drawcolorcodedstring(namepos, s, '1 1 0' * 0.1 * mySize_y, HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3750 drawstring(rankpos, rankname, '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3751 } else if(race_status == 3) {
3752 drawpic_skin(pos, "race_newrecordserver", '1 1 0' * 0.9 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3753 drawcolorcodedstring(namepos, s, '1 1 0' * 0.1 * mySize_y, HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3754 drawstring(rankpos, rankname, '1 1 0' * 0.15 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(HUD_PANEL_MODICONS) * a, DRAWFLAG_NORMAL);
3757 if (race_status_time - time <= 0) {
3758 race_status_prev = -1;
3760 if(race_status_name)
3761 strunzone(race_status_name);
3762 race_status_name = string_null;
3763 if(race_status_name_prev)
3764 strunzone(race_status_name_prev);
3765 race_status_name_prev = string_null;
3767 drawfont = hud_font;
3770 float mod_prev; // previous state of mod_active to check for a change
3772 float mod_change; // "time" when mod_active changed
3774 void HUD_ModIcons(void)
3776 if (gametype != GAME_KEYHUNT && gametype != GAME_CTF && gametype != GAME_NEXBALL && gametype != GAME_CTS && gametype != GAME_RACE && !hud_configure)
3779 float id = HUD_PANEL_MODICONS;
3781 pos = HUD_Panel_GetPos(id);
3782 mySize = HUD_Panel_GetSize(id);
3784 if(mod_active != mod_prev) {
3786 mod_prev = mod_active;
3789 if(mod_active || hud_configure)
3790 mod_alpha = bound(0, (time - mod_change) * 2, 1);
3792 mod_alpha = bound(0, 1 - (time - mod_change) * 2, 1);
3795 HUD_Panel_DrawBg(id, pos, mySize, mod_alpha);
3798 padding = HUD_Panel_GetPadding(id);
3801 pos += '1 1 0' * padding;
3802 mySize -= '2 2 0' * padding;
3805 // these MUST be ran in order to update mod_active
3806 if(gametype == GAME_KEYHUNT)
3807 HUD_Mod_KH(pos, mySize);
3808 else if(gametype == GAME_CTF || hud_configure)
3809 HUD_Mod_CTF(pos, mySize); // forcealpha only needed for ctf icons, as only they are shown in config mode
3810 else if(gametype == GAME_NEXBALL)
3811 HUD_Mod_NexBall(pos, mySize);
3812 else if(gametype == GAME_CTS || gametype == GAME_RACE)
3813 HUD_Mod_Race(pos, mySize);
3816 // Draw pressed keys (#11)
3818 void HUD_DrawPressedKeys(void)
3820 float id = HUD_PANEL_PRESSEDKEYS;
3822 pos = HUD_Panel_GetPos(id);
3823 mySize = HUD_Panel_GetSize(id);
3825 HUD_Panel_DrawBg(id, pos, mySize, 0);
3827 padding = HUD_Panel_GetPadding(id);
3830 pos += '1 1 0' * padding;
3831 mySize -= '2 2 0' * padding;
3836 pressedkeys = getstatf(STAT_PRESSED_KEYS);
3837 drawpic_skin(pos, "key_bg.tga", mySize, '1 1 1', 0.1 * HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3838 drawpic_skin(pos + eX * mySize_x - eX * 0.22 * mySize_x + eY * 0.195 * mySize_y, ((pressedkeys & KEY_CROUCH) ? "key_crouch_inv.tga" : "key_crouch.tga"), '1 1 0' * (1/3) * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3839 drawpic_skin(pos + eX * 0.5 * mySize_x - eX * 0.23 * mySize_y + eY * 0.040 * mySize_y, ((pressedkeys & KEY_FORWARD) ? "key_forward_inv.tga" : "key_forward.tga"), '1 1 0' * 0.46 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3840 drawpic_skin(pos + eX * 0.023 * mySize_x + eY * 0.195 * mySize_y, ((pressedkeys & KEY_JUMP) ? "key_jump_inv.tga" : "key_jump.tga"), '1 1 0' * (1/3) * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3841 drawpic_skin(pos + eX * 0.1 * mySize_x + eY * 0.486 * mySize_y, ((pressedkeys & KEY_LEFT) ? "key_left_inv.tga" : "key_left.tga"), '1 1 0' * 0.46 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3842 drawpic_skin(pos + eX * 0.5 * mySize_x - eX * 0.23 * mySize_y + eY * 0.486 * mySize_y, ((pressedkeys & KEY_BACKWARD) ? "key_backward_inv.tga" : "key_backward.tga"), '1 1 0' * 0.46 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3843 drawpic_skin(pos + eX * mySize_x - eX * 0.372 * mySize_x + eY * 0.486 * mySize_y, ((pressedkeys & KEY_RIGHT) ? "key_right_inv.tga" : "key_right.tga"), '1 1 0' * 0.46 * mySize_y, '1 1 1', HUD_Panel_GetFgAlpha(id), DRAWFLAG_NORMAL);
3846 // Handle chat as a panel (#12)
3850 float id = HUD_PANEL_CHAT;
3852 pos = HUD_Panel_GetPos(id);
3853 mySize = HUD_Panel_GetSize(id);
3855 HUD_Panel_DrawBg(id, pos, mySize, 0);
3857 padding = HUD_Panel_GetPadding(id);
3860 pos += '1 1 0' * padding;
3861 mySize -= '2 2 0' * padding;
3864 cvar_set("con_chatrect", "1");
3866 cvar_set("con_chatrect_x", ftos(pos_x/vid_conwidth));
3867 cvar_set("con_chatrect_y", ftos(pos_y/vid_conheight));
3869 cvar_set("con_chatwidth", ftos(mySize_x/vid_conwidth));
3870 cvar_set("con_chat", ftos(floor(mySize_y/cvar("con_chatsize") - 0.5)));
3875 chatsize = cvar("con_chatsize");
3876 cvar_set("con_chatrect_x", "9001"); // over 9000, we'll fake it instead for more control over alpha and such
3878 for(i = 0; i < cvar("con_chat"); ++i)
3880 if(i == cvar("con_chat") - 1)
3881 a = HUD_Panel_GetFgAlpha(id);
3883 a = HUD_Panel_GetFgAlpha(id) * floor(((i + 1) * 7 + cvar("con_chattime"))/45);
3884 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);
3895 void HUD_ShowSpeed(void)
3898 float pos, conversion_factor;
3899 string speed, zspeed, unit;
3901 switch(cvar("cl_showspeed_unit"))
3906 conversion_factor = 1.0;
3910 conversion_factor = 1.0;
3914 conversion_factor = 0.0254;
3918 conversion_factor = 0.0254 * 3.6;
3922 conversion_factor = 0.0254 * 3.6 * 0.6213711922;
3926 conversion_factor = 0.0254 * 1.943844492; // 1 m/s = 1.943844492 knots, because 1 knot = 1.852 km/h
3930 speed = strcat(ftos(floor( vlen(pmove_vel - pmove_vel_z * '0 0 1') * conversion_factor + 0.5 )), unit);
3932 numsize_x = numsize_y = cvar("cl_showspeed_size");
3933 pos = (vid_conheight - numsize_y) * cvar("cl_showspeed_position");
3935 drawfont = hud_bigfont;
3936 drawstringcenter(eX + pos * eY, speed, numsize, '1 1 1', hud_fg_alpha, DRAWFLAG_NORMAL);
3938 if (cvar("cl_showspeed_z") == 1) {
3939 zspeed = strcat(ftos(fabs(floor( pmove_vel_z * conversion_factor + 0.5 ))), unit);
3940 drawstringcenter(eX + pos * eY + numsize_y * eY, zspeed, numsize * 0.5, '1 1 1', hud_fg_alpha, DRAWFLAG_NORMAL);
3943 drawfont = hud_font;
3946 vector acc_prevspeed;
3950 void HUD_ShowAcceleration(void)
3952 float acceleration, sz, scale, alpha, f;
3953 vector pos, top, rgb;
3954 top_x = vid_conwidth/2;
3957 f = time - acc_prevtime;
3958 if(cvar("cl_showacceleration_z"))
3959 acceleration = (vlen(pmove_vel) - vlen(acc_prevspeed)) * (1 / f);
3961 acceleration = (vlen(pmove_vel - '0 0 1' * pmove_vel_z) - vlen(acc_prevspeed - '0 0 1' * acc_prevspeed_z)) * (1 / f);
3962 acc_prevspeed = pmove_vel;
3963 acc_prevtime = time;
3965 f = bound(0, f * 10, 1);
3966 acc_avg = acc_avg * (1 - f) + acceleration * f;
3967 acceleration = acc_avg / getstatf(STAT_MOVEVARS_MAXSPEED);
3969 pos = top - sz/2 * eY + (cvar("cl_showacceleration_position") * vid_conheight) * eY;
3971 sz = cvar("cl_showacceleration_size");
3972 scale = cvar("cl_showacceleration_scale");
3973 alpha = cvar("cl_showacceleration_alpha");
3974 if (cvar("cl_showacceleration_color_custom"))
3975 rgb = stov(cvar_string("cl_showacceleration_color"));
3978 if (acceleration < 0) {
3979 rgb = '1 .5 .5' - '0 .5 .5' * bound(0, -acceleration * 0.2, 1);
3980 } else if (acceleration > 0) {
3981 rgb = '.5 1 .5' - '.5 0 .5' * bound(0, +acceleration * 0.2, 1);
3985 if (acceleration > 0)
3986 HUD_Panel_DrawProgressBar(pos, 0, acceleration * scale * '40 0 0' + sz * eY, rgb, alpha * hud_fg_alpha, DRAWFLAG_NORMAL);
3987 else if (acceleration < 0)
3988 HUD_Panel_DrawProgressBar(pos + acceleration * scale * '40 0 0', 0, -acceleration * scale * '40 0 0' + sz * eY, rgb, alpha * hud_fg_alpha, DRAWFLAG_NORMAL);
3991 void HUD_Reset (void)
3993 // reset gametype specific icons
3994 if(gametype == GAME_KEYHUNT)
3996 else if(gametype == GAME_CTF)
3997 HUD_Mod_CTF_Reset();
4000 void HUD_Main (void)
4002 if(disable_menu_alphacheck == 1)
4003 menu_fade_alpha = 1;
4005 menu_fade_alpha = (1 - cvar("_menu_alpha"));
4006 hud_fg_alpha = cvar("hud_fg_alpha");
4008 hud_border_thickness = bound(0, cvar("hud_border_thickness"), 5);
4009 hud_accuracy_border_thickness = bound(0, cvar_or("hud_accuracy_border_thickness", 1), 5);
4010 hud_color_bg_team = cvar("hud_color_bg_team");
4012 hud_fontsize = HUD_GetFontsize("hud_fontsize");
4013 hud_fontsize_spec = HUD_GetFontsize("hud_fontsize_spec");
4015 hud_configure = cvar("_hud_configure");
4019 // HUD configure visible grid
4020 if(hud_configure && cvar("hud_configure_grid") && cvar("hud_configure_grid_alpha"))
4024 for(i = 0; i < vid_conwidth/max(2, cvar("hud_configure_grid_x")); ++i)
4026 drawfill(eX * i * max(2, cvar("hud_configure_grid_x")), eX + eY * vid_conheight, '0.5 0.5 0.5', cvar("hud_configure_grid_alpha"), DRAWFLAG_NORMAL);
4029 for(i = 0; i < vid_conheight/max(2, cvar("hud_configure_grid_y")); ++i)
4031 drawfill(eY * i * max(2, cvar("hud_configure_grid_y")), eY + eX * vid_conwidth, '0.5 0.5 0.5', cvar("hud_configure_grid_alpha"), DRAWFLAG_NORMAL);
4035 if(cvar_string("hud_dock") != "")
4036 drawpic_skin('0 0 0', cvar_string("hud_dock"), eX * vid_conwidth + eY * vid_conheight, HUD_Panel_Dock_GetColor(), cvar("hud_dock_alpha") * menu_fade_alpha, DRAWFLAG_NORMAL);
4038 if(HUD_Panel_CheckActive(HUD_PANEL_WEAPONICONS) || hud_configure)
4040 if(HUD_Panel_CheckActive(HUD_PANEL_INVENTORY) || hud_configure)
4042 if(HUD_Panel_CheckActive(HUD_PANEL_POWERUPS) || hud_configure)
4044 if(HUD_Panel_CheckActive(HUD_PANEL_HEALTHARMOR) || hud_configure)
4046 if(HUD_Panel_CheckActive(HUD_PANEL_NOTIFY) || hud_configure)
4048 if(HUD_Panel_CheckActive(HUD_PANEL_TIMER) || hud_configure)
4051 if(HUD_Panel_CheckActive(HUD_PANEL_RADAR) || hud_configure)
4052 if(cvar_string("hud_radar") != "0" && (cvar("hud_radar") == 2 || teamplay))
4054 if(HUD_Panel_CheckActive(HUD_PANEL_SCORE) || hud_configure)
4056 if(HUD_Panel_CheckActive(HUD_PANEL_RACETIMER) || hud_configure)
4057 if(gametype == GAME_RACE || gametype == GAME_CTS || hud_configure)
4059 if(HUD_Panel_CheckActive(HUD_PANEL_VOTE) || hud_configure)
4061 if(HUD_Panel_CheckActive(HUD_PANEL_MODICONS) || hud_configure)
4064 if(HUD_Panel_CheckActive(HUD_PANEL_PRESSEDKEYS) || hud_configure)
4065 if(spectatee_status > 0 || cvar("hud_pressedkeys") >= 2 || hud_configure)
4066 HUD_DrawPressedKeys();
4067 if(HUD_Panel_CheckActive(HUD_PANEL_CHAT) || hud_configure)
4070 cvar_set("con_csqcpositioning", "0");
4072 // TODO hud_'ify these
4073 if (cvar("cl_showspeed"))
4075 if (cvar("cl_showacceleration"))
4076 HUD_ShowAcceleration();
4078 if (hud_configure && spectatee_status) // try to join if we are in hud_configure mode, but still spectating (in order to get rid of motd and such)
4079 localcmd("cmd selectteam auto; cmd join\n");
4081 if (!hud_configure) // hud config mode disabled, enable normal alpha stuff again
4082 disable_menu_alphacheck = 0;