1 void drawstringright(vector, string, vector, vector, float, float);
2 void drawstringcenter(vector, string, vector, vector, float, float);
4 float weapon_hits[WEP_COUNT];
5 float weapon_fired[WEP_COUNT];
13 float sbar_color_bg_team;
14 float sbar_border_thickness;
15 float sbar_scoreboard_alpha_bg;
16 float sbar_scoreboard_alpha_fg;
17 float sbar_scoreboard_highlight;
18 float sbar_scoreboard_highlight_alpha;
19 float sbar_scoreboard_highlight_alpha_self;
20 float sbar_hudselector;
21 float sbar_hud_accuracy;
22 float sbar_scoreboard_alpha_name;
23 float sbar_scoreboard_alpha_name_self;
25 float ps_primary, ps_secondary;
26 float ts_primary, ts_secondary;
29 float SCOREBOARD_OFFSET = 50;
31 void CSQC_kh_hudreset();
33 void CSQC_ctf_hudreset();
38 void Sbar_FinaleOverlay()
41 pos_x = (vid_conwidth - 1)/2;
45 //drawpic(pos, "gfx/finale", '0 0 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
47 //drawstring(pos, "END", sbar_fontsize, '1 1 1', 1, DRAWFLAG_NORMAL);
51 float weaponspace[10];
52 float weapon_first, weapon_last;
53 void Sbar_DrawWeapon_Clear()
58 for(idx = 0; idx < 10; ++idx)
60 for(idx = 0; idx <= 23; ++idx)
62 if(weaponimpulse[idx] >= 0)
70 void Sbar_DrawWeapon(float nr, float fade, float active, float wc)
72 vector pos, vsize, fill_colour;
73 float value, idx, imp, sp, weapon_hit, weapon_damage, weapon_stats;
75 imp = weaponimpulse[nr];
76 weapon_hit = weapon_hits[wc];
77 weapon_damage = weapon_fired[wc];
83 value = (active) ? 1 : 0.6;
84 color_x = color_y = color_z = value;
86 // width = 300, height = 100
87 const float w_width = 24, w_height = 12, w_space = 2, font_size = 8;
89 sp = weaponspace[idx] + 1;
90 weaponspace[idx] = sp;
92 pos_x = (vid_conwidth + 6 - w_width * 9) * 0.5 + w_width * idx;
93 pos_y = (vid_conheight - w_height * sp) - 38; // move 38 pixels up
99 drawpic(pos, "gfx/hud/sb_ammobg", vsize, color, value * fade * sbar_alpha_fg, DRAWFLAG_NORMAL);
100 drawpic(pos, strcat("gfx/hud/inv_weapon", ftos(nr)), vsize, color, value * fade * sbar_alpha_fg, DRAWFLAG_NORMAL);
106 drawstring(pos, ftos(imp), vsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
108 // draw the weapon accuracy on the HUD
109 if(sbar_hud_accuracy)
111 weapon_stats = rint(100*weapon_hit/weapon_damage);
112 fill_colour_x = 1 - 0.015 * weapon_stats;
113 fill_colour_y = 1 - 0.015 * (100 - weapon_stats);
114 drawstringright(pos + '22 0 0', strcat(ftos(weapon_stats),"%"), '6 6 0', fill_colour, sbar_alpha_fg, 0);
118 void Sbar_DrawXNum (vector pos, float num, float digits, float showminusplus, float lettersize, vector rgb, float highlighted, float stroke, float alpha, float dflags)
121 string str, tmp, l_length;
123 vector vsize, num_color;
125 vsize_x = vsize_y = lettersize;
128 // showminusplus 1: always prefix with minus sign (useful in race distribution display)
129 // showminusplus 2: always prefix with plus sign (useful in race distribution display)
130 // showminusplus 3: prefix with minus sign if negative, plus sign if positive (useful in score distribution display)
132 if((showminusplus == 2 && num >= 0) || (num > 0 && showminusplus == 3))
139 if(num < 0 || (num < 0 && showminusplus == 3) || (showminusplus == 1 && num <= 0))
151 str = strcat(substring("0000000000", 0, digits - strlen(tmp)), tmp);
160 str = substring(str, l-digits, 999);
162 } else if(l < digits)
163 pos_x += (digits-l) * lettersize;
165 if (highlighted == 1) {
167 hl_size_x = vsize_x * l + vsize_x * 0.2;
168 hl_size_y = vsize_y * 1.1;
171 hl_size_x = hl_size_x + vsize_x;
174 hl_pos_x = pos_x - lettersize/10;
175 hl_pos_y = pos_y - lettersize/20;
178 drawpic(hl_pos, strcat("gfx/hud/sb_highlight_", l_length), hl_size, '1 1 1', alpha, dflags);
189 drawpic(pos, "gfx/hud/num_minus_stroke", vsize, rgb, alpha, dflags);
190 drawpic(pos, "gfx/hud/num_minus", vsize, num_color, alpha, dflags);
195 drawpic(pos, "gfx/hud/num_plus_stroke", vsize, rgb, alpha, dflags);
196 drawpic(pos, "gfx/hud/num_plus", vsize, num_color, alpha, dflags);
200 for(i = 0; i < l; ++i)
202 tmp = substring(str, i, 1);
204 drawpic(pos, strcat("gfx/hud/num_", tmp, "_stroke"), vsize, rgb, alpha, dflags);
205 drawpic(pos, strcat("gfx/hud/num_", tmp), vsize, num_color, alpha, dflags);
210 void Sbar_DrawXNum_Colored (vector pos, float x, float lettersize, float alpha)
218 color_x = 0.4 - (x-150)*0.02 * 0.4; //red value between 0.4 -> 0
219 color_y = 0.9 + (x-150)*0.02 * 0.1; // green value between 0.9 -> 1
223 color_x = 1 - (x-100)*0.02 * 0.6; //red value between 1 -> 0.4
224 color_y = 1 - (x-100)*0.02 * 0.1; // green value between 1 -> 0.9
225 color_z = 1 - (x-100)*0.02; // blue value between 1 -> 0
230 color_z = 0.2 + (x-50)*0.02 * 0.8; // blue value between 0.2 -> 1
234 color_y = (x-20)*90/27/100; // green value between 0 -> 1
235 color_z = (x-20)*90/27/100 * 0.2; // blue value between 0 -> 0.2
242 Sbar_DrawXNum(pos, x, 3, 0, lettersize, color, 0, 0, alpha, DRAWFLAG_NORMAL);
245 void Cmd_Sbar_SetFields(float argc);
246 void Sbar_InitScores()
250 ps_primary = ps_secondary = ts_primary = ts_secondary = -1;
251 for(i = 0; i < MAX_SCORE; ++i)
253 f = (scores_flags[i] & SFL_SORT_PRIO_MASK);
254 if(f == SFL_SORT_PRIO_PRIMARY)
256 if(f == SFL_SORT_PRIO_SECONDARY)
259 if(ps_secondary == -1)
260 ps_secondary = ps_primary;
262 for(i = 0; i < MAX_TEAMSCORE; ++i)
264 f = (teamscores_flags[i] & SFL_SORT_PRIO_MASK);
265 if(f == SFL_SORT_PRIO_PRIMARY)
267 if(f == SFL_SORT_PRIO_SECONDARY)
270 if(ts_secondary == -1)
271 ts_secondary = ts_primary;
273 Cmd_Sbar_SetFields(0);
276 void Sbar_UpdatePlayerPos(entity pl);
277 float SetTeam(entity pl, float Team);
279 void Sbar_UpdatePlayerTeams()
286 for(pl = players.sort_next; pl; pl = pl.sort_next)
289 Team = GetPlayerColor(pl.sv_entnum);
290 if(SetTeam(pl, Team))
293 Sbar_UpdatePlayerPos(pl);
297 pl = players.sort_next;
302 print(strcat("PNUM: ", ftos(num), "\n"));
307 float Sbar_ComparePlayerScores(entity left, entity right)
310 vl = GetPlayerColor(left.sv_entnum);
311 vr = GetPlayerColor(right.sv_entnum);
314 vl = COLOR_SPECTATOR;
316 vr = COLOR_SPECTATOR;
323 if(vl == COLOR_SPECTATOR)
325 // FIRST the one with scores (spectators), THEN the ones without (downloaders)
327 if(!left.gotscores && right.gotscores)
332 vl = left.scores[ps_primary];
333 vr = right.scores[ps_primary];
334 if(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)
336 if(vl == 0 && vr != 0)
338 if(vl != 0 && vr == 0)
342 return IS_INCREASING(scores_flags[ps_primary]);
344 return IS_DECREASING(scores_flags[ps_primary]);
346 vl = left.scores[ps_secondary];
347 vr = right.scores[ps_secondary];
348 if(scores_flags[ps_secondary] & SFL_ZERO_IS_WORST)
350 if(vl == 0 && vr != 0)
352 if(vl != 0 && vr == 0)
356 return IS_INCREASING(scores_flags[ps_secondary]);
358 return IS_DECREASING(scores_flags[ps_secondary]);
363 void Sbar_UpdatePlayerPos(entity player)
365 for(other = player.sort_next; other && Sbar_ComparePlayerScores(player, other); other = player.sort_next)
367 SORT_SWAP(player, other);
369 for(other = player.sort_prev; other != players && Sbar_ComparePlayerScores(other, player); other = player.sort_prev)
371 SORT_SWAP(other, player);
375 float Sbar_CompareTeamScores(entity left, entity right)
379 if(left.team == COLOR_SPECTATOR)
381 if(right.team == COLOR_SPECTATOR)
384 vl = left.teamscores[ts_primary];
385 vr = right.teamscores[ts_primary];
387 return IS_INCREASING(teamscores_flags[ts_primary]);
389 return IS_DECREASING(teamscores_flags[ts_primary]);
391 vl = left.teamscores[ts_secondary];
392 vr = right.teamscores[ts_secondary];
394 return IS_INCREASING(teamscores_flags[ts_secondary]);
396 return IS_DECREASING(teamscores_flags[ts_secondary]);
401 void Sbar_UpdateTeamPos(entity Team)
403 for(other = Team.sort_next; other && Sbar_CompareTeamScores(Team, other); other = Team.sort_next)
405 SORT_SWAP(Team, other);
407 for(other = Team.sort_prev; other != teams && Sbar_CompareTeamScores(other, Team); other = Team.sort_prev)
409 SORT_SWAP(other, Team);
413 void Cmd_Sbar_Help(float argc)
415 print("You can modify the scoreboard using the ^2sbar_columns_set command.\n");
416 print("^3|---------------------------------------------------------------|\n");
418 print("^2sbar_columns_set default\n");
419 print("^2sbar_columns_set ^7filed1 field2 ...\n");
420 print("The following field names are recognized (case insensitive):\n");
421 print("You can use a ^3|^7 to start the right-aligned fields.\n\n");
423 print("^3name^7 or ^3nick^7 Name of a player\n");
424 print("^3ping^7 Ping time\n");
425 print("^3pl^7 Packet loss\n");
426 print("^3kills^7 Number of kills\n");
427 print("^3deaths^7 Number of deaths\n");
428 print("^3suicides^7 Number of suicides\n");
429 print("^3frags^7 kills - suicides\n");
430 print("^3kd^7 The kill-death ratio\n");
431 print("^3caps^7 How often a flag (CTF) or a key (KeyHunt) was captured\n");
432 print("^3pickups^7 How often a flag (CTF) or a key (KeyHunt) was picked up\n");
433 print("^3fckills^7 Number of flag carrier kills\n");
434 print("^3returns^7 Number of flag returns\n");
435 print("^3drops^7 Number of flag drops\n");
436 print("^3lives^7 Number of lives (LMS)\n");
437 print("^3rank^7 Player rank\n");
438 print("^3pushes^7 Number of players pushed into void\n");
439 print("^3destroyed^7 Number of keys destroyed by pushing them into void\n");
440 print("^3kckills^7 Number of keys carrier kills\n");
441 print("^3losses^7 Number of times a key was lost\n");
442 print("^3laps^7 Number of laps finished (race/cts)\n");
443 print("^3time^7 Total time raced (race/cts)\n");
444 print("^3fastest^7 Time of fastest lap (race/cts)\n");
445 print("^3ticks^7 Number of ticks (DOM)\n");
446 print("^3takes^7 Number of domination points taken (DOM)\n");
447 print("^3score^7 Total score\n\n");
449 print("Before a field you can put a + or - sign, then a comma separated list\n");
450 print("of game types, then a slash, to make the field show up only in these\n");
451 print("or in all but these game types. You can also specify 'all' as a\n");
452 print("field to show all fields available for the current game mode.\n\n");
454 print("The special game type names 'teams' and 'noteams' can be used to\n");
455 print("include/exclude ALL teams/noteams game modes.\n\n");
457 print("Example: sbar_columns_set name ping pl | +ctf/field3 -dm/field4\n");
458 print("will display name, ping and pl aligned to the left, and the fields\n");
459 print("right of the vertical bar aligned to the right.\n");
460 print("'field3' will only be shown in CTF, and 'field4' will be shown in all\n");
461 print("other gamemodes except DM.\n");
464 string Sbar_DefaultColumnLayout()
466 return strcat( // fteqcc sucks
468 "-teams,race,lms/kills -teams,lms/deaths -teams,lms,race/suicides -race,dm,tdm/frags ", // tdm already has this in "score"
469 "+ctf/caps +ctf/pickups +ctf/fckills +ctf/returns ",
470 "+lms/lives +lms/rank ",
471 "+kh/caps +kh/pushes +kh/destroyed ",
472 "?+race/laps ?+race/time ?+race/fastest ",
473 "+as/objectives +nexball/faults +nexball/goals ",
474 "-lms,race,nexball/score");
477 void Cmd_Sbar_SetFields(float argc)
482 float have_name, have_primary, have_secondary, have_separator;
485 // TODO: re enable with gametype dependant cvars?
486 if(argc < 2) // no arguments provided
487 argc = tokenizebyseparator(strcat("x ", cvar_string("sbar_columns")), " ");
490 argc = tokenizebyseparator(strcat("x ", Sbar_DefaultColumnLayout()), " ");
494 if(argv(1) == "default")
495 argc = tokenizebyseparator(strcat("x ", Sbar_DefaultColumnLayout()), " ");
496 else if(argv(1) == "all")
499 s = "ping pl color name |";
500 for(i = 0; i < MAX_SCORE; ++i)
503 if(i != ps_secondary)
504 if(scores_label[i] != "")
505 s = strcat(s, " ", scores_label[i]);
507 if(ps_secondary != ps_primary)
508 s = strcat(s, " ", scores_label[ps_secondary]);
509 s = strcat(s, " ", scores_label[ps_primary]);
510 argc = tokenizebyseparator(strcat("x ", s), " ");
517 drawfont = sbar_font;
518 digit = stringwidth("0123456789", FALSE) / 10;
520 for(i = 0; i < argc - 1; ++i)
526 if(substring(str, 0, 1) == "?")
529 str = substring(str, 1, strlen(str) - 1);
532 slash = strstrofs(str, "/", 0);
535 pattern = substring(str, 0, slash);
536 str = substring(str, slash + 1, strlen(str) - (slash + 1));
538 if not(isGametypeInFilter(gametype, teamplay, pattern))
542 strunzone(sbar_title[sbar_num_fields]);
543 sbar_title[sbar_num_fields] = strzone(str);
544 sbar_size[sbar_num_fields] = stringwidth(str, FALSE);
545 str = strtolower(str);
548 sbar_field[sbar_num_fields] = SP_PING;
549 } else if(str == "pl") {
550 sbar_field[sbar_num_fields] = SP_PL;
551 } else if(str == "kd" || str == "kdr" || str == "kdratio" || str == "k/d") {
552 sbar_field[sbar_num_fields] = SP_KDRATIO;
553 } else if(str == "name" || str == "nick") {
554 sbar_field[sbar_num_fields] = SP_NAME;
556 } else if(str == "|") {
557 sbar_field[sbar_num_fields] = SP_SEPARATOR;
560 for(j = 0; j < MAX_SCORE; ++j)
561 if(str == strtolower(scores_label[j]))
562 goto found; // sorry, but otherwise fteqcc -O3 miscompiles this and warns about "unreachable code"
571 print(strcat("^1Error:^7 Unknown score field: '", str, "'\n"));
575 sbar_field[sbar_num_fields] = j;
578 if(j == ps_secondary)
582 if(sbar_num_fields >= MAX_SBAR_FIELDS)
586 if(scores_flags[ps_primary] & SFL_ALLOW_HIDE)
588 if(scores_flags[ps_secondary] & SFL_ALLOW_HIDE)
590 if(ps_primary == ps_secondary)
592 missing = (!have_primary) + (!have_secondary) + (!have_separator) + (!have_name);
594 if(sbar_num_fields+missing < MAX_SBAR_FIELDS)
598 strunzone(sbar_title[sbar_num_fields]);
599 for(i = sbar_num_fields; i > 0; --i)
601 sbar_title[i] = sbar_title[i-1];
602 sbar_size[i] = sbar_size[i-1];
603 sbar_field[i] = sbar_field[i-1];
605 sbar_title[0] = strzone("name");
606 sbar_field[0] = SP_NAME;
608 print("fixed missing field 'name'\n");
612 strunzone(sbar_title[sbar_num_fields]);
613 for(i = sbar_num_fields; i > 1; --i)
615 sbar_title[i] = sbar_title[i-1];
616 sbar_size[i] = sbar_size[i-1];
617 sbar_field[i] = sbar_field[i-1];
619 sbar_title[1] = strzone("|");
620 sbar_field[1] = SP_SEPARATOR;
621 sbar_size[1] = stringwidth("|", FALSE);
623 print("fixed missing field '|'\n");
626 else if(!have_separator)
628 strunzone(sbar_title[sbar_num_fields]);
629 sbar_title[sbar_num_fields] = strzone("|");
630 sbar_size[sbar_num_fields] = stringwidth("|", FALSE);
631 sbar_field[sbar_num_fields] = SP_SEPARATOR;
633 print("fixed missing field '|'\n");
637 strunzone(sbar_title[sbar_num_fields]);
638 sbar_title[sbar_num_fields] = strzone(scores_label[ps_secondary]);
639 sbar_size[sbar_num_fields] = stringwidth(sbar_title[sbar_num_fields], FALSE);
640 sbar_field[sbar_num_fields] = ps_secondary;
642 print("fixed missing field '", scores_label[ps_secondary], "'\n");
646 strunzone(sbar_title[sbar_num_fields]);
647 sbar_title[sbar_num_fields] = strzone(scores_label[ps_primary]);
648 sbar_size[sbar_num_fields] = stringwidth(sbar_title[sbar_num_fields], FALSE);
649 sbar_field[sbar_num_fields] = ps_primary;
651 print("fixed missing field '", scores_label[ps_primary], "'\n");
655 sbar_field[sbar_num_fields] = SP_END;
659 vector sbar_field_rgb;
660 string sbar_field_icon0;
661 string sbar_field_icon1;
662 string sbar_field_icon2;
663 vector sbar_field_icon0_rgb;
664 vector sbar_field_icon1_rgb;
665 vector sbar_field_icon2_rgb;
666 float sbar_field_icon0_alpha;
667 float sbar_field_icon1_alpha;
668 float sbar_field_icon2_alpha;
669 string Sbar_GetField(entity pl, float field)
671 float tmp, num, denom, f;
673 sbar_field_rgb = '1 1 1';
674 sbar_field_icon0 = "";
675 sbar_field_icon1 = "";
676 sbar_field_icon2 = "";
677 sbar_field_icon0_rgb = '1 1 1';
678 sbar_field_icon1_rgb = '1 1 1';
679 sbar_field_icon2_rgb = '1 1 1';
680 sbar_field_icon0_alpha = 1;
681 sbar_field_icon1_alpha = 1;
682 sbar_field_icon2_alpha = 1;
687 return "\x8D\x8D\x8D"; // >>> sign
688 str = getplayerkey(pl.sv_entnum, "ping");
691 tmp = max(0, min(220, stof(str)-80)) / 220;
692 sbar_field_rgb = '1 1 1' - '0 1 1'*tmp;
698 str = getplayerkey(pl.sv_entnum, "pl");
701 tmp = bound(0, stof(str), 20) / 20; // 20% is REALLY BAD pl
702 sbar_field_rgb = '1 0.5 0.5' - '0 0.5 0.5'*tmp;
706 if(ready_waiting && pl.ready)
708 sbar_field_icon0 = "gfx/sb_player_ready";
712 f = stof(getplayerkey(pl.sv_entnum, "colors"));
714 sbar_field_icon0 = "gfx/sb_playercolor_base";
715 sbar_field_icon1 = "gfx/sb_playercolor_shirt";
716 sbar_field_icon1_rgb = colormapPaletteColor(floor(f / 16), 0);
717 sbar_field_icon2 = "gfx/sb_playercolor_pants";
718 sbar_field_icon2_rgb = colormapPaletteColor(mod(f, 16), 1);
721 return GetPlayerName(pl.sv_entnum);
724 f = pl.(scores[SP_KILLS]);
725 f -= pl.(scores[SP_SUICIDES]);
729 num = pl.(scores[SP_KILLS]);
730 denom = pl.(scores[SP_DEATHS]);
733 sbar_field_rgb = '0 1 0';
735 } else if(num <= 0) {
736 sbar_field_rgb = '1 0 0';
737 str = ftos(num/denom);
739 str = ftos(num/denom);
741 tmp = strstrofs(str, ".", 0);
743 str = substring(str, 0, tmp+2);
747 tmp = pl.(scores[field]);
748 f = scores_flags[field];
749 if(field == ps_primary)
750 sbar_field_rgb = '1 1 0';
751 else if(field == ps_secondary)
752 sbar_field_rgb = '0 1 1';
754 sbar_field_rgb = '1 1 1';
755 return ScoreString(f, tmp);
760 float xmin, xmax, ymin, ymax, sbwidth;
761 float sbar_fixscoreboardcolumnwidth_len;
762 float sbar_fixscoreboardcolumnwidth_iconlen;
763 float sbar_fixscoreboardcolumnwidth_marginlen;
765 float stringwidth_colors(string s)
767 return stringwidth(s, TRUE);
770 float stringwidth_nocolors(string s)
772 return stringwidth(s, FALSE);
775 string Sbar_FixScoreboardColumnWidth(float i, string str)
779 field = sbar_field[i];
781 sbar_fixscoreboardcolumnwidth_iconlen = 0;
783 if(sbar_field_icon0 != "")
785 sz = drawgetimagesize(sbar_field_icon0);
787 if(sbar_fixscoreboardcolumnwidth_iconlen < f)
788 sbar_fixscoreboardcolumnwidth_iconlen = f;
791 if(sbar_field_icon1 != "")
793 sz = drawgetimagesize(sbar_field_icon1);
795 if(sbar_fixscoreboardcolumnwidth_iconlen < f)
796 sbar_fixscoreboardcolumnwidth_iconlen = f;
799 if(sbar_field_icon2 != "")
801 sz = drawgetimagesize(sbar_field_icon2);
803 if(sbar_fixscoreboardcolumnwidth_iconlen < f)
804 sbar_fixscoreboardcolumnwidth_iconlen = f;
807 sbar_fixscoreboardcolumnwidth_iconlen *= sbar_fontsize_y / sbar_fontsize_x; // fix icon aspect
809 if(sbar_fixscoreboardcolumnwidth_iconlen != 0)
810 sbar_fixscoreboardcolumnwidth_marginlen = stringwidth(" ", FALSE);
812 sbar_fixscoreboardcolumnwidth_marginlen = 0;
814 if(field == SP_NAME) // name gets all remaining space
817 namesize = sbwidth / sbar_fontsize_x;
818 for(j = 0; j < sbar_num_fields; ++j)
820 if (sbar_field[i] != SP_SEPARATOR)
821 namesize -= sbar_size[j] + 1;
823 sbar_size[i] = namesize;
825 if (sbar_fixscoreboardcolumnwidth_iconlen != 0)
826 namesize -= sbar_fixscoreboardcolumnwidth_marginlen + sbar_fixscoreboardcolumnwidth_iconlen;
827 str = textShortenToWidth(str, namesize, stringwidth_colors);
828 sbar_fixscoreboardcolumnwidth_len = stringwidth(str, TRUE);
831 sbar_fixscoreboardcolumnwidth_len = stringwidth(str, FALSE);
833 f = sbar_fixscoreboardcolumnwidth_len + sbar_fixscoreboardcolumnwidth_marginlen + sbar_fixscoreboardcolumnwidth_iconlen;
840 void Sbar_PrintScoreboardItem(vector pos, entity pl, float is_self, float pl_number)
842 vector tmp, plteamrgb;
843 plteamrgb = GetTeamRGB(pl.team);
847 is_spec = (GetPlayerColor(pl.sv_entnum) == COLOR_SPECTATOR);
851 tmp_y = sbar_fontsize_y * 1.25;
854 // alternated rows highlighting
856 drawfill(pos - '1 1 0', tmp + '2 0 0', plteamrgb, sbar_scoreboard_highlight_alpha_self, DRAWFLAG_NORMAL);
859 if (sbar_scoreboard_highlight)
860 if(!mod(pl_number,2))
861 drawfill(pos - '1 1 0', tmp + '2 0 0', plteamrgb, sbar_scoreboard_highlight_alpha, DRAWFLAG_NORMAL);
866 for(i = 0; i < sbar_num_fields; ++i)
868 field = sbar_field[i];
869 if(field == SP_SEPARATOR)
872 if(is_spec && field != SP_NAME && field != SP_PING) {
873 pos_x += sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
876 str = Sbar_GetField(pl, field);
877 str = Sbar_FixScoreboardColumnWidth(i, str);
879 pos_x += sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
881 if(field == SP_NAME) {
882 tmp_x = sbar_fontsize_x*(sbar_size[i] - sbar_fixscoreboardcolumnwidth_iconlen - sbar_fixscoreboardcolumnwidth_marginlen) + sbar_fontsize_x;
884 drawcolorcodedstring(pos - tmp, str, sbar_fontsize, sbar_scoreboard_alpha_name_self, DRAWFLAG_NORMAL);
886 drawcolorcodedstring(pos - tmp, str, sbar_fontsize, sbar_scoreboard_alpha_name, DRAWFLAG_NORMAL);
888 tmp_x = sbar_fixscoreboardcolumnwidth_len*sbar_fontsize_x + sbar_fontsize_x;
890 drawstring(pos - tmp, str, sbar_fontsize, sbar_field_rgb, sbar_scoreboard_alpha_name_self, DRAWFLAG_NORMAL);
892 drawstring(pos - tmp, str, sbar_fontsize, sbar_field_rgb, sbar_scoreboard_alpha_name, DRAWFLAG_NORMAL);
895 tmp_x = sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
896 if(sbar_field_icon0 != "")
898 drawpic(pos - tmp, sbar_field_icon0, '0 1 0' * sbar_fontsize_y + '1 0 0' * sbar_fontsize_x * sbar_fixscoreboardcolumnwidth_iconlen, sbar_field_icon1_rgb, sbar_field_icon0_alpha * sbar_scoreboard_alpha_name_self, DRAWFLAG_NORMAL);
900 drawpic(pos - tmp, sbar_field_icon0, '0 1 0' * sbar_fontsize_y + '1 0 0' * sbar_fontsize_x * sbar_fixscoreboardcolumnwidth_iconlen, sbar_field_icon1_rgb, sbar_field_icon0_alpha * sbar_scoreboard_alpha_name, DRAWFLAG_NORMAL);
901 if(sbar_field_icon1 != "")
903 drawpic(pos - tmp, sbar_field_icon1, '0 1 0' * sbar_fontsize_y + '1 0 0' * sbar_fontsize_x * sbar_fixscoreboardcolumnwidth_iconlen, sbar_field_icon1_rgb, sbar_field_icon1_alpha * sbar_scoreboard_alpha_name_self, DRAWFLAG_NORMAL);
905 drawpic(pos - tmp, sbar_field_icon1, '0 1 0' * sbar_fontsize_y + '1 0 0' * sbar_fontsize_x * sbar_fixscoreboardcolumnwidth_iconlen, sbar_field_icon1_rgb, sbar_field_icon1_alpha * sbar_scoreboard_alpha_name, DRAWFLAG_NORMAL);
906 if(sbar_field_icon2 != "")
908 drawpic(pos - tmp, sbar_field_icon2, '0 1 0' * sbar_fontsize_y + '1 0 0' * sbar_fontsize_x * sbar_fixscoreboardcolumnwidth_iconlen, sbar_field_icon2_rgb, sbar_field_icon2_alpha * sbar_scoreboard_alpha_name_self, DRAWFLAG_NORMAL);
910 drawpic(pos - tmp, sbar_field_icon2, '0 1 0' * sbar_fontsize_y + '1 0 0' * sbar_fontsize_x * sbar_fixscoreboardcolumnwidth_iconlen, sbar_field_icon2_rgb, sbar_field_icon2_alpha * sbar_scoreboard_alpha_name, DRAWFLAG_NORMAL);
913 if(sbar_field[i] == SP_SEPARATOR)
916 for(i = sbar_num_fields-1; i > 0; --i)
918 field = sbar_field[i];
919 if(field == SP_SEPARATOR)
922 if(is_spec && field != SP_NAME && field != SP_PING) {
923 pos_x -= sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
927 str = Sbar_GetField(pl, field);
928 str = Sbar_FixScoreboardColumnWidth(i, str);
930 if(field == SP_NAME) {
931 tmp_x = sbar_fontsize_x*sbar_fixscoreboardcolumnwidth_len; // left or right aligned? let's put it right...
933 drawcolorcodedstring(pos - tmp, str, sbar_fontsize, sbar_scoreboard_alpha_name_self, DRAWFLAG_NORMAL);
935 drawcolorcodedstring(pos - tmp, str, sbar_fontsize, sbar_scoreboard_alpha_name, DRAWFLAG_NORMAL);
937 tmp_x = sbar_fontsize_x*sbar_fixscoreboardcolumnwidth_len;
939 drawstring(pos - tmp, str, sbar_fontsize, sbar_field_rgb, sbar_scoreboard_alpha_name_self, DRAWFLAG_NORMAL);
941 drawstring(pos - tmp, str, sbar_fontsize, sbar_field_rgb, sbar_scoreboard_alpha_name, DRAWFLAG_NORMAL);
944 tmp_x = sbar_fontsize_x*sbar_size[i];
945 if(sbar_field_icon0 != "")
947 drawpic(pos - tmp, sbar_field_icon0, '0 1 0' * sbar_fontsize_y + '1 0 0' * sbar_fontsize_x * sbar_fixscoreboardcolumnwidth_iconlen, sbar_field_icon1_rgb, sbar_field_icon0_alpha * sbar_scoreboard_alpha_name_self, DRAWFLAG_NORMAL);
949 drawpic(pos - tmp, sbar_field_icon0, '0 1 0' * sbar_fontsize_y + '1 0 0' * sbar_fontsize_x * sbar_fixscoreboardcolumnwidth_iconlen, sbar_field_icon1_rgb, sbar_field_icon0_alpha * sbar_scoreboard_alpha_name, DRAWFLAG_NORMAL);
950 if(sbar_field_icon1 != "")
952 drawpic(pos - tmp, sbar_field_icon1, '0 1 0' * sbar_fontsize_y + '1 0 0' * sbar_fontsize_x * sbar_fixscoreboardcolumnwidth_iconlen, sbar_field_icon1_rgb, sbar_field_icon1_alpha * sbar_scoreboard_alpha_name_self, DRAWFLAG_NORMAL);
954 drawpic(pos - tmp, sbar_field_icon1, '0 1 0' * sbar_fontsize_y + '1 0 0' * sbar_fontsize_x * sbar_fixscoreboardcolumnwidth_iconlen, sbar_field_icon1_rgb, sbar_field_icon1_alpha * sbar_scoreboard_alpha_name, DRAWFLAG_NORMAL);
955 if(sbar_field_icon2 != "")
957 drawpic(pos - tmp, sbar_field_icon2, '0 1 0' * sbar_fontsize_y + '1 0 0' * sbar_fontsize_x * sbar_fixscoreboardcolumnwidth_iconlen, sbar_field_icon2_rgb, sbar_field_icon2_alpha * sbar_scoreboard_alpha_name_self, DRAWFLAG_NORMAL);
959 drawpic(pos - tmp, sbar_field_icon2, '0 1 0' * sbar_fontsize_y + '1 0 0' * sbar_fontsize_x * sbar_fixscoreboardcolumnwidth_iconlen, sbar_field_icon2_rgb, sbar_field_icon2_alpha * sbar_scoreboard_alpha_name, DRAWFLAG_NORMAL);
960 pos_x -= sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
966 * Sbar_Scoreboard_MakeTable
968 * Makes a table for a team (for all playing players in DM) and fills it
971 vector Sbar_Scoreboard_MakeTable(vector pos, entity tm, vector rgb, vector bg_size)
973 float body_table_height, i;
974 vector tmp, column_dim;
977 body_table_height = 1.25 * sbar_fontsize_y * max(1, tm.team_size); // no player? show 1 empty line
982 tmp_y = 1.25 * sbar_fontsize_y;
985 drawpic(pos, "gfx/hud/sb_scoreboard_tableheader", tmp, '0.5 0.5 0.5', sbar_scoreboard_alpha_bg, DRAWFLAG_NORMAL);
988 tmp_y += sbar_border_thickness;
989 tmp_y += body_table_height;
990 drawborderlines(sbar_border_thickness, pos, tmp, '0 0 0', sbar_scoreboard_alpha_bg, DRAWFLAG_NORMAL); // more transparency for the scoreboard
992 // separator header/table
993 pos_y += 1.25 * sbar_fontsize_y;
994 tmp_y = sbar_border_thickness;
995 drawfill(pos, tmp, '0 0 0', sbar_scoreboard_alpha_bg, DRAWFLAG_NORMAL);
997 pos_y += sbar_border_thickness;
1000 tmp_y = body_table_height;
1001 drawpic_tiled(pos, "gfx/hud/sb_scoreboard_bg", bg_size, tmp, rgb * sbar_color_bg_team, sbar_scoreboard_alpha_bg, DRAWFLAG_NORMAL);
1003 // anyway, apply some color
1004 //drawfill(pos, tmp + '2 0 0', rgb, 0.1, DRAWFLAG_NORMAL);
1006 // go back to the top to make alternated columns highlighting and to print the strings
1007 pos_y -= 1.25 * sbar_fontsize_y;
1008 pos_y -= sbar_border_thickness;
1012 if (sbar_scoreboard_highlight)
1014 column_dim_y = 1.25 * sbar_fontsize_y; // header
1015 column_dim_y += sbar_border_thickness;
1016 column_dim_y += body_table_height;
1019 // print the strings of the columns headers and draw the columns
1020 for(i = 0; i < sbar_num_fields; ++i)
1022 if(sbar_field[i] == SP_SEPARATOR)
1024 column_dim_x = sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
1025 if (sbar_scoreboard_highlight)
1028 drawfill(pos - '0 1 0' - sbar_fontsize_x / 2 * '1 0 0', column_dim, '0 0 0', sbar_scoreboard_alpha_bg * 0.2, DRAWFLAG_NORMAL);
1030 drawstring(pos, sbar_title[i], sbar_fontsize, rgb, sbar_scoreboard_alpha_fg, DRAWFLAG_NORMAL);
1031 pos_x += column_dim_x;
1033 if(sbar_field[i] == SP_SEPARATOR)
1037 for(i = sbar_num_fields-1; i > 0; --i)
1039 if(sbar_field[i] == SP_SEPARATOR)
1042 pos_x -= sbar_size[i]*sbar_fontsize_x;
1044 if (sbar_scoreboard_highlight)
1048 if (i == sbar_num_fields-1)
1049 column_dim_x = sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x / 2 + 1;
1051 column_dim_x = sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
1052 drawfill(pos - '0 1 0' - sbar_fontsize_x / 2 * '1 0 0', column_dim, '0 0 0', sbar_scoreboard_alpha_bg * 0.2, DRAWFLAG_NORMAL);
1056 tmp_x = stringwidth(sbar_title[i], FALSE);
1057 tmp_x = (sbar_size[i] - tmp_x) * sbar_fontsize_x;
1058 drawstring(pos + tmp, sbar_title[i], sbar_fontsize, rgb, sbar_scoreboard_alpha_fg, DRAWFLAG_NORMAL);
1059 pos_x -= sbar_fontsize_x;
1064 pos_y += 1.25 * sbar_fontsize_y; // skip the header
1065 pos_y += sbar_border_thickness;
1067 // fill the table and draw the rows
1070 for(pl = players.sort_next; pl; pl = pl.sort_next)
1072 if(pl.team != tm.team)
1074 Sbar_PrintScoreboardItem(pos, pl, (pl.sv_entnum == player_localentnum - 1), i);
1075 pos_y += 1.25 * sbar_fontsize_y;
1079 for(pl = players.sort_next; pl; pl = pl.sort_next)
1081 if(pl.team == COLOR_SPECTATOR)
1083 Sbar_PrintScoreboardItem(pos, pl, (pl.sv_entnum == player_localentnum - 1), i);
1084 pos_y += 1.25 * sbar_fontsize_y;
1089 pos_y += 1.25 * sbar_fontsize_y; // move to the end of the table
1090 pos_y += 1.25 * sbar_fontsize_y; // move empty row (out of the table)
1095 float Sbar_WouldDrawScoreboard() {
1098 else if (intermission == 1)
1100 else if (intermission == 2)
1102 else if (getstati(STAT_HEALTH) <= 0 && cvar("cl_deathscoreboard"))
1104 else if(sb_showscores_force)
1109 float lastpingstime;
1110 float scoreboard_bottom;
1111 float sbar_scoreboard_fade_alpha;
1112 float sbar_woulddrawscoreboard_prev;
1113 float sbar_woulddrawscoreboard_change; // "time" at which Sbar_WouldDrawScoreboard() changed
1114 void Sbar_DrawScoreboard()
1116 float sbar_woulddrawscoreboard;
1117 sbar_woulddrawscoreboard = Sbar_WouldDrawScoreboard();
1118 if(sbar_woulddrawscoreboard != sbar_woulddrawscoreboard_prev) {
1119 sbar_woulddrawscoreboard_change = time;
1120 sbar_woulddrawscoreboard_prev = sbar_woulddrawscoreboard;
1123 float scoreboard_fadeinspeed = cvar("sbar_scoreboard_fadeinspeed");
1124 float scoreboard_fadeoutspeed = cvar("sbar_scoreboard_fadeoutspeed");
1125 if(sbar_woulddrawscoreboard) {
1126 if (scoreboard_fadeinspeed)
1127 sbar_scoreboard_fade_alpha = bound (0, (time - sbar_woulddrawscoreboard_change) * scoreboard_fadeinspeed, 1);
1129 sbar_scoreboard_fade_alpha = 1;
1132 if (scoreboard_fadeoutspeed)
1133 sbar_scoreboard_fade_alpha = bound (0, (1/scoreboard_fadeoutspeed - (time - sbar_woulddrawscoreboard_change)) * scoreboard_fadeoutspeed, 1);
1135 sbar_scoreboard_fade_alpha = 0;
1137 if not(sbar_scoreboard_fade_alpha)
1140 sbar_scoreboard_alpha_bg = cvar("sbar_scoreboard_alpha_bg") * sbar_scoreboard_fade_alpha;
1141 if(cvar("sbar_scoreboard_alpha_fg"))
1142 sbar_scoreboard_alpha_fg = cvar("sbar_scoreboard_alpha_fg") * sbar_scoreboard_fade_alpha;
1144 sbar_scoreboard_alpha_fg = 1;
1146 sbar_scoreboard_highlight = cvar("sbar_scoreboard_highlight");
1148 if(cvar("sbar_scoreboard_highlight_alpha"))
1149 sbar_scoreboard_highlight_alpha = cvar("sbar_scoreboard_highlight_alpha") * sbar_scoreboard_fade_alpha;
1151 sbar_scoreboard_highlight_alpha = 0.10;
1153 if(cvar("sbar_scoreboard_highlight_alpha_self"))
1154 sbar_scoreboard_highlight_alpha_self = cvar("sbar_scoreboard_highlight_alpha_self") * sbar_scoreboard_fade_alpha;
1156 sbar_scoreboard_highlight_alpha_self = 0.25;
1158 if(cvar("sbar_scoreboard_alpha_name"))
1159 sbar_scoreboard_alpha_name = cvar("sbar_scoreboard_alpha_name") * sbar_scoreboard_fade_alpha;
1161 sbar_scoreboard_alpha_name = 0.9;
1163 if(cvar("sbar_scoreboard_alpha_name_self"))
1164 sbar_scoreboard_alpha_name_self = cvar("sbar_scoreboard_alpha_name_self") * sbar_scoreboard_fade_alpha;
1166 sbar_scoreboard_alpha_name_self = 1;
1168 vector rgb, pos, tmp;
1171 if(time > lastpingstime + 10)
1173 localcmd("pings\n");
1174 lastpingstime = time;
1177 sbwidth = Sbar_GetWidth(6.5 * sbar_fontsize_y);
1179 xmin = 0.5 * (vid_conwidth - sbwidth);
1180 ymin = SCOREBOARD_OFFSET;
1182 xmax = vid_conwidth - xmin;
1183 ymax = vid_conheight - 0.2*vid_conheight;
1185 // Initializes position
1191 drawfont = sbar_bigfont;
1192 drawstringcenter('0 1 0' * ymin, "Scoreboard", '24 24 0', '1 1 1', sbar_scoreboard_alpha_fg, DRAWFLAG_NORMAL);
1195 pos_y += sbar_fontsize_y;
1197 drawfont = sbar_font;
1199 // Draw the scoreboard
1201 bg_size = drawgetimagesize("gfx/hud/sb_scoreboard_bg");
1205 for(tm = teams.sort_next; tm; tm = tm.sort_next)
1207 if(tm.team == COLOR_SPECTATOR)
1210 rgb = GetTeamRGB(tm.team);
1211 Sbar_DrawXNum(pos - '6.5 0 0' * sbar_fontsize_y + '0 1 0' * sbar_fontsize_y, tm.(teamscores[ts_primary]), 4, 0, sbar_fontsize_y * 1.5, rgb, 0, 1, sbar_scoreboard_alpha_fg, DRAWFLAG_NORMAL);
1213 if(ts_primary != ts_secondary)
1214 Sbar_DrawXNum(pos - '4.5 0 0' * sbar_fontsize_y + '0 2.5 0' * sbar_fontsize_y, tm.(teamscores[ts_secondary]), 4, 0, sbar_fontsize_y * 1, rgb, 0, 1, sbar_scoreboard_alpha_fg, DRAWFLAG_NORMAL);
1216 pos = Sbar_Scoreboard_MakeTable(pos, tm, rgb, bg_size);
1221 rgb_x = cvar("sbar_color_bg_r");
1222 rgb_y = cvar("sbar_color_bg_g");
1223 rgb_z = cvar("sbar_color_bg_b");
1225 for(tm = teams.sort_next; tm; tm = tm.sort_next)
1227 if(tm.team == COLOR_SPECTATOR)
1230 pos = Sbar_Scoreboard_MakeTable(pos, tm, rgb, bg_size);
1234 tmp = pos + '0 1.5 0' * sbar_fontsize_y;
1235 pos_y += 3 * sbar_fontsize_y;
1240 for(pl = players.sort_next; pl; pl = pl.sort_next)
1242 if(pl.team != COLOR_SPECTATOR)
1244 Sbar_PrintScoreboardItem(pos, pl, (pl.sv_entnum == player_localentnum - 1), specs);
1245 pos_y += 1.25 * sbar_fontsize_y;
1250 drawstring(tmp, "Spectators", sbar_fontsize, '1 1 1', sbar_scoreboard_alpha_fg, DRAWFLAG_NORMAL);
1252 // Print info string
1255 str = strcat("playing on ^2", shortmapname, "^7");
1256 tl = getstatf(STAT_TIMELIMIT);
1257 fl = getstatf(STAT_FRAGLIMIT);
1258 ll = getstatf(STAT_LEADLIMIT);
1259 if(gametype == GAME_LMS)
1262 str = strcat(str, " for up to ^1", ftos(tl), " minutes^7");
1267 str = strcat(str, " for ^1", ftos(tl), " minutes^7");
1271 str = strcat(str, " or");
1274 str = strcat(str, " until ^3", ScoreString(teamscores_flags[ts_primary], fl));
1275 if(teamscores_label[ts_primary] == "score")
1276 str = strcat(str, " points^7");
1277 else if(teamscores_label[ts_primary] == "fastest")
1278 str = strcat(str, " is beaten^7");
1280 str = strcat(str, " ", teamscores_label[ts_primary]);
1284 str = strcat(str, " until ^3", ScoreString(scores_flags[ps_primary], fl));
1285 if(scores_label[ps_primary] == "score")
1286 str = strcat(str, " points^7");
1287 else if(scores_label[ps_primary] == "fastest")
1288 str = strcat(str, " is beaten^7");
1290 str = strcat(str, " ", scores_label[ps_primary]);
1295 if(tl > 0 || fl > 0)
1296 str = strcat(str, " or");
1299 str = strcat(str, " until a lead of ^3", ScoreString(teamscores_flags[ts_primary], ll));
1300 if(teamscores_label[ts_primary] == "score")
1301 str = strcat(str, " points^7");
1302 else if(teamscores_label[ts_primary] == "fastest")
1303 str = strcat(str, " is beaten^7");
1305 str = strcat(str, " ", teamscores_label[ts_primary]);
1309 str = strcat(str, " until a lead of ^3", ScoreString(scores_flags[ps_primary], ll));
1310 if(scores_label[ps_primary] == "score")
1311 str = strcat(str, " points^7");
1312 else if(scores_label[ps_primary] == "fastest")
1313 str = strcat(str, " is beaten^7");
1315 str = strcat(str, " ", scores_label[ps_primary]);
1321 pos_y += 1.2 * sbar_fontsize_y;
1322 drawcolorcodedstring(pos + '0.5 0 0' * (sbwidth - sbar_fontsize_x * stringwidth(str, TRUE)), str, sbar_fontsize, sbar_scoreboard_alpha_fg, DRAWFLAG_NORMAL);
1324 scoreboard_bottom = pos_y + 2 * sbar_fontsize_y;
1327 string MakeRaceString(float cp, float mytime, float histime, float lapdelta, string hisname)
1335 if(histime == 0) // goal hit
1339 timestr = strcat("+", ftos_decimals(+mytime, TIME_DECIMALS));
1342 else if(mytime == 0)
1349 timestr = strcat("-", ftos_decimals(-mytime, TIME_DECIMALS));
1355 lapstr = strcat(" (-", ftos(lapdelta), "L)");
1358 else if(lapdelta < 0)
1360 lapstr = strcat(" (+", ftos(-lapdelta), "L)");
1364 else if(histime > 0) // anticipation
1366 if(mytime >= histime)
1367 timestr = strcat("+", ftos_decimals(mytime - histime, TIME_DECIMALS));
1369 timestr = TIME_ENCODED_TOSTRING(TIME_ENCODE(histime));
1376 cpname = "Start line";
1378 cpname = "Finish line";
1380 cpname = strcat("Intermediate ", ftos(cp));
1382 cpname = "Finish line";
1385 return strcat(col, cpname);
1386 else if(hisname == "")
1387 return strcat(col, cpname, " (", timestr, ")");
1389 return strcat(col, cpname, " (", timestr, " ", strcat(hisname, col, lapstr), ")");
1394 float score, distribution, leader;
1395 vector score_pos, secondary_score_pos, distribution_color;
1397 me = (spectatee_status > 0) ? playerslots[spectatee_status - 1] : playerslots[player_localentnum - 1];
1400 bottomright_x = vid_conwidth;
1401 bottomright_y = vid_conheight;
1404 score_pos = bottomright - '196 42 0';
1405 secondary_score_pos = score_pos + '132 -6 0';
1407 if((scores_flags[ps_primary] & SFL_TIME) && !teamplay) { // race/cts record display on HUD
1408 pl = players.sort_next;
1411 if(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)
1412 if(pl.scores[ps_primary] == 0)
1415 score = me.(scores[ps_primary]);
1417 float racemin, racesec, racemsec;
1418 float distsec, distmsec, minusplus;
1420 racemin = floor(score/(60 * TIME_FACTOR));
1421 racesec = floor((score - racemin*(60 * TIME_FACTOR))/TIME_FACTOR);
1422 racemsec = score - racemin*60*TIME_FACTOR - racesec*TIME_FACTOR;
1424 if (pl && ((!(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)) || score)) {
1425 // distribution display
1426 distribution = me.(scores[ps_primary]) - pl.(scores[ps_primary]);
1428 if (distribution < TIME_FACTOR && distribution > -TIME_FACTOR)
1429 distmsec = fabs(distribution);
1431 distsec = floor(fabs(distribution)/TIME_FACTOR);
1432 distmsec = fabs(distribution) - distsec*TIME_FACTOR;
1433 if (distribution < 0)
1437 if (distribution <= 0) {
1438 distribution_color = '0 1 0';
1439 minusplus = 1; // minusplus 1: always prefix with minus sign
1442 distribution_color = '1 0 0';
1443 minusplus = 2; // minusplus 1: always prefix with plus sign
1445 Sbar_DrawXNum(bottomright - '0 48 0' - '16 0 0' * TIME_DECIMALS, distmsec, -TIME_DECIMALS, 0, 16, distribution_color, 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
1446 Sbar_DrawXNum(bottomright - '68 48 0' - '16 0 0' * TIME_DECIMALS, distsec, 4, minusplus, 16, distribution_color, 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
1447 drawpic(bottomright - '10 48 0' - '16 0 0' * TIME_DECIMALS, "gfx/hud/num_dot", '16 16 0', distribution_color, sbar_alpha_fg, DRAWFLAG_ADDITIVE);
1449 // race record display
1450 if (distribution <= 0 || distribution == score) // draw the highlight background behind the timer if we have the lead
1451 drawpic(bottomright - '0 32 0' - '32 0 0' * (4 + TIME_DECIMALS), "gfx/hud/sb_highlight_4", '0 28 0' + '32 0 0' * (4 + TIME_DECIMALS), '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1453 Sbar_DrawXNum(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0', racemsec, -TIME_DECIMALS, 0, 30, '1 1 1', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
1454 Sbar_DrawXNum(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0' - '66 0 0', racesec, -2, 0, 30, '1 1 1', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
1455 drawpic(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0' - '18 0 0', "gfx/hud/num_dot", '30 30 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE);
1457 Sbar_DrawXNum(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0' - '132 0 0', racemin, -2, 0, 30, '1 1 1', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
1458 drawpic(bottomright - '0 32 0' - TIME_DECIMALS * '30 0 0' - '84 0 0', "gfx/hud/num_colon", '30 30 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE);
1460 } else if (!teamplay) { // non-teamgames, except race/cts
1461 // me vector := [team/connected frags id]
1462 pl = players.sort_next;
1467 distribution = me.(scores[ps_primary]) - pl.(scores[ps_primary]);
1471 score = me.(scores[ps_primary]);
1473 if(distribution >= 5) {
1474 distribution_color = '0 1 0';
1476 } else if(distribution >= 0) {
1477 distribution_color = '1 1 1';
1479 } else if(distribution >= -5)
1480 distribution_color = '1 1 0';
1482 distribution_color = '1 0 0';
1484 Sbar_DrawXNum(secondary_score_pos, distribution, 4, 3, 16, distribution_color, 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
1485 Sbar_DrawXNum(score_pos, score, 4, 0, 34, distribution_color, leader, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
1486 } else { // teamgames
1487 float max_fragcount;
1488 max_fragcount = -999;
1490 for(tm = teams.sort_next; tm; tm = tm.sort_next) {
1491 if(tm.team == COLOR_SPECTATOR || !tm.team_size) // no players? don't display
1493 score = tm.(teamscores[ts_primary]);
1496 if (score > max_fragcount)
1497 max_fragcount = score;
1499 if(tm.team == myteam) {
1500 if (max_fragcount == score)
1502 Sbar_DrawXNum(score_pos, score, 4, 0, 34, GetTeamRGB(tm.team) * 0.8, leader, 1, sbar_alpha_fg, DRAWFLAG_NORMAL);
1504 if (max_fragcount == score)
1506 Sbar_DrawXNum(secondary_score_pos, score, 4, 0, 16, GetTeamRGB(tm.team) * 0.8, leader, 1, sbar_alpha_fg, DRAWFLAG_NORMAL);
1507 secondary_score_pos = secondary_score_pos + '0 16 0';
1512 if(gametype == GAME_RACE || gametype == GAME_CTS)
1514 drawfont = sbar_bigfont;
1517 string s, forcetime;
1519 m = '0.5 0 0' * vid_conwidth + '0 0.25 0' * vid_conheight;
1521 if(race_checkpointtime)
1523 a = bound(0, 2 - (time - race_checkpointtime), 1);
1526 if(a > 0) // just hit a checkpoint?
1528 if(race_checkpoint != 254)
1530 if(race_time && race_previousbesttime)
1531 s = MakeRaceString(race_checkpoint, TIME_DECODE(race_time) - TIME_DECODE(race_previousbesttime), 0, 0, race_previousbestname);
1533 s = MakeRaceString(race_checkpoint, 0, -1, 0, race_previousbestname);
1535 forcetime = TIME_ENCODED_TOSTRING(race_time);
1540 if(race_laptime && race_nextbesttime && race_nextcheckpoint != 254)
1542 a = bound(0, 2 - ((race_laptime + TIME_DECODE(race_nextbesttime)) - (time + TIME_DECODE(race_penaltyaccumulator))), 1);
1543 if(a > 0) // next one?
1545 s = MakeRaceString(race_nextcheckpoint, (time + TIME_DECODE(race_penaltyaccumulator)) - race_laptime, TIME_DECODE(race_nextbesttime), 0, race_nextbestname);
1550 if(s != "" && a > 0)
1552 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
1553 drawcolorcodedstring(m - '0 16 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', sbar_alpha_fg * a, DRAWFLAG_NORMAL);
1556 if(race_penaltytime)
1558 a = bound(0, 2 - (time - race_penaltyeventtime), 1);
1561 s = strcat("^1PENALTY: ", ftos_decimals(race_penaltytime * 0.1, 1), " (", race_penaltyreason, ")");
1562 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
1563 drawcolorcodedstring(m - '0 32 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', sbar_alpha_fg * a, DRAWFLAG_NORMAL);
1569 a = bound(0, (time - race_checkpointtime) / 0.5, 1);
1570 drawstring_expanding(m - '16 0 0' * stringwidth(forcetime, FALSE), forcetime, '32 32 0', '1 1 1', sbar_alpha_fg, 0, a);
1575 if(race_laptime && race_checkpoint != 255)
1577 s = TIME_ENCODED_TOSTRING(TIME_ENCODE(time + TIME_DECODE(race_penaltyaccumulator) - race_laptime));
1578 drawstring(m - '16 0 0' * stringwidth(s, FALSE), s, '32 32 0', '1 1 1', sbar_alpha_fg * a, DRAWFLAG_NORMAL);
1583 if(race_mycheckpointtime)
1585 a = bound(0, 2 - (time - race_mycheckpointtime), 1);
1586 s = MakeRaceString(race_mycheckpoint, TIME_DECODE(race_mycheckpointdelta), -!race_mycheckpointenemy, race_mycheckpointlapsdelta, race_mycheckpointenemy);
1587 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
1588 drawcolorcodedstring(m - '0 16 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', sbar_alpha_fg * a, DRAWFLAG_NORMAL);
1590 if(race_othercheckpointtime && race_othercheckpointenemy != "")
1592 a = bound(0, 2 - (time - race_othercheckpointtime), 1);
1593 s = MakeRaceString(race_othercheckpoint, -TIME_DECODE(race_othercheckpointdelta), -!race_othercheckpointenemy, race_othercheckpointlapsdelta, race_othercheckpointenemy);
1594 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
1595 drawcolorcodedstring(m - '0 0 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', sbar_alpha_fg * a, DRAWFLAG_NORMAL);
1598 if(race_penaltytime && !race_penaltyaccumulator)
1600 t = race_penaltytime * 0.1 + race_penaltyeventtime;
1601 a = bound(0, (1 + t - time), 1);
1605 s = strcat("^1PENALTY: ", ftos_decimals(t - time, 1), " (", race_penaltyreason, ")");
1607 s = strcat("^2PENALTY: 0.0 (", race_penaltyreason, ")");
1608 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
1609 drawcolorcodedstring(m - '0 32 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', sbar_alpha_fg * a, DRAWFLAG_NORMAL);
1614 drawfont = sbar_font;
1620 float timelimit, elapsedTime, minutes, seconds, timeleft, minutesLeft, secondsLeft;
1621 vector bgpos, timer_color;
1626 topright_x = vid_conwidth;
1628 timelimit = getstatf(STAT_TIMELIMIT);
1630 timeleft = max(0, timelimit * 60 + getstatf(STAT_GAMESTARTTIME) - time);
1631 timeleft = ceil(timeleft);
1632 minutesLeft = floor(timeleft / 60);
1633 secondsLeft = timeleft - minutesLeft*60;
1635 if(minutesLeft >= 5 || warmup_stage || timelimit == 0) //don't use red or yellow in warmup or when there is no timelimit
1636 timer_color = '1 1 1'; //white
1637 else if(minutesLeft >= 1)
1638 timer_color = '1 1 0'; //yellow
1640 timer_color = '1 0 0'; //red
1642 if (cvar("sbar_increment_maptime") || timelimit == 0 || warmup_stage) {
1643 if (time < getstatf(STAT_GAMESTARTTIME)) {
1644 //while restart is still active, show 00:00
1645 minutes = seconds = 0;
1647 elapsedTime = floor(time - getstatf(STAT_GAMESTARTTIME)); //127
1648 minutes = floor(elapsedTime / 60);
1649 seconds = elapsedTime - minutes*60;
1652 bgpos_x = topright_x - 54 - 17 - 12;
1653 else if (minutes < 100) // nudge the timer background left if more digits are drawn
1654 bgpos_x = topright_x - 72 - 17 - 12;
1656 bgpos_x = topright_x - 90 - 17 - 12;
1660 minutes = minutesLeft;
1661 seconds = secondsLeft;
1663 bgpos_x = topright_x - 36 - 7 - 12;
1664 else if (minutes < 10) // nudge the timer background left if more digits are drawn
1665 bgpos_x = topright_x - 54 - 17 - 12;
1666 else if (minutes < 100)
1667 bgpos_x = topright_x - 72 - 17 - 12;
1669 bgpos_x = topright_x - 90 - 17 - 12;
1674 if (cvar("viewsize") <= 100) { // draw timer background when viewsize <= 100
1676 drawpic(bgpos, "gfx/hud/sb_timerbg", '120 30 0', GetTeamRGB(myteam) * sbar_color_bg_team, sbar_alpha_bg, DRAWFLAG_NORMAL); // timer bg color = myteam color
1678 color_x = cvar("sbar_color_bg_r");
1679 color_y = cvar("sbar_color_bg_g");
1680 color_z = cvar("sbar_color_bg_b");
1682 drawpic(bgpos, "gfx/hud/sb_timerbg", '120 30 0', color, sbar_alpha_bg, DRAWFLAG_NORMAL);
1686 if(minutesLeft >= 1 || cvar("sbar_increment_maptime") || timelimit == 0 || warmup_stage) {
1687 Sbar_DrawXNum(topright - '103 0 0' + '0 2 0', minutes, 3, 0, 18, timer_color, 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
1688 drawpic(topright - '53 0 0' + '0 1 0', "gfx/hud/num_colon", '18 18 0', timer_color, sbar_alpha_fg, DRAWFLAG_NORMAL);
1690 Sbar_DrawXNum(topright - '36 0 0' - '3 0 0' + '0 2 0', seconds, -2, 0, 18, timer_color, 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
1693 void CSQC_Strength_Timer() {
1697 bottom_x = vid_conwidth/2;
1698 bottom_y = vid_conheight;
1701 float stat_items, dt;
1702 stat_items = getstati(STAT_ITEMS);
1704 if not(stat_items & IT_STRENGTH)
1705 if not(stat_items & IT_INVINCIBLE)
1709 if (getstati(STAT_HEALTH) <= 0)
1713 float strength_time, invincibility_time, countdown_fontsize;
1715 picsize = '22 22 0';
1716 countdown_fontsize = 18;
1718 if (vid_conwidth >= 800)
1719 pos = bottom + '192 -46 0';
1721 pos = bottom + '192 -94 0';
1724 strength_time = getstatf(STAT_STRENGTH_FINISHED);
1725 invincibility_time = getstatf(STAT_INVINCIBLE_FINISHED);
1727 if (strength_time) {
1728 dt = strength_time - time;
1733 drawpic_expanding_two(pos, "gfx/hud/sb_str", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE,
1734 bound(0, (ceil(dt) - dt) / 0.5, 1));
1738 drawpic(pos, "gfx/hud/sb_str", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE);
1740 Sbar_DrawXNum(pos - '40 -2 0', ceil(dt), 2, 0, countdown_fontsize, '1 1 1', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
1744 drawpic_expanding(pos, "gfx/hud/sb_str", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE,
1745 bound(0, -dt / 0.5, 1));
1750 if (invincibility_time) {
1751 dt = invincibility_time - time;
1756 drawpic_expanding_two(pos - '0 -22 0', "gfx/hud/sb_invinc", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE,
1757 bound(0, (ceil(dt) - dt) / 0.5, 1));
1761 drawpic(pos - '0 -22 0', "gfx/hud/sb_invinc", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE);
1763 Sbar_DrawXNum(pos - '40 -24 0', ceil(dt), 2, 0, countdown_fontsize, '1 1 1', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
1767 drawpic_expanding(pos - '0 -22 0', "gfx/hud/sb_invinc", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE,
1768 bound(0, -dt / 0.5, 1));
1773 #define CENTERPRINT_MAX_LINES 30
1774 string centerprint_messages[CENTERPRINT_MAX_LINES];
1775 float centerprint_width[CENTERPRINT_MAX_LINES];
1776 vector centerprint_start;
1777 float centerprint_expire;
1778 float centerprint_num;
1779 float centerprint_offset_hint;
1780 vector centerprint_fontsize;
1782 void centerprint(string strMessage)
1784 float i, j, n, hcount;
1787 centerprint_fontsize = Sbar_GetFontsize("scr_centersize");
1789 centerprint_expire = min(centerprint_expire, time); // if any of the returns happens, this message will fade out
1791 if(cvar("scr_centertime") <= 0)
1794 if(strMessage == "")
1797 // strip trailing newlines
1798 j = strlen(strMessage) - 1;
1799 while(substring(strMessage, j, 1) == "\n" && j >= 0)
1801 strMessage = substring(strMessage, 0, j + 1);
1803 if(strMessage == "")
1806 // strip leading newlines and remember them, they are a hint that the message should be lower on the screen
1808 while(substring(strMessage, j, 1) == "\n" && j < strlen(strMessage))
1810 strMessage = substring(strMessage, j, strlen(strMessage) - j);
1811 centerprint_offset_hint = j;
1813 if(strMessage == "")
1816 // if we get here, we have a message. Initialize its height.
1817 centerprint_num = 0;
1819 n = tokenizebyseparator(strMessage, "\n");
1821 for(j = 0; j < n; ++j)
1823 getWrappedLine_remaining = argv(j);
1824 while(getWrappedLine_remaining)
1826 s = getWrappedLine(vid_conwidth * 0.75 / centerprint_fontsize_x, stringwidth_colors);
1827 if(centerprint_messages[i])
1828 strunzone(centerprint_messages[i]);
1829 centerprint_messages[i] = strzone(s);
1830 centerprint_width[i] = stringwidth(s, TRUE);
1833 // half height for empty lines looks better
1839 if(i >= CENTERPRINT_MAX_LINES)
1845 h = centerprint_fontsize_y*hcount;
1847 havail = vid_conheight;
1848 if(cvar("con_chatpos") < 0)
1849 havail -= (-cvar("con_chatpos") + cvar("con_chat")) * cvar("con_chatsize"); // avoid overlapping chat
1850 if(havail > vid_conheight - 70)
1851 havail = vid_conheight - 70; // avoid overlapping HUD
1853 centerprint_start_x = 0;
1856 float forbiddenmin, forbiddenmax, allowedmin, allowedmax, preferred;
1858 // here, the centerprint would cover the crosshair. REALLY BAD.
1859 forbiddenmin = vid_conheight * 0.5 - h - 16;
1860 forbiddenmax = vid_conheight * 0.5 + 16;
1862 allowedmin = scoreboard_bottom;
1863 allowedmax = havail - h;
1864 preferred = (havail - h)/2;
1867 // possible orderings (total: 4! / 4 = 6)
1868 // allowedmin allowedmax forbiddenmin forbiddenmax
1869 // forbiddenmin forbiddenmax allowedmin allowedmax
1870 if(allowedmax < forbiddenmin || allowedmin > forbiddenmax)
1872 // forbidden doesn't matter in this case
1873 centerprint_start_y = bound(allowedmin, preferred, allowedmax);
1875 // allowedmin forbiddenmin allowedmax forbiddenmax
1876 else if(allowedmin < forbiddenmin && allowedmax < forbiddenmax)
1878 centerprint_start_y = bound(allowedmin, preferred, forbiddenmin);
1880 // allowedmin forbiddenmin forbiddenmax allowedmax
1881 else if(allowedmin < forbiddenmin)
1883 // make sure the forbidden zone is not covered
1884 if(preferred > (forbiddenmin + forbiddenmax) * 0.5)
1885 centerprint_start_y = bound(allowedmin, preferred, forbiddenmin);
1887 centerprint_start_y = bound(forbiddenmax, preferred, allowedmin);
1889 // forbiddenmin allowedmin allowedmax forbiddenmax
1890 else if(allowedmax < forbiddenmax)
1892 // it's better to leave the allowed zone (overlap with scoreboard) than
1893 // to cover the forbidden zone (crosshair)
1894 if(preferred > (forbiddenmin + forbiddenmax) * 0.5)
1895 centerprint_start_y = forbiddenmax;
1897 centerprint_start_y = forbiddenmin;
1899 // forbiddenmin allowedmin forbiddenmax allowedmax
1902 centerprint_start_y = bound(forbiddenmax, preferred, allowedmax);
1905 centerprint_start_y =
1908 max(scoreboard_bottom, vid_conheight * 0.5 + 16),
1915 centerprint_num = i;
1916 centerprint_expire = time + cvar("scr_centertime");
1919 void Sbar_DrawCenterPrint (void)
1926 //if(time > centerprint_expire)
1929 //a = bound(0, 1 - 2 * (time - centerprint_expire), 1);
1930 a = bound(0, 1 - 4 * (time - centerprint_expire), 1);
1931 //sz = 1.2 / (a + 0.2);
1936 pos = centerprint_start;
1937 for (i=0; i<centerprint_num; i = i + 1)
1939 pos_x = (vid_conwidth - centerprint_fontsize_x * centerprint_width[i]) * 0.5;
1940 ts = centerprint_messages[i];
1943 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
1944 drawcolorcodedstring(pos, ts, centerprint_fontsize, a, DRAWFLAG_NORMAL);
1945 // - '0 0.5 0' * (sz - 1) * centerprint_fontsize_x - '0.5 0 0' * (sz - 1) * centerprint_width[i] * centerprint_fontsize_y, centerprint_fontsize * sz
1946 pos_y = pos_y + centerprint_fontsize_y;
1949 // half height for empty lines looks better
1950 pos_y = pos_y + centerprint_fontsize_y * 0.5;
1954 vector Sbar_DrawNoteLine(vector offset, string s)
1956 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
1957 drawcolorcodedstring(
1958 offset - sbar_fontsize_x * '1 0 0' * stringwidth(s, TRUE),
1964 return offset + sbar_fontsize_y * '0 1 0';
1967 void Sbar_DrawPressedKeys(void)
1972 pos = stov(cvar_string("cl_showpressedkeys_position"));
1974 bgsize = '126 75 0';
1976 pos = '1 0 0' * (vid_conwidth - bgsize_x) * pos_x
1977 + '0 1 0' * (vid_conheight - bgsize_y) * pos_y;
1978 pos -= '-15 -6 0'; // adjust to the origin of these numbers
1980 pressedkeys = getstatf(STAT_PRESSED_KEYS);
1981 drawpic(pos + '-15 -6 0', "gfx/hud/keys/key_bg.tga", bgsize, '1 1 1', 0.1 * sbar_alpha_fg, DRAWFLAG_NORMAL);
1982 drawpic(pos + ' 83.5 9 0', ((pressedkeys & KEY_CROUCH) ? "gfx/hud/keys/key_crouch_inv.tga" : "gfx/hud/keys/key_crouch.tga"), ' 24 24 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1983 drawpic(pos + ' 32 -1.5 0', ((pressedkeys & KEY_FORWARD) ? "gfx/hud/keys/key_forward_inv.tga" : "gfx/hud/keys/key_forward.tga"), ' 32 32 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1984 drawpic(pos + '-11.5 9 0', ((pressedkeys & KEY_JUMP) ? "gfx/hud/keys/key_jump_inv.tga" : "gfx/hud/keys/key_jump.tga"), ' 24 24 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1985 drawpic(pos + ' -1 32 0', ((pressedkeys & KEY_LEFT) ? "gfx/hud/keys/key_left_inv.tga" : "gfx/hud/keys/key_left.tga"), ' 32 32 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1986 drawpic(pos + ' 32 32 0', ((pressedkeys & KEY_BACKWARD) ? "gfx/hud/keys/key_backward_inv.tga" : "gfx/hud/keys/key_backward.tga"), ' 32 32 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1987 drawpic(pos + ' 65 32 0', ((pressedkeys & KEY_RIGHT) ? "gfx/hud/keys/key_right_inv.tga" : "gfx/hud/keys/key_right.tga"), ' 32 32 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1990 void Sbar_ShowSpeed(void)
1993 float pos, conversion_factor;
1996 switch(cvar("cl_showspeed_unit"))
2001 conversion_factor = 1.0;
2005 conversion_factor = 1.0;
2009 conversion_factor = 0.0254;
2013 conversion_factor = 0.0254 * 3.6;
2017 conversion_factor = 0.0254 * 3.6 * 0.6213711922;
2021 conversion_factor = 0.0254 * 1.943844492; // 1 m/s = 1.943844492 knots, because 1 knot = 1.852 km/h
2025 if (cvar("cl_showspeed_z") == 1)
2026 speed = strcat(ftos(floor( vlen(pmove_vel) * conversion_factor + 0.5 )), unit);
2028 speed = strcat(ftos(floor( vlen(pmove_vel - pmove_vel_z * '0 0 1') * conversion_factor + 0.5 )), unit);
2030 numsize_x = numsize_y = cvar("cl_showspeed_size");
2031 pos = (vid_conheight - numsize_y) * cvar("cl_showspeed_position");
2033 drawfont = sbar_bigfont;
2034 drawstringcenter('1 0 0' + pos * '0 1 0', speed, numsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2035 drawfont = sbar_font;
2038 vector acc_prevspeed;
2042 void Sbar_ShowAcceleration(void)
2044 float acceleration, sz, scale, alpha, f;
2045 vector pos, top, rgb;
2046 top_x = vid_conwidth/2;
2049 f = time - acc_prevtime;
2050 if(cvar("cl_showacceleration_z"))
2051 acceleration = (vlen(pmove_vel) - vlen(acc_prevspeed)) * (1 / f);
2053 acceleration = (vlen(pmove_vel - '0 0 1' * pmove_vel_z) - vlen(acc_prevspeed - '0 0 1' * acc_prevspeed_z)) * (1 / f);
2054 acc_prevspeed = pmove_vel;
2055 acc_prevtime = time;
2057 f = bound(0, f * 10, 1);
2058 acc_avg = acc_avg * (1 - f) + acceleration * f;
2059 acceleration = acc_avg / getstatf(STAT_MOVEVARS_MAXSPEED);
2061 pos = top - sz/2 * '0 1 0' + (cvar("cl_showacceleration_position") * vid_conheight) * '0 1 0';
2063 sz = cvar("cl_showacceleration_size");
2064 scale = cvar("cl_showacceleration_scale");
2065 alpha = cvar("cl_showacceleration_alpha");
2066 if (cvar("cl_showacceleration_color_custom"))
2067 rgb = stov(cvar_string("cl_showacceleration_color"));
2070 if (acceleration < 0) {
2071 rgb = '1 .5 .5' - '0 .5 .5' * bound(0, -acceleration * 0.2, 1);
2072 } else if (acceleration > 0) {
2073 rgb = '.5 1 .5' - '.5 0 .5' * bound(0, +acceleration * 0.2, 1);
2077 if (acceleration > 0)
2078 drawpic(pos, "gfx/hud/accelerometer_gradient", acceleration * scale * '40 0 0' + sz * '0 1 0', rgb, alpha * sbar_alpha_fg, DRAWFLAG_NORMAL);
2079 else if (acceleration < 0)
2080 drawpic(pos + acceleration * scale * '40 0 0', "gfx/hud/accelerometer_gradient", -acceleration * scale * '40 0 0' + sz * '0 1 0', rgb, alpha * sbar_alpha_fg, DRAWFLAG_NORMAL);
2083 void Sbar_DrawAccuracyStats_Description_Hitscan(vector position)
2085 drawstring(position + '0 3 0' * sbar_fontsize_y, "Shots fired:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2086 drawstring(position + '0 5 0' * sbar_fontsize_y, "Shots hit:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2087 drawstring(position + '0 7 0' * sbar_fontsize_y, "Accuracy:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2088 drawstring(position + '0 9 0' * sbar_fontsize_y, "Shots missed:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2091 void Sbar_DrawAccuracyStats_Description_Splash(vector position)
2093 drawstring(position + '0 3 0' * sbar_fontsize_y, "Maximum damage:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2094 drawstring(position + '0 5 0' * sbar_fontsize_y, "Actual damage:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2095 drawstring(position + '0 7 0' * sbar_fontsize_y, "Accuracy:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2096 drawstring(position + '0 9 0' * sbar_fontsize_y, "Damage wasted:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2099 void Sbar_DrawAccuracyStats()
2101 float i, count_hitscan, count_splash, row; // count is the number of 'colums'
2102 float weapon_hit, weapon_damage, weapon_stats;
2103 float left_border; // position where the weapons start, the description is in the border
2104 vector fill_colour, fill_size;
2107 float col_margin = 20; // pixels between the columns
2108 float row_margin = 20; // pixels between the rows
2110 fill_size_x = 5 * sbar_fontsize_x; // width of the background
2111 fill_size_y = 10 * sbar_fontsize_y; // height of the background
2113 drawfont = sbar_bigfont;
2115 pos_y = SCOREBOARD_OFFSET;
2117 drawstringcenter(pos, "Weapon Accuracy", 2 * sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2119 left_border = col_margin + 11 * sbar_fontsize_x;
2121 drawfont = sbar_font;
2126 if(mod(time, 1) >= 0.4)
2127 drawstringcenter(pos, "Stats are not tracked during warmup stage", sbar_fontsize, '1 1 0', sbar_alpha_fg, DRAWFLAG_NORMAL);
2132 float top_border_hitscan = SCOREBOARD_OFFSET + 55; // position where the hitscan row starts: pixels down the screen
2133 Sbar_DrawAccuracyStats_Description_Hitscan('1 0 0' * col_margin + '0 1 0' * top_border_hitscan);
2135 float top_border_splash = SCOREBOARD_OFFSET + 175; // position where the splash row starts: pixels down the screen
2136 Sbar_DrawAccuracyStats_Description_Splash('1 0 0' * col_margin + '0 1 0' * top_border_splash);
2138 for(i = WEP_FIRST; i <= WEP_LAST; ++i)
2140 weapon_hit = weapon_hits[i];
2141 weapon_damage = weapon_fired[i];
2142 self = get_weaponinfo(i);
2144 //if ((weapon_number != 42)) // print them all :)
2145 if (weapon_damage) {
2146 if (self.weapon_type == WEP_TYPE_SPLASH) {
2147 weapon_stats = bound(0, rint(100 * weapon_hit / weapon_damage), 100);
2149 fill_colour_x = 1 - 0.015 * weapon_stats;
2150 fill_colour_y = 1 - 0.015 * (100 - weapon_stats);
2152 // how the background colour is calculated
2153 // % red green red_2 green_2
2154 // 0 1 0 1 - % * 0.015 1 - (100 - %) * 0.015
2155 // 10 0.85 0 1 - % * 0.015 1 - (100 - %) * 0.015
2156 // 20 0.70 0 1 - % * 0.015 1 - (100 - %) * 0.015
2157 // 30 0.55 0 1 - % * 0.015 1 - (100 - %) * 0.015
2158 // 40 0.40 0.10 1 - % * 0.015 1 - (100 - %) * 0.015
2159 // 50 0.25 0.25 1 - % * 0.015 1 - (100 - %) * 0.015
2160 // 60 0.10 0.40 1 - % * 0.015 1 - (100 - %) * 0.015
2161 // 70 0 0.55 1 - % * 0.015 1 - (100 - %) * 0.015
2162 // 80 0 0.70 1 - % * 0.015 1 - (100 - %) * 0.015
2163 // 90 0 0.85 1 - % * 0.015 1 - (100 - %) * 0.015
2164 // 100 0 1 1 - % * 0.015 1 - (100 - %) * 0.015
2166 if ((left_border + count_splash * (fill_size_x + col_margin) + fill_size_x) >= vid_conwidth)
2170 Sbar_DrawAccuracyStats_Description_Splash('1 0 0' * col_margin + '0 1 0' * (top_border_splash + row * (fill_size_y + row_margin)));
2173 pos_x = left_border + count_splash * (fill_size_x + col_margin);
2174 pos_y = top_border_splash + row * (fill_size_y + row_margin);
2177 drawpic(pos, "gfx/hud/sb_accuracy", fill_size , fill_colour, sbar_alpha_bg, DRAWFLAG_NORMAL);
2178 drawborderlines(sbar_border_thickness, pos, fill_size, '0 0 0', sbar_alpha_bg, DRAWFLAG_NORMAL);
2181 drawpic(pos, strcat("gfx/hud/inv_weapon", ftos(i-1)), '1 0.5 0' * fill_size_x , '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2183 // the amount of shots fired or max damage
2184 drawstringright(pos + '4.5 0 0' * sbar_fontsize_x + '0 3 0' * sbar_fontsize_y, ftos(weapon_damage), sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2186 // the amount of hits or actual damage
2187 drawstringright(pos + '4.5 0 0' * sbar_fontsize_x + '0 5 0' * sbar_fontsize_y, ftos(weapon_hit), sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2190 drawstringright(pos + '4.5 0 0' * sbar_fontsize_x + '0 7 0' * sbar_fontsize_y, strcat(ftos(weapon_stats),"%"), sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2192 // the amount of shots missed or damage wasted
2193 drawstringright(pos + '4.5 0 0' * sbar_fontsize_x + '0 9 0' * sbar_fontsize_y, ftos(max(0, weapon_damage - weapon_hit)), sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2196 } else if ((self.weapon_type == WEP_TYPE_HITSCAN) && (weapon_damage)) {
2197 weapon_stats = bound(0, rint(100 * weapon_hit / weapon_damage), 100);
2199 fill_colour_x = 1 - 0.015 * weapon_stats;
2200 fill_colour_y = 1 - 0.015 * (100 - weapon_stats);
2202 // how the background colour is calculated
2203 // % red green red_2 green_2
2204 // 0 1 0 1 - % * 0.015 1 - (100 - %) * 0.015
2205 // 10 0.850 0 1 - % * 0.015 1 - (100 - %) * 0.015
2206 // 20 0.70 0 1 - % * 0.015 1 - (100 - %) * 0.015
2207 // 30 0.55 0 1 - % * 0.015 1 - (100 - %) * 0.015
2208 // 40 0.40 0.10 1 - % * 0.015 1 - (100 - %) * 0.015
2209 // 50 0.25 0.25 1 - % * 0.015 1 - (100 - %) * 0.015
2210 // 60 0.10 0.40 1 - % * 0.015 1 - (100 - %) * 0.015
2211 // 70 0 0.55 1 - % * 0.015 1 - (100 - %) * 0.015
2212 // 80 0 0.70 1 - % * 0.015 1 - (100 - %) * 0.015
2213 // 90 0 0.85 1 - % * 0.015 1 - (100 - %) * 0.015
2214 // 100 0 1 1 - % * 0.015 1 - (100 - %) * 0.015
2216 if ((left_border + count_hitscan * (fill_size_x + col_margin) + fill_size_x + cvar("stats_right_margin")) >= vid_conwidth)
2220 Sbar_DrawAccuracyStats_Description_Hitscan('1 0 0' * col_margin + '0 1 0' * (top_border_hitscan + row * (fill_size_y + row_margin)));
2223 pos_x = left_border + count_hitscan * (fill_size_x + col_margin);
2224 pos_y = top_border_hitscan + row * (fill_size_y + row_margin);
2227 drawpic(pos, "gfx/hud/sb_accuracy", fill_size , fill_colour, sbar_alpha_bg, DRAWFLAG_NORMAL);
2228 drawborderlines(sbar_border_thickness, pos, fill_size, '0 0 0', sbar_alpha_bg, DRAWFLAG_NORMAL);
2231 drawpic(pos, strcat("gfx/hud/inv_weapon", ftos(i-1)), '1 0.5 0' * fill_size_x , '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2233 // the amount of shots fired or max damage
2234 drawstringright(pos + '4.5 0 0' * sbar_fontsize_x + '0 3 0' * sbar_fontsize_y, ftos(weapon_damage), sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2236 // the amount of hits or actual damage
2237 drawstringright(pos + '4.5 0 0' * sbar_fontsize_x + '0 5 0' * sbar_fontsize_y, ftos(weapon_hit), sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2240 drawstringright(pos + '4.5 0 0' * sbar_fontsize_x + '0 7 0' * sbar_fontsize_y, strcat(ftos(weapon_stats),"%"), sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2242 // the amount of shots missed or damage wasted
2243 drawstringright(pos + '4.5 0 0' * sbar_fontsize_x + '0 9 0' * sbar_fontsize_y, ftos(max(0, weapon_damage - weapon_hit)), sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2251 void drawstringright(vector position, string text, vector scale, vector rgb, float alpha, float flag)
2253 position_x -= 2 / 3 * strlen(text) * scale_x;
2254 drawstring(position, text, scale, rgb, alpha, flag);
2257 void drawstringcenter(vector position, string text, vector scale, vector rgb, float alpha, float flag)
2259 position_x = 0.5 * (vid_conwidth - 0.6025 * strlen(text) * scale_x);
2260 drawstring(position, text, scale, rgb, alpha, flag);
2263 float GetAmmoStat(float i)
2267 case 0: return STAT_SHELLS;
2268 case 1: return STAT_NAILS;
2269 case 2: return STAT_ROCKETS;
2270 case 3: return STAT_CELLS;
2271 case 4: return STAT_FUEL;
2276 float GetAmmoItemCode(float i)
2280 case 0: return IT_SHELLS;
2281 case 1: return IT_NAILS;
2282 case 2: return IT_ROCKETS;
2283 case 3: return IT_CELLS;
2284 case 4: return IT_FUEL;
2289 string GetAmmoPicture(float i)
2293 case 0: return "gfx/hud/sb_shells";
2294 case 1: return "gfx/hud/sb_bullets";
2295 case 2: return "gfx/hud/sb_rocket";
2296 case 3: return "gfx/hud/sb_cells";
2297 case 4: return "gfx/hud/sb_fuel";
2302 void Sbar_Reset (void)
2304 // reset gametype specific icons
2305 if(gametype == GAME_KEYHUNT)
2307 else if(gametype == GAME_CTF)
2308 CSQC_ctf_hudreset();
2311 void Sbar_Draw (void)
2313 // vectors for top right, bottom right, bottom and bottom left corners
2319 topright_x = vid_conwidth;
2323 bottom_x = vid_conwidth/2;
2324 bottom_y = vid_conheight;
2327 bottomright_x = vid_conwidth;
2328 bottomright_y = vid_conheight;
2332 bottomleft_y = vid_conheight;
2335 sbar_alpha_bg = cvar("sbar_alpha_bg") * (1 - cvar("_menu_alpha"));
2336 sbar_border_thickness = bound(0, cvar("sbar_border_thickness"), 5);
2337 sbar_color_bg_team = cvar("sbar_color_bg_team");
2342 float stat_items, stat_weapons;
2344 weapon_stats = getstati(STAT_DAMAGE_HITS);
2345 weapon_number = weapon_stats & 63;
2346 weapon_hits[weapon_number] = rint(weapon_stats / 64);
2348 weapon_stats = getstati(STAT_DAMAGE_FIRED);
2349 weapon_number = weapon_stats & 63;
2350 weapon_fired[weapon_number] = rint(weapon_stats / 64);
2352 vector o; o = '1 0 0' * vid_conwidth;
2353 o_y = 28; // move spectator text slightly down to prevent overlapping the timer
2359 sbar_fontsize = Sbar_GetFontsize("sbar_fontsize");
2360 sbar_fontsize_spec = Sbar_GetFontsize("sbar_fontsize_spec");
2362 if(spectatee_status && !intermission)
2364 drawfont = sbar_bigfont;
2365 if(spectatee_status == -1)
2368 s = GetPlayerName(spectatee_status - 1);
2369 // spectated player name between HUD and chat area, aligned to the left
2370 pos_x = bottomleft_x;
2371 pos_y = bottom_y - 50 - sbar_fontsize_spec_y;
2372 s = textShortenToWidth(s, vid_conwidth/2.5/sbar_fontsize_spec_x, stringwidth_colors);
2373 drawcolorcodedstring(pos, s, sbar_fontsize_spec, sbar_alpha_fg, DRAWFLAG_NORMAL);
2374 drawfont = sbar_font;
2376 // spectator text in the upper right corner
2377 if(spectatee_status == -1)
2378 s = strcat("^1Press ^3", getcommandkey("primary fire", "+attack"), "^1 to spectate");
2380 s = strcat("^1Press ^3", getcommandkey("primary fire", "+attack"), "^1 for another player");
2381 o = Sbar_DrawNoteLine(o, s);
2383 if(spectatee_status == -1)
2384 s = strcat("^1Use ^3", getcommandkey("next weapon", "weapnext"), "^1 or ^3", getcommandkey("previous weapon", "weapprev"), "^1 to change the speed");
2386 s = strcat("^1Press ^3", getcommandkey("secondary fire", "+attack2"), "^1 to observe");
2387 o = Sbar_DrawNoteLine(o, s);
2389 s = strcat("^1Press ^3", getcommandkey("server info", "+show_info"), "^1 for gamemode info");
2390 o = Sbar_DrawNoteLine(o, s);
2392 if(gametype == GAME_ARENA)
2393 s = "^1Wait for your turn to join";
2394 else if(gametype == GAME_LMS)
2397 sk = playerslots[player_localentnum - 1];
2398 if(sk.(scores[ps_primary]) >= 666)
2399 s = "^1Match has already begun";
2400 else if(sk.(scores[ps_primary]) > 0)
2401 s = "^1You have no more lives left";
2403 s = strcat("^1Press ^3", getcommandkey("jump", "+jump"), "^1 to join");
2406 s = strcat("^1Press ^3", getcommandkey("jump", "+jump"), "^1 to join");
2407 o = Sbar_DrawNoteLine(o, s);
2409 //show restart countdown:
2410 if (time < getstatf(STAT_GAMESTARTTIME)) {
2412 //we need to ceil, otherwise the countdown would be off by .5 when using round()
2413 countdown = ceil(getstatf(STAT_GAMESTARTTIME) - time);
2414 s = strcat("^1Game starts in ^3", ftos(countdown), "^1 seconds");
2415 o = Sbar_DrawNoteLine(o, s);
2418 if(warmup_stage && !intermission)
2420 s = "^2Currently in ^1warmup^2 stage!";
2421 o = Sbar_DrawNoteLine(o, s);
2424 // move more important stuff more to the middle so its more visible
2425 o_y = vid_conheight * 0.66;
2428 if(mod(time, 1) >= 0.5)
2433 if(ready_waiting && !intermission && !spectatee_status)
2435 if(ready_waiting_for_me)
2438 s = strcat(blinkcolor, "Press ^3", getcommandkey("ready", "ready"), blinkcolor, " to end warmup");
2440 s = strcat(blinkcolor, "Press ^3", getcommandkey("ready", "ready"), blinkcolor, " once you are ready");
2445 s = strcat("^2Waiting for others to ready up to end warmup...");
2447 s = strcat("^2Waiting for others to ready up...");
2449 o = Sbar_DrawNoteLine(o, s);
2451 else if(warmup_stage && !intermission && !spectatee_status)
2453 s = strcat("^2Press ^3", getcommandkey("ready", "ready"), "^2 to end warmup");
2454 o = Sbar_DrawNoteLine(o, s);
2458 s = strcat("^2A vote has been called for ^1", vote_called_vote);
2459 o = Sbar_DrawNoteLine(o, s);
2461 if(vote_waiting_for_me)
2463 s = strcat(blinkcolor, "Press ^3", getcommandkey("vote yes", "vyes"), blinkcolor, " to accept");
2464 o = Sbar_DrawNoteLine(o, s);
2466 s = strcat(blinkcolor, "Press ^3", getcommandkey("vote no", "vno"), blinkcolor, " to reject");
2467 o = Sbar_DrawNoteLine(o, s);
2469 s = strcat(blinkcolor, "Press ^3", getcommandkey("vote abstain", "vabstain"), blinkcolor, " to abstain");
2470 o = Sbar_DrawNoteLine(o, s);
2474 s = strcat("^2Waiting for others to vote...");
2475 o = Sbar_DrawNoteLine(o, s);
2478 if(teamplay && !intermission && !spectatee_status)
2481 float ts_min, ts_max;
2482 tm = teams.sort_next;
2485 for(; tm.sort_next; tm = tm.sort_next)
2487 if(!tm.team_size || tm.team == COLOR_SPECTATOR)
2489 if(!ts_min) ts_min = tm.team_size;
2490 else ts_min = min(ts_min, tm.team_size);
2491 if(!ts_max) ts_max = tm.team_size;
2492 else ts_max = max(ts_max, tm.team_size);
2494 if ((ts_max - ts_min) > 1)
2496 s = strcat(blinkcolor, "Teamnumbers are unbalanced!");
2497 tm = GetTeam(myteam, false);
2499 if (tm.team != COLOR_SPECTATOR)
2500 if (tm.team_size == ts_max)
2501 s = strcat(s, " Press ^3", getcommandkey("team menu", "menu_showteamselect"), blinkcolor, " to adjust");
2503 o = Sbar_DrawNoteLine(o, s);
2508 Sbar_UpdatePlayerTeams();
2509 if (intermission == 2) // map voting screen
2511 if(sb_showaccuracy) {
2512 Sbar_DrawAccuracyStats();
2516 else if(sb_showscores) {
2517 Sbar_DrawScoreboard();
2522 Sbar_FinaleOverlay();
2526 else if (sb_showscores_force || getstati(STAT_HEALTH) <= 0 || intermission == 1)
2529 Sbar_DrawAccuracyStats();
2531 Sbar_DrawScoreboard();
2540 Sbar_DrawAccuracyStats();
2542 Sbar_DrawScoreboard();
2543 float armor, health;
2544 armor = getstati(STAT_ARMOR);
2545 health = getstati(STAT_HEALTH);
2547 stat_items = getstati(STAT_ITEMS);
2548 stat_weapons = getstati(STAT_WEAPONS);
2550 fade = 3.2 - 2 * (time - weapontime);
2551 fade = bound(0.7, fade, 1);
2553 vector bg_size; // hud background size
2554 bg_size = '1600 58 0';
2556 if (cvar("viewsize") <= 100 && vid_conwidth <= 1600) {
2558 drawpic(bottom - '800 58 0', "gfx/hud/sbar", bg_size, GetTeamRGB(myteam) * sbar_color_bg_team, sbar_alpha_bg, DRAWFLAG_NORMAL); // hud color = myteam color
2560 // allow for custom HUD colors in non-teamgames
2561 color_x = cvar("sbar_color_bg_r");
2562 color_y = cvar("sbar_color_bg_g");
2563 color_z = cvar("sbar_color_bg_b");
2565 drawpic(bottom - '800 58 0', "gfx/hud/sbar", bg_size, color, sbar_alpha_bg, DRAWFLAG_NORMAL);
2569 if(sbar_hudselector == 2) // combined health and armor display
2572 v = healtharmor_maxdamage(health, armor, armorblockpercent);
2575 num_pos = bottom - '96 28 0';
2579 if(v_z) // fully armored
2581 // here, armorideal > armor
2582 drawpic(num_pos + '78 -4.5 0', "gfx/hud/sb_health", '32 32 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2583 drawpic(num_pos + '108 -4.5 0', "gfx/hud/sb_armor", '20 20 0', '1 1 1', sbar_alpha_fg * armor / v_y, DRAWFLAG_NORMAL);
2587 drawpic(num_pos + '108 -4.5 0', "gfx/hud/sb_health", '20 20 0', '1 1 1', sbar_alpha_fg * v_y / armor, DRAWFLAG_NORMAL);
2588 drawpic(num_pos + '78 -4.5 0', "gfx/hud/sb_armor", '32 32 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2590 Sbar_DrawXNum_Colored(num_pos, x, 24, sbar_alpha_fg); // draw the combined health and armor
2595 vector health_pos, armor_pos;
2597 if (sbar_hudselector == 0) { // old style layout with armor left of health
2598 armor_pos = bottom - '96 28 0';
2599 health_pos = bottom - '-14 28 0';
2602 health_pos = bottom - '96 28 0';
2603 armor_pos = bottom - '-14 28 0';
2611 drawpic(armor_pos + '78 -4.5 0', "gfx/hud/sb_armor", '32 32 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2612 Sbar_DrawXNum_Colored(armor_pos, x, 24, sbar_alpha_fg);
2615 drawpic(armor_pos + '78 -4.5 0', "gfx/hud/sb_armor", '32 32 0', '1 1 1', (x+10)/55 * sbar_alpha_fg, DRAWFLAG_NORMAL);
2616 Sbar_DrawXNum_Colored(armor_pos, x, 24, sbar_alpha_fg);
2622 drawpic(health_pos + '78 -4.5 0', "gfx/hud/sb_health", '32 32 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2623 Sbar_DrawXNum_Colored(health_pos, x, 24, sbar_alpha_fg);
2627 float a; // i will be the ammo type (already declared), a will contain how much ammo there is of type i
2629 for (i = 0; i < 4; ++i) {
2630 a = getstati(GetAmmoStat(i)); // how much ammo do we have of type i?
2632 if(sbar_currentammo || vid_conwidth < 800) { // force showing current ammo only with conwidths < 800
2633 if (stat_items & GetAmmoItemCode(i)) {
2634 if (vid_conwidth >= 800) {
2643 if(vid_conwidth >= 800)
2644 drawpic(pos + '0 1.5 0', "gfx/hud/sb_ammobg", '107 29 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2645 drawpic(pos + '76 3 0', GetAmmoPicture(i), '24 24 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2647 Sbar_DrawXNum(pos + '5 5 0', a, 3, 0, 24, '0.7 0 0', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
2649 Sbar_DrawXNum(pos + '5 5 0', a, 3, 0, 24, '1 1 1', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
2654 case 0: pos_x = 286; pos_y = 48; break; // shells
2655 case 1: pos_x = 286; pos_y = 26; break; // bullets
2656 case 2: pos_x = 200; pos_y = 48; break; // rockets
2657 case 3: pos_x = 200; pos_y = 26; break; // cells
2661 if (stat_items & GetAmmoItemCode(i))
2662 drawpic(pos + '0 1.5 0', "gfx/hud/sb_ammobg", '80 22 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2663 drawpic(pos + '56 3 0', GetAmmoPicture(i), '18 18 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2665 if(stat_items & GetAmmoItemCode(i))
2666 Sbar_DrawXNum(pos + '6 4.5 0', a, 3, 0, 16, '0.7 0 0', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
2668 Sbar_DrawXNum(pos + '6 4.5 0', a, 3, 0, 16, '0.7 0 0', 0, 0, sbar_alpha_fg * 0.7, DRAWFLAG_NORMAL);
2670 if(stat_items & GetAmmoItemCode(i))
2671 Sbar_DrawXNum(pos + '6 4.5 0', a, 3, 0, 16, '1 1 1', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
2673 Sbar_DrawXNum(pos + '6 4.5 0', a, 3, 0, 16, '0.7 0.7 0.7', 0, 0, sbar_alpha_fg * 0.7, DRAWFLAG_NORMAL);
2680 a = getstati(GetAmmoStat(4)); // how much fuel do we have?
2682 if (a > 0) { // if we have fuel, draw the amount
2683 float invincibility_time, dt;
2684 invincibility_time = getstatf(STAT_INVINCIBLE_FINISHED);
2685 dt = invincibility_time - time;
2686 if (vid_conwidth >= 800) {
2687 if (dt > 0) { // if the invincibility timer is active, draw fuel ammo elsewhere
2688 pos_x = bottom_x + 140;
2689 pos_y = bottom_y - 72;
2691 else { // if the invincibility timer is inactive, draw the fuel ammo there (it's rare to have invincibility + fuel anyway)
2692 pos_x = bottom_x + 140;
2693 pos_y = bottom_y - 20;
2696 else { // draw fuel on top of ammo if vid_conwidth < 800
2697 pos_x = bottom_x - 200;
2698 pos_y = bottom_y - 45;
2700 drawpic(pos - '0 2 0' + '52 0 0', GetAmmoPicture(4), '20 20 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2702 Sbar_DrawXNum(pos, a, 3, 0, 16, '1 1 1', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
2704 Sbar_DrawXNum(pos, a, 3, 0, 16, '0.7 0 0', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
2707 // draw scores and timer
2711 // draw strength/invincibility icon and timer
2712 CSQC_Strength_Timer();
2715 if(cvar("sbar_showweaponicons")) {
2717 Sbar_DrawWeapon_Clear();
2718 for(i = 1; i <= 24; ++i)
2720 if(weaponimpulse[i-1] >= 0)
2721 if(stat_weapons & x)
2722 Sbar_DrawWeapon(i-1, fade, (i == activeweapon), i);
2727 // draw gametype specific icons
2728 if(gametype == GAME_KEYHUNT)
2730 else if(gametype == GAME_CTF)
2732 else if(gametype == GAME_NEXBALL)
2734 else if(gametype == GAME_CTS || gametype == GAME_RACE)
2741 float redflag_prevframe, blueflag_prevframe; // status during previous frame
2742 float redflag_prevstatus, blueflag_prevstatus; // last remembered status
2743 float redflag_statuschange_time, blueflag_statuschange_time; // time when the status changed
2745 void CSQC_ctf_hudreset(void)
2747 redflag_prevstatus = blueflag_prevstatus = redflag_prevframe = blueflag_prevframe = redflag_statuschange_time = blueflag_statuschange_time = 0;
2750 void CSQC_ctf_hud(void)
2752 vector bottomleft, redflag_pos, blueflag_pos, sz;
2753 float f; // every function should have that
2755 bottomleft_y = vid_conheight;
2758 float redflag, blueflag; // current status
2759 float redflag_statuschange_elapsedtime, blueflag_statuschange_elapsedtime; // time since the status changed
2762 stat_items = getstati(STAT_ITEMS);
2763 redflag = (stat_items/IT_RED_FLAG_TAKEN) & 3;
2764 blueflag = (stat_items/IT_BLUE_FLAG_TAKEN) & 3;
2766 // when status CHANGES, set old status into prevstatus and current status into status
2767 if (redflag != redflag_prevframe)
2769 redflag_statuschange_time = time;
2770 redflag_prevstatus = redflag_prevframe;
2771 redflag_prevframe = redflag;
2774 if (blueflag != blueflag_prevframe)
2776 blueflag_statuschange_time = time;
2777 blueflag_prevstatus = blueflag_prevframe;
2778 blueflag_prevframe = blueflag;
2781 redflag_statuschange_elapsedtime = time - redflag_statuschange_time;
2782 blueflag_statuschange_elapsedtime = time - blueflag_statuschange_time;
2784 float BLINK_FACTOR = 0.15;
2785 float BLINK_BASE = 0.85;
2787 // RMS = sqrt(BLINK_BASE^2 + 0.5 * BLINK_FACTOR^2)
2789 // BLINK_BASE = sqrt(RMS^2 - 0.5 * BLINK_FACTOR^2)
2791 float BLINK_FREQ = 5; // circle frequency, = 2*pi*frequency in hertz
2793 string red_icon, red_icon_prevstatus;
2794 float red_alpha, red_alpha_prevstatus;
2795 red_alpha = red_alpha_prevstatus = 1;
2797 case 1: red_icon = "gfx/hud/sb_flag_red_taken"; break;
2798 case 2: red_icon = "gfx/hud/sb_flag_red_lost"; break;
2799 case 3: red_icon = "gfx/hud/sb_flag_red_carrying"; red_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
2801 if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM2))
2802 red_icon = "gfx/hud/sb_flag_red_shielded";
2804 red_icon = string_null;
2807 switch(redflag_prevstatus) {
2808 case 1: red_icon_prevstatus = "gfx/hud/sb_flag_red_taken"; break;
2809 case 2: red_icon_prevstatus = "gfx/hud/sb_flag_red_lost"; break;
2810 case 3: red_icon_prevstatus = "gfx/hud/sb_flag_red_carrying"; red_alpha_prevstatus = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
2813 red_icon_prevstatus = "gfx/hud/sb_flag_red_carrying"; // make it more visible
2814 else if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM2))
2815 red_icon_prevstatus = "gfx/hud/sb_flag_red_shielded";
2817 red_icon_prevstatus = string_null;
2821 string blue_icon, blue_icon_prevstatus;
2822 float blue_alpha, blue_alpha_prevstatus;
2823 blue_alpha = blue_alpha_prevstatus = 1;
2825 case 1: blue_icon = "gfx/hud/sb_flag_blue_taken"; break;
2826 case 2: blue_icon = "gfx/hud/sb_flag_blue_lost"; break;
2827 case 3: blue_icon = "gfx/hud/sb_flag_blue_carrying"; blue_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
2829 if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM1))
2830 blue_icon = "gfx/hud/sb_flag_blue_shielded";
2832 blue_icon = string_null;
2835 switch(blueflag_prevstatus) {
2836 case 1: blue_icon_prevstatus = "gfx/hud/sb_flag_blue_taken"; break;
2837 case 2: blue_icon_prevstatus = "gfx/hud/sb_flag_blue_lost"; break;
2838 case 3: blue_icon_prevstatus = "gfx/hud/sb_flag_blue_carrying"; blue_alpha_prevstatus = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
2841 blue_icon_prevstatus = "gfx/hud/sb_flag_blue_carrying"; // make it more visible
2842 else if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM1))
2843 blue_icon_prevstatus = "gfx/hud/sb_flag_blue_shielded";
2845 blue_icon_prevstatus = string_null;
2849 if (myteam == COLOR_TEAM1) { // always draw own flag on left
2850 redflag_pos = bottomleft - '-4 50 0';
2851 blueflag_pos = bottomleft - '-62 50 0';
2853 blueflag_pos = bottomleft - '-4 50 0';
2854 redflag_pos = bottomleft - '-62 50 0';
2859 f = bound(0, redflag_statuschange_elapsedtime*2, 1);
2860 if(red_icon_prevstatus && f < 1)
2861 drawpic_expanding(redflag_pos, red_icon_prevstatus, sz, '1 1 1', sbar_alpha_fg * red_alpha_prevstatus, DRAWFLAG_NORMAL, f);
2863 drawpic(redflag_pos, red_icon, sz, '1 1 1', sbar_alpha_fg * red_alpha * f, DRAWFLAG_NORMAL);
2865 f = bound(0, blueflag_statuschange_elapsedtime*2, 1);
2866 if(blue_icon_prevstatus && f < 1)
2867 drawpic_expanding(blueflag_pos, blue_icon_prevstatus, sz, '1 1 1', sbar_alpha_fg * blue_alpha_prevstatus, DRAWFLAG_NORMAL, f);
2869 drawpic(blueflag_pos, blue_icon, sz, '1 1 1', sbar_alpha_fg * blue_alpha * f, DRAWFLAG_NORMAL);
2873 float kh_runheretime;
2875 void CSQC_kh_hudreset(void)
2880 void CSQC_kh_hud(void)
2885 vector p, pa, kh_size, kh_asize;
2889 bottomleft_y = vid_conheight;
2893 p_y = vid_conheight - 34 - 3;
2896 kh_keys = getstati(STAT_KH_KEYS);
2898 kh_size = '19 34 0';
2899 kh_asize = '19 10 0';
2906 for(i = 0; i < 4; ++i)
2908 key = floor(kh_keys / pow(32, i)) & 31;
2910 if(keyteam == 30 && keycount <= 4)
2912 if(keyteam == myteam || keyteam == -1 || keyteam == 30)
2915 // this yields 8 exactly if "RUN HERE" shows
2920 kh_runheretime = time;
2921 pa_y -= fabs(sin((time - kh_runheretime) * 3.5)) * 6; // make the arrows jump in case of RUN HERE
2926 for(i = 0; i < 4; ++i)
2928 key = floor(kh_keys / pow(32, i)) & 31;
2941 default: // owned or dropped
2946 a = a * sbar_alpha_fg;
2947 aa = aa * sbar_alpha_fg;
2953 drawpic (pa, "gfx/hud/sb_kh_redarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL); // show 30% alpha key
2956 drawpic (pa, "gfx/hud/sb_kh_bluearrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL); // show 30% alpha key
2959 drawpic (pa, "gfx/hud/sb_kh_yellowarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL); // show 30% alpha key
2962 drawpic (pa, "gfx/hud/sb_kh_pinkarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL); // show 30% alpha key
2967 switch(i) // YAY! switch(i) inside a for loop for i. DailyWTF, here we come!
2970 drawpic (p, "gfx/hud/sb_kh_red", kh_size, '1 1 1', a, DRAWFLAG_NORMAL); // show 30% alpha key
2973 drawpic (p, "gfx/hud/sb_kh_blue", kh_size, '1 1 1', a, DRAWFLAG_NORMAL); // show 30% alpha key
2976 drawpic (p, "gfx/hud/sb_kh_yellow", kh_size, '1 1 1', a, DRAWFLAG_NORMAL); // show 30% alpha key
2979 drawpic (p, "gfx/hud/sb_kh_pink", kh_size, '1 1 1', a, DRAWFLAG_NORMAL); // show 30% alpha key
2989 #define NBPB_SIZE '96 38 0'
2990 #define NBPB_BT 2 //thickness
2991 #define NBPB_BRGB '1 1 1'
2992 #define NBPB_BALPH 1 //alpha
2993 #define NBPB_BFLAG DRAWFLAG_NORMAL
2994 #define NBPB_IALPH 0.4
2995 #define NBPB_IFLAG DRAWFLAG_NORMAL
2996 #define NBPB_IRGB '0.7 0.1 0'
2998 void CSQC_nb_hud(void)
3000 float stat_items, nb_pb_starttime, dt, p;
3003 stat_items = getstati(STAT_ITEMS);
3004 nb_pb_starttime = getstatf(STAT_NB_METERSTART);
3007 pos_y = vid_conheight - 42;
3010 //Manage the progress bar if any
3011 if (nb_pb_starttime > 0)
3014 dt = mod(time - nb_pb_starttime, nb_pb_period);
3015 // one period of positive triangle
3016 p = 2 * dt / nb_pb_period;
3022 drawfill(pos, p * s_x * '1 0 0' + s_y * '0 1 0', NBPB_IRGB, NBPB_IALPH, NBPB_IFLAG);
3026 drawline(NBPB_BT, pos , pos + '1 0 0' * s_x, NBPB_BRGB, NBPB_BALPH, NBPB_BFLAG);
3027 drawline(NBPB_BT, pos , pos + '0 1 0' * s_y, NBPB_BRGB, NBPB_BALPH, NBPB_BFLAG);
3028 drawline(NBPB_BT, pos + s, pos + '1 0 0' * s_x, NBPB_BRGB, NBPB_BALPH, NBPB_BFLAG);
3029 drawline(NBPB_BT, pos + s, pos + '0 1 0' * s_y, NBPB_BRGB, NBPB_BALPH, NBPB_BFLAG);
3032 pos_x += 12; //horizontal margin to the picture
3033 pos_y += 2; //vertical margin to the picture
3035 if (stat_items & IT_KEY1)
3036 drawpic(pos, "gfx/hud/sb_nexball_carrying", '80 34 0', '1 1 1', 1, DRAWFLAG_NORMAL);
3039 float crecordtime_prev; // last remembered crecordtime
3040 float crecordtime_change_time; // time when crecordtime last changed
3041 float srecordtime_prev; // last remembered srecordtime
3042 float srecordtime_change_time; // time when srecordtime last changed
3043 void CSQC_race_hud(void)
3046 me = (spectatee_status > 0) ? playerslots[spectatee_status - 1] : playerslots[player_localentnum - 1];
3047 float crecordtime, srecordtime, score;
3048 float f; // yet another function has this
3049 score = me.(scores[ps_primary]);
3051 drawfont = sbar_bigfont;
3054 pos_y = vid_conheight - 48;
3056 // clientside personal record
3058 if(gametype == GAME_CTS)
3062 crecordtime = stof(db_get(ClientProgsDB, strcat(shortmapname, rr, "time")));
3064 if(score && score < crecordtime || !crecordtime)
3065 db_put(ClientProgsDB, strcat(shortmapname, rr, "time"), ftos(score));
3067 if(crecordtime != crecordtime_prev) {
3068 crecordtime_prev = crecordtime;
3069 crecordtime_change_time = time;
3071 f = time - crecordtime_change_time;
3073 float cmin, csec, cmsec;
3074 cmin = floor(crecordtime/(60 * TIME_FACTOR));
3075 csec = floor((crecordtime - cmin*(60 * TIME_FACTOR))/TIME_FACTOR);
3076 cmsec = crecordtime - cmin*60*TIME_FACTOR - csec*TIME_FACTOR;
3079 drawstring(pos, "Personal best ", '10 10 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
3080 drawstring(pos + '0 10 0', strcat(ftos(cmin),":", ftos(csec),":",ftos(cmsec)),'14 14 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
3082 drawstring(pos, "Personal best ", '10 10 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
3083 drawstring(pos + '0 10 0', strcat(ftos(cmin),":", ftos(csec),":",ftos(cmsec)),'14 14 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
3086 drawstring(pos - '0 50 0' * f, "Personal best ", '10 10 0' + '30 30 0' * f, '1 1 1', sbar_alpha_fg * (1 - f), DRAWFLAG_NORMAL);
3087 drawstring(pos + '0 10 0' - '0 30 0' * f, strcat(ftos(cmin),":", ftos(csec),":",ftos(cmsec)),'14 14 0' + '42 42 0' * f, '1 1 1', sbar_alpha_fg * (1 - f), DRAWFLAG_NORMAL);
3092 srecordtime = race_server_record;
3093 if(srecordtime != srecordtime_prev) {
3094 srecordtime_prev = srecordtime;
3095 srecordtime_change_time = time;
3097 f = time - srecordtime_change_time;
3099 float smin, ssec, smsec;
3100 smin = floor(srecordtime/(60 * TIME_FACTOR));
3101 ssec = floor((srecordtime - smin*(60 * TIME_FACTOR))/TIME_FACTOR);
3102 smsec = srecordtime - smin*60*TIME_FACTOR - ssec*TIME_FACTOR;
3105 drawstring(pos, "Server best ", '10 10 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
3106 drawstring(pos + '0 10 0', strcat(ftos(smin),":", ftos(ssec),":",ftos(smsec)),'14 14 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
3108 drawstring(pos, "Server best ", '10 10 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
3109 drawstring(pos + '0 10 0', strcat(ftos(smin),":", ftos(ssec),":",ftos(smsec)),'14 14 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
3112 drawstring(pos - '0 50 0' * f, "Server best ", '10 10 0' + '30 30 0' * f, '1 1 1', sbar_alpha_fg * (1 - f), DRAWFLAG_NORMAL);
3113 drawstring(pos + '0 10 0' - '0 30 0' * f, strcat(ftos(smin),":", ftos(ssec),":",ftos(smsec)),'14 14 0' + '42 42 0' * f, '1 1 1', sbar_alpha_fg * (1 - f), DRAWFLAG_NORMAL);
3115 drawfont = sbar_font;