DEADSOFTWARE

Now ported to android!
[d2df-sdl.git] / src / game / Doom2DF.lpr
index 41c7aaca14256e6a33ec8e3891e9b0fbd8f615e3..8808d633f3181c3460a7b15b64ce27e2e613e13f 100644 (file)
@@ -1,4 +1,4 @@
-(* Copyright (C)  DooM 2D:Forever Developers
+(* 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
@@ -14,7 +14,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *)
 {$INCLUDE ../shared/a_modes.inc}
-program Doom2DF;
+{$IFDEF ANDROID}library{$ELSE}program{$ENDIF} Doom2DF;
 {$IFNDEF HEADLESS}
   {$IFDEF WINDOWS}
     {$APPTYPE GUI}
@@ -22,29 +22,35 @@ program Doom2DF;
 {$ENDIF}
 {$HINTS OFF}
 
-{$UNDEF XXX}
 {$IFDEF USE_SDLMIXER}
- {$DEFINE XXX}
-{$ENDIF}
-{$IFDEF USE_FMOD}
- {$IFDEF XXX}
-  {$ERROR define one of USE_SDLMIXER or USE_FMOD}
- {$ELSE}
-  {$DEFINE XXX}
+ {$IFDEF USE_FMOD}
+  {$ERROR define only one of USE_SDLMIXER or USE_FMOD}
  {$ENDIF}
-{$ENDIF}
-
-{$IFNDEF XXX}
-  {$ERROR define USE_SDLMIXER or USE_FMOD}
+{$ELSE}
+ {$UNDEF USE_SDLMIXER}
+ {$DEFINE USE_FMOD}
 {$ENDIF}
 
 uses
+{$IFDEF ANDROID}
+  ctypes,
+{$ENDIF}
+{$IFDEF UNIX}
+  cthreads,
+{$ENDIF}
   mempool in '../shared/mempool.pas',
   conbuf in '../shared/conbuf.pas',
   geom in '../shared/geom.pas',
   math,
+{$IFDEF USE_NANOGL}
+  nanoGL in '../lib/nanogl/nanoGL.pas',
+{$ELSE}
   GL,
   GLExt,
+{$ENDIF}
+{$IFDEF USE_MINIUPNPC}
+  miniupnpc in '../lib/miniupnpc/miniupnpc.pas',
+{$ENDIF}
   SDL2 in '../lib/sdl2/sdl2.pas',
 {$IFDEF USE_SDLMIXER}
   SDL2_mixer in '../lib/sdl2/SDL2_mixer.pas',
@@ -108,27 +114,54 @@ uses
   envvars in '../shared/envvars.pas',
   g_panel in 'g_panel.pas',
   g_language in 'g_language.pas',
+
+  sdlcarcass in '../flexui/sdlcarcass.pas',
+  //sdlstandalone in '../flexui/sdlstandalone.pas',
+
+  fui_wadread in '../flexui/fui_wadread.pas',
+  fui_common in '../flexui/fui_common.pas',
+  fui_gfx_gl in '../flexui/fui_gfx_gl.pas',
+  fui_events in '../flexui/fui_events.pas',
+  fui_style in '../flexui/fui_style.pas',
+  fui_flexlay in '../flexui/fui_flexlay.pas',
+  fui_ctls in '../flexui/fui_ctls.pas',
+
   ImagingTypes,
   Imaging,
-  ImagingUtility,
-  sdlcarcass in '../gx/sdlcarcass.pas',
-  glgfx in '../gx/glgfx.pas',
-  gh_ui_common in '../gx/gh_ui_common.pas',
-  gh_ui_style in '../gx/gh_ui_style.pas',
-  gh_ui in '../gx/gh_ui.pas',
-  gh_flexlay in '../gx/gh_flexlay.pas';
+  ImagingUtility;
 
 {$IFDEF WINDOWS}
   {$R *.res}
-  {$R CustomRes.res}
 {$ENDIF}
 
+{$IFDEF ANDROID}
+function SDL_main(argc: CInt; argv: PPChar): CInt; cdecl;
+{$ENDIF ANDROID}
+
 var
   f: Integer;
   noct: Boolean = false;
   //tfo: Text;
 begin
   SetExceptionMask([exInvalidOp, exDenormalized, exZeroDivide, exOverflow, exUnderflow, exPrecision]); //k8: fuck off, that's why
+
+{$IFDEF ANDROID}
+{$I-}
+  e_SetSafeSlowLog(true);
+  Chdir('/sdcard/D2DF');
+  if IOresult <> 0 then
+  begin
+    Mkdir('/sdcard/D2DF');
+    Chdir('/sdcard/D2DF');
+    if IOresult <> 0 then
+    begin
+      e_WriteLog('Fail: cant chdir /sdcard/D2DF', TMsgType.Fatal);
+      result := 1;
+      exit;
+    end;
+  end;
+{$ENDIF ANDROID}
+
   for f := 1 to ParamCount do
   begin
          if ParamStr(f) = '--gdb' then noct := true
@@ -165,4 +198,10 @@ begin
     end;
   end;
   e_DeinitLog();
+
+{$IFDEF ANDROID}
+  result := 0;
+end; // SDL_main
+exports SDL_main;
+{$ENDIF ANDROID}
 end.