X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fgame%2FDoom2DF.dpr;h=97b451e84f61f1d1e2526617dd2b534403a13fe3;hb=7f678ccb6d789d35b562f0d51ed39607ff65d040;hp=17f17b77fb2922dff852b8e48a958e8a61ca4ecf;hpb=6657de7c4f97ab3bba2802f075332c379e22e393;p=d2df-sdl.git diff --git a/src/game/Doom2DF.dpr b/src/game/Doom2DF.dpr index 17f17b7..97b451e 100644 --- a/src/game/Doom2DF.dpr +++ b/src/game/Doom2DF.dpr @@ -47,18 +47,12 @@ uses SDL2_mixer in '../lib/sdl2/SDL2_mixer.pas', {$ENDIF} ENet in '../lib/enet/enet.pp', - ENetTypes in '../lib/enet/enettypes.pp', - ENetList in '../lib/enet/enetlist.pp', - ENetTime in '../lib/enet/enettime.pp', - ENetProtocol in '../lib/enet/enetprotocol.pp', - ENetCallbacks in '../lib/enet/enetcallbacks.pp', - ENetPlatform in '../lib/enet/enetplatform.pp', e_graphics in '../engine/e_graphics.pas', e_input in '../engine/e_input.pas', e_log in '../engine/e_log.pas', e_sound in '../engine/e_sound.pas', - e_textures in '../engine/e_textures.pas', - e_fixedbuffer in '../engine/e_fixedbuffer.pas', + e_texture in '../engine/e_texture.pas', + e_msg in '../engine/e_msg.pas', utils in '../shared/utils.pas', xstreams in '../shared/xstreams.pas', sfs in '../sfs/sfs.pas', @@ -76,6 +70,7 @@ uses g_nethandler in 'g_nethandler.pas', g_netmaster in 'g_netmaster.pas', g_res_downloader in 'g_res_downloader.pas', + g_grid in 'g_grid.pas', g_game in 'g_game.pas', g_gfx in 'g_gfx.pas', g_gui in 'g_gui.pas', @@ -94,6 +89,7 @@ uses g_triggers in 'g_triggers.pas', g_weapons in 'g_weapons.pas', g_window in 'g_window.pas', + g_holmes in 'g_holmes.pas', SysUtils, {$IFDEF USE_FMOD} fmod in '../lib/FMOD/fmod.pas', @@ -101,15 +97,17 @@ uses fmodpresets in '../lib/FMOD/fmodpresets.pas', fmodtypes in '../lib/FMOD/fmodtypes.pas', {$ENDIF} + xprofiler in '../shared/xprofiler.pas', + binheap in '../shared/binheap.pas', + hashtable in '../shared/hashtable.pas', + idpool in '../shared/idpool.pas', BinEditor in '../shared/BinEditor.pas', + envvars in '../shared/envvars.pas', g_panel in 'g_panel.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'; + ImagingUtility; {$IFDEF WINDOWS} {$R *.res} @@ -123,11 +121,15 @@ begin for f := 1 to ParamCount do begin if ParamStr(f) = '--gdb' then noct := true - else if ParamStr(f) = '--log' then conbufDumpToStdOut := true; + else if ParamStr(f) = '--log' then conbufDumpToStdOut := true + else if ParamStr(f) = '--safe-log' then e_SetSafeSlowLog(true); end; if noct then + begin Main() + end else + begin try Main(); e_WriteLog('Shutdown with no errors.', MSG_NOTIFY); @@ -135,6 +137,8 @@ begin on E: Exception do e_WriteLog(Format(_lc[I_SYSTEM_ERROR_MSG], [E.Message]), MSG_FATALERROR); else - e_WriteLog(Format(_lc[I_SYSTEM_ERROR_UNKNOWN], [LongWord(ExceptAddr())]), MSG_FATALERROR); + e_WriteLog(Format(_lc[I_SYSTEM_ERROR_UNKNOWN], [NativeUInt(ExceptAddr())]), MSG_FATALERROR); end; + end; + e_DeinitLog(); end.