DEADSOFTWARE

updated enet headers
[d2df-sdl.git] / src / game / Doom2DF.dpr
1 (* Copyright (C) DooM 2D:Forever Developers
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 3 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *)
16 {$MODE DELPHI}
17 program Doom2DF;
18 {$IFNDEF HEADLESS}
19 {$IFDEF WINDOWS}
20 {$APPTYPE GUI}
21 {$ENDIF}
22 {$ENDIF}
23 {$HINTS OFF}
25 {$UNDEF XXX}
26 {$IFDEF USE_SDLMIXER}
27 {$DEFINE XXX}
28 {$ENDIF}
29 {$IFDEF USE_FMOD}
30 {$IFDEF XXX}
31 {$ERROR define one of USE_SDLMIXER or USE_FMOD}
32 {$ELSE}
33 {$DEFINE XXX}
34 {$ENDIF}
35 {$ENDIF}
37 {$IFNDEF XXX}
38 {$ERROR define USE_SDLMIXER or USE_FMOD}
39 {$ENDIF}
41 uses
42 conbuf in '../shared/conbuf.pas',
43 GL,
44 GLExt,
45 SDL2 in '../lib/sdl2/sdl2.pas',
46 {$IFDEF USE_SDLMIXER}
47 SDL2_mixer in '../lib/sdl2/SDL2_mixer.pas',
48 {$ENDIF}
49 ENet in '../lib/enet/enet.pp',
50 e_graphics in '../engine/e_graphics.pas',
51 e_input in '../engine/e_input.pas',
52 e_log in '../engine/e_log.pas',
53 e_sound in '../engine/e_sound.pas',
54 e_textures in '../engine/e_textures.pas',
55 e_fixedbuffer in '../engine/e_fixedbuffer.pas',
56 utils in '../shared/utils.pas',
57 xstreams in '../shared/xstreams.pas',
58 sfs in '../sfs/sfs.pas',
59 sfsPlainFS in '../sfs/sfsPlainFS.pas',
60 sfsZipFS in '../sfs/sfsZipFS.pas',
61 wadreader in '../shared/wadreader.pas',
62 MAPSTRUCT in '../shared/MAPSTRUCT.pas',
63 MAPREADER in '../shared/MAPREADER.pas',
64 MAPDEF in '../shared/MAPDEF.pas',
65 CONFIG in '../shared/CONFIG.pas',
66 g_basic in 'g_basic.pas',
67 g_console in 'g_console.pas',
68 g_net in 'g_net.pas',
69 g_netmsg in 'g_netmsg.pas',
70 g_nethandler in 'g_nethandler.pas',
71 g_netmaster in 'g_netmaster.pas',
72 g_res_downloader in 'g_res_downloader.pas',
73 g_game in 'g_game.pas',
74 g_gfx in 'g_gfx.pas',
75 g_gui in 'g_gui.pas',
76 g_items in 'g_items.pas',
77 g_main in 'g_main.pas',
78 g_map in 'g_map.pas',
79 g_menu in 'g_menu.pas',
80 g_monsters in 'g_monsters.pas',
81 g_options in 'g_options.pas',
82 g_phys in 'g_phys.pas',
83 g_player in 'g_player.pas',
84 g_playermodel in 'g_playermodel.pas',
85 g_saveload in 'g_saveload.pas',
86 g_sound in 'g_sound.pas',
87 g_textures in 'g_textures.pas',
88 g_triggers in 'g_triggers.pas',
89 g_weapons in 'g_weapons.pas',
90 g_window in 'g_window.pas',
91 SysUtils,
92 {$IFDEF USE_FMOD}
93 fmod in '../lib/FMOD/fmod.pas',
94 fmoderrors in '../lib/FMOD/fmoderrors.pas',
95 fmodpresets in '../lib/FMOD/fmodpresets.pas',
96 fmodtypes in '../lib/FMOD/fmodtypes.pas',
97 {$ENDIF}
98 BinEditor in '../shared/BinEditor.pas',
99 envvars in '../shared/envvars.pas',
100 g_panel in 'g_panel.pas',
101 g_language in 'g_language.pas',
102 ImagingTypes,
103 Imaging,
104 ImagingUtility;
106 {$IFDEF WINDOWS}
107 {$R *.res}
108 {$R CustomRes.res}
109 {$ENDIF}
111 var
112 f: Integer;
113 noct: Boolean = false;
114 begin
115 for f := 1 to ParamCount do
116 begin
117 if ParamStr(f) = '--gdb' then noct := true
118 else if ParamStr(f) = '--log' then conbufDumpToStdOut := true;
119 end;
120 if noct then
121 Main()
122 else
123 try
124 Main();
125 e_WriteLog('Shutdown with no errors.', MSG_NOTIFY);
126 except
127 on E: Exception do
128 e_WriteLog(Format(_lc[I_SYSTEM_ERROR_MSG], [E.Message]), MSG_FATALERROR);
129 else
130 e_WriteLog(Format(_lc[I_SYSTEM_ERROR_UNKNOWN], [NativeUInt(ExceptAddr())]), MSG_FATALERROR);
131 end;
132 end.