]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/client/sbar.qc
flip column/row highligthing, remove the blinking text from warmup (accuracy panel)
[divverent/nexuiz.git] / data / qcsrc / client / sbar.qc
1 void drawstringright(vector, string, vector, vector, float, float);
2 void drawstringcenter(vector, string, vector, vector, float, float);
3
4 float weapon_hits[WEP_COUNT];
5 float weapon_fired[WEP_COUNT];
6 float weapon_number;
7
8 float last_weapon;
9 float weapontime;
10
11 float sbar_alpha_fg;
12 float sbar_alpha_bg;
13 float sbar_color_bg_team;
14 float sbar_border_thickness;
15 float sbar_accuracy_border_thickness;
16 float sbar_scoreboard_alpha_bg;
17 float sbar_scoreboard_alpha_fg;
18 float sbar_scoreboard_highlight;
19 float sbar_scoreboard_highlight_alpha;
20 float sbar_scoreboard_highlight_alpha_self;
21 float sbar_hudselector;
22 float sbar_accuracy_hud;
23 float sbar_scoreboard_alpha_name;
24 float sbar_scoreboard_alpha_name_self;
25
26 float ps_primary, ps_secondary;
27 float ts_primary, ts_secondary;
28
29 vector color;
30 float SCOREBOARD_OFFSET = 50;
31
32 void CSQC_kh_hudreset();
33 void CSQC_kh_hud();
34 void CSQC_ctf_hudreset();
35 void CSQC_ctf_hud();
36 void CSQC_nb_hud();
37 void CSQC_race_hud();
38 void MapVote_Draw();
39 void Sbar_FinaleOverlay()
40 {
41         /*vector pos;
42         pos_x = (vid_conwidth - 1)/2;
43         pos_y = 16;
44         pos_z = 0;*/
45
46         //drawpic(pos, "gfx/finale", '0 0 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
47
48         //drawstring(pos, "END", sbar_fontsize, '1 1 1', 1, DRAWFLAG_NORMAL);
49         MapVote_Draw();
50 }
51
52 vector Sbar_AccuracyColor(float accuracy)
53 {
54         vector color;
55         float yellow_accuracy = cvar("sbar_accuracy_yellow"); // value at which this function returns yellow
56         if(accuracy >= 100) {
57                 color_x = 0;
58                 color_y = 1;
59         }
60         else if(accuracy > yellow_accuracy) {
61                 color_x = 1 - (accuracy-yellow_accuracy)/(100-yellow_accuracy); // red value between 1 -> 0
62                 color_y = 1;
63         }
64         else {
65                 color_x = 1;
66                 color_y = accuracy/yellow_accuracy; // green value between 0 -> 1
67         }
68         color_z = 0;
69         return color;
70 }
71
72 float weaponspace[10];
73 float weapon_first, weapon_last;
74 void Sbar_DrawWeapon_Clear()
75 {
76         float idx;
77         weapon_first = -2;
78         weapon_last = -1;
79         for(idx = 0; idx < 10; ++idx)
80                 weaponspace[idx] = 0;
81         for(idx = 0; idx <= 23; ++idx)
82         {
83                 if(weaponimpulse[idx] >= 0)
84                 {
85                         if(weapon_first < 0)
86                                 weapon_first = idx;
87                         weapon_last = idx;
88                 }
89         }
90 }
91 void Sbar_DrawWeapon(float nr, float fade, float active, float wc)
92 {
93         vector pos, vsize, fill_colour;
94         float value, idx, imp, sp, weapon_hit, weapon_damage, weapon_stats;
95
96         imp = weaponimpulse[nr];
97         weapon_hit = weapon_hits[wc];
98         weapon_damage = weapon_fired[wc];
99         if(imp == 0)
100                 idx = 9;
101         else
102                 idx = imp - 1;
103
104         value = (active) ? 1 : 0.6;
105         color_x = color_y = color_z = value;
106
107         // width = 300, height = 100
108         const float w_width = 24, w_height = 12, w_space = 2, font_size = 8, accuracybar_height = 3;
109
110         sp = weaponspace[idx] + 1;
111         weaponspace[idx] = sp;
112
113         pos_x = (vid_conwidth + 6 - w_width * 9) * 0.5 + w_width * idx;
114         pos_y = (vid_conheight - w_height * sp) - 38; // move 38 pixels up
115         pos_z = 0;
116         vsize_x = w_width;
117         vsize_y = w_height;
118         vsize_z = 0;
119         if (active)
120                 drawpic(pos, "gfx/hud/sb_ammobg", vsize, color, value * fade * sbar_alpha_fg, DRAWFLAG_NORMAL);
121         drawpic(pos, strcat("gfx/hud/inv_weapon", ftos(nr)), vsize, color, value * fade * sbar_alpha_fg, DRAWFLAG_NORMAL);
122         pos_x += w_space;
123         pos_y += w_space;
124         vsize_x = font_size;
125         vsize_y = font_size;
126         vsize_z = 0;
127         drawstring(pos, ftos(imp), vsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
128
129         // draw the weapon accuracy on the HUD
130         if(sbar_accuracy_hud)
131         {
132                 weapon_stats = rint(100*weapon_hit/weapon_damage);
133                 fill_colour = Sbar_AccuracyColor(weapon_stats);
134                 if(weapon_damage)
135                         drawpic(pos - '2 0 0' + '0 1 0' * (w_height - accuracybar_height), "gfx/hud/sb_accuracy_bar.tga", '1 0 0' * w_width + '0 1 0' * accuracybar_height, fill_colour, sbar_alpha_fg, DRAWFLAG_NORMAL);
136         }
137 }
138
139 void Sbar_DrawXNum (vector pos, float num, float digits, float showminusplus, float lettersize, vector rgb, float highlighted, float stroke, float alpha, float dflags)
140 {
141         float l, i;
142         string str, tmp, l_length;
143         float minus, plus;
144         vector vsize, num_color;
145
146         vsize_x = vsize_y = lettersize;
147         vsize_z = 0;
148
149         // showminusplus 1: always prefix with minus sign (useful in race distribution display)
150         // showminusplus 2: always prefix with plus sign (useful in race distribution display)
151         // showminusplus 3: prefix with minus sign if negative, plus sign if positive (useful in score distribution display)
152
153         if((showminusplus == 2 && num >= 0) || (num > 0 && showminusplus == 3))
154         {
155                 plus = true;
156                 pos_x -= lettersize;
157         } else
158                 plus = false;   
159
160         if(num < 0 || (num < 0 && showminusplus == 3) || (showminusplus == 1 && num <= 0))
161         {
162                 minus = true;
163                 num = -num;
164                 pos_x -= lettersize;
165         } else
166                 minus = false;
167
168         if(digits < 0)
169         {
170                 tmp = ftos(num);
171                 digits = -digits;
172                 str = strcat(substring("0000000000", 0, digits - strlen(tmp)), tmp);
173         } else
174                 str = ftos(num);
175
176         l = strlen(str);
177         l_length = ftos(l);
178
179         if(l > digits)
180         {
181                 str = substring(str, l-digits, 999);
182                 l = strlen(str);
183         } else if(l < digits)
184                 pos_x += (digits-l) * lettersize;
185
186         if (highlighted == 1) {
187                 vector hl_size;
188                 hl_size_x = vsize_x * l + vsize_x * 0.2;
189                 hl_size_y = vsize_y * 1.1;
190                 hl_size_z = 0;
191                 if(minus)
192                         hl_size_x = hl_size_x + vsize_x;
193
194                 vector hl_pos;
195                 hl_pos_x = pos_x - lettersize/10;
196                 hl_pos_y = pos_y - lettersize/20;
197                 hl_pos_z = 0;
198
199                 drawpic(hl_pos, strcat("gfx/hud/sb_highlight_", l_length), hl_size, '1 1 1', alpha, dflags);
200         }
201
202         if (stroke == 1)
203                 num_color = '1 1 1';
204         else
205                 num_color = rgb;
206
207         if(minus)
208         {
209                 if (stroke == 1)
210                         drawpic(pos, "gfx/hud/num_minus_stroke", vsize, rgb, alpha, dflags);
211                 drawpic(pos, "gfx/hud/num_minus", vsize, num_color, alpha, dflags);
212                 pos_x += lettersize;
213         } else if(plus)
214         {
215                 if (stroke == 1)
216                         drawpic(pos, "gfx/hud/num_plus_stroke", vsize, rgb, alpha, dflags);
217                 drawpic(pos, "gfx/hud/num_plus", vsize, num_color, alpha, dflags);
218                 pos_x += lettersize;
219         }
220
221         for(i = 0; i < l; ++i)
222         {
223                 tmp = substring(str, i, 1);
224                 if (stroke == 1)
225                         drawpic(pos, strcat("gfx/hud/num_", tmp, "_stroke"), vsize, rgb, alpha, dflags);
226                 drawpic(pos, strcat("gfx/hud/num_", tmp), vsize, num_color, alpha, dflags);
227                 pos_x += lettersize;
228         }
229 }
230
231 void Sbar_DrawXNum_Colored (vector pos, float x, float lettersize, float alpha)
232 {
233         if(x > 200) {
234                 color_x = 0;
235                 color_y = 1;
236                 color_z = 0;
237         }
238         else if(x > 150) {
239                 color_x = 0.4 - (x-150)*0.02 * 0.4; //red value between 0.4 -> 0
240                 color_y = 0.9 + (x-150)*0.02 * 0.1; // green value between 0.9 -> 1
241                 color_z = 0;
242         }
243         else if(x > 100) {
244                 color_x = 1 - (x-100)*0.02 * 0.6; //red value between 1 -> 0.4
245                 color_y = 1 - (x-100)*0.02 * 0.1; // green value between 1 -> 0.9
246                 color_z = 1 - (x-100)*0.02; // blue value between 1 -> 0
247         }
248         else if(x > 50) {
249                 color_x = 1;
250                 color_y = 1;
251                 color_z = 0.2 + (x-50)*0.02 * 0.8; // blue value between 0.2 -> 1
252         }
253         else if(x > 20) {
254                 color_x = 1;
255                 color_y = (x-20)*90/27/100; // green value between 0 -> 1
256                 color_z = (x-20)*90/27/100 * 0.2; // blue value between 0 -> 0.2
257         }
258         else {
259                 color_x = 1;
260                 color_y = 0;
261                 color_z = 0;
262         }
263         Sbar_DrawXNum(pos, x, 3, 0, lettersize, color, 0, 0, alpha, DRAWFLAG_NORMAL);
264 }
265
266 void Cmd_Sbar_SetFields(float argc);
267 void Sbar_InitScores()
268 {
269         float i, f;
270
271         ps_primary = ps_secondary = ts_primary = ts_secondary = -1;
272         for(i = 0; i < MAX_SCORE; ++i)
273         {
274                 f = (scores_flags[i] & SFL_SORT_PRIO_MASK);
275                 if(f == SFL_SORT_PRIO_PRIMARY)
276                         ps_primary = i;
277                 if(f == SFL_SORT_PRIO_SECONDARY)
278                         ps_secondary = i;
279         }
280         if(ps_secondary == -1)
281                 ps_secondary = ps_primary;
282
283         for(i = 0; i < MAX_TEAMSCORE; ++i)
284         {
285                 f = (teamscores_flags[i] & SFL_SORT_PRIO_MASK);
286                 if(f == SFL_SORT_PRIO_PRIMARY)
287                         ts_primary = i;
288                 if(f == SFL_SORT_PRIO_SECONDARY)
289                         ts_secondary = i;
290         }
291         if(ts_secondary == -1)
292                 ts_secondary = ts_primary;
293
294         Cmd_Sbar_SetFields(0);
295 }
296
297 void Sbar_UpdatePlayerPos(entity pl);
298 float SetTeam(entity pl, float Team);
299 //float lastpnum;
300 void Sbar_UpdatePlayerTeams()
301 {
302         float Team;
303         entity pl, tmp;
304         float num;
305
306         num = 0;
307         for(pl = players.sort_next; pl; pl = pl.sort_next)
308         {
309                 num += 1;
310                 Team = GetPlayerColor(pl.sv_entnum);
311                 if(SetTeam(pl, Team))
312                 {
313                         tmp = pl.sort_prev;
314                         Sbar_UpdatePlayerPos(pl);
315                         if(tmp)
316                                 pl = tmp;
317                         else
318                                 pl = players.sort_next;
319                 }
320         }
321         /*
322         if(num != lastpnum)
323                 print(strcat("PNUM: ", ftos(num), "\n"));
324         lastpnum = num;
325         */
326 }
327
328 float Sbar_ComparePlayerScores(entity left, entity right)
329 {
330         float vl, vr;
331         vl = GetPlayerColor(left.sv_entnum);
332         vr = GetPlayerColor(right.sv_entnum);
333
334         if(!left.gotscores)
335                 vl = COLOR_SPECTATOR;
336         if(!right.gotscores)
337                 vr = COLOR_SPECTATOR;
338
339         if(vl > vr)
340                 return true;
341         if(vl < vr)
342                 return false;
343
344         if(vl == COLOR_SPECTATOR)
345         {
346                 // FIRST the one with scores (spectators), THEN the ones without (downloaders)
347                 // no other sorting
348                 if(!left.gotscores && right.gotscores)
349                         return true;
350                 return false;
351         }
352
353         vl = left.scores[ps_primary];
354         vr = right.scores[ps_primary];
355         if(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)
356         {
357                 if(vl == 0 && vr != 0)
358                         return 1;
359                 if(vl != 0 && vr == 0)
360                         return 0;
361         }
362         if(vl > vr)
363                 return IS_INCREASING(scores_flags[ps_primary]);
364         if(vl < vr)
365                 return IS_DECREASING(scores_flags[ps_primary]);
366
367         vl = left.scores[ps_secondary];
368         vr = right.scores[ps_secondary];
369         if(scores_flags[ps_secondary] & SFL_ZERO_IS_WORST)
370         {
371                 if(vl == 0 && vr != 0)
372                         return 1;
373                 if(vl != 0 && vr == 0)
374                         return 0;
375         }
376         if(vl > vr)
377                 return IS_INCREASING(scores_flags[ps_secondary]);
378         if(vl < vr)
379                 return IS_DECREASING(scores_flags[ps_secondary]);
380
381         return false;
382 }
383
384 void Sbar_UpdatePlayerPos(entity player)
385 {
386         for(other = player.sort_next; other && Sbar_ComparePlayerScores(player, other); other = player.sort_next)
387         {
388                 SORT_SWAP(player, other);
389         }
390         for(other = player.sort_prev; other != players && Sbar_ComparePlayerScores(other, player); other = player.sort_prev)
391         {
392                 SORT_SWAP(other, player);
393         }
394 }
395
396 float Sbar_CompareTeamScores(entity left, entity right)
397 {
398         float vl, vr;
399
400         if(left.team == COLOR_SPECTATOR)
401                 return 1;
402         if(right.team == COLOR_SPECTATOR)
403                 return 0;
404
405         vl = left.teamscores[ts_primary];
406         vr = right.teamscores[ts_primary];
407         if(vl > vr)
408                 return IS_INCREASING(teamscores_flags[ts_primary]);
409         if(vl < vr)
410                 return IS_DECREASING(teamscores_flags[ts_primary]);
411
412         vl = left.teamscores[ts_secondary];
413         vr = right.teamscores[ts_secondary];
414         if(vl > vr)
415                 return IS_INCREASING(teamscores_flags[ts_secondary]);
416         if(vl < vr)
417                 return IS_DECREASING(teamscores_flags[ts_secondary]);
418
419         return false;
420 }
421
422 void Sbar_UpdateTeamPos(entity Team)
423 {
424         for(other = Team.sort_next; other && Sbar_CompareTeamScores(Team, other); other = Team.sort_next)
425         {
426                 SORT_SWAP(Team, other);
427         }
428         for(other = Team.sort_prev; other != teams && Sbar_CompareTeamScores(other, Team); other = Team.sort_prev)
429         {
430                 SORT_SWAP(other, Team);
431         }
432 }
433
434 void Cmd_Sbar_Help(float argc)
435 {
436         print("You can modify the scoreboard using the ^2sbar_columns_set command.\n");
437         print("^3|---------------------------------------------------------------|\n");
438         print("Usage:\n");
439         print("^2sbar_columns_set default\n");
440         print("^2sbar_columns_set ^7filed1 field2 ...\n");
441         print("The following field names are recognized (case insensitive):\n");
442         print("You can use a ^3|^7 to start the right-aligned fields.\n\n");
443
444         print("^3name^7 or ^3nick^7         Name of a player\n");
445         print("^3ping^7                     Ping time\n");
446         print("^3pl^7                       Packet loss\n");
447         print("^3kills^7                    Number of kills\n");
448         print("^3deaths^7                   Number of deaths\n");
449         print("^3suicides^7                 Number of suicides\n");
450         print("^3frags^7                    kills - suicides\n");
451         print("^3kd^7                       The kill-death ratio\n");
452         print("^3caps^7                     How often a flag (CTF) or a key (KeyHunt) was captured\n");
453         print("^3pickups^7                  How often a flag (CTF) or a key (KeyHunt) was picked up\n");
454         print("^3fckills^7                  Number of flag carrier kills\n");
455         print("^3returns^7                  Number of flag returns\n");
456         print("^3drops^7                    Number of flag drops\n");
457         print("^3lives^7                    Number of lives (LMS)\n");
458         print("^3rank^7                     Player rank\n");
459         print("^3pushes^7                   Number of players pushed into void\n");
460         print("^3destroyed^7                Number of keys destroyed by pushing them into void\n");
461         print("^3kckills^7                  Number of keys carrier kills\n");
462         print("^3losses^7                   Number of times a key was lost\n");
463         print("^3laps^7                     Number of laps finished (race/cts)\n");
464         print("^3time^7                     Total time raced (race/cts)\n");
465         print("^3fastest^7                  Time of fastest lap (race/cts)\n");
466         print("^3ticks^7                    Number of ticks (DOM)\n");
467         print("^3takes^7                    Number of domination points taken (DOM)\n");
468         print("^3score^7                    Total score\n\n");
469
470         print("Before a field you can put a + or - sign, then a comma separated list\n");
471         print("of game types, then a slash, to make the field show up only in these\n");
472         print("or in all but these game types. You can also specify 'all' as a\n");
473         print("field to show all fields available for the current game mode.\n\n");
474         
475         print("The special game type names 'teams' and 'noteams' can be used to\n");
476         print("include/exclude ALL teams/noteams game modes.\n\n");
477
478         print("Example: sbar_columns_set name ping pl | +ctf/field3 -dm/field4\n");
479         print("will display name, ping and pl aligned to the left, and the fields\n");
480         print("right of the vertical bar aligned to the right.\n");
481         print("'field3' will only be shown in CTF, and 'field4' will be shown in all\n");
482         print("other gamemodes except DM.\n");
483 }
484
485 string Sbar_DefaultColumnLayout()
486 {
487         return strcat( // fteqcc sucks
488                 "ping pl name | ",
489                 "-teams,race,lms/kills -teams,lms/deaths -teams,lms,race/suicides -race,dm,tdm/frags ", // tdm already has this in "score"
490                 "+ctf/caps +ctf/pickups +ctf/fckills +ctf/returns ",
491                 "+lms/lives +lms/rank ",
492                 "+kh/caps +kh/pushes +kh/destroyed ",
493                 "?+race/laps ?+race/time ?+race/fastest ",
494                 "+as/objectives +nexball/faults +nexball/goals ",
495                 "-lms,race,nexball/score");
496 }
497
498 void Cmd_Sbar_SetFields(float argc)
499 {
500         float i, j, slash;
501         string str, pattern;
502         float digit;
503         float have_name, have_primary, have_secondary, have_separator;
504         float missing;
505
506         // TODO: re enable with gametype dependant cvars?
507         if(argc < 2) // no arguments provided
508                 argc = tokenizebyseparator(strcat("x ", cvar_string("sbar_columns")), " ");
509
510         if(argc < 2)
511                 argc = tokenizebyseparator(strcat("x ", Sbar_DefaultColumnLayout()), " ");
512
513         if(argc == 2)
514         {
515                 if(argv(1) == "default")
516                         argc = tokenizebyseparator(strcat("x ", Sbar_DefaultColumnLayout()), " ");
517                 else if(argv(1) == "all")
518                 {
519                         string s;
520                         s = "ping pl color name |";
521                         for(i = 0; i < MAX_SCORE; ++i)
522                         {
523                                 if(i != ps_primary)
524                                 if(i != ps_secondary)
525                                 if(scores_label[i] != "")
526                                         s = strcat(s, " ", scores_label[i]);
527                         }
528                         if(ps_secondary != ps_primary)
529                                 s = strcat(s, " ", scores_label[ps_secondary]);
530                         s = strcat(s, " ", scores_label[ps_primary]);
531                         argc = tokenizebyseparator(strcat("x ", s), " ");
532                 }
533         }
534
535
536         sbar_num_fields = 0;
537
538         drawfont = sbar_font;
539         digit = stringwidth("0123456789", FALSE) / 10;
540
541         for(i = 0; i < argc - 1; ++i)
542         {
543                 float nocomplain;
544                 str = argv(i+1);
545
546                 nocomplain = FALSE;
547                 if(substring(str, 0, 1) == "?")
548                 {
549                         nocomplain = TRUE;
550                         str = substring(str, 1, strlen(str) - 1);
551                 }
552
553                 slash = strstrofs(str, "/", 0);
554                 if(slash >= 0)
555                 {
556                         pattern = substring(str, 0, slash);
557                         str = substring(str, slash + 1, strlen(str) - (slash + 1));
558
559                         if not(isGametypeInFilter(gametype, teamplay, pattern))
560                                 continue;
561                 }
562
563                 strunzone(sbar_title[sbar_num_fields]);
564                 sbar_title[sbar_num_fields] = strzone(str);
565                 sbar_size[sbar_num_fields] = stringwidth(str, FALSE);
566                 str = strtolower(str);
567
568                 if(str == "ping") {
569                         sbar_field[sbar_num_fields] = SP_PING;
570                 } else if(str == "pl") {
571                         sbar_field[sbar_num_fields] = SP_PL;
572                 } else if(str == "kd" || str == "kdr" || str == "kdratio" || str == "k/d") {
573                         sbar_field[sbar_num_fields] = SP_KDRATIO;
574                 } else if(str == "name" || str == "nick") {
575                         sbar_field[sbar_num_fields] = SP_NAME;
576                         have_name = 1;
577                 } else if(str == "|") {
578                         sbar_field[sbar_num_fields] = SP_SEPARATOR;
579                         have_separator = 1;
580                 } else {
581                         for(j = 0; j < MAX_SCORE; ++j)
582                                 if(str == strtolower(scores_label[j]))
583                                         goto found; // sorry, but otherwise fteqcc -O3 miscompiles this and warns about "unreachable code"
584 :notfound
585                         if(str == "frags")
586                         {
587                                 j = SP_FRAGS;
588                         }
589                         else
590                         {
591                                 if not(nocomplain)
592                                         print(strcat("^1Error:^7 Unknown score field: '", str, "'\n"));
593                                 continue;
594                         }
595 :found
596                         sbar_field[sbar_num_fields] = j;
597                         if(j == ps_primary)
598                                 have_primary = 1;
599                         if(j == ps_secondary)
600                                 have_secondary = 1;
601                 }
602                 ++sbar_num_fields;
603                 if(sbar_num_fields >= MAX_SBAR_FIELDS)
604                         break;
605         }
606
607         if(scores_flags[ps_primary] & SFL_ALLOW_HIDE)
608                 have_primary = 1;
609         if(scores_flags[ps_secondary] & SFL_ALLOW_HIDE)
610                 have_secondary = 1;
611         if(ps_primary == ps_secondary)
612                 have_secondary = 1;
613         missing = (!have_primary) + (!have_secondary) + (!have_separator) + (!have_name);
614
615         if(sbar_num_fields+missing < MAX_SBAR_FIELDS)
616         {
617                 if(!have_name)
618                 {
619                         strunzone(sbar_title[sbar_num_fields]);
620                         for(i = sbar_num_fields; i > 0; --i)
621                         {
622                                 sbar_title[i] = sbar_title[i-1];
623                                 sbar_size[i] = sbar_size[i-1];
624                                 sbar_field[i] = sbar_field[i-1];
625                         }
626                         sbar_title[0] = strzone("name");
627                         sbar_field[0] = SP_NAME;
628                         ++sbar_num_fields;
629                         print("fixed missing field 'name'\n");
630
631                         if(!have_separator)
632                         {
633                                 strunzone(sbar_title[sbar_num_fields]);
634                                 for(i = sbar_num_fields; i > 1; --i)
635                                 {
636                                         sbar_title[i] = sbar_title[i-1];
637                                         sbar_size[i] = sbar_size[i-1];
638                                         sbar_field[i] = sbar_field[i-1];
639                                 }
640                                 sbar_title[1] = strzone("|");
641                                 sbar_field[1] = SP_SEPARATOR;
642                                 sbar_size[1] = stringwidth("|", FALSE);
643                                 ++sbar_num_fields;
644                                 print("fixed missing field '|'\n");
645                         }
646                 }
647                 else if(!have_separator)
648                 {
649                         strunzone(sbar_title[sbar_num_fields]);
650                         sbar_title[sbar_num_fields] = strzone("|");
651                         sbar_size[sbar_num_fields] = stringwidth("|", FALSE);
652                         sbar_field[sbar_num_fields] = SP_SEPARATOR;
653                         ++sbar_num_fields;
654                         print("fixed missing field '|'\n");
655                 }
656                 if(!have_secondary)
657                 {
658                         strunzone(sbar_title[sbar_num_fields]);
659                         sbar_title[sbar_num_fields] = strzone(scores_label[ps_secondary]);
660                         sbar_size[sbar_num_fields] = stringwidth(sbar_title[sbar_num_fields], FALSE);
661                         sbar_field[sbar_num_fields] = ps_secondary;
662                         ++sbar_num_fields;
663                         print("fixed missing field '", scores_label[ps_secondary], "'\n");
664                 }
665                 if(!have_primary)
666                 {
667                         strunzone(sbar_title[sbar_num_fields]);
668                         sbar_title[sbar_num_fields] = strzone(scores_label[ps_primary]);
669                         sbar_size[sbar_num_fields] = stringwidth(sbar_title[sbar_num_fields], FALSE);
670                         sbar_field[sbar_num_fields] = ps_primary;
671                         ++sbar_num_fields;
672                         print("fixed missing field '", scores_label[ps_primary], "'\n");
673                 }
674         }
675
676         sbar_field[sbar_num_fields] = SP_END;
677 }
678
679 // MOVEUP::
680 vector sbar_field_rgb;
681 string sbar_field_icon0;
682 string sbar_field_icon1;
683 string sbar_field_icon2;
684 vector sbar_field_icon0_rgb;
685 vector sbar_field_icon1_rgb;
686 vector sbar_field_icon2_rgb;
687 float sbar_field_icon0_alpha;
688 float sbar_field_icon1_alpha;
689 float sbar_field_icon2_alpha;
690 string Sbar_GetField(entity pl, float field)
691 {
692         float tmp, num, denom, f;
693         string str;
694         sbar_field_rgb = '1 1 1';
695         sbar_field_icon0 = "";
696         sbar_field_icon1 = "";
697         sbar_field_icon2 = "";
698         sbar_field_icon0_rgb = '1 1 1';
699         sbar_field_icon1_rgb = '1 1 1';
700         sbar_field_icon2_rgb = '1 1 1';
701         sbar_field_icon0_alpha = 1;
702         sbar_field_icon1_alpha = 1;
703         sbar_field_icon2_alpha = 1;
704         switch(field)
705         {
706                 case SP_PING:
707                         if not(pl.gotscores)
708                                 return "\x8D\x8D\x8D"; // >>> sign
709                         str = getplayerkey(pl.sv_entnum, "ping");
710                         if(str == "0")
711                                 return "N/A";
712                         tmp = max(0, min(220, stof(str)-80)) / 220;
713                         sbar_field_rgb = '1 1 1' - '0 1 1'*tmp;
714                         return str;
715
716                 case SP_PL:
717                         if not(pl.gotscores)
718                                 return "N/A";
719                         str = getplayerkey(pl.sv_entnum, "pl");
720                         if(str == "0")
721                                 return "";
722                         tmp = bound(0, stof(str), 20) / 20; // 20% is REALLY BAD pl
723                         sbar_field_rgb = '1 0.5 0.5' - '0 0.5 0.5'*tmp;
724                         return str;
725
726                 case SP_NAME:
727                         if(ready_waiting && pl.ready)
728                         {
729                                 sbar_field_icon0 = "gfx/sb_player_ready";
730                         }
731                         else if(!teamplay)
732                         {
733                                 f = stof(getplayerkey(pl.sv_entnum, "colors"));
734                                 {
735                                         sbar_field_icon0 = "gfx/sb_playercolor_base";
736                                         sbar_field_icon1 = "gfx/sb_playercolor_shirt";
737                                         sbar_field_icon1_rgb = colormapPaletteColor(floor(f / 16), 0);
738                                         sbar_field_icon2 = "gfx/sb_playercolor_pants";
739                                         sbar_field_icon2_rgb = colormapPaletteColor(mod(f, 16), 1);
740                                 }
741                         }
742                         return GetPlayerName(pl.sv_entnum);
743
744                 case SP_FRAGS:
745                         f = pl.(scores[SP_KILLS]);
746                         f -= pl.(scores[SP_SUICIDES]);
747                         return ftos(f);
748
749                 case SP_KDRATIO:
750                         num = pl.(scores[SP_KILLS]);
751                         denom = pl.(scores[SP_DEATHS]);
752
753                         if(denom == 0) {
754                                 sbar_field_rgb = '0 1 0';
755                                 str = ftos(num);
756                         } else if(num <= 0) {
757                                 sbar_field_rgb = '1 0 0';
758                                 str = ftos(num/denom);
759                         } else
760                                 str = ftos(num/denom);
761
762                         tmp = strstrofs(str, ".", 0);
763                         if(tmp > 0)
764                                 str = substring(str, 0, tmp+2);
765                         return str;
766
767                 default:
768                         tmp = pl.(scores[field]);
769                         f = scores_flags[field];
770                         if(field == ps_primary)
771                                 sbar_field_rgb = '1 1 0';
772                         else if(field == ps_secondary)
773                                 sbar_field_rgb = '0 1 1';
774                         else
775                                 sbar_field_rgb = '1 1 1';
776                         return ScoreString(f, tmp);
777         }
778         //return "error";
779 }
780
781 float xmin, xmax, ymin, ymax, sbwidth;
782 float sbar_fixscoreboardcolumnwidth_len;
783 float sbar_fixscoreboardcolumnwidth_iconlen;
784 float sbar_fixscoreboardcolumnwidth_marginlen;
785
786 float stringwidth_colors(string s)
787 {
788         return stringwidth(s, TRUE);
789 }
790
791 float stringwidth_nocolors(string s)
792 {
793         return stringwidth(s, FALSE);
794 }
795
796 string Sbar_FixScoreboardColumnWidth(float i, string str)
797 {
798         float field, f;
799         vector sz;
800         field = sbar_field[i];
801
802         sbar_fixscoreboardcolumnwidth_iconlen = 0;
803
804         if(sbar_field_icon0 != "")
805         {
806                 sz = drawgetimagesize(sbar_field_icon0);
807                 f = sz_x / sz_y;
808                 if(sbar_fixscoreboardcolumnwidth_iconlen < f)
809                         sbar_fixscoreboardcolumnwidth_iconlen = f;
810         }
811
812         if(sbar_field_icon1 != "")
813         {
814                 sz = drawgetimagesize(sbar_field_icon1);
815                 f = sz_x / sz_y;
816                 if(sbar_fixscoreboardcolumnwidth_iconlen < f)
817                         sbar_fixscoreboardcolumnwidth_iconlen = f;
818         }
819
820         if(sbar_field_icon2 != "")
821         {
822                 sz = drawgetimagesize(sbar_field_icon2);
823                 f = sz_x / sz_y;
824                 if(sbar_fixscoreboardcolumnwidth_iconlen < f)
825                         sbar_fixscoreboardcolumnwidth_iconlen = f;
826         }
827
828         sbar_fixscoreboardcolumnwidth_iconlen *= sbar_fontsize_y / sbar_fontsize_x; // fix icon aspect
829
830         if(sbar_fixscoreboardcolumnwidth_iconlen != 0)
831                 sbar_fixscoreboardcolumnwidth_marginlen = stringwidth(" ", FALSE);
832         else
833                 sbar_fixscoreboardcolumnwidth_marginlen = 0;
834
835         if(field == SP_NAME) // name gets all remaining space
836         {
837                 float namesize, j;
838                 namesize = sbwidth / sbar_fontsize_x;
839                 for(j = 0; j < sbar_num_fields; ++j)
840                         if(j != i)
841                                 if (sbar_field[i] != SP_SEPARATOR)
842                                         namesize -= sbar_size[j] + 1;
843                 namesize += 1;
844                 sbar_size[i] = namesize;
845                 
846                 if (sbar_fixscoreboardcolumnwidth_iconlen != 0)
847                         namesize -= sbar_fixscoreboardcolumnwidth_marginlen + sbar_fixscoreboardcolumnwidth_iconlen;
848                 str = textShortenToWidth(str, namesize, stringwidth_colors);
849                 sbar_fixscoreboardcolumnwidth_len = stringwidth(str, TRUE);
850         }
851         else
852                 sbar_fixscoreboardcolumnwidth_len = stringwidth(str, FALSE);
853         
854         f = sbar_fixscoreboardcolumnwidth_len + sbar_fixscoreboardcolumnwidth_marginlen + sbar_fixscoreboardcolumnwidth_iconlen;
855         if(sbar_size[i] < f)
856                 sbar_size[i] = f;
857
858         return str;
859 }
860
861 void Sbar_PrintScoreboardItem(vector pos, entity pl, float is_self, float pl_number)
862 {
863         vector tmp, rgb;
864         rgb = GetTeamRGB(pl.team);
865         string str;
866         float i, field;
867         float is_spec;
868         is_spec = (GetPlayerColor(pl.sv_entnum) == COLOR_SPECTATOR);
869         
870         if((rgb == '1 1 1') && (!is_spec)) {
871                 rgb_x = cvar("sbar_color_bg_r") + 0.5;
872                 rgb_y = cvar("sbar_color_bg_g") + 0.5;
873                 rgb_z = cvar("sbar_color_bg_b") + 0.5; }
874                 
875         // Layout:
876         tmp_x = sbwidth;
877         tmp_y = sbar_fontsize_y * 1.25;
878         tmp_z = 0;
879
880         // alternated rows highlighting
881         if(is_self)
882                 drawfill(pos - '1 1 0', tmp + '2 0 0', rgb, sbar_scoreboard_highlight_alpha_self, DRAWFLAG_NORMAL);
883         else if((sbar_scoreboard_highlight) && (!mod(pl_number,2)))
884                 drawfill(pos - '1 1 0', tmp + '2 0 0', rgb, sbar_scoreboard_highlight_alpha, DRAWFLAG_NORMAL);
885
886         tmp_y = 0;
887
888         for(i = 0; i < sbar_num_fields; ++i)
889         {
890                 field = sbar_field[i];
891                 if(field == SP_SEPARATOR)
892                         break;
893
894                 if(is_spec && field != SP_NAME && field != SP_PING) {
895                         pos_x += sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
896                         continue;
897                 }
898                 str = Sbar_GetField(pl, field);
899                 str = Sbar_FixScoreboardColumnWidth(i, str);
900
901                 pos_x += sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
902
903                 if(field == SP_NAME) {
904                         tmp_x = sbar_fontsize_x*(sbar_size[i] - sbar_fixscoreboardcolumnwidth_iconlen - sbar_fixscoreboardcolumnwidth_marginlen) + sbar_fontsize_x;
905                         if (is_self)
906                                 drawcolorcodedstring(pos - tmp, str, sbar_fontsize, sbar_scoreboard_alpha_name_self, DRAWFLAG_NORMAL);
907                         else
908                                 drawcolorcodedstring(pos - tmp, str, sbar_fontsize, sbar_scoreboard_alpha_name, DRAWFLAG_NORMAL);
909                 } else {
910                         tmp_x = sbar_fixscoreboardcolumnwidth_len*sbar_fontsize_x + sbar_fontsize_x;
911                         if (is_self)
912                                 drawstring(pos - tmp, str, sbar_fontsize, sbar_field_rgb, sbar_scoreboard_alpha_name_self, DRAWFLAG_NORMAL);
913                         else
914                                 drawstring(pos - tmp, str, sbar_fontsize, sbar_field_rgb, sbar_scoreboard_alpha_name, DRAWFLAG_NORMAL);
915                 }
916
917                 tmp_x = sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
918                 if(sbar_field_icon0 != "")
919                         if (is_self)
920                                 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);
921                         else
922                                 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);
923                 if(sbar_field_icon1 != "")
924                         if (is_self)
925                                 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);
926                         else
927                                 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);
928                 if(sbar_field_icon2 != "")
929                         if (is_self)
930                                 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);
931                         else
932                                 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);
933         }
934
935         if(sbar_field[i] == SP_SEPARATOR)
936         {
937                 pos_x = xmax;
938                 for(i = sbar_num_fields-1; i > 0; --i)
939                 {
940                         field = sbar_field[i];
941                         if(field == SP_SEPARATOR)
942                                 break;
943
944                         if(is_spec && field != SP_NAME && field != SP_PING) {
945                                 pos_x -= sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
946                                 continue;
947                         }
948
949                         str = Sbar_GetField(pl, field);
950                         str = Sbar_FixScoreboardColumnWidth(i, str);
951
952                         if(field == SP_NAME) {
953                                 tmp_x = sbar_fontsize_x*sbar_fixscoreboardcolumnwidth_len; // left or right aligned? let's put it right...
954                                 if(is_self)
955                                         drawcolorcodedstring(pos - tmp, str, sbar_fontsize, sbar_scoreboard_alpha_name_self, DRAWFLAG_NORMAL);
956                                 else
957                                         drawcolorcodedstring(pos - tmp, str, sbar_fontsize, sbar_scoreboard_alpha_name, DRAWFLAG_NORMAL);
958                         } else {
959                                 tmp_x = sbar_fontsize_x*sbar_fixscoreboardcolumnwidth_len;
960                                 if(is_self)
961                                         drawstring(pos - tmp, str, sbar_fontsize, sbar_field_rgb, sbar_scoreboard_alpha_name_self, DRAWFLAG_NORMAL);
962                                 else
963                                         drawstring(pos - tmp, str, sbar_fontsize, sbar_field_rgb, sbar_scoreboard_alpha_name, DRAWFLAG_NORMAL);
964                         }
965
966                         tmp_x = sbar_fontsize_x*sbar_size[i];
967                         if(sbar_field_icon0 != "")
968                                 if (is_self)
969                                         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);
970                                 else
971                                         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);
972                         if(sbar_field_icon1 != "")
973                                 if (is_self)
974                                         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);
975                                 else
976                                         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);
977                         if(sbar_field_icon2 != "")
978                                 if (is_self)
979                                         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);
980                                 else
981                                         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);
982                         pos_x -= sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
983                 }
984         }
985 }
986
987 /*
988  * Sbar_Scoreboard_MakeTable
989  *
990  * Makes a table for a team (for all playing players in DM) and fills it
991  */
992
993 vector Sbar_Scoreboard_MakeTable(vector pos, entity tm, vector rgb, vector bg_size)
994 {
995         float body_table_height, i;
996         vector tmp, column_dim;
997         entity pl;
998
999         body_table_height = 1.25 * sbar_fontsize_y * max(1, tm.team_size); // no player? show 1 empty line
1000
1001         pos -= '1 1 0';
1002
1003         tmp_x = sbwidth + 2;
1004         tmp_y = 1.25 * sbar_fontsize_y;
1005
1006         // rounded header
1007         drawpic(pos, "gfx/hud/sb_scoreboard_tableheader", tmp, (rgb * sbar_color_bg_team) + '0.5 0.5 0.5', sbar_scoreboard_alpha_bg, DRAWFLAG_NORMAL);
1008
1009         // table border
1010         tmp_y += sbar_border_thickness;
1011         tmp_y += body_table_height;
1012         drawborderlines(sbar_border_thickness, pos, tmp, '0 0 0', sbar_scoreboard_alpha_bg, DRAWFLAG_NORMAL); // more transparency for the scoreboard
1013
1014         // separator header/table
1015         pos_y += 1.25 * sbar_fontsize_y;
1016         tmp_y = sbar_border_thickness;
1017         drawfill(pos, tmp, '0 0 0', sbar_scoreboard_alpha_bg, DRAWFLAG_NORMAL);
1018
1019         pos_y += sbar_border_thickness;
1020
1021         // table background
1022         tmp_y = body_table_height;
1023         drawpic_tiled(pos, "gfx/hud/sb_scoreboard_bg", bg_size, tmp, rgb * sbar_color_bg_team, sbar_scoreboard_alpha_bg, DRAWFLAG_NORMAL);
1024
1025         // anyway, apply some color
1026         //drawfill(pos, tmp + '2 0 0', rgb, 0.1, DRAWFLAG_NORMAL);
1027
1028         // go back to the top to make alternated columns highlighting and to print the strings
1029         pos_y -= 1.25 * sbar_fontsize_y;
1030         pos_y -= sbar_border_thickness;
1031
1032         pos += '1 1 0';
1033
1034         if (sbar_scoreboard_highlight)
1035         {
1036                 column_dim_y = 1.25 * sbar_fontsize_y; // header
1037                 column_dim_y += sbar_border_thickness;
1038                 column_dim_y += body_table_height;
1039         }
1040
1041         // print the strings of the columns headers and draw the columns
1042         for(i = 0; i < sbar_num_fields; ++i)
1043         {
1044                 if(sbar_field[i] == SP_SEPARATOR)
1045                         break;
1046                 column_dim_x = sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
1047                 if (sbar_scoreboard_highlight)
1048                 {
1049                         if (mod(i,2))
1050                                 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);
1051                 }
1052                 drawstring(pos, sbar_title[i], sbar_fontsize, rgb * 1.5, sbar_scoreboard_alpha_fg, DRAWFLAG_NORMAL);
1053                 pos_x += column_dim_x;
1054         }
1055         if(sbar_field[i] == SP_SEPARATOR)
1056         {
1057                 pos_x = xmax;
1058                 tmp_y = 0;
1059                 for(i = sbar_num_fields-1; i > 0; --i)
1060                 {
1061                         if(sbar_field[i] == SP_SEPARATOR)
1062                                 break;
1063
1064                         pos_x -= sbar_size[i]*sbar_fontsize_x;
1065
1066                         if (sbar_scoreboard_highlight)
1067                         {
1068                                 if (!mod(i,2))
1069                                 {
1070                                         if (i == sbar_num_fields-1)
1071                                                 column_dim_x = sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x / 2 + 1;
1072                                         else
1073                                                 column_dim_x = sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
1074                                         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);
1075                                 }
1076                         }
1077
1078                         tmp_x = stringwidth(sbar_title[i], FALSE);
1079                         tmp_x = (sbar_size[i] - tmp_x) * sbar_fontsize_x;
1080                         drawstring(pos + tmp, sbar_title[i], sbar_fontsize, rgb * 1.5, sbar_scoreboard_alpha_fg, DRAWFLAG_NORMAL);
1081                         pos_x -= sbar_fontsize_x;
1082                 }
1083         }
1084         
1085         pos_x = xmin;
1086         pos_y += 1.25 * sbar_fontsize_y; // skip the header
1087         pos_y += sbar_border_thickness;
1088
1089         // fill the table and draw the rows
1090         i = 0;
1091         if (teamplay)
1092                 for(pl = players.sort_next; pl; pl = pl.sort_next)
1093                 {
1094                         if(pl.team != tm.team)
1095                                 continue;
1096                         Sbar_PrintScoreboardItem(pos, pl, (pl.sv_entnum == player_localentnum - 1), i);
1097                         pos_y += 1.25 * sbar_fontsize_y;
1098                         ++i;
1099                 }
1100         else
1101                 for(pl = players.sort_next; pl; pl = pl.sort_next)
1102                 {
1103                         if(pl.team == COLOR_SPECTATOR)
1104                                 continue;
1105                         Sbar_PrintScoreboardItem(pos, pl, (pl.sv_entnum == player_localentnum - 1), i);
1106                         pos_y += 1.25 * sbar_fontsize_y;
1107                         ++i;
1108                 }
1109         
1110         if (i == 0)
1111                 pos_y += 1.25 * sbar_fontsize_y; // move to the end of the table
1112         pos_y += 1.25 * sbar_fontsize_y; // move empty row (out of the table)
1113
1114         return pos;
1115 }
1116
1117 float Sbar_WouldDrawScoreboard() {
1118         if (sb_showscores)
1119                 return 1;
1120         else if (intermission == 1)
1121                 return 1;
1122         else if (intermission == 2)
1123                 return 1;
1124         else if (getstati(STAT_HEALTH) <= 0 && cvar("cl_deathscoreboard"))
1125                 return 1;
1126         else if(sb_showscores_force)
1127                 return 1;
1128         return 0;
1129 }
1130
1131 float g_minstagib;
1132 float average_accuracy;
1133 vector Sbar_DrawScoreboardAccuracyStats(vector pos, vector rgb, vector bg_size)
1134 {
1135         float i;
1136         float weapon_hit, weapon_damage, weapon_stats;
1137         float fontsize = 40 * 1/3;
1138         float weapon_cnt = 12;
1139         float rows;
1140         if(cvar("sbar_accuracy_doublerows"))
1141                 rows = 2;
1142         else
1143                 rows = 1;
1144         float height = 40;
1145
1146         if(warmup_stage)
1147         {
1148                 return pos;
1149         }
1150
1151         drawstring(pos, strcat("Accuracy stats (average ", ftos(average_accuracy), "%)"), sbar_fontsize, '1 1 1', sbar_scoreboard_alpha_fg, DRAWFLAG_NORMAL);
1152         pos_y += 18;
1153         vector tmp;
1154         tmp_x = sbwidth;
1155         tmp_y = height * rows;
1156
1157         drawpic_tiled(pos, "gfx/hud/sb_scoreboard_bg", bg_size, tmp, rgb * sbar_color_bg_team, sbar_scoreboard_alpha_bg, DRAWFLAG_NORMAL);
1158         drawborderlines(sbar_accuracy_border_thickness, pos, tmp, '0 0 0', sbar_scoreboard_alpha_bg * 0.75, DRAWFLAG_NORMAL);
1159
1160         // column highlighting
1161         for(i = 0; i < weapon_cnt/rows; ++i)
1162         {
1163                 if(!mod(i, 2))
1164                         drawfill(pos + '1 0 0' * (sbwidth/weapon_cnt) * rows * i, '0 1 0' * height * rows + '1 0 0' * (sbwidth/weapon_cnt) * rows, '0 0 0', sbar_scoreboard_alpha_bg * 0.2, DRAWFLAG_NORMAL);
1165         }
1166
1167         // row highlighting
1168         for(i = 0; i < rows; ++i)
1169         {
1170                 drawfill(pos + '0 1 0' * height * (2/3) + '0 1 0' * height * i, '1 0 0' * sbwidth + '0 1 0' * fontsize, '1 1 1', sbar_scoreboard_highlight_alpha, DRAWFLAG_NORMAL);     
1171         }
1172
1173         drawfont = sbar_bigfont;
1174         average_accuracy = 0;
1175         float weapons_with_stats;
1176         weapons_with_stats = 0;
1177         if(rows == 2)
1178                 pos_x += sbwidth/weapon_cnt / 2;
1179
1180         if(getstati(STAT_SWITCHWEAPON) == WEP_MINSTANEX)
1181                 g_minstagib = 1; // TODO: real detection for minstagib?
1182
1183         for(i = WEP_FIRST; i <= WEP_LAST; ++i)
1184         {
1185                 if ((i == WEP_NEX && g_minstagib) || i == WEP_PORTO || (i == WEP_MINSTANEX && !g_minstagib) || i == WEP_TUBA || i == WEP_FIREBALL) // skip port-o-launch, nex || minstanex, tuba and fireball
1186                         continue;
1187                 weapon_hit = weapon_hits[i];
1188                 weapon_damage = weapon_fired[i];
1189                 weapon_stats = bound(0, rint(100 * weapon_hit / weapon_damage), 100);
1190                 self = get_weaponinfo(i);
1191                 float weapon_alpha;
1192
1193                 if(weapon_damage)
1194                         weapon_alpha = sbar_scoreboard_alpha_fg;
1195                 else
1196                         weapon_alpha = 0.2 * sbar_scoreboard_alpha_fg;
1197
1198                 // weapon icon
1199                 drawpic(pos, strcat("gfx/hud/inv_weapon", ftos(i-1)), '1 0 0' * sbwidth * (1/weapon_cnt) + '0 1 0' * height * (2/3), '1 1 1', weapon_alpha, DRAWFLAG_NORMAL);
1200                 // the accuracy
1201                 if(weapon_damage) {
1202                         weapons_with_stats += 1;
1203                         average_accuracy += weapon_stats; // store sum of all accuracies in average_accuracy
1204
1205                         string s;
1206                         s = strcat(ftos(weapon_stats),"%");
1207
1208                         float padding;
1209                         padding = ((sbwidth/weapon_cnt) - stringwidth(s, FALSE) * fontsize) / 2; // center the accuracy value
1210
1211                         vector color;
1212                         color = Sbar_AccuracyColor(weapon_stats);
1213                         drawstring(pos + '1 0 0' * padding + '0 1 0' * height * (2/3), s, '1 1 0' * fontsize, color, sbar_scoreboard_alpha_fg, DRAWFLAG_NORMAL);
1214                 }
1215                 pos_x += sbwidth/weapon_cnt * rows;
1216                 if(rows == 2 && i == 6) {
1217                         pos_x -= sbwidth;
1218                         pos_y += height;
1219                 }
1220         }
1221         drawfont = sbar_font;
1222
1223         average_accuracy = floor(average_accuracy / weapons_with_stats);
1224
1225         if(rows == 2)
1226                 pos_x -= sbwidth/weapon_cnt / 2;
1227         pos_x -= sbwidth;
1228         pos_y += height;
1229         return pos;
1230 }
1231
1232 float lastpingstime;
1233 float scoreboard_bottom;
1234 float sbar_scoreboard_fade_alpha;
1235 float sbar_woulddrawscoreboard_prev;
1236 float sbar_woulddrawscoreboard_change; // "time" at which Sbar_WouldDrawScoreboard() changed
1237 void Sbar_DrawScoreboard()
1238 {
1239         float sbar_woulddrawscoreboard; 
1240         sbar_woulddrawscoreboard = Sbar_WouldDrawScoreboard();
1241         if(sbar_woulddrawscoreboard != sbar_woulddrawscoreboard_prev) {
1242                 sbar_woulddrawscoreboard_change = time;
1243                 sbar_woulddrawscoreboard_prev = sbar_woulddrawscoreboard;
1244         }
1245
1246         float scoreboard_fadeinspeed = cvar_or("sbar_scoreboard_fadeinspeed", 10);
1247         float scoreboard_fadeoutspeed = cvar_or("sbar_scoreboard_fadeoutspeed", 5);
1248         if(sbar_woulddrawscoreboard) {
1249                 if (scoreboard_fadeinspeed)
1250                         sbar_scoreboard_fade_alpha = bound (0, (time - sbar_woulddrawscoreboard_change) * scoreboard_fadeinspeed, 1);
1251                 else
1252                         sbar_scoreboard_fade_alpha = 1;
1253         }
1254         else
1255                 if (scoreboard_fadeoutspeed)
1256                         sbar_scoreboard_fade_alpha = bound (0, (1/scoreboard_fadeoutspeed - (time - sbar_woulddrawscoreboard_change)) * scoreboard_fadeoutspeed, 1);
1257                 else
1258                         sbar_scoreboard_fade_alpha = 0;
1259
1260         if not(sbar_scoreboard_fade_alpha)
1261                 return;
1262                 
1263         sbar_scoreboard_alpha_bg = cvar("sbar_scoreboard_alpha_bg") * sbar_scoreboard_fade_alpha;
1264         sbar_scoreboard_alpha_fg = cvar_or("sbar_scoreboard_alpha_fg", 1.0) * sbar_scoreboard_fade_alpha;
1265         sbar_scoreboard_highlight = cvar("sbar_scoreboard_highlight");
1266         sbar_scoreboard_highlight_alpha = cvar_or("sbar_scoreboard_highlight_alpha", 0.10) * sbar_scoreboard_alpha_fg;
1267         sbar_scoreboard_highlight_alpha_self = cvar_or("sbar_scoreboard_highlight_alpha_self", 0.25) * sbar_scoreboard_alpha_fg;
1268         sbar_scoreboard_alpha_name = cvar_or("sbar_scoreboard_alpha_name", 0.9) * sbar_scoreboard_alpha_fg;
1269         sbar_scoreboard_alpha_name_self = cvar_or("sbar_scoreboard_alpha_name_self", 1) * sbar_scoreboard_alpha_fg;
1270         
1271         vector rgb, pos, tmp;
1272         entity pl, tm;
1273
1274         if(time > lastpingstime + bound(1, cvar_or("sbar_pingrefreshinterval", 10), 60)) {
1275                 localcmd("pings\n");
1276                 lastpingstime = time;
1277         }
1278
1279         sbwidth = Sbar_GetWidth(6.5 * sbar_fontsize_y);
1280
1281         xmin = 0.5 * (vid_conwidth - sbwidth);
1282         ymin = SCOREBOARD_OFFSET;
1283
1284         xmax = vid_conwidth - xmin;
1285         ymax = vid_conheight - 0.2*vid_conheight;
1286
1287         // Initializes position
1288         pos_x = xmin;
1289         pos_y = ymin;
1290         pos_z = 0;
1291
1292         // Heading
1293         drawfont = sbar_bigfont;
1294         drawstringcenter('0 1 0' * ymin, "Scoreboard", '24 24 0', '1 1 1', sbar_scoreboard_alpha_fg, DRAWFLAG_NORMAL);
1295
1296         pos_y += 24 + 4;
1297         pos_y += sbar_fontsize_y;
1298
1299         drawfont = sbar_font;
1300
1301         // Draw the scoreboard
1302         vector bg_size;
1303         bg_size = drawgetimagesize("gfx/hud/sb_scoreboard_bg");
1304
1305         if(teamplay)
1306         {
1307                 for(tm = teams.sort_next; tm; tm = tm.sort_next)
1308                 {
1309                         if(tm.team == COLOR_SPECTATOR)
1310                                 continue;
1311
1312                         rgb = GetTeamRGB(tm.team);
1313                         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);
1314                                 
1315                         if(ts_primary != ts_secondary)
1316                                 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);
1317
1318                         pos = Sbar_Scoreboard_MakeTable(pos, tm, rgb, bg_size);
1319                 }
1320         }
1321         else
1322         {
1323                 rgb_x = cvar("sbar_color_bg_r");
1324                 rgb_y = cvar("sbar_color_bg_g");
1325                 rgb_z = cvar("sbar_color_bg_b");
1326
1327                 for(tm = teams.sort_next; tm; tm = tm.sort_next)
1328                 {
1329                         if(tm.team == COLOR_SPECTATOR)
1330                                 continue;
1331
1332                         pos = Sbar_Scoreboard_MakeTable(pos, tm, rgb, bg_size);
1333                 }
1334         }
1335
1336         if(gametype == GAME_CTS || gametype == GAME_RACE) {
1337                 if(race_speedaward) {
1338                         drawcolorcodedstring(pos, strcat("Speed award: ", ftos(race_speedaward), " (", race_speedaward_holder, ")"), sbar_fontsize, sbar_scoreboard_alpha_fg, DRAWFLAG_NORMAL);
1339                         pos_y += 1.25 * sbar_fontsize_y;
1340                 }
1341                 if(race_speedaward_alltimebest) {
1342                         drawcolorcodedstring(pos, strcat("All-time fastest: ", ftos(race_speedaward_alltimebest), " (", race_speedaward_alltimebest_holder, ")"), sbar_fontsize, sbar_scoreboard_alpha_fg, DRAWFLAG_NORMAL);
1343                         pos_y += 1.25 * sbar_fontsize_y;
1344                 }
1345         }
1346         else if(cvar("sbar_accuracy")) {
1347                 if(teamplay)
1348                         pos = Sbar_DrawScoreboardAccuracyStats(pos, GetTeamRGB(myteam), bg_size);
1349                 else
1350                         pos = Sbar_DrawScoreboardAccuracyStats(pos, rgb, bg_size);
1351         }
1352
1353         tmp = pos + '0 1.5 0' * sbar_fontsize_y;
1354         pos_y += 3 * sbar_fontsize_y;
1355
1356         // List spectators
1357         float specs;
1358         specs = 0;
1359         for(pl = players.sort_next; pl; pl = pl.sort_next)
1360         {
1361                 if(pl.team != COLOR_SPECTATOR)
1362                         continue;
1363                 Sbar_PrintScoreboardItem(pos, pl, (pl.sv_entnum == player_localentnum - 1), specs);
1364                 pos_y += 1.25 * sbar_fontsize_y;
1365                 ++specs;
1366         }
1367
1368         if(specs)
1369                 drawstring(tmp, "Spectators", sbar_fontsize, '1 1 1', sbar_scoreboard_alpha_fg, DRAWFLAG_NORMAL);
1370
1371         // Print info string
1372         string str;
1373         float tl, fl, ll;
1374         str = strcat("playing on ^2", shortmapname, "^7");
1375         tl = getstatf(STAT_TIMELIMIT);
1376         fl = getstatf(STAT_FRAGLIMIT);
1377         ll = getstatf(STAT_LEADLIMIT);
1378         if(gametype == GAME_LMS)
1379         {
1380                 if(tl > 0)
1381                         str = strcat(str, " for up to ^1", ftos(tl), " minutes^7");
1382         }
1383         else
1384         {
1385                 if(tl > 0)
1386                         str = strcat(str, " for ^1", ftos(tl), " minutes^7");
1387                 if(fl > 0)
1388                 {
1389                         if(tl > 0)
1390                                 str = strcat(str, " or");
1391                         if(teamplay)
1392                         {
1393                                 str = strcat(str, " until ^3", ScoreString(teamscores_flags[ts_primary], fl));
1394                                 if(teamscores_label[ts_primary] == "score")
1395                                         str = strcat(str, " points^7");
1396                                 else if(teamscores_label[ts_primary] == "fastest")
1397                                         str = strcat(str, " is beaten^7");
1398                                 else
1399                                         str = strcat(str, " ", teamscores_label[ts_primary]);
1400                         }
1401                         else
1402                         {
1403                                 str = strcat(str, " until ^3", ScoreString(scores_flags[ps_primary], fl));
1404                                 if(scores_label[ps_primary] == "score")
1405                                         str = strcat(str, " points^7");
1406                                 else if(scores_label[ps_primary] == "fastest")
1407                                         str = strcat(str, " is beaten^7");
1408                                 else
1409                                         str = strcat(str, " ", scores_label[ps_primary]);
1410                         }
1411                 }
1412                 if(ll > 0)
1413                 {
1414                         if(tl > 0 || fl > 0)
1415                                 str = strcat(str, " or");
1416                         if(teamplay)
1417                         {
1418                                 str = strcat(str, " until a lead of ^3", ScoreString(teamscores_flags[ts_primary], ll));
1419                                 if(teamscores_label[ts_primary] == "score")
1420                                         str = strcat(str, " points^7");
1421                                 else if(teamscores_label[ts_primary] == "fastest")
1422                                         str = strcat(str, " is beaten^7");
1423                                 else
1424                                         str = strcat(str, " ", teamscores_label[ts_primary]);
1425                         }
1426                         else
1427                         {
1428                                 str = strcat(str, " until a lead of ^3", ScoreString(scores_flags[ps_primary], ll));
1429                                 if(scores_label[ps_primary] == "score")
1430                                         str = strcat(str, " points^7");
1431                                 else if(scores_label[ps_primary] == "fastest")
1432                                         str = strcat(str, " is beaten^7");
1433                                 else
1434                                         str = strcat(str, " ", scores_label[ps_primary]);
1435                         }
1436                 }
1437         }
1438
1439
1440         pos_y += 1.2 * sbar_fontsize_y;
1441         drawcolorcodedstring(pos + '0.5 0 0' * (sbwidth - sbar_fontsize_x * stringwidth(str, TRUE)), str, sbar_fontsize, sbar_scoreboard_alpha_fg, DRAWFLAG_NORMAL);
1442
1443         scoreboard_bottom = pos_y + 2 * sbar_fontsize_y;
1444 }
1445
1446 string MakeRaceString(float cp, float mytime, float histime, float lapdelta, string hisname)
1447 {
1448         string col;
1449         string timestr;
1450         string cpname;
1451         string lapstr;
1452         lapstr = "";
1453
1454         if(histime == 0) // goal hit
1455         {
1456                 if(mytime > 0)
1457                 {
1458                         timestr = strcat("+", ftos_decimals(+mytime, TIME_DECIMALS));
1459                         col = "^1";
1460                 }
1461                 else if(mytime == 0)
1462                 {
1463                         timestr = "+0.0";
1464                         col = "^3";
1465                 }
1466                 else
1467                 {
1468                         timestr = strcat("-", ftos_decimals(-mytime, TIME_DECIMALS));
1469                         col = "^2";
1470                 }
1471
1472                 if(lapdelta > 0)
1473                 {
1474                         lapstr = strcat(" (-", ftos(lapdelta), "L)");
1475                         col = "^2";
1476                 }
1477                 else if(lapdelta < 0)
1478                 {
1479                         lapstr = strcat(" (+", ftos(-lapdelta), "L)");
1480                         col = "^1";
1481                 }
1482         }
1483         else if(histime > 0) // anticipation
1484         {
1485                 if(mytime >= histime)
1486                         timestr = strcat("+", ftos_decimals(mytime - histime, TIME_DECIMALS));
1487                 else
1488                         timestr = TIME_ENCODED_TOSTRING(TIME_ENCODE(histime));
1489                 col = "^3";
1490         }
1491         else
1492                 col = "^7";
1493
1494         if(cp == 254)
1495                 cpname = "Start line";
1496         else if(cp == 255)
1497                 cpname = "Finish line";
1498         else if(cp)
1499                 cpname = strcat("Intermediate ", ftos(cp));
1500         else
1501                 cpname = "Finish line";
1502
1503         if(histime < 0)
1504                 return strcat(col, cpname);
1505         else if(hisname == "")
1506                 return strcat(col, cpname, " (", timestr, ")");
1507         else
1508                 return strcat(col, cpname, " (", timestr, " ", strcat(hisname, col, lapstr), ")");
1509 }
1510
1511 void Sbar_Score()
1512 {
1513         float score, distribution, leader;
1514         vector score_pos, secondary_score_pos, distribution_color;
1515         entity tm, pl, me;
1516         me = (spectatee_status > 0) ? playerslots[spectatee_status - 1] : playerslots[player_localentnum - 1];
1517
1518         vector bottomright;
1519         bottomright_x = vid_conwidth;
1520         bottomright_y = vid_conheight;
1521         bottomright_z = 0;
1522
1523         score_pos = bottomright - '196 42 0';
1524         secondary_score_pos = score_pos + '132 -6 0';
1525
1526         if((scores_flags[ps_primary] & SFL_TIME) && !teamplay) { // race/cts record display on HUD
1527                 pl = players.sort_next;
1528                 if(pl == me)
1529                         pl = pl.sort_next;
1530                 if(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)
1531                         if(pl.scores[ps_primary] == 0)
1532                                 pl = world;
1533
1534                 score = me.(scores[ps_primary]);
1535
1536                 float racemin, racesec, racemsec;
1537                 float distsec, distmsec, minusplus;
1538                 
1539                 racemin = floor(score/(60 * TIME_FACTOR));
1540                 racesec = floor((score - racemin*(60 * TIME_FACTOR))/TIME_FACTOR);
1541                 racemsec = score - racemin*60*TIME_FACTOR - racesec*TIME_FACTOR;
1542
1543                 if (pl && ((!(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)) || score)) {
1544                         // distribution display
1545                         distribution = me.(scores[ps_primary]) - pl.(scores[ps_primary]);
1546
1547                         if (distribution < TIME_FACTOR && distribution > -TIME_FACTOR)
1548                                 distmsec = fabs(distribution);
1549                         else {
1550                                 distsec = floor(fabs(distribution)/TIME_FACTOR);
1551                                 distmsec = fabs(distribution) - distsec*TIME_FACTOR;
1552                                 if (distribution < 0)
1553                                         distsec = -distsec;
1554                         }
1555
1556                         if (distribution <= 0) {
1557                                 distribution_color = '0 1 0';
1558                                 minusplus = 1; // minusplus 1: always prefix with minus sign
1559                         }
1560                         else {
1561                                 distribution_color = '1 0 0';
1562                                 minusplus = 2; // minusplus 1: always prefix with plus sign
1563                         }
1564                         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);
1565                         Sbar_DrawXNum(bottomright - '68 48 0' - '16 0 0' * TIME_DECIMALS, distsec, 4, minusplus, 16, distribution_color, 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
1566                         drawpic(bottomright - '10 48 0' - '16 0 0' * TIME_DECIMALS, "gfx/hud/num_dot", '16 16 0', distribution_color, sbar_alpha_fg, DRAWFLAG_ADDITIVE);
1567                 }
1568                 // race record display
1569                 if (distribution <= 0 || distribution == score) // draw the highlight background behind the timer if we have the lead
1570                         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);
1571
1572                 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);
1573                 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);
1574                 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);
1575
1576                 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);
1577                 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);
1578
1579         } else if (!teamplay) { // non-teamgames, except race/cts
1580                 // me vector := [team/connected frags id]
1581                 pl = players.sort_next;
1582                 if(pl == me)
1583                         pl = pl.sort_next;
1584
1585                 if(pl)
1586                         distribution = me.(scores[ps_primary]) - pl.(scores[ps_primary]);
1587                 else
1588                         distribution = 0;
1589
1590                 score = me.(scores[ps_primary]);
1591                 
1592                 if(distribution >= 5) {
1593                         distribution_color = '0 1 0';
1594                         leader = 1;
1595                 } else if(distribution >= 0) {
1596                         distribution_color = '1 1 1';
1597                         leader = 1;
1598                 } else if(distribution >= -5)
1599                         distribution_color = '1 1 0';
1600                 else
1601                         distribution_color = '1 0 0';
1602                 
1603                 Sbar_DrawXNum(secondary_score_pos, distribution, 4, 3, 16, distribution_color, 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
1604                 Sbar_DrawXNum(score_pos, score, 4, 0, 34, distribution_color, leader, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
1605         } else { // teamgames
1606                 float max_fragcount;
1607                 max_fragcount = -999;
1608
1609                 for(tm = teams.sort_next; tm; tm = tm.sort_next) {
1610                         if(tm.team == COLOR_SPECTATOR || !tm.team_size) // no players? don't display
1611                                 continue;
1612                         score = tm.(teamscores[ts_primary]);
1613                         leader = 0;
1614
1615                         if (score > max_fragcount)
1616                                 max_fragcount = score;
1617         
1618                         if(tm.team == myteam) {
1619                                 if (max_fragcount == score)
1620                                         leader = 1;
1621                                 Sbar_DrawXNum(score_pos, score, 4, 0, 34, GetTeamRGB(tm.team) * 0.8, leader, 1, sbar_alpha_fg, DRAWFLAG_NORMAL);
1622                         } else {
1623                                 if (max_fragcount == score)
1624                                         leader = 1;
1625                                 Sbar_DrawXNum(secondary_score_pos, score, 4, 0, 16, GetTeamRGB(tm.team) * 0.8, leader, 1, sbar_alpha_fg, DRAWFLAG_NORMAL);
1626                                 secondary_score_pos = secondary_score_pos + '0 16 0';
1627                         }
1628                 }
1629         }
1630
1631         if(gametype == GAME_RACE || gametype == GAME_CTS)
1632         {
1633                 drawfont = sbar_bigfont;
1634                 float a, t;
1635                 vector m;
1636                 string s, forcetime;
1637
1638                 m = '0.5 0 0' * vid_conwidth + '0 0.25 0' * vid_conheight;
1639
1640                 if(race_checkpointtime)
1641                 {
1642                         a = bound(0, 2 - (time - race_checkpointtime), 1);
1643                         s = "";
1644                         forcetime = "";
1645                         if(a > 0) // just hit a checkpoint?
1646                         {
1647                                 if(race_checkpoint != 254)
1648                                 {
1649                                         if(race_time && race_previousbesttime)
1650                                                 s = MakeRaceString(race_checkpoint, TIME_DECODE(race_time) - TIME_DECODE(race_previousbesttime), 0, 0, race_previousbestname);
1651                                         else
1652                                                 s = MakeRaceString(race_checkpoint, 0, -1, 0, race_previousbestname);
1653                                         if(race_time)
1654                                                 forcetime = TIME_ENCODED_TOSTRING(race_time);
1655                                 }
1656                         }
1657                         else
1658                         {
1659                                 if(race_laptime && race_nextbesttime && race_nextcheckpoint != 254)
1660                                 {
1661                                         a = bound(0, 2 - ((race_laptime + TIME_DECODE(race_nextbesttime)) - (time + TIME_DECODE(race_penaltyaccumulator))), 1);
1662                                         if(a > 0) // next one?
1663                                         {
1664                                                 s = MakeRaceString(race_nextcheckpoint, (time + TIME_DECODE(race_penaltyaccumulator)) - race_laptime, TIME_DECODE(race_nextbesttime), 0, race_nextbestname);
1665                                         }
1666                                 }
1667                         }
1668
1669                         if(s != "" && a > 0)
1670                         {
1671                                 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
1672                                 drawcolorcodedstring(m - '0 16 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', sbar_alpha_fg * a, DRAWFLAG_NORMAL);
1673                         }
1674
1675                         if(race_penaltytime)
1676                         {
1677                                 a = bound(0, 2 - (time - race_penaltyeventtime), 1);
1678                                 if(a > 0)
1679                                 {
1680                                         s = strcat("^1PENALTY: ", ftos_decimals(race_penaltytime * 0.1, 1), " (", race_penaltyreason, ")");
1681                                         dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
1682                                         drawcolorcodedstring(m - '0 32 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', sbar_alpha_fg * a, DRAWFLAG_NORMAL);
1683                                 }
1684                         }
1685
1686                         if(forcetime != "")
1687                         {
1688                                 a = bound(0, (time - race_checkpointtime) / 0.5, 1);
1689                                 drawstring_expanding(m - '16 0 0' * stringwidth(forcetime, FALSE), forcetime, '32 32 0', '1 1 1', sbar_alpha_fg, 0, a);
1690                         }
1691                         else
1692                                 a = 1;
1693
1694                         if(race_laptime && race_checkpoint != 255)
1695                         {
1696                                 s = TIME_ENCODED_TOSTRING(TIME_ENCODE(time + TIME_DECODE(race_penaltyaccumulator) - race_laptime));
1697                                 drawstring(m - '16 0 0' * stringwidth(s, FALSE), s, '32 32 0', '1 1 1', sbar_alpha_fg * a, DRAWFLAG_NORMAL);
1698                         }
1699                 }
1700                 else
1701                 {
1702                         if(race_mycheckpointtime)
1703                         {
1704                                 a = bound(0, 2 - (time - race_mycheckpointtime), 1);
1705                                 s = MakeRaceString(race_mycheckpoint, TIME_DECODE(race_mycheckpointdelta), -!race_mycheckpointenemy, race_mycheckpointlapsdelta, race_mycheckpointenemy);
1706                                 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
1707                                 drawcolorcodedstring(m - '0 16 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', sbar_alpha_fg * a, DRAWFLAG_NORMAL);
1708                         }
1709                         if(race_othercheckpointtime && race_othercheckpointenemy != "")
1710                         {
1711                                 a = bound(0, 2 - (time - race_othercheckpointtime), 1);
1712                                 s = MakeRaceString(race_othercheckpoint, -TIME_DECODE(race_othercheckpointdelta), -!race_othercheckpointenemy, race_othercheckpointlapsdelta, race_othercheckpointenemy);
1713                                 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
1714                                 drawcolorcodedstring(m - '0 0 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', sbar_alpha_fg * a, DRAWFLAG_NORMAL);
1715                         }
1716
1717                         if(race_penaltytime && !race_penaltyaccumulator)
1718                         {
1719                                 t = race_penaltytime * 0.1 + race_penaltyeventtime;
1720                                 a = bound(0, (1 + t - time), 1);
1721                                 if(a > 0)
1722                                 {
1723                                         if(time < t)
1724                                                 s = strcat("^1PENALTY: ", ftos_decimals(t - time, 1), " (", race_penaltyreason, ")");
1725                                         else
1726                                                 s = strcat("^2PENALTY: 0.0 (", race_penaltyreason, ")");
1727                                         dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
1728                                         drawcolorcodedstring(m - '0 32 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', sbar_alpha_fg * a, DRAWFLAG_NORMAL);
1729                                 }
1730                         }
1731                 }
1732
1733                 drawfont = sbar_font;
1734         }
1735 }
1736
1737 void Sbar_Timer()
1738 {
1739         float timelimit, elapsedTime, minutes, seconds, timeleft, minutesLeft, secondsLeft;
1740         vector bgpos, timer_color;
1741         bgpos = '0 0 0';
1742         
1743         vector topright;
1744         topright = '0 0 0';
1745         topright_x = vid_conwidth;
1746         
1747         timelimit = getstatf(STAT_TIMELIMIT);
1748         
1749         timeleft = max(0, timelimit * 60 + getstatf(STAT_GAMESTARTTIME) - time);
1750         timeleft = ceil(timeleft);
1751         minutesLeft = floor(timeleft / 60);
1752         secondsLeft = timeleft - minutesLeft*60;
1753
1754         if(minutesLeft >= 5 || warmup_stage || timelimit == 0) //don't use red or yellow in warmup or when there is no timelimit
1755                 timer_color = '1 1 1'; //white
1756         else if(minutesLeft >= 1)
1757                 timer_color = '1 1 0'; //yellow
1758         else
1759                 timer_color = '1 0 0'; //red
1760
1761         if (cvar("sbar_increment_maptime") || timelimit == 0 || warmup_stage) {
1762                 if (time < getstatf(STAT_GAMESTARTTIME)) {
1763                         //while restart is still active, show 00:00
1764                         minutes = seconds = 0;
1765                 } else {
1766                         elapsedTime = floor(time - getstatf(STAT_GAMESTARTTIME)); //127
1767                         minutes = floor(elapsedTime / 60);
1768                         seconds = elapsedTime - minutes*60;
1769                 }
1770                 if (minutes < 10)
1771                         bgpos_x = topright_x - 54 - 17 - 12;
1772                 else if (minutes < 100) // nudge the timer background left if more digits are drawn
1773                         bgpos_x = topright_x - 72 - 17 - 12;
1774                 else
1775                         bgpos_x = topright_x - 90 - 17 - 12;
1776                 bgpos_y = 0;
1777                 bgpos_z = 0;
1778         } else {
1779                 minutes = minutesLeft;
1780                 seconds = secondsLeft;
1781                 if (minutes == 0)
1782                 bgpos_x = topright_x - 36 - 7 - 12;
1783                 else if (minutes < 10) // nudge the timer background left if more digits are drawn
1784                         bgpos_x = topright_x - 54 - 17 - 12;
1785                 else if (minutes < 100)
1786                         bgpos_x = topright_x - 72 - 17 - 12;
1787                 else
1788                         bgpos_x = topright_x - 90 - 17 - 12;
1789                 bgpos_y = 0;
1790                 bgpos_z = 0;
1791         }
1792
1793         if (cvar("viewsize") <= 100) { // draw timer background when viewsize <= 100
1794                 if (teamplay)
1795                         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
1796                 else {
1797                         color_x = cvar("sbar_color_bg_r");
1798                         color_y = cvar("sbar_color_bg_g");
1799                         color_z = cvar("sbar_color_bg_b");
1800
1801                         drawpic(bgpos, "gfx/hud/sb_timerbg", '120 30 0', color, sbar_alpha_bg, DRAWFLAG_NORMAL);
1802                 }
1803         }
1804
1805         if(minutesLeft >= 1 || cvar("sbar_increment_maptime") || timelimit == 0 || warmup_stage) {
1806                 Sbar_DrawXNum(topright - '103 0 0' + '0 2 0', minutes, 3, 0, 18, timer_color, 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
1807                 drawpic(topright - '53 0 0' + '0 1 0', "gfx/hud/num_colon", '18 18 0', timer_color, sbar_alpha_fg, DRAWFLAG_NORMAL);
1808         }
1809         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);
1810 }
1811
1812 void CSQC_Strength_Timer() {
1813         vector pos;
1814         vector bottom;
1815
1816         bottom_x = vid_conwidth/2;
1817         bottom_y = vid_conheight;
1818         bottom_z = 0;
1819
1820         float stat_items, dt;
1821         stat_items = getstati(STAT_ITEMS);
1822         /*
1823         if not(stat_items & IT_STRENGTH)
1824                 if not(stat_items & IT_INVINCIBLE)
1825                         return;
1826         */
1827
1828         if (getstati(STAT_HEALTH) <= 0)
1829                 return;
1830
1831         vector picsize;
1832         float strength_time, invincibility_time, countdown_fontsize;
1833
1834         picsize = '22 22 0';
1835         countdown_fontsize = 18;
1836
1837         if (vid_conwidth >= 800)
1838                 pos = bottom + '192 -46 0';
1839         else
1840                 pos = bottom + '192 -94 0';
1841
1842         //strength
1843         strength_time = getstatf(STAT_STRENGTH_FINISHED);
1844         invincibility_time = getstatf(STAT_INVINCIBLE_FINISHED);
1845
1846         if (strength_time) {
1847                 dt = strength_time - time;
1848                 if(dt > 0)
1849                 {
1850                         if(dt < 5)
1851                         {
1852                                 drawpic_expanding_two(pos, "gfx/hud/sb_str", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE,
1853                                         bound(0, (ceil(dt) - dt) / 0.5, 1));
1854                         }
1855                         else
1856                         {
1857                                 drawpic(pos, "gfx/hud/sb_str", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE);
1858                         }
1859                         Sbar_DrawXNum(pos - '40 -2 0', ceil(dt), 2, 0, countdown_fontsize, '1 1 1', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
1860                 }
1861                 else if(dt > -1)
1862                 {
1863                         drawpic_expanding(pos, "gfx/hud/sb_str", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE,
1864                                 bound(0, -dt / 0.5, 1));
1865                 }
1866         }
1867
1868         //invincibility
1869         if (invincibility_time) {
1870                 dt = invincibility_time - time;
1871                 if(dt > 0)
1872                 {
1873                         if(dt < 5)
1874                         {
1875                                 drawpic_expanding_two(pos - '0 -22 0', "gfx/hud/sb_invinc", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE,
1876                                         bound(0, (ceil(dt) - dt) / 0.5, 1));
1877                         }
1878                         else
1879                         {
1880                                 drawpic(pos - '0 -22 0', "gfx/hud/sb_invinc", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE);
1881                         }
1882                         Sbar_DrawXNum(pos - '40 -24 0', ceil(dt), 2, 0, countdown_fontsize, '1 1 1', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
1883                 }
1884                 else if(dt > -1)
1885                 {
1886                         drawpic_expanding(pos - '0 -22 0', "gfx/hud/sb_invinc", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE,
1887                                 bound(0, -dt / 0.5, 1));
1888                 }
1889         }
1890 }
1891
1892 #define CENTERPRINT_MAX_LINES 30
1893 string centerprint_messages[CENTERPRINT_MAX_LINES];
1894 float centerprint_width[CENTERPRINT_MAX_LINES];
1895 vector centerprint_start;
1896 float centerprint_expire;
1897 float centerprint_num;
1898 float centerprint_offset_hint;
1899 vector centerprint_fontsize;
1900
1901 void centerprint(string strMessage)
1902 {
1903         float i, j, n, hcount;
1904         string s;
1905
1906         centerprint_fontsize = Sbar_GetFontsize("scr_centersize");
1907
1908         centerprint_expire = min(centerprint_expire, time); // if any of the returns happens, this message will fade out
1909
1910         if(cvar("scr_centertime") <= 0)
1911                 return;
1912
1913         if(strMessage == "")
1914                 return;
1915
1916         // strip trailing newlines
1917         j = strlen(strMessage) - 1;
1918         while(substring(strMessage, j, 1) == "\n" && j >= 0)
1919                 j = j - 1;
1920         strMessage = substring(strMessage, 0, j + 1);
1921
1922         if(strMessage == "")
1923                 return;
1924
1925         // strip leading newlines and remember them, they are a hint that the message should be lower on the screen
1926         j = 0;
1927         while(substring(strMessage, j, 1) == "\n" && j < strlen(strMessage))
1928                 j = j + 1;
1929         strMessage = substring(strMessage, j, strlen(strMessage) - j);
1930         centerprint_offset_hint = j;
1931
1932         if(strMessage == "")
1933                 return;
1934
1935         // if we get here, we have a message. Initialize its height.
1936         centerprint_num = 0;
1937
1938         n = tokenizebyseparator(strMessage, "\n");
1939         i = hcount = 0;
1940         for(j = 0; j < n; ++j)
1941         {
1942                 getWrappedLine_remaining = argv(j);
1943                 while(getWrappedLine_remaining)
1944                 {
1945                         s = getWrappedLine(vid_conwidth * 0.75 / centerprint_fontsize_x, stringwidth_colors);
1946                         if(centerprint_messages[i])
1947                                 strunzone(centerprint_messages[i]);
1948                         centerprint_messages[i] = strzone(s);
1949                         centerprint_width[i] = stringwidth(s, TRUE);
1950                         ++i;
1951
1952                         // half height for empty lines looks better
1953                         if(s == "")
1954                                 hcount += 0.5;
1955                         else
1956                                 hcount += 1;
1957
1958                         if(i >= CENTERPRINT_MAX_LINES)
1959                                 break;
1960                 }
1961         }
1962
1963         float h, havail;
1964         h = centerprint_fontsize_y*hcount;
1965
1966         havail = vid_conheight;
1967         if(cvar("con_chatpos") < 0)
1968                 havail -= (-cvar("con_chatpos") + cvar("con_chat")) * cvar("con_chatsize"); // avoid overlapping chat
1969         if(havail > vid_conheight - 70)
1970                 havail = vid_conheight - 70; // avoid overlapping HUD
1971
1972         centerprint_start_x = 0;
1973
1974 #if 0
1975         float forbiddenmin, forbiddenmax, allowedmin, allowedmax, preferred;
1976
1977         // here, the centerprint would cover the crosshair. REALLY BAD.
1978         forbiddenmin = vid_conheight * 0.5 - h - 16;
1979         forbiddenmax = vid_conheight * 0.5 + 16;
1980
1981         allowedmin = scoreboard_bottom;
1982         allowedmax = havail - h;
1983         preferred = (havail - h)/2;
1984
1985
1986         // possible orderings (total: 4! / 4 = 6)
1987         //  allowedmin allowedmax forbiddenmin forbiddenmax
1988         //  forbiddenmin forbiddenmax allowedmin allowedmax
1989         if(allowedmax < forbiddenmin || allowedmin > forbiddenmax)
1990         {
1991                 // forbidden doesn't matter in this case
1992                 centerprint_start_y = bound(allowedmin, preferred, allowedmax);
1993         }
1994         //  allowedmin forbiddenmin allowedmax forbiddenmax
1995         else if(allowedmin < forbiddenmin && allowedmax < forbiddenmax)
1996         {
1997                 centerprint_start_y = bound(allowedmin, preferred, forbiddenmin);
1998         }
1999         //  allowedmin forbiddenmin forbiddenmax allowedmax
2000         else if(allowedmin < forbiddenmin)
2001         {
2002                 // make sure the forbidden zone is not covered
2003                 if(preferred > (forbiddenmin + forbiddenmax) * 0.5)
2004                         centerprint_start_y = bound(allowedmin, preferred, forbiddenmin);
2005                 else
2006                         centerprint_start_y = bound(forbiddenmax, preferred, allowedmin);
2007         }
2008         //  forbiddenmin allowedmin allowedmax forbiddenmax
2009         else if(allowedmax < forbiddenmax)
2010         {
2011                 // it's better to leave the allowed zone (overlap with scoreboard) than
2012                 // to cover the forbidden zone (crosshair)
2013                 if(preferred > (forbiddenmin + forbiddenmax) * 0.5)
2014                         centerprint_start_y = forbiddenmax;
2015                 else
2016                         centerprint_start_y = forbiddenmin;
2017         }
2018         //  forbiddenmin allowedmin forbiddenmax allowedmax
2019         else
2020         {
2021                 centerprint_start_y = bound(forbiddenmax, preferred, allowedmax);
2022         }
2023 #else
2024         centerprint_start_y =
2025                 min(
2026                         max(
2027                                 max(scoreboard_bottom, vid_conheight * 0.5 + 16),
2028                                 (havail - h)/2
2029                         ),
2030                         havail - h
2031                 );
2032 #endif
2033
2034         centerprint_num = i;
2035         centerprint_expire = time + cvar("scr_centertime");
2036 }
2037
2038 void Sbar_DrawCenterPrint (void)
2039 {
2040         float i;
2041         vector pos;
2042         string ts;
2043         float a;
2044
2045         //if(time > centerprint_expire)
2046         //      return;
2047
2048         //a = bound(0, 1 - 2 * (time - centerprint_expire), 1);
2049         a = bound(0, 1 - 4 * (time - centerprint_expire), 1);
2050         //sz = 1.2 / (a + 0.2);
2051
2052         if(a <= 0)
2053                 return;
2054
2055         pos = centerprint_start;
2056         for (i=0; i<centerprint_num; i = i + 1)
2057         {
2058                 pos_x = (vid_conwidth - centerprint_fontsize_x * centerprint_width[i]) * 0.5;
2059                 ts = centerprint_messages[i];
2060                 if (ts != "")
2061                 {
2062                         dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
2063                         drawcolorcodedstring(pos, ts, centerprint_fontsize, a, DRAWFLAG_NORMAL);
2064                         //  - '0 0.5 0' * (sz - 1) * centerprint_fontsize_x - '0.5 0 0' * (sz - 1) * centerprint_width[i] * centerprint_fontsize_y, centerprint_fontsize * sz
2065                         pos_y = pos_y + centerprint_fontsize_y;
2066                 }
2067                 else
2068                         // half height for empty lines looks better
2069                         pos_y = pos_y + centerprint_fontsize_y * 0.5;
2070         }
2071 }
2072
2073 vector Sbar_DrawNoteLine(vector offset, string s)
2074 {
2075         dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
2076         drawcolorcodedstring(
2077                 offset - sbar_fontsize_x * '1 0 0' * stringwidth(s, TRUE),
2078                 s,
2079                 sbar_fontsize,
2080                 sbar_alpha_fg,
2081                 0
2082         );
2083         return offset + sbar_fontsize_y * '0 1 0';
2084 }
2085
2086 void Sbar_DrawPressedKeys(void)
2087 {
2088         vector pos, bgsize;
2089         float pressedkeys;
2090
2091         pos = stov(cvar_string("cl_showpressedkeys_position"));
2092
2093         bgsize = '126 75 0';
2094
2095         pos = '1 0 0' * (vid_conwidth - bgsize_x) * pos_x
2096             + '0 1 0' * (vid_conheight - bgsize_y) * pos_y;
2097         pos -= '-15 -6 0'; // adjust to the origin of these numbers
2098
2099         pressedkeys = getstatf(STAT_PRESSED_KEYS);
2100         drawpic(pos + '-15   -6   0', "gfx/hud/keys/key_bg.tga",           bgsize, '1 1 1', 0.1 * sbar_alpha_fg, DRAWFLAG_NORMAL);
2101         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);
2102         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);
2103         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);
2104         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);
2105         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);
2106         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);
2107 }
2108
2109 void Sbar_ShowSpeed(void)
2110 {
2111         vector numsize;
2112         float pos, conversion_factor;
2113         string speed, unit;
2114
2115         switch(cvar("cl_showspeed_unit"))
2116         {
2117                 default:
2118                 case 0:
2119                         unit = "";
2120                         conversion_factor = 1.0;
2121                         break;
2122                 case 1:
2123                         unit = " qu/s";
2124                         conversion_factor = 1.0;
2125                         break;
2126                 case 2:
2127                         unit = " m/s";
2128                         conversion_factor = 0.0254;
2129                         break;
2130                 case 3:
2131                         unit = " km/h";
2132                         conversion_factor = 0.0254 * 3.6;
2133                         break;
2134                 case 4:
2135                         unit = " mph";
2136                         conversion_factor = 0.0254 * 3.6 * 0.6213711922;
2137                         break;
2138                 case 5:
2139                         unit = " knots";
2140                         conversion_factor = 0.0254 * 1.943844492; // 1 m/s = 1.943844492 knots, because 1 knot = 1.852 km/h
2141                         break;
2142         }
2143
2144         if (cvar("cl_showspeed_z") == 1)
2145                 speed = strcat(ftos(floor( vlen(pmove_vel) * conversion_factor + 0.5 )), unit);
2146         else
2147                 speed = strcat(ftos(floor( vlen(pmove_vel - pmove_vel_z * '0 0 1') * conversion_factor + 0.5 )), unit);
2148
2149         numsize_x = numsize_y = cvar("cl_showspeed_size");
2150         pos = (vid_conheight - numsize_y) * cvar("cl_showspeed_position");
2151         
2152         drawfont = sbar_bigfont;
2153         drawstringcenter('1 0 0' + pos * '0 1 0', speed, numsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2154         drawfont = sbar_font;
2155 }
2156
2157 vector acc_prevspeed;
2158 float acc_prevtime;
2159 float acc_avg;
2160
2161 void Sbar_ShowAcceleration(void)
2162 {
2163         float acceleration, sz, scale, alpha, f;
2164         vector pos, top, rgb;
2165         top_x = vid_conwidth/2;
2166         top_y = 0;
2167
2168         f = time - acc_prevtime;
2169         if(cvar("cl_showacceleration_z"))
2170                 acceleration = (vlen(pmove_vel) - vlen(acc_prevspeed)) * (1 / f);
2171         else
2172                 acceleration = (vlen(pmove_vel - '0 0 1' * pmove_vel_z) - vlen(acc_prevspeed - '0 0 1' * acc_prevspeed_z)) * (1 / f);
2173         acc_prevspeed = pmove_vel;
2174         acc_prevtime = time;
2175
2176         f = bound(0, f * 10, 1);
2177         acc_avg = acc_avg * (1 - f) + acceleration * f;
2178         acceleration = acc_avg / getstatf(STAT_MOVEVARS_MAXSPEED);
2179
2180         pos = top - sz/2 * '0 1 0' + (cvar("cl_showacceleration_position") * vid_conheight) * '0 1 0';
2181
2182         sz = cvar("cl_showacceleration_size");
2183         scale = cvar("cl_showacceleration_scale");
2184         alpha = cvar("cl_showacceleration_alpha");
2185         if (cvar("cl_showacceleration_color_custom"))
2186                 rgb = stov(cvar_string("cl_showacceleration_color"));
2187         else {
2188                 rgb = '1 1 1';
2189                 if (acceleration < 0) {
2190                         rgb = '1 .5 .5' - '0 .5 .5' * bound(0, -acceleration * 0.2, 1);
2191                 } else if (acceleration > 0) {
2192                         rgb = '.5 1 .5' - '.5 0 .5' * bound(0, +acceleration * 0.2, 1);
2193                 }
2194         }
2195                 
2196         if (acceleration > 0)
2197                 drawpic(pos, "gfx/hud/accelerometer_gradient", acceleration * scale * '40 0 0' + sz * '0 1 0', rgb, alpha * sbar_alpha_fg, DRAWFLAG_NORMAL);
2198         else if (acceleration < 0)
2199                 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);
2200 }
2201
2202 void Sbar_DrawAccuracyStats_Description_Hitscan(vector position)
2203 {
2204         drawstring(position + '0 3 0' * sbar_fontsize_y, "Shots fired:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2205         drawstring(position + '0 5 0' * sbar_fontsize_y, "Shots hit:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2206         drawstring(position + '0 7 0' * sbar_fontsize_y, "Accuracy:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2207         drawstring(position + '0 9 0' * sbar_fontsize_y, "Shots missed:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2208 }
2209
2210 void Sbar_DrawAccuracyStats_Description_Splash(vector position)
2211 {
2212         drawstring(position + '0 3 0' * sbar_fontsize_y, "Maximum damage:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2213         drawstring(position + '0 5 0' * sbar_fontsize_y, "Actual damage:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2214         drawstring(position + '0 7 0' * sbar_fontsize_y, "Accuracy:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2215         drawstring(position + '0 9 0' * sbar_fontsize_y, "Damage wasted:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2216 }
2217
2218 void Sbar_DrawAccuracyStats()
2219 {
2220         float i, count_hitscan, count_splash, row;  // count is the number of 'colums'
2221         float weapon_hit, weapon_damage, weapon_stats;
2222         float left_border;  // position where the weapons start, the description is in the border
2223         vector fill_colour, fill_size;
2224         vector pos;
2225
2226         float col_margin = 20;  // pixels between the columns
2227         float row_margin = 20;  // pixels between the rows
2228
2229         fill_size_x = 5 * sbar_fontsize_x;  // width of the background
2230         fill_size_y = 10 * sbar_fontsize_y;  // height of the background
2231
2232         drawfont = sbar_bigfont;
2233         pos_x = 0;
2234         pos_y = SCOREBOARD_OFFSET;
2235         pos_z = 0;
2236         drawstringcenter(pos, "Weapon Accuracy", 2 * sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2237
2238         left_border = col_margin + 11 * sbar_fontsize_x;
2239
2240         drawfont = sbar_font;
2241
2242         if(warmup_stage)
2243         {
2244                 pos_y += 40;
2245                 if(mod(time, 1) >= 0.4)
2246                         drawstringcenter(pos, "Stats are not tracked during warmup stage", sbar_fontsize, '1 1 0', sbar_alpha_fg, DRAWFLAG_NORMAL);
2247
2248                 return;
2249         }
2250
2251         float top_border_hitscan = SCOREBOARD_OFFSET + 55;  // position where the hitscan row starts: pixels down the screen
2252         Sbar_DrawAccuracyStats_Description_Hitscan('1 0 0' * col_margin + '0 1 0' * top_border_hitscan);
2253
2254         float top_border_splash = SCOREBOARD_OFFSET + 175;  // position where the splash row starts: pixels down the screen
2255         Sbar_DrawAccuracyStats_Description_Splash('1 0 0' * col_margin + '0 1 0' * top_border_splash);
2256
2257         for(i = WEP_FIRST; i <= WEP_LAST; ++i)
2258         {
2259                 weapon_hit = weapon_hits[i];
2260                 weapon_damage = weapon_fired[i];
2261                 self = get_weaponinfo(i);
2262
2263                 //if ((weapon_number != 42))  // print them all :)
2264                 if (weapon_damage) {
2265                         if (self.weapon_type == WEP_TYPE_SPLASH) {
2266                                 weapon_stats = bound(0, rint(100 * weapon_hit / weapon_damage), 100);
2267
2268                                 fill_colour_x = 1 - 0.015 * weapon_stats;
2269                                 fill_colour_y = 1 - 0.015 * (100 - weapon_stats);
2270
2271                                 // how the background colour is calculated
2272                                 // %    red             green   red_2                   green_2
2273                                 // 0    1               0               1 - % * 0.015   1 - (100 - %) * 0.015
2274                                 // 10   0.85    0               1 - % * 0.015   1 - (100 - %) * 0.015
2275                                 // 20   0.70    0               1 - % * 0.015   1 - (100 - %) * 0.015
2276                                 // 30   0.55    0               1 - % * 0.015   1 - (100 - %) * 0.015
2277                                 // 40   0.40    0.10    1 - % * 0.015   1 - (100 - %) * 0.015
2278                                 // 50   0.25    0.25    1 - % * 0.015   1 - (100 - %) * 0.015
2279                                 // 60   0.10    0.40    1 - % * 0.015   1 - (100 - %) * 0.015
2280                                 // 70   0               0.55    1 - % * 0.015   1 - (100 - %) * 0.015
2281                                 // 80   0               0.70    1 - % * 0.015   1 - (100 - %) * 0.015
2282                                 // 90   0               0.85    1 - % * 0.015   1 - (100 - %) * 0.015
2283                                 // 100  0               1               1 - % * 0.015   1 - (100 - %) * 0.015
2284
2285                                 if ((left_border + count_splash * (fill_size_x + col_margin) + fill_size_x) >= vid_conwidth)
2286                                 {
2287                                         count_splash = 0;
2288                                         ++row;
2289                                         Sbar_DrawAccuracyStats_Description_Splash('1 0 0' * col_margin + '0 1 0' * (top_border_splash + row * (fill_size_y + row_margin)));
2290                                 }
2291
2292                                 pos_x = left_border + count_splash * (fill_size_x + col_margin);
2293                                 pos_y = top_border_splash + row * (fill_size_y + row_margin);
2294
2295                                 // background
2296                                 drawpic(pos, "gfx/hud/sb_accuracy", fill_size , fill_colour, sbar_alpha_bg, DRAWFLAG_NORMAL);
2297                                 drawborderlines(sbar_border_thickness, pos, fill_size, '0 0 0', sbar_alpha_bg, DRAWFLAG_NORMAL);
2298
2299                                 // the weapon
2300                                 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);
2301
2302                                 // the amount of shots fired or max damage
2303                                 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);
2304
2305                                 // the amount of hits or actual damage
2306                                 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);
2307
2308                                 // the accuracy
2309                                 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);
2310
2311                                 // the amount of shots missed or damage wasted
2312                                 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);
2313
2314                                 ++count_splash;
2315                         } else if ((self.weapon_type == WEP_TYPE_HITSCAN) && (weapon_damage)) {
2316                                 weapon_stats = bound(0, rint(100 * weapon_hit / weapon_damage), 100);
2317
2318                                 fill_colour_x = 1 - 0.015 * weapon_stats;
2319                                 fill_colour_y = 1 - 0.015 * (100 - weapon_stats);
2320
2321                                 // how the background colour is calculated
2322                                 // %    red             green   red_2                   green_2
2323                                 // 0    1               0               1 - % * 0.015   1 - (100 - %) * 0.015
2324                                 // 10   0.850   0               1 - % * 0.015   1 - (100 - %) * 0.015
2325                                 // 20   0.70    0               1 - % * 0.015   1 - (100 - %) * 0.015
2326                                 // 30   0.55    0               1 - % * 0.015   1 - (100 - %) * 0.015
2327                                 // 40   0.40    0.10    1 - % * 0.015   1 - (100 - %) * 0.015
2328                                 // 50   0.25    0.25    1 - % * 0.015   1 - (100 - %) * 0.015
2329                                 // 60   0.10    0.40    1 - % * 0.015   1 - (100 - %) * 0.015
2330                                 // 70   0               0.55    1 - % * 0.015   1 - (100 - %) * 0.015
2331                                 // 80   0               0.70    1 - % * 0.015   1 - (100 - %) * 0.015
2332                                 // 90   0               0.85    1 - % * 0.015   1 - (100 - %) * 0.015
2333                                 // 100  0               1               1 - % * 0.015   1 - (100 - %) * 0.015
2334
2335                                 if ((left_border + count_hitscan * (fill_size_x + col_margin) + fill_size_x + cvar("stats_right_margin")) >= vid_conwidth)
2336                                 {
2337                                         count_hitscan = 0;
2338                                         ++row;
2339                                         Sbar_DrawAccuracyStats_Description_Hitscan('1 0 0' * col_margin + '0 1 0' * (top_border_hitscan + row * (fill_size_y + row_margin)));
2340                                 }
2341
2342                                 pos_x = left_border + count_hitscan * (fill_size_x + col_margin);
2343                                 pos_y = top_border_hitscan + row * (fill_size_y + row_margin);
2344
2345                                 // background
2346                                 drawpic(pos, "gfx/hud/sb_accuracy", fill_size , fill_colour, sbar_alpha_bg, DRAWFLAG_NORMAL);
2347                                 drawborderlines(sbar_border_thickness, pos, fill_size, '0 0 0', sbar_alpha_bg, DRAWFLAG_NORMAL);
2348
2349                                 // the weapon
2350                                 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);
2351
2352                                 // the amount of shots fired or max damage
2353                                 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);
2354
2355                                 // the amount of hits or actual damage
2356                                 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);
2357
2358                                 // the accuracy
2359                                 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);
2360
2361                                 // the amount of shots missed or damage wasted
2362                                 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);
2363
2364                                 ++count_hitscan;
2365                         }
2366                 }
2367         }
2368 }
2369
2370 void drawstringright(vector position, string text, vector scale, vector rgb, float alpha, float flag)
2371 {
2372         position_x -= 2 / 3 * strlen(text) * scale_x;
2373         drawstring(position, text, scale, rgb, alpha, flag);
2374 }
2375
2376 void drawstringcenter(vector position, string text, vector scale, vector rgb, float alpha, float flag)
2377 {
2378         position_x = 0.5 * (vid_conwidth - 0.6025 * strlen(text) * scale_x);
2379         drawstring(position, text, scale, rgb, alpha, flag);
2380 }
2381
2382 float GetAmmoStat(float i)
2383 {
2384         switch(i)
2385         {
2386                 case 0: return STAT_SHELLS;
2387                 case 1: return STAT_NAILS;
2388                 case 2: return STAT_ROCKETS;
2389                 case 3: return STAT_CELLS;
2390                 case 4: return STAT_FUEL;
2391                 default: return -1;
2392         }
2393 }
2394
2395 float GetAmmoItemCode(float i)
2396 {
2397         switch(i)
2398         {
2399                 case 0: return IT_SHELLS;
2400                 case 1: return IT_NAILS;
2401                 case 2: return IT_ROCKETS;
2402                 case 3: return IT_CELLS;
2403                 case 4: return IT_FUEL;
2404                 default: return -1;
2405         }
2406 }
2407
2408 string GetAmmoPicture(float i)
2409 {
2410         switch(i)
2411         {
2412                 case 0: return "gfx/hud/sb_shells";
2413                 case 1: return "gfx/hud/sb_bullets";
2414                 case 2: return "gfx/hud/sb_rocket";
2415                 case 3: return "gfx/hud/sb_cells";
2416                 case 4: return "gfx/hud/sb_fuel";
2417                 default: return "";
2418         }
2419 }
2420
2421 void Sbar_Reset (void)
2422 {
2423         // reset gametype specific icons
2424         if(gametype == GAME_KEYHUNT)
2425                 CSQC_kh_hudreset();
2426         else if(gametype == GAME_CTF)
2427                 CSQC_ctf_hudreset();
2428 }
2429
2430 void Sbar_Draw (void)
2431 {
2432         // vectors for top right, bottom right, bottom and bottom left corners
2433         vector topright;
2434         vector bottom;
2435         vector bottomright;
2436         vector bottomleft;
2437
2438         topright_x = vid_conwidth;
2439         topright_y = 0;
2440         topright_z = 0;
2441
2442         bottom_x = vid_conwidth/2;
2443         bottom_y = vid_conheight;
2444         bottom_z = 0;
2445
2446         bottomright_x = vid_conwidth;
2447         bottomright_y = vid_conheight;
2448         bottomright_z = 0;
2449
2450         bottomleft_x = 0;
2451         bottomleft_y = vid_conheight;
2452         bottomleft_z = 0;
2453
2454         sbar_alpha_bg = cvar("sbar_alpha_bg") * (1 - cvar("_menu_alpha"));
2455         sbar_border_thickness = bound(0, cvar("sbar_border_thickness"), 5);
2456         sbar_accuracy_border_thickness = bound(0, cvar_or("sbar_accuracy_border_thickness", 1), 5);
2457         sbar_color_bg_team = cvar("sbar_color_bg_team");
2458
2459         float i;
2460         float weapon_stats;
2461         float x, fade;
2462         float stat_items, stat_weapons;
2463
2464         weapon_stats = getstati(STAT_DAMAGE_HITS);
2465         weapon_number = weapon_stats & 63;
2466         weapon_hits[weapon_number] = rint(weapon_stats / 64);
2467
2468         weapon_stats = getstati(STAT_DAMAGE_FIRED);
2469         weapon_number = weapon_stats & 63;
2470         weapon_fired[weapon_number] = rint(weapon_stats / 64);
2471
2472         vector o; o = '1 0 0' * vid_conwidth;
2473         o_y = 28; // move spectator text slightly down to prevent overlapping the timer
2474
2475         string s;
2476         vector pos;
2477         pos = '0 0 0';
2478
2479         sbar_fontsize = Sbar_GetFontsize("sbar_fontsize");
2480         sbar_fontsize_spec = Sbar_GetFontsize("sbar_fontsize_spec");
2481
2482         if(spectatee_status && !intermission)
2483         {
2484                 drawfont = sbar_bigfont;
2485                 if(spectatee_status == -1)
2486                         s = "^1Observing";
2487                 else
2488                         s = GetPlayerName(spectatee_status - 1);
2489                 // spectated player name between HUD and chat area, aligned to the left
2490                 pos_x = bottomleft_x;
2491                 pos_y = bottom_y - 50 - sbar_fontsize_spec_y;
2492                 s = textShortenToWidth(s, vid_conwidth/2.5/sbar_fontsize_spec_x, stringwidth_colors);
2493                 drawcolorcodedstring(pos, s, sbar_fontsize_spec, sbar_alpha_fg, DRAWFLAG_NORMAL);
2494                 drawfont = sbar_font;
2495
2496                 // spectator text in the upper right corner
2497                 if(spectatee_status == -1)
2498                         s = strcat("^1Press ^3", getcommandkey("primary fire", "+attack"), "^1 to spectate");
2499                 else
2500                         s = strcat("^1Press ^3", getcommandkey("primary fire", "+attack"), "^1 for another player");
2501                 o = Sbar_DrawNoteLine(o, s);
2502
2503                 if(spectatee_status == -1)
2504                         s = strcat("^1Use ^3", getcommandkey("next weapon", "weapnext"), "^1 or ^3", getcommandkey("previous weapon", "weapprev"), "^1 to change the speed");
2505                 else
2506                         s = strcat("^1Press ^3", getcommandkey("secondary fire", "+attack2"), "^1 to observe");
2507                 o = Sbar_DrawNoteLine(o, s);
2508
2509                 s = strcat("^1Press ^3", getcommandkey("server info", "+show_info"), "^1 for gamemode info");
2510                 o = Sbar_DrawNoteLine(o, s);
2511
2512                 if(gametype == GAME_ARENA)
2513                         s = "^1Wait for your turn to join";
2514                 else if(gametype == GAME_LMS)
2515                 {
2516                         entity sk;
2517                         sk = playerslots[player_localentnum - 1];
2518                         if(sk.(scores[ps_primary]) >= 666)
2519                                 s = "^1Match has already begun";
2520                         else if(sk.(scores[ps_primary]) > 0)
2521                                 s = "^1You have no more lives left";
2522                         else
2523                                 s = strcat("^1Press ^3", getcommandkey("jump", "+jump"), "^1 to join");
2524                 }
2525                 else
2526                         s = strcat("^1Press ^3", getcommandkey("jump", "+jump"), "^1 to join");
2527                 o = Sbar_DrawNoteLine(o, s);
2528
2529                 //show restart countdown:
2530                 if (time < getstatf(STAT_GAMESTARTTIME)) {
2531                         float countdown;
2532                         //we need to ceil, otherwise the countdown would be off by .5 when using round()
2533                         countdown = ceil(getstatf(STAT_GAMESTARTTIME) - time);
2534                         s = strcat("^1Game starts in ^3", ftos(countdown), "^1 seconds");
2535                         o = Sbar_DrawNoteLine(o, s);
2536                 }
2537         }
2538         if(warmup_stage && !intermission)
2539         {
2540                 s = "^2Currently in ^1warmup^2 stage!";
2541                 o = Sbar_DrawNoteLine(o, s);
2542         }
2543
2544         // move more important stuff more to the middle so its more visible
2545         o_y = vid_conheight * 0.66;
2546
2547         string blinkcolor;
2548         if(mod(time, 1) >= 0.5)
2549                 blinkcolor = "^1";
2550         else
2551                 blinkcolor = "^3";
2552
2553         if(ready_waiting && !intermission && !spectatee_status)
2554         {
2555                 if(ready_waiting_for_me)
2556                 {
2557                         if(warmup_stage)
2558                                 s = strcat(blinkcolor, "Press ^3", getcommandkey("ready", "ready"), blinkcolor, " to end warmup");
2559                         else
2560                                 s = strcat(blinkcolor, "Press ^3", getcommandkey("ready", "ready"), blinkcolor, " once you are ready");
2561                 }
2562                 else
2563                 {
2564                         if(warmup_stage)
2565                                 s = strcat("^2Waiting for others to ready up to end warmup...");
2566                         else
2567                                 s = strcat("^2Waiting for others to ready up...");
2568                 }
2569                 o = Sbar_DrawNoteLine(o, s);
2570         }
2571         else if(warmup_stage && !intermission && !spectatee_status)
2572         {
2573                 s = strcat("^2Press ^3", getcommandkey("ready", "ready"), "^2 to end warmup");
2574                 o = Sbar_DrawNoteLine(o, s);
2575         }
2576         if(vote_waiting)
2577         {
2578                 s = strcat("^2A vote has been called for ^1",  textShortenToWidth(vote_called_vote, vid_conwidth/2/sbar_fontsize_x, stringwidth_colors));
2579                 o = Sbar_DrawNoteLine(o, s);
2580
2581                 if(vote_waiting_for_me)
2582                 {
2583                         s = strcat(blinkcolor, "Press ^3", getcommandkey("vote yes", "vyes"), blinkcolor, " to accept");
2584                         o = Sbar_DrawNoteLine(o, s);
2585
2586                         s = strcat(blinkcolor, "Press ^3", getcommandkey("vote no", "vno"), blinkcolor, " to reject");
2587                         o = Sbar_DrawNoteLine(o, s);
2588
2589                         s = strcat(blinkcolor, "Press ^3", getcommandkey("vote abstain", "vabstain"), blinkcolor, " to abstain");
2590                         o = Sbar_DrawNoteLine(o, s);
2591                 }
2592                 else
2593                 {
2594                         s = strcat("^2Waiting for others to vote...");
2595                         o = Sbar_DrawNoteLine(o, s);
2596                 }
2597         }
2598         if(teamplay && !intermission && !spectatee_status)
2599         {
2600                 entity tm;
2601                 float ts_min, ts_max;
2602                 tm = teams.sort_next;
2603                 if (tm)
2604                 {
2605                         for(; tm.sort_next; tm = tm.sort_next)
2606                         {
2607                                 if(!tm.team_size || tm.team == COLOR_SPECTATOR)
2608                                         continue;
2609                                 if(!ts_min) ts_min = tm.team_size;
2610                                 else ts_min = min(ts_min, tm.team_size);
2611                                 if(!ts_max) ts_max = tm.team_size;
2612                                 else ts_max = max(ts_max, tm.team_size);
2613                         }
2614                         if ((ts_max - ts_min) > 1)
2615                         {
2616                                 s = strcat(blinkcolor, "Teamnumbers are unbalanced!");
2617                                 tm = GetTeam(myteam, false);
2618                                 if (tm)
2619                                 if (tm.team != COLOR_SPECTATOR)
2620                                 if (tm.team_size == ts_max)
2621                                         s = strcat(s, " Press ^3", getcommandkey("team menu", "menu_showteamselect"), blinkcolor, " to adjust");
2622
2623                                 o = Sbar_DrawNoteLine(o, s);
2624                         }
2625                 }
2626         }
2627
2628         Sbar_UpdatePlayerTeams();
2629         if (intermission == 2) // map voting screen
2630         {
2631                 if(sb_showaccuracy) {
2632                         Sbar_DrawAccuracyStats();
2633                         Sbar_Score();
2634                         Sbar_Timer();
2635                 }
2636                 else if(sb_showscores) {
2637                         Sbar_DrawScoreboard();
2638                         Sbar_Score();
2639                         Sbar_Timer();
2640                 }
2641                 else
2642                         Sbar_FinaleOverlay();
2643
2644                 Sbar_Reset();
2645         }
2646         else if (sb_showscores_force || getstati(STAT_HEALTH) <= 0 || intermission == 1)
2647         {
2648                 if(sb_showaccuracy)
2649                         Sbar_DrawAccuracyStats();
2650                 else
2651                         Sbar_DrawScoreboard();
2652                 Sbar_Score();
2653                 Sbar_Timer();
2654
2655                 Sbar_Reset();
2656         }
2657         else
2658         {
2659                 if(sb_showaccuracy)
2660                         Sbar_DrawAccuracyStats();
2661                 else
2662                         Sbar_DrawScoreboard();
2663                 float armor, health;
2664                 armor = getstati(STAT_ARMOR);
2665                 health = getstati(STAT_HEALTH);
2666
2667                 stat_items = getstati(STAT_ITEMS);
2668                 stat_weapons = getstati(STAT_WEAPONS);
2669
2670                 fade = 3.2 - 2 * (time - weapontime);
2671                 fade = bound(0.7, fade, 1);
2672
2673                 vector bg_size; // hud background size
2674                 bg_size = '1600 58 0';
2675
2676                 if (cvar("viewsize") <= 100 && vid_conwidth <= 1600) {
2677                         if (teamplay)
2678                                 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
2679                         else {
2680                                 // allow for custom HUD colors in non-teamgames
2681                                 color_x = cvar("sbar_color_bg_r");
2682                                 color_y = cvar("sbar_color_bg_g");
2683                                 color_z = cvar("sbar_color_bg_b");
2684
2685                                 drawpic(bottom - '800 58 0', "gfx/hud/sbar", bg_size, color, sbar_alpha_bg, DRAWFLAG_NORMAL);
2686                         }
2687                 }
2688
2689                 if(sbar_hudselector == 2) // combined health and armor display
2690                 {
2691                         vector v;
2692                         v = healtharmor_maxdamage(health, armor, armorblockpercent);
2693
2694                         vector num_pos;
2695                         num_pos = bottom - '96 28 0';
2696
2697                         x = floor(v_x + 1);
2698
2699                         if(v_z) // fully armored
2700                         {
2701                                 // here, armorideal > armor
2702                                 drawpic(num_pos + '78 -4.5 0', "gfx/hud/sb_health", '32 32 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2703                                 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);
2704                         }
2705                         else
2706                         {
2707                                 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);
2708                                 drawpic(num_pos + '78 -4.5 0', "gfx/hud/sb_armor", '32 32 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2709                         }
2710                         Sbar_DrawXNum_Colored(num_pos, x, 24, sbar_alpha_fg); // draw the combined health and armor
2711                 }
2712
2713                 else
2714                 {
2715                         vector health_pos, armor_pos;
2716
2717                         if (sbar_hudselector == 0) { // old style layout with armor left of health
2718                                 armor_pos = bottom - '96 28 0';
2719                                 health_pos = bottom - '-14 28 0';
2720                         }
2721                         else {
2722                                 health_pos = bottom - '96 28 0';                                
2723                                 armor_pos = bottom - '-14 28 0';
2724                         }
2725
2726                         // armor
2727                         x = armor;
2728                         if (x > 0)
2729                         {
2730                                 if (x > 45) {
2731                                         drawpic(armor_pos + '78 -4.5 0', "gfx/hud/sb_armor", '32 32 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2732                                         Sbar_DrawXNum_Colored(armor_pos, x, 24, sbar_alpha_fg);
2733                                 }
2734                                 else {
2735                                         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);
2736                                         Sbar_DrawXNum_Colored(armor_pos, x, 24, sbar_alpha_fg);
2737                                 }
2738                         }
2739
2740                         // health
2741                         x = health;
2742                         drawpic(health_pos + '78 -4.5 0', "gfx/hud/sb_health", '32 32 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2743                         Sbar_DrawXNum_Colored(health_pos, x, 24, sbar_alpha_fg);
2744                 }
2745
2746                 // ammo
2747                 float a; // i will be the ammo type (already declared), a will contain how much ammo there is of type i
2748
2749                 for (i = 0; i < 4; ++i) {
2750                         a = getstati(GetAmmoStat(i)); // how much ammo do we have of type i?
2751
2752                         if(sbar_currentammo || vid_conwidth < 800) { // force showing current ammo only with conwidths < 800
2753                                 if (stat_items & GetAmmoItemCode(i)) {
2754                                         if (vid_conwidth >= 800) {
2755                                                 pos_x = 230;
2756                                                 pos_y = 40;
2757                                         } else {
2758                                                 pos_x = 206;
2759                                                 pos_y = 33;
2760                                         }
2761
2762                                         pos = bottom - pos;
2763                                         if(vid_conwidth >= 800)
2764                                                 drawpic(pos + '0 1.5 0', "gfx/hud/sb_ammobg", '107 29 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2765                                         drawpic(pos + '76 3 0', GetAmmoPicture(i), '24 24 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2766                                         if(a < 10)
2767                                                 Sbar_DrawXNum(pos + '5 5 0', a, 3, 0, 24, '0.7 0 0', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
2768                                         else
2769                                                 Sbar_DrawXNum(pos + '5 5 0', a, 3, 0, 24, '1 1 1', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
2770                                 }
2771                         } else {
2772                                 if (a > 0) {
2773                                         switch (i) {
2774                                                 case 0: pos_x = 286; pos_y = 48; break; // shells
2775                                                 case 1: pos_x = 286; pos_y = 26; break; // bullets
2776                                                 case 2: pos_x = 200; pos_y = 48; break; // rockets
2777                                                 case 3: pos_x = 200; pos_y = 26; break; // cells
2778                                         }
2779
2780                                         pos = bottom - pos;
2781                                         if (stat_items & GetAmmoItemCode(i))
2782                                                 drawpic(pos + '0 1.5 0', "gfx/hud/sb_ammobg", '80 22 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2783                                         drawpic(pos + '56 3 0', GetAmmoPicture(i), '18 18 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2784                                         if (a < 10) {
2785                                                 if(stat_items & GetAmmoItemCode(i))
2786                                                         Sbar_DrawXNum(pos + '6 4.5 0', a, 3, 0, 16, '0.7 0 0', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
2787                                                 else
2788                                                         Sbar_DrawXNum(pos + '6 4.5 0', a, 3, 0, 16, '0.7 0 0', 0, 0, sbar_alpha_fg * 0.7, DRAWFLAG_NORMAL);
2789                                         } else {
2790                                                 if(stat_items & GetAmmoItemCode(i))
2791                                                         Sbar_DrawXNum(pos + '6 4.5 0', a, 3, 0, 16, '1 1 1', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
2792                                                 else
2793                                                         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);
2794                                         }
2795                                 }
2796                         }
2797                 }
2798
2799                 // fuel ammo
2800                 a = getstati(GetAmmoStat(4)); // how much fuel do we have?
2801
2802                 if (a > 0) { // if we have fuel, draw the amount
2803                         float invincibility_time, dt;
2804                         invincibility_time = getstatf(STAT_INVINCIBLE_FINISHED);
2805                         dt = invincibility_time - time;
2806                         if (vid_conwidth >= 800) {
2807                                 if (dt > 0) { // if the invincibility timer is active, draw fuel ammo elsewhere
2808                                         pos_x = bottom_x + 140;
2809                                         pos_y = bottom_y - 72;
2810                                 }
2811                                 else { // if the invincibility timer is inactive, draw the fuel ammo there (it's rare to have invincibility + fuel anyway)
2812                                         pos_x = bottom_x + 140;
2813                                         pos_y = bottom_y - 20;
2814                                 }
2815                         }
2816                         else { // draw fuel on top of ammo if vid_conwidth < 800
2817                                 pos_x = bottom_x - 200;
2818                                 pos_y = bottom_y - 45;
2819                         }
2820                         drawpic(pos - '0 2 0' + '52 0 0', GetAmmoPicture(4), '20 20 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
2821                         if (a > 10)
2822                                 Sbar_DrawXNum(pos, a, 3, 0, 16, '1 1 1', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
2823                         else
2824                                 Sbar_DrawXNum(pos, a, 3, 0, 16, '0.7 0 0', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);
2825                 }
2826
2827                 // draw scores and timer
2828                 Sbar_Score();
2829                 Sbar_Timer();
2830
2831                 // draw strength/invincibility icon and timer
2832                 CSQC_Strength_Timer();
2833
2834                 // weapon icons
2835                 if(cvar_or("sbar_showweaponicons", 1)) {
2836                         x = 1.0;
2837                         Sbar_DrawWeapon_Clear();
2838                         for(i = 1; i <= 24; ++i)
2839                         {
2840                                 if(weaponimpulse[i-1] >= 0)
2841                                 if(stat_weapons & x)
2842                                         Sbar_DrawWeapon(i-1, fade, (i == activeweapon), i);
2843                                 x *= 2;
2844                         }
2845                 }
2846
2847                 // draw gametype specific icons
2848                 if(gametype == GAME_KEYHUNT)
2849                         CSQC_kh_hud();
2850                 else if(gametype == GAME_CTF)
2851                         CSQC_ctf_hud();
2852                 else if(gametype == GAME_NEXBALL)
2853                         CSQC_nb_hud();
2854                 else if(gametype == GAME_CTS || gametype == GAME_RACE)
2855                         CSQC_race_hud();
2856         }
2857         return;
2858 }
2859
2860 // CTF HUD
2861 float redflag_prevframe, blueflag_prevframe; // status during previous frame
2862 float redflag_prevstatus, blueflag_prevstatus; // last remembered status
2863 float redflag_statuschange_time, blueflag_statuschange_time; // time when the status changed
2864
2865 void CSQC_ctf_hudreset(void)
2866 {
2867         redflag_prevstatus = blueflag_prevstatus = redflag_prevframe = blueflag_prevframe = redflag_statuschange_time = blueflag_statuschange_time = 0;
2868 }
2869
2870 void CSQC_ctf_hud(void)
2871 {
2872         vector bottomleft, redflag_pos, blueflag_pos, sz;
2873         float f; // every function should have that
2874         bottomleft_x = 0;
2875         bottomleft_y = vid_conheight;
2876         bottomleft_z = 0;
2877
2878         float redflag, blueflag; // current status
2879         float redflag_statuschange_elapsedtime, blueflag_statuschange_elapsedtime; // time since the status changed
2880         float stat_items;
2881
2882         stat_items = getstati(STAT_ITEMS);
2883         redflag = (stat_items/IT_RED_FLAG_TAKEN) & 3;
2884         blueflag = (stat_items/IT_BLUE_FLAG_TAKEN) & 3;
2885
2886         // when status CHANGES, set old status into prevstatus and current status into status
2887         if (redflag != redflag_prevframe)
2888         {
2889                 redflag_statuschange_time = time;
2890                 redflag_prevstatus = redflag_prevframe;
2891                 redflag_prevframe = redflag;
2892         }
2893
2894         if (blueflag != blueflag_prevframe)
2895         {
2896                 blueflag_statuschange_time = time;
2897                 blueflag_prevstatus = blueflag_prevframe;
2898                 blueflag_prevframe = blueflag;
2899         }
2900         
2901         redflag_statuschange_elapsedtime = time - redflag_statuschange_time;
2902         blueflag_statuschange_elapsedtime = time - blueflag_statuschange_time;
2903
2904         float BLINK_FACTOR = 0.15;
2905         float BLINK_BASE = 0.85;
2906         // note:
2907         //   RMS = sqrt(BLINK_BASE^2 + 0.5 * BLINK_FACTOR^2)
2908         // thus
2909         //   BLINK_BASE = sqrt(RMS^2 - 0.5 * BLINK_FACTOR^2)
2910         // ensure RMS == 1
2911         float BLINK_FREQ = 5; // circle frequency, = 2*pi*frequency in hertz
2912
2913         string red_icon, red_icon_prevstatus;
2914         float red_alpha, red_alpha_prevstatus;
2915         red_alpha = red_alpha_prevstatus = 1;
2916         switch(redflag) {
2917                 case 1: red_icon = "gfx/hud/sb_flag_red_taken"; break;
2918                 case 2: red_icon = "gfx/hud/sb_flag_red_lost"; break;
2919                 case 3: red_icon = "gfx/hud/sb_flag_red_carrying"; red_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
2920                 default:
2921                         if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM2))
2922                                 red_icon = "gfx/hud/sb_flag_red_shielded";
2923                         else
2924                                 red_icon = string_null;
2925                         break;
2926         }
2927         switch(redflag_prevstatus) {
2928                 case 1: red_icon_prevstatus = "gfx/hud/sb_flag_red_taken"; break;
2929                 case 2: red_icon_prevstatus = "gfx/hud/sb_flag_red_lost"; break;
2930                 case 3: red_icon_prevstatus = "gfx/hud/sb_flag_red_carrying"; red_alpha_prevstatus = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
2931                 default:
2932                         if(redflag == 3)
2933                                 red_icon_prevstatus = "gfx/hud/sb_flag_red_carrying"; // make it more visible
2934                         else if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM2))
2935                                 red_icon_prevstatus = "gfx/hud/sb_flag_red_shielded";
2936                         else
2937                                 red_icon_prevstatus = string_null;
2938                         break;
2939         }
2940
2941         string blue_icon, blue_icon_prevstatus;
2942         float blue_alpha, blue_alpha_prevstatus;
2943         blue_alpha = blue_alpha_prevstatus = 1;
2944         switch(blueflag) {
2945                 case 1: blue_icon = "gfx/hud/sb_flag_blue_taken"; break;
2946                 case 2: blue_icon = "gfx/hud/sb_flag_blue_lost"; break;
2947                 case 3: blue_icon = "gfx/hud/sb_flag_blue_carrying"; blue_alpha = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
2948                 default:
2949                         if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM1))
2950                                 blue_icon = "gfx/hud/sb_flag_blue_shielded";
2951                         else
2952                                 blue_icon = string_null;
2953                         break;
2954         }
2955         switch(blueflag_prevstatus) {
2956                 case 1: blue_icon_prevstatus = "gfx/hud/sb_flag_blue_taken"; break;
2957                 case 2: blue_icon_prevstatus = "gfx/hud/sb_flag_blue_lost"; break;
2958                 case 3: blue_icon_prevstatus = "gfx/hud/sb_flag_blue_carrying"; blue_alpha_prevstatus = BLINK_BASE + BLINK_FACTOR * cos(time * BLINK_FREQ); break;
2959                 default:
2960                         if(blueflag == 3)
2961                                 blue_icon_prevstatus = "gfx/hud/sb_flag_blue_carrying"; // make it more visible
2962                         else if((stat_items & IT_CTF_SHIELDED) && (myteam == COLOR_TEAM1))
2963                                 blue_icon_prevstatus = "gfx/hud/sb_flag_blue_shielded";
2964                         else
2965                                 blue_icon_prevstatus = string_null;
2966                         break;
2967         }
2968
2969         if (myteam == COLOR_TEAM1) { // always draw own flag on left
2970                 redflag_pos = bottomleft - '-4 50 0';
2971                 blueflag_pos = bottomleft - '-62 50 0';
2972         } else {
2973                 blueflag_pos = bottomleft - '-4 50 0';
2974                 redflag_pos = bottomleft - '-62 50 0';
2975         }
2976         
2977         sz = '52 52 0';
2978         
2979         f = bound(0, redflag_statuschange_elapsedtime*2, 1);
2980         if(red_icon_prevstatus && f < 1)
2981                 drawpic_expanding(redflag_pos, red_icon_prevstatus, sz, '1 1 1', sbar_alpha_fg * red_alpha_prevstatus, DRAWFLAG_NORMAL, f);
2982         if(red_icon)
2983                 drawpic(redflag_pos, red_icon, sz, '1 1 1', sbar_alpha_fg * red_alpha * f, DRAWFLAG_NORMAL);
2984
2985         f = bound(0, blueflag_statuschange_elapsedtime*2, 1);
2986         if(blue_icon_prevstatus && f < 1)
2987                 drawpic_expanding(blueflag_pos, blue_icon_prevstatus, sz, '1 1 1', sbar_alpha_fg * blue_alpha_prevstatus, DRAWFLAG_NORMAL, f);
2988         if(blue_icon)
2989                 drawpic(blueflag_pos, blue_icon, sz, '1 1 1', sbar_alpha_fg * blue_alpha * f, DRAWFLAG_NORMAL);
2990 }
2991
2992 // Keyhunt HUD
2993 float kh_runheretime;
2994
2995 void CSQC_kh_hudreset(void)
2996 {
2997         kh_runheretime = 0;
2998 }
2999
3000 void CSQC_kh_hud(void)
3001 {
3002         float kh_keys;
3003         float keyteam;
3004         float a, aa;
3005         vector p, pa, kh_size, kh_asize;
3006
3007         vector bottomleft;
3008         bottomleft_x = 0;
3009         bottomleft_y = vid_conheight;
3010         bottomleft_z = 0;
3011
3012         p_x = 6;
3013         p_y = vid_conheight - 34 - 3;
3014         p_z = 0;
3015
3016         kh_keys = getstati(STAT_KH_KEYS);
3017
3018         kh_size = '19 34 0';
3019         kh_asize = '19 10 0';
3020         pa = p + '0 -10 0';
3021
3022         float i, key;
3023
3024         float keycount;
3025         keycount = 0;
3026         for(i = 0; i < 4; ++i)
3027         {
3028                 key = floor(kh_keys / pow(32, i)) & 31;
3029                 keyteam = key - 1;
3030                 if(keyteam == 30 && keycount <= 4)
3031                         keycount += 4;
3032                 if(keyteam == myteam || keyteam == -1 || keyteam == 30)
3033                         keycount += 1;
3034         }
3035         // this yields 8 exactly if "RUN HERE" shows
3036
3037         if(keycount == 8)
3038         {
3039                 if(!kh_runheretime)
3040                         kh_runheretime = time;
3041                 pa_y -= fabs(sin((time - kh_runheretime) * 3.5)) * 6; // make the arrows jump in case of RUN HERE
3042         }
3043         else
3044                 kh_runheretime = 0;
3045
3046         for(i = 0; i < 4; ++i)
3047         {
3048                 key = floor(kh_keys / pow(32, i)) & 31;
3049                 keyteam = key - 1;
3050                 switch(keyteam)
3051                 {
3052                         case 30: // my key
3053                                 keyteam = myteam;
3054                                 a = 1;
3055                                 aa = 1;
3056                                 break;
3057                         case -1: // no key
3058                                 a = 0;
3059                                 aa = 0;
3060                                 break;
3061                         default: // owned or dropped
3062                                 a = 0.2;
3063                                 aa = 0.5;
3064                                 break;
3065                 }
3066                 a = a * sbar_alpha_fg;
3067                 aa = aa * sbar_alpha_fg;
3068                 if(a > 0)
3069                 {
3070                         switch(keyteam)
3071                         {
3072                                 case COLOR_TEAM1:
3073                                         drawpic (pa, "gfx/hud/sb_kh_redarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
3074                                         break;
3075                                 case COLOR_TEAM2:
3076                                         drawpic (pa, "gfx/hud/sb_kh_bluearrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
3077                                         break;
3078                                 case COLOR_TEAM3:
3079                                         drawpic (pa, "gfx/hud/sb_kh_yellowarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
3080                                         break;
3081                                 case COLOR_TEAM4:
3082                                         drawpic (pa, "gfx/hud/sb_kh_pinkarrow", kh_asize, '1 1 1', aa, DRAWFLAG_NORMAL);  // show 30% alpha key
3083                                         break;
3084                                 default:
3085                                         break;
3086                         }
3087                         switch(i) // YAY! switch(i) inside a for loop for i. DailyWTF, here we come!
3088                         {
3089                                 case 0:
3090                                         drawpic (p, "gfx/hud/sb_kh_red", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
3091                                         break;
3092                                 case 1:
3093                                         drawpic (p, "gfx/hud/sb_kh_blue", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
3094                                         break;
3095                                 case 2:
3096                                         drawpic (p, "gfx/hud/sb_kh_yellow", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
3097                                         break;
3098                                 case 3:
3099                                         drawpic (p, "gfx/hud/sb_kh_pink", kh_size, '1 1 1', a, DRAWFLAG_NORMAL);  // show 30% alpha key
3100                                         break;
3101                         }
3102                 }
3103                 p_x += 24;
3104                 pa_x += 24;
3105         }
3106 }
3107
3108 //Nexball HUD
3109 #define NBPB_SIZE '96 38 0'
3110 #define NBPB_BT 2                   //thickness
3111 #define NBPB_BRGB '1 1 1'
3112 #define NBPB_BALPH 1                //alpha
3113 #define NBPB_BFLAG DRAWFLAG_NORMAL
3114 #define NBPB_IALPH 0.4
3115 #define NBPB_IFLAG DRAWFLAG_NORMAL
3116 #define NBPB_IRGB '0.7 0.1 0'
3117
3118 void CSQC_nb_hud(void)
3119 {
3120         float stat_items, nb_pb_starttime, dt, p;
3121         vector pos;
3122
3123         stat_items = getstati(STAT_ITEMS);
3124         nb_pb_starttime = getstatf(STAT_NB_METERSTART);
3125
3126         pos_x = 4;
3127         pos_y = vid_conheight - 42;
3128         pos_z = 0;
3129
3130         //Manage the progress bar if any
3131         if (nb_pb_starttime > 0)
3132         {
3133                 vector s;
3134                 dt = mod(time - nb_pb_starttime, nb_pb_period);
3135                 // one period of positive triangle
3136                 p = 2 * dt / nb_pb_period;
3137                 if (p > 1)
3138                         p = 2 - p;
3139
3140                 s = NBPB_SIZE;
3141                 //Draw the filling
3142                 drawfill(pos, p * s_x * '1 0 0' + s_y * '0 1 0', NBPB_IRGB, NBPB_IALPH, NBPB_IFLAG);
3143
3144                 //Draw the box
3145                 s = NBPB_SIZE;
3146                 drawline(NBPB_BT, pos    , pos + '1 0 0' * s_x, NBPB_BRGB, NBPB_BALPH, NBPB_BFLAG);
3147                 drawline(NBPB_BT, pos    , pos + '0 1 0' * s_y, NBPB_BRGB, NBPB_BALPH, NBPB_BFLAG);
3148                 drawline(NBPB_BT, pos + s, pos + '1 0 0' * s_x, NBPB_BRGB, NBPB_BALPH, NBPB_BFLAG);
3149                 drawline(NBPB_BT, pos + s, pos + '0 1 0' * s_y, NBPB_BRGB, NBPB_BALPH, NBPB_BFLAG);
3150         }
3151
3152         pos_x += 12; //horizontal margin to the picture
3153         pos_y += 2; //vertical margin to the picture
3154
3155         if (stat_items & IT_KEY1)
3156                 drawpic(pos, "gfx/hud/sb_nexball_carrying", '80 34 0', '1 1 1', 1, DRAWFLAG_NORMAL);
3157 }
3158
3159 float crecordtime_prev; // last remembered crecordtime
3160 float crecordtime_change_time; // time when crecordtime last changed
3161 float srecordtime_prev; // last remembered srecordtime
3162 float srecordtime_change_time; // time when srecordtime last changed
3163 void CSQC_race_hud(void) 
3164 {
3165         entity me;
3166         me = playerslots[player_localentnum - 1];
3167         float t, score;
3168         float f; // yet another function has this
3169         score = me.(scores[ps_primary]);
3170
3171         if not((scores_flags[ps_primary] & SFL_TIME) && !teamplay) // race/cts record display on HUD
3172                 return; // no records in the actual race
3173
3174         drawfont = sbar_bigfont;
3175         vector pos;
3176         pos_x = 2;
3177         pos_y = vid_conheight - 48;
3178
3179         // clientside personal record
3180         string rr;
3181         if(gametype == GAME_CTS)
3182                 rr = CTS_RECORD;
3183         else
3184                 rr = RACE_RECORD;
3185         t = stof(db_get(ClientProgsDB, strcat(shortmapname, rr, "time")));
3186
3187         if(score && score < t || !t)
3188                 db_put(ClientProgsDB, strcat(shortmapname, rr, "time"), ftos(score));
3189
3190         if(t != crecordtime_prev) {
3191                 crecordtime_prev = t;
3192                 crecordtime_change_time = time;
3193         }
3194         f = time - crecordtime_change_time;
3195
3196         if (f > 1) {
3197                 drawstring(pos, "Personal best ", '10 10 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
3198                 drawstring(pos + '0 10 0', TIME_ENCODED_TOSTRING(t),'14 14 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
3199         } else {
3200                 drawstring(pos, "Personal best ", '10 10 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
3201                 drawstring(pos + '0 10 0', TIME_ENCODED_TOSTRING(t),'14 14 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
3202
3203                 // expanding
3204                 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);
3205                 drawstring(pos + '0 10 0' - '0 30 0' * f, TIME_ENCODED_TOSTRING(t),'14 14 0' + '42 42 0' * f, '1 1 1', sbar_alpha_fg * (1 - f), DRAWFLAG_NORMAL);
3206         }
3207
3208         // server record
3209         pos_y += 26;
3210         t = race_server_record;
3211         if(t != srecordtime_prev) {
3212                 srecordtime_prev = t;
3213                 srecordtime_change_time = time;
3214         }
3215         f = time - srecordtime_change_time;
3216
3217         if (f > 1) {
3218                 drawstring(pos, "Server best ", '10 10 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
3219                 drawstring(pos + '0 10 0', TIME_ENCODED_TOSTRING(t),'14 14 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
3220         } else {
3221                 drawstring(pos, "Server best ", '10 10 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
3222                 drawstring(pos + '0 10 0', TIME_ENCODED_TOSTRING(t),'14 14 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
3223
3224                 // expanding
3225                 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);
3226                 drawstring(pos + '0 10 0' - '0 30 0' * f, TIME_ENCODED_TOSTRING(t),'14 14 0' + '42 42 0' * f, '1 1 1', sbar_alpha_fg * (1 - f), DRAWFLAG_NORMAL);
3227         }
3228         drawfont = sbar_font;
3229 }