DEADSOFTWARE

forcing centering of small maps (BlackDoomer request)
[d2df-sdl.git] / src / game / g_map.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, either version 3 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *)
16 {$INCLUDE ../shared/a_modes.inc}
17 {$DEFINE MAP_DEBUG_ENABLED_FLAG}
18 unit g_map;
20 interface
22 uses
23 e_graphics, g_basic, MAPSTRUCT, g_textures, Classes,
24 g_phys, wadreader, BinEditor, g_panel, g_grid, md5, binheap, xprofiler;
26 type
27 TMapInfo = record
28 Map: String;
29 Name: String;
30 Description: String;
31 Author: String;
32 MusicName: String;
33 SkyName: String;
34 Height: Word;
35 Width: Word;
36 end;
38 PRespawnPoint = ^TRespawnPoint;
39 TRespawnPoint = record
40 X, Y: Integer;
41 Direction: TDirection;
42 PointType: Byte;
43 end;
45 PFlagPoint = ^TFlagPoint;
46 TFlagPoint = TRespawnPoint;
48 PFlag = ^TFlag;
49 TFlag = record
50 Obj: TObj;
51 RespawnType: Byte;
52 State: Byte;
53 Count: Integer;
54 CaptureTime: LongWord;
55 Animation: TAnimation;
56 Direction: TDirection;
57 end;
59 function g_Map_Load(Res: String): Boolean;
60 function g_Map_GetMapInfo(Res: String): TMapInfo;
61 function g_Map_GetMapsList(WADName: String): SArray;
62 function g_Map_Exist(Res: String): Boolean;
63 procedure g_Map_Free();
64 procedure g_Map_Update();
66 procedure g_Map_DrawPanels (PanelType: Word); // unaccelerated
67 procedure g_Map_CollectDrawPanels (x0, y0, wdt, hgt: Integer);
69 procedure g_Map_DrawBack(dx, dy: Integer);
70 function g_Map_CollidePanel(X, Y: Integer; Width, Height: Word;
71 PanelType: Word; b1x3: Boolean=false): Boolean;
72 function g_Map_CollideLiquid_Texture(X, Y: Integer; Width, Height: Word): DWORD;
73 procedure g_Map_EnableWall(ID: DWORD);
74 procedure g_Map_DisableWall(ID: DWORD);
75 procedure g_Map_SwitchTexture(PanelType: Word; ID: DWORD; AnimLoop: Byte = 0);
76 procedure g_Map_SetLift(ID: DWORD; t: Integer);
77 procedure g_Map_ReAdd_DieTriggers();
78 function g_Map_IsSpecialTexture(Texture: String): Boolean;
80 function g_Map_GetPoint(PointType: Byte; var RespawnPoint: TRespawnPoint): Boolean;
81 function g_Map_GetPointCount(PointType: Byte): Word;
83 function g_Map_HaveFlagPoints(): Boolean;
85 procedure g_Map_ResetFlag(Flag: Byte);
86 procedure g_Map_DrawFlags();
88 function g_Map_PanelForPID(PanelID: Integer; var PanelArrayID: Integer): PPanel;
90 procedure g_Map_SaveState(Var Mem: TBinMemoryWriter);
91 procedure g_Map_LoadState(Var Mem: TBinMemoryReader);
93 procedure g_Map_DrawPanelShadowVolumes(lightX: Integer; lightY: Integer; radius: Integer);
95 // returns panel or nil
96 // sets `ex` and `ey` to `x1` and `y1` when no hit was detected
97 function g_Map_traceToNearestWall (x0, y0, x1, y1: Integer; hitx: PInteger=nil; hity: PInteger=nil): TPanel;
99 // returns panel or nil
100 // sets `ex` and `ey` to `x1` and `y1` when no hit was detected
101 function g_Map_traceToNearest (x0, y0, x1, y1: Integer; tag: Integer; hitx: PInteger=nil; hity: PInteger=nil): TPanel;
103 type
104 TForEachPanelCB = function (pan: TPanel): Boolean; // return `true` to stop
106 function g_Map_HasAnyPanelAtPoint (x, y: Integer; panelType: Word): Boolean;
107 function g_Map_PanelAtPoint (x, y: Integer; tagmask: Integer=-1): TPanel;
109 // trace liquid, stepping by `dx` and `dy`
110 // return last seen liquid coords, and `false` if we're started outside of the liquid
111 function g_Map_TraceLiquidNonPrecise (x, y, dx, dy: Integer; out topx, topy: Integer): Boolean;
114 procedure g_Map_ProfilersBegin ();
115 procedure g_Map_ProfilersEnd ();
118 const
119 RESPAWNPOINT_PLAYER1 = 1;
120 RESPAWNPOINT_PLAYER2 = 2;
121 RESPAWNPOINT_DM = 3;
122 RESPAWNPOINT_RED = 4;
123 RESPAWNPOINT_BLUE = 5;
125 FLAG_NONE = 0;
126 FLAG_RED = 1;
127 FLAG_BLUE = 2;
128 FLAG_DOM = 3;
130 FLAG_STATE_NONE = 0;
131 FLAG_STATE_NORMAL = 1;
132 FLAG_STATE_DROPPED = 2;
133 FLAG_STATE_CAPTURED = 3;
134 FLAG_STATE_SCORED = 4; // Äëÿ ýâåíòîâ ÷åðåç ñåòêó.
135 FLAG_STATE_RETURNED = 5; // Äëÿ ýâåíòîâ ÷åðåç ñåòêó.
137 FLAG_TIME = 720; // 20 seconds
139 SKY_STRETCH: Single = 1.5;
141 const
142 GridTagInvalid = 0;
144 (* draw order:
145 PANEL_BACK
146 PANEL_STEP
147 PANEL_WALL
148 PANEL_CLOSEDOOR
149 PANEL_ACID1
150 PANEL_ACID2
151 PANEL_WATER
152 PANEL_FORE
153 *)
154 // sorted by draw priority
155 GridTagBack = 1 shl 0;
156 GridTagStep = 1 shl 1;
157 GridTagWall = 1 shl 2;
158 GridTagDoor = 1 shl 3;
159 GridTagAcid1 = 1 shl 4;
160 GridTagAcid2 = 1 shl 5;
161 GridTagWater = 1 shl 6;
162 GridTagFore = 1 shl 7;
163 // the following are invisible
164 GridTagLift = 1 shl 8;
165 GridTagBlockMon = 1 shl 9;
167 GridDrawableMask = (GridTagBack or GridTagStep or GridTagWall or GridTagDoor or GridTagAcid1 or GridTagAcid2 or GridTagWater or GridTagFore);
170 var
171 gWalls: TPanelArray;
172 gRenderBackgrounds: TPanelArray;
173 gRenderForegrounds: TPanelArray;
174 gWater, gAcid1, gAcid2: TPanelArray;
175 gSteps: TPanelArray;
176 gLifts: TPanelArray;
177 gBlockMon: TPanelArray;
178 gFlags: array [FLAG_RED..FLAG_BLUE] of TFlag;
179 //gDOMFlags: array of TFlag;
180 gMapInfo: TMapInfo;
181 gBackSize: TPoint;
182 gDoorMap: array of array of DWORD;
183 gLiftMap: array of array of DWORD;
184 gWADHash: TMD5Digest;
185 BackID: DWORD = DWORD(-1);
186 gExternalResources: TStringList;
188 gdbg_map_use_accel_render: Boolean = true;
189 gdbg_map_use_accel_coldet: Boolean = true;
190 profMapCollision: TProfiler = nil; //WARNING: FOR DEBUGGING ONLY!
191 gDrawPanelList: TBinaryHeapObj = nil; // binary heap of all walls we have to render, populated by `g_Map_CollectDrawPanels()`
194 function panelTypeToTag (panelType: Word): Integer; // returns GridTagXXX
197 type
198 TPanelGrid = specialize TBodyGridBase<TPanel>;
200 var
201 mapGrid: TPanelGrid = nil; // DO NOT USE! public for debugging only!
204 implementation
206 uses
207 g_main, e_log, SysUtils, g_items, g_gfx, g_console,
208 GL, GLExt, g_weapons, g_game, g_sound, e_sound, CONFIG,
209 g_options, MAPREADER, g_triggers, g_player, MAPDEF,
210 Math, g_monsters, g_saveload, g_language, g_netmsg,
211 utils, sfs,
212 ImagingTypes, Imaging, ImagingUtility,
213 ImagingGif, ImagingNetworkGraphics;
215 const
216 FLAGRECT: TRectWH = (X:15; Y:12; Width:33; Height:52);
217 MUSIC_SIGNATURE = $4953554D; // 'MUSI'
218 FLAG_SIGNATURE = $47414C46; // 'FLAG'
221 function panelTypeToTag (panelType: Word): Integer;
222 begin
223 case panelType of
224 PANEL_WALL: result := GridTagWall; // gWalls
225 PANEL_OPENDOOR, PANEL_CLOSEDOOR: result := GridTagDoor; // gWalls
226 PANEL_BACK: result := GridTagBack; // gRenderBackgrounds
227 PANEL_FORE: result := GridTagFore; // gRenderForegrounds
228 PANEL_WATER: result := GridTagWater; // gWater
229 PANEL_ACID1: result := GridTagAcid1; // gAcid1
230 PANEL_ACID2: result := GridTagAcid2; // gAcid2
231 PANEL_STEP: result := GridTagStep; // gSteps
232 PANEL_LIFTUP, PANEL_LIFTDOWN, PANEL_LIFTLEFT, PANEL_LIFTRIGHT: result := GridTagLift; // gLifts -- this is for all lifts
233 PANEL_BLOCKMON: result := GridTagBlockMon; // gBlockMon -- this is for all blockmons
234 else result := GridTagInvalid;
235 end;
236 end;
239 function dplLess (a, b: TObject): Boolean;
240 var
241 pa, pb: TPanel;
242 begin
243 pa := TPanel(a);
244 pb := TPanel(b);
245 if (pa.tag < pb.tag) then begin result := true; exit; end;
246 if (pa.tag > pb.tag) then begin result := false; exit; end;
247 result := (pa.arrIdx < pb.arrIdx);
248 end;
250 procedure dplClear ();
251 begin
252 if (gDrawPanelList = nil) then gDrawPanelList := TBinaryHeapObj.Create(@dplLess) else gDrawPanelList.clear();
253 end;
256 type
257 TPanelID = record
258 PWhere: ^TPanelArray;
259 PArrID: Integer;
260 end;
262 var
263 PanelById: array of TPanelID;
264 Textures: TLevelTextureArray;
265 RespawnPoints: Array of TRespawnPoint;
266 FlagPoints: Array [FLAG_RED..FLAG_BLUE] of PFlagPoint;
267 //DOMFlagPoints: Array of TFlagPoint;
270 procedure g_Map_ProfilersBegin ();
271 begin
272 if (profMapCollision = nil) then profMapCollision := TProfiler.Create('COLSOLID', g_profile_history_size);
273 profMapCollision.mainBegin(g_profile_collision);
274 // create sections
275 if g_profile_collision then
276 begin
277 profMapCollision.sectionBegin('*solids');
278 profMapCollision.sectionEnd();
279 profMapCollision.sectionBegin('liquids');
280 profMapCollision.sectionEnd();
281 end;
282 end;
284 procedure g_Map_ProfilersEnd ();
285 begin
286 if (profMapCollision <> nil) then profMapCollision.mainEnd();
287 end;
290 // wall index in `gWalls` or -1
291 function g_Map_traceToNearestWall (x0, y0, x1, y1: Integer; hitx: PInteger=nil; hity: PInteger=nil): TPanel;
292 var
293 ex, ey: Integer;
294 begin
295 result := mapGrid.traceRay(ex, ey, x0, y0, x1, y1, nil, (GridTagWall or GridTagDoor));
296 if (result <> nil) then
297 begin
298 if (hitx <> nil) then hitx^ := ex;
299 if (hity <> nil) then hity^ := ey;
300 end
301 else
302 begin
303 if (hitx <> nil) then hitx^ := x1;
304 if (hity <> nil) then hity^ := y1;
305 end;
306 end;
308 // returns panel or nil
309 function g_Map_traceToNearest (x0, y0, x1, y1: Integer; tag: Integer; hitx: PInteger=nil; hity: PInteger=nil): TPanel;
310 var
311 ex, ey: Integer;
312 begin
313 result := mapGrid.traceRay(ex, ey, x0, y0, x1, y1, nil, tag);
314 if (result <> nil) then
315 begin
316 if (hitx <> nil) then hitx^ := ex;
317 if (hity <> nil) then hity^ := ey;
318 end
319 else
320 begin
321 if (hitx <> nil) then hitx^ := x1;
322 if (hity <> nil) then hity^ := y1;
323 end;
324 end;
327 function g_Map_HasAnyPanelAtPoint (x, y: Integer; panelType: Word): Boolean;
329 function checker (pan: TPanel; tag: Integer): Boolean;
330 begin
332 if ((tag and (GridTagWall or GridTagDoor)) <> 0) then
333 begin
334 result := pan.Enabled; // stop if wall is enabled
335 exit;
336 end;
339 if ((tag and GridTagLift) <> 0) then
340 begin
341 // stop if the lift of the right type
342 result :=
343 ((WordBool(PanelType and PANEL_LIFTUP) and (pan.LiftType = 0)) or
344 (WordBool(PanelType and PANEL_LIFTDOWN) and (pan.LiftType = 1)) or
345 (WordBool(PanelType and PANEL_LIFTLEFT) and (pan.LiftType = 2)) or
346 (WordBool(PanelType and PANEL_LIFTRIGHT) and (pan.LiftType = 3)));
347 exit;
348 end;
350 result := true; // otherwise, stop anyway, 'cause `forEachAtPoint()` is guaranteed to call this only for correct panels
351 end;
353 var
354 tagmask: Integer = 0;
355 begin
356 result := false;
358 if WordBool(PanelType and (PANEL_WALL or PANEL_CLOSEDOOR or PANEL_OPENDOOR)) then tagmask := tagmask or (GridTagWall or GridTagDoor);
359 if WordBool(PanelType and PANEL_WATER) then tagmask := tagmask or GridTagWater;
360 if WordBool(PanelType and PANEL_ACID1) then tagmask := tagmask or GridTagAcid1;
361 if WordBool(PanelType and PANEL_ACID2) then tagmask := tagmask or GridTagAcid2;
362 if WordBool(PanelType and PANEL_STEP) then tagmask := tagmask or GridTagStep;
363 if WordBool(PanelType and (PANEL_LIFTUP or PANEL_LIFTDOWN or PANEL_LIFTLEFT or PANEL_LIFTRIGHT)) then tagmask := tagmask or GridTagLift;
364 if WordBool(PanelType and PANEL_BLOCKMON) then tagmask := tagmask or GridTagBlockMon;
366 if (tagmask = 0) then exit;// just in case
367 if ((tagmask and GridTagLift) <> 0) then
368 begin
369 // slow
370 result := (mapGrid.forEachAtPoint(x, y, checker, tagmask) <> nil);
371 end
372 else
373 begin
374 // fast
375 result := (mapGrid.forEachAtPoint(x, y, nil, tagmask) <> nil);
376 end;
377 end;
380 function g_Map_PanelAtPoint (x, y: Integer; tagmask: Integer=-1): TPanel;
381 begin
382 result := nil;
383 if (tagmask = 0) then exit;
384 result := mapGrid.forEachAtPoint(x, y, nil, tagmask);
385 end;
388 function g_Map_IsSpecialTexture(Texture: String): Boolean;
389 begin
390 Result := (Texture = TEXTURE_NAME_WATER) or
391 (Texture = TEXTURE_NAME_ACID1) or
392 (Texture = TEXTURE_NAME_ACID2);
393 end;
395 procedure CreateDoorMap();
396 var
397 PanelArray: Array of record
398 X, Y: Integer;
399 Width, Height: Word;
400 Active: Boolean;
401 PanelID: DWORD;
402 end;
403 a, b, c, m, i, len: Integer;
404 ok: Boolean;
405 begin
406 if gWalls = nil then
407 Exit;
409 i := 0;
410 len := 128;
411 SetLength(PanelArray, len);
413 for a := 0 to High(gWalls) do
414 if gWalls[a].Door then
415 begin
416 PanelArray[i].X := gWalls[a].X;
417 PanelArray[i].Y := gWalls[a].Y;
418 PanelArray[i].Width := gWalls[a].Width;
419 PanelArray[i].Height := gWalls[a].Height;
420 PanelArray[i].Active := True;
421 PanelArray[i].PanelID := a;
423 i := i + 1;
424 if i = len then
425 begin
426 len := len + 128;
427 SetLength(PanelArray, len);
428 end;
429 end;
431 // Íåò äâåðåé:
432 if i = 0 then
433 begin
434 PanelArray := nil;
435 Exit;
436 end;
438 SetLength(gDoorMap, 0);
440 g_Game_SetLoadingText(_lc[I_LOAD_DOOR_MAP], i-1, False);
442 for a := 0 to i-1 do
443 if PanelArray[a].Active then
444 begin
445 PanelArray[a].Active := False;
446 m := Length(gDoorMap);
447 SetLength(gDoorMap, m+1);
448 SetLength(gDoorMap[m], 1);
449 gDoorMap[m, 0] := PanelArray[a].PanelID;
450 ok := True;
452 while ok do
453 begin
454 ok := False;
456 for b := 0 to i-1 do
457 if PanelArray[b].Active then
458 for c := 0 to High(gDoorMap[m]) do
459 if {((gRenderWalls[PanelArray[b].RenderPanelID].TextureID = gRenderWalls[gDoorMap[m, c]].TextureID) or
460 gRenderWalls[PanelArray[b].RenderPanelID].Hide or gRenderWalls[gDoorMap[m, c]].Hide) and}
461 g_CollideAround(PanelArray[b].X, PanelArray[b].Y,
462 PanelArray[b].Width, PanelArray[b].Height,
463 gWalls[gDoorMap[m, c]].X,
464 gWalls[gDoorMap[m, c]].Y,
465 gWalls[gDoorMap[m, c]].Width,
466 gWalls[gDoorMap[m, c]].Height) then
467 begin
468 PanelArray[b].Active := False;
469 SetLength(gDoorMap[m],
470 Length(gDoorMap[m])+1);
471 gDoorMap[m, High(gDoorMap[m])] := PanelArray[b].PanelID;
472 ok := True;
473 Break;
474 end;
475 end;
477 g_Game_StepLoading();
478 end;
480 PanelArray := nil;
481 end;
483 procedure CreateLiftMap();
484 var
485 PanelArray: Array of record
486 X, Y: Integer;
487 Width, Height: Word;
488 Active: Boolean;
489 end;
490 a, b, c, len, i, j: Integer;
491 ok: Boolean;
492 begin
493 if gLifts = nil then
494 Exit;
496 len := Length(gLifts);
497 SetLength(PanelArray, len);
499 for a := 0 to len-1 do
500 begin
501 PanelArray[a].X := gLifts[a].X;
502 PanelArray[a].Y := gLifts[a].Y;
503 PanelArray[a].Width := gLifts[a].Width;
504 PanelArray[a].Height := gLifts[a].Height;
505 PanelArray[a].Active := True;
506 end;
508 SetLength(gLiftMap, len);
509 i := 0;
511 g_Game_SetLoadingText(_lc[I_LOAD_LIFT_MAP], len-1, False);
513 for a := 0 to len-1 do
514 if PanelArray[a].Active then
515 begin
516 PanelArray[a].Active := False;
517 SetLength(gLiftMap[i], 32);
518 j := 0;
519 gLiftMap[i, j] := a;
520 ok := True;
522 while ok do
523 begin
524 ok := False;
525 for b := 0 to len-1 do
526 if PanelArray[b].Active then
527 for c := 0 to j do
528 if g_CollideAround(PanelArray[b].X,
529 PanelArray[b].Y,
530 PanelArray[b].Width,
531 PanelArray[b].Height,
532 PanelArray[gLiftMap[i, c]].X,
533 PanelArray[gLiftMap[i, c]].Y,
534 PanelArray[gLiftMap[i, c]].Width,
535 PanelArray[gLiftMap[i, c]].Height) then
536 begin
537 PanelArray[b].Active := False;
538 j := j+1;
539 if j > High(gLiftMap[i]) then
540 SetLength(gLiftMap[i],
541 Length(gLiftMap[i])+32);
543 gLiftMap[i, j] := b;
544 ok := True;
546 Break;
547 end;
548 end;
550 SetLength(gLiftMap[i], j+1);
551 i := i+1;
553 g_Game_StepLoading();
554 end;
556 SetLength(gLiftMap, i);
558 PanelArray := nil;
559 end;
561 function CreatePanel(PanelRec: TPanelRec_1; AddTextures: TAddTextureArray;
562 CurTex: Integer; sav: Boolean): Integer;
563 var
564 len: Integer;
565 panels: ^TPanelArray;
566 begin
567 Result := -1;
569 case PanelRec.PanelType of
570 PANEL_WALL, PANEL_OPENDOOR, PANEL_CLOSEDOOR:
571 panels := @gWalls;
572 PANEL_BACK:
573 panels := @gRenderBackgrounds;
574 PANEL_FORE:
575 panels := @gRenderForegrounds;
576 PANEL_WATER:
577 panels := @gWater;
578 PANEL_ACID1:
579 panels := @gAcid1;
580 PANEL_ACID2:
581 panels := @gAcid2;
582 PANEL_STEP:
583 panels := @gSteps;
584 PANEL_LIFTUP, PANEL_LIFTDOWN, PANEL_LIFTLEFT, PANEL_LIFTRIGHT:
585 panels := @gLifts;
586 PANEL_BLOCKMON:
587 panels := @gBlockMon;
588 else
589 Exit;
590 end;
592 len := Length(panels^);
593 SetLength(panels^, len + 1);
595 panels^[len] := TPanel.Create(PanelRec, AddTextures, CurTex, Textures);
596 panels^[len].arrIdx := len;
597 panels^[len].proxyId := -1;
598 panels^[len].tag := panelTypeToTag(PanelRec.PanelType);
599 if sav then
600 panels^[len].SaveIt := True;
602 Result := len;
604 len := Length(PanelByID);
605 SetLength(PanelByID, len + 1);
606 PanelByID[len].PWhere := panels;
607 PanelByID[len].PArrID := Result;
608 end;
610 function CreateNullTexture(RecName: String): Integer;
611 begin
612 SetLength(Textures, Length(Textures)+1);
613 result := High(Textures);
615 with Textures[High(Textures)] do
616 begin
617 TextureName := RecName;
618 Width := 1;
619 Height := 1;
620 Anim := False;
621 TextureID := TEXTURE_NONE;
622 end;
623 end;
625 function CreateTexture(RecName: String; Map: string; log: Boolean): Integer;
626 var
627 WAD: TWADFile;
628 TextureData: Pointer;
629 WADName, txname: String;
630 a, ResLength: Integer;
631 begin
632 Result := -1;
634 if Textures <> nil then
635 for a := 0 to High(Textures) do
636 if Textures[a].TextureName = RecName then
637 begin // Òåêñòóðà ñ òàêèì èìåíåì óæå åñòü
638 Result := a;
639 Exit;
640 end;
642 // Òåêñòóðû ñî ñïåöèàëüíûìè èìåíàìè (âîäà, ëàâà, êèñëîòà):
643 if (RecName = TEXTURE_NAME_WATER) or
644 (RecName = TEXTURE_NAME_ACID1) or
645 (RecName = TEXTURE_NAME_ACID2) then
646 begin
647 SetLength(Textures, Length(Textures)+1);
649 with Textures[High(Textures)] do
650 begin
651 TextureName := RecName;
653 if TextureName = TEXTURE_NAME_WATER then
654 TextureID := TEXTURE_SPECIAL_WATER
655 else
656 if TextureName = TEXTURE_NAME_ACID1 then
657 TextureID := TEXTURE_SPECIAL_ACID1
658 else
659 if TextureName = TEXTURE_NAME_ACID2 then
660 TextureID := TEXTURE_SPECIAL_ACID2;
662 Anim := False;
663 end;
665 result := High(Textures);
666 Exit;
667 end;
669 // Çàãðóæàåì ðåñóðñ òåêñòóðû â ïàìÿòü èç WAD'à:
670 WADName := g_ExtractWadName(RecName);
672 WAD := TWADFile.Create();
674 if WADName <> '' then
675 WADName := GameDir+'/wads/'+WADName
676 else
677 WADName := Map;
679 WAD.ReadFile(WADName);
681 txname := RecName;
683 if (WADName = Map) and WAD.GetResource(g_ExtractFilePathName(RecName), TextureData, ResLength) then
684 begin
685 FreeMem(TextureData);
686 RecName := 'COMMON\ALIEN';
687 end;
690 if WAD.GetResource(g_ExtractFilePathName(RecName), TextureData, ResLength) then
691 begin
692 SetLength(Textures, Length(Textures)+1);
693 if not e_CreateTextureMem(TextureData, ResLength, Textures[High(Textures)].TextureID) then
694 Exit;
695 e_GetTextureSize(Textures[High(Textures)].TextureID,
696 @Textures[High(Textures)].Width,
697 @Textures[High(Textures)].Height);
698 FreeMem(TextureData);
699 Textures[High(Textures)].TextureName := {RecName}txname;
700 Textures[High(Textures)].Anim := False;
702 result := High(Textures);
703 end
704 else // Íåò òàêîãî ðåóñðñà â WAD'å
705 begin
706 //e_WriteLog(Format('SHIT! Error loading texture %s : %s : %s', [RecName, txname, g_ExtractFilePathName(RecName)]), MSG_WARNING);
707 if log then
708 begin
709 e_WriteLog(Format('Error loading texture %s', [RecName]), MSG_WARNING);
710 //e_WriteLog(Format('WAD Reader error: %s', [WAD.GetLastErrorStr]), MSG_WARNING);
711 end;
712 end;
714 WAD.Free();
715 end;
717 function CreateAnimTexture(RecName: String; Map: string; log: Boolean): Integer;
718 var
719 WAD: TWADFile;
720 TextureWAD: PChar = nil;
721 TextData: Pointer = nil;
722 TextureData: Pointer = nil;
723 cfg: TConfig = nil;
724 WADName: String;
725 ResLength: Integer;
726 TextureResource: String;
727 _width, _height, _framecount, _speed: Integer;
728 _backanimation: Boolean;
729 //imgfmt: string;
730 ia: TDynImageDataArray = nil;
731 f, c, frdelay, frloop: Integer;
732 begin
733 result := -1;
735 //e_WriteLog(Format('*** Loading animated texture "%s"', [RecName]), MSG_NOTIFY);
737 // ×èòàåì WAD-ðåñóðñ àíèì.òåêñòóðû èç WAD'à â ïàìÿòü:
738 WADName := g_ExtractWadName(RecName);
740 WAD := TWADFile.Create();
741 try
742 if WADName <> '' then
743 WADName := GameDir+'/wads/'+WADName
744 else
745 WADName := Map;
747 WAD.ReadFile(WADName);
749 if not WAD.GetResource(g_ExtractFilePathName(RecName), TextureWAD, ResLength) then
750 begin
751 if log then
752 begin
753 e_WriteLog(Format('Error loading animation texture %s', [RecName]), MSG_WARNING);
754 //e_WriteLog(Format('WAD Reader error: %s', [WAD.GetLastErrorStr]), MSG_WARNING);
755 end;
756 exit;
757 end;
759 {TEST
760 if WADName = Map then
761 begin
762 //FreeMem(TextureWAD);
763 if not WAD.GetResource('COMMON/animation', TextureWAD, ResLength) then Halt(1);
764 end;
767 WAD.FreeWAD();
769 if ResLength < 6 then
770 begin
771 e_WriteLog(Format('Animated texture file "%s" too short', [RecName]), MSG_WARNING);
772 exit;
773 end;
775 // ýòî ïòèöà? ýòî ñàìîë¸ò?
776 if (TextureWAD[0] = 'D') and (TextureWAD[1] = 'F') and
777 (TextureWAD[2] = 'W') and (TextureWAD[3] = 'A') and (TextureWAD[4] = 'D') then
778 begin
779 // íåò, ýòî ñóïåðìåí!
780 if not WAD.ReadMemory(TextureWAD, ResLength) then
781 begin
782 e_WriteLog(Format('Animated texture WAD file "%s" is invalid', [RecName]), MSG_WARNING);
783 exit;
784 end;
786 // ×èòàåì INI-ðåñóðñ àíèì. òåêñòóðû è çàïîìèíàåì åãî óñòàíîâêè:
787 if not WAD.GetResource('TEXT/ANIM', TextData, ResLength) then
788 begin
789 e_WriteLog(Format('Animated texture file "%s" has invalid INI', [RecName]), MSG_WARNING);
790 exit;
791 end;
793 cfg := TConfig.CreateMem(TextData, ResLength);
795 TextureResource := cfg.ReadStr('', 'resource', '');
796 if TextureResource = '' then
797 begin
798 e_WriteLog(Format('Animated texture WAD file "%s" has no "resource"', [RecName]), MSG_WARNING);
799 exit;
800 end;
802 _width := cfg.ReadInt('', 'framewidth', 0);
803 _height := cfg.ReadInt('', 'frameheight', 0);
804 _framecount := cfg.ReadInt('', 'framecount', 0);
805 _speed := cfg.ReadInt('', 'waitcount', 0);
806 _backanimation := cfg.ReadBool('', 'backanimation', False);
808 cfg.Free();
809 cfg := nil;
811 // ×èòàåì ðåñóðñ òåêñòóð (êàäðîâ) àíèì. òåêñòóðû â ïàìÿòü:
812 if not WAD.GetResource('TEXTURES/'+TextureResource, TextureData, ResLength) then
813 begin
814 e_WriteLog(Format('Animated texture WAD file "%s" has no texture "%s"', [RecName, 'TEXTURES/'+TextureResource]), MSG_WARNING);
815 exit;
816 end;
818 WAD.Free();
819 WAD := nil;
821 SetLength(Textures, Length(Textures)+1);
822 with Textures[High(Textures)] do
823 begin
824 // Ñîçäàåì êàäðû àíèì. òåêñòóðû èç ïàìÿòè:
825 if g_Frames_CreateMemory(@FramesID, '', TextureData, ResLength, _width, _height, _framecount, _backanimation) then
826 begin
827 TextureName := RecName;
828 Width := _width;
829 Height := _height;
830 Anim := True;
831 FramesCount := _framecount;
832 Speed := _speed;
833 result := High(Textures);
834 end
835 else
836 begin
837 if log then e_WriteLog(Format('Error loading animation texture %s', [RecName]), MSG_WARNING);
838 end;
839 end;
840 end
841 else
842 begin
843 // try animated image
845 imgfmt := DetermineMemoryFormat(TextureWAD, ResLength);
846 if length(imgfmt) = 0 then
847 begin
848 e_WriteLog(Format('Animated texture file "%s" has unknown format', [RecName]), MSG_WARNING);
849 exit;
850 end;
852 GlobalMetadata.ClearMetaItems();
853 GlobalMetadata.ClearMetaItemsForSaving();
854 if not LoadMultiImageFromMemory(TextureWAD, ResLength, ia) then
855 begin
856 e_WriteLog(Format('Animated texture file "%s" cannot be loaded', [RecName]), MSG_WARNING);
857 exit;
858 end;
859 if length(ia) = 0 then
860 begin
861 e_WriteLog(Format('Animated texture file "%s" has no frames', [RecName]), MSG_WARNING);
862 exit;
863 end;
865 WAD.Free();
866 WAD := nil;
868 _width := ia[0].width;
869 _height := ia[0].height;
870 _framecount := length(ia);
871 _speed := 1;
872 _backanimation := false;
873 frdelay := -1;
874 frloop := -666;
875 if GlobalMetadata.HasMetaItem(SMetaFrameDelay) then
876 begin
877 //writeln(' frame delay: ', GlobalMetadata.MetaItems[SMetaFrameDelay]);
878 try
879 f := GlobalMetadata.MetaItems[SMetaFrameDelay];
880 frdelay := f;
881 if f < 0 then f := 0;
882 // rounding ;-)
883 c := f mod 28;
884 if c < 13 then c := 0 else c := 1;
885 f := (f div 28)+c;
886 if f < 1 then f := 1 else if f > 255 then f := 255;
887 _speed := f;
888 except
889 end;
890 end;
891 if GlobalMetadata.HasMetaItem(SMetaAnimationLoops) then
892 begin
893 //writeln(' frame loop : ', GlobalMetadata.MetaItems[SMetaAnimationLoops]);
894 try
895 f := GlobalMetadata.MetaItems[SMetaAnimationLoops];
896 frloop := f;
897 if f <> 0 then _backanimation := true; // non-infinite looping == forth-and-back
898 except
899 end;
900 end;
901 //writeln(' creating animated texture with ', length(ia), ' frames (delay:', _speed, '; backloop:', _backanimation, ') from "', RecName, '"...');
902 //for f := 0 to high(ia) do writeln(' frame #', f, ': ', ia[f].width, 'x', ia[f].height);
903 f := ord(_backanimation);
904 e_WriteLog(Format('Animated texture file "%s": %d frames (delay:%d; back:%d; frdelay:%d; frloop:%d), %dx%d', [RecName, length(ia), _speed, f, frdelay, frloop, _width, _height]), MSG_NOTIFY);
906 SetLength(Textures, Length(Textures)+1);
907 // cîçäàåì êàäðû àíèì. òåêñòóðû èç êàðòèíîê
908 if g_CreateFramesImg(ia, @Textures[High(Textures)].FramesID, '', _backanimation) then
909 begin
910 Textures[High(Textures)].TextureName := RecName;
911 Textures[High(Textures)].Width := _width;
912 Textures[High(Textures)].Height := _height;
913 Textures[High(Textures)].Anim := True;
914 Textures[High(Textures)].FramesCount := length(ia);
915 Textures[High(Textures)].Speed := _speed;
916 result := High(Textures);
917 //writeln(' CREATED!');
918 end
919 else
920 begin
921 if log then e_WriteLog(Format('Error loading animation texture "%s" images', [RecName]), MSG_WARNING);
922 end;
923 end;
924 finally
925 for f := 0 to High(ia) do FreeImage(ia[f]);
926 WAD.Free();
927 cfg.Free();
928 if TextureWAD <> nil then FreeMem(TextureWAD);
929 if TextData <> nil then FreeMem(TextData);
930 if TextureData <> nil then FreeMem(TextureData);
931 end;
932 end;
934 procedure CreateItem(Item: TItemRec_1);
935 begin
936 if g_Game_IsClient then Exit;
938 if (not (gGameSettings.GameMode in [GM_DM, GM_TDM, GM_CTF])) and
939 ByteBool(Item.Options and ITEM_OPTION_ONLYDM) then
940 Exit;
942 g_Items_Create(Item.X, Item.Y, Item.ItemType, ByteBool(Item.Options and ITEM_OPTION_FALL),
943 gGameSettings.GameMode in [GM_DM, GM_TDM, GM_CTF, GM_COOP]);
944 end;
946 procedure CreateArea(Area: TAreaRec_1);
947 var
948 a: Integer;
949 id: DWORD = 0;
950 begin
951 case Area.AreaType of
952 AREA_DMPOINT, AREA_PLAYERPOINT1, AREA_PLAYERPOINT2,
953 AREA_REDTEAMPOINT, AREA_BLUETEAMPOINT:
954 begin
955 SetLength(RespawnPoints, Length(RespawnPoints)+1);
956 with RespawnPoints[High(RespawnPoints)] do
957 begin
958 X := Area.X;
959 Y := Area.Y;
960 Direction := TDirection(Area.Direction);
962 case Area.AreaType of
963 AREA_DMPOINT: PointType := RESPAWNPOINT_DM;
964 AREA_PLAYERPOINT1: PointType := RESPAWNPOINT_PLAYER1;
965 AREA_PLAYERPOINT2: PointType := RESPAWNPOINT_PLAYER2;
966 AREA_REDTEAMPOINT: PointType := RESPAWNPOINT_RED;
967 AREA_BLUETEAMPOINT: PointType := RESPAWNPOINT_BLUE;
968 end;
969 end;
970 end;
972 AREA_REDFLAG, AREA_BLUEFLAG:
973 begin
974 if Area.AreaType = AREA_REDFLAG then a := FLAG_RED else a := FLAG_BLUE;
976 if FlagPoints[a] <> nil then Exit;
978 New(FlagPoints[a]);
980 with FlagPoints[a]^ do
981 begin
982 X := Area.X-FLAGRECT.X;
983 Y := Area.Y-FLAGRECT.Y;
984 Direction := TDirection(Area.Direction);
985 end;
987 with gFlags[a] do
988 begin
989 case a of
990 FLAG_RED: g_Frames_Get(id, 'FRAMES_FLAG_RED');
991 FLAG_BLUE: g_Frames_Get(id, 'FRAMES_FLAG_BLUE');
992 end;
994 Animation := TAnimation.Create(id, True, 8);
995 Obj.Rect := FLAGRECT;
997 g_Map_ResetFlag(a);
998 end;
999 end;
1001 AREA_DOMFLAG:
1002 begin
1003 {SetLength(DOMFlagPoints, Length(DOMFlagPoints)+1);
1004 with DOMFlagPoints[High(DOMFlagPoints)] do
1005 begin
1006 X := Area.X;
1007 Y := Area.Y;
1008 Direction := TDirection(Area.Direction);
1009 end;
1011 g_Map_CreateFlag(DOMFlagPoints[High(DOMFlagPoints)], FLAG_DOM, FLAG_STATE_NORMAL);}
1012 end;
1013 end;
1014 end;
1016 procedure CreateTrigger(Trigger: TTriggerRec_1; fTexturePanel1Type, fTexturePanel2Type: Word);
1017 var
1018 _trigger: TTrigger;
1019 begin
1020 if g_Game_IsClient and not (Trigger.TriggerType in [TRIGGER_SOUND, TRIGGER_MUSIC]) then Exit;
1022 with _trigger do
1023 begin
1024 X := Trigger.X;
1025 Y := Trigger.Y;
1026 Width := Trigger.Width;
1027 Height := Trigger.Height;
1028 Enabled := ByteBool(Trigger.Enabled);
1029 TexturePanel := Trigger.TexturePanel;
1030 TexturePanelType := fTexturePanel1Type;
1031 ShotPanelType := fTexturePanel2Type;
1032 TriggerType := Trigger.TriggerType;
1033 ActivateType := Trigger.ActivateType;
1034 Keys := Trigger.Keys;
1035 Data.Default := Trigger.DATA;
1036 end;
1038 g_Triggers_Create(_trigger);
1039 end;
1041 procedure CreateMonster(monster: TMonsterRec_1);
1042 var
1043 a: Integer;
1044 mon: TMonster;
1045 begin
1046 if g_Game_IsClient then Exit;
1048 if (gGameSettings.GameType = GT_SINGLE)
1049 or LongBool(gGameSettings.Options and GAME_OPTION_MONSTERS) then
1050 begin
1051 mon := g_Monsters_Create(monster.MonsterType, monster.X, monster.Y, TDirection(monster.Direction));
1053 if gTriggers <> nil then
1054 begin
1055 for a := 0 to High(gTriggers) do
1056 begin
1057 if gTriggers[a].TriggerType in [TRIGGER_PRESS, TRIGGER_ON, TRIGGER_OFF, TRIGGER_ONOFF] then
1058 begin
1059 if (gTriggers[a].Data.MonsterID-1) = mon.StartID then mon.AddTrigger(a);
1060 end;
1061 end;
1062 end;
1064 if monster.MonsterType <> MONSTER_BARREL then Inc(gTotalMonsters);
1065 end;
1066 end;
1068 procedure g_Map_ReAdd_DieTriggers();
1070 function monsDieTrig (mon: TMonster): Boolean;
1071 var
1072 a: Integer;
1073 begin
1074 result := false; // don't stop
1075 mon.ClearTriggers();
1076 for a := 0 to High(gTriggers) do
1077 begin
1078 if gTriggers[a].TriggerType in [TRIGGER_PRESS, TRIGGER_ON, TRIGGER_OFF, TRIGGER_ONOFF] then
1079 begin
1080 if (gTriggers[a].Data.MonsterID-1) = mon.StartID then mon.AddTrigger(a);
1081 end;
1082 end;
1083 end;
1085 begin
1086 if g_Game_IsClient then Exit;
1088 g_Mons_ForEach(monsDieTrig);
1089 end;
1091 function extractWadName(resourceName: string): string;
1092 var
1093 posN: Integer;
1094 begin
1095 posN := Pos(':', resourceName);
1096 if posN > 0 then
1097 Result:= Copy(resourceName, 0, posN-1)
1098 else
1099 Result := '';
1100 end;
1102 procedure addResToExternalResList(res: string);
1103 begin
1104 res := extractWadName(res);
1105 if (res <> '') and (gExternalResources.IndexOf(res) = -1) then
1106 gExternalResources.Add(res);
1107 end;
1109 procedure generateExternalResourcesList(mapReader: TMapReader_1);
1110 var
1111 textures: TTexturesRec1Array;
1112 mapHeader: TMapHeaderRec_1;
1113 i: integer;
1114 resFile: String = '';
1115 begin
1116 if gExternalResources = nil then
1117 gExternalResources := TStringList.Create;
1119 gExternalResources.Clear;
1120 textures := mapReader.GetTextures();
1121 for i := 0 to High(textures) do
1122 begin
1123 addResToExternalResList(resFile);
1124 end;
1126 textures := nil;
1128 mapHeader := mapReader.GetMapHeader;
1130 addResToExternalResList(mapHeader.MusicName);
1131 addResToExternalResList(mapHeader.SkyName);
1132 end;
1135 procedure mapCreateGrid ();
1136 var
1137 mapX0: Integer = $3fffffff;
1138 mapY0: Integer = $3fffffff;
1139 mapX1: Integer = -$3fffffff;
1140 mapY1: Integer = -$3fffffff;
1142 procedure calcBoundingBox (constref panels: TPanelArray);
1143 var
1144 idx: Integer;
1145 pan: TPanel;
1146 begin
1147 for idx := 0 to High(panels) do
1148 begin
1149 pan := panels[idx];
1150 if not pan.visvalid then continue;
1151 if (pan.Width < 1) or (pan.Height < 1) then continue;
1152 if (mapX0 > pan.x0) then mapX0 := pan.x0;
1153 if (mapY0 > pan.y0) then mapY0 := pan.y0;
1154 if (mapX1 < pan.x1) then mapX1 := pan.x1;
1155 if (mapY1 < pan.y1) then mapY1 := pan.y1;
1156 end;
1157 end;
1159 procedure addPanelsToGrid (constref panels: TPanelArray);
1160 var
1161 idx: Integer;
1162 pan: TPanel;
1163 newtag: Integer;
1164 begin
1165 //tag := panelTypeToTag(tag);
1166 for idx := 0 to High(panels) do
1167 begin
1168 pan := panels[idx];
1169 if not pan.visvalid then continue;
1170 if (pan.proxyId <> -1) then
1171 begin
1172 {$IF DEFINED(D2F_DEBUG)}
1173 e_WriteLog(Format('DUPLICATE wall #%d(%d) enabled (%d); type:%08x', [Integer(idx), Integer(pan.proxyId), Integer(mapGrid.proxyEnabled[pan.proxyId]), pan.PanelType]), MSG_NOTIFY);
1174 {$ENDIF}
1175 continue;
1176 end;
1177 case pan.PanelType of
1178 PANEL_WALL: newtag := GridTagWall;
1179 PANEL_OPENDOOR, PANEL_CLOSEDOOR: newtag := GridTagDoor;
1180 PANEL_BACK: newtag := GridTagBack;
1181 PANEL_FORE: newtag := GridTagFore;
1182 PANEL_WATER: newtag := GridTagWater;
1183 PANEL_ACID1: newtag := GridTagAcid1;
1184 PANEL_ACID2: newtag := GridTagAcid2;
1185 PANEL_STEP: newtag := GridTagStep;
1186 PANEL_LIFTUP, PANEL_LIFTDOWN, PANEL_LIFTLEFT, PANEL_LIFTRIGHT: newtag := GridTagLift;
1187 PANEL_BLOCKMON: newtag := GridTagBlockMon;
1188 else continue; // oops
1189 end;
1190 pan.tag := newtag;
1192 pan.proxyId := mapGrid.insertBody(pan, pan.X, pan.Y, pan.Width, pan.Height, newtag);
1193 // "enabled" flag has meaning only for doors and walls (engine assumes it); but meh...
1194 mapGrid.proxyEnabled[pan.proxyId] := pan.Enabled;
1195 {$IFDEF MAP_DEBUG_ENABLED_FLAG}
1197 if ((tag and (GridTagWall or GridTagDoor)) <> 0) then
1198 begin
1199 e_WriteLog(Format('INSERTED wall #%d(%d) enabled (%d)', [Integer(idx), Integer(pan.proxyId), Integer(mapGrid.proxyEnabled[pan.proxyId])]), MSG_NOTIFY);
1200 end;
1202 {$ENDIF}
1203 end;
1204 end;
1206 begin
1207 mapGrid.Free();
1208 mapGrid := nil;
1210 calcBoundingBox(gWalls);
1211 calcBoundingBox(gRenderBackgrounds);
1212 calcBoundingBox(gRenderForegrounds);
1213 calcBoundingBox(gWater);
1214 calcBoundingBox(gAcid1);
1215 calcBoundingBox(gAcid2);
1216 calcBoundingBox(gSteps);
1217 calcBoundingBox(gLifts);
1218 calcBoundingBox(gBlockMon);
1220 e_WriteLog(Format('map dimensions: (%d,%d)-(%d,%d); editor size:(0,0)-(%d,%d)', [mapX0, mapY0, mapX1, mapY1, gMapInfo.Width, gMapInfo.Height]), MSG_WARNING);
1222 if (mapX0 > 0) then mapX0 := 0;
1223 if (mapY0 > 0) then mapY0 := 0;
1225 if (mapX1 < gMapInfo.Width-1) then mapX1 := gMapInfo.Width-1;
1226 if (mapY1 < gMapInfo.Height-1) then mapY1 := gMapInfo.Height-1;
1228 mapGrid := TPanelGrid.Create(mapX0-128, mapY0-128, mapX1-mapX0+1+128*2, mapY1-mapY0+1+128*2);
1229 //mapGrid := TPanelGrid.Create(0, 0, gMapInfo.Width, gMapInfo.Height);
1231 addPanelsToGrid(gWalls);
1232 addPanelsToGrid(gRenderBackgrounds);
1233 addPanelsToGrid(gRenderForegrounds);
1234 addPanelsToGrid(gWater);
1235 addPanelsToGrid(gAcid1);
1236 addPanelsToGrid(gAcid2);
1237 addPanelsToGrid(gSteps);
1238 addPanelsToGrid(gLifts); // it doesn't matter which LIFT type is used here
1239 addPanelsToGrid(gBlockMon);
1241 mapGrid.dumpStats();
1243 g_Mons_InitTree(mapGrid.gridX0, mapGrid.gridY0, mapGrid.gridWidth, mapGrid.gridHeight);
1244 end;
1247 function g_Map_Load(Res: String): Boolean;
1248 const
1249 DefaultMusRes = 'Standart.wad:STDMUS\MUS1';
1250 DefaultSkyRes = 'Standart.wad:STDSKY\SKY0';
1251 var
1252 WAD: TWADFile;
1253 MapReader: TMapReader_1;
1254 Header: TMapHeaderRec_1;
1255 _textures: TTexturesRec1Array;
1256 _texnummap: array of Integer; // `_textures` -> `Textures`
1257 panels: TPanelsRec1Array;
1258 items: TItemsRec1Array;
1259 monsters: TMonsterRec1Array;
1260 areas: TAreasRec1Array;
1261 triggers: TTriggersRec1Array;
1262 a, b, c, k: Integer;
1263 PanelID: DWORD;
1264 AddTextures: TAddTextureArray;
1265 texture: TTextureRec_1;
1266 TriggersTable: Array of record
1267 TexturePanel: Integer;
1268 LiftPanel: Integer;
1269 DoorPanel: Integer;
1270 ShotPanel: Integer;
1271 end;
1272 FileName, mapResName, s, TexName: String;
1273 Data: Pointer;
1274 Len: Integer;
1275 ok, isAnim, trigRef: Boolean;
1276 CurTex, ntn: Integer;
1278 begin
1279 mapGrid.Free();
1280 mapGrid := nil;
1281 //mapTree.Free();
1282 //mapTree := nil;
1284 Result := False;
1285 gMapInfo.Map := Res;
1286 TriggersTable := nil;
1287 FillChar(texture, SizeOf(texture), 0);
1289 sfsGCDisable(); // temporary disable removing of temporary volumes
1290 try
1291 // Çàãðóçêà WAD:
1292 FileName := g_ExtractWadName(Res);
1293 e_WriteLog('Loading map WAD: '+FileName, MSG_NOTIFY);
1294 g_Game_SetLoadingText(_lc[I_LOAD_WAD_FILE], 0, False);
1296 WAD := TWADFile.Create();
1297 if not WAD.ReadFile(FileName) then
1298 begin
1299 g_FatalError(Format(_lc[I_GAME_ERROR_MAP_WAD], [FileName]));
1300 WAD.Free();
1301 Exit;
1302 end;
1303 //k8: why loader ignores path here?
1304 mapResName := g_ExtractFileName(Res);
1305 if not WAD.GetMapResource(mapResName, Data, Len) then
1306 begin
1307 g_FatalError(Format(_lc[I_GAME_ERROR_MAP_RES], [mapResName]));
1308 WAD.Free();
1309 Exit;
1310 end;
1312 WAD.Free();
1314 // Çàãðóçêà êàðòû:
1315 e_WriteLog('Loading map: '+mapResName, MSG_NOTIFY);
1316 g_Game_SetLoadingText(_lc[I_LOAD_MAP], 0, False);
1317 MapReader := TMapReader_1.Create();
1319 if not MapReader.LoadMap(Data) then
1320 begin
1321 g_FatalError(Format(_lc[I_GAME_ERROR_MAP_LOAD], [Res]));
1322 FreeMem(Data);
1323 MapReader.Free();
1324 Exit;
1325 end;
1327 FreeMem(Data);
1328 generateExternalResourcesList(MapReader);
1329 // Çàãðóçêà òåêñòóð:
1330 g_Game_SetLoadingText(_lc[I_LOAD_TEXTURES], 0, False);
1331 _textures := MapReader.GetTextures();
1332 _texnummap := nil;
1334 // Çàãðóçêà îïèñàíèÿ êàðòû:
1335 e_WriteLog(' Reading map info...', MSG_NOTIFY);
1336 g_Game_SetLoadingText(_lc[I_LOAD_MAP_HEADER], 0, False);
1337 Header := MapReader.GetMapHeader();
1339 with gMapInfo do
1340 begin
1341 Name := Header.MapName;
1342 Description := Header.MapDescription;
1343 Author := Header.MapAuthor;
1344 MusicName := Header.MusicName;
1345 SkyName := Header.SkyName;
1346 Height := Header.Height;
1347 Width := Header.Width;
1348 end;
1350 // Äîáàâëåíèå òåêñòóð â Textures[]:
1351 if _textures <> nil then
1352 begin
1353 e_WriteLog(' Loading textures:', MSG_NOTIFY);
1354 g_Game_SetLoadingText(_lc[I_LOAD_TEXTURES], High(_textures), False);
1355 SetLength(_texnummap, length(_textures));
1357 for a := 0 to High(_textures) do
1358 begin
1359 SetLength(s, 64);
1360 CopyMemory(@s[1], @_textures[a].Resource[0], 64);
1361 for b := 1 to Length(s) do
1362 if s[b] = #0 then
1363 begin
1364 SetLength(s, b-1);
1365 Break;
1366 end;
1367 e_WriteLog(Format(' Loading texture #%d: %s', [a, s]), MSG_NOTIFY);
1368 //if g_Map_IsSpecialTexture(s) then e_WriteLog(' SPECIAL!', MSG_NOTIFY);
1369 // Àíèìèðîâàííàÿ òåêñòóðà:
1370 if ByteBool(_textures[a].Anim) then
1371 begin
1372 ntn := CreateAnimTexture(_textures[a].Resource, FileName, True);
1373 if ntn < 0 then
1374 begin
1375 g_SimpleError(Format(_lc[I_GAME_ERROR_TEXTURE_ANIM], [s]));
1376 ntn := CreateNullTexture(_textures[a].Resource);
1377 end;
1378 end
1379 else // Îáû÷íàÿ òåêñòóðà:
1380 ntn := CreateTexture(_textures[a].Resource, FileName, True);
1381 if ntn < 0 then
1382 begin
1383 g_SimpleError(Format(_lc[I_GAME_ERROR_TEXTURE_SIMPLE], [s]));
1384 ntn := CreateNullTexture(_textures[a].Resource);
1385 end;
1387 _texnummap[a] := ntn; // fix texture number
1388 g_Game_StepLoading();
1389 end;
1390 end;
1392 // Çàãðóçêà òðèããåðîâ:
1393 gTriggerClientID := 0;
1394 e_WriteLog(' Loading triggers...', MSG_NOTIFY);
1395 g_Game_SetLoadingText(_lc[I_LOAD_TRIGGERS], 0, False);
1396 triggers := MapReader.GetTriggers();
1398 // Çàãðóçêà ïàíåëåé:
1399 e_WriteLog(' Loading panels...', MSG_NOTIFY);
1400 g_Game_SetLoadingText(_lc[I_LOAD_PANELS], 0, False);
1401 panels := MapReader.GetPanels();
1403 // check texture numbers for panels
1404 for a := 0 to High(panels) do
1405 begin
1406 if panels[a].TextureNum > High(_textures) then
1407 begin
1408 e_WriteLog('error loading map: invalid texture index for panel', MSG_FATALERROR);
1409 result := false;
1410 exit;
1411 end;
1412 panels[a].TextureNum := _texnummap[panels[a].TextureNum];
1413 end;
1415 // Ñîçäàíèå òàáëèöû òðèããåðîâ (ñîîòâåòñòâèå ïàíåëåé òðèããåðàì):
1416 if triggers <> nil then
1417 begin
1418 e_WriteLog(' Setting up trigger table...', MSG_NOTIFY);
1419 SetLength(TriggersTable, Length(triggers));
1420 g_Game_SetLoadingText(_lc[I_LOAD_TRIGGERS_TABLE], High(TriggersTable), False);
1422 for a := 0 to High(TriggersTable) do
1423 begin
1424 // Ñìåíà òåêñòóðû (âîçìîæíî, êíîïêè):
1425 TriggersTable[a].TexturePanel := triggers[a].TexturePanel;
1426 // Ëèôòû:
1427 if triggers[a].TriggerType in [TRIGGER_LIFTUP, TRIGGER_LIFTDOWN, TRIGGER_LIFT] then
1428 TriggersTable[a].LiftPanel := TTriggerData(triggers[a].DATA).PanelID
1429 else
1430 TriggersTable[a].LiftPanel := -1;
1431 // Äâåðè:
1432 if triggers[a].TriggerType in [TRIGGER_OPENDOOR,
1433 TRIGGER_CLOSEDOOR, TRIGGER_DOOR, TRIGGER_DOOR5,
1434 TRIGGER_CLOSETRAP, TRIGGER_TRAP] then
1435 TriggersTable[a].DoorPanel := TTriggerData(triggers[a].DATA).PanelID
1436 else
1437 TriggersTable[a].DoorPanel := -1;
1438 // Òóðåëü:
1439 if triggers[a].TriggerType = TRIGGER_SHOT then
1440 TriggersTable[a].ShotPanel := TTriggerData(triggers[a].DATA).ShotPanelID
1441 else
1442 TriggersTable[a].ShotPanel := -1;
1444 g_Game_StepLoading();
1445 end;
1446 end;
1448 // Ñîçäàåì ïàíåëè:
1449 if panels <> nil then
1450 begin
1451 e_WriteLog(' Setting up trigger links...', MSG_NOTIFY);
1452 g_Game_SetLoadingText(_lc[I_LOAD_LINK_TRIGGERS], High(panels), False);
1454 for a := 0 to High(panels) do
1455 begin
1456 SetLength(AddTextures, 0);
1457 trigRef := False;
1458 CurTex := -1;
1459 if _textures <> nil then
1460 begin
1461 texture := _textures[panels[a].TextureNum];
1462 ok := True;
1463 end
1464 else
1465 ok := False;
1467 if ok then
1468 begin
1469 // Ñìîòðèì, ññûëàþòñÿ ëè íà ýòó ïàíåëü òðèããåðû.
1470 // Åñëè äà - òî íàäî ñîçäàòü åùå òåêñòóð:
1471 ok := False;
1472 if (TriggersTable <> nil) and (_textures <> nil) then
1473 for b := 0 to High(TriggersTable) do
1474 if (TriggersTable[b].TexturePanel = a)
1475 or (TriggersTable[b].ShotPanel = a) then
1476 begin
1477 trigRef := True;
1478 ok := True;
1479 Break;
1480 end;
1481 end;
1483 if ok then
1484 begin // Åñòü ññûëêè òðèããåðîâ íà ýòó ïàíåëü
1485 SetLength(s, 64);
1486 CopyMemory(@s[1], @texture.Resource[0], 64);
1487 // Èçìåðÿåì äëèíó:
1488 Len := Length(s);
1489 for c := Len downto 1 do
1490 if s[c] <> #0 then
1491 begin
1492 Len := c;
1493 Break;
1494 end;
1495 SetLength(s, Len);
1497 // Ñïåö-òåêñòóðû çàïðåùåíû:
1498 if g_Map_IsSpecialTexture(s) then
1499 ok := False
1500 else
1501 // Îïðåäåëÿåì íàëè÷èå è ïîëîæåíèå öèôð â êîíöå ñòðîêè:
1502 ok := g_Texture_NumNameFindStart(s);
1504 // Åñëè ok, çíà÷èò åñòü öèôðû â êîíöå.
1505 // Çàãðóæàåì òåêñòóðû ñ îñòàëüíûìè #:
1506 if ok then
1507 begin
1508 k := NNF_NAME_BEFORE;
1509 // Öèêë ïî èçìåíåíèþ èìåíè òåêñòóðû:
1510 while ok or (k = NNF_NAME_BEFORE) or
1511 (k = NNF_NAME_EQUALS) do
1512 begin
1513 k := g_Texture_NumNameFindNext(TexName);
1515 if (k = NNF_NAME_BEFORE) or
1516 (k = NNF_NAME_AFTER) then
1517 begin
1518 // Ïðîáóåì äîáàâèòü íîâóþ òåêñòóðó:
1519 if ByteBool(texture.Anim) then
1520 begin // Íà÷àëüíàÿ - àíèìèðîâàííàÿ, èùåì àíèìèðîâàííóþ
1521 isAnim := True;
1522 ok := CreateAnimTexture(TexName, FileName, False) >= 0;
1523 if not ok then
1524 begin // Íåò àíèìèðîâàííîé, èùåì îáû÷íóþ
1525 isAnim := False;
1526 ok := CreateTexture(TexName, FileName, False) >= 0;
1527 end;
1528 end
1529 else
1530 begin // Íà÷àëüíàÿ - îáû÷íàÿ, èùåì îáû÷íóþ
1531 isAnim := False;
1532 ok := CreateTexture(TexName, FileName, False) >= 0;
1533 if not ok then
1534 begin // Íåò îáû÷íîé, èùåì àíèìèðîâàííóþ
1535 isAnim := True;
1536 ok := CreateAnimTexture(TexName, FileName, False) >= 0;
1537 end;
1538 end;
1540 // Îíà ñóùåñòâóåò. Çàíîñèì åå ID â ñïèñîê ïàíåëè:
1541 if ok then
1542 begin
1543 for c := 0 to High(Textures) do
1544 if Textures[c].TextureName = TexName then
1545 begin
1546 SetLength(AddTextures, Length(AddTextures)+1);
1547 AddTextures[High(AddTextures)].Texture := c;
1548 AddTextures[High(AddTextures)].Anim := isAnim;
1549 Break;
1550 end;
1551 end;
1552 end
1553 else
1554 if k = NNF_NAME_EQUALS then
1555 begin
1556 // Çàíîñèì òåêóùóþ òåêñòóðó íà ñâîå ìåñòî:
1557 SetLength(AddTextures, Length(AddTextures)+1);
1558 AddTextures[High(AddTextures)].Texture := panels[a].TextureNum;
1559 AddTextures[High(AddTextures)].Anim := ByteBool(texture.Anim);
1560 CurTex := High(AddTextures);
1561 ok := True;
1562 end
1563 else // NNF_NO_NAME
1564 ok := False;
1565 end; // while ok...
1567 ok := True;
1568 end; // if ok - åñòü ñìåæíûå òåêñòóðû
1569 end; // if ok - ññûëàþòñÿ òðèããåðû
1571 if not ok then
1572 begin
1573 // Çàíîñèì òîëüêî òåêóùóþ òåêñòóðó:
1574 SetLength(AddTextures, 1);
1575 AddTextures[0].Texture := panels[a].TextureNum;
1576 AddTextures[0].Anim := ByteBool(texture.Anim);
1577 CurTex := 0;
1578 end;
1580 //e_WriteLog(Format('panel #%d: TextureNum=%d; ht=%d; ht1=%d; atl=%d', [a, panels[a].TextureNum, High(_textures), High(Textures), High(AddTextures)]), MSG_NOTIFY);
1582 // Ñîçäàåì ïàíåëü è çàïîìèíàåì åå íîìåð:
1583 PanelID := CreatePanel(panels[a], AddTextures, CurTex, trigRef);
1585 // Åñëè èñïîëüçóåòñÿ â òðèããåðàõ, òî ñòàâèì òî÷íûé ID:
1586 if TriggersTable <> nil then
1587 for b := 0 to High(TriggersTable) do
1588 begin
1589 // Òðèããåð äâåðè/ëèôòà:
1590 if (TriggersTable[b].LiftPanel = a) or
1591 (TriggersTable[b].DoorPanel = a) then
1592 TTriggerData(triggers[b].DATA).PanelID := PanelID;
1593 // Òðèããåð ñìåíû òåêñòóðû:
1594 if TriggersTable[b].TexturePanel = a then
1595 triggers[b].TexturePanel := PanelID;
1596 // Òðèããåð "Òóðåëü":
1597 if TriggersTable[b].ShotPanel = a then
1598 TTriggerData(triggers[b].DATA).ShotPanelID := PanelID;
1599 end;
1601 g_Game_StepLoading();
1602 end;
1603 end;
1605 // create map grid, init other grids (for monsters, for example)
1606 e_WriteLog('Creating map grid', MSG_NOTIFY);
1607 mapCreateGrid();
1609 // Åñëè íå LoadState, òî ñîçäàåì òðèããåðû:
1610 if (triggers <> nil) and not gLoadGameMode then
1611 begin
1612 e_WriteLog(' Creating triggers...', MSG_NOTIFY);
1613 g_Game_SetLoadingText(_lc[I_LOAD_CREATE_TRIGGERS], 0, False);
1614 // Óêàçûâàåì òèï ïàíåëè, åñëè åñòü:
1615 for a := 0 to High(triggers) do
1616 begin
1617 if triggers[a].TexturePanel <> -1 then
1618 b := panels[TriggersTable[a].TexturePanel].PanelType
1619 else
1620 b := 0;
1621 if (triggers[a].TriggerType = TRIGGER_SHOT) and
1622 (TTriggerData(triggers[a].DATA).ShotPanelID <> -1) then
1623 c := panels[TriggersTable[a].ShotPanel].PanelType
1624 else
1625 c := 0;
1626 CreateTrigger(triggers[a], b, c);
1627 end;
1628 end;
1630 // Çàãðóçêà ïðåäìåòîâ:
1631 e_WriteLog(' Loading triggers...', MSG_NOTIFY);
1632 g_Game_SetLoadingText(_lc[I_LOAD_ITEMS], 0, False);
1633 items := MapReader.GetItems();
1635 // Åñëè íå LoadState, òî ñîçäàåì ïðåäìåòû:
1636 if (items <> nil) and not gLoadGameMode then
1637 begin
1638 e_WriteLog(' Spawning items...', MSG_NOTIFY);
1639 g_Game_SetLoadingText(_lc[I_LOAD_CREATE_ITEMS], 0, False);
1640 for a := 0 to High(items) do
1641 CreateItem(Items[a]);
1642 end;
1644 // Çàãðóçêà îáëàñòåé:
1645 e_WriteLog(' Loading areas...', MSG_NOTIFY);
1646 g_Game_SetLoadingText(_lc[I_LOAD_AREAS], 0, False);
1647 areas := MapReader.GetAreas();
1649 // Åñëè íå LoadState, òî ñîçäàåì îáëàñòè:
1650 if areas <> nil then
1651 begin
1652 e_WriteLog(' Creating areas...', MSG_NOTIFY);
1653 g_Game_SetLoadingText(_lc[I_LOAD_CREATE_AREAS], 0, False);
1654 for a := 0 to High(areas) do
1655 CreateArea(areas[a]);
1656 end;
1658 // Çàãðóçêà ìîíñòðîâ:
1659 e_WriteLog(' Loading monsters...', MSG_NOTIFY);
1660 g_Game_SetLoadingText(_lc[I_LOAD_MONSTERS], 0, False);
1661 monsters := MapReader.GetMonsters();
1663 gTotalMonsters := 0;
1665 // Åñëè íå LoadState, òî ñîçäàåì ìîíñòðîâ:
1666 if (monsters <> nil) and not gLoadGameMode then
1667 begin
1668 e_WriteLog(' Spawning monsters...', MSG_NOTIFY);
1669 g_Game_SetLoadingText(_lc[I_LOAD_CREATE_MONSTERS], 0, False);
1670 for a := 0 to High(monsters) do
1671 CreateMonster(monsters[a]);
1672 end;
1674 MapReader.Free();
1676 // Çàãðóçêà íåáà:
1677 if gMapInfo.SkyName <> '' then
1678 begin
1679 e_WriteLog(' Loading sky: ' + gMapInfo.SkyName, MSG_NOTIFY);
1680 g_Game_SetLoadingText(_lc[I_LOAD_SKY], 0, False);
1681 FileName := g_ExtractWadName(gMapInfo.SkyName);
1683 if FileName <> '' then
1684 FileName := GameDir+'/wads/'+FileName
1685 else
1686 begin
1687 FileName := g_ExtractWadName(Res);
1688 end;
1690 s := FileName+':'+g_ExtractFilePathName(gMapInfo.SkyName);
1691 if g_Texture_CreateWAD(BackID, s) then
1692 begin
1693 g_Game_SetupScreenSize();
1694 end
1695 else
1696 g_FatalError(Format(_lc[I_GAME_ERROR_SKY], [s]));
1697 end;
1699 // Çàãðóçêà ìóçûêè:
1700 ok := False;
1701 if gMapInfo.MusicName <> '' then
1702 begin
1703 e_WriteLog(' Loading music: ' + gMapInfo.MusicName, MSG_NOTIFY);
1704 g_Game_SetLoadingText(_lc[I_LOAD_MUSIC], 0, False);
1705 FileName := g_ExtractWadName(gMapInfo.MusicName);
1707 if FileName <> '' then
1708 FileName := GameDir+'/wads/'+FileName
1709 else
1710 begin
1711 FileName := g_ExtractWadName(Res);
1712 end;
1714 s := FileName+':'+g_ExtractFilePathName(gMapInfo.MusicName);
1715 if g_Sound_CreateWADEx(gMapInfo.MusicName, s, True) then
1716 ok := True
1717 else
1718 g_FatalError(Format(_lc[I_GAME_ERROR_MUSIC], [s]));
1719 end;
1721 // Îñòàëüíûå óñòàíâêè:
1722 CreateDoorMap();
1723 CreateLiftMap();
1725 g_Items_Init();
1726 g_Weapon_Init();
1727 g_Monsters_Init();
1729 // Åñëè íå LoadState, òî ñîçäàåì êàðòó ñòîëêíîâåíèé:
1730 if not gLoadGameMode then
1731 g_GFX_Init();
1733 // Ñáðîñ ëîêàëüíûõ ìàññèâîâ:
1734 _textures := nil;
1735 panels := nil;
1736 items := nil;
1737 areas := nil;
1738 triggers := nil;
1739 TriggersTable := nil;
1740 AddTextures := nil;
1742 // Âêëþ÷àåì ìóçûêó, åñëè ýòî íå çàãðóçêà:
1743 if ok and (not gLoadGameMode) then
1744 begin
1745 gMusic.SetByName(gMapInfo.MusicName);
1746 gMusic.Play();
1747 end
1748 else
1749 gMusic.SetByName('');
1750 finally
1751 sfsGCEnable(); // enable releasing unused volumes
1752 end;
1754 e_WriteLog('Done loading map.', MSG_NOTIFY);
1755 Result := True;
1756 end;
1758 function g_Map_GetMapInfo(Res: String): TMapInfo;
1759 var
1760 WAD: TWADFile;
1761 MapReader: TMapReader_1;
1762 Header: TMapHeaderRec_1;
1763 FileName: String;
1764 Data: Pointer;
1765 Len: Integer;
1766 begin
1767 FillChar(Result, SizeOf(Result), 0);
1768 FileName := g_ExtractWadName(Res);
1770 WAD := TWADFile.Create();
1771 if not WAD.ReadFile(FileName) then
1772 begin
1773 WAD.Free();
1774 Exit;
1775 end;
1777 //k8: it ignores path again
1778 if not WAD.GetMapResource(g_ExtractFileName(Res), Data, Len) then
1779 begin
1780 WAD.Free();
1781 Exit;
1782 end;
1784 WAD.Free();
1786 MapReader := TMapReader_1.Create();
1788 if not MapReader.LoadMap(Data) then
1789 begin
1790 g_Console_Add(Format(_lc[I_GAME_ERROR_MAP_LOAD], [Res]), True);
1791 ZeroMemory(@Header, SizeOf(Header));
1792 Result.Name := _lc[I_GAME_ERROR_MAP_SELECT];
1793 Result.Description := _lc[I_GAME_ERROR_MAP_SELECT];
1794 end
1795 else
1796 begin
1797 Header := MapReader.GetMapHeader();
1798 Result.Name := Header.MapName;
1799 Result.Description := Header.MapDescription;
1800 end;
1802 FreeMem(Data);
1803 MapReader.Free();
1805 Result.Map := Res;
1806 Result.Author := Header.MapAuthor;
1807 Result.Height := Header.Height;
1808 Result.Width := Header.Width;
1809 end;
1811 function g_Map_GetMapsList(WADName: string): SArray;
1812 var
1813 WAD: TWADFile;
1814 a: Integer;
1815 ResList: SArray;
1816 begin
1817 Result := nil;
1818 WAD := TWADFile.Create();
1819 if not WAD.ReadFile(WADName) then
1820 begin
1821 WAD.Free();
1822 Exit;
1823 end;
1824 ResList := WAD.GetMapResources();
1825 if ResList <> nil then
1826 begin
1827 for a := 0 to High(ResList) do
1828 begin
1829 SetLength(Result, Length(Result)+1);
1830 Result[High(Result)] := ResList[a];
1831 end;
1832 end;
1833 WAD.Free();
1834 end;
1836 function g_Map_Exist(Res: string): Boolean;
1837 var
1838 WAD: TWADFile;
1839 FileName, mnn: string;
1840 ResList: SArray;
1841 a: Integer;
1842 begin
1843 Result := False;
1845 FileName := addWadExtension(g_ExtractWadName(Res));
1847 WAD := TWADFile.Create;
1848 if not WAD.ReadFile(FileName) then
1849 begin
1850 WAD.Free();
1851 Exit;
1852 end;
1854 ResList := WAD.GetMapResources();
1855 WAD.Free();
1857 mnn := g_ExtractFileName(Res);
1858 if ResList <> nil then
1859 for a := 0 to High(ResList) do if StrEquCI1251(ResList[a], mnn) then
1860 begin
1861 Result := True;
1862 Exit;
1863 end;
1864 end;
1866 procedure g_Map_Free();
1867 var
1868 a: Integer;
1870 procedure FreePanelArray(var panels: TPanelArray);
1871 var
1872 i: Integer;
1874 begin
1875 if panels <> nil then
1876 begin
1877 for i := 0 to High(panels) do
1878 panels[i].Free();
1879 panels := nil;
1880 end;
1881 end;
1883 begin
1884 g_GFX_Free();
1885 g_Weapon_Free();
1886 g_Items_Free();
1887 g_Triggers_Free();
1888 g_Monsters_Free();
1890 RespawnPoints := nil;
1891 if FlagPoints[FLAG_RED] <> nil then
1892 begin
1893 Dispose(FlagPoints[FLAG_RED]);
1894 FlagPoints[FLAG_RED] := nil;
1895 end;
1896 if FlagPoints[FLAG_BLUE] <> nil then
1897 begin
1898 Dispose(FlagPoints[FLAG_BLUE]);
1899 FlagPoints[FLAG_BLUE] := nil;
1900 end;
1901 //DOMFlagPoints := nil;
1903 //gDOMFlags := nil;
1905 if Textures <> nil then
1906 begin
1907 for a := 0 to High(Textures) do
1908 if not g_Map_IsSpecialTexture(Textures[a].TextureName) then
1909 if Textures[a].Anim then
1910 g_Frames_DeleteByID(Textures[a].FramesID)
1911 else
1912 if Textures[a].TextureID <> TEXTURE_NONE then
1913 e_DeleteTexture(Textures[a].TextureID);
1915 Textures := nil;
1916 end;
1918 FreePanelArray(gWalls);
1919 FreePanelArray(gRenderBackgrounds);
1920 FreePanelArray(gRenderForegrounds);
1921 FreePanelArray(gWater);
1922 FreePanelArray(gAcid1);
1923 FreePanelArray(gAcid2);
1924 FreePanelArray(gSteps);
1925 FreePanelArray(gLifts);
1926 FreePanelArray(gBlockMon);
1928 if BackID <> DWORD(-1) then
1929 begin
1930 gBackSize.X := 0;
1931 gBackSize.Y := 0;
1932 e_DeleteTexture(BackID);
1933 BackID := DWORD(-1);
1934 end;
1936 g_Game_StopAllSounds(False);
1937 gMusic.FreeSound();
1938 g_Sound_Delete(gMapInfo.MusicName);
1940 gMapInfo.Name := '';
1941 gMapInfo.Description := '';
1942 gMapInfo.MusicName := '';
1943 gMapInfo.Height := 0;
1944 gMapInfo.Width := 0;
1946 gDoorMap := nil;
1947 gLiftMap := nil;
1949 PanelByID := nil;
1950 end;
1952 procedure g_Map_Update();
1953 var
1954 a, d, j: Integer;
1955 m: Word;
1956 s: String;
1958 procedure UpdatePanelArray(var panels: TPanelArray);
1959 var
1960 i: Integer;
1962 begin
1963 if panels <> nil then
1964 for i := 0 to High(panels) do
1965 panels[i].Update();
1966 end;
1968 begin
1969 UpdatePanelArray(gWalls);
1970 UpdatePanelArray(gRenderBackgrounds);
1971 UpdatePanelArray(gRenderForegrounds);
1972 UpdatePanelArray(gWater);
1973 UpdatePanelArray(gAcid1);
1974 UpdatePanelArray(gAcid2);
1975 UpdatePanelArray(gSteps);
1977 if gGameSettings.GameMode = GM_CTF then
1978 begin
1979 for a := FLAG_RED to FLAG_BLUE do
1980 if not (gFlags[a].State in [FLAG_STATE_NONE, FLAG_STATE_CAPTURED]) then
1981 with gFlags[a] do
1982 begin
1983 if gFlags[a].Animation <> nil then
1984 gFlags[a].Animation.Update();
1986 m := g_Obj_Move(@Obj, True, True);
1988 if gTime mod (GAME_TICK*2) <> 0 then
1989 Continue;
1991 // Ñîïðîòèâëåíèå âîçäóõà:
1992 Obj.Vel.X := z_dec(Obj.Vel.X, 1);
1994 // Òàéìàóò ïîòåðÿííîãî ôëàãà, ëèáî îí âûïàë çà êàðòó:
1995 if ((Count = 0) or ByteBool(m and MOVE_FALLOUT)) and g_Game_IsServer then
1996 begin
1997 g_Map_ResetFlag(a);
1998 gFlags[a].CaptureTime := 0;
1999 if a = FLAG_RED then
2000 s := _lc[I_PLAYER_FLAG_RED]
2001 else
2002 s := _lc[I_PLAYER_FLAG_BLUE];
2003 g_Game_Message(Format(_lc[I_MESSAGE_FLAG_RETURN], [AnsiUpperCase(s)]), 144);
2005 if g_Game_IsNet then
2006 MH_SEND_FlagEvent(FLAG_STATE_RETURNED, a, 0);
2007 Continue;
2008 end;
2010 if Count > 0 then
2011 Count := Count - 1;
2013 // Èãðîê áåðåò ôëàã:
2014 if gPlayers <> nil then
2015 begin
2016 j := Random(Length(gPlayers)) - 1;
2018 for d := 0 to High(gPlayers) do
2019 begin
2020 Inc(j);
2021 if j > High(gPlayers) then
2022 j := 0;
2024 if gPlayers[j] <> nil then
2025 if gPlayers[j].Live and
2026 g_Obj_Collide(@Obj, @gPlayers[j].Obj) then
2027 begin
2028 if gPlayers[j].GetFlag(a) then
2029 Break;
2030 end;
2031 end;
2032 end;
2033 end;
2034 end;
2035 end;
2038 // old algo
2039 procedure g_Map_DrawPanels (PanelType: Word);
2041 procedure DrawPanels (constref panels: TPanelArray; drawDoors: Boolean=False);
2042 var
2043 idx: Integer;
2044 begin
2045 if (panels <> nil) then
2046 begin
2047 // alas, no visible set
2048 for idx := 0 to High(panels) do
2049 begin
2050 if not (drawDoors xor panels[idx].Door) then panels[idx].Draw();
2051 end;
2052 end;
2053 end;
2055 begin
2056 case PanelType of
2057 PANEL_WALL: DrawPanels(gWalls);
2058 PANEL_CLOSEDOOR: DrawPanels(gWalls, True);
2059 PANEL_BACK: DrawPanels(gRenderBackgrounds);
2060 PANEL_FORE: DrawPanels(gRenderForegrounds);
2061 PANEL_WATER: DrawPanels(gWater);
2062 PANEL_ACID1: DrawPanels(gAcid1);
2063 PANEL_ACID2: DrawPanels(gAcid2);
2064 PANEL_STEP: DrawPanels(gSteps);
2065 end;
2066 end;
2069 // new algo
2070 procedure g_Map_CollectDrawPanels (x0, y0, wdt, hgt: Integer);
2072 function checker (pan: TPanel; tag: Integer): Boolean;
2073 begin
2074 result := false; // don't stop, ever
2075 if ((tag and GridTagDoor) <> 0) <> pan.Door then exit;
2076 gDrawPanelList.insert(pan);
2077 end;
2079 begin
2080 dplClear();
2081 //tagmask := panelTypeToTag(PanelType);
2083 {if gdbg_map_use_tree_draw then
2084 begin
2085 mapTree.aabbQuery(x0, y0, wdt, hgt, checker, (GridTagBack or GridTagStep or GridTagWall or GridTagDoor or GridTagAcid1 or GridTagAcid2 or GridTagWater or GridTagFore));
2086 end
2087 else}
2088 begin
2089 mapGrid.forEachInAABB(x0, y0, wdt, hgt, checker, GridDrawableMask);
2090 end;
2091 // list will be rendered in `g_game.DrawPlayer()`
2092 end;
2095 procedure g_Map_DrawPanelShadowVolumes(lightX: Integer; lightY: Integer; radius: Integer);
2097 function checker (pan: TPanel; tag: Integer): Boolean;
2098 begin
2099 result := false; // don't stop, ever
2100 pan.DrawShadowVolume(lightX, lightY, radius);
2101 end;
2103 begin
2104 {if gdbg_map_use_tree_draw then
2105 begin
2106 mapTree.aabbQuery(lightX-radius, lightY-radius, radius*2, radius*2, checker, (GridTagWall or GridTagDoor));
2107 end
2108 else}
2109 begin
2110 mapGrid.forEachInAABB(lightX-radius, lightY-radius, radius*2, radius*2, checker, (GridTagWall or GridTagDoor));
2111 end;
2112 end;
2115 procedure g_Map_DrawBack(dx, dy: Integer);
2116 begin
2117 if gDrawBackGround and (BackID <> DWORD(-1)) then
2118 e_DrawSize(BackID, dx, dy, 0, False, False, gBackSize.X, gBackSize.Y)
2119 else
2120 e_Clear(GL_COLOR_BUFFER_BIT, 0, 0, 0);
2121 end;
2123 function g_Map_CollidePanelOld(X, Y: Integer; Width, Height: Word;
2124 PanelType: Word; b1x3: Boolean=false): Boolean;
2125 var
2126 a, h: Integer;
2127 begin
2128 Result := False;
2130 if WordBool(PanelType and PANEL_WALL) then
2131 if gWalls <> nil then
2132 begin
2133 h := High(gWalls);
2135 for a := 0 to h do
2136 if gWalls[a].Enabled and
2137 g_Collide(X, Y, Width, Height,
2138 gWalls[a].X, gWalls[a].Y,
2139 gWalls[a].Width, gWalls[a].Height) then
2140 begin
2141 Result := True;
2142 Exit;
2143 end;
2144 end;
2146 if WordBool(PanelType and PANEL_WATER) then
2147 if gWater <> nil then
2148 begin
2149 h := High(gWater);
2151 for a := 0 to h do
2152 if g_Collide(X, Y, Width, Height,
2153 gWater[a].X, gWater[a].Y,
2154 gWater[a].Width, gWater[a].Height) then
2155 begin
2156 Result := True;
2157 Exit;
2158 end;
2159 end;
2161 if WordBool(PanelType and PANEL_ACID1) then
2162 if gAcid1 <> nil then
2163 begin
2164 h := High(gAcid1);
2166 for a := 0 to h do
2167 if g_Collide(X, Y, Width, Height,
2168 gAcid1[a].X, gAcid1[a].Y,
2169 gAcid1[a].Width, gAcid1[a].Height) then
2170 begin
2171 Result := True;
2172 Exit;
2173 end;
2174 end;
2176 if WordBool(PanelType and PANEL_ACID2) then
2177 if gAcid2 <> nil then
2178 begin
2179 h := High(gAcid2);
2181 for a := 0 to h do
2182 if g_Collide(X, Y, Width, Height,
2183 gAcid2[a].X, gAcid2[a].Y,
2184 gAcid2[a].Width, gAcid2[a].Height) then
2185 begin
2186 Result := True;
2187 Exit;
2188 end;
2189 end;
2191 if WordBool(PanelType and PANEL_STEP) then
2192 if gSteps <> nil then
2193 begin
2194 h := High(gSteps);
2196 for a := 0 to h do
2197 if g_Collide(X, Y, Width, Height,
2198 gSteps[a].X, gSteps[a].Y,
2199 gSteps[a].Width, gSteps[a].Height) then
2200 begin
2201 Result := True;
2202 Exit;
2203 end;
2204 end;
2206 if WordBool(PanelType and (PANEL_LIFTUP or PANEL_LIFTDOWN or PANEL_LIFTLEFT or PANEL_LIFTRIGHT)) then
2207 if gLifts <> nil then
2208 begin
2209 h := High(gLifts);
2211 for a := 0 to h do
2212 if ((WordBool(PanelType and (PANEL_LIFTUP)) and (gLifts[a].LiftType = 0)) or
2213 (WordBool(PanelType and (PANEL_LIFTDOWN)) and (gLifts[a].LiftType = 1)) or
2214 (WordBool(PanelType and (PANEL_LIFTLEFT)) and (gLifts[a].LiftType = 2)) or
2215 (WordBool(PanelType and (PANEL_LIFTRIGHT)) and (gLifts[a].LiftType = 3))) and
2216 g_Collide(X, Y, Width, Height,
2217 gLifts[a].X, gLifts[a].Y,
2218 gLifts[a].Width, gLifts[a].Height) then
2219 begin
2220 Result := True;
2221 Exit;
2222 end;
2223 end;
2225 if WordBool(PanelType and PANEL_BLOCKMON) then
2226 if gBlockMon <> nil then
2227 begin
2228 h := High(gBlockMon);
2230 for a := 0 to h do
2231 if ( (not b1x3) or
2232 ((gBlockMon[a].Width + gBlockMon[a].Height) >= 64) ) and
2233 g_Collide(X, Y, Width, Height,
2234 gBlockMon[a].X, gBlockMon[a].Y,
2235 gBlockMon[a].Width, gBlockMon[a].Height) then
2236 begin
2237 Result := True;
2238 Exit;
2239 end;
2240 end;
2241 end;
2243 function g_Map_CollideLiquid_TextureOld(X, Y: Integer; Width, Height: Word): DWORD;
2244 var
2245 texid: DWORD;
2247 function checkPanels (constref panels: TPanelArray): Boolean;
2248 var
2249 a: Integer;
2250 begin
2251 result := false;
2252 if panels = nil then exit;
2253 for a := 0 to High(panels) do
2254 begin
2255 if g_Collide(X, Y, Width, Height, panels[a].X, panels[a].Y, panels[a].Width, panels[a].Height) then
2256 begin
2257 result := true;
2258 texid := panels[a].GetTextureID();
2259 exit;
2260 end;
2261 end;
2262 end;
2264 begin
2265 texid := TEXTURE_NONE;
2266 result := texid;
2267 if not checkPanels(gWater) then
2268 if not checkPanels(gAcid1) then
2269 if not checkPanels(gAcid2) then exit;
2270 result := texid;
2271 end;
2274 function g_Map_CollidePanel(X, Y: Integer; Width, Height: Word; PanelType: Word; b1x3: Boolean): Boolean;
2275 const
2276 SlowMask = GridTagLift or GridTagBlockMon;
2277 function checker (pan: TPanel; tag: Integer): Boolean;
2278 begin
2280 if ((tag and (GridTagWall or GridTagDoor)) <> 0) then
2281 begin
2282 result := pan.Enabled;
2283 exit;
2284 end;
2287 if ((tag and GridTagLift) <> 0) then
2288 begin
2289 result :=
2290 ((WordBool(PanelType and PANEL_LIFTUP) and (pan.LiftType = 0)) or
2291 (WordBool(PanelType and PANEL_LIFTDOWN) and (pan.LiftType = 1)) or
2292 (WordBool(PanelType and PANEL_LIFTLEFT) and (pan.LiftType = 2)) or
2293 (WordBool(PanelType and PANEL_LIFTRIGHT) and (pan.LiftType = 3))) {and
2294 g_Collide(X, Y, Width, Height, pan.X, pan.Y, pan.Width, pan.Height)};
2295 exit;
2296 end;
2298 if ((tag and GridTagBlockMon) <> 0) then
2299 begin
2300 result := ((not b1x3) or (pan.Width+pan.Height >= 64)); //and g_Collide(X, Y, Width, Height, pan.X, pan.Y, pan.Width, pan.Height);
2301 exit;
2302 end;
2304 // other shit
2305 //result := g_Collide(X, Y, Width, Height, pan.X, pan.Y, pan.Width, pan.Height);
2306 result := true; // i found her!
2307 end;
2309 var
2310 tagmask: Integer = 0;
2311 begin
2312 if WordBool(PanelType and (PANEL_WALL or PANEL_CLOSEDOOR or PANEL_OPENDOOR)) then tagmask := tagmask or (GridTagWall or GridTagDoor);
2313 if WordBool(PanelType and PANEL_WATER) then tagmask := tagmask or GridTagWater;
2314 if WordBool(PanelType and PANEL_ACID1) then tagmask := tagmask or GridTagAcid1;
2315 if WordBool(PanelType and PANEL_ACID2) then tagmask := tagmask or GridTagAcid2;
2316 if WordBool(PanelType and PANEL_STEP) then tagmask := tagmask or GridTagStep;
2317 if WordBool(PanelType and (PANEL_LIFTUP or PANEL_LIFTDOWN or PANEL_LIFTLEFT or PANEL_LIFTRIGHT)) then tagmask := tagmask or GridTagLift;
2318 if WordBool(PanelType and PANEL_BLOCKMON) then tagmask := tagmask or GridTagBlockMon;
2320 if (tagmask = 0) then begin result := false; exit; end; // just in case
2322 if (profMapCollision <> nil) then profMapCollision.sectionBeginAccum('*solids');
2323 if gdbg_map_use_accel_coldet then
2324 begin
2325 {if gdbg_map_use_tree_coldet then
2326 begin
2327 //e_WriteLog(Format('coldet query: x=%d; y=%d; w=%d; h=%d', [X, Y, Width, Height]), MSG_NOTIFY);
2328 result := (mapTree.aabbQuery(X, Y, Width, Height, checker, tagmask) <> nil);
2329 if (gdbg_map_dump_coldet_tree_queries) and (mapTree.nodesVisited <> 0) then
2330 begin
2331 //e_WriteLog(Format('map collision: %d nodes visited (%d deep)', [mapTree.nodesVisited, mapTree.nodesDeepVisited]), MSG_NOTIFY);
2332 g_Console_Add(Format('map collision: %d nodes visited (%d deep)', [mapTree.nodesVisited, mapTree.nodesDeepVisited]));
2333 end;
2334 end
2335 else}
2336 begin
2337 if (Width = 1) and (Height = 1) then
2338 begin
2339 if ((tagmask and SlowMask) <> 0) then
2340 begin
2341 // slow
2342 result := (mapGrid.forEachAtPoint(X, Y, checker, tagmask) <> nil);
2343 end
2344 else
2345 begin
2346 // fast
2347 result := (mapGrid.forEachAtPoint(X, Y, nil, tagmask) <> nil);
2348 end;
2349 end
2350 else
2351 begin
2352 if ((tagmask and SlowMask) <> 0) then
2353 begin
2354 // slow
2355 result := (mapGrid.forEachInAABB(X, Y, Width, Height, checker, tagmask) <> nil);
2356 end
2357 else
2358 begin
2359 // fast
2360 result := (mapGrid.forEachInAABB(X, Y, Width, Height, nil, tagmask) <> nil);
2361 end;
2362 end;
2363 end;
2364 end
2365 else
2366 begin
2367 result := g_Map_CollidePanelOld(X, Y, Width, Height, PanelType, b1x3);
2368 end;
2369 if (profMapCollision <> nil) then profMapCollision.sectionEnd();
2370 end;
2373 function g_Map_CollideLiquid_Texture(X, Y: Integer; Width, Height: Word): DWORD;
2374 var
2375 cctype: Integer = 3; // priority: 0: water was hit, 1: acid1 was hit, 2: acid2 was hit; 3: nothing was hit
2376 texid: DWORD;
2378 // slightly different from the old code, but meh...
2379 function checker (pan: TPanel; tag: Integer): Boolean;
2380 begin
2381 result := false; // don't stop, ever
2382 //if ((tag and (GridTagWater or GridTagAcid1 or GridTagAcid2)) = 0) then exit;
2383 // check priorities
2384 case cctype of
2385 0: if ((tag and GridTagWater) = 0) then exit; // allowed: water
2386 1: if ((tag and (GridTagWater or GridTagAcid1)) = 0) then exit; // allowed: water, acid1
2387 //2: if ((tag and (GridTagWater or GridTagAcid1 or GridTagAcid2) = 0) then exit; // allowed: water, acid1, acid2
2388 end;
2389 // collision?
2390 //if not g_Collide(X, Y, Width, Height, pan.X, pan.Y, pan.Width, pan.Height) then exit;
2391 // yeah
2392 texid := pan.GetTextureID();
2393 // water? water has the highest priority, so stop right here
2394 if ((tag and GridTagWater) <> 0) then begin cctype := 0; result := true; exit; end;
2395 // acid2?
2396 if ((tag and GridTagAcid2) <> 0) then cctype := 2;
2397 // acid1?
2398 if ((tag and GridTagAcid1) <> 0) then cctype := 1;
2399 end;
2401 begin
2402 if (profMapCollision <> nil) then profMapCollision.sectionBeginAccum('liquids');
2403 if gdbg_map_use_accel_coldet then
2404 begin
2405 texid := TEXTURE_NONE;
2406 {if gdbg_map_use_tree_coldet then
2407 begin
2408 mapTree.aabbQuery(X, Y, Width, Height, checker, (GridTagWater or GridTagAcid1 or GridTagAcid2));
2409 end
2410 else}
2411 begin
2412 if (Width = 1) and (Height = 1) then
2413 begin
2414 mapGrid.forEachAtPoint(X, Y, checker, (GridTagWater or GridTagAcid1 or GridTagAcid2));
2415 end
2416 else
2417 begin
2418 mapGrid.forEachInAABB(X, Y, Width, Height, checker, (GridTagWater or GridTagAcid1 or GridTagAcid2));
2419 end;
2420 end;
2421 result := texid;
2422 end
2423 else
2424 begin
2425 result := g_Map_CollideLiquid_TextureOld(X, Y, Width, Height);
2426 end;
2427 if (profMapCollision <> nil) then profMapCollision.sectionEnd();
2428 end;
2431 procedure g_Map_EnableWall(ID: DWORD);
2432 var
2433 pan: TPanel;
2434 begin
2435 pan := gWalls[ID];
2436 pan.Enabled := True;
2437 g_Mark(pan.X, pan.Y, pan.Width, pan.Height, MARK_DOOR, True);
2439 mapGrid.proxyEnabled[pan.proxyId] := true;
2440 //if (pan.proxyId >= 0) then mapGrid.proxyEnabled[pan.proxyId] := true
2441 //else pan.proxyId := mapGrid.insertBody(pan, pan.X, pan.Y, pan.Width, pan.Height, GridTagDoor);
2443 if g_Game_IsServer and g_Game_IsNet then MH_SEND_PanelState(gWalls[ID].PanelType, ID);
2445 {$IFDEF MAP_DEBUG_ENABLED_FLAG}
2446 //e_WriteLog(Format('ENABLE: wall #%d(%d) enabled (%d) (%d,%d)-(%d,%d)', [Integer(ID), Integer(pan.proxyId), Integer(mapGrid.proxyEnabled[pan.proxyId]), pan.x, pan.y, pan.width, pan.height]), MSG_NOTIFY);
2447 {$ENDIF}
2448 end;
2450 procedure g_Map_DisableWall(ID: DWORD);
2451 var
2452 pan: TPanel;
2453 begin
2454 pan := gWalls[ID];
2455 pan.Enabled := False;
2456 g_Mark(pan.X, pan.Y, pan.Width, pan.Height, MARK_DOOR, False);
2458 mapGrid.proxyEnabled[pan.proxyId] := false;
2459 //if (pan.proxyId >= 0) then begin mapGrid.removeBody(pan.proxyId); pan.proxyId := -1; end;
2461 if g_Game_IsServer and g_Game_IsNet then MH_SEND_PanelState(pan.PanelType, ID);
2463 {$IFDEF MAP_DEBUG_ENABLED_FLAG}
2464 //e_WriteLog(Format('DISABLE: wall #%d(%d) disabled (%d) (%d,%d)-(%d,%d)', [Integer(ID), Integer(pan.proxyId), Integer(mapGrid.proxyEnabled[pan.proxyId]), pan.x, pan.y, pan.width, pan.height]), MSG_NOTIFY);
2465 {$ENDIF}
2466 end;
2468 procedure g_Map_SwitchTexture(PanelType: Word; ID: DWORD; AnimLoop: Byte = 0);
2469 var
2470 tp: TPanel;
2471 begin
2472 case PanelType of
2473 PANEL_WALL, PANEL_OPENDOOR, PANEL_CLOSEDOOR:
2474 tp := gWalls[ID];
2475 PANEL_FORE:
2476 tp := gRenderForegrounds[ID];
2477 PANEL_BACK:
2478 tp := gRenderBackgrounds[ID];
2479 PANEL_WATER:
2480 tp := gWater[ID];
2481 PANEL_ACID1:
2482 tp := gAcid1[ID];
2483 PANEL_ACID2:
2484 tp := gAcid2[ID];
2485 PANEL_STEP:
2486 tp := gSteps[ID];
2487 else
2488 Exit;
2489 end;
2491 tp.NextTexture(AnimLoop);
2492 if g_Game_IsServer and g_Game_IsNet then
2493 MH_SEND_PanelTexture(PanelType, ID, AnimLoop);
2494 end;
2496 procedure g_Map_SetLift(ID: DWORD; t: Integer);
2497 begin
2498 if gLifts[ID].LiftType = t then
2499 Exit;
2501 with gLifts[ID] do
2502 begin
2503 LiftType := t;
2505 g_Mark(X, Y, Width, Height, MARK_LIFT, False);
2506 //TODO: make separate lift tags, and change tag here
2508 if LiftType = 0 then
2509 g_Mark(X, Y, Width, Height, MARK_LIFTUP, True)
2510 else if LiftType = 1 then
2511 g_Mark(X, Y, Width, Height, MARK_LIFTDOWN, True)
2512 else if LiftType = 2 then
2513 g_Mark(X, Y, Width, Height, MARK_LIFTLEFT, True)
2514 else if LiftType = 3 then
2515 g_Mark(X, Y, Width, Height, MARK_LIFTRIGHT, True);
2517 if g_Game_IsServer and g_Game_IsNet then MH_SEND_PanelState(PanelType, ID);
2518 end;
2519 end;
2521 function g_Map_GetPoint(PointType: Byte; var RespawnPoint: TRespawnPoint): Boolean;
2522 var
2523 a: Integer;
2524 PointsArray: Array of TRespawnPoint;
2525 begin
2526 Result := False;
2527 SetLength(PointsArray, 0);
2529 if RespawnPoints = nil then
2530 Exit;
2532 for a := 0 to High(RespawnPoints) do
2533 if RespawnPoints[a].PointType = PointType then
2534 begin
2535 SetLength(PointsArray, Length(PointsArray)+1);
2536 PointsArray[High(PointsArray)] := RespawnPoints[a];
2537 end;
2539 if PointsArray = nil then
2540 Exit;
2542 RespawnPoint := PointsArray[Random(Length(PointsArray))];
2543 Result := True;
2544 end;
2546 function g_Map_GetPointCount(PointType: Byte): Word;
2547 var
2548 a: Integer;
2549 begin
2550 Result := 0;
2552 if RespawnPoints = nil then
2553 Exit;
2555 for a := 0 to High(RespawnPoints) do
2556 if RespawnPoints[a].PointType = PointType then
2557 Result := Result + 1;
2558 end;
2560 function g_Map_HaveFlagPoints(): Boolean;
2561 begin
2562 Result := (FlagPoints[FLAG_RED] <> nil) and (FlagPoints[FLAG_BLUE] <> nil);
2563 end;
2565 procedure g_Map_ResetFlag(Flag: Byte);
2566 begin
2567 with gFlags[Flag] do
2568 begin
2569 Obj.X := -1000;
2570 Obj.Y := -1000;
2571 Obj.Vel.X := 0;
2572 Obj.Vel.Y := 0;
2573 Direction := D_LEFT;
2574 State := FLAG_STATE_NONE;
2575 if FlagPoints[Flag] <> nil then
2576 begin
2577 Obj.X := FlagPoints[Flag]^.X;
2578 Obj.Y := FlagPoints[Flag]^.Y;
2579 Direction := FlagPoints[Flag]^.Direction;
2580 State := FLAG_STATE_NORMAL;
2581 end;
2582 Count := -1;
2583 end;
2584 end;
2586 procedure g_Map_DrawFlags();
2587 var
2588 i, dx: Integer;
2589 Mirror: TMirrorType;
2590 begin
2591 if gGameSettings.GameMode <> GM_CTF then
2592 Exit;
2594 for i := FLAG_RED to FLAG_BLUE do
2595 with gFlags[i] do
2596 if State <> FLAG_STATE_CAPTURED then
2597 begin
2598 if State = FLAG_STATE_NONE then
2599 continue;
2601 if Direction = D_LEFT then
2602 begin
2603 Mirror := M_HORIZONTAL;
2604 dx := -1;
2605 end
2606 else
2607 begin
2608 Mirror := M_NONE;
2609 dx := 1;
2610 end;
2612 Animation.Draw(Obj.X+dx, Obj.Y+1, Mirror);
2614 if g_debug_Frames then
2615 begin
2616 e_DrawQuad(Obj.X+Obj.Rect.X,
2617 Obj.Y+Obj.Rect.Y,
2618 Obj.X+Obj.Rect.X+Obj.Rect.Width-1,
2619 Obj.Y+Obj.Rect.Y+Obj.Rect.Height-1,
2620 0, 255, 0);
2621 end;
2622 end;
2623 end;
2625 procedure g_Map_SaveState(Var Mem: TBinMemoryWriter);
2626 var
2627 dw: DWORD;
2628 b: Byte;
2629 str: String;
2630 boo: Boolean;
2632 procedure SavePanelArray(var panels: TPanelArray);
2633 var
2634 PAMem: TBinMemoryWriter;
2635 i: Integer;
2636 begin
2637 // Ñîçäàåì íîâûé ñïèñîê ñîõðàíÿåìûõ ïàíåëåé:
2638 PAMem := TBinMemoryWriter.Create((Length(panels)+1) * 40);
2640 i := 0;
2641 while i < Length(panels) do
2642 begin
2643 if panels[i].SaveIt then
2644 begin
2645 // ID ïàíåëè:
2646 PAMem.WriteInt(i);
2647 // Ñîõðàíÿåì ïàíåëü:
2648 panels[i].SaveState(PAMem);
2649 end;
2650 Inc(i);
2651 end;
2653 // Ñîõðàíÿåì ýòîò ñïèñîê ïàíåëåé:
2654 PAMem.SaveToMemory(Mem);
2655 PAMem.Free();
2656 end;
2658 procedure SaveFlag(flag: PFlag);
2659 begin
2660 // Ñèãíàòóðà ôëàãà:
2661 dw := FLAG_SIGNATURE; // 'FLAG'
2662 Mem.WriteDWORD(dw);
2663 // Âðåìÿ ïåðåïîÿâëåíèÿ ôëàãà:
2664 Mem.WriteByte(flag^.RespawnType);
2665 // Ñîñòîÿíèå ôëàãà:
2666 Mem.WriteByte(flag^.State);
2667 // Íàïðàâëåíèå ôëàãà:
2668 if flag^.Direction = D_LEFT then
2669 b := 1
2670 else // D_RIGHT
2671 b := 2;
2672 Mem.WriteByte(b);
2673 // Îáúåêò ôëàãà:
2674 Obj_SaveState(@flag^.Obj, Mem);
2675 end;
2677 begin
2678 Mem := TBinMemoryWriter.Create(1024 * 1024); // 1 MB
2680 ///// Ñîõðàíÿåì ñïèñêè ïàíåëåé: /////
2681 // Ñîõðàíÿåì ïàíåëè ñòåí è äâåðåé:
2682 SavePanelArray(gWalls);
2683 // Ñîõðàíÿåì ïàíåëè ôîíà:
2684 SavePanelArray(gRenderBackgrounds);
2685 // Ñîõðàíÿåì ïàíåëè ïåðåäíåãî ïëàíà:
2686 SavePanelArray(gRenderForegrounds);
2687 // Ñîõðàíÿåì ïàíåëè âîäû:
2688 SavePanelArray(gWater);
2689 // Ñîõðàíÿåì ïàíåëè êèñëîòû-1:
2690 SavePanelArray(gAcid1);
2691 // Ñîõðàíÿåì ïàíåëè êèñëîòû-2:
2692 SavePanelArray(gAcid2);
2693 // Ñîõðàíÿåì ïàíåëè ñòóïåíåé:
2694 SavePanelArray(gSteps);
2695 // Ñîõðàíÿåì ïàíåëè ëèôòîâ:
2696 SavePanelArray(gLifts);
2697 ///// /////
2699 ///// Ñîõðàíÿåì ìóçûêó: /////
2700 // Ñèãíàòóðà ìóçûêè:
2701 dw := MUSIC_SIGNATURE; // 'MUSI'
2702 Mem.WriteDWORD(dw);
2703 // Íàçâàíèå ìóçûêè:
2704 Assert(gMusic <> nil, 'g_Map_SaveState: gMusic = nil');
2705 if gMusic.NoMusic then
2706 str := ''
2707 else
2708 str := gMusic.Name;
2709 Mem.WriteString(str, 64);
2710 // Ïîçèöèÿ ïðîèãðûâàíèÿ ìóçûêè:
2711 dw := gMusic.GetPosition();
2712 Mem.WriteDWORD(dw);
2713 // Ñòîèò ëè ìóçûêà íà ñïåö-ïàóçå:
2714 boo := gMusic.SpecPause;
2715 Mem.WriteBoolean(boo);
2716 ///// /////
2718 ///// Ñîõðàíÿåì êîëè÷åñòâî ìîíñòðîâ: /////
2719 Mem.WriteInt(gTotalMonsters);
2720 ///// /////
2722 //// Ñîõðàíÿåì ôëàãè, åñëè ýòî CTF: /////
2723 if gGameSettings.GameMode = GM_CTF then
2724 begin
2725 // Ôëàã Êðàñíîé êîìàíäû:
2726 SaveFlag(@gFlags[FLAG_RED]);
2727 // Ôëàã Ñèíåé êîìàíäû:
2728 SaveFlag(@gFlags[FLAG_BLUE]);
2729 end;
2730 ///// /////
2732 ///// Ñîõðàíÿåì êîëè÷åñòâî ïîáåä, åñëè ýòî TDM/CTF: /////
2733 if gGameSettings.GameMode in [GM_TDM, GM_CTF] then
2734 begin
2735 // Î÷êè Êðàñíîé êîìàíäû:
2736 Mem.WriteSmallInt(gTeamStat[TEAM_RED].Goals);
2737 // Î÷êè Ñèíåé êîìàíäû:
2738 Mem.WriteSmallInt(gTeamStat[TEAM_BLUE].Goals);
2739 end;
2740 ///// /////
2741 end;
2743 procedure g_Map_LoadState(Var Mem: TBinMemoryReader);
2744 var
2745 dw: DWORD;
2746 b: Byte;
2747 str: String;
2748 boo: Boolean;
2750 procedure LoadPanelArray(var panels: TPanelArray);
2751 var
2752 PAMem: TBinMemoryReader;
2753 i, id: Integer;
2754 begin
2755 // Çàãðóæàåì òåêóùèé ñïèñîê ïàíåëåé:
2756 PAMem := TBinMemoryReader.Create();
2757 PAMem.LoadFromMemory(Mem);
2759 for i := 0 to Length(panels)-1 do
2760 if panels[i].SaveIt then
2761 begin
2762 // ID ïàíåëè:
2763 PAMem.ReadInt(id);
2764 if id <> i then
2765 begin
2766 raise EBinSizeError.Create('g_Map_LoadState: LoadPanelArray: Wrong Panel ID');
2767 end;
2768 // Çàãðóæàåì ïàíåëü:
2769 panels[i].LoadState(PAMem);
2770 end;
2772 // Ýòîò ñïèñîê ïàíåëåé çàãðóæåí:
2773 PAMem.Free();
2774 end;
2776 procedure LoadFlag(flag: PFlag);
2777 begin
2778 // Ñèãíàòóðà ôëàãà:
2779 Mem.ReadDWORD(dw);
2780 if dw <> FLAG_SIGNATURE then // 'FLAG'
2781 begin
2782 raise EBinSizeError.Create('g_Map_LoadState: LoadFlag: Wrong Flag Signature');
2783 end;
2784 // Âðåìÿ ïåðåïîÿâëåíèÿ ôëàãà:
2785 Mem.ReadByte(flag^.RespawnType);
2786 // Ñîñòîÿíèå ôëàãà:
2787 Mem.ReadByte(flag^.State);
2788 // Íàïðàâëåíèå ôëàãà:
2789 Mem.ReadByte(b);
2790 if b = 1 then
2791 flag^.Direction := D_LEFT
2792 else // b = 2
2793 flag^.Direction := D_RIGHT;
2794 // Îáúåêò ôëàãà:
2795 Obj_LoadState(@flag^.Obj, Mem);
2796 end;
2798 begin
2799 if Mem = nil then
2800 Exit;
2802 ///// Çàãðóæàåì ñïèñêè ïàíåëåé: /////
2803 // Çàãðóæàåì ïàíåëè ñòåí è äâåðåé:
2804 LoadPanelArray(gWalls);
2805 // Çàãðóæàåì ïàíåëè ôîíà:
2806 LoadPanelArray(gRenderBackgrounds);
2807 // Çàãðóæàåì ïàíåëè ïåðåäíåãî ïëàíà:
2808 LoadPanelArray(gRenderForegrounds);
2809 // Çàãðóæàåì ïàíåëè âîäû:
2810 LoadPanelArray(gWater);
2811 // Çàãðóæàåì ïàíåëè êèñëîòû-1:
2812 LoadPanelArray(gAcid1);
2813 // Çàãðóæàåì ïàíåëè êèñëîòû-2:
2814 LoadPanelArray(gAcid2);
2815 // Çàãðóæàåì ïàíåëè ñòóïåíåé:
2816 LoadPanelArray(gSteps);
2817 // Çàãðóæàåì ïàíåëè ëèôòîâ:
2818 LoadPanelArray(gLifts);
2819 ///// /////
2821 // Îáíîâëÿåì êàðòó ñòîëêíîâåíèé è ñåòêó:
2822 g_GFX_Init();
2823 mapCreateGrid();
2825 ///// Çàãðóæàåì ìóçûêó: /////
2826 // Ñèãíàòóðà ìóçûêè:
2827 Mem.ReadDWORD(dw);
2828 if dw <> MUSIC_SIGNATURE then // 'MUSI'
2829 begin
2830 raise EBinSizeError.Create('g_Map_LoadState: Wrong Music Signature');
2831 end;
2832 // Íàçâàíèå ìóçûêè:
2833 Assert(gMusic <> nil, 'g_Map_LoadState: gMusic = nil');
2834 Mem.ReadString(str);
2835 // Ïîçèöèÿ ïðîèãðûâàíèÿ ìóçûêè:
2836 Mem.ReadDWORD(dw);
2837 // Ñòîèò ëè ìóçûêà íà ñïåö-ïàóçå:
2838 Mem.ReadBoolean(boo);
2839 // Çàïóñêàåì ýòó ìóçûêó:
2840 gMusic.SetByName(str);
2841 gMusic.SpecPause := boo;
2842 gMusic.Play();
2843 gMusic.Pause(True);
2844 gMusic.SetPosition(dw);
2845 ///// /////
2847 ///// Çàãðóæàåì êîëè÷åñòâî ìîíñòðîâ: /////
2848 Mem.ReadInt(gTotalMonsters);
2849 ///// /////
2851 //// Çàãðóæàåì ôëàãè, åñëè ýòî CTF: /////
2852 if gGameSettings.GameMode = GM_CTF then
2853 begin
2854 // Ôëàã Êðàñíîé êîìàíäû:
2855 LoadFlag(@gFlags[FLAG_RED]);
2856 // Ôëàã Ñèíåé êîìàíäû:
2857 LoadFlag(@gFlags[FLAG_BLUE]);
2858 end;
2859 ///// /////
2861 ///// Çàãðóæàåì êîëè÷åñòâî ïîáåä, åñëè ýòî TDM/CTF: /////
2862 if gGameSettings.GameMode in [GM_TDM, GM_CTF] then
2863 begin
2864 // Î÷êè Êðàñíîé êîìàíäû:
2865 Mem.ReadSmallInt(gTeamStat[TEAM_RED].Goals);
2866 // Î÷êè Ñèíåé êîìàíäû:
2867 Mem.ReadSmallInt(gTeamStat[TEAM_BLUE].Goals);
2868 end;
2869 ///// /////
2870 end;
2872 function g_Map_PanelForPID(PanelID: Integer; var PanelArrayID: Integer): PPanel;
2873 var
2874 Arr: TPanelArray;
2875 begin
2876 Result := nil;
2877 if (PanelID < 0) or (PanelID > High(PanelByID)) then Exit;
2878 Arr := PanelByID[PanelID].PWhere^;
2879 PanelArrayID := PanelByID[PanelID].PArrID;
2880 Result := Addr(Arr[PanelByID[PanelID].PArrID]);
2881 end;
2884 // trace liquid, stepping by `dx` and `dy`
2885 // return last seen liquid coords, and `false` if we're started outside of the liquid
2886 function g_Map_TraceLiquidNonPrecise (x, y, dx, dy: Integer; out topx, topy: Integer): Boolean;
2887 const
2888 MaskLiquid = GridTagWater or GridTagAcid1 or GridTagAcid2;
2889 begin
2890 topx := x;
2891 topy := y;
2892 // started outside of the liquid?
2893 if (mapGrid.forEachAtPoint(x, y, nil, MaskLiquid) = nil) then begin result := false; exit; end;
2894 if (dx = 0) and (dy = 0) then begin result := false; exit; end; // sanity check
2895 result := true;
2896 while true do
2897 begin
2898 Inc(x, dx);
2899 Inc(y, dy);
2900 if (mapGrid.forEachAtPoint(x, y, nil, MaskLiquid) = nil) then exit; // out of the water, just exit
2901 topx := x;
2902 topy := y;
2903 end;
2904 end;
2907 end.