Strip some HWLIBRARY ifdefs qmlfrontend
authorunc0rr
Fri, 19 Sep 2014 14:27:41 +0400
branchqmlfrontend
changeset 10414 50bcefec5bf6
parent 10412 9a8d4efcf3fa
child 10416 1c301054694d
Strip some HWLIBRARY ifdefs
hedgewars/hwLibrary.pas
hedgewars/hwengine.pas
--- a/hedgewars/hwLibrary.pas	Thu Sep 18 23:02:05 2014 +0400
+++ b/hedgewars/hwLibrary.pas	Fri Sep 19 14:27:41 2014 +0400
@@ -29,8 +29,15 @@
 
 Library hwLibrary;
 
-uses hwengine, uTypes, uConsts, uVariables, uSound, uCommands, uUtils,
-    uLocale{$IFDEF ANDROID}, jni{$ENDIF}
+uses hwengine
+    , uTypes
+    , uConsts
+    , uVariables
+    , uSound
+    , uCommands
+    , uUtils
+    , uLocale
+    {$IFDEF ANDROID}, jni{$ENDIF}
     , uFLTypes
     , uFLGameConfig;
 
--- a/hedgewars/hwengine.pas	Thu Sep 18 23:02:05 2014 +0400
+++ b/hedgewars/hwengine.pas	Fri Sep 19 14:27:41 2014 +0400
@@ -22,12 +22,8 @@
 {$R res/hwengine.rc}
 {$ENDIF}
 
-{$IFDEF HWLIBRARY}
 unit hwengine;
 interface
-{$ELSE}
-program hwengine;
-{$ENDIF}
 
 uses SDLh, uMisc, uConsole, uGame, uConsts, uLand, uAmmos, uVisualGears, uGears, uStore, uWorld, uInputHandler
      , uSound, uScript, uTeams, uStats, uIO, uLocale, uChat, uAI, uAIMisc, uAILandMarks, uLandTexture, uCollisions
@@ -38,19 +34,12 @@
      {$IFDEF ANDROID}, GLUnit{$ENDIF}
      ;
 
-{$IFDEF HWLIBRARY}
 procedure RunEngine(argc: LongInt; argv: PPChar); cdecl; export;
-
 procedure preInitEverything();
 procedure initEverything(complete:boolean);
 procedure freeEverything(complete:boolean);
 
 implementation
-{$ELSE}
-procedure preInitEverything(); forward;
-procedure initEverything(complete:boolean); forward;
-procedure freeEverything(complete:boolean); forward;
-{$ENDIF}
 
 ///////////////////////////////////////////////////////////////////////////////
 function DoTimer(Lag: LongInt): boolean;
@@ -547,18 +536,11 @@
     freeEverything(false);
 end;
 
-{$IFDEF HWLIBRARY}
 procedure RunEngine(argc: LongInt; argv: PPChar); cdecl; export;
 begin
     operatingsystem_parameter_argc:= argc;
     operatingsystem_parameter_argv:= argv;
-{$ELSE}
-begin
-{$ENDIF}
 
-///////////////////////////////////////////////////////////////////////////////
-/////////////////////////////////// m a i n ///////////////////////////////////
-///////////////////////////////////////////////////////////////////////////////
 {$IFDEF PAS2C}
     // workaround for pascal's ParamStr and ParamCount
     init(argc, argv);
@@ -573,15 +555,8 @@
         Game();
 
     // return 1 when engine is not called correctly
-    if GameType = gmtSyntax then
-        {$IFDEF PAS2C}
-        exit(HaltUsageError);
-        {$ELSE}
-        halt(HaltUsageError);
-        {$ENDIF}
-
-{$IFDEF HWLIBRARY}
+    //if GameType = gmtSyntax then
+    //    exit(HaltUsageError);
 end;
-{$ENDIF}
 
 end.