DEADSOFTWARE

add 'respawn items' flag
[d2df-sdl.git] / src / game / g_game.pas
1 (* Copyright (C) Doom 2D: Forever Developers
2 *
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.
6 *
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.
11 *
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/>.
14 *)
15 {$INCLUDE ../shared/a_modes.inc}
16 unit g_game;
18 interface
20 uses
21 SysUtils, Classes,
22 MAPDEF,
23 g_basic, g_player, e_graphics, g_res_downloader,
24 g_sound, g_gui, utils, md5, mempool, xprofiler,
25 g_touch, g_weapons;
27 type
28 TGameSettings = record
29 GameType: Byte;
30 GameMode: Byte;
31 TimeLimit: Word;
32 GoalLimit: Word;
33 WarmupTime: Word;
34 SpawnInvul: Word;
35 MaxLives: Byte;
36 Options: LongWord;
37 WAD: String;
38 end;
40 TGameEvent = record
41 Name: String;
42 Command: String;
43 end;
45 TDelayedEvent = record
46 Pending: Boolean;
47 Time: LongWord;
48 DEType: Byte;
49 DENum: Integer;
50 DEStr: String;
51 end;
53 TChatSound = record
54 Sound: TPlayableSound;
55 Tags: Array of String;
56 FullWord: Boolean;
57 end;
59 TPlayerSettings = record
60 Name: String;
61 Model: String;
62 Color: TRGB;
63 Team: Byte;
64 end;
66 TMegaWADInfo = record
67 Name: String;
68 Description: String;
69 Author: String;
70 Pic: String;
71 end;
73 THearPoint = record
74 Active: Boolean;
75 Coords: TDFPoint;
76 end;
78 function g_Game_IsNet(): Boolean;
79 function g_Game_IsServer(): Boolean;
80 function g_Game_IsClient(): Boolean;
81 procedure g_Game_Init();
82 procedure g_Game_Free (freeTextures: Boolean=true);
83 procedure g_Game_LoadData();
84 procedure g_Game_FreeData();
85 procedure g_Game_Update();
86 procedure g_Game_Draw();
87 procedure g_Game_Quit();
88 procedure g_Game_SetupScreenSize();
89 procedure g_Game_ChangeResolution(newWidth, newHeight: Word; nowFull, nowMax: Boolean);
90 function g_Game_ModeToText(Mode: Byte): string;
91 function g_Game_TextToMode(Mode: string): Byte;
92 procedure g_Game_ExecuteEvent(Name: String);
93 function g_Game_DelayEvent(DEType: Byte; Time: LongWord; Num: Integer = 0; Str: String = ''): Integer;
94 procedure g_Game_AddPlayer(Team: Byte = TEAM_NONE);
95 procedure g_Game_RemovePlayer();
96 procedure g_Game_Spectate();
97 procedure g_Game_SpectateCenterView();
98 procedure g_Game_StartSingle(Map: String; TwoPlayers: Boolean; nPlayers: Byte);
99 procedure g_Game_StartCustom(Map: String; GameMode: Byte; TimeLimit, GoalLimit: Word; MaxLives: Byte; Options: LongWord; nPlayers: Byte);
100 procedure g_Game_StartServer(Map: String; GameMode: Byte; TimeLimit, GoalLimit: Word; MaxLives: Byte; Options: LongWord; nPlayers: Byte; IPAddr: LongWord; Port: Word);
101 procedure g_Game_StartClient(Addr: String; Port: Word; PW: String);
102 procedure g_Game_Restart();
103 procedure g_Game_RestartLevel();
104 procedure g_Game_RestartRound(NoMapRestart: Boolean = False);
105 function g_Game_ClientWAD (NewWAD: String; const WHash: TMD5Digest): AnsiString;
106 function g_Game_StartMap(asMegawad: Boolean; Map: String; Force: Boolean = False; const oldMapPath: AnsiString=''): Boolean;
107 procedure g_Game_ChangeMap(const MapPath: String);
108 procedure g_Game_ExitLevel(const Map: AnsiString);
109 function g_Game_GetFirstMap(WAD: String): String;
110 function g_Game_GetNextMap(): String;
111 procedure g_Game_NextLevel();
112 procedure g_Game_Pause(Enable: Boolean);
113 procedure g_Game_HolmesPause(Enable: Boolean);
114 procedure g_Game_InGameMenu(Show: Boolean);
115 function g_Game_IsWatchedPlayer(UID: Word): Boolean;
116 function g_Game_IsWatchedTeam(Team: Byte): Boolean;
117 procedure g_Game_Message(Msg: String; Time: Word);
118 procedure g_Game_LoadMapList(FileName: String);
119 procedure g_Game_PauseAllSounds(Enable: Boolean);
120 procedure g_Game_StopAllSounds(all: Boolean);
121 procedure g_Game_UpdateTriggerSounds();
122 function g_Game_GetMegaWADInfo(WAD: String): TMegaWADInfo;
123 procedure g_Game_ChatSound(Text: String; Taunt: Boolean = True);
124 procedure g_Game_Announce_GoodShot(SpawnerUID: Word);
125 procedure g_Game_Announce_KillCombo(Param: Integer);
126 procedure g_Game_Announce_BodyKill(SpawnerUID: Word);
127 procedure g_Game_StartVote(Command, Initiator: string);
128 procedure g_Game_CheckVote;
129 procedure g_TakeScreenShot(Filename: string = '');
130 procedure g_FatalError(Text: String);
131 procedure g_SimpleError(Text: String);
132 function g_Game_IsTestMap(): Boolean;
133 procedure g_Game_DeleteTestMap();
134 procedure GameCVars(P: SSArray);
135 procedure GameCommands(P: SSArray);
136 procedure GameCheats(P: SSArray);
137 procedure DebugCommands(P: SSArray);
138 procedure g_Game_Process_Params;
139 procedure g_Game_SetLoadingText(Text: String; Max: Integer; reWrite: Boolean);
140 procedure g_Game_StepLoading(Value: Integer = -1);
141 procedure g_Game_ClearLoading();
142 procedure g_Game_SetDebugMode();
143 procedure DrawLoadingStat();
144 procedure DrawMenuBackground(tex: AnsiString);
146 { procedure SetWinPause(Enable: Boolean); }
148 const
149 GAME_TICK = 28;
151 LOADING_SHOW_STEP = 100;
152 LOADING_INTERLINE = 20;
154 GT_NONE = 0;
155 GT_SINGLE = 1;
156 GT_CUSTOM = 2;
157 GT_SERVER = 3;
158 GT_CLIENT = 4;
160 GM_NONE = 0;
161 GM_DM = 1;
162 GM_TDM = 2;
163 GM_CTF = 3;
164 GM_COOP = 4;
165 GM_SINGLE = 5;
167 MESSAGE_DIKEY = WM_USER + 1;
169 EXIT_QUIT = 1;
170 EXIT_SIMPLE = 2;
171 EXIT_RESTART = 3;
172 EXIT_ENDLEVELSINGLE = 4;
173 EXIT_ENDLEVELCUSTOM = 5;
175 GAME_OPTION_RESERVED = 1;
176 GAME_OPTION_TEAMDAMAGE = 2;
177 GAME_OPTION_ALLOWEXIT = 4;
178 GAME_OPTION_WEAPONSTAY = 8;
179 GAME_OPTION_MONSTERS = 16;
180 GAME_OPTION_BOTVSPLAYER = 32;
181 GAME_OPTION_BOTVSMONSTER = 64;
182 GAME_OPTION_DMKEYS = 128;
183 GAME_OPTION_RESPAWNITEMS = 256;
185 STATE_NONE = 0;
186 STATE_MENU = 1;
187 STATE_FOLD = 2;
188 STATE_INTERCUSTOM = 3;
189 STATE_INTERSINGLE = 4;
190 STATE_INTERTEXT = 5;
191 STATE_INTERPIC = 6;
192 STATE_ENDPIC = 7;
193 STATE_SLIST = 8;
195 LMS_RESPAWN_NONE = 0;
196 LMS_RESPAWN_WARMUP = 1;
197 LMS_RESPAWN_FINAL = 2;
199 SPECT_NONE = 0;
200 SPECT_STATS = 1;
201 SPECT_MAPVIEW = 2;
202 SPECT_PLAYERS = 3;
204 DE_GLOBEVENT = 0;
205 DE_BFGHIT = 1;
206 DE_KILLCOMBO = 2;
207 DE_BODYKILL = 3;
209 ANNOUNCE_NONE = 0;
210 ANNOUNCE_ME = 1;
211 ANNOUNCE_MEPLUS = 2;
212 ANNOUNCE_ALL = 3;
214 CONFIG_FILENAME = 'Doom2DF.cfg';
216 TEST_MAP_NAME = '$$$_TEST_$$$';
218 STD_PLAYER_MODEL = 'Doomer';
220 {$IFDEF HEADLESS}
221 DEFAULT_PLAYERS = 0;
222 {$ELSE}
223 DEFAULT_PLAYERS = 1;
224 {$ENDIF}
226 STATFILE_VERSION = $03;
228 var
229 gStdFont: DWORD;
230 gGameSettings: TGameSettings;
231 gPlayer1Settings: TPlayerSettings;
232 gPlayer2Settings: TPlayerSettings;
233 gGameOn: Boolean;
234 gPlayerScreenSize: TDFPoint;
235 gPlayer1ScreenCoord: TDFPoint;
236 gPlayer2ScreenCoord: TDFPoint;
237 gPlayer1: TPlayer = nil;
238 gPlayer2: TPlayer = nil;
239 gPlayerDrawn: TPlayer = nil;
240 gTime: LongWord;
241 gSwitchGameMode: Byte = GM_DM;
242 gHearPoint1, gHearPoint2: THearPoint;
243 gSoundEffectsDF: Boolean = False;
244 gSoundTriggerTime: Word = 0;
245 gAnnouncer: Integer = ANNOUNCE_NONE;
246 goodsnd: array[0..3] of TPlayableSound;
247 killsnd: array[0..3] of TPlayableSound;
248 hahasnd: array[0..2] of TPlayableSound;
249 sound_get_flag: array[0..1] of TPlayableSound;
250 sound_lost_flag: array[0..1] of TPlayableSound;
251 sound_ret_flag: array[0..1] of TPlayableSound;
252 sound_cap_flag: array[0..1] of TPlayableSound;
253 gBodyKillEvent: Integer = -1;
254 gDefInterTime: ShortInt = -1;
255 gInterEndTime: LongWord = 0;
256 gInterTime: LongWord = 0;
257 gServInterTime: Byte = 0;
258 gGameStartTime: LongWord = 0;
259 gTotalMonsters: Integer = 0;
260 gPauseMain: Boolean = false;
261 gPauseHolmes: Boolean = false;
262 gShowTime: Boolean = False;
263 gShowFPS: Boolean = False;
264 gShowGoals: Boolean = True;
265 gShowStat: Boolean = True;
266 gShowKillMsg: Boolean = True;
267 gShowLives: Boolean = True;
268 gShowPing: Boolean = False;
269 gShowMap: Boolean = False;
270 gExit: Byte = 0;
271 gState: Byte = STATE_NONE;
272 sX, sY: Integer;
273 sWidth, sHeight: Word;
274 gSpectMode: Byte = SPECT_NONE;
275 gSpectHUD: Boolean = True;
276 gSpectKeyPress: Boolean = False;
277 gSpectX: Integer = 0;
278 gSpectY: Integer = 0;
279 gSpectStep: Byte = 8;
280 gSpectViewTwo: Boolean = False;
281 gSpectPID1: Integer = -1;
282 gSpectPID2: Integer = -1;
283 gSpectAuto: Boolean = False;
284 gSpectAutoNext: LongWord;
285 gSpectAutoStepX: Integer;
286 gSpectAutoStepY: Integer;
287 gMusic: TMusic = nil;
288 gLoadGameMode: Boolean;
289 gCheats: Boolean = False;
290 gMapOnce: Boolean = False;
291 gMapToDelete: String;
292 gTempDelete: Boolean = False;
293 gLastMap: Boolean = False;
294 gWinSizeX, gWinSizeY: Integer;
295 gResolutionChange: Boolean = False;
296 gRC_Width, gRC_Height: Integer;
297 gRC_FullScreen, gRC_Maximized: Boolean;
298 gLanguageChange: Boolean = False;
299 gDebugMode: Boolean = False;
300 g_debug_Sounds: Boolean = False;
301 g_debug_Frames: Boolean = False;
302 g_debug_WinMsgs: Boolean = False;
303 g_debug_MonsterOff: Boolean = False;
304 g_debug_BotAIOff: Byte = 0;
305 g_debug_HealthBar: Boolean = False;
306 g_Debug_Player: Boolean = False;
307 gCoopMonstersKilled: Word = 0;
308 gCoopSecretsFound: Word = 0;
309 gCoopTotalMonstersKilled: Word = 0;
310 gCoopTotalSecretsFound: Word = 0;
311 gCoopTotalMonsters: Word = 0;
312 gCoopTotalSecrets: Word = 0;
313 gStatsOff: Boolean = False;
314 gStatsPressed: Boolean = False;
315 gExitByTrigger: Boolean = False;
316 gNextMap: String = '';
317 gLMSRespawn: Byte = LMS_RESPAWN_NONE;
318 gLMSRespawnTime: Cardinal = 0;
319 gLMSSoftSpawn: Boolean = False;
320 gMissionFailed: Boolean = False;
321 gVoteInProgress: Boolean = False;
322 gVotePassed: Boolean = False;
323 gVoteCommand: string = '';
324 gVoteTimer: Cardinal = 0;
325 gVoteCmdTimer: Cardinal = 0;
326 gVoteCount: Integer = 0;
327 gVoteTimeout: Cardinal = 30;
328 gVoted: Boolean = False;
329 gVotesEnabled: Boolean = True;
330 gEvents: Array of TGameEvent;
331 gDelayedEvents: Array of TDelayedEvent;
332 gUseChatSounds: Boolean = True;
333 gChatSounds: Array of TChatSound;
334 gSelectWeapon: Array [0..1, WP_FIRST..WP_LAST] of Boolean; // [player, weapon]
335 gInterReadyCount: Integer = 0;
337 g_dbg_ignore_bounds: Boolean = false;
338 r_smallmap_h: Integer = 0; // 0: left; 1: center; 2: right
339 r_smallmap_v: Integer = 2; // 0: top; 1: center; 2: bottom
341 // move button values:
342 // bits 0-1: l/r state:
343 // 0: neither left, nor right pressed
344 // 1: left pressed
345 // 2: right pressed
346 // bits 4-5: l/r state when strafe was pressed
347 P1MoveButton: Byte = 0;
348 P2MoveButton: Byte = 0;
350 g_profile_frame_update: Boolean = false;
351 g_profile_frame_draw: Boolean = false;
352 g_profile_collision: Boolean = false;
353 g_profile_los: Boolean = false;
354 g_profile_history_size: Integer = 1000;
356 g_rlayer_back: Boolean = true;
357 g_rlayer_step: Boolean = true;
358 g_rlayer_wall: Boolean = true;
359 g_rlayer_door: Boolean = true;
360 g_rlayer_acid1: Boolean = true;
361 g_rlayer_acid2: Boolean = true;
362 g_rlayer_water: Boolean = true;
363 g_rlayer_fore: Boolean = true;
366 procedure g_ResetDynlights ();
367 procedure g_AddDynLight (x, y, radius: Integer; r, g, b, a: Single);
368 procedure g_DynLightExplosion (x, y, radius: Integer; r, g, b: Single);
370 function conIsCheatsEnabled (): Boolean; inline;
371 function gPause (): Boolean; inline;
374 implementation
376 uses
377 {$INCLUDE ../nogl/noGLuses.inc}
378 {$IFDEF ENABLE_HOLMES}
379 g_holmes,
380 {$ENDIF}
381 e_texture, e_res, g_textures, g_window, g_menu,
382 e_input, e_log, g_console, g_items, g_map, g_panel,
383 g_playermodel, g_gfx, g_options, Math,
384 g_triggers, g_monsters, e_sound, CONFIG,
385 g_language, g_net, g_main,
386 ENet, e_msg, g_netmsg, g_netmaster,
387 sfs, wadreader, g_system;
390 var
391 hasPBarGfx: Boolean = false;
394 // ////////////////////////////////////////////////////////////////////////// //
395 function gPause (): Boolean; inline; begin result := gPauseMain or gPauseHolmes; end;
398 // ////////////////////////////////////////////////////////////////////////// //
399 function conIsCheatsEnabled (): Boolean; inline;
400 begin
401 result := false;
402 if g_Game_IsNet then exit;
403 if not gDebugMode then
404 begin
405 //if not gCheats then exit;
406 if not (gGameSettings.GameType in [GT_SINGLE, GT_CUSTOM]) then exit;
407 if not (gGameSettings.GameMode in [GM_COOP, GM_SINGLE]) then exit;
408 end;
409 result := true;
410 end;
413 // ////////////////////////////////////////////////////////////////////////// //
414 var
415 profileFrameDraw: TProfiler = nil;
418 // ////////////////////////////////////////////////////////////////////////// //
419 type
420 TDynLight = record
421 x, y, radius: Integer;
422 r, g, b, a: Single;
423 exploCount: Integer;
424 exploRadius: Integer;
425 end;
427 var
428 g_dynLights: array of TDynLight = nil;
429 g_dynLightCount: Integer = 0;
430 g_playerLight: Boolean = false;
432 procedure g_ResetDynlights ();
433 var
434 lnum, idx: Integer;
435 begin
436 if not gwin_has_stencil then begin g_dynLightCount := 0; exit; end;
437 lnum := 0;
438 for idx := 0 to g_dynLightCount-1 do
439 begin
440 if g_dynLights[idx].exploCount = -666 then
441 begin
442 // skip it
443 end
444 else
445 begin
446 // explosion
447 Inc(g_dynLights[idx].exploCount);
448 if (g_dynLights[idx].exploCount < 10) then
449 begin
450 g_dynLights[idx].radius := g_dynLights[idx].exploRadius+g_dynLights[idx].exploCount*8;
451 g_dynLights[idx].a := 0.4+g_dynLights[idx].exploCount/10;
452 if (g_dynLights[idx].a > 0.8) then g_dynLights[idx].a := 0.8;
453 if lnum <> idx then g_dynLights[lnum] := g_dynLights[idx];
454 Inc(lnum);
455 end;
456 end;
457 end;
458 g_dynLightCount := lnum;
459 end;
461 procedure g_AddDynLight (x, y, radius: Integer; r, g, b, a: Single);
462 begin
463 if not gwin_has_stencil then exit;
464 if g_dynLightCount = length(g_dynLights) then SetLength(g_dynLights, g_dynLightCount+1024);
465 g_dynLights[g_dynLightCount].x := x;
466 g_dynLights[g_dynLightCount].y := y;
467 g_dynLights[g_dynLightCount].radius := radius;
468 g_dynLights[g_dynLightCount].r := r;
469 g_dynLights[g_dynLightCount].g := g;
470 g_dynLights[g_dynLightCount].b := b;
471 g_dynLights[g_dynLightCount].a := a;
472 g_dynLights[g_dynLightCount].exploCount := -666;
473 Inc(g_dynLightCount);
474 end;
476 procedure g_DynLightExplosion (x, y, radius: Integer; r, g, b: Single);
477 begin
478 if not gwin_has_stencil then exit;
479 if g_dynLightCount = length(g_dynLights) then SetLength(g_dynLights, g_dynLightCount+1024);
480 g_dynLights[g_dynLightCount].x := x;
481 g_dynLights[g_dynLightCount].y := y;
482 g_dynLights[g_dynLightCount].radius := 0;
483 g_dynLights[g_dynLightCount].exploRadius := radius;
484 g_dynLights[g_dynLightCount].r := r;
485 g_dynLights[g_dynLightCount].g := g;
486 g_dynLights[g_dynLightCount].b := b;
487 g_dynLights[g_dynLightCount].a := 0;
488 g_dynLights[g_dynLightCount].exploCount := 0;
489 Inc(g_dynLightCount);
490 end;
493 // ////////////////////////////////////////////////////////////////////////// //
494 function calcProfilesHeight (prof: TProfiler): Integer;
495 begin
496 result := 0;
497 if (prof = nil) then exit;
498 if (length(prof.bars) = 0) then exit;
499 result := length(prof.bars)*(16+2);
500 end;
502 // returns width
503 function drawProfiles (x, y: Integer; prof: TProfiler): Integer;
504 var
505 wdt, hgt: Integer;
506 yy: Integer;
507 ii: Integer;
508 begin
509 result := 0;
510 if (prof = nil) then exit;
511 // gScreenWidth
512 if (length(prof.bars) = 0) then exit;
513 wdt := 192;
514 hgt := calcProfilesHeight(prof);
515 if (x < 0) then x := gScreenWidth-(wdt-1)+x;
516 if (y < 0) then y := gScreenHeight-(hgt-1)+y;
517 // background
518 //e_DrawFillQuad(x, y, x+wdt-1, y+hgt-1, 255, 255, 255, 200, B_BLEND);
519 //e_DrawFillQuad(x, y, x+wdt-1, y+hgt-1, 20, 20, 20, 0, B_NONE);
520 e_DarkenQuadWH(x, y, wdt, hgt, 150);
521 // title
522 yy := y+2;
523 for ii := 0 to High(prof.bars) do
524 begin
525 e_TextureFontPrintEx(x+2+4*prof.bars[ii].level, yy, Format('%s: %d', [prof.bars[ii].name, prof.bars[ii].value]), gStdFont, 255, 255, 0, 1, false);
526 Inc(yy, 16+2);
527 end;
528 result := wdt;
529 end;
532 // ////////////////////////////////////////////////////////////////////////// //
533 type
534 TEndCustomGameStat = record
535 PlayerStat: TPlayerStatArray;
536 TeamStat: TTeamStat;
537 GameTime: LongWord;
538 GameMode: Byte;
539 Map, MapName: String;
540 end;
542 TEndSingleGameStat = record
543 PlayerStat: Array [0..1] of record
544 Kills: Integer;
545 Secrets: Integer;
546 end;
547 GameTime: LongWord;
548 TwoPlayers: Boolean;
549 TotalSecrets: Integer;
550 end;
552 TLoadingStat = record
553 CurValue: Integer;
554 MaxValue: Integer;
555 ShowCount: Integer;
556 Msgs: Array of String;
557 NextMsg: Word;
558 PBarWasHere: Boolean; // did we draw a progress bar for this message?
559 end;
561 TParamStrValue = record
562 Name: String;
563 Value: String;
564 end;
566 TParamStrValues = Array of TParamStrValue;
568 const
569 INTER_ACTION_TEXT = 1;
570 INTER_ACTION_PIC = 2;
571 INTER_ACTION_MUSIC = 3;
573 var
574 FPS, UPS: Word;
575 FPSCounter, UPSCounter: Word;
576 FPSTime, UPSTime: LongWord;
577 DataLoaded: Boolean = False;
578 IsDrawStat: Boolean = False;
579 CustomStat: TEndCustomGameStat;
580 SingleStat: TEndSingleGameStat;
581 LoadingStat: TLoadingStat;
582 EndingGameCounter: Byte = 0;
583 MessageText: String;
584 MessageTime: Word;
585 MessageLineLength: Integer = 80;
586 MapList: SSArray = nil;
587 MapIndex: Integer = -1;
588 InterReadyTime: Integer = -1;
589 StatShotDone: Boolean = False;
590 StatFilename: string = ''; // used by stat screenshot to save with the same name as the csv
591 StatDate: string = '';
592 MegaWAD: record
593 info: TMegaWADInfo;
594 endpic: String;
595 endmus: String;
596 res: record
597 text: Array of ShortString;
598 anim: Array of ShortString;
599 pic: Array of ShortString;
600 mus: Array of ShortString;
601 end;
602 triggers: Array of record
603 event: ShortString;
604 actions: Array of record
605 action, p1, p2: Integer;
606 end;
607 end;
608 cur_trigger: Integer;
609 cur_action: Integer;
610 end;
611 //InterPic: String;
612 InterText: record
613 lines: SSArray;
614 img: String;
615 cur_line: Integer;
616 cur_char: Integer;
617 counter: Integer;
618 endtext: Boolean;
619 end;
621 function Compare(a, b: TPlayerStat): Integer;
622 begin
623 if a.Spectator then Result := 1
624 else if b.Spectator then Result := -1
625 else if a.Frags < b.Frags then Result := 1
626 else if a.Frags > b.Frags then Result := -1
627 else if a.Deaths < b.Deaths then Result := -1
628 else if a.Deaths > b.Deaths then Result := 1
629 else if a.Kills < b.Kills then Result := -1
630 else Result := 1;
631 end;
633 procedure SortGameStat(var stat: TPlayerStatArray);
634 var
635 I, J: Integer;
636 T: TPlayerStat;
637 begin
638 if stat = nil then Exit;
640 for I := High(stat) downto Low(stat) do
641 for J := Low(stat) to High(stat) - 1 do
642 if Compare(stat[J], stat[J + 1]) = 1 then
643 begin
644 T := stat[J];
645 stat[J] := stat[J + 1];
646 stat[J + 1] := T;
647 end;
648 end;
650 // saves a shitty CSV containing the game stats passed to it
651 procedure SaveGameStat(Stat: TEndCustomGameStat; Path: string);
652 var
653 s: TextFile;
654 dir, fname, map, mode, etime: String;
655 I: Integer;
656 begin
657 try
658 dir := e_GetWriteableDir(StatsDirs);
659 // stats are placed in stats/yy/mm/dd/*.csv
660 fname := e_CatPath(dir, Path);
661 ForceDirectories(fname); // ensure yy/mm/dd exists within the stats dir
662 fname := e_CatPath(fname, StatFilename + '.csv');
663 AssignFile(s, fname);
664 try
665 Rewrite(s);
666 // line 1: stats ver, datetime, server name, map name, game mode, time limit, score limit, dmflags, game time, num players
667 if g_Game_IsNet then fname := NetServerName else fname := '';
668 map := g_ExtractWadNameNoPath(gMapInfo.Map) + ':/' + g_ExtractFileName(gMapInfo.Map);
669 mode := g_Game_ModeToText(Stat.GameMode);
670 etime := Format('%d:%.2d:%.2d', [
671 Stat.GameTime div 1000 div 3600,
672 (Stat.GameTime div 1000 div 60) mod 60,
673 Stat.GameTime div 1000 mod 60
674 ]);
675 WriteLn(s, 'stats_ver,datetime,server,map,mode,timelimit,scorelimit,dmflags,time,num_players');
676 WriteLn(s, Format('%d,%s,%s,%s,%s,%u,%u,%u,%s,%d', [
677 STATFILE_VERSION,
678 StatDate,
679 dquoteStr(fname),
680 dquoteStr(map),
681 mode,
682 gGameSettings.TimeLimit,
683 gGameSettings.GoalLimit,
684 gGameSettings.Options,
685 etime,
686 Length(Stat.PlayerStat)
687 ]));
688 // line 2: game specific shit
689 // if it's a team game: red score, blue score
690 // if it's a coop game: monsters killed, monsters total, secrets found, secrets total
691 // otherwise nothing
692 if Stat.GameMode in [GM_TDM, GM_CTF] then
693 WriteLn(s,
694 Format('red_score,blue_score' + LineEnding + '%d,%d', [Stat.TeamStat[TEAM_RED].Goals, Stat.TeamStat[TEAM_BLUE].Goals]))
695 else if Stat.GameMode in [GM_COOP, GM_SINGLE] then
696 WriteLn(s,
697 Format('mon_killed,mon_total,secrets_found,secrets_total' + LineEnding + '%d,%d,%d,%d',[gCoopMonstersKilled, gTotalMonsters, gCoopSecretsFound, gSecretsCount]));
698 // lines 3-...: team, player name, frags, deaths
699 WriteLn(s, 'team,name,frags,deaths');
700 for I := Low(Stat.PlayerStat) to High(Stat.PlayerStat) do
701 with Stat.PlayerStat[I] do
702 WriteLn(s, Format('%d,%s,%d,%d', [Team, dquoteStr(Name), Frags, Deaths]));
703 except
704 g_Console_Add(Format(_lc[I_CONSOLE_ERROR_WRITE], [fname]));
705 end;
706 except
707 g_Console_Add('could not create gamestats file "' + fname + '"');
708 end;
709 CloseFile(s);
710 end;
712 function g_Game_ModeToText(Mode: Byte): string;
713 begin
714 Result := '';
715 case Mode of
716 GM_DM: Result := _lc[I_MENU_GAME_TYPE_DM];
717 GM_TDM: Result := _lc[I_MENU_GAME_TYPE_TDM];
718 GM_CTF: Result := _lc[I_MENU_GAME_TYPE_CTF];
719 GM_COOP: Result := _lc[I_MENU_GAME_TYPE_COOP];
720 GM_SINGLE: Result := _lc[I_MENU_GAME_TYPE_SINGLE];
721 end;
722 end;
724 function g_Game_TextToMode(Mode: string): Byte;
725 begin
726 Result := GM_NONE;
727 Mode := UpperCase(Mode);
728 if Mode = _lc[I_MENU_GAME_TYPE_DM] then
729 begin
730 Result := GM_DM;
731 Exit;
732 end;
733 if Mode = _lc[I_MENU_GAME_TYPE_TDM] then
734 begin
735 Result := GM_TDM;
736 Exit;
737 end;
738 if Mode = _lc[I_MENU_GAME_TYPE_CTF] then
739 begin
740 Result := GM_CTF;
741 Exit;
742 end;
743 if Mode = _lc[I_MENU_GAME_TYPE_COOP] then
744 begin
745 Result := GM_COOP;
746 Exit;
747 end;
748 if Mode = _lc[I_MENU_GAME_TYPE_SINGLE] then
749 begin
750 Result := GM_SINGLE;
751 Exit;
752 end;
753 end;
755 function g_Game_IsNet(): Boolean;
756 begin
757 Result := (gGameSettings.GameType in [GT_SERVER, GT_CLIENT]);
758 end;
760 function g_Game_IsServer(): Boolean;
761 begin
762 Result := (gGameSettings.GameType in [GT_SINGLE, GT_CUSTOM, GT_SERVER]);
763 end;
765 function g_Game_IsClient(): Boolean;
766 begin
767 Result := (gGameSettings.GameType = GT_CLIENT);
768 end;
770 function g_Game_GetMegaWADInfo(WAD: String): TMegaWADInfo;
771 var
772 w: TWADFile;
773 cfg: TConfig;
774 p: Pointer;
775 len: Integer;
776 begin
777 Result.name := ExtractFileName(WAD);
778 Result.description := '';
779 Result.author := '';
781 w := TWADFile.Create();
782 w.ReadFile(WAD);
784 if not w.GetResource('INTERSCRIPT', p, len) then
785 begin
786 w.Free();
787 Exit;
788 end;
790 cfg := TConfig.CreateMem(p, len);
791 Result.name := cfg.ReadStr('megawad', 'name', ExtractFileName(WAD));
792 Result.description := cfg.ReadStr('megawad', 'description', '');
793 Result.author := cfg.ReadStr('megawad', 'author', '');
794 Result.pic := cfg.ReadStr('megawad', 'pic', '');
795 cfg.Free();
797 FreeMem(p);
798 end;
800 procedure g_Game_FreeWAD();
801 var
802 a: Integer;
803 begin
804 for a := 0 to High(MegaWAD.res.pic) do
805 if MegaWAD.res.pic[a] <> '' then
806 g_Texture_Delete(MegaWAD.res.pic[a]);
808 for a := 0 to High(MegaWAD.res.mus) do
809 if MegaWAD.res.mus[a] <> '' then
810 g_Sound_Delete(MegaWAD.res.mus[a]);
812 MegaWAD.res.pic := nil;
813 MegaWAD.res.text := nil;
814 MegaWAD.res.anim := nil;
815 MegaWAD.res.mus := nil;
816 MegaWAD.triggers := nil;
818 g_Texture_Delete('TEXTURE_endpic');
819 g_Sound_Delete('MUSIC_endmus');
821 ZeroMemory(@MegaWAD, SizeOf(MegaWAD));
822 gGameSettings.WAD := '';
823 end;
825 procedure g_Game_LoadWAD(WAD: string);
826 var
827 w: TWADFile;
828 cfg: TConfig;
829 p: Pointer;
830 {b, }len: Integer;
831 s: AnsiString;
832 begin
833 g_Game_FreeWAD();
834 gGameSettings.WAD := WAD;
835 if not (gGameSettings.GameMode in [GM_COOP, GM_SINGLE]) then
836 Exit;
838 MegaWAD.info := g_Game_GetMegaWADInfo(WAD);
840 w := TWADFile.Create();
841 w.ReadFile(WAD);
843 if not w.GetResource('INTERSCRIPT', p, len) then
844 begin
845 w.Free();
846 Exit;
847 end;
849 cfg := TConfig.CreateMem(p, len);
851 {b := 1;
852 while True do
853 begin
854 s := cfg.ReadStr('pic', 'pic'+IntToStr(b), '');
855 if s = '' then Break;
856 b := b+1;
858 SetLength(MegaWAD.res.pic, Length(MegaWAD.res.pic)+1);
859 MegaWAD.res.pic[High(MegaWAD.res.pic)] := s;
861 g_Texture_CreateWADEx(s, s);
862 end;
864 b := 1;
865 while True do
866 begin
867 s := cfg.ReadStr('mus', 'mus'+IntToStr(b), '');
868 if s = '' then Break;
869 b := b+1;
871 SetLength(MegaWAD.res.mus, Length(MegaWAD.res.mus)+1);
872 MegaWAD.res.mus[High(MegaWAD.res.mus)] := s;
874 g_Music_CreateWADEx(s, s);
875 end;}
877 MegaWAD.endpic := cfg.ReadStr('megawad', 'endpic', '');
878 if MegaWAD.endpic <> '' then
879 begin
880 TEXTUREFILTER := GL_LINEAR;
881 s := e_GetResourcePath(WadDirs, MegaWAD.endpic, WAD);
882 g_Texture_CreateWADEx('TEXTURE_endpic', s);
883 TEXTUREFILTER := GL_NEAREST;
884 end;
885 MegaWAD.endmus := cfg.ReadStr('megawad', 'endmus', 'Standart.wad:D2DMUS\ÊÎÍÅÖ');
886 if MegaWAD.endmus <> '' then
887 begin
888 s := e_GetResourcePath(WadDirs, MegaWAD.endmus, WAD);
889 g_Sound_CreateWADEx('MUSIC_endmus', s, True);
890 end;
892 cfg.Free();
893 FreeMem(p);
894 w.Free();
895 end;
897 {procedure start_trigger(t: string);
898 begin
899 end;
901 function next_trigger(): Boolean;
902 begin
903 end;}
905 procedure DisableCheats();
906 begin
907 MAX_RUNVEL := 8;
908 VEL_JUMP := 10;
909 gFly := False;
911 if gPlayer1 <> nil then gPlayer1.GodMode := False;
912 if gPlayer2 <> nil then gPlayer2.GodMode := False;
913 if gPlayer1 <> nil then gPlayer1.NoTarget := False;
914 if gPlayer2 <> nil then gPlayer2.NoTarget := False;
916 {$IF DEFINED(D2F_DEBUG)}
917 if gPlayer1 <> nil then gPlayer1.NoTarget := True;
918 gAimLine := g_dbg_aimline_on;
919 {$ENDIF}
920 end;
922 procedure g_Game_ExecuteEvent(Name: String);
923 var
924 a: Integer;
925 begin
926 if Name = '' then
927 Exit;
928 if gEvents = nil then
929 Exit;
930 for a := 0 to High(gEvents) do
931 if gEvents[a].Name = Name then
932 begin
933 if gEvents[a].Command <> '' then
934 g_Console_Process(gEvents[a].Command, True);
935 break;
936 end;
937 end;
939 function g_Game_DelayEvent(DEType: Byte; Time: LongWord; Num: Integer = 0; Str: String = ''): Integer;
940 var
941 a, n: Integer;
942 begin
943 n := -1;
944 if gDelayedEvents <> nil then
945 for a := 0 to High(gDelayedEvents) do
946 if not gDelayedEvents[a].Pending then
947 begin
948 n := a;
949 break;
950 end;
951 if n = -1 then
952 begin
953 SetLength(gDelayedEvents, Length(gDelayedEvents) + 1);
954 n := High(gDelayedEvents);
955 end;
956 gDelayedEvents[n].Pending := True;
957 gDelayedEvents[n].DEType := DEType;
958 gDelayedEvents[n].DENum := Num;
959 gDelayedEvents[n].DEStr := Str;
960 if DEType = DE_GLOBEVENT then
961 gDelayedEvents[n].Time := (sys_GetTicks() {div 1000}) + Time
962 else
963 gDelayedEvents[n].Time := gTime + Time;
964 Result := n;
965 end;
967 procedure EndGame();
968 var
969 a: Integer;
970 FileName: string;
971 t: TDateTime;
972 begin
973 if g_Game_IsNet and g_Game_IsServer then
974 MH_SEND_GameEvent(NET_EV_MAPEND, Byte(gMissionFailed));
976 // Ñòîï èãðà:
977 gPauseMain := false;
978 gPauseHolmes := false;
979 gGameOn := false;
981 g_Game_StopAllSounds(False);
983 MessageTime := 0;
984 MessageText := '';
986 EndingGameCounter := 0;
987 g_ActiveWindow := nil;
989 gLMSRespawn := LMS_RESPAWN_NONE;
990 gLMSRespawnTime := 0;
992 case gExit of
993 EXIT_SIMPLE: // Âûõîä ÷åðåç ìåíþ èëè êîíåö òåñòà
994 begin
995 g_Game_Free();
997 if gMapOnce then
998 begin // Ýòî áûë òåñò
999 g_Game_Quit();
1000 end
1001 else
1002 begin // Âûõîä â ãëàâíîå ìåíþ
1003 gMusic.SetByName('MUSIC_MENU');
1004 gMusic.Play();
1005 if gState <> STATE_SLIST then
1006 begin
1007 g_GUI_ShowWindow('MainMenu');
1008 gState := STATE_MENU;
1009 end else
1010 begin
1011 // Îáíîâëÿåì ñïèñîê ñåðâåðîâ
1012 slReturnPressed := True;
1013 if g_Net_Slist_Fetch(slCurrent) then
1014 begin
1015 if slCurrent = nil then
1016 slWaitStr := _lc[I_NET_SLIST_NOSERVERS];
1017 end
1018 else
1019 slWaitStr := _lc[I_NET_SLIST_ERROR];
1020 g_Serverlist_GenerateTable(slCurrent, slTable);
1021 end;
1023 g_Game_ExecuteEvent('ongameend');
1024 end;
1025 end;
1027 EXIT_RESTART: // Íà÷àòü óðîâåíü ñíà÷àëà
1028 begin
1029 if not g_Game_IsClient then g_Game_Restart();
1030 end;
1032 EXIT_ENDLEVELCUSTOM: // Çàêîí÷èëñÿ óðîâåíü â Ñâîåé èãðå
1033 begin
1034 // Ñòàòèñòèêà Ñâîåé èãðû:
1035 FileName := g_ExtractWadName(gMapInfo.Map);
1037 CustomStat.GameTime := gTime;
1038 CustomStat.Map := ExtractFileName(FileName)+':'+g_ExtractFileName(gMapInfo.Map); //ResName;
1039 CustomStat.MapName := gMapInfo.Name;
1040 CustomStat.GameMode := gGameSettings.GameMode;
1041 if gGameSettings.GameMode in [GM_TDM, GM_CTF] then
1042 CustomStat.TeamStat := gTeamStat;
1044 CustomStat.PlayerStat := nil;
1046 // Ñòàòèñòèêà èãðîêîâ:
1047 if gPlayers <> nil then
1048 begin
1049 for a := 0 to High(gPlayers) do
1050 if gPlayers[a] <> nil then
1051 begin
1052 SetLength(CustomStat.PlayerStat, Length(CustomStat.PlayerStat)+1);
1053 with CustomStat.PlayerStat[High(CustomStat.PlayerStat)] do
1054 begin
1055 Num := a;
1056 Name := gPlayers[a].Name;
1057 Frags := gPlayers[a].Frags;
1058 Deaths := gPlayers[a].Death;
1059 Kills := gPlayers[a].Kills;
1060 Team := gPlayers[a].Team;
1061 Color := gPlayers[a].Model.Color;
1062 Spectator := gPlayers[a].FSpectator;
1063 end;
1064 end;
1066 SortGameStat(CustomStat.PlayerStat);
1068 if (gSaveStats or gScreenshotStats) and (Length(gPlayers) > 1) then
1069 begin
1070 t := Now;
1071 if g_Game_IsNet then StatFilename := NetServerName else StatFilename := 'local';
1072 StatDate := FormatDateTime('yymmdd_hhnnss', t);
1073 StatFilename := StatFilename + '_' + CustomStat.Map + '_' + g_Game_ModeToText(CustomStat.GameMode);
1074 StatFilename := sanitizeFilename(StatFilename) + '_' + StatDate;
1075 if gSaveStats then
1076 SaveGameStat(CustomStat, FormatDateTime('yyyy"/"mm"/"dd', t));
1077 end;
1079 StatShotDone := False;
1080 end;
1082 g_Game_ExecuteEvent('onmapend');
1083 if not g_Game_IsClient then g_Player_ResetReady;
1084 gInterReadyCount := 0;
1086 // Çàòóõàþùèé ýêðàí:
1087 EndingGameCounter := 255;
1088 gState := STATE_FOLD;
1089 gInterTime := 0;
1090 if gDefInterTime < 0 then
1091 gInterEndTime := IfThen((gGameSettings.GameType = GT_SERVER) and (gPlayer1 = nil), 15000, 25000)
1092 else
1093 gInterEndTime := gDefInterTime * 1000;
1094 end;
1096 EXIT_ENDLEVELSINGLE: // Çàêîí÷èëñÿ óðîâåíü â Îäèíî÷íîé èãðå
1097 begin
1098 // Ñòàòèñòèêà Îäèíî÷íîé èãðû:
1099 SingleStat.GameTime := gTime;
1100 SingleStat.TwoPlayers := gPlayer2 <> nil;
1101 SingleStat.TotalSecrets := gSecretsCount;
1102 // Ñòàòèñòèêà ïåðâîãî èãðîêà:
1103 SingleStat.PlayerStat[0].Kills := gPlayer1.MonsterKills;
1104 SingleStat.PlayerStat[0].Secrets := gPlayer1.Secrets;
1105 // Ñòàòèñòèêà âòîðîãî èãðîêà (åñëè åñòü):
1106 if SingleStat.TwoPlayers then
1107 begin
1108 SingleStat.PlayerStat[1].Kills := gPlayer2.MonsterKills;
1109 SingleStat.PlayerStat[1].Secrets := gPlayer2.Secrets;
1110 end;
1112 g_Game_ExecuteEvent('onmapend');
1114 // Åñòü åùå êàðòû:
1115 if gNextMap <> '' then
1116 begin
1117 gMusic.SetByName('MUSIC_INTERMUS');
1118 gMusic.Play();
1119 gState := STATE_INTERSINGLE;
1120 e_UnpressAllKeys();
1122 g_Game_ExecuteEvent('oninter');
1123 end
1124 else // Áîëüøå íåò êàðò
1125 begin
1126 // Çàòóõàþùèé ýêðàí:
1127 EndingGameCounter := 255;
1128 gState := STATE_FOLD;
1129 end;
1130 end;
1131 end;
1133 // Îêîí÷àíèå îáðàáîòàíî:
1134 if gExit <> EXIT_QUIT then
1135 gExit := 0;
1136 end;
1138 procedure drawTime(X, Y: Integer); inline;
1139 begin
1140 e_TextureFontPrint(x, y,
1141 Format('%d:%.2d:%.2d', [
1142 gTime div 1000 div 3600,
1143 (gTime div 1000 div 60) mod 60,
1144 gTime div 1000 mod 60
1145 ]),
1146 gStdFont);
1147 end;
1149 procedure DrawStat();
1150 var
1151 pc, x, y, w, h: Integer;
1152 w1, w2, w3, w4: Integer;
1153 a, aa: Integer;
1154 cw, ch, r, g, b, rr, gg, bb: Byte;
1155 s1, s2, s3: String;
1156 _y: Integer;
1157 stat: TPlayerStatArray;
1158 wad, map: string;
1159 mapstr: string;
1160 begin
1161 s1 := '';
1162 s2 := '';
1163 s3 := '';
1164 pc := g_Player_GetCount;
1165 e_TextureFontGetSize(gStdFont, cw, ch);
1167 w := gScreenWidth-(gScreenWidth div 5);
1168 if gGameSettings.GameMode in [GM_TDM, GM_CTF] then
1169 h := 32+ch*(11+pc)
1170 else
1171 h := 40+ch*5+(ch+8)*pc;
1172 x := (gScreenWidth div 2)-(w div 2);
1173 y := (gScreenHeight div 2)-(h div 2);
1175 e_DrawFillQuad(x, y, x+w-1, y+h-1, 64, 64, 64, 32);
1176 e_DrawQuad(x, y, x+w-1, y+h-1, 255, 127, 0);
1178 drawTime(x+w-78, y+8);
1180 wad := g_ExtractWadNameNoPath(gMapInfo.Map);
1181 map := g_ExtractFileName(gMapInfo.Map);
1182 mapstr := wad + ':\' + map + ' - ' + gMapInfo.Name;
1184 case gGameSettings.GameMode of
1185 GM_DM:
1186 begin
1187 if gGameSettings.MaxLives = 0 then
1188 s1 := _lc[I_GAME_DM]
1189 else
1190 s1 := _lc[I_GAME_LMS];
1191 s2 := Format(_lc[I_GAME_FRAG_LIMIT], [gGameSettings.GoalLimit]);
1192 s3 := Format(_lc[I_GAME_TIME_LIMIT], [gGameSettings.TimeLimit div 3600, (gGameSettings.TimeLimit div 60) mod 60, gGameSettings.TimeLimit mod 60]);
1193 end;
1195 GM_TDM:
1196 begin
1197 if gGameSettings.MaxLives = 0 then
1198 s1 := _lc[I_GAME_TDM]
1199 else
1200 s1 := _lc[I_GAME_TLMS];
1201 s2 := Format(_lc[I_GAME_FRAG_LIMIT], [gGameSettings.GoalLimit]);
1202 s3 := Format(_lc[I_GAME_TIME_LIMIT], [gGameSettings.TimeLimit div 3600, (gGameSettings.TimeLimit div 60) mod 60, gGameSettings.TimeLimit mod 60]);
1203 end;
1205 GM_CTF:
1206 begin
1207 s1 := _lc[I_GAME_CTF];
1208 s2 := Format(_lc[I_GAME_SCORE_LIMIT], [gGameSettings.GoalLimit]);
1209 s3 := Format(_lc[I_GAME_TIME_LIMIT], [gGameSettings.TimeLimit div 3600, (gGameSettings.TimeLimit div 60) mod 60, gGameSettings.TimeLimit mod 60]);
1210 end;
1212 GM_COOP:
1213 begin
1214 if gGameSettings.MaxLives = 0 then
1215 s1 := _lc[I_GAME_COOP]
1216 else
1217 s1 := _lc[I_GAME_SURV];
1218 s2 := _lc[I_GAME_MONSTERS] + ' ' + IntToStr(gCoopMonstersKilled) + '/' + IntToStr(gTotalMonsters);
1219 s3 := _lc[I_GAME_SECRETS] + ' ' + IntToStr(gCoopSecretsFound) + '/' + IntToStr(gSecretsCount);
1220 end;
1222 else
1223 begin
1224 s1 := '';
1225 s2 := '';
1226 end;
1227 end;
1229 _y := y+8;
1230 e_TextureFontPrintEx(x+(w div 2)-(Length(s1)*cw div 2), _y, s1, gStdFont, 255, 255, 255, 1);
1231 _y := _y+ch+8;
1232 e_TextureFontPrintEx(x+(w div 2)-(Length(mapstr)*cw div 2), _y, mapstr, gStdFont, 200, 200, 200, 1);
1233 _y := _y+ch+8;
1234 e_TextureFontPrintEx(x+16, _y, s2, gStdFont, 200, 200, 200, 1);
1236 e_TextureFontPrintEx(x+w-16-(Length(s3))*cw, _y, s3,
1237 gStdFont, 200, 200, 200, 1);
1239 if NetMode = NET_SERVER then
1240 e_TextureFontPrintEx(x+8, y + 8, _lc[I_NET_SERVER], gStdFont, 255, 255, 255, 1)
1241 else
1242 if NetMode = NET_CLIENT then
1243 e_TextureFontPrintEx(x+8, y + 8,
1244 NetClientIP + ':' + IntToStr(NetClientPort), gStdFont, 255, 255, 255, 1);
1246 if pc = 0 then
1247 Exit;
1248 stat := g_Player_GetStats();
1249 SortGameStat(stat);
1251 w2 := (w-16) div 6 + 48; // øèðèíà 2 ñòîëáöà
1252 w3 := (w-16) div 6; // øèðèíà 3 è 4 ñòîëáöîâ
1253 w4 := w3;
1254 w1 := w-16-w2-w3-w4; // îñòàâøååñÿ ïðîñòðàíñòâî - äëÿ öâåòà è èìåíè èãðîêà
1256 if gGameSettings.GameMode in [GM_TDM, GM_CTF] then
1257 begin
1258 _y := _y+ch+ch;
1260 for a := TEAM_RED to TEAM_BLUE do
1261 begin
1262 if a = TEAM_RED then
1263 begin
1264 s1 := _lc[I_GAME_TEAM_RED];
1265 r := 255;
1266 g := 0;
1267 b := 0;
1268 end
1269 else
1270 begin
1271 s1 := _lc[I_GAME_TEAM_BLUE];
1272 r := 0;
1273 g := 0;
1274 b := 255;
1275 end;
1277 e_TextureFontPrintEx(x+16, _y, s1, gStdFont, r, g, b, 1);
1278 e_TextureFontPrintEx(x+w1+16, _y, IntToStr(gTeamStat[a].Goals),
1279 gStdFont, r, g, b, 1);
1281 _y := _y+ch+(ch div 4);
1282 e_DrawLine(1, x+16, _y, x+w-16, _y, r, g, b);
1283 _y := _y+(ch div 4);
1285 for aa := 0 to High(stat) do
1286 if stat[aa].Team = a then
1287 with stat[aa] do
1288 begin
1289 if Spectator then
1290 begin
1291 rr := r div 2;
1292 gg := g div 2;
1293 bb := b div 2;
1294 end
1295 else
1296 begin
1297 rr := r;
1298 gg := g;
1299 bb := b;
1300 end;
1301 // Èìÿ
1302 e_TextureFontPrintEx(x+16, _y, Name, gStdFont, rr, gg, bb, 1);
1303 // Ïèíã/ïîòåðè
1304 e_TextureFontPrintEx(x+w1+16, _y, Format(_lc[I_GAME_PING_MS], [Ping, Loss]), gStdFont, rr, gg, bb, 1);
1305 // Ôðàãè
1306 e_TextureFontPrintEx(x+w1+w2+16, _y, IntToStr(Frags), gStdFont, rr, gg, bb, 1);
1307 // Ñìåðòè
1308 e_TextureFontPrintEx(x+w1+w2+w3+16, _y, IntToStr(Deaths), gStdFont, rr, gg, bb, 1);
1309 _y := _y+ch;
1310 end;
1312 _y := _y+ch;
1313 end;
1314 end
1315 else if gGameSettings.GameMode in [GM_DM, GM_COOP] then
1316 begin
1317 _y := _y+ch+ch;
1318 e_TextureFontPrintEx(x+16, _y, _lc[I_GAME_PLAYER_NAME], gStdFont, 255, 127, 0, 1);
1319 e_TextureFontPrintEx(x+16+w1, _y, _lc[I_GAME_PING], gStdFont, 255, 127, 0, 1);
1320 e_TextureFontPrintEx(x+16+w1+w2, _y, _lc[I_GAME_FRAGS], gStdFont, 255, 127, 0, 1);
1321 e_TextureFontPrintEx(x+16+w1+w2+w3, _y, _lc[I_GAME_DEATHS], gStdFont, 255, 127, 0, 1);
1323 _y := _y+ch+8;
1324 for aa := 0 to High(stat) do
1325 with stat[aa] do
1326 begin
1327 if Spectator then
1328 begin
1329 r := 127;
1330 g := 64;
1331 end
1332 else
1333 begin
1334 r := 255;
1335 g := 127;
1336 end;
1337 // Öâåò èãðîêà
1338 e_DrawFillQuad(x+16, _y+4, x+32-1, _y+16+4-1, Color.R, Color.G, Color.B, 0);
1339 e_DrawQuad(x+16, _y+4, x+32-1, _y+16+4-1, 192, 192, 192);
1340 // Èìÿ
1341 e_TextureFontPrintEx(x+16+16+8, _y+4, Name, gStdFont, r, g, 0, 1);
1342 // Ïèíã/ïîòåðè
1343 e_TextureFontPrintEx(x+w1+16, _y+4, Format(_lc[I_GAME_PING_MS], [Ping, Loss]), gStdFont, r, g, 0, 1);
1344 // Ôðàãè
1345 e_TextureFontPrintEx(x+w1+w2+16, _y+4, IntToStr(Frags), gStdFont, r, g, 0, 1);
1346 // Ñìåðòè
1347 e_TextureFontPrintEx(x+w1+w2+w3+16, _y+4, IntToStr(Deaths), gStdFont, r, g, 0, 1);
1348 _y := _y+ch+8;
1349 end;
1350 end
1351 end;
1353 procedure g_Game_Init();
1354 var
1355 SR: TSearchRec;
1356 knownFiles: array of AnsiString = nil;
1357 found: Boolean;
1358 wext, s: AnsiString;
1359 f: Integer;
1360 begin
1361 gExit := 0;
1362 gMapToDelete := '';
1363 gTempDelete := False;
1365 sfsGCDisable(); // temporary disable removing of temporary volumes
1367 try
1368 TEXTUREFILTER := GL_LINEAR;
1369 g_Texture_CreateWADEx('MENU_BACKGROUND', GameWAD+':TEXTURES\TITLE');
1370 g_Texture_CreateWADEx('INTER', GameWAD+':TEXTURES\INTER');
1371 g_Texture_CreateWADEx('ENDGAME_EN', GameWAD+':TEXTURES\ENDGAME_EN');
1372 g_Texture_CreateWADEx('ENDGAME_RU', GameWAD+':TEXTURES\ENDGAME_RU');
1373 TEXTUREFILTER := GL_NEAREST;
1375 LoadStdFont('STDTXT', 'STDFONT', gStdFont);
1376 LoadFont('MENUTXT', 'MENUFONT', gMenuFont);
1377 LoadFont('SMALLTXT', 'SMALLFONT', gMenuSmallFont);
1379 g_Game_ClearLoading();
1380 g_Game_SetLoadingText(Format('Doom 2D: Forever %s', [GAME_VERSION]), 0, False);
1381 g_Game_SetLoadingText('', 0, False);
1383 g_Game_SetLoadingText(_lc[I_LOAD_CONSOLE], 0, False);
1384 g_Console_Init();
1386 g_Game_SetLoadingText(_lc[I_LOAD_MODELS], 0, False);
1387 g_PlayerModel_LoadData();
1389 // load models from all possible wad types, in all known directories
1390 // this does a loosy job (linear search, ooph!), but meh
1391 for wext in wadExtensions do
1392 begin
1393 for f := High(ModelDirs) downto Low(ModelDirs) do
1394 begin
1395 if (FindFirst(ModelDirs[f]+DirectorySeparator+'*'+wext, faAnyFile, SR) = 0) then
1396 begin
1397 repeat
1398 found := false;
1399 for s in knownFiles do
1400 begin
1401 if (strEquCI1251(forceFilenameExt(SR.Name, ''), forceFilenameExt(ExtractFileName(s), ''))) then
1402 begin
1403 found := true;
1404 break;
1405 end;
1406 end;
1407 if not found then
1408 begin
1409 SetLength(knownFiles, length(knownFiles)+1);
1410 knownFiles[High(knownFiles)] := ModelDirs[f]+DirectorySeparator+SR.Name;
1411 end;
1412 until (FindNext(SR) <> 0);
1413 end;
1414 FindClose(SR);
1415 end;
1416 end;
1418 if (length(knownFiles) = 0) then raise Exception.Create('no player models found!');
1420 if (length(knownFiles) = 1) then e_LogWriteln('1 player model found.', TMsgType.Notify) else e_LogWritefln('%d player models found.', [Integer(length(knownFiles))], TMsgType.Notify);
1421 for s in knownFiles do
1422 begin
1423 if not g_PlayerModel_Load(s) then e_LogWritefln('Error loading model "%s"', [s], TMsgType.Warning);
1424 end;
1426 gGameOn := false;
1427 gPauseMain := false;
1428 gPauseHolmes := false;
1429 gTime := 0;
1431 {e_MouseInfo.Accel := 1.0;}
1433 g_Game_SetLoadingText(_lc[I_LOAD_GAME_DATA], 0, False);
1434 g_Game_LoadData();
1436 g_Game_SetLoadingText(_lc[I_LOAD_MUSIC], 0, False);
1437 g_Sound_CreateWADEx('MUSIC_INTERMUS', GameWAD+':MUSIC\INTERMUS', True);
1438 g_Sound_CreateWADEx('MUSIC_MENU', GameWAD+':MUSIC\MENU', True);
1439 g_Sound_CreateWADEx('MUSIC_ROUNDMUS', GameWAD+':MUSIC\ROUNDMUS', True, True);
1440 g_Sound_CreateWADEx('MUSIC_STDENDMUS', GameWAD+':MUSIC\ENDMUS', True);
1442 {$IFNDEF HEADLESS}
1443 g_Game_SetLoadingText(_lc[I_LOAD_MENUS], 0, False);
1444 g_Menu_Init();
1445 {$ENDIF}
1447 gMusic := TMusic.Create();
1448 gMusic.SetByName('MUSIC_MENU');
1449 gMusic.Play();
1451 gGameSettings.WarmupTime := 30;
1453 gState := STATE_MENU;
1455 SetLength(gEvents, 6);
1456 gEvents[0].Name := 'ongamestart';
1457 gEvents[1].Name := 'ongameend';
1458 gEvents[2].Name := 'onmapstart';
1459 gEvents[3].Name := 'onmapend';
1460 gEvents[4].Name := 'oninter';
1461 gEvents[5].Name := 'onwadend';
1462 finally
1463 sfsGCEnable(); // enable releasing unused volumes
1464 end;
1465 end;
1467 procedure g_Game_Free(freeTextures: Boolean=true);
1468 begin
1469 if NetMode = NET_CLIENT then g_Net_Disconnect();
1470 if NetMode = NET_SERVER then g_Net_Host_Die();
1472 g_Map_Free(freeTextures);
1473 g_Player_Free();
1474 g_Player_RemoveAllCorpses();
1476 gGameSettings.GameType := GT_NONE;
1477 if gGameSettings.GameMode = GM_SINGLE then
1478 gGameSettings.GameMode := GM_DM;
1479 gSwitchGameMode := gGameSettings.GameMode;
1481 gChatShow := False;
1482 gExitByTrigger := False;
1483 end;
1485 function IsActivePlayer(p: TPlayer): Boolean;
1486 begin
1487 Result := False;
1488 if p = nil then
1489 Exit;
1490 Result := (not p.FDummy) and (not p.FSpectator);
1491 end;
1493 function GetActivePlayer_ByID(ID: Integer): TPlayer;
1494 var
1495 a: Integer;
1496 begin
1497 Result := nil;
1498 if ID < 0 then
1499 Exit;
1500 if gPlayers = nil then
1501 Exit;
1502 for a := Low(gPlayers) to High(gPlayers) do
1503 if IsActivePlayer(gPlayers[a]) then
1504 begin
1505 if gPlayers[a].UID <> ID then
1506 continue;
1507 Result := gPlayers[a];
1508 break;
1509 end;
1510 end;
1512 function GetActivePlayerID_Next(Skip: Integer = -1): Integer;
1513 var
1514 a, idx: Integer;
1515 ids: Array of Word;
1516 begin
1517 Result := -1;
1518 if gPlayers = nil then
1519 Exit;
1520 SetLength(ids, 0);
1521 idx := -1;
1522 for a := Low(gPlayers) to High(gPlayers) do
1523 if IsActivePlayer(gPlayers[a]) then
1524 begin
1525 SetLength(ids, Length(ids) + 1);
1526 ids[High(ids)] := gPlayers[a].UID;
1527 if gPlayers[a].UID = Skip then
1528 idx := High(ids);
1529 end;
1530 if Length(ids) = 0 then
1531 Exit;
1532 if idx = -1 then
1533 Result := ids[0]
1534 else
1535 Result := ids[(idx + 1) mod Length(ids)];
1536 end;
1538 function GetActivePlayerID_Prev(Skip: Integer = -1): Integer;
1539 var
1540 a, idx: Integer;
1541 ids: Array of Word;
1542 begin
1543 Result := -1;
1544 if gPlayers = nil then
1545 Exit;
1546 SetLength(ids, 0);
1547 idx := -1;
1548 for a := Low(gPlayers) to High(gPlayers) do
1549 if IsActivePlayer(gPlayers[a]) then
1550 begin
1551 SetLength(ids, Length(ids) + 1);
1552 ids[High(ids)] := gPlayers[a].UID;
1553 if gPlayers[a].UID = Skip then
1554 idx := High(ids);
1555 end;
1556 if Length(ids) = 0 then
1557 Exit;
1558 if idx = -1 then
1559 Result := ids[Length(ids) - 1]
1560 else
1561 Result := ids[(Length(ids) - 1 + idx) mod Length(ids)];
1562 end;
1564 function GetActivePlayerID_Random(Skip: Integer = -1): Integer;
1565 var
1566 a, idx: Integer;
1567 ids: Array of Word;
1568 begin
1569 Result := -1;
1570 if gPlayers = nil then
1571 Exit;
1572 SetLength(ids, 0);
1573 idx := -1;
1574 for a := Low(gPlayers) to High(gPlayers) do
1575 if IsActivePlayer(gPlayers[a]) then
1576 begin
1577 SetLength(ids, Length(ids) + 1);
1578 ids[High(ids)] := gPlayers[a].UID;
1579 if gPlayers[a].UID = Skip then
1580 idx := High(ids);
1581 end;
1582 if Length(ids) = 0 then
1583 Exit;
1584 if Length(ids) = 1 then
1585 begin
1586 Result := ids[0];
1587 Exit;
1588 end;
1589 Result := ids[Random(Length(ids))];
1590 a := 10;
1591 while (idx <> -1) and (Result = Skip) and (a > 0) do
1592 begin
1593 Result := ids[Random(Length(ids))];
1594 Dec(a);
1595 end;
1596 end;
1598 function GetRandomSpectMode(Current: Byte): Byte;
1599 label
1600 retry;
1601 begin
1602 Result := Current;
1603 retry:
1604 case Random(7) of
1605 0: Result := SPECT_STATS;
1606 1: Result := SPECT_MAPVIEW;
1607 2: Result := SPECT_MAPVIEW;
1608 3: Result := SPECT_PLAYERS;
1609 4: Result := SPECT_PLAYERS;
1610 5: Result := SPECT_PLAYERS;
1611 6: Result := SPECT_PLAYERS;
1612 end;
1613 if (Current in [SPECT_STATS, SPECT_MAPVIEW]) and (Current = Result) then
1614 goto retry;
1615 end;
1617 procedure ProcessPlayerControls (plr: TPlayer; p: Integer; var MoveButton: Byte);
1618 var
1619 time: Word;
1620 strafeDir: Byte;
1621 i: Integer;
1622 begin
1623 if (plr = nil) then exit;
1624 if (p = 2) then time := 1000 else time := 1;
1625 strafeDir := MoveButton shr 4;
1626 MoveButton := MoveButton and $0F;
1628 if gPlayerAction[p, ACTION_MOVELEFT] and (not gPlayerAction[p, ACTION_MOVERIGHT]) then
1629 MoveButton := 1 // Íàæàòà òîëüêî "Âëåâî"
1630 else if (not gPlayerAction[p, ACTION_MOVELEFT]) and gPlayerAction[p, ACTION_MOVERIGHT] then
1631 MoveButton := 2 // Íàæàòà òîëüêî "Âïðàâî"
1632 else if (not gPlayerAction[p, ACTION_MOVELEFT]) and (not gPlayerAction[p, ACTION_MOVERIGHT]) then
1633 MoveButton := 0; // Íå íàæàòû íè "Âëåâî", íè "Âïðàâî"
1635 // Ñåé÷àñ èëè ðàíüøå áûëè íàæàòû "Âëåâî"/"Âïðàâî" => ïåðåäàåì èãðîêó:
1636 if MoveButton = 1 then
1637 plr.PressKey(KEY_LEFT, time)
1638 else if MoveButton = 2 then
1639 plr.PressKey(KEY_RIGHT, time);
1641 // if we have "strafe" key, turn off old strafe mechanics
1642 if gPlayerAction[p, ACTION_STRAFE] then
1643 begin
1644 // new strafe mechanics
1645 if (strafeDir = 0) then
1646 strafeDir := MoveButton; // start strafing
1647 // now set direction according to strafe (reversed)
1648 if (strafeDir = 2) then
1649 plr.SetDirection(TDirection.D_LEFT)
1650 else if (strafeDir = 1) then
1651 plr.SetDirection(TDirection.D_RIGHT)
1652 end
1653 else
1654 begin
1655 strafeDir := 0; // not strafing anymore
1656 // Ðàíüøå áûëà íàæàòà "Âïðàâî", à ñåé÷àñ "Âëåâî" => áåæèì âïðàâî, ñìîòðèì âëåâî:
1657 if (MoveButton = 2) and gPlayerAction[p, ACTION_MOVELEFT] then
1658 plr.SetDirection(TDirection.D_LEFT)
1659 // Ðàíüøå áûëà íàæàòà "Âëåâî", à ñåé÷àñ "Âïðàâî" => áåæèì âëåâî, ñìîòðèì âïðàâî:
1660 else if (MoveButton = 1) and gPlayerAction[p, ACTION_MOVERIGHT] then
1661 plr.SetDirection(TDirection.D_RIGHT)
1662 // ×òî-òî áûëî íàæàòî è íå èçìåíèëîñü => êóäà áåæèì, òóäà è ñìîòðèì:
1663 else if MoveButton <> 0 then
1664 plr.SetDirection(TDirection(MoveButton-1))
1665 end;
1667 // fix movebutton state
1668 MoveButton := MoveButton or (strafeDir shl 4);
1670 // Îñòàëüíûå êëàâèøè:
1671 if gPlayerAction[p, ACTION_JUMP] then plr.PressKey(KEY_JUMP, time);
1672 if gPlayerAction[p, ACTION_LOOKUP] then plr.PressKey(KEY_UP, time);
1673 if gPlayerAction[p, ACTION_LOOKDOWN] then plr.PressKey(KEY_DOWN, time);
1674 if gPlayerAction[p, ACTION_ATTACK] then plr.PressKey(KEY_FIRE);
1675 if gPlayerAction[p, ACTION_WEAPNEXT] then plr.PressKey(KEY_NEXTWEAPON);
1676 if gPlayerAction[p, ACTION_WEAPPREV] then plr.PressKey(KEY_PREVWEAPON);
1677 if gPlayerAction[p, ACTION_ACTIVATE] then plr.PressKey(KEY_OPEN);
1679 gPlayerAction[p, ACTION_WEAPNEXT] := False; // HACK, remove after readyweaon&pendinweapon implementation
1680 gPlayerAction[p, ACTION_WEAPPREV] := False; // HACK, remove after readyweaon&pendinweapon implementation
1682 for i := WP_FIRST to WP_LAST do
1683 begin
1684 if gSelectWeapon[p, i] then
1685 begin
1686 plr.QueueWeaponSwitch(i); // all choices are passed there, and god will take the best
1687 gSelectWeapon[p, i] := False
1688 end
1689 end;
1691 // HACK: add dynlight here
1692 if gwin_k8_enable_light_experiments then
1693 begin
1694 if e_KeyPressed(IK_F8) and gGameOn and (not gConsoleShow) and (g_ActiveWindow = nil) then
1695 begin
1696 g_playerLight := true;
1697 end;
1698 if e_KeyPressed(IK_F9) and gGameOn and (not gConsoleShow) and (g_ActiveWindow = nil) then
1699 begin
1700 g_playerLight := false;
1701 end;
1702 end;
1704 if gwin_has_stencil and g_playerLight then g_AddDynLight(plr.GameX+32, plr.GameY+40, 128, 1, 1, 0, 0.6);
1705 end;
1707 // HACK: don't have a "key was pressed" function
1708 procedure InterReady();
1709 begin
1710 if InterReadyTime > gTime then Exit;
1711 InterReadyTime := gTime + 3000;
1712 MC_SEND_CheatRequest(NET_CHEAT_READY);
1713 end;
1715 procedure g_Game_Update();
1716 var
1717 Msg: g_gui.TMessage;
1718 Time: Int64;
1719 a: Byte;
1720 w: Word;
1721 i, b: Integer;
1723 function sendMonsPos (mon: TMonster): Boolean;
1724 begin
1725 result := false; // don't stop
1726 // this will also reset "need-send" flag
1727 if mon.gncNeedSend then
1728 begin
1729 MH_SEND_MonsterPos(mon.UID);
1730 end
1731 else if (mon.MonsterType = MONSTER_BARREL) then
1732 begin
1733 if (mon.GameVelX <> 0) or (mon.GameVelY <> 0) then MH_SEND_MonsterPos(mon.UID);
1734 end
1735 else if (mon.MonsterState <> MONSTATE_SLEEP) then
1736 begin
1737 if (mon.MonsterState <> MONSTATE_DEAD) or (mon.GameVelX <> 0) or (mon.GameVelY <> 0) then MH_SEND_MonsterPos(mon.UID);
1738 end;
1739 end;
1741 function sendMonsPosUnexpected (mon: TMonster): Boolean;
1742 begin
1743 result := false; // don't stop
1744 // this will also reset "need-send" flag
1745 if mon.gncNeedSend then MH_SEND_MonsterPos(mon.UID);
1746 end;
1748 var
1749 reliableUpdate: Boolean;
1750 begin
1751 g_ResetDynlights();
1752 framePool.reset();
1754 // Ïîðà âûêëþ÷àòü èãðó:
1755 if gExit = EXIT_QUIT then
1756 Exit;
1757 // Èãðà çàêîí÷èëàñü - îáðàáàòûâàåì:
1758 if gExit <> 0 then
1759 begin
1760 EndGame();
1761 if gExit = EXIT_QUIT then
1762 Exit;
1763 end;
1765 // ×èòàåì êëàâèàòóðó è äæîéñòèê, åñëè îêíî àêòèâíî
1766 // no need to, as we'll do it in event handler
1768 // Îáíîâëÿåì êîíñîëü (äâèæåíèå è ñîîáùåíèÿ):
1769 g_Console_Update();
1771 if (NetMode = NET_NONE) and (g_Game_IsNet) and (gGameOn or (gState in [STATE_FOLD, STATE_INTERCUSTOM])) then
1772 begin
1773 gExit := EXIT_SIMPLE;
1774 EndGame();
1775 Exit;
1776 end;
1778 // process master server communications
1779 g_Net_Slist_Pulse();
1781 case gState of
1782 STATE_INTERSINGLE, // Ñòàòèñòêà ïîñëå ïðîõîæäåíèÿ óðîâíÿ â Îäèíî÷íîé èãðå
1783 STATE_INTERCUSTOM, // Ñòàòèñòêà ïîñëå ïðîõîæäåíèÿ óðîâíÿ â Ñâîåé èãðå
1784 STATE_INTERTEXT, // Òåêñò ìåæäó óðîâíÿìè
1785 STATE_INTERPIC: // Êàðòèíêà ìåæäó óðîâíÿìè
1786 begin
1787 if g_Game_IsNet and g_Game_IsServer then
1788 begin
1789 gInterTime := gInterTime + GAME_TICK;
1790 a := Min((gInterEndTime - gInterTime) div 1000 + 1, 255);
1791 if a <> gServInterTime then
1792 begin
1793 gServInterTime := a;
1794 MH_SEND_TimeSync(gServInterTime);
1795 end;
1796 end;
1798 if (not g_Game_IsClient) and
1802 e_KeyPressed(IK_RETURN) or e_KeyPressed(IK_KPRETURN) or e_KeyPressed(IK_SPACE) or
1803 e_KeyPressed(VK_FIRE) or e_KeyPressed(VK_OPEN) or
1804 e_KeyPressed(JOY0_ATTACK) or e_KeyPressed(JOY1_ATTACK) or
1805 e_KeyPressed(JOY2_ATTACK) or e_KeyPressed(JOY3_ATTACK)
1807 and (not gJustChatted) and (not gConsoleShow) and (not gChatShow)
1808 and (g_ActiveWindow = nil)
1810 or (g_Game_IsNet and ((gInterTime > gInterEndTime) or ((gInterReadyCount >= NetClientCount) and (NetClientCount > 0))))
1812 then
1813 begin // Íàæàëè <Enter>/<Ïðîáåë> èëè ïðîøëî äîñòàòî÷íî âðåìåíè:
1814 g_Game_StopAllSounds(True);
1816 if gMapOnce then // Ýòî áûë òåñò
1817 gExit := EXIT_SIMPLE
1818 else
1819 if gNextMap <> '' then // Ïåðåõîäèì íà ñëåäóþùóþ êàðòó
1820 g_Game_ChangeMap(gNextMap)
1821 else // Ñëåäóþùåé êàðòû íåò
1822 begin
1823 if gGameSettings.GameType in [GT_CUSTOM, GT_SERVER] then
1824 begin
1825 // Âûõîä â ãëàâíîå ìåíþ:
1826 g_Game_Free;
1827 g_GUI_ShowWindow('MainMenu');
1828 gMusic.SetByName('MUSIC_MENU');
1829 gMusic.Play();
1830 gState := STATE_MENU;
1831 end else
1832 begin
1833 // Ôèíàëüíàÿ êàðòèíêà:
1834 g_Game_ExecuteEvent('onwadend');
1835 g_Game_Free();
1836 if not gMusic.SetByName('MUSIC_endmus') then
1837 gMusic.SetByName('MUSIC_STDENDMUS');
1838 gMusic.Play();
1839 gState := STATE_ENDPIC;
1840 end;
1841 g_Game_ExecuteEvent('ongameend');
1842 end;
1844 Exit;
1845 end
1846 else if g_Game_IsClient and
1849 e_KeyPressed(IK_RETURN) or e_KeyPressed(IK_KPRETURN) or e_KeyPressed(IK_SPACE) or
1850 e_KeyPressed(VK_FIRE) or e_KeyPressed(VK_OPEN) or
1851 e_KeyPressed(JOY0_ATTACK) or e_KeyPressed(JOY1_ATTACK) or
1852 e_KeyPressed(JOY2_ATTACK) or e_KeyPressed(JOY3_ATTACK)
1854 and (not gJustChatted) and (not gConsoleShow) and (not gChatShow)
1855 and (g_ActiveWindow = nil)
1857 then
1858 begin
1859 // ready / unready
1860 InterReady();
1861 end;
1863 if gState = STATE_INTERTEXT then
1864 if InterText.counter > 0 then
1865 InterText.counter := InterText.counter - 1;
1866 end;
1868 STATE_FOLD: // Çàòóõàíèå ýêðàíà
1869 begin
1870 if EndingGameCounter = 0 then
1871 begin
1872 // Çàêîí÷èëñÿ óðîâåíü â Ñâîåé èãðå:
1873 if gGameSettings.GameType in [GT_CUSTOM, GT_SERVER, GT_CLIENT] then
1874 begin
1875 InterReadyTime := -1;
1876 if gLastMap and (gGameSettings.GameMode = GM_COOP) then
1877 begin
1878 g_Game_ExecuteEvent('onwadend');
1879 if not gMusic.SetByName('MUSIC_endmus') then
1880 gMusic.SetByName('MUSIC_STDENDMUS');
1881 end
1882 else
1883 gMusic.SetByName('MUSIC_ROUNDMUS');
1885 gMusic.Play();
1886 gState := STATE_INTERCUSTOM;
1887 e_UnpressAllKeys();
1888 end
1889 else // Çàêîí÷èëàñü ïîñëåäíÿÿ êàðòà â Îäèíî÷íîé èãðå
1890 begin
1891 gMusic.SetByName('MUSIC_INTERMUS');
1892 gMusic.Play();
1893 gState := STATE_INTERSINGLE;
1894 e_UnpressAllKeys();
1895 end;
1896 g_Game_ExecuteEvent('oninter');
1897 end
1898 else
1899 DecMin(EndingGameCounter, 6, 0);
1900 end;
1902 STATE_ENDPIC: // Êàðòèíêà îêîí÷àíèÿ ìåãàÂàäà
1903 begin
1904 if gMapOnce then // Ýòî áûë òåñò
1905 begin
1906 gExit := EXIT_SIMPLE;
1907 Exit;
1908 end;
1909 end;
1911 STATE_SLIST:
1912 g_Serverlist_Control(slCurrent, slTable);
1913 end;
1915 // Ñòàòèñòèêà ïî Tab:
1916 if gGameOn then
1917 IsDrawStat := (not gConsoleShow) and (not gChatShow) and (gGameSettings.GameType <> GT_SINGLE) and g_Console_Action(ACTION_SCORES);
1919 // Èãðà èäåò:
1920 if gGameOn and not gPause and (gState <> STATE_FOLD) then
1921 begin
1922 // Âðåìÿ += 28 ìèëëèñåêóíä:
1923 gTime := gTime + GAME_TICK;
1925 // Ñîîáùåíèå ïîñåðåäèíå ýêðàíà:
1926 if MessageTime = 0 then
1927 MessageText := '';
1928 if MessageTime > 0 then
1929 MessageTime := MessageTime - 1;
1931 if (g_Game_IsServer) then
1932 begin
1933 // Áûë çàäàí ëèìèò âðåìåíè:
1934 if (gGameSettings.TimeLimit > 0) then
1935 if (gTime - gGameStartTime) div 1000 >= gGameSettings.TimeLimit then
1936 begin // Îí ïðîøåë => êîíåö óðîâíÿ
1937 g_Game_NextLevel();
1938 Exit;
1939 end;
1941 // Íàäî ðåñïàâíèòü èãðîêîâ â LMS:
1942 if (gLMSRespawn > LMS_RESPAWN_NONE) and (gLMSRespawnTime < gTime) then
1943 g_Game_RestartRound(gLMSSoftSpawn);
1945 // Ïðîâåðèì ðåçóëüòàò ãîëîñîâàíèÿ, åñëè âðåìÿ ïðîøëî
1946 if gVoteInProgress and (gVoteTimer < gTime) then
1947 g_Game_CheckVote
1948 else if gVotePassed and (gVoteCmdTimer < gTime) then
1949 begin
1950 g_Console_Process(gVoteCommand);
1951 gVoteCommand := '';
1952 gVotePassed := False;
1953 end;
1955 // Çàìåðÿåì âðåìÿ çàõâàòà ôëàãîâ
1956 if gFlags[FLAG_RED].State = FLAG_STATE_CAPTURED then
1957 gFlags[FLAG_RED].CaptureTime := gFlags[FLAG_RED].CaptureTime + GAME_TICK;
1958 if gFlags[FLAG_BLUE].State = FLAG_STATE_CAPTURED then
1959 gFlags[FLAG_BLUE].CaptureTime := gFlags[FLAG_BLUE].CaptureTime + GAME_TICK;
1961 // Áûë çàäàí ëèìèò ïîáåä:
1962 if (gGameSettings.GoalLimit > 0) then
1963 begin
1964 b := 0;
1966 if gGameSettings.GameMode = GM_DM then
1967 begin // Â DM èùåì èãðîêà ñ max ôðàãàìè
1968 for i := 0 to High(gPlayers) do
1969 if gPlayers[i] <> nil then
1970 if gPlayers[i].Frags > b then
1971 b := gPlayers[i].Frags;
1972 end
1973 else
1974 if gGameSettings.GameMode in [GM_TDM, GM_CTF] then
1975 begin //  CTF/TDM âûáèðàåì êîìàíäó ñ íàèáîëüøèì ñ÷åòîì
1976 b := Max(gTeamStat[TEAM_RED].Goals, gTeamStat[TEAM_BLUE].Goals);
1977 end;
1979 // Ëèìèò ïîáåä íàáðàí => êîíåö óðîâíÿ:
1980 if b >= gGameSettings.GoalLimit then
1981 begin
1982 g_Game_NextLevel();
1983 Exit;
1984 end;
1985 end;
1987 // Îáðàáàòûâàåì êëàâèøè èãðîêîâ:
1988 if gPlayer1 <> nil then gPlayer1.ReleaseKeys();
1989 if gPlayer2 <> nil then gPlayer2.ReleaseKeys();
1990 if (not gConsoleShow) and (not gChatShow) and (g_ActiveWindow = nil) then
1991 begin
1992 ProcessPlayerControls(gPlayer1, 0, P1MoveButton);
1993 ProcessPlayerControls(gPlayer2, 1, P2MoveButton);
1994 end // if not console
1995 else
1996 begin
1997 if g_Game_IsNet and (gPlayer1 <> nil) then gPlayer1.PressKey(KEY_CHAT, 10000);
1998 end;
1999 // process weapon switch queue
2000 end; // if server
2002 // Íàáëþäàòåëü
2003 if (gPlayer1 = nil) and (gPlayer2 = nil) and
2004 (not gConsoleShow) and (not gChatShow) and (g_ActiveWindow = nil) then
2005 begin
2006 if not gSpectKeyPress then
2007 begin
2008 if gPlayerAction[0, ACTION_JUMP] and (not gSpectAuto) then
2009 begin
2010 // switch spect mode
2011 case gSpectMode of
2012 SPECT_NONE: ; // not spectator
2013 SPECT_STATS,
2014 SPECT_MAPVIEW: Inc(gSpectMode);
2015 SPECT_PLAYERS: gSpectMode := SPECT_STATS; // reset to 1
2016 end;
2017 gSpectKeyPress := True;
2018 end;
2019 if (gSpectMode = SPECT_MAPVIEW)
2020 and (not gSpectAuto) then
2021 begin
2022 if gPlayerAction[0, ACTION_MOVELEFT] then
2023 gSpectX := Max(gSpectX - gSpectStep, 0);
2024 if gPlayerAction[0, ACTION_MOVERIGHT] then
2025 gSpectX := Min(gSpectX + gSpectStep, gMapInfo.Width - gScreenWidth);
2026 if gPlayerAction[0, ACTION_LOOKUP] then
2027 gSpectY := Max(gSpectY - gSpectStep, 0);
2028 if gPlayerAction[0, ACTION_LOOKDOWN] then
2029 gSpectY := Min(gSpectY + gSpectStep, gMapInfo.Height - gScreenHeight);
2030 if gPlayerAction[0, ACTION_WEAPPREV] then
2031 begin
2032 // decrease step
2033 if gSpectStep > 4 then gSpectStep := gSpectStep shr 1;
2034 gSpectKeyPress := True;
2035 end;
2036 if gPlayerAction[0, ACTION_WEAPNEXT] then
2037 begin
2038 // increase step
2039 if gSpectStep < 64 then gSpectStep := gSpectStep shl 1;
2040 gSpectKeyPress := True;
2041 end;
2042 end;
2043 if (gSpectMode = SPECT_PLAYERS)
2044 and (not gSpectAuto) then
2045 begin
2046 if gPlayerAction[0, ACTION_LOOKUP] then
2047 begin
2048 // add second view
2049 gSpectViewTwo := True;
2050 gSpectKeyPress := True;
2051 end;
2052 if gPlayerAction[0, ACTION_LOOKDOWN] then
2053 begin
2054 // remove second view
2055 gSpectViewTwo := False;
2056 gSpectKeyPress := True;
2057 end;
2058 if gPlayerAction[0, ACTION_MOVELEFT] then
2059 begin
2060 // prev player (view 1)
2061 gSpectPID1 := GetActivePlayerID_Prev(gSpectPID1);
2062 gSpectKeyPress := True;
2063 end;
2064 if gPlayerAction[0, ACTION_MOVERIGHT] then
2065 begin
2066 // next player (view 1)
2067 gSpectPID1 := GetActivePlayerID_Next(gSpectPID1);
2068 gSpectKeyPress := True;
2069 end;
2070 if gPlayerAction[0, ACTION_WEAPPREV] then
2071 begin
2072 // prev player (view 2)
2073 gSpectPID2 := GetActivePlayerID_Prev(gSpectPID2);
2074 gSpectKeyPress := True;
2075 end;
2076 if gPlayerAction[0, ACTION_WEAPNEXT] then
2077 begin
2078 // next player (view 2)
2079 gSpectPID2 := GetActivePlayerID_Next(gSpectPID2);
2080 gSpectKeyPress := True;
2081 end;
2082 end;
2083 if gPlayerAction[0, ACTION_ATTACK] then
2084 begin
2085 if (gSpectMode = SPECT_STATS) and (not gSpectAuto) then
2086 begin
2087 gSpectAuto := True;
2088 gSpectAutoNext := 0;
2089 gSpectViewTwo := False;
2090 gSpectKeyPress := True;
2091 end
2092 else
2093 if gSpectAuto then
2094 begin
2095 gSpectMode := SPECT_STATS;
2096 gSpectAuto := False;
2097 gSpectKeyPress := True;
2098 end;
2099 end;
2100 end
2101 else
2102 if (not gPlayerAction[0, ACTION_JUMP]) and
2103 (not gPlayerAction[0, ACTION_ATTACK]) and
2104 (not gPlayerAction[0, ACTION_MOVELEFT]) and
2105 (not gPlayerAction[0, ACTION_MOVERIGHT]) and
2106 (not gPlayerAction[0, ACTION_LOOKUP]) and
2107 (not gPlayerAction[0, ACTION_LOOKDOWN]) and
2108 (not gPlayerAction[0, ACTION_WEAPPREV]) and
2109 (not gPlayerAction[0, ACTION_WEAPNEXT]) then
2110 gSpectKeyPress := False;
2112 if gSpectAuto then
2113 begin
2114 if gSpectMode = SPECT_MAPVIEW then
2115 begin
2116 i := Min(Max(gSpectX + gSpectAutoStepX, 0), gMapInfo.Width - gScreenWidth);
2117 if i = gSpectX then
2118 gSpectAutoNext := gTime
2119 else
2120 gSpectX := i;
2121 i := Min(Max(gSpectY + gSpectAutoStepY, 0), gMapInfo.Height - gScreenHeight);
2122 if i = gSpectY then
2123 gSpectAutoNext := gTime
2124 else
2125 gSpectY := i;
2126 end;
2127 if gSpectAutoNext <= gTime then
2128 begin
2129 if gSpectAutoNext > 0 then
2130 begin
2131 gSpectMode := GetRandomSpectMode(gSpectMode);
2132 case gSpectMode of
2133 SPECT_MAPVIEW:
2134 begin
2135 gSpectX := Random(gMapInfo.Width - gScreenWidth);
2136 gSpectY := Random(gMapInfo.Height - gScreenHeight);
2137 gSpectAutoStepX := Random(9) - 4;
2138 gSpectAutoStepY := Random(9) - 4;
2139 if ((gSpectX < 800) and (gSpectAutoStepX < 0)) or
2140 ((gSpectX > gMapInfo.Width - gScreenWidth - 800) and (gSpectAutoStepX > 0)) then
2141 gSpectAutoStepX := gSpectAutoStepX * -1;
2142 if ((gSpectY < 800) and (gSpectAutoStepY < 0)) or
2143 ((gSpectY > gMapInfo.Height - gScreenHeight - 800) and (gSpectAutoStepY > 0)) then
2144 gSpectAutoStepY := gSpectAutoStepY * -1;
2145 end;
2146 SPECT_PLAYERS:
2147 begin
2148 gSpectPID1 := GetActivePlayerID_Random(gSpectPID1);
2149 end;
2150 end;
2151 end;
2152 case gSpectMode of
2153 SPECT_STATS: gSpectAutoNext := gTime + (Random(3) + 5) * 1000;
2154 SPECT_MAPVIEW: gSpectAutoNext := gTime + (Random(4) + 7) * 1000;
2155 SPECT_PLAYERS: gSpectAutoNext := gTime + (Random(7) + 8) * 1000;
2156 end;
2157 end;
2158 end;
2159 end;
2161 // Îáíîâëÿåì âñå îñòàëüíîå:
2162 g_Map_Update();
2163 g_Items_Update();
2164 g_Triggers_Update();
2165 g_Weapon_Update();
2166 g_Monsters_Update();
2167 g_GFX_Update();
2168 g_Player_UpdateAll();
2169 g_Player_UpdatePhysicalObjects();
2171 // server: send newly spawned monsters unconditionally
2172 if (gGameSettings.GameType = GT_SERVER) then
2173 begin
2174 if (Length(gMonstersSpawned) > 0) then
2175 begin
2176 for I := 0 to High(gMonstersSpawned) do MH_SEND_MonsterSpawn(gMonstersSpawned[I]);
2177 SetLength(gMonstersSpawned, 0);
2178 end;
2179 end;
2181 if (gSoundTriggerTime > 8) then
2182 begin
2183 g_Game_UpdateTriggerSounds();
2184 gSoundTriggerTime := 0;
2185 end
2186 else
2187 begin
2188 Inc(gSoundTriggerTime);
2189 end;
2191 if (NetMode = NET_SERVER) then
2192 begin
2193 Inc(NetTimeToUpdate);
2194 Inc(NetTimeToReliable);
2196 // send monster updates
2197 if (NetTimeToReliable >= NetRelupdRate) or (NetTimeToUpdate >= NetUpdateRate) then
2198 begin
2199 // send all monsters (periodic sync)
2200 reliableUpdate := (NetTimeToReliable >= NetRelupdRate);
2202 for I := 0 to High(gPlayers) do
2203 begin
2204 if (gPlayers[I] <> nil) then MH_SEND_PlayerPos(reliableUpdate, gPlayers[I].UID);
2205 end;
2207 g_Mons_ForEach(sendMonsPos);
2209 if reliableUpdate then
2210 begin
2211 NetTimeToReliable := 0;
2212 NetTimeToUpdate := NetUpdateRate;
2213 end
2214 else
2215 begin
2216 NetTimeToUpdate := 0;
2217 end;
2218 end
2219 else
2220 begin
2221 // send only mosters with some unexpected changes
2222 g_Mons_ForEach(sendMonsPosUnexpected);
2223 end;
2225 // send unexpected platform changes
2226 g_Map_NetSendInterestingPanels();
2228 g_Net_Slist_ServerUpdate();
2230 if NetUseMaster then
2231 begin
2232 if (gTime >= NetTimeToMaster) or g_Net_Slist_IsConnectionInProgress then
2233 begin
2234 if (not g_Net_Slist_IsConnectionActive) then g_Net_Slist_Connect(false); // non-blocking connection to the master
2235 g_Net_Slist_Update;
2236 NetTimeToMaster := gTime + NetMasterRate;
2237 end;
2238 end;
2240 end
2241 else if (NetMode = NET_CLIENT) then
2242 begin
2243 MC_SEND_PlayerPos();
2244 end;
2245 end; // if gameOn ...
2247 // Àêòèâíî îêíî èíòåðôåéñà - ïåðåäàåì êëàâèøè åìó:
2248 if g_ActiveWindow <> nil then
2249 begin
2250 w := e_GetFirstKeyPressed();
2252 if (w <> IK_INVALID) then
2253 begin
2254 Msg.Msg := MESSAGE_DIKEY;
2255 Msg.wParam := w;
2256 g_ActiveWindow.OnMessage(Msg);
2257 end;
2259 // Åñëè îíî îò ýòîãî íå çàêðûëîñü, òî îáíîâëÿåì:
2260 if g_ActiveWindow <> nil then
2261 g_ActiveWindow.Update();
2263 // Íóæíî ñìåíèòü ðàçðåøåíèå:
2264 if gResolutionChange then
2265 begin
2266 e_WriteLog('Changing resolution', TMsgType.Notify);
2267 g_Game_ChangeResolution(gRC_Width, gRC_Height, gRC_FullScreen, gRC_Maximized);
2268 gResolutionChange := False;
2269 g_ActiveWindow := nil;
2270 end;
2272 // Íóæíî ñìåíèòü ÿçûê:
2273 if gLanguageChange then
2274 begin
2275 //e_WriteLog('Read language file', MSG_NOTIFY);
2276 //g_Language_Load(DataDir + gLanguage + '.txt');
2277 g_Language_Set(gLanguage);
2278 {$IFNDEF HEADLESS}
2279 g_Menu_Reset();
2280 {$ENDIF}
2281 gLanguageChange := False;
2282 end;
2283 end;
2285 // Ãîðÿ÷àÿ êëàâèøà äëÿ âûçîâà ìåíþ âûõîäà èç èãðû (F10):
2286 if e_KeyPressed(IK_F10) and
2287 gGameOn and
2288 (not gConsoleShow) and
2289 (g_ActiveWindow = nil) then
2290 begin
2291 KeyPress(IK_F10);
2292 end;
2294 Time := sys_GetTicks() {div 1000};
2296 // Îáðàáîòêà îòëîæåííûõ ñîáûòèé:
2297 if gDelayedEvents <> nil then
2298 for a := 0 to High(gDelayedEvents) do
2299 if gDelayedEvents[a].Pending and
2301 ((gDelayedEvents[a].DEType = DE_GLOBEVENT) and (gDelayedEvents[a].Time <= Time)) or
2302 ((gDelayedEvents[a].DEType > DE_GLOBEVENT) and (gDelayedEvents[a].Time <= gTime))
2303 ) then
2304 begin
2305 case gDelayedEvents[a].DEType of
2306 DE_GLOBEVENT:
2307 g_Game_ExecuteEvent(gDelayedEvents[a].DEStr);
2308 DE_BFGHIT:
2309 if gGameOn then
2310 g_Game_Announce_GoodShot(gDelayedEvents[a].DENum);
2311 DE_KILLCOMBO:
2312 if gGameOn then
2313 begin
2314 g_Game_Announce_KillCombo(gDelayedEvents[a].DENum);
2315 if g_Game_IsNet and g_Game_IsServer then
2316 MH_SEND_GameEvent(NET_EV_KILLCOMBO, gDelayedEvents[a].DENum);
2317 end;
2318 DE_BODYKILL:
2319 if gGameOn then
2320 g_Game_Announce_BodyKill(gDelayedEvents[a].DENum);
2321 end;
2322 gDelayedEvents[a].Pending := False;
2323 end;
2325 // Êàæäóþ ñåêóíäó îáíîâëÿåì ñ÷åò÷èê îáíîâëåíèé:
2326 UPSCounter := UPSCounter + 1;
2327 if Time - UPSTime >= 1000 then
2328 begin
2329 UPS := UPSCounter;
2330 UPSCounter := 0;
2331 UPSTime := Time;
2332 end;
2334 if gGameOn then
2335 begin
2336 g_Weapon_AddDynLights();
2337 g_Items_AddDynLights();
2338 end;
2339 end;
2341 procedure g_Game_LoadChatSounds(Resource: string);
2342 var
2343 WAD: TWADFile;
2344 FileName, Snd: string;
2345 p: Pointer;
2346 len, cnt, tags, i, j: Integer;
2347 cfg: TConfig;
2348 begin
2349 FileName := g_ExtractWadName(Resource);
2351 WAD := TWADFile.Create();
2352 WAD.ReadFile(FileName);
2354 if not WAD.GetResource(g_ExtractFilePathName(Resource), p, len) then
2355 begin
2356 gChatSounds := nil;
2357 WAD.Free();
2358 Exit;
2359 end;
2361 cfg := TConfig.CreateMem(p, len);
2362 cnt := cfg.ReadInt('ChatSounds', 'Count', 0);
2364 SetLength(gChatSounds, cnt);
2365 for i := 0 to Length(gChatSounds) - 1 do
2366 begin
2367 gChatSounds[i].Sound := nil;
2368 Snd := Trim(cfg.ReadStr(IntToStr(i), 'Sound', ''));
2369 tags := cfg.ReadInt(IntToStr(i), 'Tags', 0);
2370 if (Snd = '') or (Tags <= 0) then
2371 continue;
2372 g_Sound_CreateWADEx('SOUND_CHAT_MACRO' + IntToStr(i), GameWAD+':'+Snd);
2373 gChatSounds[i].Sound := TPlayableSound.Create();
2374 gChatSounds[i].Sound.SetByName('SOUND_CHAT_MACRO' + IntToStr(i));
2375 SetLength(gChatSounds[i].Tags, tags);
2376 for j := 0 to tags - 1 do
2377 gChatSounds[i].Tags[j] := toLowerCase1251(cfg.ReadStr(IntToStr(i), 'Tag' + IntToStr(j), ''));
2378 gChatSounds[i].FullWord := cfg.ReadBool(IntToStr(i), 'FullWord', False);
2379 end;
2381 cfg.Free();
2382 WAD.Free();
2383 end;
2385 procedure g_Game_FreeChatSounds();
2386 var
2387 i: Integer;
2388 begin
2389 for i := 0 to Length(gChatSounds) - 1 do
2390 begin
2391 gChatSounds[i].Sound.Free();
2392 g_Sound_Delete('SOUND_CHAT_MACRO' + IntToStr(i));
2393 end;
2394 SetLength(gChatSounds, 0);
2395 gChatSounds := nil;
2396 end;
2398 procedure g_Game_LoadData();
2399 var
2400 wl, hl: Integer;
2401 wr, hr: Integer;
2402 wb, hb: Integer;
2403 wm, hm: Integer;
2404 begin
2405 if DataLoaded then Exit;
2407 e_WriteLog('Loading game data...', TMsgType.Notify);
2409 g_Texture_CreateWADEx('NOTEXTURE', GameWAD+':TEXTURES\NOTEXTURE');
2410 g_Texture_CreateWADEx('TEXTURE_PLAYER_HUD', GameWAD+':TEXTURES\HUD');
2411 g_Texture_CreateWADEx('TEXTURE_PLAYER_HUDAIR', GameWAD+':TEXTURES\AIRBAR');
2412 g_Texture_CreateWADEx('TEXTURE_PLAYER_HUDJET', GameWAD+':TEXTURES\JETBAR');
2413 g_Texture_CreateWADEx('TEXTURE_PLAYER_HUDBG', GameWAD+':TEXTURES\HUDBG');
2414 g_Texture_CreateWADEx('TEXTURE_PLAYER_ARMORHUD', GameWAD+':TEXTURES\ARMORHUD');
2415 g_Texture_CreateWADEx('TEXTURE_PLAYER_REDFLAG', GameWAD+':TEXTURES\FLAGHUD_R_BASE');
2416 g_Texture_CreateWADEx('TEXTURE_PLAYER_REDFLAG_S', GameWAD+':TEXTURES\FLAGHUD_R_STOLEN');
2417 g_Texture_CreateWADEx('TEXTURE_PLAYER_REDFLAG_D', GameWAD+':TEXTURES\FLAGHUD_R_DROP');
2418 g_Texture_CreateWADEx('TEXTURE_PLAYER_BLUEFLAG', GameWAD+':TEXTURES\FLAGHUD_B_BASE');
2419 g_Texture_CreateWADEx('TEXTURE_PLAYER_BLUEFLAG_S', GameWAD+':TEXTURES\FLAGHUD_B_STOLEN');
2420 g_Texture_CreateWADEx('TEXTURE_PLAYER_BLUEFLAG_D', GameWAD+':TEXTURES\FLAGHUD_B_DROP');
2421 g_Texture_CreateWADEx('TEXTURE_PLAYER_TALKBUBBLE', GameWAD+':TEXTURES\TALKBUBBLE');
2422 g_Texture_CreateWADEx('TEXTURE_PLAYER_INVULPENTA', GameWAD+':TEXTURES\PENTA');
2423 g_Texture_CreateWADEx('TEXTURE_PLAYER_INDICATOR', GameWAD+':TEXTURES\PLRIND');
2425 hasPBarGfx := true;
2426 if not g_Texture_CreateWADEx('UI_GFX_PBAR_LEFT', GameWAD+':TEXTURES\LLEFT') then hasPBarGfx := false;
2427 if not g_Texture_CreateWADEx('UI_GFX_PBAR_MARKER', GameWAD+':TEXTURES\LMARKER') then hasPBarGfx := false;
2428 if not g_Texture_CreateWADEx('UI_GFX_PBAR_MIDDLE', GameWAD+':TEXTURES\LMIDDLE') then hasPBarGfx := false;
2429 if not g_Texture_CreateWADEx('UI_GFX_PBAR_RIGHT', GameWAD+':TEXTURES\LRIGHT') then hasPBarGfx := false;
2431 if hasPBarGfx then
2432 begin
2433 g_Texture_GetSize('UI_GFX_PBAR_LEFT', wl, hl);
2434 g_Texture_GetSize('UI_GFX_PBAR_RIGHT', wr, hr);
2435 g_Texture_GetSize('UI_GFX_PBAR_MIDDLE', wb, hb);
2436 g_Texture_GetSize('UI_GFX_PBAR_MARKER', wm, hm);
2437 if (wl > 0) and (hl > 0) and (wr > 0) and (hr = hl) and (wb > 0) and (hb = hl) and (wm > 0) and (hm > 0) and (hm <= hl) then
2438 begin
2439 // yay!
2440 end
2441 else
2442 begin
2443 hasPBarGfx := false;
2444 end;
2445 end;
2447 g_Frames_CreateWAD(nil, 'FRAMES_TELEPORT', GameWAD+':TEXTURES\TELEPORT', 64, 64, 10, False);
2448 g_Frames_CreateWAD(nil, 'FRAMES_PUNCH', GameWAD+':WEAPONS\PUNCH', 64, 64, 4, False);
2449 g_Frames_CreateWAD(nil, 'FRAMES_PUNCH_UP', GameWAD+':WEAPONS\PUNCH_UP', 64, 64, 4, False);
2450 g_Frames_CreateWAD(nil, 'FRAMES_PUNCH_DN', GameWAD+':WEAPONS\PUNCH_DN', 64, 64, 4, False);
2451 g_Frames_CreateWAD(nil, 'FRAMES_PUNCH_BERSERK', GameWAD+':WEAPONS\PUNCHB', 64, 64, 4, False);
2452 g_Frames_CreateWAD(nil, 'FRAMES_PUNCH_BERSERK_UP', GameWAD+':WEAPONS\PUNCHB_UP', 64, 64, 4, False);
2453 g_Frames_CreateWAD(nil, 'FRAMES_PUNCH_BERSERK_DN', GameWAD+':WEAPONS\PUNCHB_DN', 64, 64, 4, False);
2454 g_Sound_CreateWADEx('SOUND_GAME_TELEPORT', GameWAD+':SOUNDS\TELEPORT');
2455 g_Sound_CreateWADEx('SOUND_GAME_NOTELEPORT', GameWAD+':SOUNDS\NOTELEPORT');
2456 g_Sound_CreateWADEx('SOUND_GAME_SECRET', GameWAD+':SOUNDS\SECRET');
2457 g_Sound_CreateWADEx('SOUND_GAME_DOOROPEN', GameWAD+':SOUNDS\DOOROPEN');
2458 g_Sound_CreateWADEx('SOUND_GAME_DOORCLOSE', GameWAD+':SOUNDS\DOORCLOSE');
2459 g_Sound_CreateWADEx('SOUND_GAME_BULK1', GameWAD+':SOUNDS\BULK1');
2460 g_Sound_CreateWADEx('SOUND_GAME_BULK2', GameWAD+':SOUNDS\BULK2');
2461 g_Sound_CreateWADEx('SOUND_GAME_BUBBLE1', GameWAD+':SOUNDS\BUBBLE1');
2462 g_Sound_CreateWADEx('SOUND_GAME_BUBBLE2', GameWAD+':SOUNDS\BUBBLE2');
2463 g_Sound_CreateWADEx('SOUND_GAME_BURNING', GameWAD+':SOUNDS\BURNING');
2464 g_Sound_CreateWADEx('SOUND_GAME_SWITCH1', GameWAD+':SOUNDS\SWITCH1');
2465 g_Sound_CreateWADEx('SOUND_GAME_SWITCH0', GameWAD+':SOUNDS\SWITCH0');
2466 g_Sound_CreateWADEx('SOUND_GAME_RADIO', GameWAD+':SOUNDS\RADIO');
2467 g_Sound_CreateWADEx('SOUND_ANNOUNCER_GOOD1', GameWAD+':SOUNDS\GOOD1');
2468 g_Sound_CreateWADEx('SOUND_ANNOUNCER_GOOD2', GameWAD+':SOUNDS\GOOD2');
2469 g_Sound_CreateWADEx('SOUND_ANNOUNCER_GOOD3', GameWAD+':SOUNDS\GOOD3');
2470 g_Sound_CreateWADEx('SOUND_ANNOUNCER_GOOD4', GameWAD+':SOUNDS\GOOD4');
2471 g_Sound_CreateWADEx('SOUND_ANNOUNCER_KILL2X', GameWAD+':SOUNDS\KILL2X');
2472 g_Sound_CreateWADEx('SOUND_ANNOUNCER_KILL3X', GameWAD+':SOUNDS\KILL3X');
2473 g_Sound_CreateWADEx('SOUND_ANNOUNCER_KILL4X', GameWAD+':SOUNDS\KILL4X');
2474 g_Sound_CreateWADEx('SOUND_ANNOUNCER_KILLMX', GameWAD+':SOUNDS\KILLMX');
2475 g_Sound_CreateWADEx('SOUND_ANNOUNCER_MUHAHA1', GameWAD+':SOUNDS\MUHAHA1');
2476 g_Sound_CreateWADEx('SOUND_ANNOUNCER_MUHAHA2', GameWAD+':SOUNDS\MUHAHA2');
2477 g_Sound_CreateWADEx('SOUND_ANNOUNCER_MUHAHA3', GameWAD+':SOUNDS\MUHAHA3');
2478 g_Sound_CreateWADEx('SOUND_CTF_GET1', GameWAD+':SOUNDS\GETFLAG1');
2479 g_Sound_CreateWADEx('SOUND_CTF_GET2', GameWAD+':SOUNDS\GETFLAG2');
2480 g_Sound_CreateWADEx('SOUND_CTF_LOST1', GameWAD+':SOUNDS\LOSTFLG1');
2481 g_Sound_CreateWADEx('SOUND_CTF_LOST2', GameWAD+':SOUNDS\LOSTFLG2');
2482 g_Sound_CreateWADEx('SOUND_CTF_RETURN1', GameWAD+':SOUNDS\RETFLAG1');
2483 g_Sound_CreateWADEx('SOUND_CTF_RETURN2', GameWAD+':SOUNDS\RETFLAG2');
2484 g_Sound_CreateWADEx('SOUND_CTF_CAPTURE1', GameWAD+':SOUNDS\CAPFLAG1');
2485 g_Sound_CreateWADEx('SOUND_CTF_CAPTURE2', GameWAD+':SOUNDS\CAPFLAG2');
2487 goodsnd[0] := TPlayableSound.Create();
2488 goodsnd[1] := TPlayableSound.Create();
2489 goodsnd[2] := TPlayableSound.Create();
2490 goodsnd[3] := TPlayableSound.Create();
2492 goodsnd[0].SetByName('SOUND_ANNOUNCER_GOOD1');
2493 goodsnd[1].SetByName('SOUND_ANNOUNCER_GOOD2');
2494 goodsnd[2].SetByName('SOUND_ANNOUNCER_GOOD3');
2495 goodsnd[3].SetByName('SOUND_ANNOUNCER_GOOD4');
2497 killsnd[0] := TPlayableSound.Create();
2498 killsnd[1] := TPlayableSound.Create();
2499 killsnd[2] := TPlayableSound.Create();
2500 killsnd[3] := TPlayableSound.Create();
2502 killsnd[0].SetByName('SOUND_ANNOUNCER_KILL2X');
2503 killsnd[1].SetByName('SOUND_ANNOUNCER_KILL3X');
2504 killsnd[2].SetByName('SOUND_ANNOUNCER_KILL4X');
2505 killsnd[3].SetByName('SOUND_ANNOUNCER_KILLMX');
2507 hahasnd[0] := TPlayableSound.Create();
2508 hahasnd[1] := TPlayableSound.Create();
2509 hahasnd[2] := TPlayableSound.Create();
2511 hahasnd[0].SetByName('SOUND_ANNOUNCER_MUHAHA1');
2512 hahasnd[1].SetByName('SOUND_ANNOUNCER_MUHAHA2');
2513 hahasnd[2].SetByName('SOUND_ANNOUNCER_MUHAHA3');
2515 sound_get_flag[0] := TPlayableSound.Create();
2516 sound_get_flag[1] := TPlayableSound.Create();
2517 sound_lost_flag[0] := TPlayableSound.Create();
2518 sound_lost_flag[1] := TPlayableSound.Create();
2519 sound_ret_flag[0] := TPlayableSound.Create();
2520 sound_ret_flag[1] := TPlayableSound.Create();
2521 sound_cap_flag[0] := TPlayableSound.Create();
2522 sound_cap_flag[1] := TPlayableSound.Create();
2524 sound_get_flag[0].SetByName('SOUND_CTF_GET1');
2525 sound_get_flag[1].SetByName('SOUND_CTF_GET2');
2526 sound_lost_flag[0].SetByName('SOUND_CTF_LOST1');
2527 sound_lost_flag[1].SetByName('SOUND_CTF_LOST2');
2528 sound_ret_flag[0].SetByName('SOUND_CTF_RETURN1');
2529 sound_ret_flag[1].SetByName('SOUND_CTF_RETURN2');
2530 sound_cap_flag[0].SetByName('SOUND_CTF_CAPTURE1');
2531 sound_cap_flag[1].SetByName('SOUND_CTF_CAPTURE2');
2533 g_Game_LoadChatSounds(GameWAD+':CHATSND\SNDCFG');
2535 g_Game_SetLoadingText(_lc[I_LOAD_ITEMS_DATA], 0, False);
2536 g_Items_LoadData();
2538 g_Game_SetLoadingText(_lc[I_LOAD_WEAPONS_DATA], 0, False);
2539 g_Weapon_LoadData();
2541 g_Monsters_LoadData();
2543 DataLoaded := True;
2544 end;
2546 procedure g_Game_FreeData();
2547 begin
2548 if not DataLoaded then Exit;
2550 g_Items_FreeData();
2551 g_Weapon_FreeData();
2552 g_Monsters_FreeData();
2554 e_WriteLog('Releasing game data...', TMsgType.Notify);
2556 g_Texture_Delete('NOTEXTURE');
2557 g_Texture_Delete('TEXTURE_PLAYER_HUD');
2558 g_Texture_Delete('TEXTURE_PLAYER_HUDBG');
2559 g_Texture_Delete('TEXTURE_PLAYER_ARMORHUD');
2560 g_Texture_Delete('TEXTURE_PLAYER_REDFLAG');
2561 g_Texture_Delete('TEXTURE_PLAYER_REDFLAG_S');
2562 g_Texture_Delete('TEXTURE_PLAYER_REDFLAG_D');
2563 g_Texture_Delete('TEXTURE_PLAYER_BLUEFLAG');
2564 g_Texture_Delete('TEXTURE_PLAYER_BLUEFLAG_S');
2565 g_Texture_Delete('TEXTURE_PLAYER_BLUEFLAG_D');
2566 g_Texture_Delete('TEXTURE_PLAYER_TALKBUBBLE');
2567 g_Texture_Delete('TEXTURE_PLAYER_INVULPENTA');
2568 g_Frames_DeleteByName('FRAMES_TELEPORT');
2569 g_Frames_DeleteByName('FRAMES_PUNCH');
2570 g_Frames_DeleteByName('FRAMES_PUNCH_UP');
2571 g_Frames_DeleteByName('FRAMES_PUNCH_DN');
2572 g_Frames_DeleteByName('FRAMES_PUNCH_BERSERK');
2573 g_Frames_DeleteByName('FRAMES_PUNCH_BERSERK_UP');
2574 g_Frames_DeleteByName('FRAMES_PUNCH_BERSERK_DN');
2575 g_Sound_Delete('SOUND_GAME_TELEPORT');
2576 g_Sound_Delete('SOUND_GAME_NOTELEPORT');
2577 g_Sound_Delete('SOUND_GAME_SECRET');
2578 g_Sound_Delete('SOUND_GAME_DOOROPEN');
2579 g_Sound_Delete('SOUND_GAME_DOORCLOSE');
2580 g_Sound_Delete('SOUND_GAME_BULK1');
2581 g_Sound_Delete('SOUND_GAME_BULK2');
2582 g_Sound_Delete('SOUND_GAME_BUBBLE1');
2583 g_Sound_Delete('SOUND_GAME_BUBBLE2');
2584 g_Sound_Delete('SOUND_GAME_BURNING');
2585 g_Sound_Delete('SOUND_GAME_SWITCH1');
2586 g_Sound_Delete('SOUND_GAME_SWITCH0');
2588 goodsnd[0].Free();
2589 goodsnd[1].Free();
2590 goodsnd[2].Free();
2591 goodsnd[3].Free();
2593 g_Sound_Delete('SOUND_ANNOUNCER_GOOD1');
2594 g_Sound_Delete('SOUND_ANNOUNCER_GOOD2');
2595 g_Sound_Delete('SOUND_ANNOUNCER_GOOD3');
2596 g_Sound_Delete('SOUND_ANNOUNCER_GOOD4');
2598 killsnd[0].Free();
2599 killsnd[1].Free();
2600 killsnd[2].Free();
2601 killsnd[3].Free();
2603 g_Sound_Delete('SOUND_ANNOUNCER_KILL2X');
2604 g_Sound_Delete('SOUND_ANNOUNCER_KILL3X');
2605 g_Sound_Delete('SOUND_ANNOUNCER_KILL4X');
2606 g_Sound_Delete('SOUND_ANNOUNCER_KILLMX');
2608 hahasnd[0].Free();
2609 hahasnd[1].Free();
2610 hahasnd[2].Free();
2612 g_Sound_Delete('SOUND_ANNOUNCER_MUHAHA1');
2613 g_Sound_Delete('SOUND_ANNOUNCER_MUHAHA2');
2614 g_Sound_Delete('SOUND_ANNOUNCER_MUHAHA3');
2616 sound_get_flag[0].Free();
2617 sound_get_flag[1].Free();
2618 sound_lost_flag[0].Free();
2619 sound_lost_flag[1].Free();
2620 sound_ret_flag[0].Free();
2621 sound_ret_flag[1].Free();
2622 sound_cap_flag[0].Free();
2623 sound_cap_flag[1].Free();
2625 g_Sound_Delete('SOUND_CTF_GET1');
2626 g_Sound_Delete('SOUND_CTF_GET2');
2627 g_Sound_Delete('SOUND_CTF_LOST1');
2628 g_Sound_Delete('SOUND_CTF_LOST2');
2629 g_Sound_Delete('SOUND_CTF_RETURN1');
2630 g_Sound_Delete('SOUND_CTF_RETURN2');
2631 g_Sound_Delete('SOUND_CTF_CAPTURE1');
2632 g_Sound_Delete('SOUND_CTF_CAPTURE2');
2634 g_Game_FreeChatSounds();
2636 DataLoaded := False;
2637 end;
2639 procedure DrawCustomStat();
2640 var
2641 pc, x, y, w, _y,
2642 w1, w2, w3,
2643 t, p, m: Integer;
2644 ww1, hh1: Word;
2645 ww2, hh2, r, g, b, rr, gg, bb: Byte;
2646 s1, s2, topstr: String;
2647 begin
2648 e_TextureFontGetSize(gStdFont, ww2, hh2);
2650 sys_HandleInput;
2652 if g_Console_Action(ACTION_SCORES) then
2653 begin
2654 if not gStatsPressed then
2655 begin
2656 gStatsOff := not gStatsOff;
2657 gStatsPressed := True;
2658 end;
2659 end
2660 else
2661 gStatsPressed := False;
2663 if gStatsOff then
2664 begin
2665 s1 := _lc[I_MENU_INTER_NOTICE_TAB];
2666 w := (Length(s1) * ww2) div 2;
2667 x := gScreenWidth div 2 - w;
2668 y := 8;
2669 e_TextureFontPrint(x, y, s1, gStdFont);
2670 Exit;
2671 end;
2673 if (gGameSettings.GameMode = GM_COOP) then
2674 begin
2675 if gMissionFailed then
2676 topstr := _lc[I_MENU_INTER_MISSION_FAIL]
2677 else
2678 topstr := _lc[I_MENU_INTER_LEVEL_COMPLETE];
2679 end
2680 else
2681 topstr := _lc[I_MENU_INTER_ROUND_OVER];
2683 e_CharFont_GetSize(gMenuFont, topstr, ww1, hh1);
2684 e_CharFont_Print(gMenuFont, (gScreenWidth div 2)-(ww1 div 2), 16, topstr);
2686 if g_Game_IsNet then
2687 begin
2688 topstr := Format(_lc[I_MENU_INTER_NOTICE_TIME], [gServInterTime]);
2689 if not gChatShow then
2690 e_TextureFontPrintEx((gScreenWidth div 2)-(Length(topstr)*ww2 div 2),
2691 gScreenHeight-(hh2+4)*2, topstr, gStdFont, 255, 255, 255, 1);
2692 end;
2694 if g_Game_IsClient then
2695 topstr := _lc[I_MENU_INTER_NOTICE_MAP]
2696 else
2697 topstr := _lc[I_MENU_INTER_NOTICE_SPACE];
2698 if not gChatShow then
2699 e_TextureFontPrintEx((gScreenWidth div 2)-(Length(topstr)*ww2 div 2),
2700 gScreenHeight-(hh2+4), topstr, gStdFont, 255, 255, 255, 1);
2702 x := 32;
2703 y := 16+hh1+16;
2705 w := gScreenWidth-x*2;
2707 w2 := (w-16) div 6;
2708 w3 := w2;
2709 w1 := w-16-w2-w3;
2711 e_DrawFillQuad(x, y, gScreenWidth-x-1, gScreenHeight-y-1, 64, 64, 64, 32);
2712 e_DrawQuad(x, y, gScreenWidth-x-1, gScreenHeight-y-1, 255, 127, 0);
2714 m := Max(Length(_lc[I_MENU_MAP])+1, Length(_lc[I_GAME_GAME_TIME])+1)*ww2;
2716 case CustomStat.GameMode of
2717 GM_DM:
2718 begin
2719 if gGameSettings.MaxLives = 0 then
2720 s1 := _lc[I_GAME_DM]
2721 else
2722 s1 := _lc[I_GAME_LMS];
2723 end;
2724 GM_TDM:
2725 begin
2726 if gGameSettings.MaxLives = 0 then
2727 s1 := _lc[I_GAME_TDM]
2728 else
2729 s1 := _lc[I_GAME_TLMS];
2730 end;
2731 GM_CTF: s1 := _lc[I_GAME_CTF];
2732 GM_COOP:
2733 begin
2734 if gGameSettings.MaxLives = 0 then
2735 s1 := _lc[I_GAME_COOP]
2736 else
2737 s1 := _lc[I_GAME_SURV];
2738 end;
2739 else s1 := '';
2740 end;
2742 _y := y+16;
2743 e_TextureFontPrintEx(x+(w div 2)-(Length(s1)*ww2 div 2), _y, s1, gStdFont, 255, 255, 255, 1);
2744 _y := _y+8;
2746 _y := _y+16;
2747 e_TextureFontPrintEx(x+8, _y, _lc[I_MENU_MAP], gStdFont, 255, 127, 0, 1);
2748 e_TextureFontPrint(x+8+m, _y, Format('%s - %s', [CustomStat.Map, CustomStat.MapName]), gStdFont);
2750 _y := _y+16;
2751 e_TextureFontPrintEx(x+8, _y, _lc[I_GAME_GAME_TIME], gStdFont, 255, 127, 0, 1);
2752 e_TextureFontPrint(x+8+m, _y, Format('%d:%.2d:%.2d', [CustomStat.GameTime div 1000 div 3600,
2753 (CustomStat.GameTime div 1000 div 60) mod 60,
2754 CustomStat.GameTime div 1000 mod 60]), gStdFont);
2756 pc := Length(CustomStat.PlayerStat);
2757 if pc = 0 then Exit;
2759 if CustomStat.GameMode = GM_COOP then
2760 begin
2761 m := Max(Length(_lc[I_GAME_MONSTERS])+1, Length(_lc[I_GAME_SECRETS])+1)*ww2;
2762 _y := _y+32;
2763 s2 := _lc[I_GAME_MONSTERS];
2764 e_TextureFontPrintEx(x+8, _y, s2, gStdFont, 255, 127, 0, 1);
2765 e_TextureFontPrintEx(x+8+m, _y, IntToStr(gCoopMonstersKilled) + '/' + IntToStr(gTotalMonsters), gStdFont, 255, 255, 255, 1);
2766 _y := _y+16;
2767 s2 := _lc[I_GAME_SECRETS];
2768 e_TextureFontPrintEx(x+8, _y, s2, gStdFont, 255, 127, 0, 1);
2769 e_TextureFontPrintEx(x+8+m, _y, IntToStr(gCoopSecretsFound) + '/' + IntToStr(gSecretsCount), gStdFont, 255, 255, 255, 1);
2770 if gLastMap then
2771 begin
2772 m := Max(Length(_lc[I_GAME_MONSTERS_TOTAL])+1, Length(_lc[I_GAME_SECRETS_TOTAL])+1)*ww2;
2773 _y := _y-16;
2774 s2 := _lc[I_GAME_MONSTERS_TOTAL];
2775 e_TextureFontPrintEx(x+250, _y, s2, gStdFont, 255, 127, 0, 1);
2776 e_TextureFontPrintEx(x+250+m, _y, IntToStr(gCoopTotalMonstersKilled) + '/' + IntToStr(gCoopTotalMonsters), gStdFont, 255, 255, 255, 1);
2777 _y := _y+16;
2778 s2 := _lc[I_GAME_SECRETS_TOTAL];
2779 e_TextureFontPrintEx(x+250, _y, s2, gStdFont, 255, 127, 0, 1);
2780 e_TextureFontPrintEx(x+250+m, _y, IntToStr(gCoopTotalSecretsFound) + '/' + IntToStr(gCoopTotalSecrets), gStdFont, 255, 255, 255, 1);
2781 end;
2782 end;
2784 if CustomStat.GameMode in [GM_TDM, GM_CTF] then
2785 begin
2786 _y := _y+16+16;
2788 with CustomStat do
2789 if TeamStat[TEAM_RED].Goals > TeamStat[TEAM_BLUE].Goals then s1 := _lc[I_GAME_WIN_RED]
2790 else if TeamStat[TEAM_BLUE].Goals > TeamStat[TEAM_RED].Goals then s1 := _lc[I_GAME_WIN_BLUE]
2791 else s1 := _lc[I_GAME_WIN_DRAW];
2793 e_TextureFontPrintEx(x+8+(w div 2)-(Length(s1)*ww2 div 2), _y, s1, gStdFont, 255, 255, 255, 1);
2794 _y := _y+40;
2796 for t := TEAM_RED to TEAM_BLUE do
2797 begin
2798 if t = TEAM_RED then
2799 begin
2800 e_TextureFontPrintEx(x+8, _y, _lc[I_GAME_TEAM_RED],
2801 gStdFont, 255, 0, 0, 1);
2802 e_TextureFontPrintEx(x+w1+8, _y, IntToStr(CustomStat.TeamStat[TEAM_RED].Goals),
2803 gStdFont, 255, 0, 0, 1);
2804 r := 255;
2805 g := 0;
2806 b := 0;
2807 end
2808 else
2809 begin
2810 e_TextureFontPrintEx(x+8, _y, _lc[I_GAME_TEAM_BLUE],
2811 gStdFont, 0, 0, 255, 1);
2812 e_TextureFontPrintEx(x+w1+8, _y, IntToStr(CustomStat.TeamStat[TEAM_BLUE].Goals),
2813 gStdFont, 0, 0, 255, 1);
2814 r := 0;
2815 g := 0;
2816 b := 255;
2817 end;
2819 e_DrawLine(1, x+8, _y+20, x-8+w, _y+20, r, g, b);
2820 _y := _y+24;
2822 for p := 0 to High(CustomStat.PlayerStat) do
2823 if CustomStat.PlayerStat[p].Team = t then
2824 with CustomStat.PlayerStat[p] do
2825 begin
2826 if Spectator then
2827 begin
2828 rr := r div 2;
2829 gg := g div 2;
2830 bb := b div 2;
2831 end
2832 else
2833 begin
2834 rr := r;
2835 gg := g;
2836 bb := b;
2837 end;
2838 if (gPlayers[Num] <> nil) and (gPlayers[Num].FReady) then
2839 e_TextureFontPrintEx(x+16, _y, Name + ' *', gStdFont, rr, gg, bb, 1)
2840 else
2841 e_TextureFontPrintEx(x+16, _y, Name, gStdFont, rr, gg, bb, 1);
2842 e_TextureFontPrintEx(x+w1+16, _y, IntToStr(Frags), gStdFont, rr, gg, bb, 1);
2843 e_TextureFontPrintEx(x+w1+w2+16, _y, IntToStr(Deaths), gStdFont, rr, gg, bb, 1);
2844 _y := _y+24;
2845 end;
2847 _y := _y+16+16;
2848 end;
2849 end
2850 else if CustomStat.GameMode in [GM_DM, GM_COOP] then
2851 begin
2852 _y := _y+40;
2853 e_TextureFontPrintEx(x+8, _y, _lc[I_GAME_PLAYER_NAME], gStdFont, 255, 127, 0, 1);
2854 e_TextureFontPrintEx(x+8+w1, _y, _lc[I_GAME_FRAGS], gStdFont, 255, 127, 0, 1);
2855 e_TextureFontPrintEx(x+8+w1+w2, _y, _lc[I_GAME_DEATHS], gStdFont, 255, 127, 0, 1);
2857 _y := _y+24;
2858 for p := 0 to High(CustomStat.PlayerStat) do
2859 with CustomStat.PlayerStat[p] do
2860 begin
2861 e_DrawFillQuad(x+8, _y+4, x+24-1, _y+16+4-1, Color.R, Color.G, Color.B, 0);
2863 if Spectator then
2864 r := 127
2865 else
2866 r := 255;
2868 if (gPlayers[Num] <> nil) and (gPlayers[Num].FReady) then
2869 e_TextureFontPrintEx(x+8+16+8, _y+4, Name + ' *', gStdFont, r, r, r, 1, True)
2870 else
2871 e_TextureFontPrintEx(x+8+16+8, _y+4, Name, gStdFont, r, r, r, 1, True);
2872 e_TextureFontPrintEx(x+w1+8+16+8, _y+4, IntToStr(Frags), gStdFont, r, r, r, 1, True);
2873 e_TextureFontPrintEx(x+w1+w2+8+16+8, _y+4, IntToStr(Deaths), gStdFont, r, r, r, 1, True);
2874 _y := _y+24;
2875 end;
2876 end;
2878 // HACK: take stats screenshot immediately after the first frame of the stats showing
2879 if gScreenshotStats and not StatShotDone then
2880 begin
2881 g_TakeScreenShot('stats/' + StatFilename);
2882 StatShotDone := True;
2883 end;
2884 end;
2886 procedure DrawSingleStat();
2887 var
2888 tm, key_x, val_x, y: Integer;
2889 w1, w2, h: Word;
2890 s1, s2: String;
2892 procedure player_stat(n: Integer);
2893 var
2894 kpm: Real;
2896 begin
2897 // "Kills: # / #":
2898 s1 := Format(' %d ', [SingleStat.PlayerStat[n].Kills]);
2899 s2 := Format(' %d', [gTotalMonsters]);
2901 e_CharFont_Print(gMenuFont, key_x, y, _lc[I_MENU_INTER_KILLS]);
2902 e_CharFont_PrintEx(gMenuFont, val_x, y, s1, _RGB(255, 0, 0));
2903 e_CharFont_GetSize(gMenuFont, s1, w1, h);
2904 e_CharFont_Print(gMenuFont, val_x+w1, y, '/');
2905 s1 := s1 + '/';
2906 e_CharFont_GetSize(gMenuFont, s1, w1, h);
2907 e_CharFont_PrintEx(gMenuFont, val_x+w1, y, s2, _RGB(255, 0, 0));
2909 // "Kills-per-minute: ##.#":
2910 s1 := _lc[I_MENU_INTER_KPM];
2911 if tm > 0 then
2912 kpm := (SingleStat.PlayerStat[n].Kills / tm) * 60
2913 else
2914 kpm := SingleStat.PlayerStat[n].Kills;
2915 s2 := Format(' %.1f', [kpm]);
2917 e_CharFont_Print(gMenuFont, key_x, y+32, s1);
2918 e_CharFont_PrintEx(gMenuFont, val_x, y+32, s2, _RGB(255, 0, 0));
2920 // "Secrets found: # / #":
2921 s1 := Format(' %d ', [SingleStat.PlayerStat[n].Secrets]);
2922 s2 := Format(' %d', [SingleStat.TotalSecrets]);
2924 e_CharFont_Print(gMenuFont, key_x, y+64, _lc[I_MENU_INTER_SECRETS]);
2925 e_CharFont_PrintEx(gMenuFont, val_x, y+64, s1, _RGB(255, 0, 0));
2926 e_CharFont_GetSize(gMenuFont, s1, w1, h);
2927 e_CharFont_Print(gMenuFont, val_x+w1, y+64, '/');
2928 s1 := s1 + '/';
2929 e_CharFont_GetSize(gMenuFont, s1, w1, h);
2930 e_CharFont_PrintEx(gMenuFont, val_x+w1, y+64, s2, _RGB(255, 0, 0));
2931 end;
2933 begin
2934 // "Level Complete":
2935 e_CharFont_GetSize(gMenuFont, _lc[I_MENU_INTER_LEVEL_COMPLETE], w1, h);
2936 e_CharFont_Print(gMenuFont, (gScreenWidth-w1) div 2, 32, _lc[I_MENU_INTER_LEVEL_COMPLETE]);
2938 // Îïðåäåëÿåì êîîðäèíàòû âûðàâíèâàíèÿ ïî ñàìîé äëèííîé ñòðîêå:
2939 s1 := _lc[I_MENU_INTER_KPM];
2940 e_CharFont_GetSize(gMenuFont, s1, w1, h);
2941 Inc(w1, 16);
2942 s1 := ' 9999.9';
2943 e_CharFont_GetSize(gMenuFont, s1, w2, h);
2945 key_x := (gScreenWidth-w1-w2) div 2;
2946 val_x := key_x + w1;
2948 // "Time: #:##:##":
2949 tm := SingleStat.GameTime div 1000;
2950 s1 := _lc[I_MENU_INTER_TIME];
2951 s2 := Format(' %d:%.2d:%.2d', [tm div (60*60), (tm mod (60*60)) div 60, tm mod 60]);
2953 e_CharFont_Print(gMenuFont, key_x, 80, s1);
2954 e_CharFont_PrintEx(gMenuFont, val_x, 80, s2, _RGB(255, 0, 0));
2956 if SingleStat.TwoPlayers then
2957 begin
2958 // "Player 1":
2959 s1 := _lc[I_MENU_PLAYER_1];
2960 e_CharFont_GetSize(gMenuFont, s1, w1, h);
2961 e_CharFont_Print(gMenuFont, (gScreenWidth-w1) div 2, 128, s1);
2963 // Ñòàòèñòèêà ïåðâîãî èãðîêà:
2964 y := 176;
2965 player_stat(0);
2967 // "Player 2":
2968 s1 := _lc[I_MENU_PLAYER_2];
2969 e_CharFont_GetSize(gMenuFont, s1, w1, h);
2970 e_CharFont_Print(gMenuFont, (gScreenWidth-w1) div 2, 288, s1);
2972 // Ñòàòèñòèêà âòîðîãî èãðîêà:
2973 y := 336;
2974 player_stat(1);
2975 end
2976 else
2977 begin
2978 // Ñòàòèñòèêà ïåðâîãî èãðîêà:
2979 y := 128;
2980 player_stat(0);
2981 end;
2982 end;
2984 procedure DrawLoadingStat();
2985 procedure drawRect (x, y, w, h: Integer);
2986 begin
2987 if (w < 1) or (h < 1) then exit;
2988 glBegin(GL_QUADS);
2989 glVertex2f(x+0.375, y+0.375);
2990 glVertex2f(x+w+0.375, y+0.375);
2991 glVertex2f(x+w+0.375, y+h+0.375);
2992 glVertex2f(x+0.375, y+h+0.375);
2993 glEnd();
2994 end;
2996 function drawPBar (cur, total: Integer; washere: Boolean): Boolean;
2997 var
2998 rectW, rectH: Integer;
2999 x0, y0: Integer;
3000 wdt: Integer;
3001 wl, hl: Integer;
3002 wr, hr: Integer;
3003 wb, hb: Integer;
3004 wm, hm: Integer;
3005 idl, idr, idb, idm: LongWord;
3006 f, my: Integer;
3007 begin
3008 result := false;
3009 if (total < 1) then exit;
3010 if (cur < 1) then exit; // don't blink
3011 if (not washere) and (cur >= total) then exit; // don't blink
3012 //if (cur < 0) then cur := 0;
3013 //if (cur > total) then cur := total;
3014 result := true;
3016 if (hasPBarGfx) then
3017 begin
3018 g_Texture_Get('UI_GFX_PBAR_LEFT', idl);
3019 g_Texture_GetSize('UI_GFX_PBAR_LEFT', wl, hl);
3020 g_Texture_Get('UI_GFX_PBAR_RIGHT', idr);
3021 g_Texture_GetSize('UI_GFX_PBAR_RIGHT', wr, hr);
3022 g_Texture_Get('UI_GFX_PBAR_MIDDLE', idb);
3023 g_Texture_GetSize('UI_GFX_PBAR_MIDDLE', wb, hb);
3024 g_Texture_Get('UI_GFX_PBAR_MARKER', idm);
3025 g_Texture_GetSize('UI_GFX_PBAR_MARKER', wm, hm);
3027 //rectW := gScreenWidth-360;
3028 rectW := trunc(624.0*gScreenWidth/1024.0);
3029 rectH := hl;
3031 x0 := (gScreenWidth-rectW) div 2;
3032 y0 := gScreenHeight-rectH-64;
3033 if (y0 < 2) then y0 := 2;
3035 glEnable(GL_SCISSOR_TEST);
3037 // left and right
3038 glScissor(x0, gScreenHeight-y0-rectH, rectW, rectH);
3039 e_DrawSize(idl, x0, y0, 0, true, false, wl, hl);
3040 e_DrawSize(idr, x0+rectW-wr, y0, 0, true, false, wr, hr);
3042 // body
3043 glScissor(x0+wl, gScreenHeight-y0-rectH, rectW-wl-wr, rectH);
3044 f := x0+wl;
3045 while (f < x0+rectW) do
3046 begin
3047 e_DrawSize(idb, f, y0, 0, true, false, wb, hb);
3048 f += wb;
3049 end;
3051 // filled part
3052 wdt := (rectW-wl-wr)*cur div total;
3053 if (wdt > rectW-wl-wr) then wdt := rectW-wr-wr;
3054 if (wdt > 0) then
3055 begin
3056 my := y0; // don't be so smart, ketmar: +(rectH-wm) div 2;
3057 glScissor(x0+wl, gScreenHeight-my-rectH, wdt, hm);
3058 f := x0+wl;
3059 while (wdt > 0) do
3060 begin
3061 e_DrawSize(idm, f, y0, 0, true, false, wm, hm);
3062 f += wm;
3063 wdt -= wm;
3064 end;
3065 end;
3067 glScissor(0, 0, gScreenWidth, gScreenHeight);
3068 end
3069 else
3070 begin
3071 rectW := gScreenWidth-64;
3072 rectH := 16;
3074 x0 := (gScreenWidth-rectW) div 2;
3075 y0 := gScreenHeight-rectH-64;
3076 if (y0 < 2) then y0 := 2;
3078 glDisable(GL_BLEND);
3079 glDisable(GL_TEXTURE_2D);
3081 //glClearColor(0, 0, 0, 0);
3082 //glClear(GL_COLOR_BUFFER_BIT);
3084 glColor4ub(127, 127, 127, 255);
3085 drawRect(x0-2, y0-2, rectW+4, rectH+4);
3087 glColor4ub(0, 0, 0, 255);
3088 drawRect(x0-1, y0-1, rectW+2, rectH+2);
3090 glColor4ub(127, 127, 127, 255);
3091 wdt := rectW*cur div total;
3092 if (wdt > rectW) then wdt := rectW;
3093 drawRect(x0, y0, wdt, rectH);
3094 end;
3095 end;
3097 var
3098 ww, hh: Word;
3099 xx, yy, i: Integer;
3100 s: String;
3101 begin
3102 if (Length(LoadingStat.Msgs) = 0) then exit;
3104 e_CharFont_GetSize(gMenuFont, _lc[I_MENU_LOADING], ww, hh);
3105 yy := (gScreenHeight div 3);
3106 e_CharFont_Print(gMenuFont, (gScreenWidth div 2)-(ww div 2), yy-2*hh, _lc[I_MENU_LOADING]);
3107 xx := (gScreenWidth div 3);
3109 with LoadingStat do
3110 begin
3111 for i := 0 to NextMsg-1 do
3112 begin
3113 if (i = (NextMsg-1)) and (MaxValue > 0) then
3114 s := Format('%s: %d/%d', [Msgs[i], CurValue, MaxValue])
3115 else
3116 s := Msgs[i];
3118 e_CharFont_PrintEx(gMenuSmallFont, xx, yy, s, _RGB(255, 0, 0));
3119 yy := yy + LOADING_INTERLINE;
3120 PBarWasHere := drawPBar(CurValue, MaxValue, PBarWasHere);
3121 end;
3122 end;
3123 end;
3125 procedure DrawMenuBackground(tex: AnsiString);
3126 var
3127 w, h: Word;
3128 ID: DWord;
3130 begin
3131 if g_Texture_Get(tex, ID) then
3132 begin
3133 e_Clear(GL_COLOR_BUFFER_BIT, 0, 0, 0);
3134 e_GetTextureSize(ID, @w, @h);
3135 if w = h then
3136 w := round(w * 1.333 * (gScreenHeight / h))
3137 else
3138 w := trunc(w * (gScreenHeight / h));
3139 e_DrawSize(ID, (gScreenWidth - w) div 2, 0, 0, False, False, w, gScreenHeight);
3140 end
3141 else e_Clear(GL_COLOR_BUFFER_BIT, 0, 0, 0);
3142 end;
3144 procedure DrawMinimap(p: TPlayer; RenderRect: e_graphics.TRect);
3145 var
3146 a, aX, aY, aX2, aY2, Scale, ScaleSz: Integer;
3148 function monDraw (mon: TMonster): Boolean;
3149 begin
3150 result := false; // don't stop
3151 with mon do
3152 begin
3153 if alive then
3154 begin
3155 // Ëåâûé âåðõíèé óãîë
3156 aX := Obj.X div ScaleSz + 1;
3157 aY := Obj.Y div ScaleSz + 1;
3158 // Ðàçìåðû
3159 aX2 := max(Obj.Rect.Width div ScaleSz, 1);
3160 aY2 := max(Obj.Rect.Height div ScaleSz, 1);
3161 // Ïðàâûé íèæíèé óãîë
3162 aX2 := aX + aX2 - 1;
3163 aY2 := aY + aY2 - 1;
3164 e_DrawFillQuad(aX, aY, aX2, aY2, 255, 255, 0, 0);
3165 end;
3166 end;
3167 end;
3169 begin
3170 if (gMapInfo.Width > RenderRect.Right - RenderRect.Left) or
3171 (gMapInfo.Height > RenderRect.Bottom - RenderRect.Top) then
3172 begin
3173 Scale := 1;
3174 // Ñêîëüêî ïèêñåëîâ êàðòû â 1 ïèêñåëå ìèíè-êàðòû:
3175 ScaleSz := 16 div Scale;
3176 // Ðàçìåðû ìèíè-êàðòû:
3177 aX := max(gMapInfo.Width div ScaleSz, 1);
3178 aY := max(gMapInfo.Height div ScaleSz, 1);
3179 // Ðàìêà êàðòû:
3180 e_DrawFillQuad(0, 0, aX-1, aY-1, 0, 0, 0, 0);
3182 if gWalls <> nil then
3183 begin
3184 // Ðèñóåì ñòåíû:
3185 for a := 0 to High(gWalls) do
3186 with gWalls[a] do
3187 if PanelType <> 0 then
3188 begin
3189 // Ëåâûé âåðõíèé óãîë:
3190 aX := X div ScaleSz;
3191 aY := Y div ScaleSz;
3192 // Ðàçìåðû:
3193 aX2 := max(Width div ScaleSz, 1);
3194 aY2 := max(Height div ScaleSz, 1);
3195 // Ïðàâûé íèæíèé óãîë:
3196 aX2 := aX + aX2 - 1;
3197 aY2 := aY + aY2 - 1;
3199 case PanelType of
3200 PANEL_WALL: e_DrawFillQuad(aX, aY, aX2, aY2, 208, 208, 208, 0);
3201 PANEL_OPENDOOR, PANEL_CLOSEDOOR:
3202 if Enabled then e_DrawFillQuad(aX, aY, aX2, aY2, 160, 160, 160, 0);
3203 end;
3204 end;
3205 end;
3206 if gSteps <> nil then
3207 begin
3208 // Ðèñóåì ñòóïåíè:
3209 for a := 0 to High(gSteps) do
3210 with gSteps[a] do
3211 if PanelType <> 0 then
3212 begin
3213 // Ëåâûé âåðõíèé óãîë:
3214 aX := X div ScaleSz;
3215 aY := Y div ScaleSz;
3216 // Ðàçìåðû:
3217 aX2 := max(Width div ScaleSz, 1);
3218 aY2 := max(Height div ScaleSz, 1);
3219 // Ïðàâûé íèæíèé óãîë:
3220 aX2 := aX + aX2 - 1;
3221 aY2 := aY + aY2 - 1;
3223 e_DrawFillQuad(aX, aY, aX2, aY2, 128, 128, 128, 0);
3224 end;
3225 end;
3226 if gLifts <> nil then
3227 begin
3228 // Ðèñóåì ëèôòû:
3229 for a := 0 to High(gLifts) do
3230 with gLifts[a] do
3231 if PanelType <> 0 then
3232 begin
3233 // Ëåâûé âåðõíèé óãîë:
3234 aX := X div ScaleSz;
3235 aY := Y div ScaleSz;
3236 // Ðàçìåðû:
3237 aX2 := max(Width div ScaleSz, 1);
3238 aY2 := max(Height div ScaleSz, 1);
3239 // Ïðàâûé íèæíèé óãîë:
3240 aX2 := aX + aX2 - 1;
3241 aY2 := aY + aY2 - 1;
3243 case LiftType of
3244 LIFTTYPE_UP: e_DrawFillQuad(aX, aY, aX2, aY2, 116, 72, 36, 0);
3245 LIFTTYPE_DOWN: e_DrawFillQuad(aX, aY, aX2, aY2, 116, 124, 96, 0);
3246 LIFTTYPE_LEFT: e_DrawFillQuad(aX, aY, aX2, aY2, 200, 80, 4, 0);
3247 LIFTTYPE_RIGHT: e_DrawFillQuad(aX, aY, aX2, aY2, 252, 140, 56, 0);
3248 end;
3249 end;
3250 end;
3251 if gWater <> nil then
3252 begin
3253 // Ðèñóåì âîäó:
3254 for a := 0 to High(gWater) do
3255 with gWater[a] do
3256 if PanelType <> 0 then
3257 begin
3258 // Ëåâûé âåðõíèé óãîë:
3259 aX := X div ScaleSz;
3260 aY := Y div ScaleSz;
3261 // Ðàçìåðû:
3262 aX2 := max(Width div ScaleSz, 1);
3263 aY2 := max(Height div ScaleSz, 1);
3264 // Ïðàâûé íèæíèé óãîë:
3265 aX2 := aX + aX2 - 1;
3266 aY2 := aY + aY2 - 1;
3268 e_DrawFillQuad(aX, aY, aX2, aY2, 0, 0, 192, 0);
3269 end;
3270 end;
3271 if gAcid1 <> nil then
3272 begin
3273 // Ðèñóåì êèñëîòó 1:
3274 for a := 0 to High(gAcid1) do
3275 with gAcid1[a] do
3276 if PanelType <> 0 then
3277 begin
3278 // Ëåâûé âåðõíèé óãîë:
3279 aX := X div ScaleSz;
3280 aY := Y div ScaleSz;
3281 // Ðàçìåðû:
3282 aX2 := max(Width div ScaleSz, 1);
3283 aY2 := max(Height div ScaleSz, 1);
3284 // Ïðàâûé íèæíèé óãîë:
3285 aX2 := aX + aX2 - 1;
3286 aY2 := aY + aY2 - 1;
3288 e_DrawFillQuad(aX, aY, aX2, aY2, 0, 176, 0, 0);
3289 end;
3290 end;
3291 if gAcid2 <> nil then
3292 begin
3293 // Ðèñóåì êèñëîòó 2:
3294 for a := 0 to High(gAcid2) do
3295 with gAcid2[a] do
3296 if PanelType <> 0 then
3297 begin
3298 // Ëåâûé âåðõíèé óãîë:
3299 aX := X div ScaleSz;
3300 aY := Y div ScaleSz;
3301 // Ðàçìåðû:
3302 aX2 := max(Width div ScaleSz, 1);
3303 aY2 := max(Height div ScaleSz, 1);
3304 // Ïðàâûé íèæíèé óãîë:
3305 aX2 := aX + aX2 - 1;
3306 aY2 := aY + aY2 - 1;
3308 e_DrawFillQuad(aX, aY, aX2, aY2, 176, 0, 0, 0);
3309 end;
3310 end;
3311 if gPlayers <> nil then
3312 begin
3313 // Ðèñóåì èãðîêîâ:
3314 for a := 0 to High(gPlayers) do
3315 if gPlayers[a] <> nil then with gPlayers[a] do
3316 if alive then begin
3317 // Ëåâûé âåðõíèé óãîë:
3318 aX := Obj.X div ScaleSz + 1;
3319 aY := Obj.Y div ScaleSz + 1;
3320 // Ðàçìåðû:
3321 aX2 := max(Obj.Rect.Width div ScaleSz, 1);
3322 aY2 := max(Obj.Rect.Height div ScaleSz, 1);
3323 // Ïðàâûé íèæíèé óãîë:
3324 aX2 := aX + aX2 - 1;
3325 aY2 := aY + aY2 - 1;
3327 if gPlayers[a] = p then
3328 e_DrawFillQuad(aX, aY, aX2, aY2, 0, 255, 0, 0)
3329 else
3330 case Team of
3331 TEAM_RED: e_DrawFillQuad(aX, aY, aX2, aY2, 255, 0, 0, 0);
3332 TEAM_BLUE: e_DrawFillQuad(aX, aY, aX2, aY2, 0, 0, 255, 0);
3333 else e_DrawFillQuad(aX, aY, aX2, aY2, 255, 128, 0, 0);
3334 end;
3335 end;
3336 end;
3337 // Ðèñóåì ìîíñòðîâ
3338 g_Mons_ForEach(monDraw);
3339 end;
3340 end;
3343 procedure renderAmbientQuad (hasAmbient: Boolean; constref ambColor: TDFColor);
3344 begin
3345 if not hasAmbient then exit;
3346 e_AmbientQuad(sX, sY, sWidth, sHeight, ambColor.r, ambColor.g, ambColor.b, ambColor.a);
3347 end;
3350 // setup sX, sY, sWidth, sHeight, and transformation matrix before calling this!
3351 //FIXME: broken for splitscreen mode
3352 procedure renderDynLightsInternal ();
3353 var
3354 //hasAmbient: Boolean;
3355 //ambColor: TDFColor;
3356 lln: Integer;
3357 lx, ly, lrad: Integer;
3358 scxywh: array[0..3] of GLint;
3359 wassc: Boolean;
3360 begin
3361 if e_NoGraphics then exit;
3363 //TODO: lights should be in separate grid, i think
3364 // but on the other side: grid may be slower for dynlights, as their lifetime is short
3365 if (not gwin_k8_enable_light_experiments) or (not gwin_has_stencil) or (g_dynLightCount < 1) then exit;
3367 // rendering mode
3368 //ambColor := gCurrentMap['light_ambient'].rgba;
3369 //hasAmbient := (not ambColor.isOpaque) or (not ambColor.isBlack);
3371 { // this will multiply incoming color to alpha from framebuffer
3372 glEnable(GL_BLEND);
3373 glBlendFunc(GL_DST_ALPHA, GL_ONE);
3376 (*
3377 * light rendering: (INVALID!)
3378 * glStencilFunc(GL_EQUAL, 0, $ff);
3379 * for each light:
3380 * glClear(GL_STENCIL_BUFFER_BIT);
3381 * glStencilOp(GL_KEEP, GL_KEEP, GL_INCR);
3382 * draw shadow volume into stencil buffer
3383 * glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE); // modify color buffer
3384 * glStencilOp(GL_KEEP, GL_KEEP, GL_KEEP); // don't modify stencil buffer
3385 * turn off blending
3386 * draw color-less quad with light alpha (WARNING! don't touch color!)
3387 * glEnable(GL_BLEND);
3388 * glBlendFunc(GL_DST_ALPHA, GL_ONE);
3389 * draw all geometry up to and including walls (with alpha-testing, probably) -- this does lighting
3390 *)
3391 wassc := (glIsEnabled(GL_SCISSOR_TEST) <> 0);
3392 if wassc then glGetIntegerv(GL_SCISSOR_BOX, @scxywh[0]) else glGetIntegerv(GL_VIEWPORT, @scxywh[0]);
3394 // setup OpenGL parameters
3395 glStencilMask($FFFFFFFF);
3396 glStencilFunc(GL_ALWAYS, 0, $FFFFFFFF);
3397 glEnable(GL_STENCIL_TEST);
3398 glEnable(GL_SCISSOR_TEST);
3399 glClear(GL_STENCIL_BUFFER_BIT);
3400 glStencilFunc(GL_EQUAL, 0, $ff);
3402 for lln := 0 to g_dynLightCount-1 do
3403 begin
3404 lx := g_dynLights[lln].x;
3405 ly := g_dynLights[lln].y;
3406 lrad := g_dynLights[lln].radius;
3407 if (lrad < 3) then continue;
3409 if (lx-sX+lrad < 0) then continue;
3410 if (ly-sY+lrad < 0) then continue;
3411 if (lx-sX-lrad >= gPlayerScreenSize.X) then continue;
3412 if (ly-sY-lrad >= gPlayerScreenSize.Y) then continue;
3414 // set scissor to optimize drawing
3415 if (g_dbg_scale = 1.0) then
3416 begin
3417 glScissor((lx-sX)-lrad+2, gPlayerScreenSize.Y-(ly-sY)-lrad-1+2, lrad*2-4, lrad*2-4);
3418 end
3419 else
3420 begin
3421 glScissor(0, 0, gWinSizeX, gWinSizeY);
3422 end;
3423 // no need to clear stencil buffer, light blitting will do it for us... but only for normal scale
3424 if (g_dbg_scale <> 1.0) then glClear(GL_STENCIL_BUFFER_BIT);
3425 glStencilOp(GL_KEEP, GL_KEEP, GL_INCR);
3426 // draw extruded panels
3427 glDisable(GL_TEXTURE_2D);
3428 glDisable(GL_BLEND);
3429 glColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE); // no need to modify color buffer
3430 if (lrad > 4) then g_Map_DrawPanelShadowVolumes(lx, ly, lrad);
3431 // render light texture
3432 glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE); // modify color buffer
3433 glStencilOp(GL_ZERO, GL_ZERO, GL_ZERO); // draw light, and clear stencil buffer
3434 // blend it
3435 glEnable(GL_BLEND);
3436 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
3437 glEnable(GL_TEXTURE_2D);
3438 // color and opacity
3439 glColor4f(g_dynLights[lln].r, g_dynLights[lln].g, g_dynLights[lln].b, g_dynLights[lln].a);
3440 glBindTexture(GL_TEXTURE_2D, g_Texture_Light());
3441 glBegin(GL_QUADS);
3442 glTexCoord2f(0.0, 0.0); glVertex2i(lx-lrad, ly-lrad); // top-left
3443 glTexCoord2f(1.0, 0.0); glVertex2i(lx+lrad, ly-lrad); // top-right
3444 glTexCoord2f(1.0, 1.0); glVertex2i(lx+lrad, ly+lrad); // bottom-right
3445 glTexCoord2f(0.0, 1.0); glVertex2i(lx-lrad, ly+lrad); // bottom-left
3446 glEnd();
3447 end;
3449 // done
3450 glDisable(GL_STENCIL_TEST);
3451 glDisable(GL_BLEND);
3452 glDisable(GL_SCISSOR_TEST);
3453 //glScissor(0, 0, sWidth, sHeight);
3455 glScissor(scxywh[0], scxywh[1], scxywh[2], scxywh[3]);
3456 if wassc then glEnable(GL_SCISSOR_TEST) else glDisable(GL_SCISSOR_TEST);
3457 end;
3460 function fixViewportForScale (): Boolean;
3461 var
3462 nx0, ny0, nw, nh: Integer;
3463 begin
3464 result := false;
3465 if (g_dbg_scale <> 1.0) then
3466 begin
3467 result := true;
3468 nx0 := round(sX-(gPlayerScreenSize.X-(sWidth*g_dbg_scale))/2/g_dbg_scale);
3469 ny0 := round(sY-(gPlayerScreenSize.Y-(sHeight*g_dbg_scale))/2/g_dbg_scale);
3470 nw := round(sWidth/g_dbg_scale);
3471 nh := round(sHeight/g_dbg_scale);
3472 sX := nx0;
3473 sY := ny0;
3474 sWidth := nw;
3475 sHeight := nh;
3476 end;
3477 end;
3480 // setup sX, sY, sWidth, sHeight, and transformation matrix before calling this!
3481 // WARNING! this WILL CALL `glTranslatef()`, but won't restore matrices!
3482 procedure renderMapInternal (backXOfs, backYOfs: Integer; setTransMatrix: Boolean);
3483 type
3484 TDrawCB = procedure ();
3486 var
3487 hasAmbient: Boolean;
3488 ambColor: TDFColor;
3489 doAmbient: Boolean = false;
3491 procedure drawPanelType (profname: AnsiString; panType: DWord; doDraw: Boolean);
3492 var
3493 tagmask: Integer;
3494 pan: TPanel;
3495 begin
3496 if (profileFrameDraw <> nil) then profileFrameDraw.sectionBegin(profname);
3497 if gdbg_map_use_accel_render then
3498 begin
3499 tagmask := panelTypeToTag(panType);
3500 while (gDrawPanelList.count > 0) do
3501 begin
3502 pan := TPanel(gDrawPanelList.front());
3503 if ((pan.tag and tagmask) = 0) then break;
3504 if doDraw then pan.Draw(doAmbient, ambColor);
3505 gDrawPanelList.popFront();
3506 end;
3507 end
3508 else
3509 begin
3510 if doDraw then g_Map_DrawPanels(panType, hasAmbient, ambColor);
3511 end;
3512 if (profileFrameDraw <> nil) then profileFrameDraw.sectionEnd();
3513 end;
3515 procedure drawOther (profname: AnsiString; cb: TDrawCB);
3516 begin
3517 if (profileFrameDraw <> nil) then profileFrameDraw.sectionBegin(profname);
3518 if assigned(cb) then cb();
3519 if (profileFrameDraw <> nil) then profileFrameDraw.sectionEnd();
3520 end;
3522 begin
3523 if (profileFrameDraw <> nil) then profileFrameDraw.sectionBegin('total');
3525 // our accelerated renderer will collect all panels to gDrawPanelList
3526 // we can use panel tag to render level parts (see GridTagXXX in g_map.pas)
3527 if (profileFrameDraw <> nil) then profileFrameDraw.sectionBegin('collect');
3528 if gdbg_map_use_accel_render then
3529 begin
3530 g_Map_CollectDrawPanels(sX, sY, sWidth, sHeight);
3531 end;
3532 if (profileFrameDraw <> nil) then profileFrameDraw.sectionEnd();
3534 if (profileFrameDraw <> nil) then profileFrameDraw.sectionBegin('skyback');
3535 g_Map_DrawBack(backXOfs, backYOfs);
3536 if (profileFrameDraw <> nil) then profileFrameDraw.sectionEnd();
3538 if setTransMatrix then
3539 begin
3540 //if (g_dbg_scale <> 1.0) then glTranslatef(0.0, -0.375/2, 0);
3541 glScalef(g_dbg_scale, g_dbg_scale, 1.0);
3542 glTranslatef(-sX, -sY, 0);
3543 end;
3545 // rendering mode
3546 ambColor := gCurrentMap['light_ambient'].rgba;
3547 hasAmbient := (not ambColor.isOpaque) or (not ambColor.isBlack);
3550 if hasAmbient then
3551 begin
3552 //writeln('color: (', ambColor.r, ',', ambColor.g, ',', ambColor.b, ',', ambColor.a, ')');
3553 glColor4ub(ambColor.r, ambColor.g, ambColor.b, ambColor.a);
3554 glClear(GL_COLOR_BUFFER_BIT);
3555 end;
3557 //writeln('color: (', ambColor.r, ',', ambColor.g, ',', ambColor.b, ',', ambColor.a, ')');
3560 drawPanelType('*back', PANEL_BACK, g_rlayer_back);
3561 drawPanelType('*step', PANEL_STEP, g_rlayer_step);
3562 drawOther('items', @g_Items_Draw);
3563 drawOther('weapons', @g_Weapon_Draw);
3564 drawOther('shells', @g_Player_DrawShells);
3565 drawOther('drawall', @g_Player_DrawAll);
3566 drawOther('corpses', @g_Player_DrawCorpses);
3567 drawPanelType('*wall', PANEL_WALL, g_rlayer_wall);
3568 drawOther('monsters', @g_Monsters_Draw);
3569 drawOther('itemdrop', @g_Items_DrawDrop);
3570 drawPanelType('*door', PANEL_CLOSEDOOR, g_rlayer_door);
3571 drawOther('gfx', @g_GFX_Draw);
3572 drawOther('flags', @g_Map_DrawFlags);
3573 drawPanelType('*acid1', PANEL_ACID1, g_rlayer_acid1);
3574 drawPanelType('*acid2', PANEL_ACID2, g_rlayer_acid2);
3575 drawPanelType('*water', PANEL_WATER, g_rlayer_water);
3576 drawOther('dynlights', @renderDynLightsInternal);
3578 if hasAmbient {and ((not g_playerLight) or (not gwin_has_stencil) or (g_dynLightCount < 1))} then
3579 begin
3580 renderAmbientQuad(hasAmbient, ambColor);
3581 end;
3583 doAmbient := true;
3584 drawPanelType('*fore', PANEL_FORE, g_rlayer_fore);
3587 if g_debug_HealthBar then
3588 begin
3589 g_Monsters_DrawHealth();
3590 g_Player_DrawHealth();
3591 end;
3593 if (profileFrameDraw <> nil) then profileFrameDraw.mainEnd(); // map rendering
3594 end;
3597 procedure DrawMapView(x, y, w, h: Integer);
3599 var
3600 bx, by: Integer;
3601 begin
3602 glPushMatrix();
3604 bx := Round(x/(gMapInfo.Width - w)*(gBackSize.X - w));
3605 by := Round(y/(gMapInfo.Height - h)*(gBackSize.Y - h));
3607 sX := x;
3608 sY := y;
3609 sWidth := w;
3610 sHeight := h;
3612 fixViewportForScale();
3613 renderMapInternal(-bx, -by, true);
3615 glPopMatrix();
3616 end;
3619 procedure DrawPlayer(p: TPlayer);
3620 var
3621 px, py, a, b, c, d, i: Integer;
3622 //R: TRect;
3623 begin
3624 if (p = nil) or (p.FDummy) then
3625 begin
3626 glPushMatrix();
3627 g_Map_DrawBack(0, 0);
3628 glPopMatrix();
3629 Exit;
3630 end;
3632 if (profileFrameDraw = nil) then profileFrameDraw := TProfiler.Create('RENDER', g_profile_history_size);
3633 if (profileFrameDraw <> nil) then profileFrameDraw.mainBegin(g_profile_frame_draw);
3635 gPlayerDrawn := p;
3637 glPushMatrix();
3639 px := p.GameX + PLAYER_RECT_CX;
3640 py := p.GameY + PLAYER_RECT_CY+p.Obj.slopeUpLeft;
3642 if (g_dbg_scale = 1.0) and (not g_dbg_ignore_bounds) then
3643 begin
3644 if (px > (gPlayerScreenSize.X div 2)) then a := -px+(gPlayerScreenSize.X div 2) else a := 0;
3645 if (py > (gPlayerScreenSize.Y div 2)) then b := -py+(gPlayerScreenSize.Y div 2) else b := 0;
3647 if (px > gMapInfo.Width-(gPlayerScreenSize.X div 2)) then a := -gMapInfo.Width+gPlayerScreenSize.X;
3648 if (py > gMapInfo.Height-(gPlayerScreenSize.Y div 2)) then b := -gMapInfo.Height+gPlayerScreenSize.Y;
3650 if (gMapInfo.Width = gPlayerScreenSize.X) then a := 0
3651 else if (gMapInfo.Width < gPlayerScreenSize.X) then
3652 begin
3653 // hcenter
3654 a := (gPlayerScreenSize.X-gMapInfo.Width) div 2;
3655 end;
3657 if (gMapInfo.Height = gPlayerScreenSize.Y) then b := 0
3658 else if (gMapInfo.Height < gPlayerScreenSize.Y) then
3659 begin
3660 // vcenter
3661 b := (gPlayerScreenSize.Y-gMapInfo.Height) div 2;
3662 end;
3663 end
3664 else
3665 begin
3666 // scaled, ignore level bounds
3667 a := -px+(gPlayerScreenSize.X div 2);
3668 b := -py+(gPlayerScreenSize.Y div 2);
3669 end;
3671 if p.IncCam <> 0 then
3672 begin
3673 if py > gMapInfo.Height-(gPlayerScreenSize.Y div 2) then
3674 begin
3675 if p.IncCam > 120-(py-(gMapInfo.Height-(gPlayerScreenSize.Y div 2))) then
3676 begin
3677 p.IncCam := 120-(py-(gMapInfo.Height-(gPlayerScreenSize.Y div 2)));
3678 end;
3679 end;
3681 if py < gPlayerScreenSize.Y div 2 then
3682 begin
3683 if p.IncCam < -120+((gPlayerScreenSize.Y div 2)-py) then
3684 begin
3685 p.IncCam := -120+((gPlayerScreenSize.Y div 2)-py);
3686 end;
3687 end;
3689 if p.IncCam < 0 then
3690 begin
3691 while (py+(gPlayerScreenSize.Y div 2)-p.IncCam > gMapInfo.Height) and (p.IncCam < 0) do p.IncCam := p.IncCam+1; //Inc(p.IncCam);
3692 end;
3694 if p.IncCam > 0 then
3695 begin
3696 while (py-(gPlayerScreenSize.Y div 2)-p.IncCam < 0) and (p.IncCam > 0) do p.IncCam := p.IncCam-1; //Dec(p.IncCam);
3697 end;
3698 end;
3700 if (px < gPlayerScreenSize.X div 2) or (gMapInfo.Width-gPlayerScreenSize.X <= 256) then c := 0
3701 else if (px > gMapInfo.Width-(gPlayerScreenSize.X div 2)) then c := gBackSize.X-gPlayerScreenSize.X
3702 else c := round((px-(gPlayerScreenSize.X div 2))/(gMapInfo.Width-gPlayerScreenSize.X)*(gBackSize.X-gPlayerScreenSize.X));
3704 if (py-p.IncCam <= gPlayerScreenSize.Y div 2) or (gMapInfo.Height-gPlayerScreenSize.Y <= 256) then d := 0
3705 else if (py-p.IncCam >= gMapInfo.Height-(gPlayerScreenSize.Y div 2)) then d := gBackSize.Y-gPlayerScreenSize.Y
3706 else d := round((py-p.IncCam-(gPlayerScreenSize.Y div 2))/(gMapInfo.Height-gPlayerScreenSize.Y)*(gBackSize.Y-gPlayerScreenSize.Y));
3708 sX := -a;
3709 sY := -(b+p.IncCam);
3710 sWidth := gPlayerScreenSize.X;
3711 sHeight := gPlayerScreenSize.Y;
3713 //glTranslatef(a, b+p.IncCam, 0);
3715 //if (p = gPlayer1) and (g_dbg_scale >= 1.0) then g_Holmes_plrViewSize(sWidth, sHeight);
3717 //conwritefln('OLD: (%s,%s)-(%s,%s)', [sX, sY, sWidth, sHeight]);
3718 fixViewportForScale();
3719 //conwritefln(' (%s,%s)-(%s,%s)', [sX, sY, sWidth, sHeight]);
3721 if (g_dbg_scale <> 1.0) and (not g_dbg_ignore_bounds) then
3722 begin
3723 if (sX+sWidth > gMapInfo.Width) then sX := gMapInfo.Width-sWidth;
3724 if (sY+sHeight > gMapInfo.Height) then sY := gMapInfo.Height-sHeight;
3725 if (sX < 0) then sX := 0;
3726 if (sY < 0) then sY := 0;
3728 if (gBackSize.X <= gPlayerScreenSize.X) or (gMapInfo.Width <= sWidth) then c := 0 else c := trunc((gBackSize.X-gPlayerScreenSize.X)*sX/(gMapInfo.Width-sWidth));
3729 if (gBackSize.Y <= gPlayerScreenSize.Y) or (gMapInfo.Height <= sHeight) then d := 0 else d := trunc((gBackSize.Y-gPlayerScreenSize.Y)*sY/(gMapInfo.Height-sHeight));
3730 end;
3732 //r_smallmap_h: 0: left; 1: center; 2: right
3733 //r_smallmap_v: 0: top; 1: center; 2: bottom
3734 // horiz small map?
3735 if (gMapInfo.Width = sWidth) then
3736 begin
3737 sX := 0;
3738 end
3739 else if (gMapInfo.Width < sWidth) then
3740 begin
3741 case r_smallmap_h of
3742 1: sX := -((sWidth-gMapInfo.Width) div 2); // center
3743 2: sX := -(sWidth-gMapInfo.Width); // right
3744 else sX := 0; // left
3745 end;
3746 end;
3747 // vert small map?
3748 if (gMapInfo.Height = sHeight) then
3749 begin
3750 sY := 0;
3751 end
3752 else if (gMapInfo.Height < sHeight) then
3753 begin
3754 case r_smallmap_v of
3755 1: sY := -((sHeight-gMapInfo.Height) div 2); // center
3756 2: sY := -(sHeight-gMapInfo.Height); // bottom
3757 else sY := 0; // top
3758 end;
3759 end;
3761 p.viewPortX := sX;
3762 p.viewPortY := sY;
3763 p.viewPortW := sWidth;
3764 p.viewPortH := sHeight;
3766 {$IFDEF ENABLE_HOLMES}
3767 if (p = gPlayer1) then
3768 begin
3769 g_Holmes_plrViewPos(sX, sY);
3770 g_Holmes_plrViewSize(sWidth, sHeight);
3771 end;
3772 {$ENDIF}
3774 renderMapInternal(-c, -d, true);
3776 if (gGameSettings.GameMode <> GM_SINGLE) and (gPlayerIndicator > 0) then
3777 case gPlayerIndicator of
3778 1:
3779 p.DrawIndicator(_RGB(255, 255, 255));
3781 2:
3782 for i := 0 to High(gPlayers) do
3783 if gPlayers[i] <> nil then
3784 if gPlayers[i] = p then p.DrawIndicator(_RGB(255, 255, 255))
3785 else if (gPlayers[i].Team = p.Team) and (gPlayers[i].Team <> TEAM_NONE) then
3786 if gPlayerIndicatorStyle = 1 then
3787 gPlayers[i].DrawIndicator(_RGB(192, 192, 192))
3788 else gPlayers[i].DrawIndicator(gPlayers[i].GetColor);
3789 end;
3791 if p.FSpectator then
3792 e_TextureFontPrintEx(p.GameX + PLAYER_RECT_CX - 4,
3793 p.GameY + PLAYER_RECT_CY - 4,
3794 'X', gStdFont, 255, 255, 255, 1, True);
3796 for a := 0 to High(gCollideMap) do
3797 for b := 0 to High(gCollideMap[a]) do
3798 begin
3799 d := 0;
3800 if ByteBool(gCollideMap[a, b] and MARK_WALL) then
3801 d := d + 1;
3802 if ByteBool(gCollideMap[a, b] and MARK_DOOR) then
3803 d := d + 2;
3805 case d of
3806 1: e_DrawPoint(1, b, a, 200, 200, 200);
3807 2: e_DrawPoint(1, b, a, 64, 64, 255);
3808 3: e_DrawPoint(1, b, a, 255, 0, 255);
3809 end;
3810 end;
3813 glPopMatrix();
3815 p.DrawPain();
3816 p.DrawPickup();
3817 p.DrawRulez();
3818 if gShowMap then DrawMinimap(p, _TRect(0, 0, 128, 128));
3819 if g_Debug_Player then
3820 g_Player_DrawDebug(p);
3821 p.DrawGUI();
3822 end;
3824 procedure drawProfilers ();
3825 var
3826 px: Integer = -1;
3827 py: Integer = -1;
3828 begin
3829 if g_profile_frame_draw and (profileFrameDraw <> nil) then px := px-drawProfiles(px, py, profileFrameDraw);
3830 if g_profile_collision and (profMapCollision <> nil) then begin px := px-drawProfiles(px, py, profMapCollision); py -= calcProfilesHeight(profMonsLOS); end;
3831 if g_profile_los and (profMonsLOS <> nil) then begin px := px-drawProfiles(px, py, profMonsLOS); py -= calcProfilesHeight(profMonsLOS); end;
3832 end;
3834 procedure g_Game_Draw();
3835 var
3836 ID: DWORD;
3837 w, h: Word;
3838 ww, hh: Byte;
3839 Time: Int64;
3840 back: string;
3841 plView1, plView2: TPlayer;
3842 Split: Boolean;
3843 begin
3844 if gExit = EXIT_QUIT then Exit;
3846 Time := sys_GetTicks() {div 1000};
3847 FPSCounter := FPSCounter+1;
3848 if Time - FPSTime >= 1000 then
3849 begin
3850 FPS := FPSCounter;
3851 FPSCounter := 0;
3852 FPSTime := Time;
3853 end;
3855 if gGameOn or (gState = STATE_FOLD) then
3856 begin
3857 if (gPlayer1 <> nil) and (gPlayer2 <> nil) then
3858 begin
3859 gSpectMode := SPECT_NONE;
3860 if not gRevertPlayers then
3861 begin
3862 plView1 := gPlayer1;
3863 plView2 := gPlayer2;
3864 end
3865 else
3866 begin
3867 plView1 := gPlayer2;
3868 plView2 := gPlayer1;
3869 end;
3870 end
3871 else
3872 if (gPlayer1 <> nil) or (gPlayer2 <> nil) then
3873 begin
3874 gSpectMode := SPECT_NONE;
3875 if gPlayer2 = nil then
3876 plView1 := gPlayer1
3877 else
3878 plView1 := gPlayer2;
3879 plView2 := nil;
3880 end
3881 else
3882 begin
3883 plView1 := nil;
3884 plView2 := nil;
3885 end;
3887 if (plView1 = nil) and (plView2 = nil) and (gSpectMode = SPECT_NONE) then
3888 gSpectMode := SPECT_STATS;
3890 if gSpectMode = SPECT_PLAYERS then
3891 if gPlayers <> nil then
3892 begin
3893 plView1 := GetActivePlayer_ByID(gSpectPID1);
3894 if plView1 = nil then
3895 begin
3896 gSpectPID1 := GetActivePlayerID_Next();
3897 plView1 := GetActivePlayer_ByID(gSpectPID1);
3898 end;
3899 if gSpectViewTwo then
3900 begin
3901 plView2 := GetActivePlayer_ByID(gSpectPID2);
3902 if plView2 = nil then
3903 begin
3904 gSpectPID2 := GetActivePlayerID_Next();
3905 plView2 := GetActivePlayer_ByID(gSpectPID2);
3906 end;
3907 end;
3908 end;
3910 if gSpectMode = SPECT_MAPVIEW then
3911 begin
3912 // Ðåæèì ïðîñìîòðà êàðòû
3913 Split := False;
3914 e_SetViewPort(0, 0, gScreenWidth, gScreenHeight);
3915 DrawMapView(gSpectX, gSpectY, gScreenWidth, gScreenHeight);
3916 gHearPoint1.Active := True;
3917 gHearPoint1.Coords.X := gScreenWidth div 2 + gSpectX;
3918 gHearPoint1.Coords.Y := gScreenHeight div 2 + gSpectY;
3919 gHearPoint2.Active := False;
3920 end
3921 else
3922 begin
3923 Split := (plView1 <> nil) and (plView2 <> nil);
3925 // Òî÷êè ñëóõà èãðîêîâ
3926 if plView1 <> nil then
3927 begin
3928 gHearPoint1.Active := True;
3929 gHearPoint1.Coords.X := plView1.GameX + PLAYER_RECT.Width;
3930 gHearPoint1.Coords.Y := plView1.GameY + PLAYER_RECT.Height DIV 2;
3931 end else
3932 gHearPoint1.Active := False;
3933 if plView2 <> nil then
3934 begin
3935 gHearPoint2.Active := True;
3936 gHearPoint2.Coords.X := plView2.GameX + PLAYER_RECT.Width;
3937 gHearPoint2.Coords.Y := plView2.GameY + PLAYER_RECT.Height DIV 2;
3938 end else
3939 gHearPoint2.Active := False;
3941 // Ðàçìåð ýêðàíîâ èãðîêîâ:
3942 gPlayerScreenSize.X := gScreenWidth-196;
3943 if Split then
3944 begin
3945 gPlayerScreenSize.Y := gScreenHeight div 2;
3946 if gScreenHeight mod 2 = 0 then
3947 Dec(gPlayerScreenSize.Y);
3948 end
3949 else
3950 gPlayerScreenSize.Y := gScreenHeight;
3952 if Split then
3953 if gScreenHeight mod 2 = 0 then
3954 e_SetViewPort(0, gPlayerScreenSize.Y+2, gPlayerScreenSize.X+196, gPlayerScreenSize.Y)
3955 else
3956 e_SetViewPort(0, gPlayerScreenSize.Y+1, gPlayerScreenSize.X+196, gPlayerScreenSize.Y);
3958 DrawPlayer(plView1);
3959 gPlayer1ScreenCoord.X := sX;
3960 gPlayer1ScreenCoord.Y := sY;
3962 if Split then
3963 begin
3964 e_SetViewPort(0, 0, gPlayerScreenSize.X+196, gPlayerScreenSize.Y);
3966 DrawPlayer(plView2);
3967 gPlayer2ScreenCoord.X := sX;
3968 gPlayer2ScreenCoord.Y := sY;
3969 end;
3971 e_SetViewPort(0, 0, gScreenWidth, gScreenHeight);
3973 if Split then
3974 e_DrawLine(2, 0, gScreenHeight div 2, gScreenWidth, gScreenHeight div 2, 0, 0, 0);
3975 end;
3977 {$IFDEF ENABLE_HOLMES}
3978 // draw inspector
3979 if (g_holmes_enabled) then g_Holmes_Draw();
3980 {$ENDIF}
3982 if MessageText <> '' then
3983 begin
3984 w := 0;
3985 h := 0;
3986 e_CharFont_GetSizeFmt(gMenuFont, MessageText, w, h);
3987 if Split then
3988 e_CharFont_PrintFmt(gMenuFont, (gScreenWidth div 2)-(w div 2),
3989 (gScreenHeight div 2)-(h div 2), MessageText)
3990 else
3991 e_CharFont_PrintFmt(gMenuFont, (gScreenWidth div 2)-(w div 2),
3992 Round(gScreenHeight / 2.75)-(h div 2), MessageText);
3993 end;
3995 if IsDrawStat or (gSpectMode = 1) then DrawStat();
3997 if gSpectHUD and (not gChatShow) and (gSpectMode <> SPECT_NONE) and (not gSpectAuto) then
3998 begin
3999 // Draw spectator GUI
4000 ww := 0;
4001 hh := 0;
4002 e_TextureFontGetSize(gStdFont, ww, hh);
4003 case gSpectMode of
4004 SPECT_STATS:
4005 e_TextureFontPrintEx(0, gScreenHeight - (hh+2)*2, 'MODE: Stats', gStdFont, 255, 255, 255, 1);
4006 SPECT_MAPVIEW:
4007 e_TextureFontPrintEx(0, gScreenHeight - (hh+2)*2, 'MODE: Observe Map', gStdFont, 255, 255, 255, 1);
4008 SPECT_PLAYERS:
4009 e_TextureFontPrintEx(0, gScreenHeight - (hh+2)*2, 'MODE: Watch Players', gStdFont, 255, 255, 255, 1);
4010 end;
4011 e_TextureFontPrintEx(2*ww, gScreenHeight - (hh+2), '< jump >', gStdFont, 255, 255, 255, 1);
4012 if gSpectMode = SPECT_STATS then
4013 begin
4014 e_TextureFontPrintEx(16*ww, gScreenHeight - (hh+2)*2, 'Autoview', gStdFont, 255, 255, 255, 1);
4015 e_TextureFontPrintEx(16*ww, gScreenHeight - (hh+2), '< fire >', gStdFont, 255, 255, 255, 1);
4016 end;
4017 if gSpectMode = SPECT_MAPVIEW then
4018 begin
4019 e_TextureFontPrintEx(22*ww, gScreenHeight - (hh+2)*2, '[-]', gStdFont, 255, 255, 255, 1);
4020 e_TextureFontPrintEx(26*ww, gScreenHeight - (hh+2)*2, 'Step ' + IntToStr(gSpectStep), gStdFont, 255, 255, 255, 1);
4021 e_TextureFontPrintEx(34*ww, gScreenHeight - (hh+2)*2, '[+]', gStdFont, 255, 255, 255, 1);
4022 e_TextureFontPrintEx(18*ww, gScreenHeight - (hh+2), '<prev weap>', gStdFont, 255, 255, 255, 1);
4023 e_TextureFontPrintEx(30*ww, gScreenHeight - (hh+2), '<next weap>', gStdFont, 255, 255, 255, 1);
4024 end;
4025 if gSpectMode = SPECT_PLAYERS then
4026 begin
4027 e_TextureFontPrintEx(22*ww, gScreenHeight - (hh+2)*2, 'Player 1', gStdFont, 255, 255, 255, 1);
4028 e_TextureFontPrintEx(20*ww, gScreenHeight - (hh+2), '<left/right>', gStdFont, 255, 255, 255, 1);
4029 if gSpectViewTwo then
4030 begin
4031 e_TextureFontPrintEx(37*ww, gScreenHeight - (hh+2)*2, 'Player 2', gStdFont, 255, 255, 255, 1);
4032 e_TextureFontPrintEx(34*ww, gScreenHeight - (hh+2), '<prev w/next w>', gStdFont, 255, 255, 255, 1);
4033 e_TextureFontPrintEx(52*ww, gScreenHeight - (hh+2)*2, '2x View', gStdFont, 255, 255, 255, 1);
4034 e_TextureFontPrintEx(51*ww, gScreenHeight - (hh+2), '<up/down>', gStdFont, 255, 255, 255, 1);
4035 end
4036 else
4037 begin
4038 e_TextureFontPrintEx(35*ww, gScreenHeight - (hh+2)*2, '2x View', gStdFont, 255, 255, 255, 1);
4039 e_TextureFontPrintEx(34*ww, gScreenHeight - (hh+2), '<up/down>', gStdFont, 255, 255, 255, 1);
4040 end;
4041 end;
4042 end;
4043 end;
4045 if gPauseMain and gGameOn and (g_ActiveWindow = nil) then
4046 begin
4047 //e_DrawFillQuad(0, 0, gScreenWidth-1, gScreenHeight-1, 48, 48, 48, 180);
4048 e_DarkenQuadWH(0, 0, gScreenWidth, gScreenHeight, 150);
4050 e_CharFont_GetSize(gMenuFont, _lc[I_MENU_PAUSE], w, h);
4051 e_CharFont_Print(gMenuFont, (gScreenWidth div 2)-(w div 2),
4052 (gScreenHeight div 2)-(h div 2), _lc[I_MENU_PAUSE]);
4053 end;
4055 if not gGameOn then
4056 begin
4057 if (gState = STATE_MENU) then
4058 begin
4059 if (g_ActiveWindow = nil) or (g_ActiveWindow.BackTexture = '') then DrawMenuBackground('MENU_BACKGROUND');
4060 // F3 at menu will show game loading dialog
4061 if e_KeyPressed(IK_F3) then g_Menu_Show_LoadMenu(true);
4062 if (g_ActiveWindow <> nil) then
4063 begin
4064 //e_DrawFillQuad(0, 0, gScreenWidth-1, gScreenHeight-1, 48, 48, 48, 180);
4065 e_DarkenQuadWH(0, 0, gScreenWidth, gScreenHeight, 150);
4066 end
4067 else
4068 begin
4069 // F3 at titlepic will show game loading dialog
4070 if e_KeyPressed(IK_F3) then
4071 begin
4072 g_Menu_Show_LoadMenu(true);
4073 if (g_ActiveWindow <> nil) then e_DarkenQuadWH(0, 0, gScreenWidth, gScreenHeight, 150);
4074 end;
4075 end;
4076 end;
4078 if gState = STATE_FOLD then
4079 begin
4080 e_DrawFillQuad(0, 0, gScreenWidth-1, gScreenHeight-1, 0, 0, 0, EndingGameCounter);
4081 end;
4083 if gState = STATE_INTERCUSTOM then
4084 begin
4085 if gLastMap and (gGameSettings.GameMode = GM_COOP) then
4086 begin
4087 back := 'TEXTURE_endpic';
4088 if not g_Texture_Get(back, ID) then
4089 back := _lc[I_TEXTURE_ENDPIC];
4090 end
4091 else
4092 back := 'INTER';
4094 DrawMenuBackground(back);
4096 DrawCustomStat();
4098 if g_ActiveWindow <> nil then
4099 begin
4100 //e_DrawFillQuad(0, 0, gScreenWidth-1, gScreenHeight-1, 48, 48, 48, 180);
4101 e_DarkenQuadWH(0, 0, gScreenWidth, gScreenHeight, 150);
4102 end;
4103 end;
4105 if gState = STATE_INTERSINGLE then
4106 begin
4107 if EndingGameCounter > 0 then
4108 begin
4109 e_DrawFillQuad(0, 0, gScreenWidth-1, gScreenHeight-1, 0, 0, 0, EndingGameCounter);
4110 end
4111 else
4112 begin
4113 back := 'INTER';
4115 DrawMenuBackground(back);
4117 DrawSingleStat();
4119 if g_ActiveWindow <> nil then
4120 begin
4121 //e_DrawFillQuad(0, 0, gScreenWidth-1, gScreenHeight-1, 48, 48, 48, 180);
4122 e_DarkenQuadWH(0, 0, gScreenWidth, gScreenHeight, 150);
4123 end;
4124 end;
4125 end;
4127 if gState = STATE_ENDPIC then
4128 begin
4129 ID := DWORD(-1);
4130 if g_Texture_Get('TEXTURE_endpic', ID) then DrawMenuBackground('TEXTURE_endpic')
4131 else DrawMenuBackground(_lc[I_TEXTURE_ENDPIC]);
4133 if g_ActiveWindow <> nil then
4134 begin
4135 //e_DrawFillQuad(0, 0, gScreenWidth-1, gScreenHeight-1, 48, 48, 48, 180);
4136 e_DarkenQuadWH(0, 0, gScreenWidth, gScreenHeight, 150);
4137 end;
4138 end;
4140 if gState = STATE_SLIST then
4141 begin
4142 // if g_Texture_Get('MENU_BACKGROUND', ID) then
4143 // begin
4144 // e_DrawSize(ID, 0, 0, 0, False, False, gScreenWidth, gScreenHeight);
4145 // //e_DrawFillQuad(0, 0, gScreenWidth-1, gScreenHeight-1, 48, 48, 48, 180);
4146 // end;
4147 DrawMenuBackground('MENU_BACKGROUND');
4148 e_DarkenQuadWH(0, 0, gScreenWidth, gScreenHeight, 150);
4149 g_Serverlist_Draw(slCurrent, slTable);
4150 end;
4151 end;
4153 if g_ActiveWindow <> nil then
4154 begin
4155 if gGameOn then
4156 begin
4157 //e_DrawFillQuad(0, 0, gScreenWidth-1, gScreenHeight-1, 48, 48, 48, 180);
4158 e_DarkenQuadWH(0, 0, gScreenWidth, gScreenHeight, 150);
4159 end;
4160 g_ActiveWindow.Draw();
4161 end;
4163 {$IFNDEF HEADLESS}
4164 g_Console_Draw();
4165 {$ENDIF}
4167 if g_debug_Sounds and gGameOn then
4168 begin
4169 for w := 0 to High(e_SoundsArray) do
4170 for h := 0 to e_SoundsArray[w].nRefs do
4171 e_DrawPoint(1, w+100, h+100, 255, 0, 0);
4172 end;
4174 if gShowFPS then
4175 begin
4176 e_TextureFontPrint(0, 0, Format('FPS: %d', [FPS]), gStdFont);
4177 e_TextureFontPrint(0, 16, Format('UPS: %d', [UPS]), gStdFont);
4178 end;
4180 if gGameOn and gShowTime then
4181 drawTime(gScreenWidth-72, gScreenHeight-16);
4183 if gGameOn then drawProfilers();
4185 {$IFDEF ENABLE_HOLMES}
4186 g_Holmes_DrawUI();
4187 {$ENDIF}
4189 g_Touch_Draw;
4190 end;
4192 procedure g_Game_Quit();
4193 begin
4194 g_Game_StopAllSounds(True);
4195 gMusic.Free();
4196 g_Game_FreeData();
4197 g_PlayerModel_FreeData();
4198 g_Texture_DeleteAll();
4199 g_Frames_DeleteAll();
4200 {$IFNDEF HEADLESS}
4201 //g_Menu_Free(); //k8: this segfaults after resolution change; who cares?
4202 {$ENDIF}
4204 if NetInitDone then g_Net_Free;
4206 // Íàäî óäàëèòü êàðòó ïîñëå òåñòà:
4207 if gMapToDelete <> '' then
4208 g_Game_DeleteTestMap();
4210 gExit := EXIT_QUIT;
4211 sys_RequestQuit;
4212 end;
4214 procedure g_FatalError(Text: String);
4215 begin
4216 g_Console_Add(Format(_lc[I_FATAL_ERROR], [Text]), True);
4217 e_WriteLog(Format(_lc[I_FATAL_ERROR], [Text]), TMsgType.Warning);
4219 gExit := EXIT_SIMPLE;
4220 end;
4222 procedure g_SimpleError(Text: String);
4223 begin
4224 g_Console_Add(Format(_lc[I_SIMPLE_ERROR], [Text]), True);
4225 e_WriteLog(Format(_lc[I_SIMPLE_ERROR], [Text]), TMsgType.Warning);
4226 end;
4228 procedure g_Game_SetupScreenSize();
4229 const
4230 RES_FACTOR = 4.0 / 3.0;
4231 var
4232 s: Single;
4233 rf: Single;
4234 bw, bh: Word;
4235 begin
4236 // Ðàçìåð ýêðàíîâ èãðîêîâ:
4237 gPlayerScreenSize.X := gScreenWidth-196;
4238 if (gPlayer1 <> nil) and (gPlayer2 <> nil) then
4239 gPlayerScreenSize.Y := gScreenHeight div 2
4240 else
4241 gPlayerScreenSize.Y := gScreenHeight;
4243 // Ðàçìåð çàäíåãî ïëàíà:
4244 if BackID <> DWORD(-1) then
4245 begin
4246 s := SKY_STRETCH;
4247 if (gScreenWidth*s > gMapInfo.Width) or
4248 (gScreenHeight*s > gMapInfo.Height) then
4249 begin
4250 gBackSize.X := gScreenWidth;
4251 gBackSize.Y := gScreenHeight;
4252 end
4253 else
4254 begin
4255 e_GetTextureSize(BackID, @bw, @bh);
4256 rf := Single(bw) / Single(bh);
4257 if (rf > RES_FACTOR) then bw := Round(Single(bh) * RES_FACTOR)
4258 else if (rf < RES_FACTOR) then bh := Round(Single(bw) / RES_FACTOR);
4259 s := Max(gScreenWidth / bw, gScreenHeight / bh);
4260 if (s < 1.0) then s := 1.0;
4261 gBackSize.X := Round(bw*s);
4262 gBackSize.Y := Round(bh*s);
4263 end;
4264 end;
4265 end;
4267 procedure g_Game_ChangeResolution(newWidth, newHeight: Word; nowFull, nowMax: Boolean);
4268 begin
4269 sys_SetDisplayMode(newWidth, newHeight, gBPP, nowFull, nowMax);
4270 end;
4272 procedure g_Game_AddPlayer(Team: Byte = TEAM_NONE);
4273 begin
4274 if ((not gGameOn) and (gState <> STATE_INTERCUSTOM))
4275 or (not (gGameSettings.GameType in [GT_CUSTOM, GT_SERVER, GT_CLIENT])) then
4276 Exit;
4277 if gPlayer1 = nil then
4278 begin
4279 if g_Game_IsClient then
4280 begin
4281 if NetPlrUID1 > -1 then
4282 begin
4283 MC_SEND_CheatRequest(NET_CHEAT_SPECTATE);
4284 gPlayer1 := g_Player_Get(NetPlrUID1);
4285 end;
4286 Exit;
4287 end;
4289 if not (Team in [TEAM_RED, TEAM_BLUE]) then
4290 Team := gPlayer1Settings.Team;
4292 // Ñîçäàíèå ïåðâîãî èãðîêà:
4293 gPlayer1 := g_Player_Get(g_Player_Create(gPlayer1Settings.Model,
4294 gPlayer1Settings.Color,
4295 Team, False));
4296 if gPlayer1 = nil then
4297 g_FatalError(Format(_lc[I_GAME_ERROR_PLAYER_CREATE], [1]))
4298 else
4299 begin
4300 gPlayer1.Name := gPlayer1Settings.Name;
4301 g_Console_Add(Format(_lc[I_PLAYER_JOIN], [gPlayer1.Name]), True);
4302 if g_Game_IsServer and g_Game_IsNet then
4303 MH_SEND_PlayerCreate(gPlayer1.UID);
4304 gPlayer1.Respawn(False, True);
4305 g_Net_Slist_ServerPlayerComes();
4306 end;
4308 Exit;
4309 end;
4310 if gPlayer2 = nil then
4311 begin
4312 if g_Game_IsClient then
4313 begin
4314 if NetPlrUID2 > -1 then
4315 gPlayer2 := g_Player_Get(NetPlrUID2);
4316 Exit;
4317 end;
4319 if not (Team in [TEAM_RED, TEAM_BLUE]) then
4320 Team := gPlayer2Settings.Team;
4322 // Ñîçäàíèå âòîðîãî èãðîêà:
4323 gPlayer2 := g_Player_Get(g_Player_Create(gPlayer2Settings.Model,
4324 gPlayer2Settings.Color,
4325 Team, False));
4326 if gPlayer2 = nil then
4327 g_FatalError(Format(_lc[I_GAME_ERROR_PLAYER_CREATE], [2]))
4328 else
4329 begin
4330 gPlayer2.Name := gPlayer2Settings.Name;
4331 g_Console_Add(Format(_lc[I_PLAYER_JOIN], [gPlayer2.Name]), True);
4332 if g_Game_IsServer and g_Game_IsNet then
4333 MH_SEND_PlayerCreate(gPlayer2.UID);
4334 gPlayer2.Respawn(False, True);
4335 g_Net_Slist_ServerPlayerComes();
4336 end;
4338 Exit;
4339 end;
4340 end;
4342 procedure g_Game_RemovePlayer();
4343 var
4344 Pl: TPlayer;
4345 begin
4346 if ((not gGameOn) and (gState <> STATE_INTERCUSTOM))
4347 or (not (gGameSettings.GameType in [GT_CUSTOM, GT_SERVER, GT_CLIENT])) then
4348 Exit;
4349 Pl := gPlayer2;
4350 if Pl <> nil then
4351 begin
4352 if g_Game_IsServer then
4353 begin
4354 Pl.Lives := 0;
4355 Pl.Kill(K_SIMPLEKILL, 0, HIT_DISCON);
4356 g_Console_Add(Format(_lc[I_PLAYER_LEAVE], [Pl.Name]), True);
4357 g_Player_Remove(Pl.UID);
4358 g_Net_Slist_ServerPlayerLeaves();
4359 end else
4360 gPlayer2 := nil;
4361 Exit;
4362 end;
4363 Pl := gPlayer1;
4364 if Pl <> nil then
4365 begin
4366 if g_Game_IsServer then
4367 begin
4368 Pl.Lives := 0;
4369 Pl.Kill(K_SIMPLEKILL, 0, HIT_DISCON);
4370 g_Console_Add(Format(_lc[I_PLAYER_LEAVE], [Pl.Name]), True);
4371 g_Player_Remove(Pl.UID);
4372 g_Net_Slist_ServerPlayerLeaves();
4373 end else
4374 begin
4375 gPlayer1 := nil;
4376 MC_SEND_CheatRequest(NET_CHEAT_SPECTATE);
4377 end;
4378 Exit;
4379 end;
4380 g_Net_Slist_ServerPlayerLeaves();
4381 end;
4383 procedure g_Game_Spectate();
4384 begin
4385 g_Game_RemovePlayer();
4386 if gPlayer1 <> nil then
4387 g_Game_RemovePlayer();
4388 end;
4390 procedure g_Game_SpectateCenterView();
4391 begin
4392 gSpectX := Max(gMapInfo.Width div 2 - gScreenWidth div 2, 0);
4393 gSpectY := Max(gMapInfo.Height div 2 - gScreenHeight div 2, 0);
4394 end;
4396 procedure g_Game_StartSingle(Map: String; TwoPlayers: Boolean; nPlayers: Byte);
4397 var
4398 i, nPl: Integer;
4399 tmps: AnsiString;
4400 begin
4401 g_Game_Free();
4403 e_WriteLog('Starting singleplayer game...', TMsgType.Notify);
4405 g_Game_ClearLoading();
4407 // Íàñòðîéêè èãðû:
4408 FillByte(gGameSettings, SizeOf(TGameSettings), 0);
4409 gAimLine := False;
4410 gShowMap := False;
4411 gGameSettings.GameType := GT_SINGLE;
4412 gGameSettings.MaxLives := 0;
4413 gGameSettings.Options := gGameSettings.Options + GAME_OPTION_ALLOWEXIT;
4414 gGameSettings.Options := gGameSettings.Options + GAME_OPTION_MONSTERS;
4415 gGameSettings.Options := gGameSettings.Options + GAME_OPTION_BOTVSMONSTER;
4416 gSwitchGameMode := GM_SINGLE;
4418 g_Game_ExecuteEvent('ongamestart');
4420 // Óñòàíîâêà ðàçìåðîâ îêîí èãðîêîâ:
4421 g_Game_SetupScreenSize();
4423 // Ñîçäàíèå ïåðâîãî èãðîêà:
4424 gPlayer1 := g_Player_Get(g_Player_Create(gPlayer1Settings.Model,
4425 gPlayer1Settings.Color,
4426 gPlayer1Settings.Team, False));
4427 if gPlayer1 = nil then
4428 begin
4429 g_FatalError(Format(_lc[I_GAME_ERROR_PLAYER_CREATE], [1]));
4430 Exit;
4431 end;
4433 gPlayer1.Name := gPlayer1Settings.Name;
4434 nPl := 1;
4436 // Ñîçäàíèå âòîðîãî èãðîêà, åñëè åñòü:
4437 if TwoPlayers then
4438 begin
4439 gPlayer2 := g_Player_Get(g_Player_Create(gPlayer2Settings.Model,
4440 gPlayer2Settings.Color,
4441 gPlayer2Settings.Team, False));
4442 if gPlayer2 = nil then
4443 begin
4444 g_FatalError(Format(_lc[I_GAME_ERROR_PLAYER_CREATE], [2]));
4445 Exit;
4446 end;
4448 gPlayer2.Name := gPlayer2Settings.Name;
4449 Inc(nPl);
4450 end;
4452 // Çàãðóçêà è çàïóñê êàðòû:
4453 if not g_Game_StartMap(false{asMegawad}, MAP, True) then
4454 begin
4455 if (Pos(':\', Map) > 0) or (Pos(':/', Map) > 0) then tmps := Map else tmps := gGameSettings.WAD + ':\' + MAP;
4456 g_FatalError(Format(_lc[I_GAME_ERROR_MAP_LOAD], [tmps]));
4457 Exit;
4458 end;
4460 // Íàñòðîéêè èãðîêîâ è áîòîâ:
4461 g_Player_Init();
4463 // Ñîçäàåì áîòîâ:
4464 for i := nPl+1 to nPlayers do
4465 g_Player_Create(STD_PLAYER_MODEL, _RGB(0, 0, 0), 0, True);
4466 end;
4468 procedure g_Game_StartCustom(Map: String; GameMode: Byte;
4469 TimeLimit, GoalLimit: Word;
4470 MaxLives: Byte;
4471 Options: LongWord; nPlayers: Byte);
4472 var
4473 i, nPl: Integer;
4474 begin
4475 g_Game_Free();
4477 e_WriteLog('Starting custom game...', TMsgType.Notify);
4479 g_Game_ClearLoading();
4481 // Íàñòðîéêè èãðû:
4482 gGameSettings.GameType := GT_CUSTOM;
4483 gGameSettings.GameMode := GameMode;
4484 gSwitchGameMode := GameMode;
4485 gGameSettings.TimeLimit := TimeLimit;
4486 gGameSettings.GoalLimit := GoalLimit;
4487 gGameSettings.MaxLives := IfThen(GameMode = GM_CTF, 0, MaxLives);
4488 gGameSettings.Options := Options;
4490 gCoopTotalMonstersKilled := 0;
4491 gCoopTotalSecretsFound := 0;
4492 gCoopTotalMonsters := 0;
4493 gCoopTotalSecrets := 0;
4494 gAimLine := False;
4495 gShowMap := False;
4497 g_Game_ExecuteEvent('ongamestart');
4499 // Óñòàíîâêà ðàçìåðîâ îêîí èãðîêîâ:
4500 g_Game_SetupScreenSize();
4502 // Ðåæèì íàáëþäàòåëÿ:
4503 if nPlayers = 0 then
4504 begin
4505 gPlayer1 := nil;
4506 gPlayer2 := nil;
4507 end;
4509 nPl := 0;
4510 if nPlayers >= 1 then
4511 begin
4512 // Ñîçäàíèå ïåðâîãî èãðîêà:
4513 gPlayer1 := g_Player_Get(g_Player_Create(gPlayer1Settings.Model,
4514 gPlayer1Settings.Color,
4515 gPlayer1Settings.Team, False));
4516 if gPlayer1 = nil then
4517 begin
4518 g_FatalError(Format(_lc[I_GAME_ERROR_PLAYER_CREATE], [1]));
4519 Exit;
4520 end;
4522 gPlayer1.Name := gPlayer1Settings.Name;
4523 Inc(nPl);
4524 end;
4526 if nPlayers >= 2 then
4527 begin
4528 // Ñîçäàíèå âòîðîãî èãðîêà:
4529 gPlayer2 := g_Player_Get(g_Player_Create(gPlayer2Settings.Model,
4530 gPlayer2Settings.Color,
4531 gPlayer2Settings.Team, False));
4532 if gPlayer2 = nil then
4533 begin
4534 g_FatalError(Format(_lc[I_GAME_ERROR_PLAYER_CREATE], [2]));
4535 Exit;
4536 end;
4538 gPlayer2.Name := gPlayer2Settings.Name;
4539 Inc(nPl);
4540 end;
4542 // Çàãðóçêà è çàïóñê êàðòû:
4543 if not g_Game_StartMap(true{asMegawad}, Map, True) then
4544 begin
4545 g_FatalError(Format(_lc[I_GAME_ERROR_MAP_LOAD], [Map]));
4546 Exit;
4547 end;
4549 // Íåò òî÷åê ïîÿâëåíèÿ:
4550 if (g_Map_GetPointCount(RESPAWNPOINT_PLAYER1) +
4551 g_Map_GetPointCount(RESPAWNPOINT_PLAYER2) +
4552 g_Map_GetPointCount(RESPAWNPOINT_DM) +
4553 g_Map_GetPointCount(RESPAWNPOINT_RED)+
4554 g_Map_GetPointCount(RESPAWNPOINT_BLUE)) < 1 then
4555 begin
4556 g_FatalError(_lc[I_GAME_ERROR_GET_SPAWN]);
4557 Exit;
4558 end;
4560 // Íàñòðîéêè èãðîêîâ è áîòîâ:
4561 g_Player_Init();
4563 // Ñîçäàåì áîòîâ:
4564 for i := nPl+1 to nPlayers do
4565 g_Player_Create(STD_PLAYER_MODEL, _RGB(0, 0, 0), 0, True);
4566 end;
4568 procedure g_Game_StartServer(Map: String; GameMode: Byte;
4569 TimeLimit, GoalLimit: Word; MaxLives: Byte;
4570 Options: LongWord; nPlayers: Byte;
4571 IPAddr: LongWord; Port: Word);
4572 begin
4573 g_Game_Free();
4574 g_Net_Slist_ServerClosed();
4576 e_WriteLog('Starting net game (server)...', TMsgType.Notify);
4578 g_Game_ClearLoading();
4580 // Íàñòðîéêè èãðû:
4581 gGameSettings.GameType := GT_SERVER;
4582 gGameSettings.GameMode := GameMode;
4583 gSwitchGameMode := GameMode;
4584 gGameSettings.TimeLimit := TimeLimit;
4585 gGameSettings.GoalLimit := GoalLimit;
4586 gGameSettings.MaxLives := IfThen(GameMode = GM_CTF, 0, MaxLives);
4587 gGameSettings.Options := Options;
4589 gCoopTotalMonstersKilled := 0;
4590 gCoopTotalSecretsFound := 0;
4591 gCoopTotalMonsters := 0;
4592 gCoopTotalSecrets := 0;
4593 gAimLine := False;
4594 gShowMap := False;
4596 g_Game_ExecuteEvent('ongamestart');
4598 // Óñòàíîâêà ðàçìåðîâ îêíà èãðîêà
4599 g_Game_SetupScreenSize();
4601 // Ðåæèì íàáëþäàòåëÿ:
4602 if nPlayers = 0 then
4603 begin
4604 gPlayer1 := nil;
4605 gPlayer2 := nil;
4606 end;
4608 if nPlayers >= 1 then
4609 begin
4610 // Ñîçäàíèå ïåðâîãî èãðîêà:
4611 gPlayer1 := g_Player_Get(g_Player_Create(gPlayer1Settings.Model,
4612 gPlayer1Settings.Color,
4613 gPlayer1Settings.Team, False));
4614 if gPlayer1 = nil then
4615 begin
4616 g_FatalError(Format(_lc[I_GAME_ERROR_PLAYER_CREATE], [1]));
4617 Exit;
4618 end;
4620 gPlayer1.Name := gPlayer1Settings.Name;
4621 end;
4623 if nPlayers >= 2 then
4624 begin
4625 // Ñîçäàíèå âòîðîãî èãðîêà:
4626 gPlayer2 := g_Player_Get(g_Player_Create(gPlayer2Settings.Model,
4627 gPlayer2Settings.Color,
4628 gPlayer2Settings.Team, False));
4629 if gPlayer2 = nil then
4630 begin
4631 g_FatalError(Format(_lc[I_GAME_ERROR_PLAYER_CREATE], [2]));
4632 Exit;
4633 end;
4635 gPlayer2.Name := gPlayer2Settings.Name;
4636 end;
4638 g_Game_SetLoadingText(_lc[I_LOAD_HOST], 0, False);
4639 if NetForwardPorts then
4640 g_Game_SetLoadingText(_lc[I_LOAD_PORTS], 0, False);
4642 // Ñòàðòóåì ñåðâåð
4643 if not g_Net_Host(IPAddr, Port, NetMaxClients) then
4644 begin
4645 g_FatalError(_lc[I_NET_MSG] + Format(_lc[I_NET_ERR_HOST], [Port]));
4646 Exit;
4647 end;
4649 g_Net_Slist_Set(NetSlistIP, NetSlistPort, NetSlistList);
4651 g_Net_Slist_ServerStarted();
4653 // Çàãðóçêà è çàïóñê êàðòû:
4654 if not g_Game_StartMap(false{asMegawad}, Map, True) then
4655 begin
4656 g_Net_Slist_ServerClosed();
4657 g_FatalError(Format(_lc[I_GAME_ERROR_MAP_LOAD], [Map]));
4658 Exit;
4659 end;
4661 // Íåò òî÷åê ïîÿâëåíèÿ:
4662 if (g_Map_GetPointCount(RESPAWNPOINT_PLAYER1) +
4663 g_Map_GetPointCount(RESPAWNPOINT_PLAYER2) +
4664 g_Map_GetPointCount(RESPAWNPOINT_DM) +
4665 g_Map_GetPointCount(RESPAWNPOINT_RED)+
4666 g_Map_GetPointCount(RESPAWNPOINT_BLUE)) < 1 then
4667 begin
4668 g_Net_Slist_ServerClosed();
4669 g_FatalError(_lc[I_GAME_ERROR_GET_SPAWN]);
4670 Exit;
4671 end;
4673 // Íàñòðîéêè èãðîêîâ è áîòîâ:
4674 g_Player_Init();
4676 g_Net_Slist_ServerMapStarted();
4677 NetState := NET_STATE_GAME;
4678 end;
4680 procedure g_Game_StartClient(Addr: String; Port: Word; PW: String);
4681 var
4682 Map: String;
4683 WadName: string;
4684 Ptr: Pointer;
4685 T: Cardinal;
4686 MID: Byte;
4687 State: Byte;
4688 OuterLoop: Boolean;
4689 newResPath: string;
4690 InMsg: TMsg;
4691 begin
4692 g_Game_Free();
4694 State := 0;
4695 e_WriteLog('Starting net game (client)...', TMsgType.Notify);
4696 e_WriteLog('NET: Trying to connect to ' + Addr + ':' + IntToStr(Port) + '...', TMsgType.Notify);
4698 g_Game_ClearLoading();
4700 // Íàñòðîéêè èãðû:
4701 gGameSettings.GameType := GT_CLIENT;
4703 gCoopTotalMonstersKilled := 0;
4704 gCoopTotalSecretsFound := 0;
4705 gCoopTotalMonsters := 0;
4706 gCoopTotalSecrets := 0;
4707 gAimLine := False;
4708 gShowMap := False;
4710 g_Game_ExecuteEvent('ongamestart');
4712 // Óñòàíîâêà ðàçìåðîâ îêîí èãðîêîâ:
4713 g_Game_SetupScreenSize();
4715 NetState := NET_STATE_AUTH;
4717 g_Game_SetLoadingText(_lc[I_LOAD_CONNECT], 0, False);
4719 // create (or update) map/resource databases
4720 g_Res_CreateDatabases(true);
4722 // Ñòàðòóåì êëèåíò
4723 if not g_Net_Connect(Addr, Port) then
4724 begin
4725 g_FatalError(_lc[I_NET_MSG] + _lc[I_NET_ERR_CONN]);
4726 NetState := NET_STATE_NONE;
4727 Exit;
4728 end;
4730 g_Game_SetLoadingText(_lc[I_LOAD_SEND_INFO], 0, False);
4731 MC_SEND_Info(PW);
4732 g_Game_SetLoadingText(_lc[I_LOAD_WAIT_INFO], 0, False);
4734 OuterLoop := True;
4735 while OuterLoop do
4736 begin
4737 // fuck! https://www.mail-archive.com/enet-discuss@cubik.org/msg00852.html
4738 // tl;dr: on shitdows, we can get -1 sometimes, and it is *NOT* a failure.
4739 // thank you, enet. let's ignore failures altogether then.
4740 while (enet_host_service(NetHost, @NetEvent, 50) > 0) do
4741 begin
4742 if (NetEvent.kind = ENET_EVENT_TYPE_RECEIVE) then
4743 begin
4744 if (NetEvent.channelID = NET_CHAN_DOWNLOAD_EX) then
4745 begin
4746 // ignore all download packets, they're processed by separate code
4747 enet_packet_destroy(NetEvent.packet);
4748 continue;
4749 end;
4750 Ptr := NetEvent.packet^.data;
4751 if not InMsg.Init(Ptr, NetEvent.packet^.dataLength, True) then
4752 begin
4753 enet_packet_destroy(NetEvent.packet);
4754 continue;
4755 end;
4757 InMsg.ReadLongWord(); // skip size
4758 MID := InMsg.ReadByte();
4760 if (MID = NET_MSG_INFO) and (State = 0) then
4761 begin
4762 NetMyID := InMsg.ReadByte();
4763 NetPlrUID1 := InMsg.ReadWord();
4765 WadName := InMsg.ReadString();
4766 Map := InMsg.ReadString();
4768 gWADHash := InMsg.ReadMD5();
4770 gGameSettings.GameMode := InMsg.ReadByte();
4771 gSwitchGameMode := gGameSettings.GameMode;
4772 gGameSettings.GoalLimit := InMsg.ReadWord();
4773 gGameSettings.TimeLimit := InMsg.ReadWord();
4774 gGameSettings.MaxLives := InMsg.ReadByte();
4775 gGameSettings.Options := InMsg.ReadLongWord();
4776 T := InMsg.ReadLongWord();
4778 //newResPath := g_Res_SearchSameWAD(MapsDir, WadName, gWADHash);
4779 //if newResPath = '' then
4780 begin
4781 //g_Game_SetLoadingText(_lc[I_LOAD_DL_RES], 0, False);
4782 newResPath := g_Res_DownloadMapWAD(ExtractFileName(WadName), gWADHash);
4783 if newResPath = '' then
4784 begin
4785 g_FatalError(_lc[I_NET_ERR_HASH]);
4786 enet_packet_destroy(NetEvent.packet);
4787 NetState := NET_STATE_NONE;
4788 Exit;
4789 end;
4790 e_LogWritefln('using downloaded map wad [%s] for [%s]`', [newResPath, WadName], TMsgType.Notify);
4791 end;
4792 //newResPath := ExtractRelativePath(MapsDir, newResPath);
4795 gPlayer1 := g_Player_Get(g_Player_Create(gPlayer1Settings.Model,
4796 gPlayer1Settings.Color,
4797 gPlayer1Settings.Team, False));
4799 if gPlayer1 = nil then
4800 begin
4801 g_FatalError(Format(_lc[I_GAME_ERROR_PLAYER_CREATE], [1]));
4803 enet_packet_destroy(NetEvent.packet);
4804 NetState := NET_STATE_NONE;
4805 Exit;
4806 end;
4808 gPlayer1.Name := gPlayer1Settings.Name;
4809 gPlayer1.UID := NetPlrUID1;
4810 gPlayer1.Reset(True);
4812 if not g_Game_StartMap(false{asMegawad}, newResPath + ':\' + Map, True) then
4813 begin
4814 g_FatalError(Format(_lc[I_GAME_ERROR_MAP_LOAD], [WadName + ':\' + Map]));
4816 enet_packet_destroy(NetEvent.packet);
4817 NetState := NET_STATE_NONE;
4818 Exit;
4819 end;
4821 gTime := T;
4823 State := 1;
4824 OuterLoop := False;
4825 enet_packet_destroy(NetEvent.packet);
4826 break;
4827 end
4828 else
4829 enet_packet_destroy(NetEvent.packet);
4830 end
4831 else
4832 begin
4833 if (NetEvent.kind = ENET_EVENT_TYPE_DISCONNECT) then
4834 begin
4835 State := 0;
4836 if (NetEvent.data <= NET_DISC_MAX) then
4837 g_Console_Add(_lc[I_NET_MSG_ERROR] + _lc[I_NET_ERR_CONN] + ' ' +
4838 _lc[TStrings_Locale(Cardinal(I_NET_DISC_NONE) + NetEvent.data)], True);
4839 OuterLoop := False;
4840 Break;
4841 end;
4842 end;
4843 end;
4845 ProcessLoading(true);
4847 if g_Net_UserRequestExit() then
4848 begin
4849 State := 0;
4850 break;
4851 end;
4852 end;
4854 if State <> 1 then
4855 begin
4856 g_FatalError(_lc[I_NET_MSG] + _lc[I_NET_ERR_CONN]);
4857 NetState := NET_STATE_NONE;
4858 Exit;
4859 end;
4861 gLMSRespawn := LMS_RESPAWN_NONE;
4862 gLMSRespawnTime := 0;
4864 g_Player_Init();
4865 NetState := NET_STATE_GAME;
4866 MC_SEND_FullStateRequest;
4867 e_WriteLog('NET: Connection successful.', TMsgType.Notify);
4868 end;
4870 var
4871 lastAsMegaWad: Boolean = false;
4873 procedure g_Game_ChangeMap(const MapPath: String);
4874 var
4875 Force: Boolean;
4876 begin
4877 g_Game_ClearLoading();
4879 Force := gGameSettings.GameMode in [GM_DM, GM_TDM, GM_CTF];
4880 // Åñëè óðîâåíü çàâåðøèëñÿ ïî òðèããåðó Âûõîä, íå î÷èùàòü èíâåíòàðü
4881 if gExitByTrigger then
4882 begin
4883 Force := False;
4884 gExitByTrigger := False;
4885 end;
4886 if not g_Game_StartMap(lastAsMegaWad, MapPath, Force) then
4887 g_FatalError(Format(_lc[I_GAME_ERROR_MAP_LOAD], [MapPath]));
4888 end;
4890 procedure g_Game_Restart();
4891 var
4892 Map: string;
4893 begin
4894 if g_Game_IsClient then
4895 Exit;
4896 map := g_ExtractFileName(gMapInfo.Map);
4897 e_LogWritefln('g_Game_Restart: map = "%s" gCurrentMapFileName = "%s"', [map, gCurrentMapFileName]);
4899 MessageTime := 0;
4900 gGameOn := False;
4901 g_Game_ClearLoading();
4902 g_Game_StartMap(lastAsMegaWad, Map, True, gCurrentMapFileName);
4903 end;
4905 function g_Game_StartMap (asMegawad: Boolean; Map: String; Force: Boolean = False; const oldMapPath: AnsiString=''): Boolean;
4906 var
4907 NewWAD, ResName: String;
4908 I: Integer;
4909 nws: AnsiString;
4910 begin
4911 g_Map_Free((Map <> gCurrentMapFileName) and (oldMapPath <> gCurrentMapFileName));
4912 g_Player_RemoveAllCorpses();
4914 if (not g_Game_IsClient) and
4915 (gSwitchGameMode <> gGameSettings.GameMode) and
4916 (gGameSettings.GameMode <> GM_SINGLE) then
4917 begin
4918 if gSwitchGameMode = GM_CTF then
4919 gGameSettings.MaxLives := 0;
4920 gGameSettings.GameMode := gSwitchGameMode;
4921 Force := True;
4922 end else
4923 gSwitchGameMode := gGameSettings.GameMode;
4925 g_Player_ResetTeams();
4927 lastAsMegaWad := asMegawad;
4928 if isWadPath(Map) then
4929 begin
4930 NewWAD := g_ExtractWadName(Map);
4931 ResName := g_ExtractFileName(Map);
4932 if g_Game_IsServer then
4933 begin
4934 nws := findDiskWad(NewWAD);
4935 //writeln('000: Map=[', Map, ']; nws=[', nws, ']; NewWAD=[', NewWAD, ']');
4936 if (asMegawad) then
4937 begin
4938 if (length(nws) = 0) then nws := e_FindWad(MegawadDirs, NewWAD);
4939 if (length(nws) = 0) then nws := e_FindWad(MapDirs, NewWAD);
4940 end
4941 else
4942 begin
4943 if (length(nws) = 0) then nws := e_FindWad(MapDirs, NewWAD);
4944 if (length(nws) = 0) then nws := e_FindWad(MegawadDirs, NewWAD);
4945 end;
4946 //if (length(nws) = 0) then nws := e_FindWad(MapDownloadDirs, NewWAD);
4947 //writeln('001: Map=[', Map, ']; nws=[', nws, ']; NewWAD=[', NewWAD, ']');
4948 //nws := NewWAD;
4949 if (length(nws) = 0) then
4950 begin
4951 ResName := ''; // failed
4952 end
4953 else
4954 begin
4955 NewWAD := nws;
4956 if (g_Game_IsNet) then gWADHash := MD5File(nws);
4957 //writeln('********: nws=', nws, ' : Map=', Map, ' : nw=', NewWAD, ' : resname=', ResName);
4958 g_Game_LoadWAD(NewWAD);
4959 end;
4960 end
4961 else
4962 begin
4963 // hash received in MC_RECV_GameEvent -> NET_EV_MAPSTART
4964 NewWAD := g_Game_ClientWAD(NewWAD, gWADHash);
4965 end;
4966 end
4967 else
4968 begin
4969 NewWAD := gGameSettings.WAD;
4970 ResName := Map;
4971 end;
4973 //writeln('********: gsw=', gGameSettings.WAD, '; rn=', ResName);
4974 result := false;
4975 if (ResName <> '') and (NewWAD <> '') then
4976 begin
4977 //result := g_Map_Load(gGameSettings.WAD + ':\' + ResName);
4978 result := g_Map_Load(NewWAD+':\'+ResName);
4979 end;
4980 if Result then
4981 begin
4982 g_Player_ResetAll(Force or gLastMap, gGameSettings.GameType = GT_SINGLE);
4984 gState := STATE_NONE;
4985 g_ActiveWindow := nil;
4986 gGameOn := True;
4988 DisableCheats();
4989 ResetTimer();
4991 if gGameSettings.GameMode = GM_CTF then
4992 begin
4993 g_Map_ResetFlag(FLAG_RED);
4994 g_Map_ResetFlag(FLAG_BLUE);
4995 // CTF, à ôëàãîâ íåò:
4996 if not g_Map_HaveFlagPoints() then
4997 g_SimpleError(_lc[I_GAME_ERROR_CTF]);
4998 end;
4999 end
5000 else
5001 begin
5002 gState := STATE_MENU;
5003 gGameOn := False;
5004 end;
5006 gExit := 0;
5007 gPauseMain := false;
5008 gPauseHolmes := false;
5009 gTime := 0;
5010 NetTimeToUpdate := 1;
5011 NetTimeToReliable := 0;
5012 NetTimeToMaster := NetMasterRate;
5013 gLMSRespawn := LMS_RESPAWN_NONE;
5014 gLMSRespawnTime := 0;
5015 gMissionFailed := False;
5016 gNextMap := '';
5018 gCoopMonstersKilled := 0;
5019 gCoopSecretsFound := 0;
5021 gVoteInProgress := False;
5022 gVotePassed := False;
5023 gVoteCount := 0;
5024 gVoted := False;
5026 gStatsOff := False;
5028 if not gGameOn then Exit;
5030 g_Game_SpectateCenterView();
5032 if (gGameSettings.MaxLives > 0) and (gGameSettings.WarmupTime > 0) then
5033 begin
5034 gLMSRespawn := LMS_RESPAWN_WARMUP;
5035 gLMSRespawnTime := gTime + gGameSettings.WarmupTime*1000;
5036 gLMSSoftSpawn := True;
5037 if NetMode = NET_SERVER then
5038 MH_SEND_GameEvent(NET_EV_LMS_WARMUP, (gLMSRespawnTime - gTime) div 1000)
5039 else
5040 g_Console_Add(Format(_lc[I_MSG_WARMUP_START], [(gLMSRespawnTime - gTime) div 1000]), True);
5041 end;
5043 if NetMode = NET_SERVER then
5044 begin
5045 MH_SEND_GameEvent(NET_EV_MAPSTART, gGameSettings.GameMode, Map);
5047 // Ìàñòåðñåðâåð
5048 g_Net_Slist_ServerMapStarted();
5050 if NetClients <> nil then
5051 for I := 0 to High(NetClients) do
5052 if NetClients[I].Used then
5053 begin
5054 NetClients[I].Voted := False;
5055 if NetClients[I].RequestedFullUpdate then
5056 begin
5057 MH_SEND_Everything((NetClients[I].State = NET_STATE_AUTH), I);
5058 NetClients[I].RequestedFullUpdate := False;
5059 end;
5060 end;
5062 g_Net_UnbanNonPermHosts();
5063 end;
5065 if gLastMap then
5066 begin
5067 gCoopTotalMonstersKilled := 0;
5068 gCoopTotalSecretsFound := 0;
5069 gCoopTotalMonsters := 0;
5070 gCoopTotalSecrets := 0;
5071 gLastMap := False;
5072 end;
5074 g_Game_ExecuteEvent('onmapstart');
5075 end;
5077 procedure SetFirstLevel;
5078 begin
5079 gNextMap := '';
5081 MapList := g_Map_GetMapsList(gGameSettings.WAD);
5082 if MapList = nil then
5083 Exit;
5085 SortSArray(MapList);
5086 gNextMap := MapList[Low(MapList)];
5088 MapList := nil;
5089 end;
5091 procedure g_Game_ExitLevel(const Map: AnsiString);
5092 begin
5093 gNextMap := Map;
5095 gCoopTotalMonstersKilled := gCoopTotalMonstersKilled + gCoopMonstersKilled;
5096 gCoopTotalSecretsFound := gCoopTotalSecretsFound + gCoopSecretsFound;
5097 gCoopTotalMonsters := gCoopTotalMonsters + gTotalMonsters;
5098 gCoopTotalSecrets := gCoopTotalSecrets + gSecretsCount;
5100 // Âûøëè â âûõîä â Îäèíî÷íîé èãðå:
5101 if gGameSettings.GameType = GT_SINGLE then
5102 gExit := EXIT_ENDLEVELSINGLE
5103 else // Âûøëè â âûõîä â Ñâîåé èãðå
5104 begin
5105 gExit := EXIT_ENDLEVELCUSTOM;
5106 if gGameSettings.GameMode = GM_COOP then
5107 g_Player_RememberAll;
5109 if not g_Map_Exist(gGameSettings.WAD + ':\' + gNextMap) then
5110 begin
5111 gLastMap := True;
5112 if gGameSettings.GameMode = GM_COOP then
5113 gStatsOff := True;
5115 gStatsPressed := True;
5116 gNextMap := 'MAP01';
5118 if not g_Map_Exist(gGameSettings.WAD + ':\' + gNextMap) then
5119 g_Game_NextLevel;
5121 if g_Game_IsNet then
5122 begin
5123 MH_SEND_GameStats();
5124 MH_SEND_CoopStats();
5125 end;
5126 end;
5127 end;
5128 end;
5130 procedure g_Game_RestartLevel();
5131 var
5132 Map: string;
5133 begin
5134 if gGameSettings.GameMode = GM_SINGLE then
5135 begin
5136 g_Game_Restart();
5137 Exit;
5138 end;
5139 gExit := EXIT_ENDLEVELCUSTOM;
5140 Map := g_ExtractFileName(gMapInfo.Map);
5141 gNextMap := Map;
5142 end;
5144 function g_Game_ClientWAD (NewWAD: String; const WHash: TMD5Digest): AnsiString;
5145 var
5146 gWAD{, xwad}: String;
5147 begin
5148 result := NewWAD;
5149 if not g_Game_IsClient then Exit;
5150 //e_LogWritefln('*** g_Game_ClientWAD: `%s`', [NewWAD]);
5152 gWAD := g_Res_DownloadMapWAD(ExtractFileName(NewWAD), WHash);
5153 if gWAD = '' then
5154 begin
5155 result := '';
5156 g_Game_Free();
5157 g_FatalError(Format(_lc[I_GAME_ERROR_MAP_WAD], [ExtractFileName(NewWAD)]));
5158 Exit;
5159 end;
5161 e_LogWritefln('using downloaded client map wad [%s] for [%s]', [gWAD, NewWAD], TMsgType.Notify);
5162 NewWAD := gWAD;
5164 g_Game_LoadWAD(NewWAD);
5165 result := NewWAD;
5168 if LowerCase(NewWAD) = LowerCase(gGameSettings.WAD) then Exit;
5169 gWAD := g_Res_SearchSameWAD(MapsDir, ExtractFileName(NewWAD), WHash);
5170 if gWAD = '' then
5171 begin
5172 g_Game_SetLoadingText(_lc[I_LOAD_DL_RES], 0, False);
5173 gWAD := g_Res_DownloadMapWAD(ExtractFileName(NewWAD), WHash);
5174 if gWAD = '' then
5175 begin
5176 g_Game_Free();
5177 g_FatalError(Format(_lc[I_GAME_ERROR_MAP_WAD], [ExtractFileName(NewWAD)]));
5178 Exit;
5179 end;
5180 end;
5181 NewWAD := ExtractRelativePath(MapsDir, gWAD);
5182 g_Game_LoadWAD(NewWAD);
5184 end;
5186 procedure g_Game_RestartRound(NoMapRestart: Boolean = False);
5187 var
5188 i, n, nb, nr: Integer;
5190 function monRespawn (mon: TMonster): Boolean;
5191 begin
5192 result := false; // don't stop
5193 if not mon.FNoRespawn then mon.Respawn();
5194 end;
5196 begin
5197 if not g_Game_IsServer then Exit;
5198 if gLMSRespawn = LMS_RESPAWN_NONE then Exit;
5199 gLMSRespawn := LMS_RESPAWN_NONE;
5200 gLMSRespawnTime := 0;
5201 MessageTime := 0;
5203 if (gGameSettings.GameMode = GM_COOP) and not NoMapRestart then
5204 begin
5205 gMissionFailed := True;
5206 g_Game_RestartLevel;
5207 Exit;
5208 end;
5210 n := 0; nb := 0; nr := 0;
5211 for i := Low(gPlayers) to High(gPlayers) do
5212 if (gPlayers[i] <> nil) and
5213 ((not gPlayers[i].FSpectator) or gPlayers[i].FWantsInGame or
5214 (gPlayers[i] is TBot)) then
5215 begin
5216 Inc(n);
5217 if gPlayers[i].Team = TEAM_RED then Inc(nr)
5218 else if gPlayers[i].Team = TEAM_BLUE then Inc(nb)
5219 end;
5221 if (n < 2) or ((gGameSettings.GameMode = GM_TDM) and ((nr = 0) or (nb = 0))) then
5222 begin
5223 // wait a second until the fuckers finally decide to join
5224 gLMSRespawn := LMS_RESPAWN_WARMUP;
5225 gLMSRespawnTime := gTime + 1000;
5226 gLMSSoftSpawn := NoMapRestart;
5227 Exit;
5228 end;
5230 g_Player_RemoveAllCorpses;
5231 g_Game_Message(_lc[I_MESSAGE_LMS_START], 144);
5232 if g_Game_IsNet then
5233 MH_SEND_GameEvent(NET_EV_LMS_START);
5235 for i := Low(gPlayers) to High(gPlayers) do
5236 begin
5237 if gPlayers[i] = nil then continue;
5238 if gPlayers[i] is TBot then gPlayers[i].FWantsInGame := True;
5239 // don't touch normal spectators
5240 if gPlayers[i].FSpectator and not gPlayers[i].FWantsInGame then
5241 begin
5242 gPlayers[i].FNoRespawn := True;
5243 gPlayers[i].Lives := 0;
5244 if g_Game_IsNet then
5245 MH_SEND_PlayerStats(gPlayers[I].UID);
5246 continue;
5247 end;
5248 gPlayers[i].FNoRespawn := False;
5249 gPlayers[i].Lives := gGameSettings.MaxLives;
5250 gPlayers[i].Respawn(False, True);
5251 if gGameSettings.GameMode = GM_COOP then
5252 begin
5253 gPlayers[i].Frags := 0;
5254 gPlayers[i].RecallState;
5255 end;
5256 if (gPlayer1 = nil) and (gLMSPID1 > 0) then
5257 gPlayer1 := g_Player_Get(gLMSPID1);
5258 if (gPlayer2 = nil) and (gLMSPID2 > 0) then
5259 gPlayer2 := g_Player_Get(gLMSPID2);
5260 end;
5262 g_Items_RestartRound();
5265 g_Mons_ForEach(monRespawn);
5267 gLMSSoftSpawn := False;
5268 end;
5270 function g_Game_GetFirstMap(WAD: String): String;
5271 begin
5272 Result := '';
5274 MapList := g_Map_GetMapsList(WAD);
5275 if MapList = nil then
5276 Exit;
5278 SortSArray(MapList);
5279 Result := MapList[Low(MapList)];
5281 if not g_Map_Exist(WAD + ':\' + Result) then
5282 Result := '';
5284 MapList := nil;
5285 end;
5287 function g_Game_GetNextMap(): String;
5288 var
5289 I: Integer;
5290 Map: string;
5291 begin
5292 Result := '';
5294 MapList := g_Map_GetMapsList(gGameSettings.WAD);
5295 if MapList = nil then
5296 Exit;
5298 Map := g_ExtractFileName(gMapInfo.Map);
5300 SortSArray(MapList);
5301 MapIndex := -255;
5302 for I := Low(MapList) to High(MapList) do
5303 if Map = MapList[I] then
5304 begin
5305 MapIndex := I;
5306 Break;
5307 end;
5309 if MapIndex <> -255 then
5310 begin
5311 if MapIndex = High(MapList) then
5312 Result := MapList[Low(MapList)]
5313 else
5314 Result := MapList[MapIndex + 1];
5316 if not g_Map_Exist(gGameSettings.WAD + ':\' + Result) then Result := Map;
5317 end;
5319 MapList := nil;
5320 end;
5322 procedure g_Game_NextLevel();
5323 begin
5324 if gGameSettings.GameMode in [GM_DM, GM_TDM, GM_CTF, GM_COOP] then
5325 gExit := EXIT_ENDLEVELCUSTOM
5326 else
5327 begin
5328 gExit := EXIT_ENDLEVELSINGLE;
5329 Exit;
5330 end;
5332 if gNextMap <> '' then Exit;
5333 gNextMap := g_Game_GetNextMap();
5334 end;
5336 function g_Game_IsTestMap(): Boolean;
5337 begin
5338 result := StrEquCI1251(TEST_MAP_NAME, g_ExtractFileName(gMapInfo.Map));
5339 end;
5341 procedure g_Game_DeleteTestMap();
5342 var
5343 a: Integer;
5344 //MapName: AnsiString;
5345 WadName: string;
5347 WAD: TWADFile;
5348 MapList: SSArray;
5349 time: Integer;
5351 begin
5352 a := Pos('.wad:\', toLowerCase1251(gMapToDelete));
5353 if (a = 0) then a := Pos('.wad:/', toLowerCase1251(gMapToDelete));
5354 if (a = 0) then exit;
5356 // Âûäåëÿåì èìÿ wad-ôàéëà è èìÿ êàðòû
5357 WadName := Copy(gMapToDelete, 1, a+3);
5358 Delete(gMapToDelete, 1, a+5);
5359 gMapToDelete := UpperCase(gMapToDelete);
5360 //MapName := '';
5361 //CopyMemory(@MapName[0], @gMapToDelete[1], Min(16, Length(gMapToDelete)));
5364 // Èìÿ êàðòû íå ñòàíäàðòíîå òåñòîâîå:
5365 if MapName <> TEST_MAP_NAME then
5366 Exit;
5368 if not gTempDelete then
5369 begin
5370 time := g_GetFileTime(WadName);
5371 WAD := TWADFile.Create();
5373 // ×èòàåì Wad-ôàéë:
5374 if not WAD.ReadFile(WadName) then
5375 begin // Íåò òàêîãî WAD-ôàéëà
5376 WAD.Free();
5377 Exit;
5378 end;
5380 // Ñîñòàâëÿåì ñïèñîê êàðò è èùåì íóæíóþ:
5381 WAD.CreateImage();
5382 MapList := WAD.GetResourcesList('');
5384 if MapList <> nil then
5385 for a := 0 to High(MapList) do
5386 if MapList[a] = MapName then
5387 begin
5388 // Óäàëÿåì è ñîõðàíÿåì:
5389 WAD.RemoveResource('', MapName);
5390 WAD.SaveTo(WadName);
5391 Break;
5392 end;
5394 WAD.Free();
5395 g_SetFileTime(WadName, time);
5396 end else
5398 if gTempDelete then DeleteFile(WadName);
5399 end;
5401 procedure GameCVars(P: SSArray);
5402 var
5403 a, b: Integer;
5404 stat: TPlayerStatArray;
5405 cmd, s: string;
5406 config: TConfig;
5407 begin
5408 stat := nil;
5409 cmd := LowerCase(P[0]);
5410 if (cmd = 'g_friendlyfire') and not g_Game_IsClient then
5411 begin
5412 with gGameSettings do
5413 begin
5414 if (Length(P) > 1) and
5415 ((P[1] = '1') or (P[1] = '0')) then
5416 begin
5417 if (P[1][1] = '1') then
5418 Options := Options or GAME_OPTION_TEAMDAMAGE
5419 else
5420 Options := Options and (not GAME_OPTION_TEAMDAMAGE);
5421 end;
5423 if (LongBool(Options and GAME_OPTION_TEAMDAMAGE)) then
5424 g_Console_Add(_lc[I_MSG_FRIENDLY_FIRE_ON])
5425 else
5426 g_Console_Add(_lc[I_MSG_FRIENDLY_FIRE_OFF]);
5428 if g_Game_IsNet then MH_SEND_GameSettings;
5429 end;
5430 end
5431 else if (cmd = 'g_weaponstay') and not g_Game_IsClient then
5432 begin
5433 with gGameSettings do
5434 begin
5435 if (Length(P) > 1) and
5436 ((P[1] = '1') or (P[1] = '0')) then
5437 begin
5438 if (P[1][1] = '1') then
5439 Options := Options or GAME_OPTION_WEAPONSTAY
5440 else
5441 Options := Options and (not GAME_OPTION_WEAPONSTAY);
5442 end;
5444 if (LongBool(Options and GAME_OPTION_WEAPONSTAY)) then
5445 g_Console_Add(_lc[I_MSG_WEAPONSTAY_ON])
5446 else
5447 g_Console_Add(_lc[I_MSG_WEAPONSTAY_OFF]);
5449 if g_Game_IsNet then MH_SEND_GameSettings;
5450 end;
5451 end
5452 else if cmd = 'g_gamemode' then
5453 begin
5454 a := g_Game_TextToMode(P[1]);
5455 if a = GM_SINGLE then a := GM_COOP;
5456 if (Length(P) > 1) and (a <> GM_NONE) and (not g_Game_IsClient) then
5457 begin
5458 gSwitchGameMode := a;
5459 if (gGameOn and (gGameSettings.GameMode = GM_SINGLE)) or
5460 (gState = STATE_INTERSINGLE) then
5461 gSwitchGameMode := GM_SINGLE;
5462 if not gGameOn then
5463 gGameSettings.GameMode := gSwitchGameMode;
5464 end;
5465 if gSwitchGameMode = gGameSettings.GameMode then
5466 g_Console_Add(Format(_lc[I_MSG_GAMEMODE_CURRENT],
5467 [g_Game_ModeToText(gGameSettings.GameMode)]))
5468 else
5469 g_Console_Add(Format(_lc[I_MSG_GAMEMODE_CHANGE],
5470 [g_Game_ModeToText(gGameSettings.GameMode),
5471 g_Game_ModeToText(gSwitchGameMode)]));
5472 end
5473 else if (cmd = 'g_allow_exit') and not g_Game_IsClient then
5474 begin
5475 with gGameSettings do
5476 begin
5477 if (Length(P) > 1) and
5478 ((P[1] = '1') or (P[1] = '0')) then
5479 begin
5480 if (P[1][1] = '1') then
5481 Options := Options or GAME_OPTION_ALLOWEXIT
5482 else
5483 Options := Options and (not GAME_OPTION_ALLOWEXIT);
5484 end;
5486 if (LongBool(Options and GAME_OPTION_ALLOWEXIT)) then
5487 g_Console_Add(_lc[I_MSG_ALLOWEXIT_ON])
5488 else
5489 g_Console_Add(_lc[I_MSG_ALLOWEXIT_OFF]);
5490 g_Console_Add(_lc[I_MSG_ONMAPCHANGE]);
5492 if g_Game_IsNet then MH_SEND_GameSettings;
5493 end;
5494 end
5495 else if (cmd = 'g_allow_monsters') and not g_Game_IsClient then
5496 begin
5497 with gGameSettings do
5498 begin
5499 if (Length(P) > 1) and
5500 ((P[1] = '1') or (P[1] = '0')) then
5501 begin
5502 if (P[1][1] = '1') then
5503 Options := Options or GAME_OPTION_MONSTERS
5504 else
5505 Options := Options and (not GAME_OPTION_MONSTERS);
5506 end;
5508 if (LongBool(Options and GAME_OPTION_MONSTERS)) then
5509 g_Console_Add(_lc[I_MSG_ALLOWMON_ON])
5510 else
5511 g_Console_Add(_lc[I_MSG_ALLOWMON_OFF]);
5512 g_Console_Add(_lc[I_MSG_ONMAPCHANGE]);
5514 if g_Game_IsNet then MH_SEND_GameSettings;
5515 end;
5516 end
5517 else if (cmd = 'g_bot_vsplayers') and not g_Game_IsClient then
5518 begin
5519 with gGameSettings do
5520 begin
5521 if (Length(P) > 1) and
5522 ((P[1] = '1') or (P[1] = '0')) then
5523 begin
5524 if (P[1][1] = '1') then
5525 Options := Options or GAME_OPTION_BOTVSPLAYER
5526 else
5527 Options := Options and (not GAME_OPTION_BOTVSPLAYER);
5528 end;
5530 if (LongBool(Options and GAME_OPTION_BOTVSPLAYER)) then
5531 g_Console_Add(_lc[I_MSG_BOTSVSPLAYERS_ON])
5532 else
5533 g_Console_Add(_lc[I_MSG_BOTSVSPLAYERS_OFF]);
5535 if g_Game_IsNet then MH_SEND_GameSettings;
5536 end;
5537 end
5538 else if (cmd = 'g_bot_vsmonsters') and not g_Game_IsClient then
5539 begin
5540 with gGameSettings do
5541 begin
5542 if (Length(P) > 1) and
5543 ((P[1] = '1') or (P[1] = '0')) then
5544 begin
5545 if (P[1][1] = '1') then
5546 Options := Options or GAME_OPTION_BOTVSMONSTER
5547 else
5548 Options := Options and (not GAME_OPTION_BOTVSMONSTER);
5549 end;
5551 if (LongBool(Options and GAME_OPTION_BOTVSMONSTER)) then
5552 g_Console_Add(_lc[I_MSG_BOTSVSMONSTERS_ON])
5553 else
5554 g_Console_Add(_lc[I_MSG_BOTSVSMONSTERS_OFF]);
5556 if g_Game_IsNet then MH_SEND_GameSettings;
5557 end;
5558 end
5559 else if (cmd = 'g_dm_keys') and not g_Game_IsClient then
5560 begin
5561 with gGameSettings do
5562 begin
5563 if (Length(P) > 1) and
5564 ((P[1] = '1') or (P[1] = '0')) then
5565 begin
5566 if (P[1][1] = '1') then
5567 Options := Options or GAME_OPTION_DMKEYS
5568 else
5569 Options := Options and (not GAME_OPTION_DMKEYS);
5570 end;
5572 if (LongBool(Options and GAME_OPTION_DMKEYS)) then
5573 g_Console_Add(_lc[I_MSG_DMKEYS_ON])
5574 else
5575 g_Console_Add(_lc[I_MSG_DMKEYS_OFF]);
5577 if g_Game_IsNet then MH_SEND_GameSettings;
5578 end;
5579 end
5580 else if (cmd = 'g_respawn_items') and not g_Game_IsClient then
5581 begin
5582 with gGameSettings do
5583 begin
5584 if (Length(P) > 1) and
5585 ((P[1] = '1') or (P[1] = '0')) then
5586 begin
5587 if (P[1][1] = '1') then
5588 Options := Options or GAME_OPTION_RESPAWNITEMS
5589 else
5590 Options := Options and (not GAME_OPTION_RESPAWNITEMS);
5591 end;
5593 if (LongBool(Options and GAME_OPTION_RESPAWNITEMS)) then
5594 g_Console_Add(_lc[I_MSG_RESPAWNITEMS_ON])
5595 else
5596 g_Console_Add(_lc[I_MSG_RESPAWNITEMS_OFF]);
5598 if g_Game_IsNet then MH_SEND_GameSettings;
5599 end;
5600 end
5601 else if (cmd = 'g_warmuptime') and not g_Game_IsClient then
5602 begin
5603 if Length(P) > 1 then
5604 begin
5605 if StrToIntDef(P[1], gGameSettings.WarmupTime) = 0 then
5606 gGameSettings.WarmupTime := 30
5607 else
5608 gGameSettings.WarmupTime := StrToIntDef(P[1], gGameSettings.WarmupTime);
5609 end;
5611 g_Console_Add(Format(_lc[I_MSG_WARMUP],
5612 [gGameSettings.WarmupTime]));
5613 g_Console_Add(_lc[I_MSG_ONMAPCHANGE]);
5614 end
5615 else if (cmd = 'g_spawn_invul') and not g_Game_IsClient then
5616 begin
5617 if Length(P) > 1 then
5618 begin
5619 if StrToIntDef(P[1], gGameSettings.SpawnInvul) = 0 then
5620 gGameSettings.SpawnInvul := 0
5621 else
5622 gGameSettings.SpawnInvul := StrToIntDef(P[1], gGameSettings.SpawnInvul);
5623 end;
5625 g_Console_Add(Format(_lc[I_MSG_SPAWNINVUL],
5626 [gGameSettings.SpawnInvul]));
5627 g_Console_Add(_lc[I_MSG_ONMAPCHANGE]);
5628 end
5629 else if cmd = 'net_interp' then
5630 begin
5631 if (Length(P) > 1) then
5632 NetInterpLevel := StrToIntDef(P[1], NetInterpLevel);
5633 g_Console_Add('net_interp = ' + IntToStr(NetInterpLevel));
5634 s := e_GetWriteableDir(ConfigDirs);
5635 if s <> '' then
5636 begin
5637 config := TConfig.CreateFile(s + '/' + CONFIG_FILENAME);
5638 config.WriteInt('Client', 'InterpolationSteps', NetInterpLevel);
5639 config.SaveFile(s + '/' + CONFIG_FILENAME);
5640 config.Free
5641 end
5642 end
5643 else if cmd = 'net_forceplayerupdate' then
5644 begin
5645 if (Length(P) > 1) and ((P[1] = '1') or (P[1] = '0')) then
5646 NetForcePlayerUpdate := (P[1][1] = '1');
5648 if NetForcePlayerUpdate then
5649 g_Console_Add('net_forceplayerupdate = 1')
5650 else
5651 g_Console_Add('net_forceplayerupdate = 0');
5653 s := e_GetWriteableDir(ConfigDirs);
5654 if s <> '' then
5655 begin
5656 config := TConfig.CreateFile(s + '/' + CONFIG_FILENAME);
5657 config.WriteBool('Client', 'ForcePlayerUpdate', NetForcePlayerUpdate);
5658 config.SaveFile(s + '/' + CONFIG_FILENAME);
5659 config.Free
5660 end
5661 end
5662 else if cmd = 'net_predictself' then
5663 begin
5664 if (Length(P) > 1) and
5665 ((P[1] = '1') or (P[1] = '0')) then
5666 NetPredictSelf := (P[1][1] = '1');
5668 if NetPredictSelf then
5669 g_Console_Add('net_predictself = 1')
5670 else
5671 g_Console_Add('net_predictself = 0');
5673 s := e_GetWriteableDir(ConfigDirs);
5674 if s <> '' then
5675 begin
5676 config := TConfig.CreateFile(s + '/' + CONFIG_FILENAME);
5677 config.WriteBool('Client', 'PredictSelf', NetPredictSelf);
5678 config.SaveFile(s + '/' + CONFIG_FILENAME);
5679 config.Free
5680 end
5681 end
5682 else if cmd = 'sv_name' then
5683 begin
5684 if (Length(P) > 1) and (Length(P[1]) > 0) then
5685 begin
5686 NetServerName := P[1];
5687 if Length(NetServerName) > 64 then
5688 SetLength(NetServerName, 64);
5689 g_Net_Slist_ServerRenamed();
5690 end;
5692 g_Console_Add(cmd + ' = "' + NetServerName + '"');
5693 end
5694 else if cmd = 'sv_passwd' then
5695 begin
5696 if (Length(P) > 1) and (Length(P[1]) > 0) then
5697 begin
5698 NetPassword := P[1];
5699 if Length(NetPassword) > 24 then
5700 SetLength(NetPassword, 24);
5701 g_Net_Slist_ServerRenamed();
5702 end;
5704 g_Console_Add(cmd + ' = "' + AnsiLowerCase(NetPassword) + '"');
5705 end
5706 else if cmd = 'sv_maxplrs' then
5707 begin
5708 if (Length(P) > 1) then
5709 begin
5710 NetMaxClients := Min(Max(StrToIntDef(P[1], NetMaxClients), 1), NET_MAXCLIENTS);
5711 if g_Game_IsServer and g_Game_IsNet then
5712 begin
5713 b := 0;
5714 for a := 0 to High(NetClients) do
5715 begin
5716 if NetClients[a].Used then
5717 begin
5718 Inc(b);
5719 if b > NetMaxClients then
5720 begin
5721 s := g_Player_Get(NetClients[a].Player).Name;
5722 enet_peer_disconnect(NetClients[a].Peer, NET_DISC_FULL);
5723 g_Console_Add(Format(_lc[I_PLAYER_KICK], [s]));
5724 MH_SEND_GameEvent(NET_EV_PLAYER_KICK, 0, s);
5725 end;
5726 end;
5727 end;
5728 g_Net_Slist_ServerRenamed();
5729 end;
5730 end;
5732 g_Console_Add(cmd + ' = ' + IntToStr(NetMaxClients));
5733 end
5734 else if cmd = 'sv_public' then
5735 begin
5736 if (Length(P) > 1) then
5737 begin
5738 NetUseMaster := StrToIntDef(P[1], Byte(NetUseMaster)) > 0;
5739 if NetUseMaster then g_Net_Slist_Public() else g_Net_Slist_Private();
5740 end;
5742 g_Console_Add(cmd + ' = ' + IntToStr(Byte(NetUseMaster)));
5743 end
5744 else if cmd = 'sv_intertime' then
5745 begin
5746 if (Length(P) > 1) then
5747 gDefInterTime := Min(Max(StrToIntDef(P[1], gDefInterTime), -1), 120);
5749 g_Console_Add(cmd + ' = ' + IntToStr(gDefInterTime));
5750 end
5751 else if cmd = 'p1_name' then
5752 begin
5753 if (Length(P) > 1) and gGameOn then
5754 begin
5755 if g_Game_IsClient then
5756 begin
5757 gPlayer1Settings.Name := b_Text_Unformat(P[1]);
5758 MC_SEND_PlayerSettings;
5759 end
5760 else
5761 if gPlayer1 <> nil then
5762 begin
5763 gPlayer1.Name := b_Text_Unformat(P[1]);
5764 if g_Game_IsNet then MH_SEND_PlayerSettings(gPlayer1.UID);
5765 end
5766 else
5767 gPlayer1Settings.Name := b_Text_Unformat(P[1]);
5768 end;
5769 end
5770 else if cmd = 'p2_name' then
5771 begin
5772 if (Length(P) > 1) and gGameOn then
5773 begin
5774 if g_Game_IsClient then
5775 begin
5776 gPlayer2Settings.Name := b_Text_Unformat(P[1]);
5777 MC_SEND_PlayerSettings;
5778 end
5779 else
5780 if gPlayer2 <> nil then
5781 begin
5782 gPlayer2.Name := b_Text_Unformat(P[1]);
5783 if g_Game_IsNet then MH_SEND_PlayerSettings(gPlayer2.UID);
5784 end
5785 else
5786 gPlayer2Settings.Name := b_Text_Unformat(P[1]);
5787 end;
5788 end
5789 else if cmd = 'p1_color' then
5790 begin
5791 if Length(P) > 3 then
5792 if g_Game_IsClient then
5793 begin
5794 gPlayer1Settings.Color := _RGB(EnsureRange(StrToIntDef(P[1], 0), 0, 255),
5795 EnsureRange(StrToIntDef(P[2], 0), 0, 255),
5796 EnsureRange(StrToIntDef(P[3], 0), 0, 255));
5797 MC_SEND_PlayerSettings;
5798 end
5799 else
5800 if gPlayer1 <> nil then
5801 begin
5802 gPlayer1.Model.SetColor(EnsureRange(StrToIntDef(P[1], 0), 0, 255),
5803 EnsureRange(StrToIntDef(P[2], 0), 0, 255),
5804 EnsureRange(StrToIntDef(P[3], 0), 0, 255));
5805 if g_Game_IsNet then MH_SEND_PlayerSettings(gPlayer1.UID);
5806 end
5807 else
5808 gPlayer1Settings.Color := _RGB(EnsureRange(StrToIntDef(P[1], 0), 0, 255),
5809 EnsureRange(StrToIntDef(P[2], 0), 0, 255),
5810 EnsureRange(StrToIntDef(P[3], 0), 0, 255));
5811 end
5812 else if (cmd = 'p2_color') and not g_Game_IsNet then
5813 begin
5814 if Length(P) > 3 then
5815 if g_Game_IsClient then
5816 begin
5817 gPlayer2Settings.Color := _RGB(EnsureRange(StrToIntDef(P[1], 0), 0, 255),
5818 EnsureRange(StrToIntDef(P[2], 0), 0, 255),
5819 EnsureRange(StrToIntDef(P[3], 0), 0, 255));
5820 MC_SEND_PlayerSettings;
5821 end
5822 else
5823 if gPlayer2 <> nil then
5824 begin
5825 gPlayer2.Model.SetColor(EnsureRange(StrToIntDef(P[1], 0), 0, 255),
5826 EnsureRange(StrToIntDef(P[2], 0), 0, 255),
5827 EnsureRange(StrToIntDef(P[3], 0), 0, 255));
5828 if g_Game_IsNet then MH_SEND_PlayerSettings(gPlayer2.UID);
5829 end
5830 else
5831 gPlayer2Settings.Color := _RGB(EnsureRange(StrToIntDef(P[1], 0), 0, 255),
5832 EnsureRange(StrToIntDef(P[2], 0), 0, 255),
5833 EnsureRange(StrToIntDef(P[3], 0), 0, 255));
5834 end
5835 else if gGameSettings.GameType in [GT_CUSTOM, GT_SERVER, GT_CLIENT] then
5836 begin
5837 if cmd = 'r_showscore' then
5838 begin
5839 if (Length(P) > 1) and
5840 ((P[1] = '1') or (P[1] = '0')) then
5841 gShowGoals := (P[1][1] = '1');
5843 if gShowGoals then
5844 g_Console_Add(_lc[I_MSG_SCORE_ON])
5845 else
5846 g_Console_Add(_lc[I_MSG_SCORE_OFF]);
5847 end
5848 else if cmd = 'r_showstat' then
5849 begin
5850 if (Length(P) > 1) and
5851 ((P[1] = '1') or (P[1] = '0')) then
5852 gShowStat := (P[1][1] = '1');
5854 if gShowStat then
5855 g_Console_Add(_lc[I_MSG_STATS_ON])
5856 else
5857 g_Console_Add(_lc[I_MSG_STATS_OFF]);
5858 end
5859 else if cmd = 'r_showkillmsg' then
5860 begin
5861 if (Length(P) > 1) and
5862 ((P[1] = '1') or (P[1] = '0')) then
5863 gShowKillMsg := (P[1][1] = '1');
5865 if gShowKillMsg then
5866 g_Console_Add(_lc[I_MSG_KILL_MSGS_ON])
5867 else
5868 g_Console_Add(_lc[I_MSG_KILL_MSGS_OFF]);
5869 end
5870 else if cmd = 'r_showlives' then
5871 begin
5872 if (Length(P) > 1) and
5873 ((P[1] = '1') or (P[1] = '0')) then
5874 gShowLives := (P[1][1] = '1');
5876 if gShowLives then
5877 g_Console_Add(_lc[I_MSG_LIVES_ON])
5878 else
5879 g_Console_Add(_lc[I_MSG_LIVES_OFF]);
5880 end
5881 else if cmd = 'r_showspect' then
5882 begin
5883 if (Length(P) > 1) and
5884 ((P[1] = '1') or (P[1] = '0')) then
5885 gSpectHUD := (P[1][1] = '1');
5887 if gSpectHUD then
5888 g_Console_Add(_lc[I_MSG_SPECT_HUD_ON])
5889 else
5890 g_Console_Add(_lc[I_MSG_SPECT_HUD_OFF]);
5891 end
5892 else if cmd = 'r_showping' then
5893 begin
5894 if (Length(P) > 1) and
5895 ((P[1] = '1') or (P[1] = '0')) then
5896 gShowPing := (P[1][1] = '1');
5898 if gShowPing then
5899 g_Console_Add(_lc[I_MSG_PING_ON])
5900 else
5901 g_Console_Add(_lc[I_MSG_PING_OFF]);
5902 end
5903 else if (cmd = 'g_scorelimit') and not g_Game_IsClient then
5904 begin
5905 if Length(P) > 1 then
5906 begin
5907 if StrToIntDef(P[1], gGameSettings.GoalLimit) = 0 then
5908 gGameSettings.GoalLimit := 0
5909 else
5910 begin
5911 b := 0;
5913 if gGameSettings.GameMode = GM_DM then
5914 begin // DM
5915 stat := g_Player_GetStats();
5916 if stat <> nil then
5917 for a := 0 to High(stat) do
5918 if stat[a].Frags > b then
5919 b := stat[a].Frags;
5920 end
5921 else // TDM/CTF
5922 b := Max(gTeamStat[TEAM_RED].Goals, gTeamStat[TEAM_BLUE].Goals);
5924 gGameSettings.GoalLimit := Max(StrToIntDef(P[1], gGameSettings.GoalLimit), b);
5925 end;
5927 if g_Game_IsNet then MH_SEND_GameSettings;
5928 end;
5930 g_Console_Add(Format(_lc[I_MSG_SCORE_LIMIT], [gGameSettings.GoalLimit]));
5931 end
5932 else if (cmd = 'g_timelimit') and not g_Game_IsClient then
5933 begin
5934 if (Length(P) > 1) and (StrToIntDef(P[1], -1) >= 0) then
5935 gGameSettings.TimeLimit := StrToIntDef(P[1], -1);
5937 g_Console_Add(Format(_lc[I_MSG_TIME_LIMIT],
5938 [gGameSettings.TimeLimit div 3600,
5939 (gGameSettings.TimeLimit div 60) mod 60,
5940 gGameSettings.TimeLimit mod 60]));
5941 if g_Game_IsNet then MH_SEND_GameSettings;
5942 end
5943 else if (cmd = 'g_maxlives') and not g_Game_IsClient then
5944 begin
5945 if Length(P) > 1 then
5946 begin
5947 if StrToIntDef(P[1], gGameSettings.MaxLives) = 0 then
5948 gGameSettings.MaxLives := 0
5949 else
5950 begin
5951 b := 0;
5952 stat := g_Player_GetStats();
5953 if stat <> nil then
5954 for a := 0 to High(stat) do
5955 if stat[a].Lives > b then
5956 b := stat[a].Lives;
5957 gGameSettings.MaxLives :=
5958 Max(StrToIntDef(P[1], gGameSettings.MaxLives), b);
5959 end;
5960 end;
5962 g_Console_Add(Format(_lc[I_MSG_LIVES],
5963 [gGameSettings.MaxLives]));
5964 if g_Game_IsNet then MH_SEND_GameSettings;
5965 end;
5966 end;
5967 end;
5969 procedure PrintHeapStats();
5970 var
5971 hs: TFPCHeapStatus;
5972 begin
5973 hs := GetFPCHeapStatus();
5974 e_LogWriteLn ('v===== heap status =====v');
5975 e_LogWriteFln('max heap size = %d k', [hs.MaxHeapSize div 1024]);
5976 e_LogWriteFln('max heap used = %d k', [hs.MaxHeapUsed div 1024]);
5977 e_LogWriteFln('cur heap size = %d k', [hs.CurrHeapSize div 1024]);
5978 e_LogWriteFln('cur heap used = %d k', [hs.CurrHeapUsed div 1024]);
5979 e_LogWriteFln('cur heap free = %d k', [hs.CurrHeapFree div 1024]);
5980 e_LogWriteLn ('^=======================^');
5981 end;
5983 procedure DebugCommands(P: SSArray);
5984 var
5985 a, b: Integer;
5986 cmd: string;
5987 //pt: TDFPoint;
5988 mon: TMonster;
5989 begin
5990 // Êîìàíäû îòëàäî÷íîãî ðåæèìà:
5991 if {gDebugMode}conIsCheatsEnabled then
5992 begin
5993 cmd := LowerCase(P[0]);
5994 if cmd = 'd_window' then
5995 begin
5996 g_Console_Add(Format('gScreenWidth = %d, gScreenHeight = %d', [gScreenWidth, gScreenHeight]));
5997 g_Console_Add(Format('gWinSizeX = %d, gWinSizeY = %d', [gWinSizeX, gWinSizeY]));
5998 end
5999 else if cmd = 'd_sounds' then
6000 begin
6001 if (Length(P) > 1) and
6002 ((P[1] = '1') or (P[1] = '0')) then
6003 g_Debug_Sounds := (P[1][1] = '1');
6005 g_Console_Add(Format('d_sounds is %d', [Byte(g_Debug_Sounds)]));
6006 end
6007 else if cmd = 'd_frames' then
6008 begin
6009 if (Length(P) > 1) and
6010 ((P[1] = '1') or (P[1] = '0')) then
6011 g_Debug_Frames := (P[1][1] = '1');
6013 g_Console_Add(Format('d_frames is %d', [Byte(g_Debug_Frames)]));
6014 end
6015 else if cmd = 'd_winmsg' then
6016 begin
6017 if (Length(P) > 1) and
6018 ((P[1] = '1') or (P[1] = '0')) then
6019 g_Debug_WinMsgs := (P[1][1] = '1');
6021 g_Console_Add(Format('d_winmsg is %d', [Byte(g_Debug_WinMsgs)]));
6022 end
6023 else if (cmd = 'd_monoff') and not g_Game_IsNet then
6024 begin
6025 if (Length(P) > 1) and
6026 ((P[1] = '1') or (P[1] = '0')) then
6027 g_Debug_MonsterOff := (P[1][1] = '1');
6029 g_Console_Add(Format('d_monoff is %d', [Byte(g_debug_MonsterOff)]));
6030 end
6031 else if (cmd = 'd_botoff') and not g_Game_IsNet then
6032 begin
6033 if Length(P) > 1 then
6034 case P[1][1] of
6035 '0': g_debug_BotAIOff := 0;
6036 '1': g_debug_BotAIOff := 1;
6037 '2': g_debug_BotAIOff := 2;
6038 '3': g_debug_BotAIOff := 3;
6039 end;
6041 g_Console_Add(Format('d_botoff is %d', [g_debug_BotAIOff]));
6042 end
6043 else if cmd = 'd_monster' then
6044 begin
6045 if gGameOn and (gPlayer1 <> nil) and (gPlayer1.alive) and (not g_Game_IsNet) then
6046 if Length(P) < 2 then
6047 begin
6048 g_Console_Add(cmd + ' [ID | Name] [behaviour]');
6049 g_Console_Add('ID | Name');
6050 for b := MONSTER_DEMON to MONSTER_MAN do
6051 g_Console_Add(Format('%2d | %s', [b, g_Mons_NameByTypeId(b)]));
6052 conwriteln('behav. num'#10'normal 0'#10'killer 1'#10'maniac 2'#10'insane 3'#10'cannibal 4'#10'good 5');
6053 end else
6054 begin
6055 a := StrToIntDef(P[1], 0);
6056 if (a < MONSTER_DEMON) or (a > MONSTER_MAN) then
6057 a := g_Mons_TypeIdByName(P[1]);
6059 if (a < MONSTER_DEMON) or (a > MONSTER_MAN) then
6060 g_Console_Add(Format(_lc[I_MSG_NO_MONSTER], [P[1]]))
6061 else
6062 begin
6063 with gPlayer1.Obj do
6064 begin
6065 mon := g_Monsters_Create(a,
6066 X + Rect.X + (Rect.Width div 2),
6067 Y + Rect.Y + Rect.Height,
6068 gPlayer1.Direction, True);
6069 end;
6070 if (Length(P) > 2) and (mon <> nil) then
6071 begin
6072 if (CompareText(P[2], 'normal') = 0) then mon.MonsterBehaviour := BH_NORMAL
6073 else if (CompareText(P[2], 'killer') = 0) then mon.MonsterBehaviour := BH_KILLER
6074 else if (CompareText(P[2], 'maniac') = 0) then mon.MonsterBehaviour := BH_MANIAC
6075 else if (CompareText(P[2], 'insane') = 0) then mon.MonsterBehaviour := BH_INSANE
6076 else if (CompareText(P[2], 'cannibal') = 0) then mon.MonsterBehaviour := BH_CANNIBAL
6077 else if (CompareText(P[2], 'good') = 0) then mon.MonsterBehaviour := BH_GOOD
6078 else if (CompareText(P[2], 'friend') = 0) then mon.MonsterBehaviour := BH_GOOD
6079 else if (CompareText(P[2], 'friendly') = 0) then mon.MonsterBehaviour := BH_GOOD
6080 else mon.MonsterBehaviour := Min(Max(StrToIntDef(P[2], BH_NORMAL), BH_NORMAL), BH_GOOD);
6081 end;
6082 end;
6083 end;
6084 end
6085 else if (cmd = 'd_health') then
6086 begin
6087 if (Length(P) > 1) and
6088 ((P[1] = '1') or (P[1] = '0')) then
6089 g_debug_HealthBar := (P[1][1] = '1');
6091 g_Console_Add(Format('d_health is %d', [Byte(g_debug_HealthBar)]));
6092 end
6093 else if (cmd = 'd_player') then
6094 begin
6095 if (Length(P) > 1) and
6096 ((P[1] = '1') or (P[1] = '0')) then
6097 g_debug_Player := (P[1][1] = '1');
6099 g_Console_Add(Format(cmd + ' is %d', [Byte(g_Debug_Player)]));
6100 end
6101 else if (cmd = 'd_mem') then
6102 begin
6103 PrintHeapStats();
6104 end;
6105 end
6106 else
6107 g_Console_Add(_lc[I_MSG_NOT_DEBUG]);
6108 end;
6111 procedure GameCheats(P: SSArray);
6112 var
6113 cmd: string;
6114 f, a: Integer;
6115 plr: TPlayer;
6116 begin
6117 if (not gGameOn) or (not conIsCheatsEnabled) then
6118 begin
6119 g_Console_Add('not available');
6120 exit;
6121 end;
6122 plr := gPlayer1;
6123 if plr = nil then
6124 begin
6125 g_Console_Add('where is the player?!');
6126 exit;
6127 end;
6128 cmd := LowerCase(P[0]);
6129 // god
6130 if cmd = 'god' then
6131 begin
6132 plr.GodMode := not plr.GodMode;
6133 if plr.GodMode then g_Console_Add('player is godlike now') else g_Console_Add('player is mortal now');
6134 exit;
6135 end;
6136 // give <health|exit|weapons|air|suit|jetpack|berserk|all>
6137 if cmd = 'give' then
6138 begin
6139 if length(P) < 2 then begin g_Console_Add('give what?!'); exit; end;
6140 for f := 1 to High(P) do
6141 begin
6142 cmd := LowerCase(P[f]);
6143 if cmd = 'health' then begin plr.RestoreHealthArmor(); g_Console_Add('player feels himself better'); continue; end;
6144 if (cmd = 'all') {or (cmd = 'weapons')} then begin plr.AllRulez(False); g_Console_Add('player got the gifts'); continue; end;
6145 if cmd = 'exit' then
6146 begin
6147 if gTriggers <> nil then
6148 begin
6149 for a := 0 to High(gTriggers) do
6150 begin
6151 if gTriggers[a].TriggerType = TRIGGER_EXIT then
6152 begin
6153 g_Console_Add('player left the map');
6154 gExitByTrigger := True;
6155 //g_Game_ExitLevel(gTriggers[a].Data.MapName);
6156 g_Game_ExitLevel(gTriggers[a].tgcMap);
6157 break;
6158 end;
6159 end;
6160 end;
6161 continue;
6162 end;
6164 if cmd = 'air' then begin plr.GiveItem(ITEM_OXYGEN); g_Console_Add('player got some air'); continue; end;
6165 if cmd = 'jetpack' then begin plr.GiveItem(ITEM_JETPACK); g_Console_Add('player got a jetpack'); continue; end;
6166 if cmd = 'suit' then begin plr.GiveItem(ITEM_SUIT); g_Console_Add('player got an envirosuit'); continue; end;
6167 if cmd = 'berserk' then begin plr.GiveItem(ITEM_MEDKIT_BLACK); g_Console_Add('player got a berserk pack'); continue; end;
6168 if cmd = 'backpack' then begin plr.GiveItem(ITEM_AMMO_BACKPACK); g_Console_Add('player got a backpack'); continue; end;
6170 if cmd = 'helmet' then begin plr.GiveItem(ITEM_HELMET); g_Console_Add('player got a helmet'); continue; end;
6171 if cmd = 'bottle' then begin plr.GiveItem(ITEM_BOTTLE); g_Console_Add('player got a bottle of health'); continue; end;
6173 if cmd = 'stimpack' then begin plr.GiveItem(ITEM_MEDKIT_SMALL); g_Console_Add('player got a stimpack'); continue; end;
6174 if (cmd = 'medkit') or (cmd = 'medikit') or (cmd = 'medpack') or (cmd = 'medipack') then begin plr.GiveItem(ITEM_MEDKIT_LARGE); g_Console_Add('player got a '+cmd); continue; end;
6176 if cmd = 'greenarmor' then begin plr.GiveItem(ITEM_ARMOR_GREEN); g_Console_Add('player got a security armor'); continue; end;
6177 if cmd = 'bluearmor' then begin plr.GiveItem(ITEM_ARMOR_BLUE); g_Console_Add('player got a combat armor'); continue; end;
6179 if (cmd = 'megasphere') or (cmd = 'mega') then begin plr.GiveItem(ITEM_SPHERE_BLUE); g_Console_Add('player got a megasphere'); continue; end;
6180 if (cmd = 'soulsphere') or (cmd = 'soul')then begin plr.GiveItem(ITEM_SPHERE_WHITE); g_Console_Add('player got a soul sphere'); continue; end;
6182 if (cmd = 'invul') or (cmd = 'invulnerability') then begin plr.GiveItem(ITEM_INVUL); g_Console_Add('player got invulnerability'); continue; end;
6183 if (cmd = 'invis') or (cmd = 'invisibility') then begin plr.GiveItem(ITEM_INVIS); g_Console_Add('player got invisibility'); continue; end;
6185 if cmd = 'redkey' then begin plr.GiveItem(ITEM_KEY_RED); g_Console_Add('player got the red key'); continue; end;
6186 if cmd = 'greenkey' then begin plr.GiveItem(ITEM_KEY_GREEN); g_Console_Add('player got the green key'); continue; end;
6187 if cmd = 'bluekey' then begin plr.GiveItem(ITEM_KEY_BLUE); g_Console_Add('player got the blue key'); continue; end;
6189 if (cmd = 'shotgun') or (cmd = 'sg') then begin plr.GiveItem(ITEM_WEAPON_SHOTGUN1); g_Console_Add('player got a shotgun'); continue; end;
6190 if (cmd = 'supershotgun') or (cmd = 'ssg') then begin plr.GiveItem(ITEM_WEAPON_SHOTGUN2); g_Console_Add('player got a supershotgun'); continue; end;
6191 if cmd = 'chaingun' then begin plr.GiveItem(ITEM_WEAPON_CHAINGUN); g_Console_Add('player got a chaingun'); continue; end;
6192 if (cmd = 'launcher') or (cmd = 'rocketlauncher') or (cmd = 'rl') then begin plr.GiveItem(ITEM_WEAPON_ROCKETLAUNCHER); g_Console_Add('player got a rocket launcher'); continue; end;
6193 if cmd = 'plasmagun' then begin plr.GiveItem(ITEM_WEAPON_PLASMA); g_Console_Add('player got a plasma gun'); continue; end;
6194 if cmd = 'bfg' then begin plr.GiveItem(ITEM_WEAPON_BFG); g_Console_Add('player got a BFG-9000'); continue; end;
6196 if (cmd = 'shotgunzz') or (cmd = 'sgzz') then begin plr.GiveItem(ITEM_WEAPON_SHOTGUN1); plr.GiveItem(ITEM_AMMO_SHELLS_BOX); g_Console_Add('player got a shotgun'); continue; end;
6197 if (cmd = 'supershotgunzz') or (cmd = 'ssgzz') then begin plr.GiveItem(ITEM_WEAPON_SHOTGUN2); plr.GiveItem(ITEM_AMMO_SHELLS_BOX); g_Console_Add('player got a supershotgun'); continue; end;
6198 if cmd = 'chaingunzz' then begin plr.GiveItem(ITEM_WEAPON_CHAINGUN); plr.GiveItem(ITEM_AMMO_BULLETS_BOX); g_Console_Add('player got a chaingun'); continue; end;
6199 if (cmd = 'launcherzz') or (cmd = 'rocketlauncherzz') or (cmd = 'rlzz') then begin plr.GiveItem(ITEM_WEAPON_ROCKETLAUNCHER); plr.GiveItem(ITEM_AMMO_ROCKET_BOX); g_Console_Add('player got a rocket launcher'); continue; end;
6200 if cmd = 'plasmagunzz' then begin plr.GiveItem(ITEM_WEAPON_PLASMA); plr.GiveItem(ITEM_AMMO_CELL_BIG); g_Console_Add('player got a plasma gun'); continue; end;
6201 if cmd = 'bfgzz' then begin plr.GiveItem(ITEM_WEAPON_BFG); plr.GiveItem(ITEM_AMMO_CELL_BIG); g_Console_Add('player got a BFG-9000'); continue; end;
6203 if cmd = 'superchaingun' then begin plr.GiveItem(ITEM_WEAPON_SUPERPULEMET); g_Console_Add('player got a superchaingun'); continue; end;
6204 if cmd = 'superchaingunzz' then begin plr.GiveItem(ITEM_WEAPON_SUPERPULEMET); plr.GiveItem(ITEM_AMMO_BULLETS_BOX); g_Console_Add('player got a superchaingun'); continue; end;
6206 if (cmd = 'flamer') or (cmd = 'flamethrower') or (cmd = 'ft') then begin plr.GiveItem(ITEM_WEAPON_FLAMETHROWER); g_Console_Add('player got a flame thrower'); continue; end;
6207 if (cmd = 'flamerzz') or (cmd = 'flamethrowerzz') or (cmd = 'ftzz') then begin plr.GiveItem(ITEM_WEAPON_FLAMETHROWER); plr.GiveItem(ITEM_AMMO_FUELCAN); g_Console_Add('player got a flame thrower'); continue; end;
6209 if cmd = 'chainsaw' then begin plr.GiveItem(ITEM_WEAPON_SAW); g_Console_Add('player got a chainsaw'); continue; end;
6211 if cmd = 'ammo' then
6212 begin
6213 plr.GiveItem(ITEM_AMMO_SHELLS_BOX);
6214 plr.GiveItem(ITEM_AMMO_BULLETS_BOX);
6215 plr.GiveItem(ITEM_AMMO_CELL_BIG);
6216 plr.GiveItem(ITEM_AMMO_ROCKET_BOX);
6217 plr.GiveItem(ITEM_AMMO_FUELCAN);
6218 g_Console_Add('player got some ammo');
6219 continue;
6220 end;
6222 if cmd = 'clip' then begin plr.GiveItem(ITEM_AMMO_BULLETS); g_Console_Add('player got some bullets'); continue; end;
6223 if cmd = 'bullets' then begin plr.GiveItem(ITEM_AMMO_BULLETS_BOX); g_Console_Add('player got a box of bullets'); continue; end;
6225 if cmd = 'shells' then begin plr.GiveItem(ITEM_AMMO_SHELLS); g_Console_Add('player got some shells'); continue; end;
6226 if cmd = 'shellbox' then begin plr.GiveItem(ITEM_AMMO_SHELLS_BOX); g_Console_Add('player got a box of shells'); continue; end;
6228 if cmd = 'cells' then begin plr.GiveItem(ITEM_AMMO_CELL); g_Console_Add('player got some cells'); continue; end;
6229 if cmd = 'battery' then begin plr.GiveItem(ITEM_AMMO_CELL_BIG); g_Console_Add('player got cell battery'); continue; end;
6231 if cmd = 'rocket' then begin plr.GiveItem(ITEM_AMMO_ROCKET); g_Console_Add('player got a rocket'); continue; end;
6232 if cmd = 'rocketbox' then begin plr.GiveItem(ITEM_AMMO_ROCKET_BOX); g_Console_Add('player got some rockets'); continue; end;
6234 if (cmd = 'fuel') or (cmd = 'fuelcan') then begin plr.GiveItem(ITEM_AMMO_FUELCAN); g_Console_Add('player got fuel canister'); continue; end;
6236 if cmd = 'weapons' then
6237 begin
6238 plr.GiveItem(ITEM_WEAPON_SHOTGUN1);
6239 plr.GiveItem(ITEM_WEAPON_SHOTGUN2);
6240 plr.GiveItem(ITEM_WEAPON_CHAINGUN);
6241 plr.GiveItem(ITEM_WEAPON_ROCKETLAUNCHER);
6242 plr.GiveItem(ITEM_WEAPON_PLASMA);
6243 plr.GiveItem(ITEM_WEAPON_BFG);
6244 g_Console_Add('player got weapons');
6245 continue;
6246 end;
6248 if cmd = 'keys' then
6249 begin
6250 plr.GiveItem(ITEM_KEY_RED);
6251 plr.GiveItem(ITEM_KEY_GREEN);
6252 plr.GiveItem(ITEM_KEY_BLUE);
6253 g_Console_Add('player got all keys');
6254 continue;
6255 end;
6257 g_Console_Add('i don''t know how to give '''+cmd+'''!');
6258 end;
6259 exit;
6260 end;
6261 // open
6262 if cmd = 'open' then
6263 begin
6264 g_Console_Add('player activated sesame');
6265 g_Triggers_OpenAll();
6266 exit;
6267 end;
6268 // fly
6269 if cmd = 'fly' then
6270 begin
6271 gFly := not gFly;
6272 if gFly then g_Console_Add('player feels himself lighter') else g_Console_Add('player lost his wings');
6273 exit;
6274 end;
6275 // noclip
6276 if cmd = 'noclip' then
6277 begin
6278 plr.SwitchNoClip;
6279 g_Console_Add('wall hardeness adjusted');
6280 exit;
6281 end;
6282 // notarget
6283 if cmd = 'notarget' then
6284 begin
6285 plr.NoTarget := not plr.NoTarget;
6286 if plr.NoTarget then g_Console_Add('player hides in shadows') else g_Console_Add('player is brave again');
6287 exit;
6288 end;
6289 // noreload
6290 if cmd = 'noreload' then
6291 begin
6292 plr.NoReload := not plr.NoReload;
6293 if plr.NoReload then g_Console_Add('player is action hero now') else g_Console_Add('player is ordinary man now');
6294 exit;
6295 end;
6296 // speedy
6297 if cmd = 'speedy' then
6298 begin
6299 MAX_RUNVEL := 32-MAX_RUNVEL;
6300 g_Console_Add('speed adjusted');
6301 exit;
6302 end;
6303 // jumpy
6304 if cmd = 'jumpy' then
6305 begin
6306 VEL_JUMP := 30-VEL_JUMP;
6307 g_Console_Add('jump height adjusted');
6308 exit;
6309 end;
6310 // automap
6311 if cmd = 'automap' then
6312 begin
6313 gShowMap := not gShowMap;
6314 if gShowMap then g_Console_Add('player gains second sight') else g_Console_Add('player lost second sight');
6315 exit;
6316 end;
6317 // aimline
6318 if cmd = 'aimline' then
6319 begin
6320 gAimLine := not gAimLine;
6321 if gAimLine then g_Console_Add('player gains laser sight') else g_Console_Add('player lost laser sight');
6322 exit;
6323 end;
6324 end;
6326 procedure GameCommands(P: SSArray);
6327 var
6328 a, b: Integer;
6329 s, pw: String;
6330 chstr: string;
6331 cmd: string;
6332 pl: pTNetClient = nil;
6333 plr: TPlayer;
6334 prt: Word;
6335 nm: Boolean;
6336 listen: LongWord;
6337 found: Boolean;
6338 begin
6339 // Îáùèå êîìàíäû:
6340 cmd := LowerCase(P[0]);
6341 chstr := '';
6342 if (cmd = 'quit') or
6343 (cmd = 'exit') then
6344 begin
6345 g_Game_Free();
6346 g_Game_Quit();
6347 Exit;
6348 end
6349 else if cmd = 'pause' then
6350 begin
6351 if (g_ActiveWindow = nil) then
6352 g_Game_Pause(not gPauseMain);
6353 end
6354 else if cmd = 'endgame' then
6355 gExit := EXIT_SIMPLE
6356 else if cmd = 'restart' then
6357 begin
6358 if gGameOn or (gState in [STATE_INTERSINGLE, STATE_INTERCUSTOM]) then
6359 begin
6360 if g_Game_IsClient then
6361 begin
6362 g_Console_Add(_lc[I_MSG_SERVERONLY]);
6363 Exit;
6364 end;
6365 g_Game_Restart();
6366 end else
6367 g_Console_Add(_lc[I_MSG_NOT_GAME]);
6368 end
6369 else if cmd = 'kick' then
6370 begin
6371 if g_Game_IsServer then
6372 begin
6373 if Length(P) < 2 then
6374 begin
6375 g_Console_Add('kick <name>');
6376 Exit;
6377 end;
6378 if P[1] = '' then
6379 begin
6380 g_Console_Add('kick <name>');
6381 Exit;
6382 end;
6384 if g_Game_IsNet then
6385 pl := g_Net_Client_ByName(P[1]);
6386 if (pl <> nil) then
6387 begin
6388 s := g_Net_ClientName_ByID(pl^.ID);
6389 enet_peer_disconnect(pl^.Peer, NET_DISC_KICK);
6390 g_Console_Add(Format(_lc[I_PLAYER_KICK], [s]));
6391 MH_SEND_GameEvent(NET_EV_PLAYER_KICK, 0, s);
6392 g_Net_Slist_ServerPlayerLeaves();
6393 end else if gPlayers <> nil then
6394 for a := Low(gPlayers) to High(gPlayers) do
6395 if gPlayers[a] <> nil then
6396 if Copy(LowerCase(gPlayers[a].Name), 1, Length(P[1])) = LowerCase(P[1]) then
6397 begin
6398 // Íå îòêëþ÷àòü îñíîâíûõ èãðîêîâ â ñèíãëå
6399 if not(gPlayers[a] is TBot) and (gGameSettings.GameType = GT_SINGLE) then
6400 continue;
6401 gPlayers[a].Lives := 0;
6402 gPlayers[a].Kill(K_SIMPLEKILL, 0, HIT_DISCON);
6403 g_Console_Add(Format(_lc[I_PLAYER_LEAVE], [gPlayers[a].Name]), True);
6404 g_Player_Remove(gPlayers[a].UID);
6405 g_Net_Slist_ServerPlayerLeaves();
6406 // Åñëè íå ïåðåìåøàòü, ïðè äîáàâëåíèè íîâûõ áîòîâ ïîÿâÿòñÿ ñòàðûå
6407 g_Bot_MixNames();
6408 end;
6409 end else
6410 g_Console_Add(_lc[I_MSG_GM_UNAVAIL]);
6411 end
6412 else if cmd = 'kick_id' then
6413 begin
6414 if g_Game_IsServer and g_Game_IsNet then
6415 begin
6416 if Length(P) < 2 then
6417 begin
6418 g_Console_Add('kick_id <client ID>');
6419 Exit;
6420 end;
6421 if P[1] = '' then
6422 begin
6423 g_Console_Add('kick_id <client ID>');
6424 Exit;
6425 end;
6427 a := StrToIntDef(P[1], 0);
6428 if (NetClients <> nil) and (a <= High(NetClients)) then
6429 begin
6430 if NetClients[a].Used and (NetClients[a].Peer <> nil) then
6431 begin
6432 s := g_Net_ClientName_ByID(NetClients[a].ID);
6433 enet_peer_disconnect(NetClients[a].Peer, NET_DISC_KICK);
6434 g_Console_Add(Format(_lc[I_PLAYER_KICK], [s]));
6435 MH_SEND_GameEvent(NET_EV_PLAYER_KICK, 0, s);
6436 g_Net_Slist_ServerPlayerLeaves();
6437 end;
6438 end;
6439 end else
6440 g_Console_Add(_lc[I_MSG_SERVERONLY]);
6441 end
6442 else if cmd = 'ban' then
6443 begin
6444 if g_Game_IsServer and g_Game_IsNet then
6445 begin
6446 if Length(P) < 2 then
6447 begin
6448 g_Console_Add('ban <name>');
6449 Exit;
6450 end;
6451 if P[1] = '' then
6452 begin
6453 g_Console_Add('ban <name>');
6454 Exit;
6455 end;
6457 pl := g_Net_Client_ByName(P[1]);
6458 if (pl <> nil) then
6459 begin
6460 s := g_Net_ClientName_ByID(pl^.ID);
6461 g_Net_BanHost(pl^.Peer^.address.host, False);
6462 enet_peer_disconnect(pl^.Peer, NET_DISC_TEMPBAN);
6463 g_Console_Add(Format(_lc[I_PLAYER_BAN], [s]));
6464 MH_SEND_GameEvent(NET_EV_PLAYER_BAN, 0, s);
6465 g_Net_Slist_ServerPlayerLeaves();
6466 end else
6467 g_Console_Add(Format(_lc[I_NET_ERR_NAME404], [P[1]]));
6468 end else
6469 g_Console_Add(_lc[I_MSG_SERVERONLY]);
6470 end
6471 else if cmd = 'ban_id' then
6472 begin
6473 if g_Game_IsServer and g_Game_IsNet then
6474 begin
6475 if Length(P) < 2 then
6476 begin
6477 g_Console_Add('ban_id <client ID>');
6478 Exit;
6479 end;
6480 if P[1] = '' then
6481 begin
6482 g_Console_Add('ban_id <client ID>');
6483 Exit;
6484 end;
6486 a := StrToIntDef(P[1], 0);
6487 if (NetClients <> nil) and (a <= High(NetClients)) then
6488 if NetClients[a].Used and (NetClients[a].Peer <> nil) then
6489 begin
6490 s := g_Net_ClientName_ByID(NetClients[a].ID);
6491 g_Net_BanHost(NetClients[a].Peer^.address.host, False);
6492 enet_peer_disconnect(NetClients[a].Peer, NET_DISC_TEMPBAN);
6493 g_Console_Add(Format(_lc[I_PLAYER_BAN], [s]));
6494 MH_SEND_GameEvent(NET_EV_PLAYER_BAN, 0, s);
6495 g_Net_Slist_ServerPlayerLeaves();
6496 end;
6497 end else
6498 g_Console_Add(_lc[I_MSG_SERVERONLY]);
6499 end
6500 else if cmd = 'permban' then
6501 begin
6502 if g_Game_IsServer and g_Game_IsNet then
6503 begin
6504 if Length(P) < 2 then
6505 begin
6506 g_Console_Add('permban <name>');
6507 Exit;
6508 end;
6509 if P[1] = '' then
6510 begin
6511 g_Console_Add('permban <name>');
6512 Exit;
6513 end;
6515 pl := g_Net_Client_ByName(P[1]);
6516 if (pl <> nil) then
6517 begin
6518 s := g_Net_ClientName_ByID(pl^.ID);
6519 g_Net_BanHost(pl^.Peer^.address.host);
6520 enet_peer_disconnect(pl^.Peer, NET_DISC_BAN);
6521 g_Net_SaveBanList();
6522 g_Console_Add(Format(_lc[I_PLAYER_BAN], [s]));
6523 MH_SEND_GameEvent(NET_EV_PLAYER_BAN, 0, s);
6524 g_Net_Slist_ServerPlayerLeaves();
6525 end else
6526 g_Console_Add(Format(_lc[I_NET_ERR_NAME404], [P[1]]));
6527 end else
6528 g_Console_Add(_lc[I_MSG_SERVERONLY]);
6529 end
6530 else if cmd = 'permban_id' then
6531 begin
6532 if g_Game_IsServer and g_Game_IsNet then
6533 begin
6534 if Length(P) < 2 then
6535 begin
6536 g_Console_Add('permban_id <client ID>');
6537 Exit;
6538 end;
6539 if P[1] = '' then
6540 begin
6541 g_Console_Add('permban_id <client ID>');
6542 Exit;
6543 end;
6545 a := StrToIntDef(P[1], 0);
6546 if (NetClients <> nil) and (a <= High(NetClients)) then
6547 if NetClients[a].Used and (NetClients[a].Peer <> nil) then
6548 begin
6549 s := g_Net_ClientName_ByID(NetClients[a].ID);
6550 g_Net_BanHost(NetClients[a].Peer^.address.host);
6551 enet_peer_disconnect(NetClients[a].Peer, NET_DISC_BAN);
6552 g_Net_SaveBanList();
6553 g_Console_Add(Format(_lc[I_PLAYER_BAN], [s]));
6554 MH_SEND_GameEvent(NET_EV_PLAYER_BAN, 0, s);
6555 g_Net_Slist_ServerPlayerLeaves();
6556 end;
6557 end else
6558 g_Console_Add(_lc[I_MSG_SERVERONLY]);
6559 end
6560 else if cmd = 'unban' then
6561 begin
6562 if g_Game_IsServer and g_Game_IsNet then
6563 begin
6564 if Length(P) < 2 then
6565 begin
6566 g_Console_Add('unban <IP Address>');
6567 Exit;
6568 end;
6569 if P[1] = '' then
6570 begin
6571 g_Console_Add('unban <IP Address>');
6572 Exit;
6573 end;
6575 if g_Net_UnbanHost(P[1]) then
6576 begin
6577 g_Console_Add(Format(_lc[I_MSG_UNBAN_OK], [P[1]]));
6578 g_Net_SaveBanList();
6579 end else
6580 g_Console_Add(Format(_lc[I_MSG_UNBAN_FAIL], [P[1]]));
6581 end else
6582 g_Console_Add(_lc[I_MSG_SERVERONLY]);
6583 end
6584 else if cmd = 'clientlist' then
6585 begin
6586 if g_Game_IsServer and g_Game_IsNet then
6587 begin
6588 b := 0;
6589 if NetClients <> nil then
6590 for a := Low(NetClients) to High(NetClients) do
6591 if NetClients[a].Used and (NetClients[a].Peer <> nil) then
6592 begin
6593 plr := g_Player_Get(NetClients[a].Player);
6594 if plr = nil then continue;
6595 Inc(b);
6596 g_Console_Add(Format('#%2d: %-15s | %s', [a,
6597 IpToStr(NetClients[a].Peer^.address.host), plr.Name]));
6598 end;
6599 if b = 0 then
6600 g_Console_Add(_lc[I_MSG_NOCLIENTS]);
6601 end else
6602 g_Console_Add(_lc[I_MSG_SERVERONLY]);
6603 end
6604 else if cmd = 'connect' then
6605 begin
6606 if (NetMode = NET_NONE) then
6607 begin
6608 if Length(P) < 2 then
6609 begin
6610 g_Console_Add('connect <IP> [port] [password]');
6611 Exit;
6612 end;
6613 if P[1] = '' then
6614 begin
6615 g_Console_Add('connect <IP> [port] [password]');
6616 Exit;
6617 end;
6619 if Length(P) > 2 then
6620 prt := StrToIntDef(P[2], 25666)
6621 else
6622 prt := 25666;
6624 if Length(P) > 3 then
6625 pw := P[3]
6626 else
6627 pw := '';
6629 g_Game_StartClient(P[1], prt, pw);
6630 end;
6631 end
6632 else if cmd = 'disconnect' then
6633 begin
6634 if (NetMode = NET_CLIENT) then
6635 g_Net_Disconnect();
6636 end
6637 else if cmd = 'reconnect' then
6638 begin
6639 if (NetMode = NET_SERVER) then
6640 Exit;
6642 if (NetMode = NET_CLIENT) then
6643 begin
6644 g_Net_Disconnect();
6645 gExit := EXIT_SIMPLE;
6646 EndGame;
6647 end;
6649 //TODO: Use last successful password to reconnect, instead of ''
6650 g_Game_StartClient(NetClientIP, NetClientPort, '');
6651 end
6652 else if (cmd = 'addbot') or
6653 (cmd = 'bot_add') then
6654 begin
6655 if Length(P) > 2 then
6656 g_Bot_Add(TEAM_NONE, StrToIntDef(P[1], 2), StrToIntDef(P[2], 100))
6657 else if Length(P) > 1 then
6658 g_Bot_Add(TEAM_NONE, StrToIntDef(P[1], 2))
6659 else
6660 g_Bot_Add(TEAM_NONE, 2);
6661 end
6662 else if cmd = 'bot_addlist' then
6663 begin
6664 if Length(P) > 1 then
6665 begin
6666 if Length(P) = 2 then
6667 g_Bot_AddList(TEAM_NONE, P[1], StrToIntDef(P[1], -1))
6668 else if Length(P) = 3 then
6669 g_Bot_AddList(TEAM_NONE, P[1], StrToIntDef(P[1], -1), StrToIntDef(P[2], 100))
6670 else
6671 g_Bot_AddList(IfThen(P[2] = 'red', TEAM_RED, TEAM_BLUE), P[1], StrToIntDef(P[1], -1));
6672 end;
6673 end
6674 else if cmd = 'bot_removeall' then
6675 g_Bot_RemoveAll()
6676 else if cmd = 'chat' then
6677 begin
6678 if g_Game_IsNet then
6679 begin
6680 if Length(P) > 1 then
6681 begin
6682 for a := 1 to High(P) do
6683 chstr := chstr + P[a] + ' ';
6685 if Length(chstr) > 200 then SetLength(chstr, 200);
6687 if Length(chstr) < 1 then
6688 begin
6689 g_Console_Add('chat <text>');
6690 Exit;
6691 end;
6693 chstr := b_Text_Format(chstr);
6694 if g_Game_IsClient then
6695 MC_SEND_Chat(chstr, NET_CHAT_PLAYER)
6696 else
6697 MH_SEND_Chat(gPlayer1Settings.Name + ': ' + chstr, NET_CHAT_PLAYER);
6698 end
6699 else
6700 g_Console_Add('chat <text>');
6701 end else
6702 g_Console_Add(_lc[I_MSG_GM_UNAVAIL]);
6703 end
6704 else if cmd = 'teamchat' then
6705 begin
6706 if g_Game_IsNet and (gGameSettings.GameMode in [GM_TDM, GM_CTF]) then
6707 begin
6708 if Length(P) > 1 then
6709 begin
6710 for a := 1 to High(P) do
6711 chstr := chstr + P[a] + ' ';
6713 if Length(chstr) > 200 then SetLength(chstr, 200);
6715 if Length(chstr) < 1 then
6716 begin
6717 g_Console_Add('teamchat <text>');
6718 Exit;
6719 end;
6721 chstr := b_Text_Format(chstr);
6722 if g_Game_IsClient then
6723 MC_SEND_Chat(chstr, NET_CHAT_TEAM)
6724 else
6725 MH_SEND_Chat(gPlayer1Settings.Name + ': ' + chstr, NET_CHAT_TEAM,
6726 gPlayer1Settings.Team);
6727 end
6728 else
6729 g_Console_Add('teamchat <text>');
6730 end else
6731 g_Console_Add(_lc[I_MSG_GM_UNAVAIL]);
6732 end
6733 else if cmd = 'game' then
6734 begin
6735 if gGameSettings.GameType <> GT_NONE then
6736 begin
6737 g_Console_Add(_lc[I_MSG_GM_UNAVAIL]);
6738 Exit;
6739 end;
6740 if Length(P) = 1 then
6741 begin
6742 g_Console_Add(cmd + ' <WAD> [MAP] [# players]');
6743 Exit;
6744 end;
6745 // game not started yet, load fist map from some wad
6746 found := false;
6747 s := addWadExtension(P[1]);
6748 found := e_FindResource(AllMapDirs, s);
6749 P[1] := s;
6750 if found then
6751 begin
6752 P[1] := ExpandFileName(P[1]);
6753 // if map not choosed then set first map
6754 if Length(P) < 3 then
6755 begin
6756 SetLength(P, 3);
6757 P[2] := g_Game_GetFirstMap(P[1]);
6758 end;
6760 s := P[1] + ':\' + UpperCase(P[2]);
6762 if g_Map_Exist(s) then
6763 begin
6764 // start game
6765 g_Game_Free();
6766 with gGameSettings do
6767 begin
6768 GameMode := g_Game_TextToMode(gcGameMode);
6769 if gSwitchGameMode <> GM_NONE then
6770 GameMode := gSwitchGameMode;
6771 if GameMode = GM_NONE then GameMode := GM_DM;
6772 if GameMode = GM_SINGLE then GameMode := GM_COOP;
6773 b := 1;
6774 if Length(P) >= 4 then
6775 b := StrToIntDef(P[3], 1);
6776 g_Game_StartCustom(s, GameMode, TimeLimit,
6777 GoalLimit, MaxLives, Options, b);
6778 end;
6779 end
6780 else
6781 if P[2] = '' then
6782 g_Console_Add(Format(_lc[I_MSG_NO_MAPS], [P[1]]))
6783 else
6784 g_Console_Add(Format(_lc[I_MSG_NO_MAP_FALLBACK], [UpperCase(P[2]), P[1]]));
6785 end else
6786 g_Console_Add(Format(_lc[I_MSG_NO_WAD], [P[1]]));
6787 end
6788 else if cmd = 'host' then
6789 begin
6790 if gGameSettings.GameType <> GT_NONE then
6791 begin
6792 g_Console_Add(_lc[I_MSG_GM_UNAVAIL]);
6793 Exit;
6794 end;
6795 if Length(P) < 4 then
6796 begin
6797 g_Console_Add(cmd + ' <listen IP> <port> <WAD> [MAP] [# players]');
6798 Exit;
6799 end;
6800 if not StrToIp(P[1], listen) then
6801 Exit;
6802 prt := StrToIntDef(P[2], 25666);
6804 s := addWadExtension(P[3]);
6805 found := e_FindResource(AllMapDirs, s);
6806 P[3] := s;
6807 if found then
6808 begin
6809 // get first map in wad, if not specified
6810 if Length(P) < 5 then
6811 begin
6812 SetLength(P, 5);
6813 P[4] := g_Game_GetFirstMap(P[1]);
6814 end;
6815 s := P[3] + ':\' + UpperCase(P[4]);
6816 if g_Map_Exist(s) then
6817 begin
6818 // start game
6819 g_Game_Free();
6820 with gGameSettings do
6821 begin
6822 GameMode := g_Game_TextToMode(gcGameMode);
6823 if gSwitchGameMode <> GM_NONE then GameMode := gSwitchGameMode;
6824 if GameMode = GM_NONE then GameMode := GM_DM;
6825 if GameMode = GM_SINGLE then GameMode := GM_COOP;
6826 b := 0;
6827 if Length(P) >= 6 then
6828 b := StrToIntDef(P[5], 0);
6829 g_Game_StartServer(s, GameMode, TimeLimit, GoalLimit, MaxLives, Options, b, listen, prt)
6830 end
6831 end
6832 else
6833 begin
6834 if P[4] = '' then
6835 g_Console_Add(Format(_lc[I_MSG_NO_MAPS], [P[3]]))
6836 else
6837 g_Console_Add(Format(_lc[I_MSG_NO_MAP_FALLBACK], [UpperCase(P[4]), P[3]]))
6838 end
6839 end
6840 else
6841 begin
6842 g_Console_Add(Format(_lc[I_MSG_NO_WAD], [P[3]]))
6843 end
6844 end
6845 else if cmd = 'map' then
6846 begin
6847 if Length(P) = 1 then
6848 begin
6849 if g_Game_IsServer and (gGameSettings.GameType <> GT_SINGLE) then
6850 begin
6851 g_Console_Add(cmd + ' <MAP>');
6852 g_Console_Add(cmd + ' <WAD> [MAP]')
6853 end
6854 else
6855 begin
6856 g_Console_Add(_lc[I_MSG_GM_UNAVAIL])
6857 end
6858 end
6859 else
6860 begin
6861 if g_Game_IsServer and (gGameSettings.GameType <> GT_SINGLE) then
6862 begin
6863 if Length(P) < 3 then
6864 begin
6865 // first param is map or wad
6866 s := UpperCase(P[1]);
6867 if g_Map_Exist(gGameSettings.WAD + ':\' + s) then
6868 begin
6869 gExitByTrigger := False;
6870 if gGameOn then
6871 begin
6872 // already in game, finish current map
6873 gNextMap := s;
6874 gExit := EXIT_ENDLEVELCUSTOM;
6875 end
6876 else
6877 begin
6878 // intermission, so change map immediately
6879 g_Game_ChangeMap(s)
6880 end
6881 end
6882 else
6883 begin
6884 s := P[1];
6885 found := e_FindResource(AllMapDirs, s);
6886 P[1] := s;
6887 g_Console_Add(Format(_lc[I_MSG_NO_MAP_FALLBACK], [s, 'WAD ' + P[1]]));
6888 if found then
6889 begin
6890 // no such map, found wad
6891 pw := P[1];
6892 SetLength(P, 3);
6893 P[1] := ExpandFileName(pw);
6894 P[2] := g_Game_GetFirstMap(P[1]);
6895 s := P[1] + ':\' + P[2];
6896 if g_Map_Exist(s) then
6897 begin
6898 gExitByTrigger := False;
6899 if gGameOn then
6900 begin
6901 // already in game, finish current map
6902 gNextMap := s;
6903 gExit := EXIT_ENDLEVELCUSTOM
6904 end
6905 else
6906 begin
6907 // intermission, so change map immediately
6908 g_Game_ChangeMap(s)
6909 end
6910 end
6911 else
6912 begin
6913 if P[2] = '' then
6914 g_Console_Add(Format(_lc[I_MSG_NO_MAPS], [P[1]]))
6915 else
6916 g_Console_Add(Format(_lc[I_MSG_NO_MAP], [P[2]]))
6917 end
6918 end
6919 else
6920 begin
6921 g_Console_Add(Format(_lc[I_MSG_NO_WAD], [P[1]]))
6922 end
6923 end;
6924 end
6925 else
6926 begin
6927 s := addWadExtension(P[1]);
6928 found := e_FindResource(AllMapDirs, s);
6929 P[1] := s;
6930 if found then
6931 begin
6932 P[2] := UpperCase(P[2]);
6933 s := P[1] + ':\' + P[2];
6934 if g_Map_Exist(s) then
6935 begin
6936 gExitByTrigger := False;
6937 if gGameOn then
6938 begin
6939 gNextMap := s;
6940 gExit := EXIT_ENDLEVELCUSTOM
6941 end
6942 else
6943 begin
6944 g_Game_ChangeMap(s)
6945 end
6946 end
6947 else
6948 begin
6949 g_Console_Add(Format(_lc[I_MSG_NO_MAP], [P[2]]))
6950 end
6951 end
6952 else
6953 begin
6954 g_Console_Add(Format(_lc[I_MSG_NO_WAD], [P[1]]))
6955 end
6956 end
6957 end
6958 else
6959 begin
6960 g_Console_Add(_lc[I_MSG_GM_UNAVAIL])
6961 end
6962 end
6963 end
6964 else if cmd = 'nextmap' then
6965 begin
6966 if not(gGameOn or (gState = STATE_INTERCUSTOM)) then
6967 begin
6968 g_Console_Add(_lc[I_MSG_NOT_GAME])
6969 end
6970 else
6971 begin
6972 nm := True;
6973 if Length(P) = 1 then
6974 begin
6975 if g_Game_IsServer and (gGameSettings.GameType <> GT_SINGLE) then
6976 begin
6977 g_Console_Add(cmd + ' <MAP>');
6978 g_Console_Add(cmd + ' <WAD> [MAP]');
6979 end
6980 else
6981 begin
6982 nm := False;
6983 g_Console_Add(_lc[I_MSG_GM_UNAVAIL]);
6984 end;
6985 end
6986 else
6987 begin
6988 nm := False;
6989 if g_Game_IsServer and (gGameSettings.GameType <> GT_SINGLE) then
6990 begin
6991 if Length(P) < 3 then
6992 begin
6993 // first param is map or wad
6994 s := UpperCase(P[1]);
6995 if g_Map_Exist(gGameSettings.WAD + ':\' + s) then
6996 begin
6997 // map founded
6998 gExitByTrigger := False;
6999 gNextMap := s;
7000 nm := True;
7001 end
7002 else
7003 begin
7004 // no such map, found wad
7005 pw := addWadExtension(P[1]);
7006 found := e_FindResource(MapDirs, pw);
7007 if not found then
7008 found := e_FindResource(WadDirs, pw);
7009 P[1] := pw;
7010 g_Console_Add(Format(_lc[I_MSG_NO_MAP_FALLBACK], [s, P[1]]));
7011 if found then
7012 begin
7013 // map not specified, select first map
7014 SetLength(P, 3);
7015 P[2] := g_Game_GetFirstMap(P[1]);
7016 s := P[1] + ':\' + P[2];
7017 if g_Map_Exist(s) then
7018 begin
7019 gExitByTrigger := False;
7020 gNextMap := s;
7021 nm := True
7022 end
7023 else
7024 begin
7025 if P[2] = '' then
7026 g_Console_Add(Format(_lc[I_MSG_NO_MAPS], [P[1]]))
7027 else
7028 g_Console_Add(Format(_lc[I_MSG_NO_MAP], [P[2]]))
7029 end
7030 end
7031 else
7032 begin
7033 g_Console_Add(Format(_lc[I_MSG_NO_WAD], [P[1]]))
7034 end
7035 end
7036 end
7037 else
7038 begin
7039 // specified two params wad + map
7040 pw := addWadExtension(P[1]);
7041 found := e_FindResource(MapDirs, pw);
7042 if not found then
7043 found := e_FindResource(MapDirs, pw);
7044 P[1] := pw;
7045 if found then
7046 begin
7047 P[2] := UpperCase(P[2]);
7048 s := P[1] + ':\' + P[2];
7049 if g_Map_Exist(s) then
7050 begin
7051 gExitByTrigger := False;
7052 gNextMap := s;
7053 nm := True
7054 end
7055 else
7056 begin
7057 g_Console_Add(Format(_lc[I_MSG_NO_MAP], [P[2]]))
7058 end
7059 end
7060 else
7061 begin
7062 g_Console_Add(Format(_lc[I_MSG_NO_WAD], [P[1]]))
7063 end
7064 end
7065 end
7066 else
7067 begin
7068 g_Console_Add(_lc[I_MSG_GM_UNAVAIL])
7069 end
7070 end;
7071 if nm then
7072 begin
7073 if gNextMap = '' then
7074 g_Console_Add(_lc[I_MSG_NEXTMAP_UNSET])
7075 else
7076 g_Console_Add(Format(_lc[I_MSG_NEXTMAP_SET], [gNextMap]))
7077 end
7078 end
7079 end
7080 else if (cmd = 'endmap') or (cmd = 'goodbye') then
7081 begin
7082 if not gGameOn then
7083 begin
7084 g_Console_Add(_lc[I_MSG_NOT_GAME])
7085 end
7086 else
7087 begin
7088 if g_Game_IsServer and (gGameSettings.GameType <> GT_SINGLE) then
7089 begin
7090 gExitByTrigger := False;
7091 // next map not specified, try to find trigger EXIT
7092 if (gNextMap = '') and (gTriggers <> nil) then
7093 begin
7094 for a := 0 to High(gTriggers) do
7095 begin
7096 if gTriggers[a].TriggerType = TRIGGER_EXIT then
7097 begin
7098 gExitByTrigger := True;
7099 //gNextMap := gTriggers[a].Data.MapName;
7100 gNextMap := gTriggers[a].tgcMap;
7101 Break
7102 end
7103 end
7104 end;
7105 if gNextMap = '' then
7106 gNextMap := g_Game_GetNextMap();
7107 if not isWadPath(gNextMap) then
7108 s := gGameSettings.WAD + ':\' + gNextMap
7109 else
7110 s := gNextMap;
7111 if g_Map_Exist(s) then
7112 gExit := EXIT_ENDLEVELCUSTOM
7113 else
7114 g_Console_Add(Format(_lc[I_MSG_NO_MAP], [gNextMap]))
7115 end
7116 else
7117 begin
7118 g_Console_Add(_lc[I_MSG_GM_UNAVAIL])
7119 end
7120 end
7121 end
7122 else if (cmd = 'event') then
7123 begin
7124 if (Length(P) <= 1) then
7125 begin
7126 for a := 0 to High(gEvents) do
7127 if gEvents[a].Command = '' then
7128 g_Console_Add(gEvents[a].Name + ' <none>')
7129 else
7130 g_Console_Add(gEvents[a].Name + ' "' + gEvents[a].Command + '"');
7131 Exit;
7132 end;
7133 if (Length(P) = 2) then
7134 begin
7135 for a := 0 to High(gEvents) do
7136 if gEvents[a].Name = P[1] then
7137 if gEvents[a].Command = '' then
7138 g_Console_Add(gEvents[a].Name + ' <none>')
7139 else
7140 g_Console_Add(gEvents[a].Name + ' "' + gEvents[a].Command + '"');
7141 Exit;
7142 end;
7143 for a := 0 to High(gEvents) do
7144 if gEvents[a].Name = P[1] then
7145 begin
7146 gEvents[a].Command := '';
7147 for b := 2 to High(P) do
7148 if Pos(' ', P[b]) = 0 then
7149 gEvents[a].Command := gEvents[a].Command + ' ' + P[b]
7150 else
7151 gEvents[a].Command := gEvents[a].Command + ' "' + P[b] + '"';
7152 gEvents[a].Command := Trim(gEvents[a].Command);
7153 Exit;
7154 end;
7155 end
7156 else if cmd = 'suicide' then
7157 begin
7158 if gGameOn then
7159 begin
7160 if g_Game_IsClient then
7161 MC_SEND_CheatRequest(NET_CHEAT_SUICIDE)
7162 else
7163 begin
7164 if gPlayer1 <> nil then
7165 gPlayer1.Damage(SUICIDE_DAMAGE, gPlayer1.UID, 0, 0, HIT_SELF);
7166 if gPlayer2 <> nil then
7167 gPlayer2.Damage(SUICIDE_DAMAGE, gPlayer2.UID, 0, 0, HIT_SELF);
7168 end;
7169 end;
7170 end
7171 else if cmd = 'screenshot' then
7172 begin
7173 g_TakeScreenShot()
7174 end
7175 else if cmd = 'weapon' then
7176 begin
7177 if Length(p) = 2 then
7178 begin
7179 a := WP_FIRST + StrToInt(p[1]) - 1;
7180 if (a >= WP_FIRST) and (a <= WP_LAST) then
7181 gSelectWeapon[0, a] := True
7182 end
7183 end
7184 else if (cmd = 'p1_weapon') or (cmd = 'p2_weapon') then
7185 begin
7186 if Length(p) = 2 then
7187 begin
7188 a := WP_FIRST + StrToInt(p[1]) - 1;
7189 b := ord(cmd[2]) - ord('1');
7190 if (a >= WP_FIRST) and (a <= WP_LAST) then
7191 gSelectWeapon[b, a] := True
7192 end
7193 end
7194 // Êîìàíäû Ñâîåé èãðû:
7195 else if gGameSettings.GameType in [GT_CUSTOM, GT_SERVER, GT_CLIENT] then
7196 begin
7197 if cmd = 'bot_addred' then
7198 begin
7199 if Length(P) > 1 then
7200 g_Bot_Add(TEAM_RED, StrToIntDef(P[1], 2))
7201 else
7202 g_Bot_Add(TEAM_RED, 2);
7203 end
7204 else if cmd = 'bot_addblue' then
7205 begin
7206 if Length(P) > 1 then
7207 g_Bot_Add(TEAM_BLUE, StrToIntDef(P[1], 2))
7208 else
7209 g_Bot_Add(TEAM_BLUE, 2);
7210 end
7211 else if cmd = 'spectate' then
7212 begin
7213 if not gGameOn then
7214 Exit;
7215 g_Game_Spectate();
7216 end
7217 else if cmd = 'say' then
7218 begin
7219 if g_Game_IsServer and g_Game_IsNet then
7220 begin
7221 if Length(P) > 1 then
7222 begin
7223 chstr := '';
7224 for a := 1 to High(P) do
7225 chstr := chstr + P[a] + ' ';
7227 if Length(chstr) > 200 then SetLength(chstr, 200);
7229 if Length(chstr) < 1 then
7230 begin
7231 g_Console_Add('say <text>');
7232 Exit;
7233 end;
7235 chstr := b_Text_Format(chstr);
7236 MH_SEND_Chat(chstr, NET_CHAT_PLAYER);
7237 end
7238 else g_Console_Add('say <text>');
7239 end else
7240 g_Console_Add(_lc[I_MSG_SERVERONLY]);
7241 end
7242 else if cmd = 'tell' then
7243 begin
7244 if g_Game_IsServer and g_Game_IsNet then
7245 begin
7246 if (Length(P) > 2) and (P[1] <> '') then
7247 begin
7248 chstr := '';
7249 for a := 2 to High(P) do
7250 chstr := chstr + P[a] + ' ';
7252 if Length(chstr) > 200 then SetLength(chstr, 200);
7254 if Length(chstr) < 1 then
7255 begin
7256 g_Console_Add('tell <playername> <text>');
7257 Exit;
7258 end;
7260 pl := g_Net_Client_ByName(P[1]);
7261 if pl <> nil then
7262 MH_SEND_Chat(b_Text_Format(chstr), NET_CHAT_PLAYER, pl^.ID)
7263 else
7264 g_Console_Add(Format(_lc[I_NET_ERR_NAME404], [P[1]]));
7265 end
7266 else g_Console_Add('tell <playername> <text>');
7267 end else
7268 g_Console_Add(_lc[I_MSG_SERVERONLY]);
7269 end
7270 else if cmd = 'centerprint' then
7271 begin
7272 if (Length(P) > 2) and (P[1] <> '') then
7273 begin
7274 chstr := '';
7275 for a := 2 to High(P) do
7276 chstr := chstr + P[a] + ' ';
7278 if Length(chstr) > 200 then SetLength(chstr, 200);
7280 if Length(chstr) < 1 then
7281 begin
7282 g_Console_Add('centerprint <timeout> <text>');
7283 Exit;
7284 end;
7286 a := StrToIntDef(P[1], 100);
7287 chstr := b_Text_Format(chstr);
7288 g_Game_Message(chstr, a);
7289 if g_Game_IsNet and g_Game_IsServer then
7290 MH_SEND_GameEvent(NET_EV_BIGTEXT, a, chstr);
7291 end
7292 else g_Console_Add('centerprint <timeout> <text>');
7293 end
7294 else if (cmd = 'overtime') and not g_Game_IsClient then
7295 begin
7296 if (Length(P) = 1) or (StrToIntDef(P[1], -1) <= 0) then
7297 Exit;
7298 // Äîïîëíèòåëüíîå âðåìÿ:
7299 gGameSettings.TimeLimit := (gTime - gGameStartTime) div 1000 + Word(StrToIntDef(P[1], 0));
7301 g_Console_Add(Format(_lc[I_MSG_TIME_LIMIT],
7302 [gGameSettings.TimeLimit div 3600,
7303 (gGameSettings.TimeLimit div 60) mod 60,
7304 gGameSettings.TimeLimit mod 60]));
7305 if g_Game_IsNet then MH_SEND_GameSettings;
7306 end
7307 else if (cmd = 'rcon_password') and g_Game_IsClient then
7308 begin
7309 if (Length(P) <= 1) then
7310 g_Console_Add('rcon_password <password>')
7311 else
7312 MC_SEND_RCONPassword(P[1]);
7313 end
7314 else if cmd = 'rcon' then
7315 begin
7316 if g_Game_IsClient then
7317 begin
7318 if Length(P) > 1 then
7319 begin
7320 chstr := '';
7321 for a := 1 to High(P) do
7322 chstr := chstr + P[a] + ' ';
7324 if Length(chstr) > 200 then SetLength(chstr, 200);
7326 if Length(chstr) < 1 then
7327 begin
7328 g_Console_Add('rcon <command>');
7329 Exit;
7330 end;
7332 MC_SEND_RCONCommand(chstr);
7333 end
7334 else g_Console_Add('rcon <command>');
7335 end;
7336 end
7337 else if cmd = 'ready' then
7338 begin
7339 if g_Game_IsServer and (gLMSRespawn = LMS_RESPAWN_WARMUP) then
7340 gLMSRespawnTime := gTime + 100;
7341 end
7342 else if (cmd = 'callvote') and g_Game_IsNet then
7343 begin
7344 if Length(P) > 1 then
7345 begin
7346 chstr := '';
7347 for a := 1 to High(P) do begin
7348 if a > 1 then chstr := chstr + ' ';
7349 chstr := chstr + P[a];
7350 end;
7352 if Length(chstr) > 200 then SetLength(chstr, 200);
7354 if Length(chstr) < 1 then
7355 begin
7356 g_Console_Add('callvote <command>');
7357 Exit;
7358 end;
7360 if g_Game_IsClient then
7361 MC_SEND_Vote(True, chstr)
7362 else
7363 g_Game_StartVote(chstr, gPlayer1Settings.Name);
7364 g_Console_Process('vote', True);
7365 end
7366 else
7367 g_Console_Add('callvote <command>');
7368 end
7369 else if (cmd = 'vote') and g_Game_IsNet then
7370 begin
7371 if g_Game_IsClient then
7372 MC_SEND_Vote(False)
7373 else if gVoteInProgress then
7374 begin
7375 if (gPlayer1 <> nil) or (gPlayer2 <> nil) then
7376 a := Floor((NetClientCount+1)/2.0) + 1
7377 else
7378 a := Floor(NetClientCount/2.0) + 1;
7379 if gVoted then
7380 begin
7381 Dec(gVoteCount);
7382 gVoted := False;
7383 g_Console_Add(Format(_lc[I_MESSAGE_VOTE_REVOKED], [gPlayer1Settings.Name, gVoteCount, a]), True);
7384 MH_SEND_VoteEvent(NET_VE_REVOKE, gPlayer1Settings.Name, 'a', gVoteCount, a);
7385 end
7386 else
7387 begin
7388 Inc(gVoteCount);
7389 gVoted := True;
7390 g_Console_Add(Format(_lc[I_MESSAGE_VOTE_VOTE], [gPlayer1Settings.Name, gVoteCount, a]), True);
7391 MH_SEND_VoteEvent(NET_VE_VOTE, gPlayer1Settings.Name, 'a', gVoteCount, a);
7392 g_Game_CheckVote;
7393 end;
7394 end;
7395 end
7396 end;
7397 end;
7399 procedure g_TakeScreenShot(Filename: string = '');
7400 var s: TStream; t: TDateTime; dir, date, name: String;
7401 begin
7402 if e_NoGraphics then Exit;
7403 try
7404 dir := e_GetWriteableDir(ScreenshotDirs);
7406 if Filename = '' then
7407 begin
7408 t := Now;
7409 DateTimeToString(date, 'yyyy-mm-dd-hh-nn-ss', t);
7410 Filename := 'screenshot-' + date;
7411 end;
7413 name := e_CatPath(dir, Filename + '.png');
7414 s := createDiskFile(name);
7415 try
7416 e_MakeScreenshot(s, gScreenWidth, gScreenHeight);
7417 s.Free;
7418 g_Console_Add(Format(_lc[I_CONSOLE_SCREENSHOT], [name]))
7419 except
7420 g_Console_Add(Format(_lc[I_CONSOLE_ERROR_WRITE], [name]));
7421 s.Free;
7422 DeleteFile(name)
7423 end
7424 except
7425 g_Console_Add('oh shit, i can''t create screenshot!')
7426 end
7427 end;
7429 procedure g_Game_InGameMenu(Show: Boolean);
7430 begin
7431 if (g_ActiveWindow = nil) and Show then
7432 begin
7433 if gGameSettings.GameType = GT_SINGLE then
7434 g_GUI_ShowWindow('GameSingleMenu')
7435 else
7436 begin
7437 if g_Game_IsClient then
7438 g_GUI_ShowWindow('GameClientMenu')
7439 else
7440 if g_Game_IsNet then
7441 g_GUI_ShowWindow('GameServerMenu')
7442 else
7443 g_GUI_ShowWindow('GameCustomMenu');
7444 end;
7445 g_Sound_PlayEx('MENU_OPEN');
7447 // Ïàóçà ïðè ìåíþ òîëüêî â îäèíî÷íîé èãðå:
7448 if (not g_Game_IsNet) then
7449 g_Game_Pause(True);
7450 end
7451 else
7452 if (g_ActiveWindow <> nil) and (not Show) then
7453 begin
7454 // Ïàóçà ïðè ìåíþ òîëüêî â îäèíî÷íîé èãðå:
7455 if (not g_Game_IsNet) then
7456 g_Game_Pause(False);
7457 end;
7458 end;
7460 procedure g_Game_Pause (Enable: Boolean);
7461 var
7462 oldPause: Boolean;
7463 begin
7464 if not gGameOn then exit;
7466 if not (gGameSettings.GameType in [GT_SINGLE, GT_CUSTOM]) then exit;
7468 oldPause := gPause;
7469 gPauseMain := Enable;
7471 if (gPause <> oldPause) then g_Game_PauseAllSounds(gPause);
7472 end;
7474 procedure g_Game_HolmesPause (Enable: Boolean);
7475 var
7476 oldPause: Boolean;
7477 begin
7478 if not gGameOn then exit;
7479 if not (gGameSettings.GameType in [GT_SINGLE, GT_CUSTOM]) then exit;
7481 oldPause := gPause;
7482 gPauseHolmes := Enable;
7484 if (gPause <> oldPause) then g_Game_PauseAllSounds(gPause);
7485 end;
7487 procedure g_Game_PauseAllSounds(Enable: Boolean);
7488 var
7489 i: Integer;
7490 begin
7491 // Òðèããåðû:
7492 if gTriggers <> nil then
7493 for i := 0 to High(gTriggers) do
7494 with gTriggers[i] do
7495 if (TriggerType = TRIGGER_SOUND) and
7496 (Sound <> nil) and
7497 Sound.IsPlaying() then
7498 begin
7499 Sound.Pause(Enable);
7500 end;
7502 // Çâóêè èãðîêîâ:
7503 if gPlayers <> nil then
7504 for i := 0 to High(gPlayers) do
7505 if gPlayers[i] <> nil then
7506 gPlayers[i].PauseSounds(Enable);
7508 // Ìóçûêà:
7509 if gMusic <> nil then
7510 gMusic.Pause(Enable);
7511 end;
7513 procedure g_Game_StopAllSounds(all: Boolean);
7514 var
7515 i: Integer;
7516 begin
7517 if gTriggers <> nil then
7518 for i := 0 to High(gTriggers) do
7519 with gTriggers[i] do
7520 if (TriggerType = TRIGGER_SOUND) and
7521 (Sound <> nil) then
7522 Sound.Stop();
7524 if gMusic <> nil then
7525 gMusic.Stop();
7527 if all then
7528 e_StopChannels();
7529 end;
7531 procedure g_Game_UpdateTriggerSounds;
7532 var i: Integer;
7533 begin
7534 if gTriggers <> nil then
7535 for i := 0 to High(gTriggers) do
7536 with gTriggers[i] do
7537 if (TriggerType = TRIGGER_SOUND) and (Sound <> nil) and tgcLocal and Sound.IsPlaying() then
7538 Sound.SetCoordsRect(X, Y, Width, Height, tgcVolume / 255.0)
7539 end;
7541 function g_Game_IsWatchedPlayer(UID: Word): Boolean;
7542 begin
7543 Result := False;
7544 if (gPlayer1 <> nil) and (gPlayer1.UID = UID) then
7545 begin
7546 Result := True;
7547 Exit;
7548 end;
7549 if (gPlayer2 <> nil) and (gPlayer2.UID = UID) then
7550 begin
7551 Result := True;
7552 Exit;
7553 end;
7554 if gSpectMode <> SPECT_PLAYERS then
7555 Exit;
7556 if gSpectPID1 = UID then
7557 begin
7558 Result := True;
7559 Exit;
7560 end;
7561 if gSpectViewTwo and (gSpectPID2 = UID) then
7562 begin
7563 Result := True;
7564 Exit;
7565 end;
7566 end;
7568 function g_Game_IsWatchedTeam(Team: Byte): Boolean;
7569 var
7570 Pl: TPlayer;
7571 begin
7572 Result := False;
7573 if (gPlayer1 <> nil) and (gPlayer1.Team = Team) then
7574 begin
7575 Result := True;
7576 Exit;
7577 end;
7578 if (gPlayer2 <> nil) and (gPlayer2.Team = Team) then
7579 begin
7580 Result := True;
7581 Exit;
7582 end;
7583 if gSpectMode <> SPECT_PLAYERS then
7584 Exit;
7585 Pl := g_Player_Get(gSpectPID1);
7586 if (Pl <> nil) and (Pl.Team = Team) then
7587 begin
7588 Result := True;
7589 Exit;
7590 end;
7591 if gSpectViewTwo then
7592 begin
7593 Pl := g_Player_Get(gSpectPID2);
7594 if (Pl <> nil) and (Pl.Team = Team) then
7595 begin
7596 Result := True;
7597 Exit;
7598 end;
7599 end;
7600 end;
7602 procedure g_Game_Message(Msg: string; Time: Word);
7603 begin
7604 MessageLineLength := (gScreenWidth - 204) div e_CharFont_GetMaxWidth(gMenuFont);
7605 MessageText := b_Text_Wrap(b_Text_Format(Msg), MessageLineLength);
7606 MessageTime := Time;
7607 end;
7609 procedure g_Game_ChatSound(Text: String; Taunt: Boolean = True);
7610 const
7611 punct: Array[0..13] of String =
7612 ('.', ',', ':', ';', '!', '?', '(', ')', '''', '"', '/', '\', '*', '^');
7613 var
7614 i, j: Integer;
7615 ok: Boolean;
7616 fpText: String;
7618 function IsPunctuation(S: String): Boolean;
7619 var
7620 i: Integer;
7621 begin
7622 Result := False;
7623 if Length(S) <> 1 then
7624 Exit;
7625 for i := Low(punct) to High(punct) do
7626 if S = punct[i] then
7627 begin
7628 Result := True;
7629 break;
7630 end;
7631 end;
7632 function FilterPunctuation(S: String): String;
7633 var
7634 i: Integer;
7635 begin
7636 for i := Low(punct) to High(punct) do
7637 S := StringReplace(S, punct[i], ' ', [rfReplaceAll]);
7638 Result := S;
7639 end;
7640 begin
7641 ok := False;
7643 if gUseChatSounds and Taunt and (gChatSounds <> nil) and (Pos(': ', Text) > 0) then
7644 begin
7645 // remove player name
7646 Delete(Text, 1, Pos(': ', Text) + 2 - 1);
7647 // for FullWord check
7648 Text := toLowerCase1251(' ' + Text + ' ');
7649 fpText := FilterPunctuation(Text);
7651 for i := 0 to Length(gChatSounds) - 1 do
7652 begin
7653 ok := True;
7654 for j := 0 to Length(gChatSounds[i].Tags) - 1 do
7655 begin
7656 if gChatSounds[i].FullWord and (not IsPunctuation(gChatSounds[i].Tags[j])) then
7657 ok := Pos(' ' + gChatSounds[i].Tags[j] + ' ', fpText) > 0
7658 else
7659 ok := Pos(gChatSounds[i].Tags[j], Text) > 0;
7660 if not ok then
7661 break;
7662 end;
7663 if ok then
7664 begin
7665 gChatSounds[i].Sound.Play();
7666 break;
7667 end;
7668 end;
7669 end;
7670 if not ok then
7671 g_Sound_PlayEx('SOUND_GAME_RADIO');
7672 end;
7674 procedure g_Game_Announce_GoodShot(SpawnerUID: Word);
7675 var
7676 a: Integer;
7677 begin
7678 case gAnnouncer of
7679 ANNOUNCE_NONE:
7680 Exit;
7681 ANNOUNCE_ME,
7682 ANNOUNCE_MEPLUS:
7683 if not g_Game_IsWatchedPlayer(SpawnerUID) then
7684 Exit;
7685 end;
7686 for a := 0 to 3 do
7687 if goodsnd[a].IsPlaying() then
7688 Exit;
7690 goodsnd[Random(4)].Play();
7691 end;
7693 procedure g_Game_Announce_KillCombo(Param: Integer);
7694 var
7695 UID: Word;
7696 c, n: Byte;
7697 Pl: TPlayer;
7698 Name: String;
7699 begin
7700 UID := Param and $FFFF;
7701 c := Param shr 16;
7702 if c < 2 then
7703 Exit;
7705 Pl := g_Player_Get(UID);
7706 if Pl = nil then
7707 Name := '?'
7708 else
7709 Name := Pl.Name;
7711 case c of
7712 2: begin
7713 n := 0;
7714 g_Console_Add(Format(_lc[I_PLAYER_KILL_2X], [Name]), True);
7715 end;
7716 3: begin
7717 n := 1;
7718 g_Console_Add(Format(_lc[I_PLAYER_KILL_3X], [Name]), True);
7719 end;
7720 4: begin
7721 n := 2;
7722 g_Console_Add(Format(_lc[I_PLAYER_KILL_4X], [Name]), True);
7723 end;
7724 else begin
7725 n := 3;
7726 g_Console_Add(Format(_lc[I_PLAYER_KILL_MX], [Name]), True);
7727 end;
7728 end;
7730 case gAnnouncer of
7731 ANNOUNCE_NONE:
7732 Exit;
7733 ANNOUNCE_ME:
7734 if not g_Game_IsWatchedPlayer(UID) then
7735 Exit;
7736 ANNOUNCE_MEPLUS:
7737 if (not g_Game_IsWatchedPlayer(UID)) and (c < 4) then
7738 Exit;
7739 end;
7741 if killsnd[n].IsPlaying() then
7742 killsnd[n].Stop();
7743 killsnd[n].Play();
7744 end;
7746 procedure g_Game_Announce_BodyKill(SpawnerUID: Word);
7747 var
7748 a: Integer;
7749 begin
7750 case gAnnouncer of
7751 ANNOUNCE_NONE:
7752 Exit;
7753 ANNOUNCE_ME,
7754 ANNOUNCE_MEPLUS:
7755 if not g_Game_IsWatchedPlayer(SpawnerUID) then
7756 Exit;
7757 end;
7758 for a := 0 to 2 do
7759 if hahasnd[a].IsPlaying() then
7760 Exit;
7762 hahasnd[Random(3)].Play();
7763 end;
7765 procedure g_Game_StartVote(Command, Initiator: string);
7766 var
7767 Need: Integer;
7768 begin
7769 if not gVotesEnabled then Exit;
7770 if gGameSettings.GameType <> GT_SERVER then Exit;
7771 if gVoteInProgress or gVotePassed then
7772 begin
7773 g_Console_Add(Format(_lc[I_MESSAGE_VOTE_INPROGRESS], [gVoteCommand]), True);
7774 MH_SEND_VoteEvent(NET_VE_INPROGRESS, gVoteCommand);
7775 Exit;
7776 end;
7777 gVoteInProgress := True;
7778 gVotePassed := False;
7779 gVoteTimer := gTime + gVoteTimeout * 1000;
7780 gVoteCount := 0;
7781 gVoted := False;
7782 gVoteCommand := Command;
7784 if (gPlayer1 <> nil) or (gPlayer2 <> nil) then
7785 Need := Floor((NetClientCount+1)/2.0)+1
7786 else
7787 Need := Floor(NetClientCount/2.0)+1;
7788 g_Console_Add(Format(_lc[I_MESSAGE_VOTE_STARTED], [Initiator, Command, Need]), True);
7789 MH_SEND_VoteEvent(NET_VE_STARTED, Initiator, Command, Need);
7790 end;
7792 procedure g_Game_CheckVote;
7793 var
7794 I, Need: Integer;
7795 begin
7796 if gGameSettings.GameType <> GT_SERVER then Exit;
7797 if not gVoteInProgress then Exit;
7799 if (gTime >= gVoteTimer) then
7800 begin
7801 if (gPlayer1 <> nil) or (gPlayer2 <> nil) then
7802 Need := Floor((NetClientCount+1)/2.0) + 1
7803 else
7804 Need := Floor(NetClientCount/2.0) + 1;
7805 if gVoteCount >= Need then
7806 begin
7807 g_Console_Add(Format(_lc[I_MESSAGE_VOTE_PASSED], [gVoteCommand]), True);
7808 MH_SEND_VoteEvent(NET_VE_PASSED, gVoteCommand);
7809 gVotePassed := True;
7810 gVoteCmdTimer := gTime + 5000;
7811 end
7812 else
7813 begin
7814 g_Console_Add(_lc[I_MESSAGE_VOTE_FAILED], True);
7815 MH_SEND_VoteEvent(NET_VE_FAILED);
7816 end;
7817 if NetClients <> nil then
7818 for I := Low(NetClients) to High(NetClients) do
7819 if NetClients[i].Used then
7820 NetClients[i].Voted := False;
7821 gVoteInProgress := False;
7822 gVoted := False;
7823 gVoteCount := 0;
7824 end
7825 else
7826 begin
7827 if (gPlayer1 <> nil) or (gPlayer2 <> nil) then
7828 Need := Floor((NetClientCount+1)/2.0) + 1
7829 else
7830 Need := Floor(NetClientCount/2.0) + 1;
7831 if gVoteCount >= Need then
7832 begin
7833 g_Console_Add(Format(_lc[I_MESSAGE_VOTE_PASSED], [gVoteCommand]), True);
7834 MH_SEND_VoteEvent(NET_VE_PASSED, gVoteCommand);
7835 gVoteInProgress := False;
7836 gVotePassed := True;
7837 gVoteCmdTimer := gTime + 5000;
7838 gVoted := False;
7839 gVoteCount := 0;
7840 if NetClients <> nil then
7841 for I := Low(NetClients) to High(NetClients) do
7842 if NetClients[i].Used then
7843 NetClients[i].Voted := False;
7844 end;
7845 end;
7846 end;
7848 procedure g_Game_LoadMapList(FileName: string);
7849 var
7850 ListFile: TextFile;
7851 s: string;
7852 begin
7853 MapList := nil;
7854 MapIndex := -1;
7856 if not FileExists(FileName) then Exit;
7858 AssignFile(ListFile, FileName);
7859 Reset(ListFile);
7860 while not EOF(ListFile) do
7861 begin
7862 ReadLn(ListFile, s);
7864 s := Trim(s);
7865 if s = '' then Continue;
7867 SetLength(MapList, Length(MapList)+1);
7868 MapList[High(MapList)] := s;
7869 end;
7870 CloseFile(ListFile);
7871 end;
7873 procedure g_Game_SetDebugMode();
7874 begin
7875 gDebugMode := True;
7876 // ×èòû (äàæå â ñâîåé èãðå):
7877 gCheats := True;
7878 end;
7880 procedure g_Game_SetLoadingText(Text: String; Max: Integer; reWrite: Boolean);
7881 var
7882 i: Word;
7883 begin
7884 if Length(LoadingStat.Msgs) = 0 then
7885 Exit;
7887 with LoadingStat do
7888 begin
7889 if not reWrite then
7890 begin // Ïåðåõîäèì íà ñëåäóþùóþ ñòðîêó èëè ñêðîëëèðóåì:
7891 if NextMsg = Length(Msgs) then
7892 begin // scroll
7893 for i := 0 to High(Msgs)-1 do
7894 Msgs[i] := Msgs[i+1];
7895 end
7896 else
7897 Inc(NextMsg);
7898 end else
7899 if NextMsg = 0 then
7900 Inc(NextMsg);
7902 Msgs[NextMsg-1] := Text;
7903 CurValue := 0;
7904 MaxValue := Max;
7905 ShowCount := 0;
7906 PBarWasHere := false;
7907 end;
7909 g_ActiveWindow := nil;
7911 ProcessLoading(true);
7912 end;
7914 procedure g_Game_StepLoading(Value: Integer = -1);
7915 begin
7916 with LoadingStat do
7917 begin
7918 if Value = -1 then
7919 begin
7920 Inc(CurValue);
7921 Inc(ShowCount);
7922 end
7923 else
7924 CurValue := Value;
7925 if (ShowCount > LOADING_SHOW_STEP) or (Value > -1) then
7926 begin
7927 ShowCount := 0;
7928 ProcessLoading();
7929 end;
7930 end;
7931 end;
7933 procedure g_Game_ClearLoading();
7934 var
7935 len: Word;
7936 begin
7937 with LoadingStat do
7938 begin
7939 CurValue := 0;
7940 MaxValue := 0;
7941 ShowCount := 0;
7942 len := ((gScreenHeight div 3)*2 - 50) div LOADING_INTERLINE;
7943 if len < 1 then len := 1;
7944 SetLength(Msgs, len);
7945 for len := Low(Msgs) to High(Msgs) do
7946 Msgs[len] := '';
7947 NextMsg := 0;
7948 PBarWasHere := false;
7949 end;
7950 end;
7952 procedure Parse_Params(var pars: TParamStrValues);
7953 var
7954 i: Integer;
7955 s: String;
7956 begin
7957 SetLength(pars, 0);
7958 i := 1;
7959 while i <= ParamCount do
7960 begin
7961 s := ParamStr(i);
7962 if (s[1] = '-') and (Length(s) > 1) then
7963 begin
7964 if (s[2] = '-') and (Length(s) > 2) then
7965 begin // Îäèíî÷íûé ïàðàìåòð
7966 SetLength(pars, Length(pars) + 1);
7967 with pars[High(pars)] do
7968 begin
7969 Name := LowerCase(s);
7970 Value := '+';
7971 end;
7972 end
7973 else
7974 if (i < ParamCount) then
7975 begin // Ïàðàìåòð ñî çíà÷åíèåì
7976 Inc(i);
7977 SetLength(pars, Length(pars) + 1);
7978 with pars[High(pars)] do
7979 begin
7980 Name := LowerCase(s);
7981 Value := LowerCase(ParamStr(i));
7982 end;
7983 end;
7984 end;
7986 Inc(i);
7987 end;
7988 end;
7990 function Find_Param_Value(var pars: TParamStrValues; aName: String): String;
7991 var
7992 i: Integer;
7993 begin
7994 Result := '';
7995 for i := 0 to High(pars) do
7996 if pars[i].Name = aName then
7997 begin
7998 Result := pars[i].Value;
7999 Break;
8000 end;
8001 end;
8003 procedure g_Game_Process_Params();
8004 var
8005 pars: TParamStrValues;
8006 map: String;
8007 GMode, n: Byte;
8008 LimT, LimS: Integer;
8009 Opt: LongWord;
8010 Lives: Integer;
8011 s: String;
8012 Port: Integer;
8013 ip: String;
8014 F: TextFile;
8015 begin
8016 Parse_Params(pars);
8018 // Debug mode:
8019 s := Find_Param_Value(pars, '--debug');
8020 if (s <> '') then
8021 begin
8022 g_Game_SetDebugMode();
8023 s := Find_Param_Value(pars, '--netdump');
8024 if (s <> '') then
8025 NetDump := True;
8026 end;
8028 // Connect when game loads
8029 ip := Find_Param_Value(pars, '-connect');
8031 if ip <> '' then
8032 begin
8033 s := Find_Param_Value(pars, '-port');
8034 if (s = '') or not TryStrToInt(s, Port) then
8035 Port := 25666;
8037 s := Find_Param_Value(pars, '-pw');
8039 g_Game_StartClient(ip, Port, s);
8040 Exit;
8041 end;
8043 s := LowerCase(Find_Param_Value(pars, '-dbg-mainwad'));
8044 if (s <> '') then
8045 begin
8046 gDefaultMegawadStart := s;
8047 end;
8049 if (Find_Param_Value(pars, '--dbg-mainwad-restore') <> '') or
8050 (Find_Param_Value(pars, '--dbg-mainwad-default') <> '') then
8051 begin
8052 gDefaultMegawadStart := DF_Default_Megawad_Start;
8053 end;
8055 // Start map when game loads:
8056 map := LowerCase(Find_Param_Value(pars, '-map'));
8057 if isWadPath(map) then
8058 begin
8059 // Game mode:
8060 s := Find_Param_Value(pars, '-gm');
8061 GMode := g_Game_TextToMode(s);
8062 if GMode = GM_NONE then GMode := GM_DM;
8063 if GMode = GM_SINGLE then GMode := GM_COOP;
8065 // Time limit:
8066 s := Find_Param_Value(pars, '-limt');
8067 if (s = '') or (not TryStrToInt(s, LimT)) then
8068 LimT := 0;
8069 if LimT < 0 then
8070 LimT := 0;
8072 // Goal limit:
8073 s := Find_Param_Value(pars, '-lims');
8074 if (s = '') or (not TryStrToInt(s, LimS)) then
8075 LimS := 0;
8076 if LimS < 0 then
8077 LimS := 0;
8079 // Lives limit:
8080 s := Find_Param_Value(pars, '-lives');
8081 if (s = '') or (not TryStrToInt(s, Lives)) then
8082 Lives := 0;
8083 if Lives < 0 then
8084 Lives := 0;
8086 // Options:
8087 s := Find_Param_Value(pars, '-opt');
8088 if (s = '') then
8089 Opt := GAME_OPTION_ALLOWEXIT or GAME_OPTION_BOTVSPLAYER or GAME_OPTION_BOTVSMONSTER
8090 else
8091 Opt := StrToIntDef(s, 0);
8092 if Opt = 0 then
8093 Opt := GAME_OPTION_ALLOWEXIT or GAME_OPTION_BOTVSPLAYER or GAME_OPTION_BOTVSMONSTER;
8095 // Close after map:
8096 s := Find_Param_Value(pars, '--close');
8097 if (s <> '') then
8098 gMapOnce := True;
8100 // Override map to test:
8101 s := LowerCase(Find_Param_Value(pars, '-testmap'));
8102 if s <> '' then
8103 begin
8104 if e_IsValidResourceName(s) then
8105 e_FindResource(AllMapDirs, s);
8106 gTestMap := ExpandFileName(s);
8107 end;
8109 // Delete test map after play:
8110 s := Find_Param_Value(pars, '--testdelete');
8111 if (s <> '') then
8112 begin
8113 //gMapToDelete := MapsDir + map;
8114 e_WriteLog('"--testdelete" is deprecated, use --tempdelete.', TMsgType.Fatal);
8115 Halt(1);
8116 end;
8118 // Delete temporary WAD after play:
8119 s := Find_Param_Value(pars, '--tempdelete');
8120 if (s <> '') and (gTestMap <> '') then
8121 begin
8122 gMapToDelete := gTestMap;
8123 gTempDelete := True;
8124 end;
8126 // Number of players:
8127 s := Find_Param_Value(pars, '-pl');
8128 if (s = '') then
8129 n := DEFAULT_PLAYERS
8130 else
8131 n := StrToIntDef(s, DEFAULT_PLAYERS);
8133 // Start:
8134 s := Find_Param_Value(pars, '-port');
8135 if (s = '') or not TryStrToInt(s, Port) then
8136 g_Game_StartCustom(map, GMode, LimT, LimS, Lives, Opt, n)
8137 else
8138 g_Game_StartServer(map, GMode, LimT, LimS, Lives, Opt, n, 0, Port);
8139 end;
8141 // Execute script when game loads:
8142 s := Find_Param_Value(pars, '-exec');
8143 if s <> '' then
8144 begin
8145 // if not isWadPath(s) then
8146 // s := GameDir + '/' + s;
8148 {$I-}
8149 AssignFile(F, s);
8150 Reset(F);
8151 if IOResult <> 0 then
8152 begin
8153 e_WriteLog(Format(_lc[I_SIMPLE_ERROR], ['Failed to read file: ' + s]), TMsgType.Warning);
8154 g_Console_Add(Format(_lc[I_CONSOLE_ERROR_READ], [s]));
8155 CloseFile(F);
8156 Exit;
8157 end;
8158 e_WriteLog('Executing script: ' + s, TMsgType.Notify);
8159 g_Console_Add(Format(_lc[I_CONSOLE_EXEC], [s]));
8161 while not EOF(F) do
8162 begin
8163 ReadLn(F, s);
8164 if IOResult <> 0 then
8165 begin
8166 e_WriteLog(Format(_lc[I_SIMPLE_ERROR], ['Failed to read file: ' + s]), TMsgType.Warning);
8167 g_Console_Add(Format(_lc[I_CONSOLE_ERROR_READ], [s]));
8168 CloseFile(F);
8169 Exit;
8170 end;
8171 if Pos('#', s) <> 1 then // script comment
8172 g_Console_Process(s, True);
8173 end;
8175 CloseFile(F);
8176 {$I+}
8177 end;
8179 SetLength(pars, 0);
8180 end;
8182 begin
8183 conRegVar('pf_draw_frame', @g_profile_frame_draw, 'draw frame rendering profiles', 'render profiles');
8184 //conRegVar('pf_update_frame', @g_profile_frame_update, 'draw frame updating profiles', 'update profiles');
8185 conRegVar('pf_coldet', @g_profile_collision, 'draw collision detection profiles', 'coldet profiles');
8186 conRegVar('pf_los', @g_profile_los, 'draw monster LOS profiles', 'monster LOS profiles');
8188 conRegVar('r_sq_draw', @gdbg_map_use_accel_render, 'accelerated spatial queries in rendering', 'accelerated rendering');
8189 conRegVar('cd_sq_enabled', @gdbg_map_use_accel_coldet, 'accelerated spatial queries in map coldet', 'accelerated map coldet');
8190 conRegVar('mon_sq_enabled', @gmon_debug_use_sqaccel, 'accelerated spatial queries for monsters', 'accelerated monster coldet');
8191 conRegVar('wtrace_sq_enabled', @gwep_debug_fast_trace, 'accelerated spatial queries for weapon hitscan trace', 'accelerated weapon hitscan');
8193 conRegVar('pr_enabled', @gpart_dbg_enabled, 'enable/disable particles', 'particles');
8194 conRegVar('pr_phys_enabled', @gpart_dbg_phys_enabled, 'enable/disable particle physics', 'particle physics');
8196 conRegVar('los_enabled', @gmon_dbg_los_enabled, 'enable/disable monster LOS calculations', 'monster LOS', true);
8197 conRegVar('mon_think', @gmon_debug_think, 'enable/disable monster thinking', 'monster thinking', true);
8199 {$IFDEF ENABLE_HOLMES}
8200 conRegVar('dbg_holmes', @g_holmes_enabled, 'enable/disable Holmes', 'Holmes', true);
8201 {$ENDIF}
8203 conRegVar('dbg_ignore_level_bounds', @g_dbg_ignore_bounds, 'ignore level bounds', '', false);
8205 conRegVar('r_scale', @g_dbg_scale, 0.01, 100.0, 'render scale', '', false);
8207 conRegVar('light_enabled', @gwin_k8_enable_light_experiments, 'enable/disable dynamic lighting', 'lighting');
8208 conRegVar('light_player_halo', @g_playerLight, 'enable/disable player halo', 'player light halo');
8210 conRegVar('r_smallmap_align_h', @r_smallmap_h, 'halign: 0: left; 1: center; 2: right', 'horizontal aligning of small maps');
8211 conRegVar('r_smallmap_align_v', @r_smallmap_v, 'valign: 0: top; 1: center; 2: bottom', 'vertial aligning of small maps');
8213 conRegVar('r_showfps', @gShowFPS, 'draw fps counter', 'draw fps counter');
8214 conRegVar('r_showtime', @gShowTime, 'show game time', 'show game time');
8215 end.