aboutsummaryrefslogtreecommitdiff
path: root/src/d_main.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/d_main.h')
-rw-r--r--src/d_main.h82
1 files changed, 82 insertions, 0 deletions
diff --git a/src/d_main.h b/src/d_main.h
new file mode 100644
index 0000000..ccd1910
--- /dev/null
+++ b/src/d_main.h
@@ -0,0 +1,82 @@
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:
30 * Main startup and splash screenstuff.
31 *
32 *-----------------------------------------------------------------------------*/
33
34#ifndef __D_MAIN__
35#define __D_MAIN__
36
37#include "d_event.h"
38#include "w_wad.h"
39
40#ifdef __GNUG__
41#pragma interface
42#endif
43
44/* CPhipps - removed wadfiles[] stuff to w_wad.h */
45
46extern char basesavegame[]; // killough 2/16/98: savegame path
47
48//jff 1/24/98 make command line copies of play modes available
49extern boolean clnomonsters; // checkparm of -nomonsters
50extern boolean clrespawnparm; // checkparm of -respawn
51extern boolean clfastparm; // checkparm of -fast
52//jff end of external declaration of command line playmode
53
54extern boolean nosfxparm;
55extern boolean nomusicparm;
56extern int ffmap;
57
58// Called by IO functions when input is detected.
59void D_PostEvent(event_t* ev);
60
61// Demo stuff
62extern boolean advancedemo;
63void D_AdvanceDemo(void);
64void D_DoAdvanceDemo (void);
65
66//
67// BASE LEVEL
68//
69
70void D_Display(void);
71void D_PageTicker(void);
72void D_StartTitle(void);
73void D_DoomMain(void);
74void D_AddFile (const char *file, wad_source_t source);
75
76/* cph - MBF-like wad/deh/bex autoload code */
77/* proff 2001/7/1 - added prboom.wad as last entry so it's always loaded and
78 doesn't overlap with the cfg settings */
79#define MAXLOADFILES 3
80extern const char *wad_files[MAXLOADFILES], *deh_files[MAXLOADFILES];
81
82#endif