X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fgame%2FDoom2DF.dpr;h=17f17b77fb2922dff852b8e48a958e8a61ca4ecf;hb=6657de7c4f97ab3bba2802f075332c379e22e393;hp=679615611ed466084ac3c576607f7c0ca86251c5;hpb=45af139bfc7713ed4eb237ac1f5288e82706564c;p=d2df-sdl.git diff --git a/src/game/Doom2DF.dpr b/src/game/Doom2DF.dpr index 6796156..17f17b7 100644 --- a/src/game/Doom2DF.dpr +++ b/src/game/Doom2DF.dpr @@ -1,6 +1,22 @@ +(* Copyright (C) DooM 2D:Forever Developers + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + *) +{$MODE DELPHI} program Doom2DF; {$IFNDEF HEADLESS} - {$IFDEF WIN32} + {$IFDEF WINDOWS} {$APPTYPE GUI} {$ENDIF} {$ENDIF} @@ -23,6 +39,7 @@ program Doom2DF; {$ENDIF} uses + conbuf in '../shared/conbuf.pas', GL, GLExt, SDL2 in '../lib/sdl2/sdl2.pas', @@ -42,14 +59,12 @@ uses e_sound in '../engine/e_sound.pas', e_textures in '../engine/e_textures.pas', e_fixedbuffer in '../engine/e_fixedbuffer.pas', + utils in '../shared/utils.pas', + xstreams in '../shared/xstreams.pas', sfs in '../sfs/sfs.pas', sfsPlainFS in '../sfs/sfsPlainFS.pas', sfsZipFS in '../sfs/sfsZipFS.pas', - sfsMemFS in '../sfs/sfsMemFS.pas', - xstreams in '../sfs/xstreams.pas', - utils in '../shared/utils.pas', - WADEDITOR in '../shared/WADEDITOR.pas', - WADSTRUCT in '../shared/WADSTRUCT.pas', + wadreader in '../shared/wadreader.pas', MAPSTRUCT in '../shared/MAPSTRUCT.pas', MAPREADER in '../shared/MAPREADER.pas', MAPDEF in '../shared/MAPDEF.pas', @@ -79,7 +94,7 @@ uses g_triggers in 'g_triggers.pas', g_weapons in 'g_weapons.pas', g_window in 'g_window.pas', - sysutils, + SysUtils, {$IFDEF USE_FMOD} fmod in '../lib/FMOD/fmod.pas', fmoderrors in '../lib/FMOD/fmoderrors.pas', @@ -88,9 +103,15 @@ uses {$ENDIF} BinEditor in '../shared/BinEditor.pas', g_panel in 'g_panel.pas', - g_language in 'g_language.pas'; + g_language in 'g_language.pas', + ImagingTypes, + Imaging, + ImagingUtility, + lua in '../lib/lua/lua.pas', + lualib in '../lib/lua/lualib.pas', + lauxlib in '../lib/lua/lauxlib.pas'; -{$IFDEF WIN32} +{$IFDEF WINDOWS} {$R *.res} {$R CustomRes.res} {$ENDIF} @@ -99,7 +120,11 @@ var f: Integer; noct: Boolean = false; begin - for f := 1 to ParamCount do if ParamStr(f) = '--gdb' then noct := true; + for f := 1 to ParamCount do + begin + if ParamStr(f) = '--gdb' then noct := true + else if ParamStr(f) = '--log' then conbufDumpToStdOut := true; + end; if noct then Main() else