hu_stuff.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /* Emacs style mode select -*- C++ -*-
  2. *-----------------------------------------------------------------------------
  3. *
  4. *
  5. * PrBoom: a Doom port merged with LxDoom and LSDLDoom
  6. * based on BOOM, a modified and improved DOOM engine
  7. * Copyright (C) 1999 by
  8. * id Software, Chi Hoang, Lee Killough, Jim Flynn, Rand Phares, Ty Halderman
  9. * Copyright (C) 1999-2000 by
  10. * Jess Haas, Nicolas Kalkhof, Colin Phipps, Florian Schulze
  11. * Copyright 2005, 2006 by
  12. * Florian Schulze, Colin Phipps, Neil Stevens, Andrey Budko
  13. *
  14. * This program is free software; you can redistribute it and/or
  15. * modify it under the terms of the GNU General Public License
  16. * as published by the Free Software Foundation; either version 2
  17. * of the License, or (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; if not, write to the Free Software
  26. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  27. * 02111-1307, USA.
  28. *
  29. * DESCRIPTION: Head up display
  30. *
  31. *-----------------------------------------------------------------------------*/
  32. #ifndef __HU_STUFF_H__
  33. #define __HU_STUFF_H__
  34. #include "d_event.h"
  35. /*
  36. * Globally visible constants.
  37. */
  38. #define HU_FONTSTART '!' /* the first font characters */
  39. #define HU_FONTEND '_' /*jff 2/16/98 '_' the last font characters */
  40. /* Calculate # of glyphs in font. */
  41. #define HU_FONTSIZE (HU_FONTEND - HU_FONTSTART + 1)
  42. #define HU_BROADCAST 5
  43. /*#define HU_MSGREFRESH KEYD_ENTER phares */
  44. #define HU_MSGX 0
  45. #define HU_MSGY 0
  46. #define HU_MSGWIDTH 64 /* in characters */
  47. #define HU_MSGHEIGHT 1 /* in lines */
  48. #define HU_MSGTIMEOUT (4*TICRATE)
  49. /*
  50. * Heads up text
  51. */
  52. void HU_Init(void);
  53. void HU_Start(void);
  54. void HU_Ticker(void);
  55. void HU_Drawer(void);
  56. void HU_Erase(void);
  57. /* killough 5/2/98: moved from m_misc.c: */
  58. /* jff 2/26/98 hud message list color and background enable */
  59. extern const int hud_msg_lines; /* number of message lines in window up to 16 */
  60. /* jff 2/23/98 hud is currently displayed */
  61. #endif