summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/hu_stuff.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/hu_stuff.h')
-rw-r--r--apps/plugins/doom/hu_stuff.h92
1 files changed, 92 insertions, 0 deletions
diff --git a/apps/plugins/doom/hu_stuff.h b/apps/plugins/doom/hu_stuff.h
new file mode 100644
index 0000000000..76c6a90313
--- /dev/null
+++ b/apps/plugins/doom/hu_stuff.h
@@ -0,0 +1,92 @@
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 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
25 * 02111-1307, USA.
26 *
27 * DESCRIPTION: Head up display
28 *
29 *-----------------------------------------------------------------------------*/
30
31#ifndef __HU_STUFF_H__
32#define __HU_STUFF_H__
33
34#include "d_event.h"
35
36/*
37 * Globally visible constants.
38 */
39#define HU_FONTSTART '!' /* the first font characters */
40#define HU_FONTEND (0x7f) /*jff 2/16/98 '_' the last font characters */
41
42/* Calculate # of glyphs in font. */
43#define HU_FONTSIZE (HU_FONTEND - HU_FONTSTART + 1)
44
45#define HU_BROADCAST 5
46
47/*#define HU_MSGREFRESH KEYD_ENTER phares */
48#define HU_MSGX 0
49#define HU_MSGY 0
50#define HU_MSGWIDTH 64 /* in characters */
51#define HU_MSGHEIGHT 1 /* in lines */
52
53#define HU_MSGTIMEOUT (4*TICRATE)
54
55/*
56 * Heads up text
57 */
58void HU_Init(void);
59void HU_Start(void);
60
61boolean HU_Responder(event_t* ev);
62
63void HU_Ticker(void);
64void HU_Drawer(void);
65char HU_dequeueChatChar(void);
66void HU_Erase(void);
67
68/* killough 5/2/98: moved from m_misc.c: */
69
70/* jff 2/16/98 hud supported automap colors added */
71extern int hudcolor_titl; /* color range of automap level title */
72extern int hudcolor_xyco; /* color range of new coords on automap */
73/* jff 2/16/98 hud text colors, controls added */
74extern int hudcolor_mesg; /* color range of scrolling messages */
75extern int hudcolor_chat; /* color range of chat lines */
76/* jff 2/26/98 hud message list color and background enable */
77extern int hudcolor_list; /* color of list of past messages */
78extern int hud_list_bgon; /* solid window background for list of messages */
79extern int hud_msg_lines; /* number of message lines in window up to 16 */
80extern int hud_distributed; /* whether hud is all in lower left or distributed */
81/* jff 2/23/98 hud is currently displayed */
82extern int hud_displayed; /* hud is displayed */
83/* jff 2/18/98 hud/status control */
84extern int hud_active; /* hud mode 0=off, 1=small, 2=full */
85extern int hud_nosecrets; /* status does not list secrets/items/kills */
86
87extern char* mapnames[];
88extern char* mapnames2[];
89extern char* mapnamesp[];
90extern char* mapnamest[];
91
92#endif