st_lib.c
上传用户:xuyinpeng
上传日期:2021-05-12
资源大小:455k
文件大小:5k
源码类别:

射击游戏

开发平台:

Visual C++

  1. // Emacs style mode select   -*- C++ -*- 
  2. //-----------------------------------------------------------------------------
  3. //
  4. // $Id:$
  5. //
  6. // Copyright (C) 1993-1996 by id Software, Inc.
  7. //
  8. // This source is available for distribution and/or modification
  9. // only under the terms of the DOOM Source Code License as
  10. // published by id Software. All rights reserved.
  11. //
  12. // The source is distributed in the hope that it will be useful,
  13. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. // FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
  15. // for more details.
  16. //
  17. // $Log:$
  18. //
  19. // DESCRIPTION:
  20. // The status bar widget code.
  21. //
  22. //-----------------------------------------------------------------------------
  23. static const char
  24. rcsid[] = "$Id: st_lib.c,v 1.4 1997/02/03 16:47:56 b1 Exp $";
  25. #include <ctype.h>
  26. #include "doomdef.h"
  27. #include "z_zone.h"
  28. #include "v_video.h"
  29. #include "m_swap.h"
  30. #include "i_system.h"
  31. #include "w_wad.h"
  32. #include "st_stuff.h"
  33. #include "st_lib.h"
  34. #include "r_local.h"
  35. // in AM_map.c
  36. extern boolean automapactive; 
  37. char MsgText[256];
  38. void WriteDebug(char *);
  39. //
  40. // Hack display negative frags.
  41. //  Loads and store the stminus lump.
  42. //
  43. patch_t* sttminus;
  44. void STlib_init(void)
  45. {
  46.     sttminus = (patch_t *) W_CacheLumpName("STTMINUS", PU_STATIC);
  47. }
  48. // ?
  49. void
  50. STlib_initNum
  51. ( st_number_t* n,
  52.   int x,
  53.   int y,
  54.   patch_t** pl,
  55.   int* num,
  56.   boolean* on,
  57.   int width )
  58. {
  59.     n->x = x;
  60.     n->y = y;
  61.     n->oldnum = 0;
  62.     n->width = width;
  63.     n->num = num;
  64.     n->on = on;
  65.     n->p = pl;
  66. }
  67. // 
  68. // A fairly efficient way to draw a number
  69. //  based on differences from the old number.
  70. // Note: worth the trouble?
  71. //
  72. void
  73. STlib_drawNum
  74. ( st_number_t* n,
  75.   boolean refresh )
  76. {
  77.     int numdigits = n->width;
  78.     int num = *n->num;
  79.     
  80.     int w = SHORT(n->p[0]->width);
  81.     int h = SHORT(n->p[0]->height);
  82.     int x = n->x;
  83.     
  84.     int neg;
  85.     n->oldnum = *n->num;
  86.     neg = num < 0;
  87.     if (neg)
  88.     {
  89. if (numdigits == 2 && num < -9)
  90.     num = -9;
  91. else if (numdigits == 3 && num < -99)
  92.     num = -99;
  93. num = -num;
  94.     }
  95.     // clear the area
  96.     x = n->x - numdigits*w;
  97.     if (n->y - ST_Y < 0)
  98.        {
  99.         sprintf(MsgText, "drawNum: n->y - ST_Y < 0 >> %d - %d < 0n", n->y, ST_Y);
  100.         WriteDebug(MsgText);
  101.     I_Error("drawNum: n->y - ST_Y < 0");
  102.        }
  103.     V_CopyRect(x, n->y - ST_Y, BG, w*numdigits, h, x, n->y, FG);
  104.     // if non-number, do not draw it
  105.     if (num == 1994)
  106. return;
  107.     x = n->x;
  108.     // in the special case of 0, you draw 0
  109.     if (!num)
  110. V_DrawPatch(x - w, n->y, FG, n->p[ 0 ]);
  111.     // draw the new number
  112.     while (num && numdigits--)
  113.     {
  114. x -= w;
  115. V_DrawPatch(x, n->y, FG, n->p[ num % 10 ]);
  116. num /= 10;
  117.     }
  118.     // draw a minus sign if necessary
  119.     if (neg)
  120. V_DrawPatch(x - 8, n->y, FG, sttminus);
  121. }
  122. //
  123. void
  124. STlib_updateNum
  125. ( st_number_t* n,
  126.   boolean refresh )
  127. {
  128.     if (*n->on) STlib_drawNum(n, refresh);
  129. }
  130. //
  131. void
  132. STlib_initPercent
  133. ( st_percent_t* p,
  134.   int x,
  135.   int y,
  136.   patch_t** pl,
  137.   int* num,
  138.   boolean* on,
  139.   patch_t* percent )
  140. {
  141.     STlib_initNum(&p->n, x, y, pl, num, on, 3);
  142.     p->p = percent;
  143. }
  144. void
  145. STlib_updatePercent
  146. ( st_percent_t* per,
  147.   int refresh )
  148. {
  149.     if (refresh && *per->n.on)
  150. V_DrawPatch(per->n.x, per->n.y, FG, per->p);
  151.     
  152.     STlib_updateNum(&per->n, refresh);
  153. }
  154. void
  155. STlib_initMultIcon
  156. ( st_multicon_t* i,
  157.   int x,
  158.   int y,
  159.   patch_t** il,
  160.   int* inum,
  161.   boolean* on )
  162. {
  163.     i->x = x;
  164.     i->y = y;
  165.     i->oldinum  = -1;
  166.     i->inum = inum;
  167.     i->on = on;
  168.     i->p = il;
  169. }
  170. void
  171. STlib_updateMultIcon
  172. ( st_multicon_t* mi,
  173.   boolean refresh )
  174. {
  175.     int w;
  176.     int h;
  177.     int x;
  178.     int y;
  179.     if (*mi->on
  180. && (mi->oldinum != *mi->inum || refresh)
  181. && (*mi->inum!=-1))
  182.     {
  183. if (mi->oldinum != -1)
  184. {
  185.     x = mi->x - SHORT(mi->p[mi->oldinum]->leftoffset);
  186.     y = mi->y - SHORT(mi->p[mi->oldinum]->topoffset);
  187.     w = SHORT(mi->p[mi->oldinum]->width);
  188.     h = SHORT(mi->p[mi->oldinum]->height);
  189.     if (y - ST_Y < 0)
  190. I_Error("updateMultIcon: y - ST_Y < 0");
  191.     V_CopyRect(x, y-ST_Y, BG, w, h, x, y, FG);
  192. }
  193. V_DrawPatch(mi->x, mi->y, FG, mi->p[*mi->inum]);
  194. mi->oldinum = *mi->inum;
  195.     }
  196. }
  197. void
  198. STlib_initBinIcon
  199. ( st_binicon_t* b,
  200.   int x,
  201.   int y,
  202.   patch_t* i,
  203.   boolean* val,
  204.   boolean* on )
  205. {
  206.     b->x = x;
  207.     b->y = y;
  208.     b->oldval = 0;
  209.     b->val = val;
  210.     b->on = on;
  211.     b->p = i;
  212. }
  213. void
  214. STlib_updateBinIcon
  215. ( st_binicon_t* bi,
  216.   boolean refresh )
  217. {
  218.     int x;
  219.     int y;
  220.     int w;
  221.     int h;
  222.     if (*bi->on
  223. && (bi->oldval != *bi->val || refresh))
  224.     {
  225. x = bi->x - SHORT(bi->p->leftoffset);
  226. y = bi->y - SHORT(bi->p->topoffset);
  227. w = SHORT(bi->p->width);
  228. h = SHORT(bi->p->height);
  229. if (y - ST_Y < 0)
  230.     I_Error("updateBinIcon: y - ST_Y < 0");
  231. if (*bi->val)
  232.     V_DrawPatch(bi->x, bi->y, FG, bi->p);
  233. else
  234.     V_CopyRect(x, y-ST_Y, BG, w, h, x, y, FG);
  235. bi->oldval = *bi->val;
  236.     }
  237. }