1 (* Copyright (C) Doom 2D: Forever Developers
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, version 3 of the License ONLY.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 {$INCLUDE ../shared/a_modes.inc}
27 procedure KeyPress (K
: Word);
28 procedure CharPress (C
: AnsiChar
);
31 {--- Read-only dirs ---}
38 AllMapDirs
: SSArray
; // Maps + Megawads
40 {--- Read-Write dirs ---}
46 ScreenshotDirs
: SSArray
;
48 MapDownloadDirs
: SSArray
;
49 WadDownloadDirs
: SSArray
;
51 GameWADName
: string = 'GAME';
57 {$INCLUDE ../nogl/noGLuses.inc}
58 {$IFDEF ENABLE_HOLMES}
59 g_holmes
, sdlcarcass
, fui_ctls
, fui_wadread
, fui_style
, fui_gfx_gl
,
70 wadreader
, e_log
, g_window
,
71 e_graphics
, e_input
, g_game
, g_console
, g_gui
,
72 e_sound
, g_options
, g_sound
, g_player
, g_basic
,
73 g_weapons
, SysUtils
, g_triggers
, MAPDEF
, g_map
, e_res
,
74 g_menu
, g_language
, g_net
, g_touch
, g_system
, g_res_downloader
,
80 charbuff
: packed array [0..15] of AnsiChar
;
81 binPath
: AnsiString
= '';
84 UseNativeMusic
: Boolean;
87 function GetBinaryPath (): AnsiString
;
94 result
:= ExtractFilePath(ParamStr(0));
96 // it may be a symlink; do some guesswork here
97 sl
:= fpReadLink(ExtractFileName(ParamStr(0)));
98 if (sl
= ParamStr(0)) then
100 // use current directory, as we don't have anything better
105 result
:= fixSlashes(result
);
106 if (length(result
) > 0) and (result
[length(result
)] <> '/') then result
:= result
+'/';
109 procedure PrintDirs (msg
: AnsiString
; dirs
: SSArray
);
112 e_LogWriteln(msg
+ ':');
114 e_LogWriteln(' ' + dir
);
118 function NSStringToAnsiString (s
: NSString
): AnsiString
;
122 for i
:= 0 to s
.length
- 1 do
123 result
:= result
+ AnsiChar(s
.characterAtIndex(i
));
126 function GetBundlePath (): AnsiString
;
127 var pathRef
: CFURLRef
; pathCFStr
: CFStringRef
; pathStr
: ShortString
;
129 pathRef
:= CFBundleCopyBundleURL(CFBundleGetMainBundle());
130 pathCFStr
:= CFURLCopyFileSystemPath(pathRef
, kCFURLPOSIXPathStyle
);
131 CFStringGetPascalString(pathCFStr
, @pathStr
, 255, CFStringGetSystemEncoding());
133 CFRelease(pathCFStr
);
139 var i
: Integer; rwdir
, rodir
: AnsiString
; rwdirs
, rodirs
: SSArray
;
141 procedure AddDir (var dirs
: SSArray
; append
: AnsiString
);
143 SetLength(dirs
, Length(dirs
) + 1);
144 dirs
[High(dirs
)] := ExpandFileName(append
)
147 function IsSep (ch
: Char): Boolean;
150 result
:= (ch
= '/') or (ch
= '\');
152 result
:= (ch
= '/');
156 function OptimizePath (dir
: AnsiString
): AnsiString
;
157 var i
, len
: Integer; s
: AnsiString
;
159 i
:= 1; len
:= Length(dir
); s
:= '';
162 if IsSep(dir
[i
]) then
164 s
:= s
+ DirectorySeparator
;
166 while (i
<= len
) and IsSep(dir
[i
]) do Inc(i
);
167 if (i
<= len
) and (dir
[i
] = '.') then
169 if (i
= len
) or IsSep(dir
[i
+ 1]) then
173 else if (i
+ 1 <= len
) and (dir
[i
+ 1] = '.') then
175 if (i
+ 1 = len
) or IsSep(dir
[i
+ 2]) then
192 procedure OptimizeDirs (var dirs
: SSArray
);
193 var i
, j
, k
: Integer;
195 for i
:= 0 to High(dirs
) do
196 dirs
[i
] := OptimizePath(dirs
[i
]);
204 if dirs
[j
] = dirs
[i
] then
206 for k
:= j
+ 1 to High(dirs
) do
207 dirs
[k
- 1] := dirs
[k
];
209 SetLength(dirs
, High(dirs
))
220 procedure AddDef (var dirs
: SSArray
; base
: SSArray
; append
: AnsiString
);
223 if Length(dirs
) = 0 then
225 AddDir(dirs
, e_CatPath(s
, append
));
229 function GetDefaultRODirs (): SSArray
;
230 {$IF DEFINED(UNIX) AND NOT DEFINED(DARWIN) AND NOT DEFINED(ANDROID)}
231 var home
: AnsiString
;
234 var appdata
: AnsiString
;
237 var bundle
, s
: AnsiString
; dirArr
: NSArray
; i
: Integer;
242 bundle
:= GetBundlePath();
243 if ExtractFileExt(bundle
) <> '.app' then
244 AddDir(result
, binpath
);
246 AddDir(result
, binPath
);
248 if forceBinDir
= false then
251 AddDir(result
, SDL_GetBasePath());
252 AddDir(result
, SDL_GetPrefPath('', 'doom2df'));
255 appdata
:= GetEnvironmentVariable('APPDATA') + '\doom2df';
256 if appdata
<> '' then
257 AddDir(result
, appdata
);
259 {$IF DEFINED(UNIX) AND NOT DEFINED(DARWIN) AND NOT DEFINED(ANDROID)}
260 AddDir(result
, '/usr/share/doom2df');
261 AddDir(result
, '/usr/local/share/doom2df');
262 home
:= GetEnvironmentVariable('HOME');
264 AddDir(result
, e_CatPath(home
, '.doom2df'));
267 bundle
:= GetBundlePath();
269 AddDir(result
, e_CatPath(bundle
, 'Contents/Resources'));
270 dirArr
:= NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory
, NSUserDomainMask
, true);
271 for i
:= 0 to dirArr
.count
- 1 do
273 s
:= NSStringToAnsiString(dirArr
.objectAtIndex(i
));
274 AddDir(result
, e_CatPath(s
, 'Doom 2D Forever'))
277 {$IF DEFINED(ANDROID) AND DEFINED(USE_SDL2)}
278 AddDir(result
, SDL_AndroidGetInternalStoragePath());
279 if SDL_AndroidGetExternalStorageState() <> 0 then
280 AddDir(result
, SDL_AndroidGetExternalStoragePath());
285 function GetDefaultRWDirs (): SSArray
;
286 {$IF DEFINED(UNIX) AND NOT DEFINED(DARWIN) AND NOT DEFINED(ANDROID)}
287 var home
: AnsiString
;
290 var appdata
: AnsiString
;
293 var bundle
, s
: AnsiString
; dirArr
: NSArray
; i
: Integer;
298 bundle
:= GetBundlePath();
299 if ExtractFileExt(bundle
) <> '.app' then
300 AddDir(result
, binPath
);
302 AddDir(result
, binPath
);
304 if forceBinDir
= false then
307 AddDir(result
, SDL_GetPrefPath('', 'doom2df'));
310 appdata
:= GetEnvironmentVariable('APPDATA') + '\doom2df';
311 if appdata
<> '' then
312 AddDir(result
, appdata
);
314 {$IF DEFINED(UNIX) AND NOT DEFINED(DARWIN) AND NOT DEFINED(ANDROID)}
315 home
:= GetEnvironmentVariable('HOME');
317 AddDir(result
, e_CatPath(home
, '.doom2df'));
320 dirArr
:= NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory
, NSUserDomainMask
, true);
321 for i
:= 0 to dirArr
.count
- 1 do
323 s
:= NSStringToAnsiString(dirArr
.objectAtIndex(i
));
324 AddDir(result
, e_CatPath(s
, 'Doom 2D Forever'))
327 {$IF DEFINED(ANDROID) AND DEFINED(USE_SDL2)}
328 if SDL_AndroidGetExternalStorageState() <> 0 then
329 AddDir(result
, SDL_AndroidGetExternalStoragePath());
335 forceBinDir
:= false;
336 binPath
:= GetBinaryPath();
339 while i
< ParamCount
do
342 '--like-windoze': forceBinDir
:= true;
346 rwdir
:= ParamStr(i
);
348 AddDir(LogDirs
, e_CatPath(rwdir
, 'logs'));
349 AddDir(SaveDirs
, e_CatPath(rwdir
, 'data/saves'));
350 AddDir(CacheDirs
, e_CatPath(rwdir
, 'data/cache'));
351 AddDir(ConfigDirs
, e_CatPath(rwdir
, ''));
352 AddDir(MapDownloadDirs
, e_CatPath(rwdir
, 'maps/downloads'));
353 AddDir(WadDownloadDirs
, e_CatPath(rwdir
, 'wads/downloads'));
354 AddDir(ScreenshotDirs
, e_CatPath(rwdir
, 'screenshots'));
355 AddDir(StatsDirs
, e_CatPath(rwdir
, 'stats'));
357 AddDir(DataDirs
, e_CatPath(rwdir
, 'data'));
358 AddDir(ModelDirs
, e_CatPath(rwdir
, 'data/models'));
359 AddDir(MegawadDirs
, e_CatPath(rwdir
, 'maps/megawads'));
360 AddDir(MapDirs
, e_CatPath(rwdir
, 'maps'));
361 AddDir(WadDirs
, e_CatPath(rwdir
, 'wads'));
366 rodir
:= ParamStr(i
);
368 AddDir(DataDirs
, e_CatPath(rodir
, 'data'));
369 AddDir(ModelDirs
, e_CatPath(rodir
, 'data/models'));
370 AddDir(MegawadDirs
, e_CatPath(rodir
, 'maps/megawads'));
371 AddDir(MapDirs
, e_CatPath(rodir
, 'maps'));
372 AddDir(WadDirs
, e_CatPath(rodir
, 'wads'));
377 GameWADName
:= ParamStr(i
);
382 gConfigScript
:= ParamStr(i
);
388 // prefer bin dir if it writable and contains game.wad
389 if forceBinDir
= false then
391 if findDiskWad(binPath
+ 'data' + '/' + GameWADName
) <> '' then
392 if e_CanCreateFilesAt(binPath
) then
397 rodirs
:= GetDefaultRODirs();
398 AddDef(DataDirs
, rodirs
, 'data');
399 AddDef(ModelDirs
, rodirs
, 'data/models');
400 AddDef(MegawadDirs
, rodirs
, 'maps/megawads');
401 AddDef(MapDirs
, rodirs
, 'maps');
402 AddDef(WadDirs
, rodirs
, 'wads');
405 rwdirs
:= GetDefaultRWDirs();
406 AddDef(LogDirs
, rwdirs
, 'logs');
407 AddDef(SaveDirs
, rwdirs
, 'data/saves');
408 AddDef(CacheDirs
, rwdirs
, 'data/cache');
409 AddDef(ConfigDirs
, rwdirs
, '');
410 AddDef(MapDownloadDirs
, rwdirs
, 'maps/downloads');
411 AddDef(WadDownloadDirs
, rwdirs
, 'wads/downloads');
412 AddDef(ScreenshotDirs
, rwdirs
, 'screenshots');
413 AddDef(StatsDirs
, rwdirs
, 'stats');
415 for i
:= 0 to High(MapDirs
) do
416 AddDir(AllMapDirs
, MapDirs
[i
]);
417 for i
:= 0 to High(MegawadDirs
) do
418 AddDir(AllMapDirs
, MegawadDirs
[i
]);
419 OptimizeDirs(AllMapDirs
);
421 if LogFileName
= '' then
423 rwdir
:= e_GetWriteableDir(LogDirs
, false);
426 DateTimeToString(date
, 'yyyy-mm-dd-hh-nn-ss', Now());
428 LogFileName
:= e_CatPath(rwdir
, 'dfserver-' + date
+ '.log');
430 LogFileName
:= e_CatPath(rwdir
, 'dfclient-' + date
+ '.log');
435 // HACK: ensure the screenshots folder also has a stats subfolder in it
436 rwdir
:= e_GetWriteableDir(ScreenshotDirs
, false);
437 if rwdir
<> '' then CreateDir(rwdir
+ '/stats');
444 conbufDumpToStdOut
:= true;
446 for i
:= 1 to ParamCount
do
449 '--con-stdout': conbufDumpToStdOut
:= true;
450 '--no-fbo': glRenderToFBO
:= false;
454 if LogFileName
<> '' then
455 e_InitLog(LogFileName
, TWriteMode
.WM_NEWFILE
);
456 e_InitWritelnDriver();
457 e_WriteLog('Doom 2D: Forever version ' + GAME_VERSION
+ ' proto ' + IntToStr(NET_PROTOCOL_VER
), TMsgType
.Notify
);
458 e_WriteLog('Build arch: ' + g_GetBuildArch(), TMsgType
.Notify
);
459 e_WriteLog('Build date: ' + GAME_BUILDDATE
+ ' ' + GAME_BUILDTIME
, TMsgType
.Notify
);
460 e_WriteLog('Build hash: ' + g_GetBuildHash(), TMsgType
.Notify
);
461 e_WriteLog('Build by: ' + g_GetBuilderName(), TMsgType
.Notify
);
463 e_LogWritefln('Force bin dir: %s', [forceBinDir
], TMsgType
.Notify
);
464 e_LogWritefln('BINARY PATH: [%s]', [binPath
], TMsgType
.Notify
);
466 PrintDirs('DataDirs', DataDirs
);
467 PrintDirs('ModelDirs', ModelDirs
);
468 PrintDirs('MegawadDirs', MegawadDirs
);
469 PrintDirs('MapDirs', MapDirs
);
470 PrintDirs('WadDirs', WadDirs
);
472 PrintDirs('LogDirs', LogDirs
);
473 PrintDirs('SaveDirs', SaveDirs
);
474 PrintDirs('CacheDirs', CacheDirs
);
475 PrintDirs('ConfigDirs', ConfigDirs
);
476 PrintDirs('ScreenshotDirs', ScreenshotDirs
);
477 PrintDirs('StatsDirs', StatsDirs
);
478 PrintDirs('MapDownloadDirs', MapDownloadDirs
);
479 PrintDirs('WadDownloadDirs', WadDownloadDirs
);
481 GameWAD
:= e_FindWad(DataDirs
, GameWADName
);
484 e_WriteLog('WAD ' + GameWADName
+ ' not found in data directories.', TMsgType
.Fatal
);
485 {$IF DEFINED(USE_SDL2) AND NOT DEFINED(HEADLESS)}
486 if forceBinDir
= false then
487 SDL_ShowSimpleMessageBox(
488 SDL_MESSAGEBOX_ERROR
,
490 PChar('WAD ' + GameWADName
+ ' not found in data directories.'),
500 {$IFDEF ENABLE_HOLMES}
501 var flexloaded
: Boolean;
509 g_Options_SetDefault
;
510 g_Options_SetDefaultVideo
;
512 if sys_SetDisplayMode(gRC_Width
, gRC_Height
, gBPP
, gRC_FullScreen
, gRC_Maximized
) = False then
513 raise Exception
.Create('Failed to set videomode on startup.');
515 e_WriteLog(gLanguage
, TMsgType
.Notify
);
516 g_Language_Set(gLanguage
);
518 {$IF not DEFINED(HEADLESS) and DEFINED(ENABLE_HOLMES)}
520 if not fuiAddWad('flexui.wad') then
522 if not fuiAddWad('./data/flexui.wad') then fuiAddWad('./flexui.wad');
525 fuiGfxLoadFont('win8', 'flexui/fonts/win8.fuifont');
526 fuiGfxLoadFont('win14', 'flexui/fonts/win14.fuifont');
527 fuiGfxLoadFont('win16', 'flexui/fonts/win16.fuifont');
528 fuiGfxLoadFont('dos8', 'flexui/fonts/dos8.fuifont');
529 fuiGfxLoadFont('msx6', 'flexui/fonts/msx6.fuifont');
530 except on e
: Exception
do
532 writeln('ERROR loading FlexUI fonts');
545 e_LogWriteln('FlexUI: loading stylesheet...');
546 uiLoadStyles('flexui/widgets.wgs');
547 except on e
: TParserException
do
549 writeln('ERROR at (', e
.tokLine
, ',', e
.tokCol
, '): ', e
.message);
560 g_holmes_imfunctional
:= not flexloaded
;
562 if (not g_holmes_imfunctional
) then
565 uiContext
.font
:= 'win14';
568 if assigned(oglInitCB
) then oglInitCB
;
571 //g_Res_CreateDatabases(true); // it will be done before connecting to the server for the first time
573 e_WriteLog('Entering SDLMain', TMsgType
.Notify
);
579 {$IFDEF ENABLE_HOLMES}
580 if assigned(oglDeinitCB
) then oglDeinitCB
;
583 g_Console_WriteGameConfig
;
588 {$IFDEF USE_SDLMIXER}
589 var timiditycfg
: AnsiString
;
590 var oldcwd
, newcwd
: RawByteString
;
592 var NoSound
: Boolean;
597 {$IFDEF USE_SDLMIXER}
598 NoSound
:= False; // hope env has set SDL_AUDIODRIVER to dummy
600 NoSound
:= True; // FMOD backend will sort it out
609 if (e_JoysticksAvailable > 0) then
610 e_WriteLog('Input: Joysticks available.', TMsgType.Notify)
612 e_WriteLog('Input: No Joysticks.', TMsgType.Notify);
615 if gNoSound
= false then
617 e_WriteLog('Initializing sound system', TMsgType
.Notify
);
618 {$IFDEF USE_SDLMIXER}
620 if UseNativeMusic
then
621 SetEnvVar('SDL_NATIVE_MUSIC', '1');
622 timiditycfg
:= GetEnvironmentVariable('TIMIDITY_CFG');
623 if timiditycfg
= '' then
625 timiditycfg
:= 'timidity.cfg';
626 if e_FindResource(ConfigDirs
, timiditycfg
) OR e_FindResource(DataDirs
, timiditycfg
) then
628 timiditycfg
:= ExpandFileName(timiditycfg
);
629 newcwd
:= ExtractFileDir(timiditycfg
);
630 SetEnvVar('TIMIDITY_CFG', timiditycfg
);
635 e_LogWritefln('TIMIDITY_CFG = "%s"', [timiditycfg
]);
636 e_LogWritefln('SDL_NATIVE_MUSIC = "%s"', [GetEnvironmentVariable('SDL_NATIVE_MUSIC')]);
638 e_InitSoundSystem(NoSound
);
639 {$IFDEF USE_SDLMIXER}
640 if e_TimidityDecoder
and (newcwd
<> '') then
642 (* HACK: Set CWD to load GUS patches relatively to cfg file. *)
643 (* CWD not restored after sound init because timidity *)
644 (* store relative pathes internally and load patches *)
645 (* later. I hope game never relies on CWD. *)
649 e_logwritefln('WARNING: USED TIMIDITY CONFIG HACK, CWD SWITCHED "%s" -> "%s"', [oldcwd
, newcwd
]);
654 e_WriteLog('Init game', TMsgType
.Notify
);
657 FillChar(charbuff
, sizeof(charbuff
), ' ');
663 e_WriteLog('Releasing engine', TMsgType
.Notify
);
666 e_WriteLog('Releasing input', TMsgType
.Notify
);
671 e_WriteLog('Releasing sound', TMsgType
.Notify
);
672 e_ReleaseSoundSystem();
679 // remember old mobj positions, prepare for update
681 // server: receive client commands for new frame
682 // client: receive game state changes from server
683 if (NetMode
= NET_SERVER
) then g_Net_Host_Update()
684 else if (NetMode
= NET_CLIENT
) then g_Net_Client_Update();
687 // server: send any accumulated outgoing data to clients
688 if NetMode
= NET_SERVER
then g_Net_Flush();
698 function Translit (const S
: AnsiString
): AnsiString
;
703 for i
:= 1 to Length(Result
) do
706 'É': Result
[i
] := 'Q';
707 'Ö': Result
[i
] := 'W';
708 'Ó': Result
[i
] := 'E';
709 'Ê': Result
[i
] := 'R';
710 'Å': Result
[i
] := 'T';
711 'Í': Result
[i
] := 'Y';
712 'Ã': Result
[i
] := 'U';
713 'Ø': Result
[i
] := 'I';
714 'Ù': Result
[i
] := 'O';
715 'Ç': Result
[i
] := 'P';
716 'Õ': Result
[i
] := '['; //Chr(219);
717 'Ú': Result
[i
] := ']'; //Chr(221);
718 'Ô': Result
[i
] := 'A';
719 'Û': Result
[i
] := 'S';
720 'Â': Result
[i
] := 'D';
721 'À': Result
[i
] := 'F';
722 'Ï': Result
[i
] := 'G';
723 'Ð': Result
[i
] := 'H';
724 'Î': Result
[i
] := 'J';
725 'Ë': Result
[i
] := 'K';
726 'Ä': Result
[i
] := 'L';
727 'Æ': Result
[i
] := ';'; //Chr(186);
728 'Ý': Result
[i
] := #39; //Chr(222);
729 'ß': Result
[i
] := 'Z';
730 '×': Result
[i
] := 'X';
731 'Ñ': Result
[i
] := 'C';
732 'Ì': Result
[i
] := 'V';
733 'È': Result
[i
] := 'B';
734 'Ò': Result
[i
] := 'N';
735 'Ü': Result
[i
] := 'M';
736 'Á': Result
[i
] := ','; //Chr(188);
737 'Þ': Result
[i
] := '.'; //Chr(190);
743 function CheckCheat (ct
: TStrings_Locale
; eofs
: Integer=0): Boolean;
748 ls2
:= Translit(CheatRus
[ct
]);
749 if length(ls1
) = 0 then ls1
:= '~';
750 if length(ls2
) = 0 then ls2
:= '~';
752 (Copy(charbuff
, 17-Length(ls1
)-eofs
, Length(ls1
)) = ls1
) or
753 (Translit(Copy(charbuff
, 17-Length(ls1
)-eofs
, Length(ls1
))) = ls1
) or
754 (Copy(charbuff
, 17-Length(ls2
)-eofs
, Length(ls2
)) = ls2
) or
755 (Translit(Copy(charbuff
, 17-Length(ls2
)-eofs
, Length(ls2
))) = ls2
);
757 if ct = I_GAME_CHEAT_JETPACK then
759 e_WriteLog('ls1: ['+ls1+']', MSG_NOTIFY);
760 e_WriteLog('ls2: ['+ls2+']', MSG_NOTIFY);
761 e_WriteLog('bf0: ['+Copy(charbuff, 17-Length(ls1)-eofs, Length(ls1))+']', MSG_NOTIFY);
762 e_WriteLog('bf1: ['+Translit(Copy(charbuff, 17-Length(ls1)-eofs, Length(ls1)))+']', MSG_NOTIFY);
763 e_WriteLog('bf2: ['+Copy(charbuff, 17-Length(ls2)-eofs, Length(ls2))+']', MSG_NOTIFY);
764 e_WriteLog('bf3: ['+Translit(Copy(charbuff, 17-Length(ls2)-eofs, Length(ls2)))+']', MSG_NOTIFY);
781 if (not gGameOn) or (not gCheats) or ((gGameSettings.GameType <> GT_SINGLE) and
782 (gGameSettings.GameMode <> GM_COOP) and (not gDebugMode))
783 or g_Game_IsNet then Exit;
785 if not gGameOn
then exit
;
786 if not conIsCheatsEnabled
then exit
;
788 s
:= 'SOUND_GAME_RADIO';
791 if CheckCheat(I_GAME_CHEAT_GODMODE
) then
793 if gPlayer1
<> nil then gPlayer1
.GodMode
:= not gPlayer1
.GodMode
;
794 if gPlayer2
<> nil then gPlayer2
.GodMode
:= not gPlayer2
.GodMode
;
798 if CheckCheat(I_GAME_CHEAT_WEAPONS
) then
800 if gPlayer1
<> nil then gPlayer1
.TankRamboCheats(False);
801 if gPlayer2
<> nil then gPlayer2
.TankRamboCheats(False);
805 if CheckCheat(I_GAME_CHEAT_HEALTH
) then
807 if gPlayer1
<> nil then gPlayer1
.TankRamboCheats(True);
808 if gPlayer2
<> nil then gPlayer2
.TankRamboCheats(True);
812 if CheckCheat(I_GAME_CHEAT_DEATH
) then
814 if gPlayer1
<> nil then gPlayer1
.Damage(CHEAT_DAMAGE
, 0, 0, 0, HIT_TRAP
);
815 if gPlayer2
<> nil then gPlayer2
.Damage(CHEAT_DAMAGE
, 0, 0, 0, HIT_TRAP
);
816 s
:= 'SOUND_MONSTER_HAHA';
820 if CheckCheat(I_GAME_CHEAT_DOORS
) then
822 g_Triggers_OpenAll();
826 if CheckCheat(I_GAME_CHEAT_NEXTMAP
) then
828 if gTriggers
<> nil then
829 for a
:= 0 to High(gTriggers
) do
830 if gTriggers
[a
].TriggerType
= TRIGGER_EXIT
then
832 gExitByTrigger
:= True;
833 //g_Game_ExitLevel(gTriggers[a].Data.MapName);
834 g_Game_ExitLevel(gTriggers
[a
].tgcMap
);
840 s2
:= Copy(charbuff
, 15, 2);
841 if CheckCheat(I_GAME_CHEAT_CHANGEMAP
, 2) and (s2
[1] >= '0') and (s2
[1] <= '9') and (s2
[2] >= '0') and (s2
[2] <= '9') then
843 if g_Map_Exist(gGameSettings
.WAD
+ ':\MAP' + s2
) then
851 if CheckCheat(I_GAME_CHEAT_FLY
) then
857 if CheckCheat(I_GAME_CHEAT_JUMPS
) then
859 VEL_JUMP
:= 30-VEL_JUMP
;
863 if CheckCheat(I_GAME_CHEAT_SPEED
) then
865 MAX_RUNVEL
:= 32-MAX_RUNVEL
;
869 if CheckCheat(I_GAME_CHEAT_SUIT
) then
871 if gPlayer1
<> nil then gPlayer1
.GiveItem(ITEM_SUIT
);
872 if gPlayer2
<> nil then gPlayer2
.GiveItem(ITEM_SUIT
);
876 if CheckCheat(I_GAME_CHEAT_AIR
) then
878 if gPlayer1
<> nil then gPlayer1
.GiveItem(ITEM_OXYGEN
);
879 if gPlayer2
<> nil then gPlayer2
.GiveItem(ITEM_OXYGEN
);
883 if CheckCheat(I_GAME_CHEAT_BERSERK
) then
885 if gPlayer1
<> nil then gPlayer1
.GiveItem(ITEM_MEDKIT_BLACK
);
886 if gPlayer2
<> nil then gPlayer2
.GiveItem(ITEM_MEDKIT_BLACK
);
890 if CheckCheat(I_GAME_CHEAT_JETPACK
) then
892 if gPlayer1
<> nil then gPlayer1
.GiveItem(ITEM_JETPACK
);
893 if gPlayer2
<> nil then gPlayer2
.GiveItem(ITEM_JETPACK
);
897 if CheckCheat(I_GAME_CHEAT_NOCLIP
) then
899 if gPlayer1
<> nil then gPlayer1
.SwitchNoClip
;
900 if gPlayer2
<> nil then gPlayer2
.SwitchNoClip
;
904 if CheckCheat(I_GAME_CHEAT_NOTARGET
) then
906 if gPlayer1
<> nil then gPlayer1
.NoTarget
:= not gPlayer1
.NoTarget
;
907 if gPlayer2
<> nil then gPlayer2
.NoTarget
:= not gPlayer2
.NoTarget
;
911 if CheckCheat(I_GAME_CHEAT_NORELOAD
) then
913 if gPlayer1
<> nil then gPlayer1
.NoReload
:= not gPlayer1
.NoReload
;
914 if gPlayer2
<> nil then gPlayer2
.NoReload
:= not gPlayer2
.NoReload
;
917 if CheckCheat(I_GAME_CHEAT_AIMLINE
) then
919 gAimLine
:= not gAimLine
;
922 if CheckCheat(I_GAME_CHEAT_AUTOMAP
) then
924 gShowMap
:= not gShowMap
;
934 procedure KeyPress (K
: Word);
944 if (g_ActiveWindow
<> nil) then
946 Msg
.Msg
:= WM_KEYDOWN
;
947 Msg
.WParam
:= VK_ESCAPE
;
948 g_ActiveWindow
.OnMessage(Msg
);
949 if (not g_Game_IsNet
) and (g_ActiveWindow
= nil) then g_Game_Pause(false); //Fn loves to do this
951 else if (gState
<> STATE_FOLD
) then
953 if gGameOn
or (gState
= STATE_INTERSINGLE
) or (gState
= STATE_INTERCUSTOM
) then
955 g_Game_InGameMenu(True);
957 else if (gExit
= 0) and (gState
<> STATE_SLIST
) then
959 if (gState
<> STATE_MENU
) then
961 if (NetMode
<> NET_NONE
) then
963 g_Game_StopAllSounds(True);
965 gState
:= STATE_MENU
;
969 g_GUI_ShowWindow('MainMenu');
970 g_Sound_PlayEx('MENU_OPEN');
975 IK_F2
, IK_F3
, IK_F4
, IK_F5
, IK_F6
, IK_F7
, IK_F10
:
976 begin // <F2> .. <F6> � <F12>
977 if gGameOn
and (not gConsoleShow
) and (not gChatShow
) then
979 while (g_ActiveWindow
<> nil) do g_GUI_HideWindow(False);
980 if (not g_Game_IsNet
) then g_Game_Pause(True);
982 IK_F2
: g_Menu_Show_SaveMenu();
983 IK_F3
: g_Menu_Show_LoadMenu();
984 IK_F4
: g_Menu_Show_GameSetGame();
985 IK_F5
: g_Menu_Show_OptionsVideo();
986 IK_F6
: g_Menu_Show_OptionsSound();
987 IK_F7
: g_Menu_Show_EndGameMenu();
988 IK_F10
: g_Menu_Show_QuitGameMenu();
995 gJustChatted
:= False;
996 if gConsoleShow
or gChatShow
then
998 g_Console_Control(K
);
1000 else if (g_ActiveWindow
<> nil) then
1002 Msg
.Msg
:= WM_KEYDOWN
;
1004 g_ActiveWindow
.OnMessage(Msg
);
1006 else if (gState
= STATE_MENU
) then
1008 g_GUI_ShowWindow('MainMenu');
1009 g_Sound_PlayEx('MENU_OPEN');
1017 procedure CharPress (C
: AnsiChar
);
1019 Msg
: g_gui
.TMessage
;
1022 if gConsoleShow
or gChatShow
then
1026 else if (g_ActiveWindow
<> nil) then
1029 Msg
.WParam
:= Ord(C
);
1030 g_ActiveWindow
.OnMessage(Msg
);
1034 for a
:= 0 to 14 do charbuff
[a
] := charbuff
[a
+1];
1035 charbuff
[15] := upcase1251(C
);
1041 {$IFDEF USE_SDLMIXER}
1042 conRegVar('sdl_native_music', @UseNativeMusic
, 'use native midi music output when possible', 'use native midi');
1044 UseNativeMusic
:= true; (* OSX have a good midi support, so why not? *)
1046 UseNativeMusic
:= false;