DEADSOFTWARE

moved Holmes UI and most of it's low-level gfx subsystem to separate modules (to...
[d2df-sdl.git] / src / game / Doom2DF.dpr
index a47b72d1db22465bab5092fbcc08ba1400e3a82b..67dcc034b11edef519f01fba9dafce860e53b3e0 100644 (file)
@@ -13,7 +13,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *)
-{$MODE DELPHI}
+{$INCLUDE ../shared/a_modes.inc}
 program Doom2DF;
 {$IFNDEF HEADLESS}
   {$IFDEF WINDOWS}
@@ -39,7 +39,10 @@ program Doom2DF;
 {$ENDIF}
 
 uses
+  mempool in '../shared/mempool.pas',
   conbuf in '../shared/conbuf.pas',
+  geom in '../shared/geom.pas',
+  math,
   GL,
   GLExt,
   SDL2 in '../lib/sdl2/sdl2.pas',
@@ -101,13 +104,16 @@ uses
   idpool in '../shared/idpool.pas',
   xparser in '../shared/xparser.pas',
   xdynrec in '../shared/xdynrec.pas',
-  BinEditor in '../shared/BinEditor.pas',
+  exoma in '../shared/exoma.pas',
   envvars in '../shared/envvars.pas',
   g_panel in 'g_panel.pas',
   g_language in 'g_language.pas',
   ImagingTypes,
   Imaging,
-  ImagingUtility;
+  ImagingUtility,
+  sdlcarcass in '../gx/sdlcarcass.pas',
+  glgfx in '../gx/glgfx.pas',
+  gh_ui in '../gx/gh_ui.pas';
 
 {$IFDEF WINDOWS}
   {$R *.res}
@@ -117,8 +123,9 @@ uses
 var
   f: Integer;
   noct: Boolean = false;
-  tfo: Text;
+  //tfo: Text;
 begin
+  SetExceptionMask([exInvalidOp, exDenormalized, exZeroDivide, exOverflow, exUnderflow, exPrecision]); //k8: fuck off, that's why
   for f := 1 to ParamCount do
   begin
          if ParamStr(f) = '--gdb' then noct := true
@@ -133,17 +140,19 @@ begin
   begin
     try
       Main();
-      e_WriteLog('Shutdown with no errors.', MSG_NOTIFY);
+      e_WriteLog('Shutdown with no errors.', TMsgType.Notify);
     except
       on e: Exception do
         begin
           e_WriteStackTrace(e.message);
           //e_WriteLog(Format(_lc[I_SYSTEM_ERROR_MSG], [E.Message]), MSG_FATALERROR);
+          (*
           AssignFile(tfo, GameDir+'/trace.log');
           {$I-}
           Append(tfo);
           if (IOResult <> 0) then Rewrite(tfo);
           if (IOResult = 0) then begin writeln(tfo, '====================='); DumpExceptionBackTrace(tfo); CloseFile(tfo); end;
+          *)
         end
       else
         begin