X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fgame%2FDoom2DF.lpr;h=0b62430ad3d7c369f4dcf485b6f4fbb65f8e1f67;hb=67c6f2778c699f242412be03e2b874d14a7d10c9;hp=450ab48cb38a96923436cf54517f2345c64f7f08;hpb=bf433af831d00c3287e3112097910ca74112195b;p=d2df-sdl.git diff --git a/src/game/Doom2DF.lpr b/src/game/Doom2DF.lpr index 450ab48..0b62430 100644 --- a/src/game/Doom2DF.lpr +++ b/src/game/Doom2DF.lpr @@ -14,7 +14,7 @@ * along with this program. If not, see . *) {$INCLUDE ../shared/a_modes.inc} -program Doom2DF; +{$IFDEF ANDROID}library{$ELSE}program{$ENDIF} Doom2DF; {$IFNDEF HEADLESS} {$IFDEF WINDOWS} {$APPTYPE GUI} @@ -32,6 +32,9 @@ program Doom2DF; {$ENDIF} uses +{$IFDEF ANDROID} + ctypes, +{$ENDIF} {$IFDEF UNIX} cthreads, {$ENDIF} @@ -39,8 +42,12 @@ uses 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} @@ -127,12 +134,33 @@ uses {$R *.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(SDL_AndroidGetExternalStoragePath()); + if IOresult <> 0 then + begin + Chdir(SDL_AndroidGetInternalStoragePath()); + if IOresult <> 0 then + begin + e_WriteLog('Fuck! Cant chdir to any game directory :(', TMsgType.Fatal); + result := 1; + exit; + end; + end; +{$ENDIF ANDROID} + for f := 1 to ParamCount do begin if ParamStr(f) = '--gdb' then noct := true @@ -169,4 +197,10 @@ begin end; end; e_DeinitLog(); + +{$IFDEF ANDROID} + result := 0; +end; // SDL_main +exports SDL_main; +{$ENDIF ANDROID} end.