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