DEADSOFTWARE

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