]> icculus.org git repositories - divverent/darkplaces.git/blob - sbar.c
- Got rid of all the FILE* stuff in the FS code, relying on low-level
[divverent/darkplaces.git] / sbar.c
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 // sbar.c -- status bar code
21
22 #include "quakedef.h"
23
24 typedef struct
25 {
26         char name[32];
27 }
28 sbarpic_t;
29
30 static sbarpic_t sbarpics[256];
31 static int numsbarpics;
32
33 static sbarpic_t *Sbar_NewPic(const char *name)
34 {
35         strcpy(sbarpics[numsbarpics].name, name);
36         // precache it
37         // FIXME: precache on every renderer restart (or move this to client)
38         Draw_CachePic(sbarpics[numsbarpics].name);
39         return sbarpics + (numsbarpics++);
40 }
41
42 sbarpic_t *sb_disc;
43
44 #define STAT_MINUS 10 // num frame for '-' stats digit
45 sbarpic_t *sb_nums[2][11];
46 sbarpic_t *sb_colon, *sb_slash;
47 sbarpic_t *sb_ibar;
48 sbarpic_t *sb_sbar;
49 sbarpic_t *sb_scorebar;
50 // AK only used by NEX
51 sbarpic_t *sb_sbar_minimal;
52 sbarpic_t *sb_sbar_overlay;
53
54 // AK changed the bound to 9
55 sbarpic_t *sb_weapons[7][9]; // 0 is active, 1 is owned, 2-5 are flashes
56 sbarpic_t *sb_ammo[4];
57 sbarpic_t *sb_sigil[4];
58 sbarpic_t *sb_armor[3];
59 sbarpic_t *sb_items[32];
60
61 // 0-4 are based on health (in 20 increments)
62 // 0 is static, 1 is temporary animation
63 sbarpic_t *sb_faces[5][2];
64
65 sbarpic_t *sb_face_invis;
66 sbarpic_t *sb_face_quad;
67 sbarpic_t *sb_face_invuln;
68 sbarpic_t *sb_face_invis_invuln;
69
70 qboolean sb_showscores;
71
72 int sb_lines;                   // scan lines to draw
73
74 sbarpic_t *rsb_invbar[2];
75 sbarpic_t *rsb_weapons[5];
76 sbarpic_t *rsb_items[2];
77 sbarpic_t *rsb_ammo[3];
78 sbarpic_t *rsb_teambord;                // PGM 01/19/97 - team color border
79
80 //MED 01/04/97 added two more weapons + 3 alternates for grenade launcher
81 sbarpic_t *hsb_weapons[7][5];   // 0 is active, 1 is owned, 2-5 are flashes
82 //MED 01/04/97 added array to simplify weapon parsing
83 int hipweapons[4] = {HIT_LASER_CANNON_BIT,HIT_MJOLNIR_BIT,4,HIT_PROXIMITY_GUN_BIT};
84 //MED 01/04/97 added hipnotic items array
85 sbarpic_t *hsb_items[2];
86
87 //GAME_SOM stuff:
88 sbarpic_t *somsb_health;
89 sbarpic_t *somsb_ammo[4];
90 sbarpic_t *somsb_armor[3];
91
92 cvar_t  showfps = {CVAR_SAVE, "showfps", "0"};
93 cvar_t  showtime = {CVAR_SAVE, "showtime", "0"};
94 cvar_t  showtime_format = {CVAR_SAVE, "showtime_format", "%H:%M:%S"};
95 cvar_t  showdate = {CVAR_SAVE, "showdate", "0"};
96 cvar_t  showdate_format = {CVAR_SAVE, "showdate_format", "%Y-%m-%d"};
97 cvar_t  sbar_alpha_bg = {CVAR_SAVE, "sbar_alpha_bg", "0.4"};
98 cvar_t  sbar_alpha_fg = {CVAR_SAVE, "sbar_alpha_fg", "1"};
99
100 void Sbar_MiniDeathmatchOverlay (int x, int y);
101 void Sbar_DeathmatchOverlay (void);
102 void Sbar_IntermissionOverlay (void);
103 void Sbar_FinaleOverlay (void);
104
105
106 /*
107 ===============
108 Sbar_ShowScores
109
110 Tab key down
111 ===============
112 */
113 void Sbar_ShowScores (void)
114 {
115         if (sb_showscores)
116                 return;
117         sb_showscores = true;
118 }
119
120 /*
121 ===============
122 Sbar_DontShowScores
123
124 Tab key up
125 ===============
126 */
127 void Sbar_DontShowScores (void)
128 {
129         sb_showscores = false;
130 }
131
132 void sbar_start(void)
133 {
134         int i;
135
136         numsbarpics = 0;
137
138         sb_disc = Sbar_NewPic("gfx/disc");
139
140         for (i = 0;i < 10;i++)
141         {
142                 sb_nums[0][i] = Sbar_NewPic (va("gfx/num_%i",i));
143                 sb_nums[1][i] = Sbar_NewPic (va("gfx/anum_%i",i));
144         }
145
146         sb_nums[0][10] = Sbar_NewPic ("gfx/num_minus");
147         sb_nums[1][10] = Sbar_NewPic ("gfx/anum_minus");
148
149         sb_colon = Sbar_NewPic ("gfx/num_colon");
150         sb_slash = Sbar_NewPic ("gfx/num_slash");
151
152         if (gamemode == GAME_SOM)
153         {
154                 somsb_health = Sbar_NewPic("gfx/hud_health");
155                 somsb_ammo[0] = Sbar_NewPic("gfx/sb_shells");
156                 somsb_ammo[1] = Sbar_NewPic("gfx/sb_nails");
157                 somsb_ammo[2] = Sbar_NewPic("gfx/sb_rocket");
158                 somsb_ammo[3] = Sbar_NewPic("gfx/sb_cells");
159                 somsb_armor[0] = Sbar_NewPic("gfx/sb_armor1");
160                 somsb_armor[1] = Sbar_NewPic("gfx/sb_armor2");
161                 somsb_armor[2] = Sbar_NewPic("gfx/sb_armor3");
162         }
163         else if (gamemode == GAME_NEXUIZ)
164         {
165                 sb_ammo[0] = Sbar_NewPic ("gfx/sb_shells");
166                 sb_ammo[1] = Sbar_NewPic ("gfx/sb_bullets");
167                 sb_ammo[2] = Sbar_NewPic ("gfx/sb_rocket");
168                 sb_ammo[3] = Sbar_NewPic ("gfx/sb_cells");
169
170                 sb_items[2] = Sbar_NewPic ("gfx/sb_slowmo");
171                 sb_items[3] = Sbar_NewPic ("gfx/sb_invinc");
172                 sb_items[4] = Sbar_NewPic ("gfx/sb_energy");
173                 sb_items[5] = Sbar_NewPic ("gfx/sb_str");
174
175                 sb_sbar = Sbar_NewPic("gfx/sbar");
176                 sb_sbar_minimal = Sbar_NewPic("gfx/sbar_minimal");
177                 sb_sbar_overlay = Sbar_NewPic("gfx/sbar_overlay");
178
179                 for(i = 0; i < 9;i++)
180                         sb_weapons[0][i] = Sbar_NewPic(va("gfx/inv_weapon%i",i));
181         }
182         else
183         {
184                 sb_weapons[0][0] = Sbar_NewPic ("gfx/inv_shotgun");
185                 sb_weapons[0][1] = Sbar_NewPic ("gfx/inv_sshotgun");
186                 sb_weapons[0][2] = Sbar_NewPic ("gfx/inv_nailgun");
187                 sb_weapons[0][3] = Sbar_NewPic ("gfx/inv_snailgun");
188                 sb_weapons[0][4] = Sbar_NewPic ("gfx/inv_rlaunch");
189                 sb_weapons[0][5] = Sbar_NewPic ("gfx/inv_srlaunch");
190                 sb_weapons[0][6] = Sbar_NewPic ("gfx/inv_lightng");
191         
192                 sb_weapons[1][0] = Sbar_NewPic ("gfx/inv2_shotgun");
193                 sb_weapons[1][1] = Sbar_NewPic ("gfx/inv2_sshotgun");
194                 sb_weapons[1][2] = Sbar_NewPic ("gfx/inv2_nailgun");
195                 sb_weapons[1][3] = Sbar_NewPic ("gfx/inv2_snailgun");
196                 sb_weapons[1][4] = Sbar_NewPic ("gfx/inv2_rlaunch");
197                 sb_weapons[1][5] = Sbar_NewPic ("gfx/inv2_srlaunch");
198                 sb_weapons[1][6] = Sbar_NewPic ("gfx/inv2_lightng");
199         
200                 for (i = 0;i < 5;i++)
201                 {
202                         sb_weapons[2+i][0] = Sbar_NewPic (va("gfx/inva%i_shotgun",i+1));
203                         sb_weapons[2+i][1] = Sbar_NewPic (va("gfx/inva%i_sshotgun",i+1));
204                         sb_weapons[2+i][2] = Sbar_NewPic (va("gfx/inva%i_nailgun",i+1));
205                         sb_weapons[2+i][3] = Sbar_NewPic (va("gfx/inva%i_snailgun",i+1));
206                         sb_weapons[2+i][4] = Sbar_NewPic (va("gfx/inva%i_rlaunch",i+1));
207                         sb_weapons[2+i][5] = Sbar_NewPic (va("gfx/inva%i_srlaunch",i+1));
208                         sb_weapons[2+i][6] = Sbar_NewPic (va("gfx/inva%i_lightng",i+1));
209                 }
210         
211                 sb_ammo[0] = Sbar_NewPic ("gfx/sb_shells");
212                 sb_ammo[1] = Sbar_NewPic ("gfx/sb_nails");
213                 sb_ammo[2] = Sbar_NewPic ("gfx/sb_rocket");
214                 sb_ammo[3] = Sbar_NewPic ("gfx/sb_cells");
215         
216                 sb_armor[0] = Sbar_NewPic ("gfx/sb_armor1");
217                 sb_armor[1] = Sbar_NewPic ("gfx/sb_armor2");
218                 sb_armor[2] = Sbar_NewPic ("gfx/sb_armor3");
219         
220                 sb_items[0] = Sbar_NewPic ("gfx/sb_key1");
221                 sb_items[1] = Sbar_NewPic ("gfx/sb_key2");
222                 sb_items[2] = Sbar_NewPic ("gfx/sb_invis");
223                 sb_items[3] = Sbar_NewPic ("gfx/sb_invuln");
224                 sb_items[4] = Sbar_NewPic ("gfx/sb_suit");
225                 sb_items[5] = Sbar_NewPic ("gfx/sb_quad");
226         
227                 sb_sigil[0] = Sbar_NewPic ("gfx/sb_sigil1");
228                 sb_sigil[1] = Sbar_NewPic ("gfx/sb_sigil2");
229                 sb_sigil[2] = Sbar_NewPic ("gfx/sb_sigil3");
230                 sb_sigil[3] = Sbar_NewPic ("gfx/sb_sigil4");
231         
232                 sb_faces[4][0] = Sbar_NewPic ("gfx/face1");
233                 sb_faces[4][1] = Sbar_NewPic ("gfx/face_p1");
234                 sb_faces[3][0] = Sbar_NewPic ("gfx/face2");
235                 sb_faces[3][1] = Sbar_NewPic ("gfx/face_p2");
236                 sb_faces[2][0] = Sbar_NewPic ("gfx/face3");
237                 sb_faces[2][1] = Sbar_NewPic ("gfx/face_p3");
238                 sb_faces[1][0] = Sbar_NewPic ("gfx/face4");
239                 sb_faces[1][1] = Sbar_NewPic ("gfx/face_p4");
240                 sb_faces[0][0] = Sbar_NewPic ("gfx/face5");
241                 sb_faces[0][1] = Sbar_NewPic ("gfx/face_p5");
242         
243                 sb_face_invis = Sbar_NewPic ("gfx/face_invis");
244                 sb_face_invuln = Sbar_NewPic ("gfx/face_invul2");
245                 sb_face_invis_invuln = Sbar_NewPic ("gfx/face_inv2");
246                 sb_face_quad = Sbar_NewPic ("gfx/face_quad");
247         
248                 sb_sbar = Sbar_NewPic ("gfx/sbar");
249                 sb_ibar = Sbar_NewPic ("gfx/ibar");
250                 sb_scorebar = Sbar_NewPic ("gfx/scorebar");
251         
252         //MED 01/04/97 added new hipnotic weapons
253                 if (gamemode == GAME_HIPNOTIC)
254                 {
255                         hsb_weapons[0][0] = Sbar_NewPic ("gfx/inv_laser");
256                         hsb_weapons[0][1] = Sbar_NewPic ("gfx/inv_mjolnir");
257                         hsb_weapons[0][2] = Sbar_NewPic ("gfx/inv_gren_prox");
258                         hsb_weapons[0][3] = Sbar_NewPic ("gfx/inv_prox_gren");
259                         hsb_weapons[0][4] = Sbar_NewPic ("gfx/inv_prox");
260         
261                         hsb_weapons[1][0] = Sbar_NewPic ("gfx/inv2_laser");
262                         hsb_weapons[1][1] = Sbar_NewPic ("gfx/inv2_mjolnir");
263                         hsb_weapons[1][2] = Sbar_NewPic ("gfx/inv2_gren_prox");
264                         hsb_weapons[1][3] = Sbar_NewPic ("gfx/inv2_prox_gren");
265                         hsb_weapons[1][4] = Sbar_NewPic ("gfx/inv2_prox");
266         
267                         for (i = 0;i < 5;i++)
268                         {
269                                 hsb_weapons[2+i][0] = Sbar_NewPic (va("gfx/inva%i_laser",i+1));
270                                 hsb_weapons[2+i][1] = Sbar_NewPic (va("gfx/inva%i_mjolnir",i+1));
271                                 hsb_weapons[2+i][2] = Sbar_NewPic (va("gfx/inva%i_gren_prox",i+1));
272                                 hsb_weapons[2+i][3] = Sbar_NewPic (va("gfx/inva%i_prox_gren",i+1));
273                                 hsb_weapons[2+i][4] = Sbar_NewPic (va("gfx/inva%i_prox",i+1));
274                         }
275         
276                         hsb_items[0] = Sbar_NewPic ("gfx/sb_wsuit");
277                         hsb_items[1] = Sbar_NewPic ("gfx/sb_eshld");
278                 }
279                 else if (gamemode == GAME_ROGUE)
280                 {
281                         rsb_invbar[0] = Sbar_NewPic ("gfx/r_invbar1");
282                         rsb_invbar[1] = Sbar_NewPic ("gfx/r_invbar2");
283         
284                         rsb_weapons[0] = Sbar_NewPic ("gfx/r_lava");
285                         rsb_weapons[1] = Sbar_NewPic ("gfx/r_superlava");
286                         rsb_weapons[2] = Sbar_NewPic ("gfx/r_gren");
287                         rsb_weapons[3] = Sbar_NewPic ("gfx/r_multirock");
288                         rsb_weapons[4] = Sbar_NewPic ("gfx/r_plasma");
289         
290                         rsb_items[0] = Sbar_NewPic ("gfx/r_shield1");
291                         rsb_items[1] = Sbar_NewPic ("gfx/r_agrav1");
292         
293         // PGM 01/19/97 - team color border
294                         rsb_teambord = Sbar_NewPic ("gfx/r_teambord");
295         // PGM 01/19/97 - team color border
296         
297                         rsb_ammo[0] = Sbar_NewPic ("gfx/r_ammolava");
298                         rsb_ammo[1] = Sbar_NewPic ("gfx/r_ammomulti");
299                         rsb_ammo[2] = Sbar_NewPic ("gfx/r_ammoplasma");
300                 }
301         }
302 }
303
304 void sbar_shutdown(void)
305 {
306 }
307
308 void sbar_newmap(void)
309 {
310 }
311
312 void Sbar_Init (void)
313 {
314         Cmd_AddCommand ("+showscores", Sbar_ShowScores);
315         Cmd_AddCommand ("-showscores", Sbar_DontShowScores);
316         Cvar_RegisterVariable (&showfps);
317         Cvar_RegisterVariable (&showtime);
318         Cvar_RegisterVariable (&showtime_format);
319         Cvar_RegisterVariable (&showdate);
320         Cvar_RegisterVariable (&showdate_format);
321         Cvar_RegisterVariable (&sbar_alpha_bg);
322         Cvar_RegisterVariable (&sbar_alpha_fg);
323
324         R_RegisterModule("sbar", sbar_start, sbar_shutdown, sbar_newmap);
325 }
326
327
328 //=============================================================================
329
330 // drawing routines are relative to the status bar location
331
332 int sbar_x, sbar_y;
333
334 /*
335 =============
336 Sbar_DrawPic
337 =============
338 */
339 void Sbar_DrawPic (int x, int y, sbarpic_t *sbarpic)
340 {
341         DrawQ_Pic (sbar_x + x, sbar_y + y, sbarpic->name, 0, 0, 1, 1, 1, sbar_alpha_fg.value, 0);
342 }
343
344 void Sbar_DrawAlphaPic (int x, int y, sbarpic_t *sbarpic, float alpha)
345 {
346         DrawQ_Pic (sbar_x + x, sbar_y + y, sbarpic->name, 0, 0, 1, 1, 1, alpha, 0);
347 }
348
349 /*
350 ================
351 Sbar_DrawCharacter
352
353 Draws one solid graphics character
354 ================
355 */
356 void Sbar_DrawCharacter (int x, int y, int num)
357 {
358         DrawQ_String (sbar_x + x + 4 , sbar_y + y, va("%c", num), 0, 8, 8, 1, 1, 1, sbar_alpha_fg.value, 0);
359 }
360
361 /*
362 ================
363 Sbar_DrawString
364 ================
365 */
366 void Sbar_DrawString (int x, int y, char *str)
367 {
368         DrawQ_String (sbar_x + x, sbar_y + y, str, 0, 8, 8, 1, 1, 1, sbar_alpha_fg.value, 0);
369 }
370
371 /*
372 =============
373 Sbar_DrawNum
374 =============
375 */
376 void Sbar_DrawNum (int x, int y, int num, int digits, int color)
377 {
378         char str[32], *ptr;
379         int l, frame;
380
381         l = sprintf(str, "%i", num);
382         ptr = str;
383         if (l > digits)
384                 ptr += (l-digits);
385         if (l < digits)
386                 x += (digits-l)*24;
387
388         while (*ptr)
389         {
390                 if (*ptr == '-')
391                         frame = STAT_MINUS;
392                 else
393                         frame = *ptr -'0';
394
395                 Sbar_DrawPic (x, y, sb_nums[color][frame]);
396                 x += 24;
397
398                 ptr++;
399         }
400 }
401
402 /*
403 =============
404 Sbar_DrawXNum
405 =============
406 */
407
408 void Sbar_DrawXNum (int x, int y, int num, int digits, int lettersize, float r, float g, float b, float a, int flags)
409 {
410         char str[32], *ptr;
411         int l, frame;
412
413         l = sprintf(str, "%i", num);
414         ptr = str;
415         if (l > digits)
416                 ptr += (l-digits);
417         if (l < digits)
418                 x += (digits-l) * lettersize;
419
420         while (*ptr)
421         {
422                 if (*ptr == '-')
423                         frame = STAT_MINUS;
424                 else
425                         frame = *ptr -'0';
426
427                 DrawQ_Pic (sbar_x + x, sbar_y + y, sb_nums[0][frame]->name,lettersize,lettersize,r,g,b,a * sbar_alpha_fg.value,flags);
428                 x += lettersize;
429
430                 ptr++;
431         }
432 }
433
434 //=============================================================================
435
436
437 /*
438 ===============
439 Sbar_SortFrags
440 ===============
441 */
442 static int fragsort[MAX_SCOREBOARD];
443 static int scoreboardlines;
444 void Sbar_SortFrags (void)
445 {
446         int             i, j, k;
447
448 // sort by frags
449         scoreboardlines = 0;
450         for (i=0 ; i<cl.maxclients ; i++)
451         {
452                 if (cl.scores[i].name[0])
453                 {
454                         fragsort[scoreboardlines] = i;
455                         scoreboardlines++;
456                 }
457         }
458
459         for (i=0 ; i<scoreboardlines ; i++)
460                 for (j=0 ; j<scoreboardlines-1-i ; j++)
461                         if (cl.scores[fragsort[j]].frags < cl.scores[fragsort[j+1]].frags)
462                         {
463                                 k = fragsort[j];
464                                 fragsort[j] = fragsort[j+1];
465                                 fragsort[j+1] = k;
466                         }
467 }
468
469 /*
470 ===============
471 Sbar_SoloScoreboard
472 ===============
473 */
474 void Sbar_SoloScoreboard (void)
475 {
476         char    str[80];
477         int             minutes, seconds, tens, units;
478         int             l;
479
480         sprintf (str,"Monsters:%3i /%3i", cl.stats[STAT_MONSTERS], cl.stats[STAT_TOTALMONSTERS]);
481         Sbar_DrawString (8, 4, str);
482
483         sprintf (str,"Secrets :%3i /%3i", cl.stats[STAT_SECRETS], cl.stats[STAT_TOTALSECRETS]);
484         Sbar_DrawString (8, 12, str);
485
486 // time
487         minutes = cl.time / 60;
488         seconds = cl.time - 60*minutes;
489         tens = seconds / 10;
490         units = seconds - 10*tens;
491         sprintf (str,"Time :%3i:%i%i", minutes, tens, units);
492         Sbar_DrawString (184, 4, str);
493
494 // draw level name
495         l = strlen (cl.levelname);
496         Sbar_DrawString (232 - l*4, 12, cl.levelname);
497 }
498
499 /*
500 ===============
501 Sbar_DrawScoreboard
502 ===============
503 */
504 void Sbar_DrawScoreboard (void)
505 {
506         Sbar_SoloScoreboard ();
507         if (cl.gametype == GAME_DEATHMATCH)
508                 Sbar_DeathmatchOverlay ();
509 }
510
511 //=============================================================================
512
513 // AK to make DrawInventory smaller
514 static void Sbar_DrawWeapon(int nr, float fade, int active)
515 {
516         // width = 300, height = 100
517         const int w_width = 300, w_height = 100, w_space = 10, font_size = 10;
518         const float w_scale = 0.4;
519
520         DrawQ_Pic(vid.conwidth - (w_width + w_space) * w_scale, (w_height + w_space) * w_scale * nr + w_space, sb_weapons[0][nr]->name, w_width * w_scale, w_height * w_scale, (active) ? 1 : 0.6, active ? 1 : 0.6, active ? 1 : 1, fade * sbar_alpha_fg.value, DRAWFLAG_ADDITIVE);
521         DrawQ_String(vid.conwidth - (w_space + font_size ), (w_height + w_space) * w_scale * nr + w_space, va("%i",nr+1), 0, font_size, font_size, 1, 0, 0, fade, 0);
522
523         if (active)
524                 DrawQ_Fill(vid.conwidth - (w_width + w_space) * w_scale, (w_height + w_space) * w_scale * nr + w_space, w_width * w_scale, w_height * w_scale, 0.3, 0.3, 0.3, fade * sbar_alpha_fg.value, DRAWFLAG_ADDITIVE);
525 }
526
527 /*
528 ===============
529 Sbar_DrawInventory
530 ===============
531 */
532 void Sbar_DrawInventory (void)
533 {
534         int i;
535         char num[6];
536         float time;
537         int flashon;
538
539         if (gamemode == GAME_ROGUE)
540         {
541                 if ( cl.stats[STAT_ACTIVEWEAPON] >= RIT_LAVA_NAILGUN )
542                         Sbar_DrawAlphaPic (0, -24, rsb_invbar[0], sbar_alpha_bg.value);
543                 else
544                         Sbar_DrawAlphaPic (0, -24, rsb_invbar[1], sbar_alpha_bg.value);
545         }
546         else
547                 Sbar_DrawAlphaPic (0, -24, sb_ibar, sbar_alpha_bg.value);
548
549         // weapons
550         for (i=0 ; i<7 ; i++)
551         {
552                 if (cl.stats[STAT_ITEMS] & (IT_SHOTGUN<<i) )
553                 {
554                         time = cl.item_gettime[i];
555                         flashon = (int)((cl.time - time)*10);
556                         if (flashon >= 10)
557                         {
558                                 if ( cl.stats[STAT_ACTIVEWEAPON] == (IT_SHOTGUN<<i)  )
559                                         flashon = 1;
560                                 else
561                                         flashon = 0;
562                         }
563                         else
564                                 flashon = (flashon%5) + 2;
565
566                         Sbar_DrawAlphaPic (i*24, -16, sb_weapons[flashon][i], sbar_alpha_bg.value);
567                 }
568         }
569
570         // MED 01/04/97
571         // hipnotic weapons
572         if (gamemode == GAME_HIPNOTIC)
573         {
574                 int grenadeflashing=0;
575                 for (i=0 ; i<4 ; i++)
576                 {
577                         if (cl.stats[STAT_ITEMS] & (1<<hipweapons[i]) )
578                         {
579                                 time = cl.item_gettime[hipweapons[i]];
580                                 flashon = (int)((cl.time - time)*10);
581                                 if (flashon >= 10)
582                                 {
583                                         if ( cl.stats[STAT_ACTIVEWEAPON] == (1<<hipweapons[i])  )
584                                                 flashon = 1;
585                                         else
586                                                 flashon = 0;
587                                 }
588                                 else
589                                         flashon = (flashon%5) + 2;
590
591                                 // check grenade launcher
592                                 if (i==2)
593                                 {
594                                         if (cl.stats[STAT_ITEMS] & HIT_PROXIMITY_GUN)
595                                         {
596                                                 if (flashon)
597                                                 {
598                                                         grenadeflashing = 1;
599                                                         Sbar_DrawPic (96, -16, hsb_weapons[flashon][2]);
600                                                 }
601                                         }
602                                 }
603                                 else if (i==3)
604                                 {
605                                         if (cl.stats[STAT_ITEMS] & (IT_SHOTGUN<<4))
606                                         {
607                                                 if (!grenadeflashing)
608                                                         Sbar_DrawPic (96, -16, hsb_weapons[flashon][3]);
609                                         }
610                                         else
611                                                 Sbar_DrawPic (96, -16, hsb_weapons[flashon][4]);
612                                 }
613                                 else
614                                         Sbar_DrawPic (176 + (i*24), -16, hsb_weapons[flashon][i]);
615                         }
616                 }
617         }
618
619         if (gamemode == GAME_ROGUE)
620         {
621                 // check for powered up weapon.
622                 if ( cl.stats[STAT_ACTIVEWEAPON] >= RIT_LAVA_NAILGUN )
623                         for (i=0;i<5;i++)
624                                 if (cl.stats[STAT_ACTIVEWEAPON] == (RIT_LAVA_NAILGUN << i))
625                                         Sbar_DrawPic ((i+2)*24, -16, rsb_weapons[i]);
626         }
627
628         // ammo counts
629         for (i=0 ; i<4 ; i++)
630         {
631                 sprintf (num, "%3i",cl.stats[STAT_SHELLS+i] );
632                 if (num[0] != ' ')
633                         Sbar_DrawCharacter ( (6*i+1)*8 - 2, -24, 18 + num[0] - '0');
634                 if (num[1] != ' ')
635                         Sbar_DrawCharacter ( (6*i+2)*8 - 2, -24, 18 + num[1] - '0');
636                 if (num[2] != ' ')
637                         Sbar_DrawCharacter ( (6*i+3)*8 - 2, -24, 18 + num[2] - '0');
638         }
639
640         // items
641         for (i=0 ; i<6 ; i++)
642                 if (cl.stats[STAT_ITEMS] & (1<<(17+i)))
643                 {
644                         //MED 01/04/97 changed keys
645                         if (gamemode != GAME_HIPNOTIC || (i>1))
646                                 Sbar_DrawPic (192 + i*16, -16, sb_items[i]);
647                 }
648
649         //MED 01/04/97 added hipnotic items
650         // hipnotic items
651         if (gamemode == GAME_HIPNOTIC)
652         {
653                 for (i=0 ; i<2 ; i++)
654                         if (cl.stats[STAT_ITEMS] & (1<<(24+i)))
655                                 Sbar_DrawPic (288 + i*16, -16, hsb_items[i]);
656         }
657
658         if (gamemode == GAME_ROGUE)
659         {
660                 // new rogue items
661                 for (i=0 ; i<2 ; i++)
662                         if (cl.stats[STAT_ITEMS] & (1<<(29+i)))
663                                 Sbar_DrawPic (288 + i*16, -16, rsb_items[i]);
664         }
665         else
666         {
667                 // sigils
668                 for (i=0 ; i<4 ; i++)
669                         if (cl.stats[STAT_ITEMS] & (1<<(28+i)))
670                                 Sbar_DrawPic (320-32 + i*8, -16, sb_sigil[i]);
671         }
672 }
673
674 //=============================================================================
675
676 /*
677 ===============
678 Sbar_DrawFrags
679 ===============
680 */
681 void Sbar_DrawFrags (void)
682 {
683         int i, k, l, x, f;
684         char num[12];
685         scoreboard_t *s;
686         qbyte *c;
687
688         Sbar_SortFrags ();
689
690         // draw the text
691         l = min(scoreboardlines, 4);
692
693         x = 23 * 8;
694
695         for (i = 0;i < l;i++)
696         {
697                 k = fragsort[i];
698                 s = &cl.scores[k];
699
700                 // draw background
701                 c = (qbyte *)&palette_complete[(s->colors & 0xf0) + 8];
702                 DrawQ_Fill (sbar_x + x + 10, sbar_y     - 23, 28, 4, c[0] * (1.0f / 255.0f), c[1] * (1.0f / 255.0f), c[2] * (1.0f / 255.0f), c[3] * (1.0f / 255.0f) * sbar_alpha_fg.value, 0);
703                 c = (qbyte *)&palette_complete[((s->colors & 15)<<4) + 8];
704                 DrawQ_Fill (sbar_x + x + 10, sbar_y + 4 - 23, 28, 3, c[0] * (1.0f / 255.0f), c[1] * (1.0f / 255.0f), c[2] * (1.0f / 255.0f), c[3] * (1.0f / 255.0f) * sbar_alpha_fg.value, 0);
705
706                 // draw number
707                 f = s->frags;
708                 sprintf (num, "%3i",f);
709
710                 Sbar_DrawCharacter (x +  8, -24, num[0]);
711                 Sbar_DrawCharacter (x + 16, -24, num[1]);
712                 Sbar_DrawCharacter (x + 24, -24, num[2]);
713
714                 if (k == cl.viewentity - 1)
715                 {
716                         Sbar_DrawCharacter ( x      + 2, -24, 16);
717                         Sbar_DrawCharacter ( x + 32 - 4, -24, 17);
718                 }
719                 x += 32;
720         }
721 }
722
723 //=============================================================================
724
725
726 /*
727 ===============
728 Sbar_DrawFace
729 ===============
730 */
731 void Sbar_DrawFace (void)
732 {
733         int f;
734
735 // PGM 01/19/97 - team color drawing
736 // PGM 03/02/97 - fixed so color swatch only appears in CTF modes
737         if (gamemode == GAME_ROGUE && !cl.islocalgame && (teamplay.integer > 3) && (teamplay.integer < 7))
738         {
739                 char num[12];
740                 scoreboard_t *s;
741                 qbyte *c;
742
743                 s = &cl.scores[cl.viewentity - 1];
744                 // draw background
745                 Sbar_DrawPic (112, 0, rsb_teambord);
746                 c = (qbyte *)&palette_complete[(s->colors & 0xf0) + 8];
747                 DrawQ_Fill (sbar_x + 113, vid.conheight-SBAR_HEIGHT+3, 22, 9, c[0] * (1.0f / 255.0f), c[1] * (1.0f / 255.0f), c[2] * (1.0f / 255.0f), c[3] * (1.0f / 255.0f) * sbar_alpha_fg.value, 0);
748                 c = (qbyte *)&palette_complete[((s->colors & 15)<<4) + 8];
749                 DrawQ_Fill (sbar_x + 113, vid.conheight-SBAR_HEIGHT+12, 22, 9, c[0] * (1.0f / 255.0f), c[1] * (1.0f / 255.0f), c[2] * (1.0f / 255.0f), c[3] * (1.0f / 255.0f) * sbar_alpha_fg.value, 0);
750
751                 // draw number
752                 f = s->frags;
753                 sprintf (num, "%3i",f);
754
755                 if ((s->colors & 0xf0)==0)
756                 {
757                         if (num[0] != ' ')
758                                 Sbar_DrawCharacter(109, 3, 18 + num[0] - '0');
759                         if (num[1] != ' ')
760                                 Sbar_DrawCharacter(116, 3, 18 + num[1] - '0');
761                         if (num[2] != ' ')
762                                 Sbar_DrawCharacter(123, 3, 18 + num[2] - '0');
763                 }
764                 else
765                 {
766                         Sbar_DrawCharacter ( 109, 3, num[0]);
767                         Sbar_DrawCharacter ( 116, 3, num[1]);
768                         Sbar_DrawCharacter ( 123, 3, num[2]);
769                 }
770
771                 return;
772         }
773 // PGM 01/19/97 - team color drawing
774
775         if ( (cl.stats[STAT_ITEMS] & (IT_INVISIBILITY | IT_INVULNERABILITY) ) == (IT_INVISIBILITY | IT_INVULNERABILITY) )
776                 Sbar_DrawPic (112, 0, sb_face_invis_invuln);
777         else if (cl.stats[STAT_ITEMS] & IT_QUAD)
778                 Sbar_DrawPic (112, 0, sb_face_quad );
779         else if (cl.stats[STAT_ITEMS] & IT_INVISIBILITY)
780                 Sbar_DrawPic (112, 0, sb_face_invis );
781         else if (cl.stats[STAT_ITEMS] & IT_INVULNERABILITY)
782                 Sbar_DrawPic (112, 0, sb_face_invuln);
783         else
784         {
785                 f = cl.stats[STAT_HEALTH] / 20;
786                 f = bound(0, f, 4);
787                 Sbar_DrawPic (112, 0, sb_faces[f][cl.time <= cl.faceanimtime]);
788         }
789 }
790
791 void Sbar_ShowFPS(void)
792 {
793         float fps_x, fps_y, fps_scalex, fps_scaley, fps_height;
794         char fpsstring[32];
795         char timestring[32];
796         char datestring[32];
797         fpsstring[0] = 0;
798         timestring[0] = 0;
799         datestring[0] = 0;
800         if (showfps.integer)
801         {
802                 int calc;
803                 if (showfps.integer > 1)
804                 {
805                         static double currtime, frametimes[32];
806                         double newtime, total;
807                         int count, i;
808                         static int framecycle = 0;
809
810                         newtime = Sys_DoubleTime();
811                         frametimes[framecycle] = newtime - currtime;
812                         total = 0;
813                         count = 0;
814                         while(total < 0.2 && count < 32 && frametimes[i = (framecycle - count) & 31])
815                         {
816                                 total += frametimes[i];
817                                 count++;
818                         }
819                         framecycle++;
820                         framecycle &= 31;
821                         if (showfps.integer == 2)
822                                 calc = (int) (((double) count / total) + 0.5);
823                         else // showfps 3, rapid update
824                                 calc = (int) ((1.0 / (newtime - currtime)) + 0.5);
825                         currtime = newtime;
826                 }
827                 else
828                 {
829                         static double nexttime = 0, lasttime = 0;
830                         static int framerate = 0, framecount = 0;
831                         double newtime;
832                         newtime = Sys_DoubleTime();
833                         if (newtime >= nexttime)
834                         {
835                                 framerate = (int) (framecount / (newtime - lasttime) + 0.5);
836                                 lasttime = newtime;
837                                 nexttime = max(nexttime + 1, lasttime - 1);
838                                 framecount = 0;
839                         }
840                         framecount++;
841                         calc = framerate;
842                 }
843                 snprintf(fpsstring, sizeof(fpsstring), "%4i fps", calc);
844         }
845         if (showtime.integer)
846                 strlcpy(timestring, Sys_TimeString(showtime_format.string), sizeof(timestring));
847         if (showdate.integer)
848                 strlcpy(datestring, Sys_TimeString(showdate_format.string), sizeof(datestring));
849         if (fpsstring[0] || timestring[0])
850         {
851                 fps_scalex = 12;
852                 fps_scaley = 12;
853                 fps_height = fps_scaley * ((fpsstring[0] != 0) + (timestring[0] != 0) + (datestring[0] != 0));
854                 //fps_y = vid.conheight - sb_lines; // yes this may draw over the sbar
855                 //fps_y = bound(0, fps_y, vid.conheight - fps_height);
856                 fps_y = vid.conheight - fps_height;
857                 if (fpsstring[0])
858                 {
859                         fps_x = vid.conwidth - fps_scalex * strlen(fpsstring);
860                         DrawQ_Fill(fps_x, fps_y, fps_scalex * strlen(fpsstring), fps_scaley, 0, 0, 0, 0.5, 0);
861                         DrawQ_String(fps_x, fps_y, fpsstring, 0, fps_scalex, fps_scaley, 1, 1, 1, 1, 0);
862                         fps_y += fps_scaley;
863                 }
864                 if (timestring[0])
865                 {
866                         fps_x = vid.conwidth - fps_scalex * strlen(timestring);
867                         DrawQ_Fill(fps_x, fps_y, fps_scalex * strlen(timestring), fps_scaley, 0, 0, 0, 0.5, 0);
868                         DrawQ_String(fps_x, fps_y, timestring, 0, fps_scalex, fps_scaley, 1, 1, 1, 1, 0);
869                         fps_y += fps_scaley;
870                 }
871                 if (datestring[0])
872                 {
873                         fps_x = vid.conwidth - fps_scalex * strlen(datestring);
874                         DrawQ_Fill(fps_x, fps_y, fps_scalex * strlen(datestring), fps_scaley, 0, 0, 0, 0.5, 0);
875                         DrawQ_String(fps_x, fps_y, datestring, 0, fps_scalex, fps_scaley, 1, 1, 1, 1, 0);
876                         fps_y += fps_scaley;
877                 }
878         }
879 }
880
881 /*
882 ===============
883 Sbar_Draw
884 ===============
885 */
886 void Sbar_Draw (void)
887 {
888         if (cl.intermission == 1)
889         {
890                 Sbar_IntermissionOverlay();
891                 return;
892         }
893         else if (cl.intermission == 2)
894         {
895                 Sbar_FinaleOverlay();
896                 return;
897         }
898
899         if (gamemode == GAME_SOM)
900         {
901                 if (sb_showscores || cl.stats[STAT_HEALTH] <= 0)
902                         Sbar_DrawScoreboard ();
903                 else if (sb_lines)
904                 {
905                         // this is the top left of the sbar area
906                         sbar_x = 0;
907                         sbar_y = vid.conheight - 24*3;
908
909                         // armor
910                         if (cl.stats[STAT_ARMOR])
911                         {
912                                 if (cl.stats[STAT_ITEMS] & IT_ARMOR3)
913                                         Sbar_DrawPic(0, 0, somsb_armor[2]);
914                                 else if (cl.stats[STAT_ITEMS] & IT_ARMOR2)
915                                         Sbar_DrawPic(0, 0, somsb_armor[1]);
916                                 else if (cl.stats[STAT_ITEMS] & IT_ARMOR1)
917                                         Sbar_DrawPic(0, 0, somsb_armor[0]);
918                                 Sbar_DrawNum(24, 0, cl.stats[STAT_ARMOR], 3, cl.stats[STAT_ARMOR] <= 25);
919                         }
920
921                         // health
922                         Sbar_DrawPic(0, 24, somsb_health);
923                         Sbar_DrawNum(24, 24, cl.stats[STAT_HEALTH], 3, cl.stats[STAT_HEALTH] <= 25);
924
925                         // ammo icon
926                         if (cl.stats[STAT_ITEMS] & IT_SHELLS)
927                                 Sbar_DrawPic(0, 48, somsb_ammo[0]);
928                         else if (cl.stats[STAT_ITEMS] & IT_NAILS)
929                                 Sbar_DrawPic(0, 48, somsb_ammo[1]);
930                         else if (cl.stats[STAT_ITEMS] & IT_ROCKETS)
931                                 Sbar_DrawPic(0, 48, somsb_ammo[2]);
932                         else if (cl.stats[STAT_ITEMS] & IT_CELLS)
933                                 Sbar_DrawPic(0, 48, somsb_ammo[3]);
934                         Sbar_DrawNum(24, 48, cl.stats[STAT_AMMO], 3, false);
935                         if (cl.stats[STAT_SHELLS])
936                                 Sbar_DrawNum(24 + 3*24, 48, cl.stats[STAT_SHELLS], 1, true);
937                 }
938         }
939         else if (gamemode == GAME_NEXUIZ)
940         {
941                 sbar_y = vid.conheight - 47;
942                 sbar_x = (vid.conwidth - 640)/2;
943
944                 if (sb_showscores || cl.stats[STAT_HEALTH] <= 0)
945                 {
946                         Sbar_DrawAlphaPic (0, 0, sb_scorebar, sbar_alpha_bg.value);
947                         Sbar_DrawScoreboard ();
948                 }
949                 else if (sb_lines)
950                 {
951                         int i;
952                         double time;
953                         float fade;
954
955                         // we have a max time 2s (min time = 0)
956                         if ((time = cl.time - cl.weapontime) < 2)
957                         {
958                                 fade = (1.0 - 0.5 * time);
959                                 fade *= fade;
960                                 for (i = 0; i < 8;i++)
961                                         if (cl.stats[STAT_ITEMS] & (1 << i))
962                                                 Sbar_DrawWeapon(i + 1, fade, (i + 2 == cl.stats[STAT_ACTIVEWEAPON]));
963                         
964                                 if((cl.stats[STAT_ITEMS] & (1<<12)))
965                                         Sbar_DrawWeapon(0, fade, (cl.stats[STAT_ACTIVEWEAPON] == 1));
966                         }
967
968                         //if (!cl.islocalgame)
969                         //      Sbar_DrawFrags ();
970
971                         if (sb_lines > 24)
972                                 Sbar_DrawAlphaPic (0, 0, sb_sbar, sbar_alpha_fg.value);
973                         else
974                                 Sbar_DrawAlphaPic (0, 0, sb_sbar_minimal, sbar_alpha_fg.value);
975
976                         // special items
977                         if (cl.stats[STAT_ITEMS] & IT_INVULNERABILITY)
978                         {
979                                 Sbar_DrawNum (36, 0, 666, 3, 1);
980                                 Sbar_DrawPic (0, 0, sb_disc);
981                         }
982
983                         // armor
984                         Sbar_DrawXNum ((340-3*24), 12, cl.stats[STAT_ARMOR], 3, 24, 0.6,0.7,0.8,1,0);
985
986                         // health
987                         if(cl.stats[STAT_HEALTH] > 100)
988                                 Sbar_DrawXNum((154-3*24),12,cl.stats[STAT_HEALTH],3,24,1,1,1,1,0);
989                         else if(cl.stats[STAT_HEALTH] <= 25 && cl.time - (int)cl.time > 0.5)
990                                 Sbar_DrawXNum((154-3*24),12,cl.stats[STAT_HEALTH],3,24,0.7,0,0,1,0);
991                         else
992                                 Sbar_DrawXNum((154-3*24),12,cl.stats[STAT_HEALTH],3,24,0.6,0.7,0.8,1,0);
993
994                         // AK dont draw ammo for the laser
995                         if(cl.stats[STAT_ACTIVEWEAPON] != 12)
996                         {
997                                 if (cl.stats[STAT_ITEMS] & NEX_IT_SHELLS)
998                                         Sbar_DrawPic (519, 0, sb_ammo[0]);
999                                 else if (cl.stats[STAT_ITEMS] & NEX_IT_BULLETS)
1000                                         Sbar_DrawPic (519, 0, sb_ammo[1]);
1001                                 else if (cl.stats[STAT_ITEMS] & NEX_IT_ROCKETS)
1002                                         Sbar_DrawPic (519, 0, sb_ammo[2]);
1003                                 else if (cl.stats[STAT_ITEMS] & NEX_IT_CELLS)
1004                                         Sbar_DrawPic (519, 0, sb_ammo[3]);
1005
1006                                 if(cl.stats[STAT_AMMO] <= 10)
1007                                         Sbar_DrawXNum ((519-3*24), 12, cl.stats[STAT_AMMO], 3, 24, 0.7, 0,0,1,0);
1008                                 else
1009                                         Sbar_DrawXNum ((519-3*24), 12, cl.stats[STAT_AMMO], 3, 24, 0.6, 0.7,0.8,1,0);
1010
1011                         }
1012
1013                         if (sb_lines > 24)
1014                                 DrawQ_Pic(sbar_x,sbar_y,sb_sbar_overlay->name,0,0,1,1,1,1,DRAWFLAG_MODULATE);
1015                 }
1016
1017                 //if (vid.conwidth > 320 && cl.gametype == GAME_DEATHMATCH)
1018                 //      Sbar_MiniDeathmatchOverlay (0, 17);
1019         }
1020         else // Quake and others
1021         {
1022                 sbar_y = vid.conheight - SBAR_HEIGHT;
1023                 if (cl.gametype == GAME_DEATHMATCH && gamemode != GAME_TRANSFUSION)
1024                         sbar_x = 0;
1025                 else
1026                         sbar_x = (vid.conwidth - 320)/2;
1027
1028                 if (sb_lines > 24)
1029                 {
1030                         if (gamemode != GAME_GOODVSBAD2)
1031                                 Sbar_DrawInventory ();
1032                         if (!cl.islocalgame && gamemode != GAME_TRANSFUSION)
1033                                 Sbar_DrawFrags ();
1034                 }
1035
1036                 if (sb_showscores || cl.stats[STAT_HEALTH] <= 0)
1037                 {
1038                         if (gamemode != GAME_GOODVSBAD2)
1039                                 Sbar_DrawAlphaPic (0, 0, sb_scorebar, sbar_alpha_bg.value);
1040                         Sbar_DrawScoreboard ();
1041                 }
1042                 else if (sb_lines)
1043                 {
1044                         Sbar_DrawAlphaPic (0, 0, sb_sbar, sbar_alpha_bg.value);
1045
1046                         // keys (hipnotic only)
1047                         //MED 01/04/97 moved keys here so they would not be overwritten
1048                         if (gamemode == GAME_HIPNOTIC)
1049                         {
1050                                 if (cl.stats[STAT_ITEMS] & IT_KEY1)
1051                                         Sbar_DrawPic (209, 3, sb_items[0]);
1052                                 if (cl.stats[STAT_ITEMS] & IT_KEY2)
1053                                         Sbar_DrawPic (209, 12, sb_items[1]);
1054                         }
1055                         // armor
1056                         if (gamemode != GAME_GOODVSBAD2)
1057                         {
1058                                 if (cl.stats[STAT_ITEMS] & IT_INVULNERABILITY)
1059                                 {
1060                                         Sbar_DrawNum (24, 0, 666, 3, 1);
1061                                         Sbar_DrawPic (0, 0, sb_disc);
1062                                 }
1063                                 else
1064                                 {
1065                                         if (gamemode == GAME_ROGUE)
1066                                         {
1067                                                 Sbar_DrawNum (24, 0, cl.stats[STAT_ARMOR], 3, cl.stats[STAT_ARMOR] <= 25);
1068                                                 if (cl.stats[STAT_ITEMS] & RIT_ARMOR3)
1069                                                         Sbar_DrawPic (0, 0, sb_armor[2]);
1070                                                 else if (cl.stats[STAT_ITEMS] & RIT_ARMOR2)
1071                                                         Sbar_DrawPic (0, 0, sb_armor[1]);
1072                                                 else if (cl.stats[STAT_ITEMS] & RIT_ARMOR1)
1073                                                         Sbar_DrawPic (0, 0, sb_armor[0]);
1074                                         }
1075                                         else
1076                                         {
1077                                                 Sbar_DrawNum (24, 0, cl.stats[STAT_ARMOR], 3, cl.stats[STAT_ARMOR] <= 25);
1078                                                 if (cl.stats[STAT_ITEMS] & IT_ARMOR3)
1079                                                         Sbar_DrawPic (0, 0, sb_armor[2]);
1080                                                 else if (cl.stats[STAT_ITEMS] & IT_ARMOR2)
1081                                                         Sbar_DrawPic (0, 0, sb_armor[1]);
1082                                                 else if (cl.stats[STAT_ITEMS] & IT_ARMOR1)
1083                                                         Sbar_DrawPic (0, 0, sb_armor[0]);
1084                                         }
1085                                 }
1086                         }
1087
1088                         // face
1089                         Sbar_DrawFace ();
1090
1091                         // health
1092                         Sbar_DrawNum (154, 0, cl.stats[STAT_HEALTH], 3, cl.stats[STAT_HEALTH] <= 25);
1093
1094                         // ammo icon
1095                         if (gamemode == GAME_ROGUE)
1096                         {
1097                                 if (cl.stats[STAT_ITEMS] & RIT_SHELLS)
1098                                         Sbar_DrawPic (224, 0, sb_ammo[0]);
1099                                 else if (cl.stats[STAT_ITEMS] & RIT_NAILS)
1100                                         Sbar_DrawPic (224, 0, sb_ammo[1]);
1101                                 else if (cl.stats[STAT_ITEMS] & RIT_ROCKETS)
1102                                         Sbar_DrawPic (224, 0, sb_ammo[2]);
1103                                 else if (cl.stats[STAT_ITEMS] & RIT_CELLS)
1104                                         Sbar_DrawPic (224, 0, sb_ammo[3]);
1105                                 else if (cl.stats[STAT_ITEMS] & RIT_LAVA_NAILS)
1106                                         Sbar_DrawPic (224, 0, rsb_ammo[0]);
1107                                 else if (cl.stats[STAT_ITEMS] & RIT_PLASMA_AMMO)
1108                                         Sbar_DrawPic (224, 0, rsb_ammo[1]);
1109                                 else if (cl.stats[STAT_ITEMS] & RIT_MULTI_ROCKETS)
1110                                         Sbar_DrawPic (224, 0, rsb_ammo[2]);
1111                         }
1112                         else
1113                         {
1114                                 if (cl.stats[STAT_ITEMS] & IT_SHELLS)
1115                                         Sbar_DrawPic (224, 0, sb_ammo[0]);
1116                                 else if (cl.stats[STAT_ITEMS] & IT_NAILS)
1117                                         Sbar_DrawPic (224, 0, sb_ammo[1]);
1118                                 else if (cl.stats[STAT_ITEMS] & IT_ROCKETS)
1119                                         Sbar_DrawPic (224, 0, sb_ammo[2]);
1120                                 else if (cl.stats[STAT_ITEMS] & IT_CELLS)
1121                                         Sbar_DrawPic (224, 0, sb_ammo[3]);
1122                         }
1123
1124                         Sbar_DrawNum (248, 0, cl.stats[STAT_AMMO], 3, cl.stats[STAT_AMMO] <= 10);
1125
1126                 }
1127
1128                 if (vid.conwidth > 320 && cl.gametype == GAME_DEATHMATCH)
1129                 {
1130                         if (gamemode == GAME_TRANSFUSION)
1131                                 Sbar_MiniDeathmatchOverlay (0, 0);
1132                         else
1133                                 Sbar_MiniDeathmatchOverlay (324, vid.conheight - sb_lines);
1134                 }
1135         }
1136
1137         Sbar_ShowFPS();
1138
1139         R_Draw2DCrosshair();
1140
1141         if (cl_prydoncursor.integer)
1142                 DrawQ_Pic((cl.cmd.cursor_screen[0] + 1) * 0.5 * vid.conwidth, (cl.cmd.cursor_screen[1] + 1) * 0.5 * vid.conheight, va("gfx/prydoncursor%03i.lmp", cl_prydoncursor.integer), 0, 0, 1, 1, 1, 1, 0);
1143 }
1144
1145 //=============================================================================
1146
1147 /*
1148 ==================
1149 Sbar_DeathmatchOverlay
1150
1151 ==================
1152 */
1153 float Sbar_PrintScoreboardItem(scoreboard_t *s, float x, float y)
1154 {
1155         qbyte *c;
1156         // draw colors behind score
1157         c = (qbyte *)&palette_complete[(s->colors & 0xf0) + 8];
1158         DrawQ_Fill(x + 8, y+1, 32, 3, c[0] * (1.0f / 255.0f), c[1] * (1.0f / 255.0f), c[2] * (1.0f / 255.0f), c[3] * (1.0f / 255.0f) * sbar_alpha_fg.value, 0);
1159         c = (qbyte *)&palette_complete[((s->colors & 15)<<4) + 8];
1160         DrawQ_Fill(x + 8, y+4, 32, 3, c[0] * (1.0f / 255.0f), c[1] * (1.0f / 255.0f), c[2] * (1.0f / 255.0f), c[3] * (1.0f / 255.0f) * sbar_alpha_fg.value, 0);
1161         // print the text
1162         DrawQ_String(x, y, va("%c%4i %s", (s - cl.scores) == cl.playerentity - 1 ? 13 : ' ', (int) s->frags, s->name), 0, 8, 8, 1, 1, 1, 1 * sbar_alpha_fg.value, 0);
1163         return 8;
1164 }
1165
1166 void Sbar_DeathmatchOverlay (void)
1167 {
1168         int i, x, y;
1169         cachepic_t *pic;
1170
1171         pic = Draw_CachePic ("gfx/ranking.lmp");
1172         DrawQ_Pic ((vid.conwidth - pic->width)/2, 8, "gfx/ranking.lmp", 0, 0, 1, 1, 1, 1 * sbar_alpha_fg.value, 0);
1173
1174         // scores
1175         Sbar_SortFrags ();
1176         // draw the text
1177         x = (vid.conwidth - (6 + 15) * 8) / 2;
1178         y = 40;
1179         for (i = 0;i < scoreboardlines && y < vid.conheight;i++)
1180                 y += Sbar_PrintScoreboardItem(cl.scores + fragsort[i], x, y);
1181 }
1182
1183 /*
1184 ==================
1185 Sbar_DeathmatchOverlay
1186
1187 ==================
1188 */
1189 void Sbar_MiniDeathmatchOverlay (int x, int y)
1190 {
1191         int i, numlines;
1192
1193         // decide where to print
1194         if (gamemode == GAME_TRANSFUSION)
1195                 numlines = (vid.conwidth - x + 127) / 128;
1196         else
1197                 numlines = (vid.conheight - y + 7) / 8;
1198
1199         // give up if there isn't room
1200         if (x >= vid.conwidth || y >= vid.conheight || numlines < 1)
1201                 return;
1202
1203         // scores
1204         Sbar_SortFrags ();
1205
1206         //find us
1207         for (i = 0; i < scoreboardlines; i++)
1208                 if (fragsort[i] == cl.playerentity - 1)
1209                         break;
1210
1211         // figure out start
1212         i -= numlines/2;
1213         i = min(i, scoreboardlines - numlines);
1214         i = max(i, 0);
1215
1216         if (gamemode == GAME_TRANSFUSION)
1217         {
1218                 for (;i < scoreboardlines && x < vid.conwidth;i++)
1219                         x += 128 + Sbar_PrintScoreboardItem(cl.scores + fragsort[i], x, y);
1220         }
1221         else
1222         {
1223                 for (;i < scoreboardlines && y < vid.conheight;i++)
1224                         y += Sbar_PrintScoreboardItem(cl.scores + fragsort[i], x, y);
1225         }
1226 }
1227
1228 /*
1229 ==================
1230 Sbar_IntermissionOverlay
1231
1232 ==================
1233 */
1234 void Sbar_IntermissionOverlay (void)
1235 {
1236         int             dig;
1237         int             num;
1238
1239         if (cl.gametype == GAME_DEATHMATCH)
1240         {
1241                 Sbar_DeathmatchOverlay ();
1242                 return;
1243         }
1244
1245         sbar_x = (vid.conwidth - 320) >> 1;
1246         sbar_y = (vid.conheight - 200) >> 1;
1247
1248         DrawQ_Pic (sbar_x + 64, sbar_y + 24, "gfx/complete.lmp", 0, 0, 1, 1, 1, 1 * sbar_alpha_fg.value, 0);
1249         DrawQ_Pic (sbar_x + 0, sbar_y + 56, "gfx/inter.lmp", 0, 0, 1, 1, 1, 1 * sbar_alpha_fg.value, 0);
1250
1251 // time
1252         dig = cl.completed_time/60;
1253         Sbar_DrawNum (160, 64, dig, 3, 0);
1254         num = cl.completed_time - dig*60;
1255         Sbar_DrawPic (234,64,sb_colon);
1256         Sbar_DrawPic (246,64,sb_nums[0][num/10]);
1257         Sbar_DrawPic (266,64,sb_nums[0][num%10]);
1258
1259         Sbar_DrawNum (160, 104, cl.stats[STAT_SECRETS], 3, 0);
1260         Sbar_DrawPic (232, 104, sb_slash);
1261         Sbar_DrawNum (240, 104, cl.stats[STAT_TOTALSECRETS], 3, 0);
1262
1263         Sbar_DrawNum (160, 144, cl.stats[STAT_MONSTERS], 3, 0);
1264         Sbar_DrawPic (232, 144, sb_slash);
1265         Sbar_DrawNum (240, 144, cl.stats[STAT_TOTALMONSTERS], 3, 0);
1266
1267 }
1268
1269
1270 /*
1271 ==================
1272 Sbar_FinaleOverlay
1273
1274 ==================
1275 */
1276 void Sbar_FinaleOverlay (void)
1277 {
1278         cachepic_t      *pic;
1279
1280         pic = Draw_CachePic ("gfx/finale.lmp");
1281         DrawQ_Pic((vid.conwidth - pic->width)/2, 16, "gfx/finale.lmp", 0, 0, 1, 1, 1, 1 * sbar_alpha_fg.value, 0);
1282 }
1283