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