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