]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/client/sbar.qc
new parameter "leadlimit", abort the game if someone leads by that amount
[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 void Sbar_DrawAccuracyStats();
4 void Sbar_DrawAccuracyStats_Description_Splash(vector);
5 void Sbar_DrawAccuracyStats_Description_Hitscan(vector);
6 float weapon_hits[WEP_COUNT];
7 float weapon_fired[WEP_COUNT];
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_hudselector;
16 float sbar_hud_accuracy;
17
18 float ps_primary, ps_secondary;
19 float ts_primary, ts_secondary;
20
21 vector sbar, color;
22 vector element_offset = '0 6 0'; // global item offset from the bottom edge
23
24 void CSQC_kh_hud();
25 void CSQC_ctf_hud();
26 void CSQC_nb_hud();
27 void MapVote_Draw();
28 void Sbar_FinaleOverlay()
29 {
30         /*vector pos;
31         pos_x = (vid_conwidth - 1)/2;
32         pos_y = 16;
33         pos_z = 0;*/
34
35         //drawpic(pos, "gfx/finale", '0 0 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
36
37         //drawstring(pos, "END", sbar_fontsize, '1 1 1', 1, DRAWFLAG_NORMAL);
38         MapVote_Draw();
39 }
40
41 float weaponspace[10];
42 float weapon_first, weapon_last;
43 void Sbar_DrawWeapon_Clear()
44 {
45         float idx;
46         weapon_first = -2;
47         weapon_last = -1;
48         for(idx = 0; idx < 10; ++idx)
49                 weaponspace[idx] = 0;
50         for(idx = 0; idx <= 23; ++idx)
51         {
52                 if(weaponimpulse[idx] >= 0)
53                 {
54                         if(weapon_first < 0)
55                                 weapon_first = idx;
56                         weapon_last = idx;
57                 }
58         }
59 }
60 void Sbar_DrawWeapon(float nr, float fade, float active, float wc)
61 {
62         vector pos, vsize, fill_colour;
63         float value, idx, imp, sp, weapon_hit, weapon_damage, weapon_stats;
64
65         imp = weaponimpulse[nr];
66         weapon_hit = weapon_hits[wc];
67         weapon_damage = weapon_fired[wc];
68         if(imp == 0)
69                 idx = 9;
70         else
71                 idx = imp - 1;
72
73         value = (active) ? 1 : 0.6;
74         color_x = color_y = color_z = value;
75
76         // width = 300, height = 100
77         const float w_width = 25, w_height = 12, w_space = 2, font_size = 8;
78
79         sp = weaponspace[idx] + 1;
80         weaponspace[idx] = sp;
81
82         pos_x = (vid_conwidth + 10 - w_width * 9) * 0.5 + w_width * idx;
83         pos_y = (vid_conheight - w_height * sp) - 38; // move 38 pixels up
84         pos_z = 0;
85         vsize_x = w_width;
86         vsize_y = w_height;
87         vsize_z = 0;
88         if (active)
89                 drawpic(pos, "gfx/hud/sb_ammobg", vsize, color, value * fade * sbar_alpha_fg, 0);
90         drawpic(pos, strcat("gfx/hud/inv_weapon", ftos(nr)), vsize, color, value * fade * sbar_alpha_fg, 0);
91         pos_x += w_space;
92         pos_y += w_space;
93         vsize_x = font_size;
94         vsize_y = font_size;
95         vsize_z = 0;
96         drawstring(pos, ftos(imp), vsize, '1 1 1', sbar_alpha_fg, 0);
97
98         // draw the weapon accuracy on the HUD
99         if(sbar_hud_accuracy)
100         {
101                 weapon_stats = rint(100*weapon_hit/weapon_damage);
102                 fill_colour_x = 1 - 0.015 * weapon_stats;
103                 fill_colour_y = 1 - 0.015 * (100 - weapon_stats);
104                 drawstringright(pos + '22 0 0', strcat(ftos(weapon_stats),"%"), '6 6 0', fill_colour, sbar_alpha_fg, 0);
105         }
106 }
107
108 void Sbar_DrawXNum (vector pos, float num, float digits, float lettersize, vector rgb, float highlighted, float a, float dflags)
109 {
110         float l, i;
111         string str, tmp, l_length;
112         float minus;
113         vector vsize;
114
115         vsize_x = vsize_y = lettersize;
116         vsize_z = 0;
117
118         if(num < 0)
119         {
120                 minus = true;
121                 num = -num;
122                 pos_x -= lettersize;
123         } else
124                 minus = false;
125
126         if(digits < 0)
127         {
128                 tmp = ftos(num);
129                 digits = -digits;
130                 str = strcat(substring("0000000000", 0, digits - strlen(tmp)), tmp);
131         } else
132                 str = ftos(num);
133
134         l = strlen(str);
135         l_length = ftos(l);
136
137         if(l > digits)
138         {
139                 str = substring(str, l-digits, 999);
140                 l = strlen(str);
141         } else if(l < digits)
142                 pos_x += (digits-l) * lettersize;
143
144         if (highlighted == 1) {
145                 vector hl_size;
146                 hl_size_x = vsize_x * l + vsize_x * 0.2;
147                 hl_size_y = vsize_y * 1.1;
148                 hl_size_z = 0;
149                 if(minus)
150                         hl_size_x = hl_size_x + vsize_x;
151
152                 vector hl_pos;
153                 hl_pos_x = pos_x - lettersize/10;
154                 hl_pos_y = pos_y - lettersize/30;
155                 hl_pos_z = 0;
156
157                 drawpic(hl_pos, strcat("gfx/hud/sb_highlight_", l_length), hl_size, '1 1 1', sbar_alpha_fg, dflags);
158         }
159
160         if(minus)
161         {
162                 drawpic(pos, "gfx/hud/num_minus", vsize, rgb, a * sbar_alpha_fg, dflags);
163                 pos_x += lettersize;
164         }
165
166         for(i = 0; i < l; ++i)
167         {
168                 drawpic(pos, strcat("gfx/hud/num_", substring(str, i, 1)), vsize, rgb, a * sbar_alpha_fg, dflags);
169                 pos_x += lettersize;
170         }
171 }
172
173 void Sbar_DrawXNum_Colored (vector pos, float x, float lettersize)
174 {
175         if(x > 200) {
176                 color_x = 0;
177                 color_y = 1;
178                 color_z = 0;
179                 Sbar_DrawXNum(pos, x, 3, lettersize, color, 0, 1, 0);
180         }
181         else if(x > 150) {
182                 color_x = 0.4 - ((x-150)*0.02 * 0.4); //red value between 0.4 -> 0
183                 color_y = 0.9 + ((x-150)*0.02 * 0.1); // green value between 0.9 -> 1
184                 color_z = 0;
185                 Sbar_DrawXNum(pos, x, 3, lettersize, color, 0, 1, 0);
186         }
187         else if(x > 100) {
188                 color_x = 0.6 - ((x-100)*0.02 * 0.2); //red value between 0.6 -> 0.4
189                 color_y = 0.7 + ((x-100)*0.02 * 0.2); // green value between 0.7 -> 0.9
190                 color_z = 0.8 - ((x-100)*0.02 * 0.8); // blue value between 0.8 -> 0
191                 Sbar_DrawXNum(pos, x, 3, lettersize, color, 0, 1, 0);
192         }
193         else if(x > 50) {
194                 color_x = 1 - ((x-50)*0.02 * 0.4); //red value between 1 -> 0.6
195                 color_y = 1 - ((x-50)*0.02 * 0.3); // green value between 1 -> 0.7
196                 color_z = 0.2 + ((x-50)*0.02 * 0.6); // blue value between 0.2 -> 0.8
197                 Sbar_DrawXNum(pos, x, 3, lettersize, color, 0, 1, 0);
198         }
199         else if(x > 20) {
200                 color_x = 1;
201                 color_y = (x-20)*90/27/100; // green value between 0 -> 1
202                 color_z = (x-20)*90/27/100 * 0.2; // blue value between 0 -> 0.2
203                 Sbar_DrawXNum(pos, x, 3, lettersize, color, 0, 1, 0);
204         }
205         else
206                 Sbar_DrawXNum(pos, x, 3, lettersize, '1 0 0', 0, 1, 0);
207 }
208
209 void Cmd_Sbar_SetFields(float argc);
210 void Sbar_InitScores()
211 {
212         float i, f;
213
214         ps_primary = ps_secondary = ts_primary = ts_secondary = -1;
215         for(i = 0; i < MAX_SCORE; ++i)
216         {
217                 f = (scores_flags[i] & SFL_SORT_PRIO_MASK);
218                 if(f == SFL_SORT_PRIO_PRIMARY)
219                         ps_primary = i;
220                 if(f == SFL_SORT_PRIO_SECONDARY)
221                         ps_secondary = i;
222         }
223         if(ps_secondary == -1)
224                 ps_secondary = ps_primary;
225
226         for(i = 0; i < MAX_TEAMSCORE; ++i)
227         {
228                 f = (teamscores_flags[i] & SFL_SORT_PRIO_MASK);
229                 if(f == SFL_SORT_PRIO_PRIMARY)
230                         ts_primary = i;
231                 if(f == SFL_SORT_PRIO_SECONDARY)
232                         ts_secondary = i;
233         }
234         if(ts_secondary == -1)
235                 ts_secondary = ts_primary;
236
237         Cmd_Sbar_SetFields(0);
238 }
239
240 void Sbar_UpdatePlayerPos(entity pl);
241 float SetTeam(entity pl, float Team);
242 //float lastpnum;
243 void Sbar_UpdatePlayerTeams()
244 {
245         float Team;
246         entity pl, tmp;
247         float num;
248
249         num = 0;
250         for(pl = players.sort_next; pl; pl = pl.sort_next)
251         {
252                 num += 1;
253                 Team = GetPlayerColor(pl.sv_entnum);
254                 if(SetTeam(pl, Team))
255                 {
256                         tmp = pl.sort_prev;
257                         Sbar_UpdatePlayerPos(pl);
258                         if(tmp)
259                                 pl = tmp;
260                         else
261                                 pl = players.sort_next;
262                 }
263         }
264         /*
265         if(num != lastpnum)
266                 print(strcat("PNUM: ", ftos(num), "\n"));
267         lastpnum = num;
268         */
269 }
270
271 float Sbar_ComparePlayerScores(entity left, entity right)
272 {
273         float vl, vr;
274         vl = GetPlayerColor(left.sv_entnum);
275         vr = GetPlayerColor(right.sv_entnum);
276
277         if(!left.gotscores)
278                 vl = COLOR_SPECTATOR;
279         if(!right.gotscores)
280                 vr = COLOR_SPECTATOR;
281
282         if(vl > vr)
283                 return true;
284         if(vl < vr)
285                 return false;
286
287         if(vl == COLOR_SPECTATOR)
288         {
289                 // FIRST the one with scores (spectators), THEN the ones without (downloaders)
290                 // no other sorting
291                 if(!left.gotscores && right.gotscores)
292                         return true;
293                 return false;
294         }
295
296         vl = left.scores[ps_primary];
297         vr = right.scores[ps_primary];
298         if(scores_flags[ps_primary] & SFL_ZERO_IS_WORST)
299         {
300                 if(vl == 0 && vr != 0)
301                         return 1;
302                 if(vl != 0 && vr == 0)
303                         return 0;
304         }
305         if(vl > vr)
306                 return IS_INCREASING(scores_flags[ps_primary]);
307         if(vl < vr)
308                 return IS_DECREASING(scores_flags[ps_primary]);
309
310         vl = left.scores[ps_secondary];
311         vr = right.scores[ps_secondary];
312         if(scores_flags[ps_secondary] & SFL_ZERO_IS_WORST)
313         {
314                 if(vl == 0 && vr != 0)
315                         return 1;
316                 if(vl != 0 && vr == 0)
317                         return 0;
318         }
319         if(vl > vr)
320                 return IS_INCREASING(scores_flags[ps_secondary]);
321         if(vl < vr)
322                 return IS_DECREASING(scores_flags[ps_secondary]);
323
324         return false;
325 }
326
327 void Sbar_UpdatePlayerPos(entity player)
328 {
329         for(other = player.sort_next; other && Sbar_ComparePlayerScores(player, other); other = player.sort_next)
330         {
331                 SORT_SWAP(player, other);
332         }
333         for(other = player.sort_prev; other != players && Sbar_ComparePlayerScores(other, player); other = player.sort_prev)
334         {
335                 SORT_SWAP(other, player);
336         }
337 }
338
339 float Sbar_CompareTeamScores(entity left, entity right)
340 {
341         float vl, vr;
342
343         if(left.team == COLOR_SPECTATOR)
344                 return 1;
345         if(right.team == COLOR_SPECTATOR)
346                 return 0;
347
348         vl = left.teamscores[ts_primary];
349         vr = right.teamscores[ts_primary];
350         if(vl > vr)
351                 return IS_INCREASING(teamscores_flags[ts_primary]);
352         if(vl < vr)
353                 return IS_DECREASING(teamscores_flags[ts_primary]);
354
355         vl = left.teamscores[ts_secondary];
356         vr = right.teamscores[ts_secondary];
357         if(vl > vr)
358                 return IS_INCREASING(teamscores_flags[ts_secondary]);
359         if(vl < vr)
360                 return IS_DECREASING(teamscores_flags[ts_secondary]);
361
362         return false;
363 }
364
365 void Sbar_UpdateTeamPos(entity Team)
366 {
367         for(other = Team.sort_next; other && Sbar_CompareTeamScores(Team, other); other = Team.sort_next)
368         {
369                 SORT_SWAP(Team, other);
370         }
371         for(other = Team.sort_prev; other != teams && Sbar_CompareTeamScores(other, Team); other = Team.sort_prev)
372         {
373                 SORT_SWAP(other, Team);
374         }
375 }
376
377 void Cmd_Sbar_Help(float argc)
378 {
379         print("You can modify the scoreboard using the\n");
380         print("^3|---------------------------------------------------------------|\n");
381         print("^1 TO BE DONE\n");
382         print("Usage:\n");
383         print("^2sbar_columns_set default\n");
384         print("^2sbar_columns_set ^7filed1 field2 ...\n");
385         print("The following field names are recognized (case INsensitive):\n");
386         print("You can use a ^3|^7 to start the right-aligned fields.\n");
387
388         print("^3name^7 or ^3nick^7             Name of a player\n");
389         print("^3ping^7                     Ping time\n\n");
390         print("^3kd^7 or ^3kdr^7 or ^3kdratio^7 or ^3k/d\n");
391         print("                         The kill-death ratio\n");
392
393         print("Before a field you can put a + or - sign, then a comma separated list\n");
394         print("of game types, then a slash, to make the field show up only in these\n");
395         print("or in all but these game types.\n");
396
397         print("The special game type names 'teams' and 'noteams' can be used to\n");
398         print("include/exclude ALL teams/noteams game modes.\n");
399
400         local float i;
401         print("Additional columns:\n");
402         for(i = 0; i < MAX_SCORE; ++i)
403         {
404                 if(scores_label[i] != "")
405                         print(strcat(scores_label[i], "\n"));
406         }
407 }
408
409 #define MIN_NAMELEN 24
410 #define MAX_NAMELEN 24
411
412 string Sbar_DefaultColumnLayout()
413 {
414         return strcat( // fteqcc sucks
415                 "ping pl name | ",
416                 "-teams,race,lms/kills -teams,lms/deaths -teams,lms,race/suicides -race,dm,tdm/frags ", // tdm already has this in "score"
417                 "+ctf/caps +ctf/pickups +ctf/fckills +ctf/returns ",
418                 "+lms/lives +lms/rank ",
419                 "+/caps +kh/pushes +kh/destroyed ",
420                 "?+race/laps ?+race/time ?+race/fastest ",
421                 "+as/objectives +nexball/faults +nexball/goals ",
422                 "-lms,race,nexball/score");
423 }
424
425 void Cmd_Sbar_SetFields(float argc)
426 {
427         float i, j, slash;
428         string str, pattern;
429         float digit;
430         float have_name, have_primary, have_secondary, have_separator;
431         float missing;
432
433         // TODO: re enable with gametype dependant cvars?
434         if(argc < 2) // no arguments provided
435                 argc = tokenizebyseparator(strcat("x ", cvar_string("sbar_columns")), " ");
436
437         if(argc < 2)
438                 argc = tokenizebyseparator(strcat("x ", Sbar_DefaultColumnLayout()), " ");
439
440         if(argc == 2)
441         {
442                 if(argv(1) == "default")
443                         argc = tokenizebyseparator(strcat("x ", Sbar_DefaultColumnLayout()), " ");
444                 else if(argv(1) == "all")
445                 {
446                         string s;
447                         s = "ping pl color name |";
448                         for(i = 0; i < MAX_SCORE; ++i)
449                         {
450                                 if(i != ps_primary)
451                                 if(i != ps_secondary)
452                                 if(scores_label[i] != "")
453                                         s = strcat(s, " ", scores_label[i]);
454                         }
455                         if(ps_secondary != ps_primary)
456                                 s = strcat(s, " ", scores_label[ps_secondary]);
457                         s = strcat(s, " ", scores_label[ps_primary]);
458                         argc = tokenizebyseparator(strcat("x ", s), " ");
459                 }
460         }
461
462
463         sbar_num_fields = 0;
464
465         drawfont = sbar_font;
466         digit = stringwidth("0123456789", FALSE) / 10;
467
468         for(i = 0; i < argc - 1; ++i)
469         {
470                 float nocomplain;
471                 str = argv(i+1);
472
473                 nocomplain = FALSE;
474                 if(substring(str, 0, 1) == "?")
475                 {
476                         nocomplain = TRUE;
477                         str = substring(str, 1, strlen(str) - 1);
478                 }
479
480                 slash = strstrofs(str, "/", 0);
481                 if(slash >= 0)
482                 {
483                         pattern = substring(str, 0, slash);
484                         str = substring(str, slash + 1, strlen(str) - (slash + 1));
485
486                         if not(isGametypeInFilter(gametype, teamplay, pattern))
487                                 continue;
488                 }
489
490                 strunzone(sbar_title[sbar_num_fields]);
491                 sbar_title[sbar_num_fields] = strzone(str);
492                 sbar_size[sbar_num_fields] = stringwidth(str, FALSE);
493                 str = strtolower(str);
494
495                 if(str == "ping") {
496                         sbar_field[sbar_num_fields] = SP_PING;
497                 } else if(str == "pl") {
498                         sbar_field[sbar_num_fields] = SP_PL;
499                 } else if(str == "kd" || str == "kdr" || str == "kdratio" || str == "k/d") {
500                         sbar_field[sbar_num_fields] = SP_KDRATIO;
501                 } else if(str == "name" || str == "nick") {
502                         sbar_field[sbar_num_fields] = SP_NAME;
503                         sbar_size[sbar_num_fields] = MIN_NAMELEN; // minimum size? any use?
504                         have_name = 1;
505                 } else if(str == "|") {
506                         sbar_field[sbar_num_fields] = SP_SEPARATOR;
507                         have_separator = 1;
508                 } else {
509                         for(j = 0; j < MAX_SCORE; ++j)
510                                 if(str == strtolower(scores_label[j]))
511                                         goto found; // sorry, but otherwise fteqcc -O3 miscompiles this and warns about "unreachable code"
512 :notfound
513                         if(str == "frags")
514                         {
515                                 j = SP_FRAGS;
516                         }
517                         else
518                         {
519                                 if not(nocomplain)
520                                         print(strcat("^1Error:^7 Unknown score field: '", str, "'\n"));
521                                 continue;
522                         }
523 :found
524                         sbar_field[sbar_num_fields] = j;
525                         if(j == ps_primary)
526                                 have_primary = 1;
527                         if(j == ps_secondary)
528                                 have_secondary = 1;
529                 }
530                 ++sbar_num_fields;
531                 if(sbar_num_fields >= MAX_SBAR_FIELDS)
532                         break;
533         }
534
535         if(scores_flags[ps_primary] & SFL_ALLOW_HIDE)
536                 have_primary = 1;
537         if(scores_flags[ps_secondary] & SFL_ALLOW_HIDE)
538                 have_secondary = 1;
539         if(ps_primary == ps_secondary)
540                 have_secondary = 1;
541         missing = !have_primary + !have_secondary + !have_separator + !have_name;
542
543         if(sbar_num_fields+missing < MAX_SBAR_FIELDS)
544         {
545                 if(!have_name)
546                 {
547                         strunzone(sbar_title[sbar_num_fields]);
548                         for(i = sbar_num_fields; i > 0; --i)
549                         {
550                                 sbar_title[i] = sbar_title[i-1];
551                                 sbar_size[i] = sbar_size[i-1];
552                                 sbar_field[i] = sbar_field[i-1];
553                         }
554                         sbar_title[0] = strzone("name");
555                         sbar_field[0] = SP_NAME;
556                         sbar_size[0] = MIN_NAMELEN; // minimum size? any use?
557                         ++sbar_num_fields;
558                         print("fixed missing field 'name'\n");
559
560                         if(!have_separator)
561                         {
562                                 strunzone(sbar_title[sbar_num_fields]);
563                                 for(i = sbar_num_fields; i > 1; --i)
564                                 {
565                                         sbar_title[i] = sbar_title[i-1];
566                                         sbar_size[i] = sbar_size[i-1];
567                                         sbar_field[i] = sbar_field[i-1];
568                                 }
569                                 sbar_title[1] = strzone("|");
570                                 sbar_field[1] = SP_SEPARATOR;
571                                 sbar_size[1] = stringwidth("|", FALSE);
572                                 ++sbar_num_fields;
573                                 print("fixed missing field '|'\n");
574                         }
575                 }
576                 else if(!have_separator)
577                 {
578                         strunzone(sbar_title[sbar_num_fields]);
579                         sbar_title[sbar_num_fields] = strzone("|");
580                         sbar_size[sbar_num_fields] = stringwidth("|", FALSE);
581                         sbar_field[sbar_num_fields] = SP_SEPARATOR;
582                         ++sbar_num_fields;
583                         print("fixed missing field '|'\n");
584                 }
585
586                 if(!have_secondary)
587                 {
588                         strunzone(sbar_title[sbar_num_fields]);
589                         sbar_title[sbar_num_fields] = strzone(scores_label[ps_secondary]);
590                         sbar_size[sbar_num_fields] = stringwidth(sbar_title[sbar_num_fields], FALSE);
591                         sbar_field[sbar_num_fields] = ps_secondary;
592                         ++sbar_num_fields;
593                         print("fixed missing field '", scores_label[ps_secondary], "'\n");
594                 }
595
596                 if(!have_primary)
597                 {
598                         strunzone(sbar_title[sbar_num_fields]);
599                         sbar_title[sbar_num_fields] = strzone(scores_label[ps_primary]);
600                         sbar_size[sbar_num_fields] = stringwidth(sbar_title[sbar_num_fields], FALSE);
601                         sbar_field[sbar_num_fields] = ps_primary;
602                         ++sbar_num_fields;
603                         print("fixed missing field '", scores_label[ps_primary], "'\n");
604                 }
605         }
606
607         sbar_field[sbar_num_fields] = SP_END;
608 }
609
610 // MOVEUP::
611 vector sbar_field_rgb;
612 string sbar_field_icon0;
613 string sbar_field_icon1;
614 string sbar_field_icon2;
615 vector sbar_field_icon0_rgb;
616 vector sbar_field_icon1_rgb;
617 vector sbar_field_icon2_rgb;
618 float sbar_field_icon0_alpha;
619 float sbar_field_icon1_alpha;
620 float sbar_field_icon2_alpha;
621 string Sbar_GetField(entity pl, float field)
622 {
623         float tmp, num, denom, f;
624         string str;
625         sbar_field_rgb = '1 1 1';
626         sbar_field_icon0 = "";
627         sbar_field_icon1 = "";
628         sbar_field_icon2 = "";
629         sbar_field_icon0_rgb = '1 1 1';
630         sbar_field_icon1_rgb = '1 1 1';
631         sbar_field_icon2_rgb = '1 1 1';
632         sbar_field_icon0_alpha = 1;
633         sbar_field_icon1_alpha = 1;
634         sbar_field_icon2_alpha = 1;
635         switch(field)
636         {
637                 case SP_PING:
638                         if not(pl.gotscores)
639                                 return "\x8D\x8D\x8D"; // >>> sign
640                         str = getplayerkey(pl.sv_entnum, "ping");
641                         if(str == "0")
642                                 return "N/A";
643                         tmp = max(0, min(220, stof(str)-80)) / 220;
644                         sbar_field_rgb = '1 1 1' - '0 1 1'*tmp;
645                         return str;
646
647                 case SP_PL:
648                         if not(pl.gotscores)
649                                 return "N/A";
650                         str = getplayerkey(pl.sv_entnum, "pl");
651                         if(str == "0")
652                                 return "";
653                         tmp = bound(0, stof(str), 20) / 20; // 20% is REALLY BAD pl
654                         sbar_field_rgb = '1 0.5 0.5' - '0 0.5 0.5'*tmp;
655                         return str;
656
657                 case SP_NAME:
658                         if(ready_waiting && pl.ready)
659                         {
660                                 sbar_field_icon0 = "gfx/sb_player_ready";
661                         }
662                         else if(!teamplay)
663                         {
664                                 f = stof(getplayerkey(pl.sv_entnum, "colors"));
665                                 {
666                                         sbar_field_icon0 = "gfx/sb_playercolor_base";
667                                         sbar_field_icon1 = "gfx/sb_playercolor_shirt";
668                                         sbar_field_icon1_rgb = colormapPaletteColor(floor(f / 16), 0);
669                                         sbar_field_icon2 = "gfx/sb_playercolor_pants";
670                                         sbar_field_icon2_rgb = colormapPaletteColor(mod(f, 16), 1);
671                                 }
672                         }
673                         return GetPlayerName(pl.sv_entnum);
674
675                 case SP_FRAGS:
676                         f = pl.(scores[SP_KILLS]);
677                         f -= pl.(scores[SP_SUICIDES]);
678                         return ftos(f);
679
680                 case SP_KDRATIO:
681                         num = pl.(scores[SP_KILLS]);
682                         denom = pl.(scores[SP_DEATHS]);
683
684                         if(denom == 0) {
685                                 sbar_field_rgb = '0 1 0';
686                                 str = ftos(num);
687                         } else if(num <= 0) {
688                                 sbar_field_rgb = '1 0 0';
689                                 str = ftos(num/denom);
690                         } else
691                                 str = ftos(num/denom);
692
693                         tmp = strstrofs(str, ".", 0);
694                         if(tmp > 0)
695                                 str = substring(str, 0, tmp+2);
696                         return str;
697
698                 default:
699                         tmp = pl.(scores[field]);
700                         f = scores_flags[field];
701                         if(field == ps_primary)
702                                 sbar_field_rgb = '1 1 0';
703                         else if(field == ps_secondary)
704                                 sbar_field_rgb = '0 1 1';
705                         else
706                                 sbar_field_rgb = '1 1 1';
707                         return ScoreString(f, tmp);
708         }
709         //return "error";
710 }
711
712 float xmin, xmax, ymin, ymax, sbwidth;
713 float sbar_fixscoreboardcolumnwidth_len;
714 float sbar_fixscoreboardcolumnwidth_iconlen;
715 float sbar_fixscoreboardcolumnwidth_marginlen;
716
717 float stringwidth_colors(string s)
718 {
719         return stringwidth(s, TRUE);
720 }
721
722 float stringwidth_nocolors(string s)
723 {
724         return stringwidth(s, FALSE);
725 }
726
727 string Sbar_FixScoreboardColumnWidth(float i, string str)
728 {
729         float field, maxsize, j, f;
730         vector sz;
731         field = sbar_field[i];
732
733         if(field == SP_NAME) // name gets all remaining space
734         {
735                 maxsize = (xmax - xmin) / sbar_fontsize_x;
736                 for(j = 0; j < sbar_num_fields; ++j) if(j != i) if(sbar_field[j] != SP_SEPARATOR)
737                         maxsize -= sbar_size[j] + 1;
738                 maxsize += 1;
739                 str = textShortenToWidth(str, maxsize, stringwidth_colors);
740                 sbar_fixscoreboardcolumnwidth_len = stringwidth(str, TRUE);
741         }
742         else
743                 sbar_fixscoreboardcolumnwidth_len = stringwidth(str, FALSE);
744
745         sbar_fixscoreboardcolumnwidth_iconlen = 0;
746
747         if(sbar_field_icon0 != "")
748         {
749                 sz = drawgetimagesize(sbar_field_icon0);
750                 f = sz_x / sz_y;
751                 if(sbar_fixscoreboardcolumnwidth_iconlen < f)
752                         sbar_fixscoreboardcolumnwidth_iconlen = f;
753         }
754
755         if(sbar_field_icon1 != "")
756         {
757                 sz = drawgetimagesize(sbar_field_icon1);
758                 f = sz_x / sz_y;
759                 if(sbar_fixscoreboardcolumnwidth_iconlen < f)
760                         sbar_fixscoreboardcolumnwidth_iconlen = f;
761         }
762
763         if(sbar_field_icon2 != "")
764         {
765                 sz = drawgetimagesize(sbar_field_icon2);
766                 f = sz_x / sz_y;
767                 if(sbar_fixscoreboardcolumnwidth_iconlen < f)
768                         sbar_fixscoreboardcolumnwidth_iconlen = f;
769         }
770
771         sbar_fixscoreboardcolumnwidth_iconlen *= sbar_fontsize_y / sbar_fontsize_x; // fix icon aspect
772
773         if(sbar_fixscoreboardcolumnwidth_iconlen != 0 && sbar_fixscoreboardcolumnwidth_len != 0)
774                 sbar_fixscoreboardcolumnwidth_marginlen = stringwidth(" ", FALSE);
775         else
776                 sbar_fixscoreboardcolumnwidth_marginlen = 0;
777
778         f = sbar_fixscoreboardcolumnwidth_len + sbar_fixscoreboardcolumnwidth_marginlen + sbar_fixscoreboardcolumnwidth_iconlen;
779         if(sbar_size[i] < f)
780                 sbar_size[i] = f;
781
782         return str;
783 }
784
785 void Sbar_PrintScoreboardItem(vector pos, entity pl, float is_self)
786 {
787         vector tmp;
788         string str;
789         float i, field;
790         float is_spec;
791         is_spec = (GetPlayerColor(pl.sv_entnum) == COLOR_SPECTATOR);
792
793         // Layout:
794         tmp_z = 0;
795         if(is_self)
796         {
797                 tmp_x = sbwidth;
798                 tmp_y = sbar_fontsize_y;
799                 drawfill(pos - '1 1 0', tmp + '2 2 0', '1 1 1', 0.3, DRAWFLAG_NORMAL);
800         }
801         tmp_y = 0;
802
803         for(i = 0; i < sbar_num_fields; ++i)
804         {
805                 field = sbar_field[i];
806                 if(field == SP_SEPARATOR)
807                         break;
808
809                 if(is_spec && field != SP_NAME && field != SP_PING) {
810                         pos_x += sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
811                         continue;
812                 }
813                 str = Sbar_GetField(pl, field);
814                 str = Sbar_FixScoreboardColumnWidth(i, str);
815
816                 pos_x += sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
817
818                 if(field == SP_NAME) {
819                         tmp_x = sbar_fontsize_x*(sbar_size[i] - sbar_fixscoreboardcolumnwidth_iconlen - sbar_fixscoreboardcolumnwidth_marginlen) + sbar_fontsize_x;
820                         drawcolorcodedstring(pos - tmp, str, sbar_fontsize, 1, DRAWFLAG_NORMAL);
821                 } else {
822                         tmp_x = sbar_fixscoreboardcolumnwidth_len*sbar_fontsize_x + sbar_fontsize_x;
823                         drawstring(pos - tmp, str, sbar_fontsize, sbar_field_rgb, 1, DRAWFLAG_NORMAL);
824                 }
825
826                 tmp_x = sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
827                 if(sbar_field_icon0 != "")
828                         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, 0);
829                 if(sbar_field_icon1 != "")
830                         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, 0);
831                 if(sbar_field_icon2 != "")
832                         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, 0);
833         }
834
835         if(sbar_field[i] == SP_SEPARATOR)
836         {
837                 pos_x = xmax;
838                 for(i = sbar_num_fields-1; i > 0; --i)
839                 {
840                         field = sbar_field[i];
841                         if(field == SP_SEPARATOR)
842                                 break;
843
844                         if(is_spec && field != SP_NAME && field != SP_PING) {
845                                 pos_x -= sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
846                                 continue;
847                         }
848
849                         str = Sbar_GetField(pl, field);
850                         str = Sbar_FixScoreboardColumnWidth(i, str);
851
852                         if(field == SP_NAME) {
853                                 tmp_x = sbar_fontsize_x*sbar_fixscoreboardcolumnwidth_len; // left or right aligned? let's put it right...
854                                 drawcolorcodedstring(pos - tmp, str, sbar_fontsize, 1, DRAWFLAG_NORMAL);
855                         } else {
856                                 tmp_x = sbar_fontsize_x*sbar_fixscoreboardcolumnwidth_len; //strlen(str);
857                                 drawstring(pos - tmp, str, sbar_fontsize, sbar_field_rgb, 1, DRAWFLAG_NORMAL);
858                         }
859
860                         tmp_x = sbar_fontsize_x*sbar_size[i];
861                         if(sbar_field_icon0 != "")
862                                 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, 0);
863                         if(sbar_field_icon1 != "")
864                                 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, 0);
865                         if(sbar_field_icon2 != "")
866                                 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, 0);
867
868                         pos_x -= sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
869                 }
870         }
871 }
872
873 float lastpingstime;
874 float scoreboard_bottom;
875 void Sbar_DrawScoreboard()
876 {
877         //float xmin, ymin, xmax, ymax;
878         vector rgb, pos, tmp, sbar_save;
879         entity pl, tm;
880         float specs, i;
881         float center_x;
882
883         if(time > lastpingstime + 10)
884         {
885                 localcmd("pings\n");
886                 lastpingstime = time;
887         }
888
889         sbwidth = Sbar_GetWidth(6.5 * sbar_fontsize_y);
890
891         xmin = 0.5 * (vid_conwidth - sbwidth);
892         ymin = 45;
893
894         xmax = vid_conwidth - xmin;
895     ymax = vid_conheight - 0.2*vid_conheight;
896
897         center_x = xmin + 0.5*sbwidth;
898
899         //Sbar_UpdateFields();
900
901         // Initializes position
902         //pos_x = xmin;
903         pos_y = ymin;
904         pos_z = 0;
905
906         // Heading
907         drawfont = sbar_bigfont;
908         pos_x = center_x - stringwidth("Scoreboard", TRUE)*0.5*24;
909         drawstring(pos, "Scoreboard", '24 24 0', '1 1 1', 1, DRAWFLAG_NORMAL);
910         pos_x = xmin;
911         pos_y += 24 + 4;
912
913         // Titlebar background:
914         tmp_x = sbwidth;
915         tmp_y = sbar_fontsize_y;
916         drawfill(pos - '1 1 0', tmp + '2 2 0', '0.5 0.5 0.5', 0.5, DRAWFLAG_NORMAL);
917
918         drawfont = sbar_font;
919
920         for(i = 0; i < sbar_num_fields; ++i)
921         {
922                 if(sbar_field[i] == SP_SEPARATOR)
923                         break;
924                 drawstring(pos, sbar_title[i], sbar_fontsize, '1 1 1', 1, DRAWFLAG_NORMAL);
925                 pos_x += sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
926         }
927
928         if(sbar_field[i] == SP_SEPARATOR)
929         {
930                 pos_x = xmax + sbar_fontsize_x;
931                 tmp_y = tmp_z = 0;
932                 for(i = sbar_num_fields-1; i > 0; --i)
933                 {
934                         if(sbar_field[i] == SP_SEPARATOR)
935                                 break;
936
937                         pos_x -= sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
938                         /**
939                          * FTEQCC BUG!
940                          * Using the following line will mess it all up:
941                          **
942                          * tmp_x = sbar_size[i] - strlen(sbar_title[i])*8;
943                          */
944                         tmp_x = sbar_fontsize_x*sbar_size[i];
945                         tmp_x -= stringwidth(sbar_title[i], FALSE)*sbar_fontsize_x;
946                         drawstring(pos + tmp, sbar_title[i], sbar_fontsize, '1 1 1', 1, DRAWFLAG_NORMAL);
947                 }
948         }
949
950         pos_x = xmin;
951         pos_y += 1.5 * sbar_fontsize_y;
952
953         sbar_save = sbar;
954         sbar = '0 0 0';
955
956         if(teamplay)
957         {
958                 //for(tm = sortedTeams.sort_next; tm; tm = tm.sort_next)
959                 for(tm = teams.sort_next; tm; tm = tm.sort_next)
960                 {
961                         if(!tm.team_size || tm.team == COLOR_SPECTATOR)
962                                 continue;
963
964                         rgb = GetTeamRGB(tm.team);
965
966                         pos_x = xmin;
967
968                         Sbar_DrawXNum(sbar + pos - '6.5 0 0' * sbar_fontsize_y, tm.(teamscores[ts_primary]), 4, sbar_fontsize_y * 1.5, rgb, 0, 1, DRAWFLAG_NORMAL);
969
970                         if(ts_primary != ts_secondary)
971                         Sbar_DrawXNum(sbar + pos - '4.5 0 0' * sbar_fontsize_y + '0 1.5 0' * sbar_fontsize_y, tm.(teamscores[ts_secondary]), 4, sbar_fontsize_y * 1, rgb, 0, 1, DRAWFLAG_NORMAL);
972
973                         specs = tm.team_size;
974
975                         if(specs < 2)
976                                 specs = 2;
977
978                         tmp_x = sbwidth;
979                         tmp_y = 1.25 * sbar_fontsize_y * specs;
980                         drawfill(pos - '1 1 0', tmp + '2 0 0', rgb, 0.2, DRAWFLAG_NORMAL);
981
982                         for(pl = players.sort_next; pl; pl = pl.sort_next)
983                         {
984                                 if(pl.team != tm.team)
985                                         continue;
986                                 Sbar_PrintScoreboardItem(pos, pl, (pl.sv_entnum == player_localentnum - 1));
987                                 pos_y += 1.25 * sbar_fontsize_y;
988                                 tmp_y -= 1.25 * sbar_fontsize_y;
989                         }
990                         pos_y += tmp_y + 1.5 * sbar_fontsize_y;
991                 }
992                 // rgb := tempvector :)
993                 rgb = pos + '0 1.5 0' * sbar_fontsize_y;
994                 pos_y += 3 * sbar_fontsize_y;
995                 specs = 0;
996                 for(pl = players.sort_next; pl; pl = pl.sort_next)
997                 {
998                         if(pl.team != COLOR_SPECTATOR)
999                                 continue;
1000                         Sbar_PrintScoreboardItem(pos, pl, (pl.sv_entnum == player_localentnum - 1));
1001                         pos += '0 1.25 0' * sbar_fontsize_y;
1002                         ++specs;
1003                 }
1004
1005                 if(specs)
1006                         drawstring(rgb, "Spectators", sbar_fontsize, '1 1 1', 1, 0);
1007         } else {
1008                 pos_x = xmin;
1009                 for(pl = players.sort_next; pl; pl = pl.sort_next)
1010                 {
1011                         if(pl.team == COLOR_SPECTATOR)
1012                                 continue;
1013                         Sbar_PrintScoreboardItem(pos, pl, (pl.sv_entnum == player_localentnum - 1));
1014                         pos_y += 1.25 * sbar_fontsize_y;
1015                         tmp_y -= 1.25 * sbar_fontsize_y;
1016                 }
1017
1018                 // rgb := tempvector :)
1019                 rgb = pos + '0 1.5 0' * sbar_fontsize_y;
1020                 pos_y += 3 * sbar_fontsize_y;
1021                 specs = 0;
1022                 for(pl = players.sort_next; pl; pl = pl.sort_next)
1023                 {
1024                         if(pl.team != COLOR_SPECTATOR)
1025                                 continue;
1026                         Sbar_PrintScoreboardItem(pos, pl, (pl.sv_entnum == player_localentnum - 1));
1027                         pos += '0 1.25 0' * sbar_fontsize_y;
1028                         ++specs;
1029                 }
1030
1031                 if(specs)
1032                         drawstring(rgb, "Spectators", sbar_fontsize, '1 1 1', 1, 0);
1033         }
1034
1035         string str;
1036         float tl, fl, ll;
1037         str = strcat("playing on ^2", shortmapname, "^7");
1038         tl = getstatf(STAT_TIMELIMIT);
1039         fl = getstatf(STAT_FRAGLIMIT);
1040         ll = getstatf(STAT_LEADLIMIT);
1041         if(gametype == GAME_LMS)
1042         {
1043                 if(tl > 0)
1044                         str = strcat(str, " for up to ^1", ftos(tl), " minutes^7");
1045         }
1046         else
1047         {
1048                 if(tl > 0)
1049                         str = strcat(str, " for ^1", ftos(tl), " minutes^7");
1050                 if(fl > 0)
1051                 {
1052                         if(tl > 0)
1053                                 str = strcat(str, " or");
1054                         if(teamplay)
1055                         {
1056                                 str = strcat(str, " until ^3", ScoreString(teamscores_flags[ts_primary], fl));
1057                                 if(teamscores_label[ts_primary] == "score")
1058                                         str = strcat(str, " points^7");
1059                                 else if(teamscores_label[ts_primary] == "fastest")
1060                                         str = strcat(str, " is beaten^7");
1061                                 else
1062                                         str = strcat(str, " ", teamscores_label[ts_primary]);
1063                         }
1064                         else
1065                         {
1066                                 str = strcat(str, " until ^3", ScoreString(scores_flags[ps_primary], fl));
1067                                 if(scores_label[ps_primary] == "score")
1068                                         str = strcat(str, " points^7");
1069                                 else if(scores_label[ps_primary] == "fastest")
1070                                         str = strcat(str, " is beaten^7");
1071                                 else
1072                                         str = strcat(str, " ", scores_label[ps_primary]);
1073                         }
1074                 }
1075                 if(ll > 0)
1076                 {
1077                         if(tl > 0 || fl > 0)
1078                                 str = strcat(str, " or");
1079                         if(teamplay)
1080                         {
1081                                 str = strcat(str, " until a lead of ^3", ScoreString(teamscores_flags[ts_primary], ll));
1082                                 if(teamscores_label[ts_primary] == "score")
1083                                         str = strcat(str, " points^7");
1084                                 else if(teamscores_label[ts_primary] == "fastest")
1085                                         str = strcat(str, " is beaten^7");
1086                                 else
1087                                         str = strcat(str, " ", teamscores_label[ts_primary]);
1088                         }
1089                         else
1090                         {
1091                                 str = strcat(str, " until a lead of ^3", ScoreString(scores_flags[ps_primary], ll));
1092                                 if(scores_label[ps_primary] == "score")
1093                                         str = strcat(str, " points^7");
1094                                 else if(scores_label[ps_primary] == "fastest")
1095                                         str = strcat(str, " is beaten^7");
1096                                 else
1097                                         str = strcat(str, " ", scores_label[ps_primary]);
1098                         }
1099                 }
1100         }
1101
1102
1103         pos_y += 1.2 * sbar_fontsize_y;
1104         drawcolorcodedstring(pos + '0.5 0 0' * (sbwidth - sbar_fontsize_x * stringwidth(str, TRUE)), str, sbar_fontsize, 0.8, 0);
1105
1106         sbar = sbar_save;
1107         scoreboard_bottom = pos_y + 2 * sbar_fontsize_y;
1108 }
1109
1110 string MakeRaceString(float cp, float mytime, float histime, float lapdelta, string hisname)
1111 {
1112         string col;
1113         string timestr;
1114         string cpname;
1115         string lapstr;
1116         lapstr = "";
1117
1118         if(histime == 0) // goal hit
1119         {
1120                 if(mytime > 0)
1121                 {
1122                         timestr = strcat("+", ftos_decimals(+mytime, 1));
1123                         col = "^1";
1124                 }
1125                 else if(mytime == 0)
1126                 {
1127                         timestr = "+0.0";
1128                         col = "^3";
1129                 }
1130                 else
1131                 {
1132                         timestr = strcat("-", ftos_decimals(-mytime, 1));
1133                         col = "^2";
1134                 }
1135
1136                 if(lapdelta > 0)
1137                 {
1138                         lapstr = strcat(" (-", ftos(lapdelta), "L)");
1139                         col = "^2";
1140                 }
1141                 else if(lapdelta < 0)
1142                 {
1143                         lapstr = strcat(" (+", ftos(-lapdelta), "L)");
1144                         col = "^1";
1145                 }
1146         }
1147         else if(histime > 0) // anticipation
1148         {
1149                 if(mytime >= histime)
1150                         timestr = strcat("+", ftos_decimals(mytime - histime, 1));
1151                 else
1152                         timestr = mmsss(histime * 10);
1153                 col = "^3";
1154         }
1155         else
1156                 col = "^7";
1157
1158         if(cp)
1159                 cpname = strcat("Intermediate ", ftos(cp));
1160         else
1161                 cpname = "Finish line";
1162
1163         if(histime < 0)
1164                 return strcat(col, cpname);
1165         else if(hisname == "")
1166                 return strcat(col, cpname, " (", timestr, ")");
1167         else
1168                 return strcat(col, cpname, " (", timestr, " ", strcat(hisname, col, lapstr), ")");
1169 }
1170
1171 void Sbar_Score(float margin)
1172 {
1173         float timelimit, minutes, seconds, timeleft, minutesLeft, secondsLeft, distribution, myplace, score, desiredPlayerId;
1174         vector sbar_save, place, timer_color, offset;
1175         entity tm, pl, me;
1176         sbar_save = sbar;\r
1177
1178         vector bottomright;
1179         bottomright_x = vid_conwidth;
1180         bottomright_y = vid_conheight;
1181         bottomright_z = 0;
1182
1183         vector topright;
1184         topright_x = vid_conwidth;
1185         topright_y = 0;
1186         topright_z = 0;
1187
1188         sbar_alpha_bg = cvar("sbar_alpha_bg");\r
1189         //get the ID (could be "me", or the player I'm spectating)\r
1190         desiredPlayerId = player_localentnum - 1;\r
1191         if (spectatee_status) {\r
1192                 if (spectatee_status != -1) {\r
1193                         desiredPlayerId = spectatee_status - 1;\r
1194                 }\r
1195         }
1196 \r
1197         myteam = GetPlayerColor(desiredPlayerId);
1198
1199         sbar_y = vid_conheight - (32+12);
1200         sbar_x -= margin;
1201
1202         offset = '0 0 0';
1203         place_z = 0;
1204         if(teamplay)
1205         {
1206                 // Layout:
1207                 //
1208                 //   team1 team3 team4
1209                 //
1210                 //         TEAM2
1211                 //for(i = 0; i < 4; ++i)
1212                 if (cvar("vid_conwidth") >= 800) {
1213                         place_x = 196;
1214                         place_y = 36;
1215
1216                 }
1217                 else {
1218                         place_x = 196;
1219                         place_y = 86;
1220                 }
1221
1222                 float max_fragcount;
1223                 max_fragcount = -999;
1224
1225                 for(tm = teams.sort_next; tm; tm = tm.sort_next)
1226                 {
1227                         if(tm.team == COLOR_SPECTATOR || !tm.team_size) // no players? don't display
1228                                 continue;
1229                         // -32*4 = -128
1230                         score = tm.(teamscores[ts_primary]);
1231
1232                         if (score > max_fragcount)
1233                                 max_fragcount = score;
1234
1235                         if(tm.team == myteam) {
1236                                 if (max_fragcount == score)
1237                                         Sbar_DrawXNum(bottomright - element_offset - place, score, 4, 34, GetTeamRGB(tm.team) * 0.8, 1, 1, DRAWFLAG_NORMAL);
1238                                 else
1239                                         Sbar_DrawXNum(bottomright - element_offset - place, score, 4, 34, GetTeamRGB(tm.team) * 0.8, 0, 1, DRAWFLAG_NORMAL);
1240                         }
1241                         else
1242                         {
1243                                 if (max_fragcount == score)
1244                                         Sbar_DrawXNum(bottomright - element_offset - place + '132 -6 0' - offset, score, 4, 16, GetTeamRGB(tm.team) * 0.8, 1, 1, DRAWFLAG_NORMAL);
1245                                 else
1246                                         Sbar_DrawXNum(bottomright - element_offset - place + '132 -6 0' - offset, score, 4, 16, GetTeamRGB(tm.team) * 0.8, 0, 1, DRAWFLAG_NORMAL);
1247                                 offset_y -= 16;
1248                         }
1249                 }
1250         } else {
1251                 // me vector := [team/connected frags id]
1252
1253                 myplace = 0;
1254                 for(me = players.sort_next; me; me = me.sort_next)
1255                 {
1256                         if(me.team != COLOR_SPECTATOR)
1257                                 ++myplace;
1258                         if(me.sv_entnum == desiredPlayerId)
1259                                 break;
1260                 }
1261
1262                 pl = players.sort_next;
1263                 if(pl == me)
1264                         pl = pl.sort_next;
1265
1266                 if(pl) {
1267                         distribution = me.(scores[ps_primary]);
1268                         distribution -= pl.(scores[ps_primary]);
1269                 } else
1270                         distribution = 0;
1271
1272                 if (cvar("vid_conwidth") >= 800) {
1273                         place_x = 196;
1274                         place_y = 36;
1275
1276                 }
1277                 else { // move the scores if vid_conwidth < 800
1278                         place_x = 196;
1279                         place_y = 86;
1280                 }
1281                 score = me.(scores[ps_primary]);
1282
1283                 if(distribution >= 0)
1284                 {
1285                         if (distribution != 0) {
1286                                 // draw a + sign in front of the score
1287                                 if (distribution < 10) { drawpic(bottomright - element_offset - place + '132 -5 0' + '32 0 0', "gfx/hud/num_plus", '16 16 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE); }
1288                                 else if (distribution < 100) { drawpic(bottomright - element_offset - place + '132 -5 0' + '16 0 0', "gfx/hud/num_plus", '16 16 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE); }
1289                                 else if (distribution < 1000) { drawpic(bottomright - element_offset - place + '132 -5 0', "gfx/hud/num_plus", '16 16 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE); }
1290                         }
1291
1292                         Sbar_DrawXNum(bottomright - element_offset - place + '132 -6 0', distribution, 4, 16, ' 1 1 1', 0, 1, DRAWFLAG_NORMAL);
1293                         Sbar_DrawXNum(bottomright - element_offset - place, score, 4, 34, '1 1 1', 1, 1, DRAWFLAG_NORMAL);
1294                 }
1295                 else if(distribution >= -5)
1296                 {
1297                         Sbar_DrawXNum(bottomright - element_offset - place + '132 -6 0', distribution, 4, 16, ' 1 1 0', 0, 1, DRAWFLAG_NORMAL);
1298                         Sbar_DrawXNum(bottomright - element_offset - place, score, 4, 34, '1 1 0', 0, 1, DRAWFLAG_NORMAL);
1299                 }
1300                 else {
1301                         Sbar_DrawXNum(bottomright - element_offset - place + '132 -6 0', distribution, 4, 16, ' 1 0 0', 0, 1, DRAWFLAG_NORMAL);
1302                         Sbar_DrawXNum(bottomright - element_offset - place, score, 4, 34, '1 0 0', 0, 1, DRAWFLAG_NORMAL);
1303                 }
1304         }
1305
1306         //draw the remaining or elapsed time
1307         timelimit = getstatf(STAT_TIMELIMIT);
1308
1309         vector bgpos;
1310         if(timelimit > 0)
1311         {
1312                 timeleft = max(0, timelimit * 60 + getstatf(STAT_GAMESTARTTIME) - time);
1313                 timeleft = ceil(timeleft);
1314                 minutesLeft = floor(timeleft / 60);
1315                 secondsLeft = timeleft - minutesLeft*60;
1316
1317                 if(minutesLeft >= 5) {
1318                         timer_color = '1 1 1'; //white
1319                 } else if(minutesLeft >= 1) {
1320                         timer_color = '1 1 0'; //yellow
1321                 } else {
1322                         timer_color = '1 0 0'; //red
1323                 }
1324
1325                 if (warmup_stage) {
1326                         timer_color = '1 1 1'; //don't use red or yellow for timer during warmup
1327                 }
1328
1329                 if (cvar("sbar_increment_maptime")) {
1330                         if (time < getstatf(STAT_GAMESTARTTIME)) {
1331                                 //while restart is still active, show negative counter
1332                                 minutes = 0;
1333                                 seconds = ceil(getstatf(STAT_GAMESTARTTIME) - time);
1334                         } else {
1335                                 float elapsedTime;
1336                                 elapsedTime = floor(time - getstatf(STAT_GAMESTARTTIME)); //127
1337                                 minutes = floor(elapsedTime / 60);
1338                                 seconds = elapsedTime - minutes*60;
1339                         }
1340                 } else {
1341                         minutes = minutesLeft;
1342                         seconds = secondsLeft;
1343                 }
1344
1345                 if (minutes == 0)
1346                         bgpos_x = topright_x - 36 - 7 - 12;
1347                 else if (minutes < 10) // nudge the timer background left if more digits are drawn
1348                         bgpos_x = topright_x - 54 - 17 - 12;
1349                 else if (minutes < 100)
1350                         bgpos_x = topright_x - 72 - 17 - 12;
1351                 else
1352                         bgpos_x = topright_x - 90 - 17 - 12;
1353                 bgpos_y = 0;
1354                 bgpos_z = 0;
1355
1356                 if (cvar("viewsize") <= 100) { // draw timer background when viewsize <= 100
1357                         if (teamplay)
1358                                 drawpic(bgpos, "gfx/hud/sb_timerbg", '120 30 0', GetTeamRGB(myteam) * cvar("sbar_color_bg_team"), sbar_alpha_bg, 0); // timer bg color = myteam color
1359                         else {
1360                                 color_x = cvar("sbar_color_bg_r");
1361                                 color_y = cvar("sbar_color_bg_g");
1362                                 color_z = cvar("sbar_color_bg_b");
1363
1364                                 drawpic(bgpos, "gfx/hud/sb_timerbg", '120 30 0', color, sbar_alpha_bg, 0);
1365                         }
1366                 }
1367
1368                 if(minutesLeft >= 1 || (cvar("sbar_increment_maptime") && minutes >= 1) ) {
1369                         Sbar_DrawXNum(topright - '103 0 0', minutes, 3, 18, timer_color, 0, sbar_alpha_fg, 0);
1370                         drawpic(topright - '53 0 0', "gfx/hud/num_colon", '18 18 0', timer_color, sbar_alpha_fg, 0);
1371                 }
1372                 Sbar_DrawXNum(topright - '36 0 0' - '3 0 0', seconds, -2, 18, timer_color, 0, 1, DRAWFLAG_NORMAL);
1373
1374         } else {
1375                 timer_color = '1 1 1'; //white
1376                 minutes = floor(time / 60);
1377                 seconds = floor(time - minutes*60);
1378
1379                 if (minutes < 10)
1380                         bgpos_x = topright_x - 54 - 17 - 12;
1381                 else if (minutes < 100) // nudge the timer background left if more digits are drawn
1382                         bgpos_x = topright_x - 72 - 17 - 12;
1383                 else
1384                         bgpos_x = topright_x - 90 - 17 - 12;
1385                 bgpos_y = 0;
1386                 bgpos_z = 0;
1387
1388                 if (cvar("viewsize") <= 100) { // draw timer background when viewsize <= 100
1389                         if (teamplay)
1390                                 drawpic(bgpos, "gfx/hud/sb_timerbg", '120 30 0', GetTeamRGB(myteam), sbar_alpha_bg, 0); // timer bg color = myteam color
1391                         else {
1392                                 color_x = cvar("sbar_color_bg_r");
1393                                 color_y = cvar("sbar_color_bg_g");
1394                                 color_z = cvar("sbar_color_bg_b");
1395
1396                                 drawpic(bgpos, "gfx/hud/sb_timerbg", '120 30 0', color, sbar_alpha_bg, 0);
1397                         }
1398                 }
1399
1400                 Sbar_DrawXNum(topright - '103 0 0', minutes, 3, 18, timer_color, 0, 1, DRAWFLAG_NORMAL);
1401                 drawpic(topright - '53 0 0', "gfx/hud/num_colon", '18 18 0', timer_color, sbar_alpha_fg, 0);
1402                 Sbar_DrawXNum(topright - '36 0 0' - '3 0 0', seconds, -2, 18, timer_color, 0, 1, DRAWFLAG_NORMAL);
1403         }
1404
1405         if(gametype == GAME_RACE)
1406         {
1407                 drawfont = sbar_bigfont;
1408                 float a;
1409                 vector m;
1410                 string s, forcetime;
1411
1412                 m = '0.5 0 0' * vid_conwidth + '0 0.25 0' * vid_conheight;
1413
1414                 if(race_checkpointtime)
1415                 {
1416                         a = bound(0, 2 - (time - race_checkpointtime), 1);
1417                         s = "";
1418                         forcetime = "";
1419                         if(a > 0) // just hit a checkpoint?
1420                         {
1421                                 if(race_time && race_previousbesttime)
1422                                         s = MakeRaceString(race_checkpoint, race_time / 10 - race_previousbesttime / 10, 0, 0, race_previousbestname);
1423                                 else
1424                                         s = MakeRaceString(race_checkpoint, 0, -1, 0, race_previousbestname);
1425                                 if(race_time)
1426                                         forcetime = mmsss(race_time);
1427                         }
1428                         else
1429                         {
1430                                 if(race_laptime && race_nextbesttime)
1431                                 {
1432                                         a = bound(0, 2 - ((race_laptime + race_nextbesttime/10) - time), 1);
1433                                         if(a > 0) // next one?
1434                                         {
1435                                                 s = MakeRaceString(race_nextcheckpoint, time - race_laptime, race_nextbesttime / 10, 0, race_nextbestname);
1436                                         }
1437                                 }
1438                         }
1439
1440                         if(s != "" && a > 0)
1441                         {
1442                                 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
1443                                 drawcolorcodedstring(m - '0 16 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', sbar_alpha_fg * a, 0);
1444                         }
1445
1446                         if(forcetime != "")
1447                         {
1448                                 a = bound(0, (time - race_checkpointtime) / 0.5, 1);
1449                                 drawstring_expanding(m - '16 0 0' * stringwidth(forcetime, FALSE), forcetime, '32 32 0', '1 1 1', sbar_alpha_fg, 0, a);
1450                         }
1451                         else
1452                                 a = 1;
1453
1454                         if(race_laptime)
1455                         {
1456                                 s = mmsss(10*(time - race_laptime));
1457                                 drawstring(m - '16 0 0' * stringwidth(s, FALSE), s, '32 32 0', '1 1 1', sbar_alpha_fg * a, 0);
1458                         }
1459                 }
1460                 else
1461                 {
1462                         if(race_mycheckpointtime)
1463                         {
1464                                 a = bound(0, 2 - (time - race_mycheckpointtime), 1);
1465                                 s = MakeRaceString(race_mycheckpoint, race_mycheckpointdelta / 10, -!race_mycheckpointenemy, race_mycheckpointlapsdelta, race_mycheckpointenemy);
1466                                 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
1467                                 drawcolorcodedstring(m - '0 16 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', sbar_alpha_fg * a, 0);
1468                         }
1469                         if(race_othercheckpointtime && race_othercheckpointenemy != "")
1470                         {
1471                                 a = bound(0, 2 - (time - race_othercheckpointtime), 1);
1472                                 s = MakeRaceString(race_othercheckpoint, -race_othercheckpointdelta / 10, -!race_othercheckpointenemy, race_othercheckpointlapsdelta, race_othercheckpointenemy);
1473                                 dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
1474                                 drawcolorcodedstring(m - '0 0 0' - '8 0 0' * stringwidth(s, TRUE), s, '16 16 0', sbar_alpha_fg * a, 0);
1475                         }
1476                 }
1477
1478                 drawfont = sbar_font;
1479         }
1480
1481         sbar = sbar_save;
1482 }
1483
1484 float Sbar_WouldDrawScoreboard ()
1485 {
1486         if (sb_showscores)
1487                 return 1;
1488         else if (intermission == 1)
1489                 return 1;
1490         else if (intermission == 2)
1491                 return 1;
1492         else if (getstati(STAT_HEALTH) <= 0 && cvar("cl_deathscoreboard"))
1493                 return 1;
1494         else if(sb_showscores_force)
1495                 return 1;
1496         return 0;
1497 }
1498
1499 void CSQC_Strength_Timer() {
1500         vector bottom;
1501
1502         bottom_x = vid_conwidth/2;
1503         bottom_y = vid_conheight;
1504         bottom_z = 0;
1505
1506         float stat_items, dt;
1507         stat_items = getstati(STAT_ITEMS);
1508         /*
1509         if not(stat_items & IT_STRENGTH)
1510                 if not(stat_items & IT_INVINCIBLE)
1511                         return;
1512         */
1513
1514         if (getstati(STAT_HEALTH) <= 0)
1515                 return;
1516
1517         vector picsize;
1518         float strength_time, invincibility_time, countdown_fontsize;
1519
1520         picsize = '22 22 0';
1521         countdown_fontsize = 18;
1522
1523         //strength
1524         strength_time = getstatf(STAT_STRENGTH_FINISHED);
1525         invincibility_time = getstatf(STAT_INVINCIBLE_FINISHED);
1526
1527         if (strength_time) {
1528                 dt = strength_time - time;
1529                 if(dt > 0)
1530                 {
1531                         if(dt < 5)
1532                         {
1533                                 drawpic_expanding_two(bottom + '192 -46 0', "gfx/hud/sb_str", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE,
1534                                         bound(0, (ceil(dt) - dt) / 0.5, 1));
1535                         }
1536                         else
1537                         {
1538                                 drawpic(bottom + '192 -46 0', "gfx/hud/sb_str", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE);
1539                         }
1540                         Sbar_DrawXNum(bottom + '152 -44 0', ceil(dt), 2, countdown_fontsize, '1 1 1', 0, 1, DRAWFLAG_NORMAL);
1541                 }
1542                 else if(dt > -1)
1543                 {
1544                         drawpic_expanding(bottom + '192 -46 0', "gfx/hud/sb_str", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE,
1545                                 bound(0, -dt / 0.5, 1));
1546                 }
1547         }
1548
1549         //invincibility
1550         if (invincibility_time) {
1551                 dt = invincibility_time - time;
1552                 if(dt > 0)
1553                 {
1554                         if(dt < 5)
1555                         {
1556                                 drawpic_expanding_two(bottom + '192 -24 0', "gfx/hud/sb_invinc", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE,
1557                                         bound(0, (ceil(dt) - dt) / 0.5, 1));
1558                         }
1559                         else
1560                         {
1561                                 drawpic(bottom + '192 -24 0', "gfx/hud/sb_invinc", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE);
1562                         }
1563                         Sbar_DrawXNum(bottom + '152 -22 0', ceil(dt), 2, countdown_fontsize, '1 1 1', 0, 1, DRAWFLAG_NORMAL);
1564                 }
1565                 else if(dt > -1)
1566                 {
1567                         drawpic_expanding(bottom + '192 -24 0', "gfx/hud/sb_invinc", picsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE,
1568                                 bound(0, -dt / 0.5, 1));
1569                 }
1570         }
1571 }
1572
1573 #define CENTERPRINT_MAX_LINES 30
1574 string centerprint_messages[CENTERPRINT_MAX_LINES];
1575 float centerprint_width[CENTERPRINT_MAX_LINES];
1576 vector centerprint_start;
1577 float centerprint_expire;
1578 float centerprint_num;
1579 float centerprint_offset_hint;
1580 vector centerprint_fontsize;
1581
1582 void centerprint(string strMessage)
1583 {
1584         float i, j, n, hcount;
1585         string s;
1586
1587         centerprint_fontsize = Sbar_GetFontsize("scr_centersize");
1588
1589         centerprint_expire = min(centerprint_expire, time); // if any of the returns happens, this message will fade out
1590
1591         if(cvar("scr_centertime") <= 0)
1592                 return;
1593
1594         if(strMessage == "")
1595                 return;
1596
1597         // strip trailing newlines
1598         j = strlen(strMessage) - 1;
1599         while(substring(strMessage, j, 1) == "\n" && j >= 0)
1600                 j = j - 1;
1601         strMessage = substring(strMessage, 0, j + 1);
1602
1603         if(strMessage == "")
1604                 return;
1605
1606         // strip leading newlines and remember them, they are a hint that the message should be lower on the screen
1607         j = 0;
1608         while(substring(strMessage, j, 1) == "\n" && j < strlen(strMessage))
1609                 j = j + 1;
1610         strMessage = substring(strMessage, j, strlen(strMessage) - j);
1611         centerprint_offset_hint = j;
1612
1613         if(strMessage == "")
1614                 return;
1615
1616         // if we get here, we have a message. Initialize its height.
1617         centerprint_num = 0;
1618
1619         n = tokenizebyseparator(strMessage, "\n");
1620         i = hcount = 0;
1621         for(j = 0; j < n; ++j)
1622         {
1623                 getWrappedLine_remaining = argv(j);
1624                 while(getWrappedLine_remaining)
1625                 {
1626                         s = getWrappedLine(vid_conwidth * 0.75 / centerprint_fontsize_x, stringwidth_colors);
1627                         if(centerprint_messages[i])
1628                                 strunzone(centerprint_messages[i]);
1629                         centerprint_messages[i] = strzone(s);
1630                         centerprint_width[i] = stringwidth(s, TRUE);
1631                         ++i;
1632
1633                         // half height for empty lines looks better
1634                         if(s == "")
1635                                 hcount += 0.5;
1636                         else
1637                                 hcount += 1;
1638
1639                         if(i >= CENTERPRINT_MAX_LINES)
1640                                 break;
1641                 }
1642         }
1643
1644         float h, havail;
1645         h = centerprint_fontsize_y*hcount;
1646
1647         havail = vid_conheight;
1648         if(cvar("con_chatpos") < 0)
1649                 havail -= (-cvar("con_chatpos") + cvar("con_chat")) * cvar("con_chatsize"); // avoid overlapping chat
1650
1651         centerprint_start_x = 0;
1652
1653 #if 0
1654         float forbiddenmin, forbiddenmax, allowedmin, allowedmax, preferred;
1655
1656         // here, the centerprint would cover the crosshair. REALLY BAD.
1657         forbiddenmin = vid_conheight * 0.5 - h - 16;
1658         forbiddenmax = vid_conheight * 0.5 + 16;
1659
1660         allowedmin = scoreboard_bottom;
1661         allowedmax = havail - h;
1662         preferred = (havail - h)/2;
1663
1664
1665         // possible orderings (total: 4! / 4 = 6)
1666         //  allowedmin allowedmax forbiddenmin forbiddenmax
1667         //  forbiddenmin forbiddenmax allowedmin allowedmax
1668         if(allowedmax < forbiddenmin || allowedmin > forbiddenmax)
1669         {
1670                 // forbidden doesn't matter in this case
1671                 centerprint_start_y = bound(allowedmin, preferred, allowedmax);
1672         }
1673         //  allowedmin forbiddenmin allowedmax forbiddenmax
1674         else if(allowedmin < forbiddenmin && allowedmax < forbiddenmax)
1675         {
1676                 centerprint_start_y = bound(allowedmin, preferred, forbiddenmin);
1677         }
1678         //  allowedmin forbiddenmin forbiddenmax allowedmax
1679         else if(allowedmin < forbiddenmin)
1680         {
1681                 // make sure the forbidden zone is not covered
1682                 if(preferred > (forbiddenmin + forbiddenmax) * 0.5)
1683                         centerprint_start_y = bound(allowedmin, preferred, forbiddenmin);
1684                 else
1685                         centerprint_start_y = bound(forbiddenmax, preferred, allowedmin);
1686         }
1687         //  forbiddenmin allowedmin allowedmax forbiddenmax
1688         else if(allowedmax < forbiddenmax)
1689         {
1690                 // it's better to leave the allowed zone (overlap with scoreboard) than
1691                 // to cover the forbidden zone (crosshair)
1692                 if(preferred > (forbiddenmin + forbiddenmax) * 0.5)
1693                         centerprint_start_y = forbiddenmax;
1694                 else
1695                         centerprint_start_y = forbiddenmin;
1696         }
1697         //  forbiddenmin allowedmin forbiddenmax allowedmax
1698         else
1699         {
1700                 centerprint_start_y = bound(forbiddenmax, preferred, allowedmax);
1701         }
1702 #else
1703         centerprint_start_y =
1704                 min(
1705                         max(
1706                                 max(scoreboard_bottom, vid_conheight * 0.5 + 16),
1707                                 (havail - h)/2
1708                         ),
1709                         havail - h
1710                 );
1711 #endif
1712
1713         centerprint_num = i;
1714         centerprint_expire = time + cvar("scr_centertime");
1715 }
1716
1717 void Sbar_DrawCenterPrint (void)
1718 {
1719         float i;
1720         vector pos;
1721         string ts;
1722         float a;
1723
1724         //if(time > centerprint_expire)
1725         //      return;
1726
1727         //a = bound(0, 1 - 2 * (time - centerprint_expire), 1);
1728         a = bound(0, 1 - 4 * (time - centerprint_expire), 1);
1729         //sz = 1.2 / (a + 0.2);
1730
1731         if(a <= 0)
1732                 return;
1733
1734         pos = centerprint_start;
1735         for (i=0; i<centerprint_num; i = i + 1)
1736         {
1737                 pos_x = (vid_conwidth - centerprint_fontsize_x * centerprint_width[i]) * 0.5;
1738                 ts = centerprint_messages[i];
1739                 if (ts != "")
1740                 {
1741                         dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
1742                         drawcolorcodedstring(pos, ts, centerprint_fontsize, a, DRAWFLAG_NORMAL);
1743                         //  - '0 0.5 0' * (sz - 1) * centerprint_fontsize_x - '0.5 0 0' * (sz - 1) * centerprint_width[i] * centerprint_fontsize_y, centerprint_fontsize * sz
1744                         pos_y = pos_y + centerprint_fontsize_y;
1745                 }
1746                 else
1747                         // half height for empty lines looks better
1748                         pos_y = pos_y + centerprint_fontsize_y * 0.5;
1749         }
1750 }
1751
1752 vector Sbar_DrawNoteLine(vector offset, string s)
1753 {
1754         dummyfunction(0, 0, 0, 0, 0, 0, 0, 0); // work around DP bug (set OFS_PARAM5 to 0)
1755         drawcolorcodedstring(
1756                 offset - sbar_fontsize_x * '1 0 0' * stringwidth(s, TRUE),
1757                 s,
1758                 sbar_fontsize,
1759                 sbar_alpha_fg,
1760                 0
1761         );
1762         return offset + sbar_fontsize_y * '0 1 0';
1763 }
1764
1765 void Sbar_DrawPressedKeys(void)
1766 {
1767         vector pos, bgsize;
1768         float pressedkeys;
1769
1770         pos = stov(cvar_string("cl_showpressedkeys_position"));
1771
1772         bgsize = '126 75 0';
1773
1774         pos = '1 0 0' * (vid_conwidth - bgsize_x) * pos_x
1775             + '0 1 0' * (vid_conheight - bgsize_y) * pos_y;
1776         pos -= '-15 -6 0'; // adjust to the origin of these numbers
1777
1778         pressedkeys = getstatf(STAT_PRESSED_KEYS);
1779         drawpic(pos + '-15   -6   0', "gfx/hud/keys/key_bg.tga",           bgsize, '1 1 1', .1, DRAWFLAG_NORMAL);
1780         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', 1, DRAWFLAG_NORMAL);
1781         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', 1, DRAWFLAG_NORMAL);
1782         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', 1, DRAWFLAG_NORMAL);
1783         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', 1, DRAWFLAG_NORMAL);
1784         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', 1, DRAWFLAG_NORMAL);
1785         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', 1, DRAWFLAG_NORMAL);
1786 }
1787
1788 void Sbar_DrawAccuracyStats()
1789 {
1790         float i, count_hitscan, count_splash, row;  // count is the number of 'colums'
1791         float weapon_hit, weapon_damage, weapon_stats;
1792         float left_border;  // position where the weapons start, the description is in the border
1793         vector fill_colour, fill_size;
1794         vector pos;
1795
1796         float col_margin = 20;  // pixels between the columns
1797         float row_margin = 20;  // pixels between the rows
1798         float top_border;  // position where the first row starts: pixels down the screen
1799
1800         fill_size_x = 5 * sbar_fontsize_x;  // width of the background
1801         fill_size_y = 10 * sbar_fontsize_y;  // height of the background
1802
1803         // 45 pixels is the same as the 'Scoreboard' heading
1804         drawfont = sbar_bigfont;
1805         drawstringcenter('0 45 0', "Weapon Accuracy", 2 * sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1806         left_border = col_margin + 11 * sbar_fontsize_x;
1807
1808         top_border = 80;
1809         Sbar_DrawAccuracyStats_Description_Hitscan('1 0 0' * col_margin + '0 1 0' * top_border);
1810
1811         top_border = 220;
1812         Sbar_DrawAccuracyStats_Description_Splash('1 0 0' * col_margin + '0 1 0' * top_border);
1813
1814
1815         for(i = WEP_FIRST; i <= WEP_LAST; ++i)
1816         {
1817                 weapon_hit = weapon_hits[i];
1818                 weapon_damage = weapon_fired[i];
1819                 self = get_weaponinfo(i);
1820
1821                 //if ((weapon_number != 42))  // print them all :)
1822                 if ((self.weapon_type == WEP_TYPE_SPLASH) && (weapon_damage))
1823                 {
1824                         top_border = 220;
1825                         weapon_stats = rint(100 * weapon_hit / weapon_damage);
1826
1827                         fill_colour_x = 1 - 0.015 * weapon_stats;
1828                         fill_colour_y = 1 - 0.015 * (100 - weapon_stats);
1829
1830 //                      how the background colour is calculated
1831 //                      %       red     green   red_2           green_2
1832 //                      0       1       0       1 - % * 0.015   1 - (100 - %) * 0.015
1833 //                      10      0.85    0       1 - % * 0.015   1 - (100 - %) * 0.015
1834 //                      20      0.70    0       1 - % * 0.015   1 - (100 - %) * 0.015
1835 //                      30      0.55    0       1 - % * 0.015   1 - (100 - %) * 0.015
1836 //                      40      0.40    0.10    1 - % * 0.015   1 - (100 - %) * 0.015
1837 //                      50      0.25    0.25    1 - % * 0.015   1 - (100 - %) * 0.015
1838 //                      60      0.10    0.40    1 - % * 0.015   1 - (100 - %) * 0.015
1839 //                      70      0       0.55    1 - % * 0.015   1 - (100 - %) * 0.015
1840 //                      80      0       0.70    1 - % * 0.015   1 - (100 - %) * 0.015
1841 //                      90      0       0.85    1 - % * 0.015   1 - (100 - %) * 0.015
1842 //                      100     0       1       1 - % * 0.015   1 - (100 - %) * 0.015
1843
1844                         if ((left_border + count_splash * (fill_size_x + col_margin) + fill_size_x) >= vid_conwidth)
1845                         {
1846                                 count_splash = 0;
1847                                 ++row;
1848                                 Sbar_DrawAccuracyStats_Description_Splash('1 0 0' * col_margin + '0 1 0' * (top_border + row * (fill_size_y + row_margin)));
1849                         }
1850
1851                         pos_x = left_border + count_splash * (fill_size_x + col_margin);
1852                         pos_y = top_border + row * (fill_size_y + row_margin);
1853
1854                         // background
1855                         drawfill(pos, fill_size , fill_colour, 0.4 * sbar_alpha_fg, DRAWFLAG_NORMAL);
1856
1857                         // the weapon
1858                         drawpic(pos, strcat("gfx/inv_weapon", ftos(i-1)), '1 0.5 0' * fill_size_x , '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1859
1860                         // the amount of shots fired or max damage
1861                         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);
1862
1863                         // the amount of hits or actual damage
1864                         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);
1865
1866                         // the accuracy
1867                         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);
1868
1869                         // the amount of shots missed or damage wasted
1870                         drawstringright(pos + '4.5 0 0' * sbar_fontsize_x + '0 9 0' * sbar_fontsize_y, ftos(weapon_damage - weapon_hit), sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1871
1872                         ++count_splash;
1873                 }
1874                 else if ((self.weapon_type == WEP_TYPE_HITSCAN) && (weapon_damage))
1875                 {
1876                         top_border = 80;
1877                         weapon_stats = rint(100 * weapon_hit / weapon_damage);
1878
1879                         fill_colour_x = 1 - 0.015 * weapon_stats;
1880                         fill_colour_y = 1 - 0.015 * (100 - weapon_stats);
1881
1882 //                      how the background colour is calculated
1883 //                      %       red     green   red_2           green_2
1884 //                      0       1       0       1 - % * 0.015   1 - (100 - %) * 0.015
1885 //                      10      0.85    0       1 - % * 0.015   1 - (100 - %) * 0.015
1886 //                      20      0.70    0       1 - % * 0.015   1 - (100 - %) * 0.015
1887 //                      30      0.55    0       1 - % * 0.015   1 - (100 - %) * 0.015
1888 //                      40      0.40    0.10    1 - % * 0.015   1 - (100 - %) * 0.015
1889 //                      50      0.25    0.25    1 - % * 0.015   1 - (100 - %) * 0.015
1890 //                      60      0.10    0.40    1 - % * 0.015   1 - (100 - %) * 0.015
1891 //                      70      0       0.55    1 - % * 0.015   1 - (100 - %) * 0.015
1892 //                      80      0       0.70    1 - % * 0.015   1 - (100 - %) * 0.015
1893 //                      90      0       0.85    1 - % * 0.015   1 - (100 - %) * 0.015
1894 //                      100     0       1       1 - % * 0.015   1 - (100 - %) * 0.015
1895
1896                         if ((left_border + count_hitscan * (fill_size_x + col_margin) + fill_size_x + cvar("stats_right_margin")) >= vid_conwidth)
1897                         {
1898                                 count_hitscan = 0;
1899                                 ++row;
1900                                 Sbar_DrawAccuracyStats_Description_Hitscan('1 0 0' * col_margin + '0 1 0' * (top_border + row * (fill_size_y + row_margin)));
1901                         }
1902
1903                         pos_x = left_border + count_hitscan * (fill_size_x + col_margin);
1904                         pos_y = top_border + row * (fill_size_y + row_margin);
1905
1906                         // background
1907                         drawfill(pos, fill_size , fill_colour, 0.4 * sbar_alpha_fg, DRAWFLAG_NORMAL);
1908
1909                         // the weapon
1910                         drawpic(pos, strcat("gfx/inv_weapon", ftos(i-1)), '1 0.5 0' * fill_size_x , '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1911
1912                         // the amount of shots fired or max damage
1913                         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);
1914
1915                         // the amount of hits or actual damage
1916                         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);
1917
1918                         // the accuracy
1919                         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);
1920
1921                         // the amount of shots missed or damage wasted
1922                         drawstringright(pos + '4.5 0 0' * sbar_fontsize_x + '0 9 0' * sbar_fontsize_y, ftos(weapon_damage - weapon_hit), sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1923
1924                         ++count_hitscan;
1925                 }
1926         }
1927 }
1928
1929 void Sbar_DrawAccuracyStats_Description_Hitscan(vector position)
1930 {
1931         drawfont = sbar_font;
1932          // hitscan stats
1933         drawstring(position + '0 3 0' * sbar_fontsize_y, "Shots fired:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1934         drawstring(position + '0 5 0' * sbar_fontsize_y, "Shots hit:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1935         drawstring(position + '0 7 0' * sbar_fontsize_y, "Accuracy:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1936         drawstring(position + '0 9 0' * sbar_fontsize_y, "Shots missed:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1937 }
1938
1939 void Sbar_DrawAccuracyStats_Description_Splash(vector position)
1940 {
1941         //splash stats
1942         drawfont = sbar_font;
1943         drawstring(position + '0 3 0' * sbar_fontsize_y, "Maximum damage:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1944         drawstring(position + '0 5 0' * sbar_fontsize_y, "Actual damage:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1945         drawstring(position + '0 7 0' * sbar_fontsize_y, "Accuracy:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1946         drawstring(position + '0 9 0' * sbar_fontsize_y, "Damage wasted:", sbar_fontsize, '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);
1947 }
1948
1949 void drawstringright(vector position, string text, vector scale, vector rgb, float alpha, float flag)
1950 {
1951         position_x -= 2 / 3 * strlen(text) * scale_x;
1952         drawstring(position, text, scale, rgb, alpha, flag);
1953 }
1954
1955 void drawstringcenter(vector position, string text, vector scale, vector rgb, float alpha, float flag)
1956 {
1957         position_x = 0.5 * (vid_conwidth - 0.6025 * strlen(text) * scale_x);
1958         drawstring(position, text, scale, rgb, alpha, flag);
1959 }
1960
1961 float GetAmmoStat(float i)
1962 {
1963         switch(i)
1964         {
1965                 case 0: return STAT_SHELLS;
1966                 case 1: return STAT_NAILS;
1967                 case 2: return STAT_ROCKETS;
1968                 case 3: return STAT_CELLS;
1969                 case 4: return STAT_FUEL;
1970                 default: return -1;
1971         }
1972 }
1973
1974 float GetAmmoItemCode(float i)
1975 {
1976         switch(i)
1977         {
1978                 case 0: return IT_SHELLS;
1979                 case 1: return IT_NAILS;
1980                 case 2: return IT_ROCKETS;
1981                 case 3: return IT_CELLS;
1982                 case 4: return IT_FUEL;
1983                 default: return -1;
1984         }
1985 }
1986
1987 string GetAmmoPicture(float i)
1988 {
1989         switch(i)
1990         {
1991                 case 0: return "gfx/hud/sb_shells";
1992                 case 1: return "gfx/hud/sb_bullets";
1993                 case 2: return "gfx/hud/sb_rocket";
1994                 case 3: return "gfx/hud/sb_cells";
1995                 case 4: return "gfx/hud/sb_fuel";
1996                 default: return "";
1997         }
1998 }
1999
2000 void Sbar_Draw (void)
2001 {
2002         // vectors for top right, bottom right, bottom and bottom left corners
2003
2004         vector topright;
2005         vector bottom;
2006         vector bottomright;
2007         vector bottomleft;
2008
2009         topright_x = vid_conwidth;
2010         topright_y = 0;
2011         topright_z = 0;
2012
2013         bottom_x = vid_conwidth/2;
2014         bottom_y = vid_conheight;
2015         bottom_z = 0;
2016
2017         bottomright_x = vid_conwidth;
2018         bottomright_y = vid_conheight;
2019         bottomright_z = 0;
2020
2021         bottomleft_x = 0;
2022         bottomleft_y = vid_conheight;
2023         bottomleft_z = 0;
2024
2025         sbar_alpha_bg = cvar("sbar_alpha_bg");
2026
2027         float i;
2028         float weapon_stats;
2029         float x, fade;
2030         float stat_items, stat_weapons;
2031
2032         weapon_stats = getstati(STAT_DAMAGE_HITS);
2033         weapon_number = weapon_stats & 63;
2034         weapon_hits[weapon_number] = rint(weapon_stats / 64);
2035
2036         weapon_stats = getstati(STAT_DAMAGE_FIRED);
2037         weapon_number = weapon_stats & 63;
2038         weapon_fired[weapon_number] = rint(weapon_stats / 64);
2039
2040         vector o; o = '1 0 0' * vid_conwidth;
2041         o_y = 28; // move spectator text slightly down to prevent overlapping the timer
2042
2043         string s;
2044
2045         sbar_fontsize = Sbar_GetFontsize("sbar_fontsize");
2046
2047         if(spectatee_status && !intermission)
2048         {
2049                 if(spectatee_status == -1)
2050                         s = "^1Observing";
2051                 else
2052                         s = strcat("^1Spectating ^7", GetPlayerName(spectatee_status - 1));
2053                 o = Sbar_DrawNoteLine(o, s);
2054
2055                 if(spectatee_status == -1)
2056                         s = strcat("^1Press ^3", getcommandkey("primary fire", "+attack"), "^1 to spectate");
2057                 else
2058                         s = strcat("^1Press ^3", getcommandkey("primary fire", "+attack"), "^1 for another player");
2059                 o = Sbar_DrawNoteLine(o, s);
2060
2061                 if(spectatee_status == -1)
2062                         s = strcat("^1Use ^3", getcommandkey("next weapon", "weapnext"), "^1 or ^3", getcommandkey("previous weapon", "weapprev"), "^1 to change the speed");
2063                 else
2064                         s = strcat("^1Press ^3", getcommandkey("secondary fire", "+attack2"), "^1 to observe");
2065                 o = Sbar_DrawNoteLine(o, s);
2066
2067                 s = strcat("^1Press ^3", getcommandkey("server info", "+show_info"), "^1 for gamemode info");
2068                 o = Sbar_DrawNoteLine(o, s);
2069
2070                 if(gametype == GAME_ARENA)
2071                         s = "^1Wait for your turn to join";
2072                 else if(gametype == GAME_LMS)
2073                 {
2074                         entity sk;
2075                         sk = playerslots[player_localentnum - 1];
2076                         if(sk.(scores[ps_primary]) >= 666)
2077                                 s = "^1Match has already begun";
2078                         else if(sk.(scores[ps_primary]) > 0)
2079                                 s = "^1You have no more lives left";
2080                         else
2081                                 s = strcat("^1Press ^3", getcommandkey("jump", "+jump"), "^1 to join");
2082                 }
2083                 else
2084                         s = strcat("^1Press ^3", getcommandkey("jump", "+jump"), "^1 to join");
2085                 o = Sbar_DrawNoteLine(o, s);
2086
2087                 //show restart countdown:
2088                 if (time < getstatf(STAT_GAMESTARTTIME)) {
2089                         float countdown;
2090                         //we need to ceil, otherwise the countdown would be off by .5 when using round()
2091                         countdown = ceil(getstatf(STAT_GAMESTARTTIME) - time);
2092                         s = strcat("^1Game starts in ^3", ftos(countdown), "^1 seconds");
2093                         o = Sbar_DrawNoteLine(o, s);
2094                 }
2095         }
2096         if(warmup_stage && !intermission)
2097         {
2098                 s = "^2Currently in ^1warmup^2 stage!";
2099                 o = Sbar_DrawNoteLine(o, s);
2100         }
2101
2102         // move more important stuff more to the middle so its more visible
2103         o_y = vid_conheight * 0.66;
2104
2105         string blinkcolor;
2106         if(mod(time, 1) >= 0.5)
2107                 blinkcolor = "^1";
2108         else
2109                 blinkcolor = "^3";
2110
2111         if(ready_waiting && !intermission)
2112         {
2113                 if(ready_waiting_for_me)
2114                 {
2115                         if(warmup_stage)
2116                                 s = strcat(blinkcolor, "Press ^3", getcommandkey("ready", "ready"), blinkcolor, " to end warmup");
2117                         else
2118                                 s = strcat(blinkcolor, "Press ^3", getcommandkey("ready", "ready"), blinkcolor, " once you are ready");
2119                 }
2120                 else
2121                 {
2122                         if(warmup_stage)
2123                                 s = strcat("^2Waiting for others to ready up to end warmup...");
2124                         else
2125                                 s = strcat("^2Waiting for others to ready up...");
2126                 }
2127                 o = Sbar_DrawNoteLine(o, s);
2128         }
2129         else if(warmup_stage && !intermission)
2130         {
2131                 s = strcat("^2Press ^3", getcommandkey("ready", "ready"), "^2 to end warmup");
2132                 o = Sbar_DrawNoteLine(o, s);
2133         }
2134         if(vote_waiting)
2135         {
2136                 s = strcat("^2A vote has been called for ^1", vote_called_vote);
2137                 o = Sbar_DrawNoteLine(o, s);
2138
2139                 if(vote_waiting_for_me)
2140                 {
2141                         s = strcat(blinkcolor, "Press ^3", getcommandkey("vote yes", "vyes"), blinkcolor, " to accept");
2142                         o = Sbar_DrawNoteLine(o, s);
2143
2144                         s = strcat(blinkcolor, "Press ^3", getcommandkey("vote no", "vno"), blinkcolor, " to reject");
2145                         o = Sbar_DrawNoteLine(o, s);
2146
2147                         s = strcat(blinkcolor, "Press ^3", getcommandkey("vote abstain", "vabstain"), blinkcolor, " to abstain");
2148                         o = Sbar_DrawNoteLine(o, s);
2149                 }
2150                 else
2151                 {
2152                         s = strcat("^2Waiting for others to vote...");
2153                         o = Sbar_DrawNoteLine(o, s);
2154                 }
2155         }
2156         if(teamplay && !intermission)
2157         {
2158                 entity tm;
2159                 float ts_min, ts_max;
2160                 tm = teams.sort_next;
2161                 if (tm)
2162                 {
2163                         for(; tm.sort_next; tm = tm.sort_next)
2164                         {
2165                                 if(!tm.team_size || tm.team == COLOR_SPECTATOR)
2166                                         continue;
2167                                 if(!ts_min) ts_min = tm.team_size;
2168                                 else ts_min = min(ts_min, tm.team_size);
2169                                 if(!ts_max) ts_max = tm.team_size;
2170                                 else ts_max = max(ts_max, tm.team_size);
2171                         }
2172                         if ((ts_max - ts_min) > 1)
2173                         {
2174                                 s = strcat(blinkcolor, "Teamnumbers are unbalanced!");
2175                                 tm = GetTeam(myteam, false);
2176                                 if (tm)
2177                                 if (tm.team != COLOR_SPECTATOR)
2178                                 if (tm.team_size == ts_max)
2179                                         s = strcat(s, " Press ^3", getcommandkey("team menu", "menu_showteamselect"), blinkcolor, " to adjust");
2180
2181                                 o = Sbar_DrawNoteLine(o, s);
2182                         }
2183                 }
2184         }
2185
2186         Sbar_UpdatePlayerTeams();
2187
2188         if (intermission == 1)
2189         {
2190                 if(sb_showaccuracy)
2191                         Sbar_DrawAccuracyStats();
2192                 else
2193                         Sbar_DrawScoreboard();
2194                 Sbar_DrawCenterPrint();
2195         }
2196         else if (intermission == 2)
2197         {
2198                 if(sb_showaccuracy)
2199                         Sbar_DrawAccuracyStats();
2200                 else if (sb_showscores)
2201                         Sbar_DrawScoreboard();
2202                 else
2203                         Sbar_FinaleOverlay();
2204                 Sbar_DrawCenterPrint(); 
2205         }
2206         else if(sb_showaccuracy)
2207         {
2208                 Sbar_DrawAccuracyStats();
2209         }
2210         else
2211         {
2212                 if (sb_showscores_force || (getstati(STAT_HEALTH) <= 0 && cvar("cl_deathscoreboard")))
2213                 {
2214                         sbar_x = (vid_conwidth - 640.0)*0.5;
2215                         sbar_y = vid_conheight - 47;
2216                         //Sbar_DrawAlphaPic (sbar_x, sbar_y, sb_scorebar, sbar_alpha_bg.value);
2217                         //drawpic('0 0 0', "gfx/hud/scorebar", '0 0 0', '1 1 1', cvar("sbar_alpha_bg"), 0);
2218                         Sbar_DrawScoreboard ();
2219                 }
2220                 else
2221                 {
2222                         if (sb_showscores) // do not hide the hud if sb_showscores is shown
2223                         {
2224                                 Sbar_DrawScoreboard();
2225                                 Sbar_DrawCenterPrint();
2226                         }
2227
2228                         float armor, health;
2229                         armor = getstati(STAT_ARMOR);
2230                         health = getstati(STAT_HEALTH);
2231
2232                         stat_items = getstati(STAT_ITEMS);
2233                         stat_weapons = getstati(STAT_WEAPONS);
2234
2235                         fade = 3.2 - 2 * (time - weapontime);
2236                         fade = bound(0.7, fade, 1);
2237
2238                         vector bg_size; // hud background size
2239                         bg_size_x = 800;
2240                         if (vid_conwidth > 800) // if conwidth > 800, resize the background image
2241                                 bg_size_x = vid_conwidth;
2242                         bg_size_y = 58;
2243                         bg_size_z = 0;
2244
2245                         vector bgoffset; // hud background offset
2246                         bgoffset_x = 0;
2247                         bgoffset_y = 0;
2248                         bgoffset_z = 0;
2249                         if (vid_conwidth < 800) // if conwidth < 800 we need to offset the background image to keep it centered, as it will be scaled up
2250                                 bgoffset_x = (vid_conwidth - 800) / 2;
2251
2252                         if (cvar("viewsize") <= 100) {
2253                                 if (teamplay) {
2254                                         //if (myteam == 13) // 13 = blue shirt color
2255                                         //      drawpic(bottomleft - '0 58 0' + bgoffset, "gfx/hud/sbar", bg_size, '0 0.3 1', sbar_alpha_bg, 0); // blue hud is too dark at '0 0 1'
2256                                         //else
2257                                                 drawpic(bottomleft - '0 58 0' + bgoffset, "gfx/hud/sbar", bg_size, GetTeamRGB(myteam) * cvar("sbar_color_bg_team"), sbar_alpha_bg, 0); // hud color = myteam color
2258                                         }
2259                                 else {
2260                                         // allow for custom HUD colors in non-teamgames
2261                                         color_x = cvar("sbar_color_bg_r");
2262                                         color_y = cvar("sbar_color_bg_g");
2263                                         color_z = cvar("sbar_color_bg_b");
2264
2265                                         drawpic(bottomleft - '0 58 0' + bgoffset, "gfx/hud/sbar", bg_size, color, sbar_alpha_bg, 0);
2266                                 }
2267                         }
2268
2269                         if(health != 0)
2270                         {
2271                                 if(sbar_hudselector == 2) // combined health and armor display
2272                                 {
2273                                         // NOTE: we'll always choose the SMALLER value...
2274                                         float healthdamage, armordamage, armorideal;
2275                                         healthdamage = (health - 1) / (1 - armorblockpercent); // damage we can take if we could use more health
2276                                         armordamage = armor + (health - 1); // damage we can take if we could use more armor
2277                                         armorideal = healthdamage * armorblockpercent;
2278
2279                                         vector num_pos;
2280                                         num_pos = bottom - element_offset - '0 24 0' + '-96 0 0';
2281
2282                                         if(armordamage < healthdamage)
2283                                         {
2284                                                 // here, armorideal > armor
2285                                                 x = floor(armordamage + 1);
2286                                                 drawpic(num_pos + '78 -3 0', "gfx/hud/sb_health", '32 32 0', '1 1 1', sbar_alpha_fg, 0);
2287                                                 drawpic(num_pos + '108 -3 0', "gfx/hud/sb_armor", '20 20 0', '1 1 1', sbar_alpha_fg * armor / armorideal, 0);
2288                                         }
2289                                         else
2290                                         {
2291                                                 x = floor(healthdamage + 1);
2292                                                 drawpic(num_pos + '108 -3 0', "gfx/hud/sb_health", '20 20 0', '1 1 1', sbar_alpha_fg * armorideal / armor, 0);
2293                                                 drawpic(num_pos + '78 -3 0', "gfx/hud/sb_armor", '32 32 0', '1 1 1', sbar_alpha_fg, 0);
2294                                         }
2295                                         Sbar_DrawXNum_Colored(num_pos, x, 24); // draw the combined health and armor
2296                                 }
2297
2298                                 else
2299                                 {
2300                                         vector health_pos, armor_pos;
2301
2302                                         if (sbar_hudselector == 0) { // old style layout with armor left of health
2303                                                 health_pos = bottom - element_offset - '0 24 0' + '14 0 0';
2304                                                 armor_pos = bottom - element_offset - '0 24 0' + '-96 0 0';
2305                                         }
2306
2307                                         else {
2308                                                 health_pos = bottom - element_offset - '0 24 0' + '-96 0 0';
2309                                                 armor_pos = bottom - element_offset - '0 24 0' + '14 0 0';
2310                                         }
2311
2312                                         // armor
2313                                         x = armor;
2314                                         if (x > 0)
2315                                         {
2316                                                 drawpic(armor_pos + '78 -3 0', "gfx/hud/sb_armor", '32 32 0', '1 1 1', sbar_alpha_fg, 0);
2317
2318                                                 Sbar_DrawXNum_Colored(armor_pos, x, 24);
2319                                         }
2320
2321                                         // health
2322                                         x = health;
2323                                         drawpic(health_pos + '78 -3 0', "gfx/hud/sb_health", '32 32 0', '1 1 1', sbar_alpha_fg, 0);
2324
2325                                         Sbar_DrawXNum_Colored(health_pos, x, 24);
2326                                 }
2327
2328                                 // weapon icons
2329                                 x = 1.0;
2330                                 Sbar_DrawWeapon_Clear();
2331                                 for(i = 1; i <= 24; ++i)
2332                                 {
2333                                         if(weaponimpulse[i-1] >= 0)
2334                                         if(stat_weapons & x)
2335                                         {
2336                                                 Sbar_DrawWeapon(i-1, fade, (i == activeweapon), i);
2337                                         }
2338                                         x *= 2;
2339                                 }
2340
2341                                 // ammo
2342                                 float a; // i will be the ammo type (already declared), a will contain how much ammo there is of type i
2343                                 vector pos;
2344                                 pos_z = 0;
2345
2346                                 for (i = 0; i < 4; ++i) {
2347                                         a = getstati(GetAmmoStat(i)); // how much ammo do we have of type i?
2348
2349                                         if (a > 0) {
2350                                                 pos = '0 0 0';
2351                                                 if (cvar("vid_conwidth") >= 800)
2352                                                         switch (i) {
2353                                                                 case 0: pos_x = 114; pos_y = -48; break; // shells
2354                                                                 case 1: pos_x = 114; pos_y = -26; break; // bullets
2355                                                                 case 2: pos_x = 200; pos_y = -48; break; // rockets
2356                                                                 case 3: pos_x = 200; pos_y = -26; break; // cells
2357                                                         }
2358                                                 else // if vid_conwidth is lower than 800, ammo will overlap with weapon icons and health so we'll move it to the right
2359                                                         switch (i) {
2360                                                                 case 0: pos_x = vid_conwidth - 158; pos_y = -150; break; // shells
2361                                                                 case 1: pos_x = vid_conwidth - 158; pos_y = -128; break; // bullets
2362                                                                 case 2: pos_x = vid_conwidth - 84; pos_y = -150; break; // rockets
2363                                                                 case 3: pos_x = vid_conwidth - 84; pos_y = -128; break; // cells
2364                                                         }
2365
2366                                                 if (stat_items & GetAmmoItemCode(i))
2367                                                         drawpic(bottomleft + pos + '0 1.5 0', "gfx/hud/sb_ammobg", '80 22 0', '1 1 1', sbar_alpha_fg, 0);
2368                                                 drawpic(bottomleft + pos + '56 3 0', GetAmmoPicture(i), '18 18 0', '1 1 1', sbar_alpha_fg, 0);
2369                                                 if (a > 10)
2370                                                         Sbar_DrawXNum(bottomleft + pos + '6 4 0', a, 3, 16, '0.6 0.7 0.8', 0, 1, 0);
2371                                                 else
2372                                                         Sbar_DrawXNum(bottomleft + pos + '6 4 0', a, 3, 16, '0.7 0 0', 0, 1, 0);
2373                                         }
2374                                 }
2375
2376                                 // fuel ammo
2377                                 a = getstati(GetAmmoStat(4)); // how much fuel do we have?
2378
2379                                 if (a > 0) { // if we have fuel, draw the amount
2380                                         float invincibility_time, dt;
2381                                         invincibility_time = getstatf(STAT_INVINCIBLE_FINISHED);
2382                                         dt = invincibility_time - time;
2383                                         if (dt > 0) { // if the invincibility timer is active, draw fuel ammo elsewhere
2384                                                 pos_x = bottom_x + 140;
2385                                                 pos_y = bottom_y - 72;
2386                                         }
2387                                         else { // if the invincibility timer is inactive, draw the fuel ammo there (it's rare to have invincibility + fuel anyway)
2388                                                 pos_x = bottom_x + 140;
2389                                                 pos_y = bottom_y - 22;
2390                                         }
2391                                         drawpic(pos - '0 2 0' + '52 0 0', GetAmmoPicture(4), '20 20 0', '1 1 1', sbar_alpha_fg, 0);
2392                                         if (a > 10)
2393                                                 Sbar_DrawXNum(pos, a, 3, 16, '0.6 0.7 0.8', 0, 1, 0);
2394                                         else
2395                                                 Sbar_DrawXNum(pos, a, 3, 16, '0.7 0 0', 0, 1, 0);
2396                                 }
2397
2398                                 // draw scores and timer
2399                                 Sbar_Score(16);
2400                         }
2401
2402                         //show strength/invincibility ICON and timer:
2403                         CSQC_Strength_Timer();
2404
2405                         if(gametype == GAME_KEYHUNT)
2406                         {
2407                                 CSQC_kh_hud();
2408                         } else if(gametype == GAME_CTF)
2409                         {
2410                                 CSQC_ctf_hud();
2411                         } else if(gametype == GAME_NEXBALL)
2412                         {
2413                                 CSQC_nb_hud();
2414                         }
2415                 }
2416         }
2417 }
2418
2419 // CTF HUD
2420 void CSQC_ctf_hud(void)
2421 {
2422         vector bottomleft;
2423         bottomleft_x = 0;
2424         bottomleft_y = vid_conheight;
2425         bottomleft_z = 0;
2426
2427         float redflag, blueflag;
2428         float stat_items;
2429
2430         stat_items = getstati(STAT_ITEMS);
2431         redflag = (stat_items/IT_RED_FLAG_TAKEN) & 3;
2432         blueflag = (stat_items/IT_BLUE_FLAG_TAKEN) & 3;
2433
2434         if (myteam == COLOR_TEAM1) { // always draw own flag on left
2435                 switch(redflag)
2436                 {
2437                 case 1: drawpic(bottomleft - element_offset - '-4 36 0', "gfx/hud/sb_flag_red_taken", '48 48 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL); break;
2438                 case 2: drawpic(bottomleft - element_offset - '-4 36 0', "gfx/hud/sb_flag_red_lost", '48 48 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL); break;
2439                 case 3: drawpic(bottomleft - element_offset - '-4 36 0', "gfx/hud/sb_flag_red_carrying", '48 48 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL); break;
2440                 default:
2441                         if(stat_items & IT_CTF_SHIELDED)
2442                                 if(myteam == COLOR_TEAM2)
2443                                         drawpic(bottomleft - element_offset - '-4 36 0', "gfx/hud/sb_flag_red_shielded", '48 48 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL); break;
2444                 }
2445
2446                 switch(blueflag)
2447                 {
2448                 case 1: drawpic(bottomleft - element_offset - '-72 36 0', "gfx/hud/sb_flag_blue_taken", '48 48 0', '1 1 1', sbar_alpha_fg, 0); break;
2449                 case 2: drawpic(bottomleft - element_offset - '-72 36 0', "gfx/hud/sb_flag_blue_lost", '48 48 0', '1 1 1', sbar_alpha_fg, 0); break;
2450                 case 3: drawpic(bottomleft - element_offset - '-72 36 0', "gfx/hud/sb_flag_blue_carrying", '48 48 0', '1 1 1', sbar_alpha_fg, 0); break;
2451                 default:
2452                         if(stat_items & IT_CTF_SHIELDED)
2453                                 if(myteam == COLOR_TEAM1)
2454                                         drawpic(bottomleft - element_offset - '-72 36 0', "gfx/hud/sb_flag_blue_shielded", '48 48 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL); break;
2455                 }
2456         }
2457
2458         else {
2459                 switch(blueflag)
2460                 {
2461                 case 1: drawpic(bottomleft - element_offset - '-4 36 0', "gfx/hud/sb_flag_blue_taken", '48 48 0', '1 1 1', sbar_alpha_fg, 0); break;
2462                 case 2: drawpic(bottomleft - element_offset - '-4 36 0', "gfx/hud/sb_flag_blue_lost", '48 48 0', '1 1 1', sbar_alpha_fg, 0); break;
2463                 case 3: drawpic(bottomleft - element_offset - '-4 36 0', "gfx/hud/sb_flag_blue_carrying", '48 48 0', '1 1 1', sbar_alpha_fg, 0); break;
2464                 default:
2465                         if(stat_items & IT_CTF_SHIELDED)
2466                                 if(myteam == COLOR_TEAM1)
2467                                         drawpic(bottomleft - element_offset - '-4 36 0', "gfx/hud/sb_flag_blue_shielded", '48 48 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL); break;
2468                 }
2469
2470                 switch(redflag)
2471                 {
2472                 case 1: drawpic(bottomleft - element_offset - '-72 36 0', "gfx/hud/sb_flag_red_taken", '48 48 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL); break;
2473                 case 2: drawpic(bottomleft - element_offset - '-72 36 0', "gfx/hud/sb_flag_red_lost", '48 48 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL); break;
2474                 case 3: drawpic(bottomleft - element_offset - '-72 36 0', "gfx/hud/sb_flag_red_carrying", '48 48 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL); break;
2475                 default:
2476                         if(stat_items & IT_CTF_SHIELDED)
2477                                 if(myteam == COLOR_TEAM2)
2478                                         drawpic(bottomleft - element_offset - '-72 36 0', "gfx/hud/sb_flag_red_shielded", '48 48 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL); break;
2479                 }
2480         }
2481 }
2482
2483 // Keyhunt HUD
2484 void CSQC_kh_hud(void)
2485 {
2486         float kh_keys, kh_keys_status, kh_teams_set;
2487         vector red_pos, blue_pos, yellow_pos, pink_pos, kh_size;
2488
2489         vector bottomleft;
2490         bottomleft_x = 0;
2491         bottomleft_y = vid_conheight;
2492         bottomleft_z = 0;
2493
2494         red_pos_x = 6;
2495         red_pos_y = vid_conheight - 35 - 6;
2496         red_pos_z = 0;
2497
2498         blue_pos_x = 6 + (24 * 1);
2499         blue_pos_y = vid_conheight - 35 - 6;
2500         blue_pos_z = 0;
2501
2502         yellow_pos_x = 6 + (24 * 2);
2503         yellow_pos_y = vid_conheight - 35 - 6;
2504         yellow_pos_z = 0;
2505
2506         pink_pos_x = 6 + (24 * 3);
2507         pink_pos_y = vid_conheight - 35 - 6;
2508         pink_pos_z = 0;
2509
2510         kh_keys = getstati(STAT_KH_KEYS);
2511         kh_keys_status = kh_keys / 256;
2512         kh_teams_set = cvar("_teams_available");  // set in keyhunt.qc
2513
2514         kh_size = '22 35 0';
2515
2516         if (kh_keys_status & 1)  // red
2517                 drawpic (red_pos, "gfx/hud/sb_kh_red", kh_size, '1 1 1', 0.3, 0);  // show 30% alpha key
2518         if (kh_keys & 1)
2519                 drawpic (red_pos, "gfx/hud/sb_kh_red", kh_size, '1 1 1', 1.0, 0);  // show solid key 100% alpha
2520
2521         if (kh_keys_status & 2)  // blue
2522                 drawpic (blue_pos, "gfx/hud/sb_kh_blue", kh_size, '1 1 1', 0.3, 0);
2523         if (kh_keys & 2)
2524                 drawpic (blue_pos, "gfx/hud/sb_kh_blue", kh_size, '1 1 1', 1.0, 0);
2525
2526         if (kh_teams_set & 4)  // yellow
2527         {
2528                 if (kh_keys_status & 4)
2529                         drawpic (yellow_pos, "gfx/hud/sb_kh_yellow", kh_size, '1 1 1', 0.3, 0);
2530                 if (kh_keys & 4)
2531                         drawpic (yellow_pos, "gfx/hud/sb_kh_yellow", kh_size, '1 1 1', 1.0, 0);
2532         }
2533
2534         if (kh_teams_set & 8)  // pink
2535         {
2536                 if (kh_keys_status & 8)
2537                         drawpic (pink_pos, "gfx/hud/sb_kh_pink", kh_size, '1 1 1', 0.3, 0);
2538                 if (kh_keys & 8)
2539                         drawpic (pink_pos, "gfx/hud/sb_kh_pink", kh_size, '1 1 1', 1.0, 0);
2540         }
2541 }
2542
2543 //Nexball HUD
2544 #define NBPB_SIZE '96 38 0'
2545 #define NBPB_BT 2                   //thickness
2546 #define NBPB_BRGB '1 1 1'
2547 #define NBPB_BALPH 1                //alpha
2548 #define NBPB_BFLAG DRAWFLAG_NORMAL
2549 #define NBPB_IALPH 0.4
2550 #define NBPB_IFLAG DRAWFLAG_NORMAL
2551 #define NBPB_IRGB '0.7 0.1 0'
2552
2553 void CSQC_nb_hud(void)
2554 {
2555         float stat_items, nb_pb_starttime, dt, p;
2556         vector pos;
2557
2558         stat_items = getstati(STAT_ITEMS);
2559         nb_pb_starttime = getstatf(STAT_NB_METERSTART);
2560
2561         pos_x = 4;
2562         pos_y = vid_conheight - 42;
2563         pos_z = 0;
2564
2565         //Manage the progress bar if any
2566         if (nb_pb_starttime > 0)
2567         {
2568                 vector s;
2569                 dt = mod(time - nb_pb_starttime, nb_pb_period);
2570                 // one period of positive triangle
2571                 p = 2 * dt / nb_pb_period;
2572                 if (p > 1)
2573                         p = 2 - p;
2574
2575                 s = NBPB_SIZE;
2576                 //Draw the filling
2577                 drawfill(pos, p * s_x * '1 0 0' + s_y * '0 1 0', NBPB_IRGB, NBPB_IALPH, NBPB_IFLAG);
2578
2579                 //Draw the box
2580                 s = NBPB_SIZE;
2581                 drawline(NBPB_BT, pos    , pos + '1 0 0' * s_x, NBPB_BRGB, NBPB_BALPH, NBPB_BFLAG);
2582                 drawline(NBPB_BT, pos    , pos + '0 1 0' * s_y, NBPB_BRGB, NBPB_BALPH, NBPB_BFLAG);
2583                 drawline(NBPB_BT, pos + s, pos + '1 0 0' * s_x, NBPB_BRGB, NBPB_BALPH, NBPB_BFLAG);
2584                 drawline(NBPB_BT, pos + s, pos + '0 1 0' * s_y, NBPB_BRGB, NBPB_BALPH, NBPB_BFLAG);
2585         }
2586
2587         pos_x += 12; //horizontal margin to the picture
2588         pos_y += 2; //vertical margin to the picture
2589
2590         if (stat_items & IT_KEY1)
2591                 drawpic(pos, "gfx/hud/sb_nexball_carrying", '80 34 0', '1 1 1', 1, DRAWFLAG_NORMAL);
2592 }