DEADSOFTWARE

927d251f4075f6081af9e7eb989ab51adcc0cace
[d2df-sdl.git] / src / game / renders / opengl / r_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, 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 r_map;
18 interface
20 uses g_base, g_player, g_playermodel; // TRectWH, TPlayer, TPlayerModel
22 procedure r_Map_Initialize;
23 procedure r_Map_Finalize;
25 procedure r_Map_Load;
26 procedure r_Map_Free;
28 procedure r_Map_LoadTextures;
29 procedure r_Map_FreeTextures;
31 {$IFDEF ENABLE_GFX}
32 procedure r_Map_NewGFX (typ, x, y: Integer);
33 {$ENDIF}
34 {$IFDEF ENABLE_GIBS}
35 function r_Map_GetGibSize (m, i: Integer): TRectWH;
36 {$ENDIF}
37 {$IFDEF ENABLE_MENU}
38 procedure r_Map_DrawPlayerModel (pm: TPlayerModel; x, y: Integer; alpha: Byte);
39 {$ENDIF}
41 procedure r_Map_Reset;
42 procedure r_Map_Update;
44 procedure r_Map_Draw (x, y, w, h, camx, camy: Integer; player: TPlayer; out acx, acy: Integer);
46 implementation
48 uses
49 {$I ../../../nogl/noGLuses.inc}
50 Math, SysUtils,
51 e_log,
52 binheap, MAPDEF, utils,
53 g_options, g_animations, g_basic, g_phys,
54 g_game, g_map, g_panel, g_items, g_monsters, g_weapons,
55 g_console, g_language,
56 {$IFDEF ENABLE_CORPSES}
57 g_corpses,
58 {$ENDIF}
59 {$IFDEF ENABLE_SHELLS}
60 g_shells,
61 {$ENDIF}
62 {$IFDEF ENABLE_GIBS}
63 g_gibs,
64 {$ENDIF}
65 {$IFDEF ENABLE_GFX}
66 g_gfx,
67 {$ENDIF}
68 r_textures, r_draw, r_common
69 ;
71 const
72 MTABLE: array [0..MONSTER_MAN] of record
73 w, h: Integer;
74 end = (
75 (w: 64; h: 64), // NONE
76 (w: 64; h: 64), // DEMON
77 (w: 64; h: 64), // IMP
78 (w: 64; h: 64), // ZOMBY
79 (w: 64; h: 64), // SERG
80 (w: 128; h: 128), // CYBER
81 (w: 64; h: 64), // CGUN
82 (w: 128; h: 128), // BARON
83 (w: 128; h: 128), // KNIGHT
84 (w: 128; h: 128), // CACO
85 (w: 64; h: 64), // SOUL (DIE is 128x128, see load code)
86 (w: 128; h: 128), // PAIN
87 (w: 256; h: 128), // SPIDER
88 (w: 128; h: 64), // BSP
89 (w: 128; h: 128), // MANCUB
90 (w: 128; h: 128), // SKEL
91 (w: 128; h: 128), // VILE
92 (w: 32; h: 32), // FISH
93 (w: 64; h: 64), // BARREL
94 (w: 128; h: 128), // ROBO
95 (w: 64; h: 64) // MAN
96 );
97 VILEFIRE_DX = 32;
98 VILEFIRE_DY = 128;
100 ItemAnim: array [0..ITEM_LAST] of record
101 name: AnsiString;
102 w, h: Integer;
103 anim: TAnimInfo;
104 end = (
105 (name: 'NOTEXTURE'; w: 16; h: 16; anim: (loop: true; delay: 1; frames: 1; back: false)),
106 (name: 'MED1'; w: 16; h: 16; anim: (loop: true; delay: 1; frames: 1; back: false)),
107 (name: 'MED2'; w: 32; h: 32; anim: (loop: true; delay: 1; frames: 1; back: false)),
108 (name: 'BMED'; w: 32; h: 32; anim: (loop: true; delay: 1; frames: 1; back: false)),
109 (name: 'ARMORGREEN'; w: 32; h: 16; anim: (loop: true; delay: 20; frames: 3; back: true)),
110 (name: 'ARMORBLUE'; w: 32; h: 16; anim: (loop: true; delay: 20; frames: 3; back: true)),
111 (name: 'SBLUE'; w: 32; h: 32; anim: (loop: true; delay: 15; frames: 4; back: true)),
112 (name: 'SWHITE'; w: 32; h: 32; anim: (loop: true; delay: 20; frames: 4; back: true)),
113 (name: 'SUIT'; w: 32; h: 64; anim: (loop: true; delay: 1; frames: 1; back: false)),
114 (name: 'OXYGEN'; w: 16; h: 32; anim: (loop: true; delay: 1; frames: 1; back: false)),
115 (name: 'INVUL'; w: 32; h: 32; anim: (loop: true; delay: 20; frames: 4; back: true)),
116 (name: 'SAW'; w: 64; h: 32; anim: (loop: true; delay: 1; frames: 1; back: false)),
117 (name: 'SHOTGUN1'; w: 64; h: 16; anim: (loop: true; delay: 1; frames: 1; back: false)),
118 (name: 'SHOTGUN2'; w: 64; h: 16; anim: (loop: true; delay: 1; frames: 1; back: false)),
119 (name: 'MGUN'; w: 64; h: 16; anim: (loop: true; delay: 1; frames: 1; back: false)),
120 (name: 'RLAUNCHER'; w: 64; h: 16; anim: (loop: true; delay: 1; frames: 1; back: false)),
121 (name: 'PGUN'; w: 64; h: 16; anim: (loop: true; delay: 1; frames: 1; back: false)),
122 (name: 'BFG'; w: 64; h: 64; anim: (loop: true; delay: 1; frames: 1; back: false)),
123 (name: 'SPULEMET'; w: 64; h: 16; anim: (loop: true; delay: 1; frames: 1; back: false)),
124 (name: 'CLIP'; w: 16; h: 16; anim: (loop: true; delay: 1; frames: 1; back: false)),
125 (name: 'AMMO'; w: 32; h: 16; anim: (loop: true; delay: 1; frames: 1; back: false)),
126 (name: 'SHELL1'; w: 16; h: 8; anim: (loop: true; delay: 1; frames: 1; back: false)),
127 (name: 'SHELL2'; w: 32; h: 16; anim: (loop: true; delay: 1; frames: 1; back: false)),
128 (name: 'ROCKET'; w: 16; h: 32; anim: (loop: true; delay: 1; frames: 1; back: false)),
129 (name: 'ROCKETS'; w: 64; h: 32; anim: (loop: true; delay: 1; frames: 1; back: false)),
130 (name: 'CELL'; w: 16; h: 16; anim: (loop: true; delay: 1; frames: 1; back: false)),
131 (name: 'CELL2'; w: 32; h: 32; anim: (loop: true; delay: 1; frames: 1; back: false)),
132 (name: 'BPACK'; w: 32; h: 32; anim: (loop: true; delay: 1; frames: 1; back: false)),
133 (name: 'KEYR'; w: 16; h: 16; anim: (loop: true; delay: 1; frames: 1; back: false)),
134 (name: 'KEYG'; w: 16; h: 16; anim: (loop: true; delay: 1; frames: 1; back: false)),
135 (name: 'KEYB'; w: 16; h: 16; anim: (loop: true; delay: 1; frames: 1; back: false)),
136 (name: 'KASTET'; w: 64; h: 32; anim: (loop: true; delay: 1; frames: 1; back: false)),
137 (name: 'PISTOL'; w: 64; h: 16; anim: (loop: true; delay: 1; frames: 1; back: false)),
138 (name: 'BOTTLE'; w: 16; h: 32; anim: (loop: true; delay: 20; frames: 4; back: true)),
139 (name: 'HELMET'; w: 16; h: 16; anim: (loop: true; delay: 20; frames: 4; back: true)),
140 (name: 'JETPACK'; w: 32; h: 32; anim: (loop: true; delay: 15; frames: 3; back: true)),
141 (name: 'INVIS'; w: 32; h: 32; anim: (loop: true; delay: 20; frames: 4; back: true)),
142 (name: 'FLAMETHROWER'; w: 64; h: 32; anim: (loop: true; delay: 1; frames: 1; back: false)),
143 (name: 'FUELCAN'; w: 16; h: 32; anim: (loop: true; delay: 1; frames: 1; back: false))
144 );
146 {$IFDEF ENABLE_GFX}
147 GFXAnim: array [0..R_GFX_LAST] of record
148 name: AnsiString;
149 w, h: Integer;
150 anim: TAnimInfo;
151 rdelay: Integer;
152 alpha: Integer;
153 end = (
154 (name: ''; w: 0; h: 0; anim: (loop: false; delay: 0; frames: 0; back: false); rdelay: 0; alpha: 0),
155 (name: 'TELEPORT'; w: 64; h: 64; anim: (loop: false; delay: 6; frames: 10; back: false); rdelay: 0; alpha: 0),
156 (name: 'FLAME'; w: 32; h: 32; anim: (loop: false; delay: 3; frames: 11; back: false); rdelay: 0; alpha: 0),
157 (name: 'EROCKET'; w: 128; h: 128; anim: (loop: false; delay: 6; frames: 6; back: false); rdelay: 0; alpha: 0),
158 (name: 'EBFG'; w: 128; h: 128; anim: (loop: false; delay: 6; frames: 6; back: false); rdelay: 0; alpha: 0),
159 (name: 'BFGHIT'; w: 64; h: 64; anim: (loop: false; delay: 4; frames: 4; back: false); rdelay: 0; alpha: 0),
160 (name: 'FIRE'; w: 64; h: 128; anim: (loop: false; delay: 4; frames: 8; back: false); rdelay: 2; alpha: 0),
161 (name: 'ITEMRESPAWN'; w: 32; h: 32; anim: (loop: false; delay: 4; frames: 5; back: true); rdelay: 0; alpha: 0),
162 (name: 'SMOKE'; w: 32; h: 32; anim: (loop: false; delay: 3; frames: 10; back: false); rdelay: 0; alpha: 0),
163 (name: 'ESKELFIRE'; w: 64; h: 64; anim: (loop: false; delay: 8; frames: 3; back: false); rdelay: 0; alpha: 0),
164 (name: 'EPLASMA'; w: 32; h: 32; anim: (loop: false; delay: 3; frames: 4; back: true); rdelay: 0; alpha: 0),
165 (name: 'EBSPFIRE'; w: 32; h: 32; anim: (loop: false; delay: 3; frames: 5; back: false); rdelay: 0; alpha: 0),
166 (name: 'EIMPFIRE'; w: 64; h: 64; anim: (loop: false; delay: 6; frames: 3; back: false); rdelay: 0; alpha: 0),
167 (name: 'ECACOFIRE'; w: 64; h: 64; anim: (loop: false; delay: 6; frames: 3; back: false); rdelay: 0; alpha: 0),
168 (name: 'EBARONFIRE'; w: 64; h: 64; anim: (loop: false; delay: 6; frames: 3; back: false); rdelay: 0; alpha: 0),
169 (name: 'TELEPORT'; w: 64; h: 64; anim: (loop: false; delay: 3; frames: 10; back: false); rdelay: 0; alpha: 0), // fast
170 (name: 'SMOKE'; w: 32; h: 32; anim: (loop: false; delay: 3; frames: 10; back: false); rdelay: 0; alpha: 150), // transparent
171 (name: 'FLAME'; w: 32; h: 32; anim: (loop: false; delay: 3; frames: 11; back: false); rdelay: 2; alpha: 0) // random
172 );
173 {$ENDIF}
175 ShotAnim: array [0..WEAPON_LAST] of record
176 name: AnsiString;
177 w, h: Integer;
178 anim: TAnimInfo;
179 end = (
180 (name: ''; w: 0; h: 0; anim: (loop: true; delay: 0; frames: 0; back: false)), // 0 KASTET
181 (name: ''; w: 0; h: 0; anim: (loop: true; delay: 0; frames: 0; back: false)), // 1 SAW
182 (name: ''; w: 0; h: 0; anim: (loop: true; delay: 0; frames: 0; back: false)), // 2 PISTOL
183 (name: ''; w: 0; h: 0; anim: (loop: true; delay: 0; frames: 0; back: false)), // 3 SHOTGUN1
184 (name: ''; w: 0; h: 0; anim: (loop: true; delay: 0; frames: 0; back: false)), // 4 SHOTGUN2
185 (name: ''; w: 0; h: 0; anim: (loop: true; delay: 0; frames: 0; back: false)), // 5 CHAINGUN
186 (name: 'BROCKET'; w: 64; h: 32; anim: (loop: true; delay: 1; frames: 1; back: false)), // 6 ROCKETLAUNCHER
187 (name: 'BPLASMA'; w: 16; h: 16; anim: (loop: true; delay: 5; frames: 2; back: false)), // 7 PLASMA
188 (name: 'BBFG'; w: 64; h: 64; anim: (loop: true; delay: 6; frames: 2; back: false)), // 8 BFG
189 (name: ''; w: 0; h: 0; anim: (loop: true; delay: 0; frames: 0; back: false)), // 9 SUPERPULEMET
190 (name: 'FLAME'; w: 32; h: 32; anim: (loop: true; delay: 6; frames: 0{11}; back: false)), // 10 FLAMETHROWER
191 (name: ''; w: 0; h: 0; anim: (loop: true; delay: 0; frames: 0; back: false)), // 11
192 (name: ''; w: 0; h: 0; anim: (loop: true; delay: 0; frames: 0; back: false)), // 12
193 (name: ''; w: 0; h: 0; anim: (loop: true; delay: 0; frames: 0; back: false)), // 13
194 (name: ''; w: 0; h: 0; anim: (loop: true; delay: 0; frames: 0; back: false)), // 14
195 (name: ''; w: 0; h: 0; anim: (loop: true; delay: 0; frames: 0; back: false)), // 15
196 (name: ''; w: 0; h: 0; anim: (loop: true; delay: 0; frames: 0; back: false)), // 16
197 (name: ''; w: 0; h: 0; anim: (loop: true; delay: 0; frames: 0; back: false)), // 17
198 (name: ''; w: 0; h: 0; anim: (loop: true; delay: 0; frames: 0; back: false)), // 18
199 (name: ''; w: 0; h: 0; anim: (loop: true; delay: 0; frames: 0; back: false)), // 19
200 (name: ''; w: 0; h: 0; anim: (loop: true; delay: 0; frames: 0; back: false)), // 20 ZOMPY_PISTOL
201 (name: 'BIMPFIRE'; w: 16; h: 16; anim: (loop: true; delay: 4; frames: 2; back: false)), // 21 IMP_FIRE
202 (name: 'BBSPFIRE'; w: 16; h: 16; anim: (loop: true; delay: 4; frames: 2; back: false)), // 22 BSP_FIRE
203 (name: 'BCACOFIRE'; w: 16; h: 16; anim: (loop: true; delay: 4; frames: 2; back: false)), // 23 CACO_FIRE
204 (name: 'BBARONFIRE'; w: 64; h: 16; anim: (loop: true; delay: 4; frames: 2; back: false)), // 24 BARON_FIRE
205 (name: 'BMANCUBFIRE'; w: 64; h: 32; anim: (loop: true; delay: 4; frames: 2; back: false)), // 25 MANCUB_FIRE
206 (name: 'BSKELFIRE'; w: 64; h: 64; anim: (loop: true; delay: 5; frames: 2; back: false)) // 26 SKEL_FIRE
207 );
209 {$IFDEF ENABLE_SHELLS}
210 ShellAnim: array [0..SHELL_LAST] of record
211 name: AnsiString;
212 dx, dy: Integer;
213 end = (
214 (name: 'EBULLET'; dx: 2; dy: 1), // 0 SHELL_BULLET
215 (name: 'ESHELL'; dx: 4; dy: 2), // 1 SHELL_SHELL
216 (name: 'ESHELL'; dx: 4; dy: 2) // 2 SHELL_DBLSHELL
217 );
218 {$ENDIF}
220 PunchAnim: TAnimInfo = (loop: false; delay: 1; frames: 4; back: false);
221 FlagAnim: TAnimInfo = (loop: true; delay: 8; frames: 5; back: false);
222 VileFireAnim: TAnimInfo = (loop: true; delay: 2; frames: 8; back: false);
224 type
225 TBinHeapPanelDrawCmp = class
226 public
227 class function less (const a, b: TPanel): Boolean; inline;
228 end;
230 TBinHeapPanelDraw = specialize TBinaryHeapBase<TPanel, TBinHeapPanelDrawCmp>;
232 TMonsterAnims = array [0..ANIM_LAST, TDirection] of TGLMultiTexture;
234 var
235 UseAccel: Boolean;
236 DebugFrames: Boolean;
237 DebugHealth: Boolean;
238 DebugCameraScale: Single;
239 FillOutsizeArea: Boolean;
240 SkyTexture: TGLTexture;
241 RenTextures: array of record
242 spec: LongInt;
243 tex: TGLMultiTexture;
244 anim: TAnimInfo;
245 end;
246 Items: array [0..ITEM_LAST] of record
247 tex: TGLMultiTexture;
248 frame: Integer;
249 end;
250 MonTextures: array [0..MONSTER_MAN] of TMonsterAnims;
251 WeapTextures: array [0..WP_LAST, 0..W_POS_LAST, 0..W_ACT_LAST] of TGLTexture;
252 ShotTextures: array [0..WEAPON_LAST] of TGLMultiTexture;
253 FlagTextures: array [0..FLAG_LAST] of TGLMultiTexture;
254 PunchTextures: array [Boolean, 0..2] of TGLMultiTexture; // [berserk, center/up/down]
255 VileFire: TGLMultiTexture;
256 InvulPenta: TGLTexture;
257 IndicatorTexture: TGLTexture;
258 TalkTexture: TGLTexture;
259 Models: array of record
260 anim: array [TDirection, 0..A_LAST] of record
261 base, mask: TGLMultiTexture;
262 end;
263 {$IFDEF ENABLE_GIBS}
264 gibs: record
265 base, mask: TGLTextureArray;
266 rect: TRectArray;
267 end;
268 {$ENDIF}
269 end;
271 {$IFDEF ENABLE_SHELLS}
272 ShellTextures: array [0..SHELL_LAST] of TGLTexture;
273 {$ENDIF}
274 {$IFDEF ENABLE_GFX}
275 GFXTextures: array [0..R_GFX_LAST] of TGLMultiTexture;
276 gfxlist: array of record
277 typ: Byte;
278 x, y: Integer;
279 oldX, oldY: Integer;
280 anim: TAnimInfo;
281 time: LongWord;
282 frame: LongInt;
283 end = nil;
284 {$ENDIF}
286 FlagFrame: LongInt;
287 plist: TBinHeapPanelDraw = nil;
289 class function TBinHeapPanelDrawCmp.less (const a, b: TPanel): Boolean; inline;
290 begin
291 if a.tag < b.tag then result := true
292 else if a.tag > b.tag then result := false
293 else result := a.arrIdx < b.arrIdx;
294 end;
296 procedure r_Map_Initialize;
297 begin
298 FlagFrame := 0;
299 plist := TBinHeapPanelDraw.Create();
300 end;
302 procedure r_Map_Finalize;
303 begin
304 r_Common_FreeAndNil(plist);
305 FlagFrame := 0;
306 end;
308 procedure r_Map_FreeModel (i: Integer);
309 var a: Integer; d: TDirection;
310 begin
311 for d := TDirection.D_LEFT to TDirection.D_RIGHT do
312 begin
313 for a := A_STAND to A_LAST do
314 begin
315 r_Common_FreeAndNil(Models[i].anim[d, a].base);
316 r_Common_FreeAndNil(Models[i].anim[d, a].mask);
317 end;
318 end;
319 {$IFDEF ENABLE_GIBS}
320 if Models[i].gibs.base <> nil then
321 for a := 0 to High(Models[i].gibs.base) do
322 r_Common_FreeAndNil(Models[i].gibs.base[a]);
323 if Models[i].gibs.mask <> nil then
324 for a := 0 to High(Models[i].gibs.mask) do
325 r_Common_FreeAndNil(Models[i].gibs.mask[a]);
326 Models[i].gibs.base := nil;
327 Models[i].gibs.mask := nil;
328 Models[i].gibs.rect := nil;
329 {$ENDIF}
330 end;
332 procedure r_Map_LoadModel (i: Integer);
333 var prefix: AnsiString; a: Integer; d: TDirection; m: ^TPlayerModelInfo;
334 begin
335 ASSERT(i < Length(Models));
336 ASSERT(i < Length(PlayerModelsArray));
337 r_Map_FreeModel(i);
338 m := @PlayerModelsArray[i];
339 prefix := m.FileName + ':TEXTURES/';
340 for d := TDirection.D_LEFT to TDirection.D_RIGHT do
341 begin
342 for a := A_STAND to A_LAST do
343 begin
344 Models[i].anim[d, a].base := nil;
345 Models[i].anim[d, a].mask := nil;
346 if m.anim[d, a].resource <> '' then
347 Models[i].anim[d, a].base := r_Textures_LoadMultiFromFileAndInfo(prefix + m.anim[d, a].resource, 64, 64, m.anim[d, a].frames, [TGLHints.txNoRepeat], true);
348 if m.anim[d, a].mask <> '' then
349 Models[i].anim[d, a].mask := r_Textures_LoadMultiFromFileAndInfo(prefix + m.anim[d, a].mask, 64, 64, m.anim[d, a].frames, [TGLHints.txNoRepeat], true);
350 end
351 end;
352 {$IFDEF ENABLE_GIBS}
353 Models[i].gibs.base := nil;
354 Models[i].gibs.mask := nil;
355 Models[i].gibs.rect := nil;
356 if m.GibsCount > 0 then
357 begin
358 SetLength(Models[i].gibs.base, m.GibsCount);
359 SetLength(Models[i].gibs.mask, m.GibsCount);
360 SetLength(Models[i].gibs.rect, m.GibsCount);
361 for a := 0 to m.GibsCount - 1 do
362 Models[i].gibs.rect[a] := DefaultGibSize;
363 if r_Textures_LoadStreamFromFile(prefix + m.GibsResource, 32, 32, m.GibsCount, m.GibsCount, Models[i].gibs.base, Models[i].gibs.rect, [TGLHints.txNoRepeat]) then
364 begin
365 if r_Textures_LoadStreamFromFile(prefix + m.GibsMask, 32, 32, m.GibsCount, m.GibsCount, Models[i].gibs.mask, nil, [TGLHints.txNoRepeat]) then
366 begin
367 // ok
368 end;
369 end;
370 end;
371 {$ENDIF}
372 end;
374 procedure r_Map_LoadMonsterAnim (m, a: Integer; d: TDirection);
375 const dir: array [TDirection] of AnsiString = ('_L', '');
376 var w, h, count: Integer;
377 begin
378 count := MONSTER_ANIMTABLE[m].AnimCount[a];
379 if count > 0 then
380 begin
381 w := MTABLE[m].w;
382 h := MTABLE[m].h;
383 if (m = MONSTER_SOUL) and (a = ANIM_DIE) then
384 begin
385 // special case
386 w := 128;
387 h := 128;
388 end;
389 MonTextures[m, a, d] := r_Textures_LoadMultiFromFileAndInfo(
390 GameWAD + ':MTEXTURES/' + MONSTERTABLE[m].name + '_' + ANIMTABLE[a].name + dir[d],
391 w,
392 h,
393 count,
394 [TGLHints.txNoRepeat],
395 False
396 );
397 end
398 else
399 MonTextures[m, a, d] := nil;
400 end;
402 procedure r_Map_Load;
403 const
404 WeapName: array [0..WP_LAST] of AnsiString = ('', 'CSAW', 'HGUN', 'SG', 'SSG', 'MGUN', 'RKT', 'PLZ', 'BFG', 'SPL', 'FLM');
405 WeapPos: array [0..W_POS_LAST] of AnsiString = ('', '_UP', '_DN');
406 WeapAct: array [0..W_ACT_LAST] of AnsiString = ('', '_FIRE');
407 PunchName: array [Boolean] of AnsiString = ('PUNCH', 'PUNCHB');
408 var
409 i, j, k: Integer; d: TDirection; b: Boolean;
410 begin
411 // --------- items --------- //
412 r_Common_SetLoading(_lc[I_LOAD_ITEMS_DATA], ITEM_LAST + 1);
413 for i := 0 to ITEM_LAST do
414 begin
415 Items[i].tex := r_Common_LoadTextureMultiFromFileAndInfo(
416 GameWAD + ':TEXTURES/' + ItemAnim[i].name,
417 ItemAnim[i].w,
418 ItemAnim[i].h,
419 ItemAnim[i].anim.frames,
420 [TGLHints.txNoRepeat],
421 false
422 );
423 Items[i].frame := 0;
424 end;
425 // --------- monsters --------- //
426 r_Common_SetLoading(_lc[I_LOAD_MONSTER_TEXTURES], MONSTER_MAN - MONSTER_DEMON + 1);
427 for i := MONSTER_DEMON to MONSTER_MAN do
428 begin
429 for j := 0 to ANIM_LAST do
430 for d := TDirection.D_LEFT to TDirection.D_RIGHT do
431 r_Map_LoadMonsterAnim(i, j, d);
432 r_Common_StepLoading(1);
433 end;
434 VileFire := r_Textures_LoadMultiFromFileAndInfo(GameWAD + ':TEXTURES/FIRE', 64, 128, VileFireAnim.frames, [TGLHints.txNoRepeat]);
435 // --------- player models --------- //
436 if PlayerModelsArray <> nil then
437 begin
438 r_Common_SetLoading(_lc[I_LOAD_MODELS], Length(PlayerModelsArray));
439 SetLength(Models, Length(PlayerModelsArray));
440 for i := 0 to High(PlayerModelsArray) do
441 begin
442 r_Map_LoadModel(i);
443 r_Common_StepLoading(1);
444 end;
445 end;
446 // --------- player weapons --------- //
447 r_Common_SetLoading(_lc[I_LOAD_WEAPONS_DATA], WP_LAST);
448 for i := 1 to WP_LAST do
449 begin
450 for j := 0 to W_POS_LAST do
451 for k := 0 to W_ACT_LAST do
452 WeapTextures[i, j, k] := r_Textures_LoadFromFile(GameWAD + ':WEAPONS\' + WeapName[i] + WeapPos[j] + WeapAct[k], [TGLHints.txNoRepeat]);
453 r_Common_StepLoading(1);
454 end;
455 // --------- gfx animations --------- //
456 {$IFDEF ENABLE_GFX}
457 r_Common_SetLoading('GFX Effects', R_GFX_LAST);
458 for i := 1 to R_GFX_LAST do
459 begin
460 if GFXAnim[i].anim.frames > 0 then
461 GFXTextures[i] := r_Common_LoadTextureMultiFromFileAndInfo(GameWad + ':TEXTURES/' + GFXAnim[i].name, GFXAnim[i].w, GFXAnim[i].h, GFXAnim[i].anim.frames, [TGLHints.txNoRepeat]);
462 end;
463 {$ENDIF}
464 // --------- shots --------- //
465 r_Common_SetLoading('Weapon splahses', WEAPON_LAST + 1);
466 for i := 0 to WEAPON_LAST do
467 begin
468 if ShotAnim[i].anim.frames > 0 then
469 ShotTextures[i] := r_Common_LoadTextureMultiFromFileAndInfo(GameWad + ':TEXTURES/' + ShotAnim[i].name, ShotAnim[i].w, ShotAnim[i].h, ShotAnim[i].anim.frames, [TGLHints.txNoRepeat]);
470 end;
471 // --------- flags --------- //
472 r_Common_SetLoading('Flags', 2);
473 FlagTextures[FLAG_NONE] := nil;
474 FlagTextures[FLAG_RED] := r_Common_LoadTextureMultiFromFileAndInfo(GameWad + ':TEXTURES/FLAGRED', 64, 64, 5, [TGLHints.txNoRepeat]);
475 FlagTextures[FLAG_BLUE] := r_Common_LoadTextureMultiFromFileAndInfo(GameWad + ':TEXTURES/FLAGBLUE', 64, 64, 5, [TGLHints.txNoRepeat]);
476 // FlagTextures[FLAG_DOM] := r_Common_LoadTextureMultiFromFileAndInfo(GameWad + ':TEXTURES/FLAGDOM', 64, 64, 8, [TGLHints.txNoRepeat]);
477 // --------- shells --------- //
478 {$IFDEF ENABLE_SHELLS}
479 r_Common_SetLoading('Shells', SHELL_LAST + 1);
480 for i := 0 to SHELL_LAST do
481 ShellTextures[i] := r_Common_LoadTextureFromFile(GameWad + ':TEXTURES/' + ShellAnim[i].name, [TGLHints.txNoRepeat]);
482 {$ENDIF}
483 // --------- other --------- //
484 r_Common_SetLoading('Effects', 3 * 2 + 3);
485 for b := false to true do
486 begin
487 for i := 0 to 2 do
488 PunchTextures[b, i] := r_Common_LoadTextureMultiFromFileAndInfo(GameWad + ':WEAPONS/' + PunchName[b] + WeapPos[i], 64, 64, PunchAnim.frames, [TGLHints.txNoRepeat]);
489 end;
490 InvulPenta := r_Common_LoadTextureFromFile(GameWad + ':TEXTURES/PENTA', [TGLHints.txNoRepeat]);
491 IndicatorTexture := r_Common_LoadTextureFromFile(GameWad + ':TEXTURES/PLRIND', [TGLHints.txNoRepeat]);
492 TalkTexture := r_Common_LoadTextureFromFile(GameWad + ':TEXTURES/TALKBUBBLE', [TGLHints.txNoRepeat]);
493 end;
495 procedure r_Map_Free;
496 var i, j, k: Integer; d: TDirection; b: Boolean;
497 begin
498 r_Common_FreeAndNil(TalkTexture);
499 r_Common_FreeAndNil(IndicatorTexture);
500 r_Common_FreeAndNil(InvulPenta);
501 for b := false to true do
502 for i := 0 to 2 do
503 r_Common_FreeAndNil(PunchTextures[b, i]);
504 {$IFDEF ENABLE_SHELLS}
505 for i := 0 to SHELL_LAST do
506 r_Common_FreeAndNil(ShellTextures[i]);
507 {$ENDIF}
508 for i := 0 to FLAG_LAST do
509 r_Common_FreeAndNil(FlagTextures[i]);
510 for i := 0 to WEAPON_LAST do
511 r_Common_FreeAndNil(ShotTextures[i]);
512 {$IFDEF ENABLE_GFX}
513 SetLength(gfxlist, 0);
514 for i := 0 to R_GFX_LAST do
515 r_Common_FreeAndNil(GFXTextures[i]);
516 {$ENDIF}
517 for i := 1 to WP_LAST do
518 for j := 0 to W_POS_LAST do
519 for k := 0 to W_ACT_LAST do
520 r_Common_FreeAndNil(WeapTextures[i, j, k]);
521 if Models <> nil then
522 for i := 0 to High(Models) do
523 r_Map_FreeModel(i);
524 for i := MONSTER_DEMON to MONSTER_MAN do
525 for j := 0 to ANIM_LAST do
526 for d := TDirection.D_LEFT to TDirection.D_RIGHT do
527 r_Common_FreeAndNil(MonTextures[i, j, d]);
528 for i := 0 to ITEM_LAST do
529 r_Common_FreeAndNil(Items[i].tex);
530 end;
532 procedure r_Map_FreeTextures;
533 var i: Integer;
534 begin
535 plist.Clear;
536 r_Common_FreeAndNil(SkyTexture);
537 if RenTextures <> nil then
538 for i := 0 to High(RenTextures) do
539 r_Common_FreeAndNil(RenTextures[i].tex);
540 SetLength(RenTextures, 0);
541 end;
543 procedure r_Map_LoadTextures;
544 const DefaultAnimInfo: TAnimInfo = (loop: true; delay: 1; frames: 1; back: false);
545 var i, n: Integer; txt: TAnimTextInfo;
546 begin
547 r_Map_FreeTextures;
548 if Textures <> nil then
549 begin
550 n := Length(Textures);
551 SetLength(RenTextures, n);
552 r_Common_SetLoading(_lc[I_LOAD_TEXTURES], n);
553 for i := 0 to n - 1 do
554 begin
555 RenTextures[i].tex := nil;
556 RenTextures[i].anim := DefaultAnimInfo;
557 case Textures[i].TextureName of
558 TEXTURE_NAME_WATER: RenTextures[i].spec := TEXTURE_SPECIAL_WATER;
559 TEXTURE_NAME_ACID1: RenTextures[i].spec := TEXTURE_SPECIAL_ACID1;
560 TEXTURE_NAME_ACID2: RenTextures[i].spec := TEXTURE_SPECIAL_ACID2;
561 else
562 RenTextures[i].spec := 0;
563 RenTextures[i].tex := r_Textures_LoadMultiTextFromFile(Textures[i].FullName, txt, []);
564 if RenTextures[i].tex <> nil then
565 begin
566 RenTextures[i].anim := txt.anim;
567 r_Common_StepLoading(1);
568 end
569 else
570 begin
571 e_LogWritefln('r_Map_LoadTextures: failed to load texture: %s', [Textures[i].FullName]);
572 end;
573 end;
574 ASSERT(RenTextures[i].anim.frames > 0);
575 ASSERT(RenTextures[i].anim.delay > 0);
576 end;
577 end;
578 if gMapInfo.SkyFullName <> '' then
579 begin
580 r_Common_SetLoading(_lc[I_LOAD_SKY], 1);
581 SkyTexture := r_Common_LoadTextureFromFile(gMapInfo.SkyFullName, [TGLHints.txNoRepeat]);
582 end;
583 plist.Clear;
584 end;
586 procedure r_Map_DrawPanel (p: TPanel);
587 var Texture, spec: Integer; t: TGLMultiTexture; count, frame: LongInt; a: TAnimInfo;
588 begin
589 ASSERT(p <> nil);
591 spec := -1;
592 if p.FCurTexture >= 0 then
593 begin
594 ASSERT(p.FCurTexture <= High(p.TextureIDs));
595 Texture := p.TextureIDs[p.FCurTexture].Texture;
596 ASSERT(Texture >= -1);
597 if Texture >= 0 then
598 begin
599 ASSERT(Texture <= High(RenTextures));
600 spec := RenTextures[Texture].spec;
601 t := RenTextures[Texture].tex;
602 if t <> nil then
603 begin
604 count := 0; frame := 0;
605 if p.AnimTime <= gTime then
606 begin
607 a := RenTextures[Texture].anim;
608 a.loop := p.AnimLoop;
609 g_Anim_GetFrameByTime(a, (gTime - p.AnimTime) DIV GAME_TICK, count, frame);
610 end;
611 r_Draw_TextureRepeat(t.GetTexture(frame), p.x, p.y, p.width, p.height, false, 255, 255, 255, 255 - p.alpha, p.blending);
612 end
613 else if RenTextures[Texture].spec = 0 then
614 begin
615 r_Draw_TextureRepeat(nil, p.x, p.y, p.width, p.height, false, 255, 255, 255, 255, false);
616 end;
617 end;
618 end;
620 // legacy support:
621 // older maps may omit textures for fluid panels
622 // in such case default filters must be used automatically
623 if spec = -1 then
624 begin
625 case p.PanelType of
626 PANEL_WATER: spec := TEXTURE_SPECIAL_WATER;
627 PANEL_ACID1: spec := TEXTURE_SPECIAL_ACID1;
628 PANEL_ACID2: spec := TEXTURE_SPECIAL_ACID2;
629 end;
630 end;
632 case spec of
633 TEXTURE_SPECIAL_WATER: r_Draw_Filter(p.x, p.y, p.x + p.width, p.y + p.height, 0, 0, 255, 255);
634 TEXTURE_SPECIAL_ACID1: r_Draw_Filter(p.x, p.y, p.x + p.width, p.y + p.height, 0, 230, 0, 255);
635 TEXTURE_SPECIAL_ACID2: r_Draw_Filter(p.x, p.y, p.x + p.width, p.y + p.height, 230, 0, 0, 255);
636 end;
637 end;
639 procedure r_Map_DrawPanels (constref panels: TPanelArray; drawDoors: Boolean = false);
640 var i: Integer; p: TPanel;
641 begin
642 if panels <> nil then
643 begin
644 for i := 0 to High(panels) do
645 begin
646 p := panels[i];
647 if p.enabled and not (drawDoors xor p.door) then
648 r_Map_DrawPanel(p);
649 end;
650 end;
651 end;
653 procedure r_Map_DrawPanelType (panelTyp: DWORD);
654 var tagMask: Integer; p: TPanel;
655 begin
656 if UseAccel then
657 begin
658 tagMask := PanelTypeToTag(panelTyp);
659 while plist.count > 0 do
660 begin
661 p := TPanel(plist.Front());
662 if (p.tag and tagMask) = 0 then
663 break;
664 r_Map_DrawPanel(p);
665 plist.PopFront;
666 end;
667 end
668 else
669 begin
670 case panelTyp of
671 PANEL_BACK: if g_rlayer_back then r_Map_DrawPanels(gRenderBackgrounds);
672 PANEL_STEP: if g_rlayer_step then r_Map_DrawPanels(gSteps);
673 PANEL_WALL: if g_rlayer_wall then r_Map_DrawPanels(gWalls);
674 PANEL_CLOSEDOOR: if g_rlayer_door then r_Map_DrawPanels(gWalls, True);
675 PANEL_ACID1: if g_rlayer_acid1 then r_Map_DrawPanels(gAcid1);
676 PANEL_ACID2: if g_rlayer_acid2 then r_Map_DrawPanels(gAcid2);
677 PANEL_WATER: if g_rlayer_water then r_Map_DrawPanels(gWater);
678 PANEL_FORE: if g_rlayer_fore then r_Map_DrawPanels(gRenderForegrounds);
679 end;
680 end;
681 end;
683 procedure r_Map_DrawItems (x, y, w, h: Integer; drop: Boolean);
684 var i, xx, yy: Integer; it: PItem; t: TGLMultiTexture; tex: TGLTexture;
685 begin
686 if ggItems <> nil then
687 begin
688 for i := 0 to High(ggItems) do
689 begin
690 it := @ggItems[i];
691 if it.used and it.alive and (it.dropped = drop) and (it.ItemType > ITEM_NONE) and (it.ItemType <= ITEM_LAST) then
692 begin
693 t := Items[it.ItemType].tex;
694 if g_Collide(it.obj.x, it.obj.y, t.width, t.height, x, y, w, h) then
695 begin
696 r_Common_GetObjectPos(it.obj, xx, yy);
697 tex := t.GetTexture(Items[it.ItemType].frame);
698 r_Draw_TextureRepeat(tex, xx, yy, tex.width, tex.height, false, 255, 255, 255, 255, false);
699 if DebugFrames then
700 begin
701 r_Draw_Rect(
702 xx + it.obj.rect.x, // it.obj.x + it.obj.rect.x,
703 yy + it.obj.rect.y, // it.obj.y + it.obj.rect.y,
704 xx + it.obj.rect.x + it.obj.rect.width, // it.obj.x + it.obj.rect.x + it.obj.rect.width,
705 yy + it.obj.rect.y + it.obj.rect.height, // it.obj.y + it.obj.rect.y + it.obj.rect.height,
706 0, 255, 0, 255
707 );
708 end;
709 end;
710 end;
711 end;
712 end;
713 end;
715 function r_Map_GetMonsterTexture (m, a: Integer; d: TDirection; out t: TGLMultiTexture; out dx, dy: Integer; out flip: Boolean): Boolean;
716 // var c: Integer;
717 begin
718 t := nil; dx := 0; dy := 0; flip := false;
719 result := MonTextures[m, a, d] <> nil;
720 if result = false then
721 begin
722 flip := true;
723 if d = TDirection.D_RIGHT then d := TDirection.D_LEFT else d := TDirection.D_RIGHT;
724 result := MonTextures[m, a, d] <> nil;
725 end;
726 if result = true then
727 begin
728 t := MonTextures[m, a, d];
729 if d = TDirection.D_LEFT then
730 begin
731 dx := MONSTER_ANIMTABLE[m].AnimDeltaLeft[a].X;
732 dy := MONSTER_ANIMTABLE[m].AnimDeltaLeft[a].Y;
733 end
734 else
735 begin
736 dx := MONSTER_ANIMTABLE[m].AnimDeltaRight[a].X;
737 dy := MONSTER_ANIMTABLE[m].AnimDeltaRight[a].Y;
738 end;
739 if flip then
740 begin
741 // c := (MONSTERTABLE[MonsterType].Rect.X - dx) + MONSTERTABLE[MonsterType].Rect.Width;
742 // dx := MTABLE[m].width - c - MONSTERTABLE[MonsterType].Rect.X;
743 dx := -dx;
744 end;
745 end;
746 end;
748 procedure r_Map_DrawMonsterAttack (constref mon: TMonster);
749 var o: TObj; count, frame, xx, yy: LongInt; tex: TGLTexture;
750 begin
751 if VileFire <> nil then
752 begin
753 if (mon.MonsterType = MONSTER_VILE) and (mon.MonsterState = MONSTATE_SHOOT) and (mon.VileFireTime <= gTime) then
754 begin
755 if r_Common_GetPosByUID(mon.MonsterTargetUID, o, xx, yy) then
756 begin
757 g_Anim_GetFrameByTime(VileFireAnim, (gTime - mon.VileFireTime) DIV GAME_TICK, count, frame);
758 tex := VileFire.GetTexture(frame);
759 r_Draw_TextureRepeat(tex, xx + o.rect.x + (o.rect.width div 2) - VILEFIRE_DX, yy + o.rect.y + o.rect.height - VILEFIRE_DY, tex.width, tex.height, False, 255, 255, 255, 255, false);
760 end;
761 end;
762 end;
763 end;
765 procedure r_Map_DrawMonster (constref mon: TMonster);
766 var m, a, xx, yy, dx, dy: Integer; d: TDirection; flip: Boolean; t: TGLMultiTexture;
767 begin
768 m := mon.MonsterType;
769 a := mon.MonsterAnim;
770 d := mon.GameDirection;
772 r_Common_GetObjectPos(mon.obj, xx, yy);
773 if r_Map_GetMonsterTexture(m, a, d, t, dx, dy, flip) then
774 begin
775 r_Draw_MultiTextureRepeat(t, mon.DirAnim[a, d], false, xx + dx, yy + dy, t.width, t.height, flip, 255, 255, 255, 255, false);
776 end;
777 if DebugFrames then
778 begin
779 r_Draw_Rect(
780 xx + mon.obj.rect.x, // mon.obj.x + mon.obj.rect.x,
781 yy + mon.obj.rect.y, // mon.obj.y + mon.obj.rect.y,
782 xx + mon.obj.rect.x + mon.obj.rect.width, // mon.obj.x + mon.obj.rect.x + mon.obj.rect.width,
783 yy + mon.obj.rect.y + mon.obj.rect.height, // mon.obj.y + mon.obj.rect.y + mon.obj.rect.height,
784 0, 255, 0, 255
785 );
786 end;
787 if DebugHealth and mon.alive then
788 begin
789 r_Common_DrawText(
790 IntToStr(mon.MonsterHealth),
791 xx + mon.obj.rect.x + mon.obj.rect.width div 2,
792 yy + mon.obj.rect.y,
793 255, 255, 255, 255,
794 stdfont,
795 TBasePoint.BP_DOWN
796 );
797 end;
798 end;
800 procedure r_Map_DrawMonsters (x, y, w, h: Integer);
801 var i: Integer; m: TMonster;
802 begin
803 if gMonsters <> nil then
804 begin
805 for i := 0 to High(gMonsters) do
806 begin
807 m := gMonsters[i];
808 if m <> nil then
809 begin
810 r_Map_DrawMonsterAttack(m);
811 // TODO select from grid
812 if g_Collide(m.obj.x + m.obj.rect.x, m.obj.y + m.obj.rect.y, m.obj.rect.width, m.obj.rect.height, x, y, w, h) then
813 r_Map_DrawMonster(m);
814 end;
815 end;
816 end;
817 end;
819 function r_Map_GetPlayerModelTex (i: Integer; var a: Integer; var d: TDirection; out flip: Boolean): Boolean;
820 begin
821 flip := false;
822 result := Models[i].anim[d, a].base <> nil;
823 if result = false then
824 begin
825 flip := true;
826 if d = TDirection.D_LEFT then d := TDirection.D_RIGHT else d := TDirection.D_LEFT;
827 result := Models[i].anim[d, a].base <> nil;
828 end;
829 end;
831 procedure r_Map_DrawPlayerModel (pm: TPlayerModel; x, y: Integer; alpha: Byte);
832 var a, pos, act, xx, yy, angle: Integer; d: TDirection; flip, back: Boolean; t: TGLMultiTexture; tex: TGLTexture; c: TRGB;
833 begin
834 a := pm.CurrentAnimation;
835 d := pm.Direction;
837 (* draw flag*)
838 t := FlagTextures[pm.Flag];
839 if (t <> nil) and not (a in [A_DIE1, A_DIE2]) then
840 begin
841 flip := d = TDirection.D_RIGHT;
842 angle := PlayerModelsArray[pm.id].FlagAngle;
843 xx := PlayerModelsArray[pm.id].FlagPoint.X;
844 yy := PlayerModelsArray[pm.id].FlagPoint.Y;
845 tex := t.GetTexture(FlagFrame);
846 r_Draw_TextureRepeatRotate(
847 tex,
848 x + IfThen(flip, 2 * FLAG_BASEPOINT.X - xx + 1, xx - 1) - FLAG_BASEPOINT.X,
849 y + yy - FLAG_BASEPOINT.Y + 1,
850 tex.width,
851 tex.height,
852 flip,
853 255, 255, 255, 255, false,
854 IfThen(flip, 64 - FLAG_BASEPOINT.X, FLAG_BASEPOINT.X),
855 FLAG_BASEPOINT.Y,
856 IfThen(flip, angle, -angle)
857 );
858 end;
860 (* draw weapon *)
861 if PlayerModelsArray[pm.id].HaveWeapon and not (a in [A_DIE1, A_DIE2, A_PAIN]) then
862 begin
863 case a of
864 A_SEEUP, A_ATTACKUP: pos := W_POS_UP;
865 A_SEEDOWN, A_ATTACKDOWN: pos := W_POS_DOWN;
866 else pos := W_POS_NORMAL;
867 end;
868 if (a in [A_ATTACK, A_ATTACKUP, A_ATTACKDOWN]) or pm.GetFire() then
869 act := W_ACT_FIRE
870 else
871 act := W_ACT_NORMAL;
872 tex := WeapTextures[pm.CurrentWeapon, pos, act];
873 if tex <> nil then
874 begin
875 xx := PlayerModelsArray[pm.id].WeaponPoints[pm.CurrentWeapon, a, d, pm.AnimState.CurrentFrame].X;
876 yy := PlayerModelsArray[pm.id].WeaponPoints[pm.CurrentWeapon, a, d, pm.AnimState.CurrentFrame].Y;
877 r_Draw_Texture(
878 tex,
879 x + xx,
880 y + yy,
881 tex.width,
882 tex.height,
883 d = TDirection.D_LEFT,
884 255, 255, 255, alpha, false
885 );
886 end;
887 end;
889 (* draw body *)
890 if r_Map_GetPlayerModelTex(pm.id, a, d, flip) then
891 begin
892 t := Models[pm.id].anim[d, a].base;
893 back := PlayerModelsArray[pm.id].anim[d, a].back;
894 r_Draw_MultiTextureRepeat(t, pm.AnimState, back, x, y, t.width, t.height, flip, 255, 255, 255, alpha, false);
895 t := Models[pm.id].anim[d, a].mask;
896 if t <> nil then
897 begin
898 c := pm.Color;
899 r_Draw_MultiTextureRepeat(t, pm.AnimState, back, x, y, t.width, t.height, flip, c.r, c.g, c.b, alpha, false);
900 end;
901 end;
902 end;
904 procedure r_Map_DrawBubble (x, y: Integer; cb, cf: TRGB);
905 const w = 20; h = 14;
906 const dx = 6; dy = 8; dot = 6; size = 2;
907 const tx = 6; ty = h - 1;
908 begin
909 // Outer box (top/down)
910 r_Draw_FillRect(x + 1, y, x + w - 1, y + 1, cb.R, cb.G, cb.B, 255);
911 r_Draw_FillRect(x + 1, y + h - 1, x + w - 1, y + h, cb.R, cb.G, cb.B, 255);
912 // Outer box (left/right)
913 r_Draw_FillRect(x, y + 1, x + 1, y + h - 1, cb.R, cb.G, cb.B, 255);
914 r_Draw_FillRect(x + w - 1, y + 1, x + w, y + h - 1, cb.R, cb.G, cb.B, 255);
915 // Outer tail
916 r_Draw_FillRect(x + tx - 1, y + ty + 0, x + tx + 3 + 1, y + ty + 1, cb.R, cb.G, cb.B, 255);
917 r_Draw_FillRect(x + tx - 1, y + ty + 1, x + tx + 2 + 1, y + ty + 2, cb.R, cb.G, cb.B, 255);
918 r_Draw_FillRect(x + tx - 1, y + ty + 2, x + tx + 1 + 1, y + ty + 3, cb.R, cb.G, cb.B, 255);
919 r_Draw_FillRect(x + tx - 1, y + ty + 3, x + tx + 0 + 1, y + ty + 4, cb.R, cb.G, cb.B, 255);
920 // Inner tail
921 r_Draw_FillRect(x + tx, y + ty + 0, x + tx + 3, y + ty + 1, cf.R, cf.G, cf.B, 255);
922 r_Draw_FillRect(x + tx, y + ty + 1, x + tx + 2, y + ty + 2, cf.R, cf.G, cf.B, 255);
923 r_Draw_FillRect(x + tx, y + ty + 2, x + tx + 1, y + ty + 3, cf.R, cf.G, cf.B, 255);
924 // Inner box
925 r_Draw_FillRect(x + 1, y + 1, x + w - 1, y + h - 1, cf.R, cf.G, cf.B, 255);
926 // Dots
927 r_Draw_FillRect(x + dx + 0*3, y + dy, x + dx + 0*3 + size, y + dy + size, cb.R, cb.G, cb.B, 255);
928 r_Draw_FillRect(x + dx + 1*3, y + dy, x + dx + 1*3 + size, y + dy + size, cb.R, cb.G, cb.B, 255);
929 r_Draw_FillRect(x + dx + 2*3, y + dy, x + dx + 2*3 + size, y + dy + size, cb.R, cb.G, cb.B, 255);
930 end;
932 procedure r_Map_DrawTalkBubble (p: TPlayer);
933 var xx, yy, x, y: Integer; cb, cf: TRGB;
934 begin
935 r_Common_GetPlayerPos(p, xx, yy);
936 x := xx + p.obj.rect.x + p.obj.rect.width div 2;
937 y := yy;
938 cb := _RGB(63, 63, 63);
939 cf := _RGB(240, 240, 240);
940 case gChatBubble of
941 1: // simple text
942 begin
943 r_Common_DrawText('[...]', x, y, 255, 255, 255, 255, stdfont, TBasePoint.BP_DOWN);
944 end;
945 2: // adv team color
946 begin
947 case p.Team of
948 TEAM_RED: cb := _RGB(255, 63, 63);
949 TEAM_BLUE: cb := _RGB(63, 63, 255);
950 end;
951 r_Map_DrawBubble(x, y - 18, cb, cf);
952 end;
953 3: // adv player color
954 begin
955 cb := p.Model.Color;
956 cf.R := MIN(cb.R * 2 + 64, 255);
957 cf.G := MIN(cb.G * 2 + 64, 255);
958 cf.B := MIN(cb.B * 2 + 64, 255);
959 if (ABS(cf.R - cb.R) < 32) or (ABS(cf.G - cb.G) < 32) or (ABS(cf.B - cb.B) < 32) then
960 begin
961 cb.R := MAX(cf.R div 2 - 16, 0);
962 cb.G := MAX(cf.G div 2 - 16, 0);
963 cb.B := MAX(cf.B div 2 - 16, 0);
964 end;
965 r_Map_DrawBubble(x, y - 18, cb, cf);
966 end;
967 4: // textured
968 if TalkTexture <> nil then
969 begin
970 r_Common_DrawTexture(TalkTexture, x + 5, y, TalkTexture.width, TalkTexture.height, TBasePoint.BP_DOWN);
971 end;
972 end;
973 end;
975 procedure r_Map_DrawPlayer (p, drawed: TPlayer);
976 var x, y, ax, ay, w, h: Integer; b, flip: Boolean; t: TGLMultiTexture; tex: TGLTexture; alpha: Byte; count, frame: LongInt;
977 begin
978 if p.alive then
979 begin
980 r_Common_GetPlayerPos(p, x, y);
982 (* punch effect *)
983 if p.PunchTime <= gTime then
984 begin
985 g_Anim_GetFrameByTime(PunchAnim, (gTime - p.PunchTime) DIV GAME_TICK, count, frame);
986 if count < 1 then
987 begin
988 b := R_BERSERK in p.FRulez;
989 if p.FKeys[KEY_DOWN].pressed then
990 t := PunchTextures[b, 2]
991 else if p.FKeys[KEY_UP].pressed then
992 t := PunchTextures[b, 1]
993 else
994 t := PunchTextures[b, 0];
995 if t <> nil then
996 begin
997 flip := p.Direction = TDirection.D_LEFT;
998 ax := IfThen(flip, 15 - p.Obj.Rect.X, p.Obj.Rect.X - 15); // ???
999 ay := p.Obj.Rect.Y - 11;
1000 tex := t.GetTexture(frame);
1001 r_Draw_TextureRepeat(tex, x + ax, y + ay, tex.width, tex.height, flip, 255, 255, 255, 255, false)
1002 end;
1003 end;
1004 end;
1006 (* invulnerability effect *)
1007 if (InvulPenta <> nil) and (p.FMegaRulez[MR_INVUL] > gTime) and ((p <> drawed) or (p.SpawnInvul >= gTime)) then
1008 begin
1009 w := InvulPenta.width;
1010 h := InvulPenta.height;
1011 ax := p.Obj.Rect.X + (p.Obj.Rect.Width div 2) - (w div 2); // + IfThen(flip, +4, -2) // ???
1012 ay := p.Obj.Rect.Y + (p.Obj.Rect.Height div 2) - (h div 2) - 7; // ???
1013 r_Draw_Texture(InvulPenta, x + ax, y + ay, w, h, false, 255, 255, 255, 255, false);
1014 end;
1016 (* invisibility effect *)
1017 alpha := 255;
1018 if p.FMegaRulez[MR_INVIS] > gTime then
1019 begin
1020 if (drawed <> nil) and ((p = drawed) or ((p.Team = drawed.Team) and (gGameSettings.GameMode <> GM_DM))) then
1021 begin
1022 if (p.FMegaRulez[MR_INVIS] - gTime > 2100) or not ODD((p.FMegaRulez[MR_INVIS] - gTime) div 300) then
1023 alpha := 55;
1024 end
1025 else
1026 alpha := 1; // ???
1027 end;
1029 r_Map_DrawPlayerModel(p.Model, x, y, alpha);
1030 end;
1032 if DebugFrames then
1033 begin
1034 r_Draw_Rect(
1035 x + p.obj.rect.x, // p.obj.x + p.obj.rect.x,
1036 y + p.obj.rect.y, // p.obj.y + p.obj.rect.y,
1037 x + p.obj.rect.x + p.obj.rect.width, // p.obj.x + p.obj.rect.x + p.obj.rect.width,
1038 y + p.obj.rect.y + p.obj.rect.height, // p.obj.y + p.obj.rect.y + p.obj.rect.height,
1039 0, 255, 0, 255
1040 );
1041 end;
1043 if DebugHealth and p.alive then
1044 begin
1045 r_Common_DrawText(
1046 IntToStr(p.health) + '/' + IntToStr(p.armor),
1047 x + p.obj.rect.x + p.obj.rect.width div 2,
1048 y - 24,
1049 255, 255, 255, 255,
1050 stdfont,
1051 TBasePoint.BP_DOWN
1052 );
1053 end;
1055 if (gChatBubble > 0) and p.FKeys[KEY_CHAT].Pressed and (p.Ghost = false) then
1056 if (p.FMegaRulez[MR_INVIS] <= gTime) or ((drawed <> nil) and ((p = drawed) or (p.Team = drawed.Team) and (gGameSettings.GameMode <> GM_DM))) then
1057 r_Map_DrawTalkBubble(p);
1059 // TODO draw aim
1060 end;
1062 procedure r_Map_DrawPlayers (x, y, w, h: Integer; player: TPlayer);
1063 var i: Integer;
1064 begin
1065 if gPlayers <> nil then
1066 for i := 0 to High(gPlayers) do
1067 if gPlayers[i] <> nil then
1068 r_Map_DrawPlayer(gPlayers[i], player);
1069 end;
1071 {$IFDEF ENABLE_GIBS}
1072 function r_Map_GetGibSize (m, i: Integer): TRectWH;
1073 begin
1074 result := Models[m].gibs.rect[i];
1075 end;
1077 procedure r_Map_DrawGibs (x, y, w, h: Integer);
1078 var i, xx, yy, m, id, rx, ry, ra: Integer; p: PObj; t: TGLTexture;
1079 begin
1080 if gGibs <> nil then
1081 begin
1082 for i := 0 to High(gGibs) do
1083 begin
1084 if gGibs[i].alive then
1085 begin
1086 p := @gGibs[i].Obj;
1087 if g_Obj_Collide(x, y, w, h, p) then
1088 begin
1089 r_Common_GetObjectPos(p^, xx, yy);
1090 id := gGibs[i].GibID;
1091 m := gGibs[i].ModelID;
1092 t := Models[m].gibs.base[id];
1093 if t <> nil then
1094 begin
1095 rx := p.Rect.X + p.Rect.Width div 2;
1096 ry := p.Rect.Y + p.Rect.Height div 2;
1097 ra := gGibs[i].RAngle;
1098 r_Draw_TextureRepeatRotate(t, xx, yy, t.width, t.height, false, 255, 255, 255, 255, false, rx, ry, ra);
1099 t := Models[m].gibs.mask[id];
1100 if t <> nil then
1101 r_Draw_TextureRepeatRotate(t, xx, yy, t.width, t.height, false, gGibs[i].Color.R, gGibs[i].Color.G, gGibs[i].Color.B, 255, false, rx, ry, ra);
1102 // r_Draw_TextureRepeatRotate(nil, xx + p.Rect.X, yy + p.Rect.Y, p.Rect.Width, p.Rect.Height, false, 255, 255, 255, 255, false, p.Rect.Width div 2, p.Rect.Height div 2, ra);
1103 end;
1104 end;
1105 end;
1106 end;
1107 end;
1108 end;
1109 {$ENDIF}
1111 {$IFDEF ENABLE_CORPSES}
1112 procedure r_Map_DrawCorpses (x, y, w, h: Integer);
1113 var i, xx, yy: Integer; p: TCorpse;
1114 begin
1115 if gCorpses <> nil then
1116 begin
1117 for i := 0 to High(gCorpses) do
1118 begin
1119 p := gCorpses[i];
1120 if (p <> nil) and (p.state <> CORPSE_STATE_REMOVEME) and (p.model <> nil) then
1121 begin
1122 r_Common_GetObjectPos(p.obj, xx, yy);
1123 r_Map_DrawPlayerModel(p.model, xx, yy, 255);
1124 end;
1125 end;
1126 end;
1127 end;
1128 {$ENDIF}
1130 {$IFDEF ENABLE_GFX}
1131 function r_Map_GetGFXID (): Integer;
1132 var i: Integer;
1133 begin
1134 i := 0;
1135 if gfxlist <> nil then
1136 begin
1137 while (i < Length(gfxlist)) and (gfxlist[i].typ > 0) do
1138 Inc(i);
1139 if i >= Length(gfxlist) then
1140 SetLength(gfxlist, Length(gfxlist) + 1)
1141 end
1142 else
1143 SetLength(gfxlist, 1);
1144 gfxlist[i].typ := R_GFX_NONE;
1145 result := i
1146 end;
1148 procedure r_Map_NewGFX (typ, x, y: Integer);
1149 var i: Integer;
1150 begin
1151 if gpart_dbg_enabled and (typ > 0) and (typ <= R_GFX_LAST) then
1152 begin
1153 i := r_Map_GetGFXID();
1154 if i >= 0 then
1155 begin
1156 gfxlist[i].typ := typ;
1157 gfxlist[i].x := x;
1158 gfxlist[i].y := y;
1159 gfxlist[i].oldX := x;
1160 gfxlist[i].oldY := y;
1161 gfxlist[i].anim := GFXAnim[typ].anim;
1162 gfxlist[i].time := gTime DIV GAME_TICK;
1163 gfxlist[i].frame := 0;
1164 INC(gfxlist[i].anim.delay, Random(GFXAnim[typ].rdelay));
1165 end;
1166 end;
1167 end;
1169 procedure r_Map_ResetGFX;
1170 begin
1171 SetLength(gfxlist, 0);
1172 end;
1174 procedure r_Map_UpdateGFX (tick: LongWord);
1175 var i: Integer; count: LongInt;
1176 begin
1177 if gfxlist <> nil then
1178 begin
1179 for i := 0 to High(gfxlist) do
1180 begin
1181 if (gfxlist[i].typ > 0) and (tick >= gfxlist[i].time) then
1182 begin
1183 g_Anim_GetFrameByTime(gfxlist[i].anim, tick - gfxlist[i].time, count, gfxlist[i].frame);
1184 if count < 1 then
1185 begin
1186 gfxlist[i].oldX := gfxlist[i].x;
1187 gfxlist[i].oldY := gfxlist[i].y;
1188 case gfxlist[i].typ of
1189 R_GFX_FLAME, R_GFX_SMOKE:
1190 begin
1191 if Random(3) = 0 then
1192 gfxlist[i].x := gfxlist[i].x - 1 + Random(3);
1193 if Random(2) = 0 then
1194 gfxlist[i].y := gfxlist[i].y - Random(2);
1195 end;
1196 end;
1197 end
1198 else
1199 gfxlist[i].typ := R_GFX_NONE;
1200 end;
1201 end;
1202 end;
1203 end;
1205 procedure r_Map_DrawGFX (x, y, w, h: Integer);
1206 var i, fx, fy, typ: Integer; t: TGLMultiTexture; tex: TGLTexture;
1207 begin
1208 if gfxlist <> nil then
1209 begin
1210 for i := 0 to High(gfxlist) do
1211 begin
1212 if gfxlist[i].typ > 0 then
1213 begin
1214 typ := gfxlist[i].typ;
1215 t := GFXTextures[typ];
1216 if t <> nil then
1217 begin
1218 fx := nlerp(gfxlist[i].oldX, gfxlist[i].x, gLerpFactor);
1219 fy := nlerp(gfxlist[i].oldY, gfxlist[i].y, gLerpFactor);
1220 tex := t.GetTexture(gfxlist[i].frame);
1221 r_Draw_TextureRepeat(tex, fx, fy, tex.width, tex.height, false, 255, 255, 255, 255 - GFXAnim[typ].alpha, false);
1222 end;
1223 end;
1224 end;
1225 end;
1226 end;
1228 procedure r_Map_DrawParticles (x, y, w, h: Integer);
1229 var i, fx, fy: Integer; factor: Single;
1230 begin
1231 if gpart_dbg_enabled and (Particles <> nil) then
1232 begin
1233 r_Draw_EnableTexture2D(false);
1234 factor := r_pixel_scale * g_dbg_scale;
1235 if factor < 0.6 then
1236 glPointSize(1)
1237 else if factor > 1.3 then
1238 glPointSize(factor + 1)
1239 else
1240 glPointSize(2);
1241 glDisable(GL_POINT_SMOOTH);
1242 glEnable(GL_BLEND);
1243 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
1245 r_Draw_SetColor(255, 255, 255, 255);
1246 glBegin(GL_POINTS);
1247 for i := 0 to High(Particles) do
1248 begin
1249 if Particles[i].alive then
1250 begin
1251 fx := nlerp(Particles[i].oldX, Particles[i].x, gLerpFactor);
1252 fy := nlerp(Particles[i].oldY, Particles[i].y, gLerpFactor);
1253 glColor4ub(Particles[i].red, Particles[i].green, Particles[i].blue, Particles[i].alpha);
1254 glVertex2i(fx, fy);
1255 end;
1256 end;
1257 glEnd;
1258 r_Draw_SetColor(0, 0, 0, 255);
1260 glDisable(GL_BLEND);
1261 end;
1262 end;
1263 {$ENDIF}
1265 procedure r_Map_DrawShots (x, y, w, h: Integer);
1266 var i, a, xx, yy, pX, pY, typ: Integer; count, frame: LongInt; t: TGLMultiTexture; tex: TGLTexture;
1267 begin
1268 if Shots <> nil then
1269 begin
1270 for i := 0 to High(Shots) do
1271 begin
1272 typ := Shots[i].ShotType;
1273 if typ <> 0 then
1274 begin
1275 t := ShotTextures[typ];
1276 if t <> nil then
1277 begin
1278 a := 0;
1279 case typ of
1280 WEAPON_ROCKETLAUNCHER, WEAPON_BARON_FIRE, WEAPON_MANCUB_FIRE, WEAPON_SKEL_FIRE:
1281 a := -GetAngle2(Shots[i].Obj.Vel.X, Shots[i].Obj.Vel.Y)
1282 end;
1283 r_Common_GetObjectPos(Shots[i].Obj, xx, yy);
1284 pX := Shots[i].Obj.Rect.Width div 2;
1285 pY := Shots[i].Obj.Rect.Height div 2;
1286 g_Anim_GetFrameByTime(ShotAnim[typ].anim, (gTime - Shots[i].time) DIV GAME_TICK, count, frame);
1287 tex := t.GetTexture(frame);
1288 r_Draw_TextureRepeatRotate(tex, xx, yy, tex.width, tex.height, false, 255, 255, 255, 255, false, pX, pY, a);
1289 if DebugFrames then
1290 begin
1291 r_Draw_Rect(
1292 xx + Shots[i].obj.rect.x, // Shots[i].obj.x + Shots[i].obj.rect.x,
1293 yy + Shots[i].obj.rect.y, // Shots[i].obj.y + Shots[i].obj.rect.y,
1294 xx + Shots[i].obj.rect.x + Shots[i].obj.rect.width, // Shots[i].obj.x + Shots[i].obj.rect.x + Shots[i].obj.rect.width,
1295 yy + Shots[i].obj.rect.y + Shots[i].obj.rect.height, // Shots[i].obj.y + Shots[i].obj.rect.y + Shots[i].obj.rect.height,
1296 0, 255, 0, 255
1297 );
1298 end;
1299 end;
1300 end;
1301 end;
1302 end;
1303 end;
1305 procedure r_Map_DrawFlags (x, y, w, h: Integer);
1306 var i, dx, xx, yy: Integer; flip: Boolean; t: TGLMultiTexture; tex: TGLTexture;
1307 begin
1308 if gGameSettings.GameMode = GM_CTF then
1309 begin
1310 for i := FLAG_RED to FLAG_BLUE do
1311 begin
1312 if not (gFlags[i].state in [FLAG_STATE_NONE, FLAG_STATE_CAPTURED]) then
1313 begin
1314 r_Common_GetObjectPos(gFlags[i].Obj, xx, yy);
1315 flip := gFlags[i].Direction = TDirection.D_LEFT;
1316 if flip then dx := -1 else dx := +1;
1317 t := FlagTextures[i];
1318 tex := t.GetTexture(FlagFrame);
1319 r_Draw_TextureRepeat(tex, xx + dx, yy + 1, tex.width, tex.height, flip, 255, 255, 255, 255, false);
1320 if DebugFrames then
1321 begin
1322 r_Draw_Rect(
1323 xx + gFlags[i].obj.rect.x, // gFlags[i].obj.x + gFlags[i].obj.rect.x,
1324 yy + gFlags[i].obj.rect.y, // gFlags[i].obj.y + gFlags[i].obj.rect.y,
1325 xx + gFlags[i].obj.rect.x + gFlags[i].obj.rect.width, // gFlags[i].obj.x + gFlags[i].obj.rect.x + gFlags[i].obj.rect.width,
1326 yy + gFlags[i].obj.rect.y + gFlags[i].obj.rect.height, // gFlags[i].obj.y + gFlags[i].obj.rect.y + gFlags[i].obj.rect.height,
1327 0, 255, 0, 255
1328 );
1329 end;
1330 end;
1331 end;
1332 end;
1333 end;
1335 {$IFDEF ENABLE_SHELLS}
1336 procedure r_Map_DrawShells (x, y, w, h: Integer);
1337 var i, xx, yy, typ: Integer; t: TGLTexture; p: PObj;
1338 begin
1339 if gShells <> nil then
1340 begin
1341 for i := 0 to High(gShells) do
1342 begin
1343 if gShells[i].alive then
1344 begin
1345 typ := gShells[i].SType;
1346 if typ <= SHELL_LAST then
1347 begin
1348 p := @gShells[i].Obj;
1349 if g_Obj_Collide(x, y, w, h, p) then
1350 begin
1351 t := ShellTextures[typ];
1352 if t <> nil then
1353 begin
1354 r_Common_GetObjectPos(p^, xx, yy);
1355 r_Draw_TextureRepeatRotate(t, xx, yy, t.width, t.height, false, 255, 255, 255, 255, false, ShellAnim[typ].dx, ShellAnim[typ].dy, gShells[i].RAngle);
1356 end;
1357 end;
1358 end;
1359 end;
1360 end;
1361 end;
1362 end;
1363 {$ENDIF}
1365 procedure r_Map_CalcSkyParallax (cx, cy, vw, vh, sw, sh, mw, mh: LongInt; out x, y, w, h: LongInt);
1366 const
1367 factor = 120; (* size ratio between view and sky (120%) *)
1368 limit = 100; (* max speed for parallax *)
1369 var
1370 msw, msh, mvw, mvh, svw, svh: LongInt;
1371 begin
1372 msw := vw * factor div 100;
1373 msh := vh * factor div 100;
1374 r_Common_CalcAspect(sw, sh, msw, msh, (sw / sh) <= (msw / msh), w, h);
1376 (* calc x parallax or sky center on speed limit *)
1377 mvw := MAX(1, mw - vw);
1378 svw := w - vw;
1379 if 100 * svw div mvw <= limit then
1380 x := -cx * svw div mvw
1381 else
1382 x := -svw div 2;
1384 (* calc y parallax or sky center on speed limit *)
1385 mvh := MAX(1, mh - vh);
1386 svh := h - vh;
1387 if 100 * svh div mvh <= limit then
1388 y := -cy * svh div mvh
1389 else
1390 y := -svh div 2;
1392 (* handle out of map bounds *)
1393 if x > 0 then x := 0;
1394 if y > 0 then y := 0;
1395 if x < -svw then x := -svw;
1396 if y < -svh then y := -svh;
1397 end;
1399 procedure r_Map_DrawScreenEffect (x, y, w, h, level: Integer; r, g, b: Byte);
1400 var i: Integer;
1401 begin
1402 if level > 0 then
1403 begin
1404 case level of
1405 0..14: i := 0;
1406 15..34: i := 1;
1407 35..54: i := 2;
1408 55..74: i := 3;
1409 75..94: i := 4;
1410 else i := 5
1411 end;
1412 r_Draw_FillRect(x, y, x + w, y + h, r, g, b, i * 50)
1413 end;
1414 end;
1416 procedure r_Map_DrawScreenEffects (x, y, w, h: Integer; p: TPlayer);
1417 begin
1418 if p <> nil then
1419 begin
1420 r_Map_DrawScreenEffect(x, y, w, h, p.pain, 255, 0, 0);
1421 r_Map_DrawScreenEffect(x, y, w, h, p.pickup, 150, 200, 150);
1422 if (p.FMegaRulez[MR_INVUL] >= gTime) and (p.SpawnInvul < gTime) then
1423 begin
1424 if ((p.FMegaRulez[MR_INVUL] - gTime) > 2100) or not ODD((p.FMegaRulez[MR_INVUL] - gTime) div 300) then
1425 r_Draw_InvertRect(x, y, x + w, y + h, 191, 191, 191, 255);
1426 end;
1427 if p.FMegaRulez[MR_SUIT] >= gTime then
1428 begin
1429 if ((p.FMegaRulez[MR_SUIT] - gTime) > 2100) or not ODD((p.FMegaRulez[MR_SUIT] - gTime) div 300) then
1430 r_Draw_FillRect(x, y, x + w, y + h, 0, 96, 0, 55);
1431 end;
1432 if (p.Berserk >= 0) and (p.Berserk >= gTime) and (gFlash = 2) then
1433 begin
1434 r_Draw_FillRect(x, y, x + w, y + h, 255, 0, 0, 55);
1435 end;
1436 end;
1437 end;
1439 procedure r_Map_DrawIndicator (p: TPlayer; color: TRGB; cx, cy, cw, ch: Integer);
1440 var a, ax, ay, fx, fy, xx, yy: Integer;
1441 begin
1442 if (p <> nil) and p.Alive and (p.Spectator = false) then
1443 begin
1444 r_Common_GetPlayerPos(p, fx, fy);
1445 case gPlayerIndicatorStyle of
1446 0:
1447 if IndicatorTexture <> nil then
1448 begin
1449 ax := IndicatorTexture.width div 2;
1450 ay := IndicatorTexture.height div 2;
1451 if (p.obj.x + p.obj.rect.x) < cx then
1452 begin
1453 a := 90;
1454 xx := fx + p.obj.rect.x + p.obj.rect.width;
1455 yy := fy + p.obj.rect.y + (p.obj.rect.height - IndicatorTexture.width) div 2;
1456 end
1457 else if (p.obj.x + p.obj.rect.x + p.obj.rect.width) > (cx + cw) then
1458 begin
1459 a := 270;
1460 xx := fx + p.obj.rect.x - IndicatorTexture.height;
1461 yy := fy + p.obj.rect.y - (p.obj.rect.height - IndicatorTexture.width) div 2;
1462 end
1463 else if (p.obj.y - IndicatorTexture.height) < cy then
1464 begin
1465 a := 180;
1466 xx := fx + p.obj.rect.x + (p.obj.rect.width - IndicatorTexture.width) div 2;
1467 yy := fy + p.obj.rect.y + p.obj.rect.height;
1468 end
1469 else
1470 begin
1471 a := 0;
1472 xx := fx + p.obj.rect.x + (p.obj.rect.width - IndicatorTexture.width) div 2;
1473 yy := fy - IndicatorTexture.height;
1474 end;
1475 xx := MIN(MAX(xx, cx), cx + cw - IndicatorTexture.width);
1476 yy := MIN(MAX(yy, cy), cy + ch - IndicatorTexture.height);
1477 r_Draw_TextureRepeatRotate(IndicatorTexture, xx, yy, IndicatorTexture.width, IndicatorTexture.height, false, color.r, color.g, color.b, 255, false, ax, ay, a);
1478 end;
1479 1:
1480 begin
1481 xx := fx + p.obj.rect.x + p.obj.rect.width div 2;
1482 yy := fy;
1483 r_Common_DrawText(p.Name, xx, yy, color.r, color.g, color.b, 255, stdfont, TBasePoint.BP_DOWN);
1484 end;
1485 end;
1486 end;
1487 end;
1489 procedure r_Map_DrawPlayerIndicators (player: TPlayer; cx, cy, cw, ch: Integer);
1490 var i: Integer; p: TPlayer;
1491 begin
1492 case gPlayerIndicator of
1493 1:
1494 if player <> nil then
1495 begin
1496 r_Map_DrawIndicator(player, _RGB(255, 255, 255), cx, cy, cw, ch);
1497 end;
1498 2:
1499 if gPlayers <> nil then
1500 begin
1501 for i := 0 to HIGH(gPlayers) do
1502 begin
1503 p := gPlayers[i];
1504 if p <> nil then
1505 begin
1506 if (player <> nil) and (p = player) then
1507 begin
1508 r_Map_DrawIndicator(p, _RGB(255, 255, 255), cx, cy, cw, ch);
1509 end
1510 else if (player = nil) or ((p.Team = player.Team) and (p.Team <> TEAM_NONE)) then
1511 begin
1512 case gPlayerIndicatorStyle of
1513 0: r_Map_DrawIndicator(p, p.GetColor(), cx, cy, cw, ch);
1514 1: r_Map_DrawIndicator(p, _RGB(192, 192, 192), cx, cy, cw, ch);
1515 end;
1516 end;
1517 end;
1518 end;
1519 end;
1520 end;
1521 end;
1523 function r_Map_GetDrawableGridMask (): Integer;
1524 var mask: Integer;
1525 begin
1526 mask := 0;
1527 if g_rlayer_back then mask := mask or GridTagBack;
1528 if g_rlayer_step then mask := mask or GridTagStep;
1529 if g_rlayer_wall then mask := mask or GridTagWall;
1530 if g_rlayer_door then mask := mask or GridTagDoor;
1531 if g_rlayer_acid1 then mask := mask or GridTagAcid1;
1532 if g_rlayer_acid2 then mask := mask or GridTagAcid2;
1533 if g_rlayer_water then mask := mask or GridTagWater;
1534 if g_rlayer_fore then mask := mask or GridTagFore;
1535 result := mask;
1536 end;
1538 procedure r_Map_DrawGame (xx, yy, ww, hh: Integer; player: TPlayer);
1539 (* xx/yy/ww/hh are in map units *)
1540 var iter: TPanelGrid.Iter; p: PPanel;
1541 begin
1542 if UseAccel then
1543 begin
1544 plist.Clear;
1545 iter := mapGrid.ForEachInAABB(xx, yy, ww, hh, r_Map_GetDrawableGridMask());
1546 for p in iter do
1547 if ((p^.tag and GridTagDoor) <> 0) = p^.door then
1548 plist.Insert(p^);
1549 iter.Release;
1550 end;
1552 r_Map_DrawPanelType(PANEL_BACK);
1553 r_Map_DrawPanelType(PANEL_STEP);
1554 r_Map_DrawItems(xx, yy, ww, hh, false);
1555 r_Map_DrawShots(xx, yy, ww, hh);
1556 {$IFDEF ENABLE_SHELLS}
1557 r_Map_DrawShells(xx, yy, ww, hh);
1558 {$ENDIF}
1559 r_Map_DrawPlayers(xx, yy, ww, hh, player);
1560 {$IFDEF ENABLE_GIBS}
1561 r_Map_DrawGibs(xx, yy, ww, hh);
1562 {$ENDIF}
1563 {$IFDEF ENABLE_CORPSES}
1564 r_Map_DrawCorpses(xx, yy, ww, hh);
1565 {$ENDIF}
1566 r_Map_DrawPanelType(PANEL_WALL);
1567 r_Map_DrawMonsters(xx, yy, ww, hh);
1568 r_Map_DrawItems(xx, yy, ww, hh, true);
1569 r_Map_DrawPanelType(PANEL_CLOSEDOOR);
1570 {$IFDEF ENABLE_GFX}
1571 r_Map_DrawParticles(xx, yy, ww, hh);
1572 r_Map_DrawGFX(xx, yy, ww, hh);
1573 {$ENDIF}
1574 r_Map_DrawFlags(xx, yy, ww, hh);
1575 r_Map_DrawPanelType(PANEL_ACID1);
1576 r_Map_DrawPanelType(PANEL_ACID2);
1577 r_Map_DrawPanelType(PANEL_WATER);
1578 r_Map_DrawPanelType(PANEL_FORE);
1579 end;
1581 procedure r_Map_DrawScaled (w, h, camx, camy: Integer; player: TPlayer; out acx, acy, acw, ach, axx, ayy, aww, ahh: Integer);
1582 (* w/h/camx/camy are in map units (scaled) *)
1583 const limit = 32767;
1584 var cx, cy, cw, ch, xx, yy, ww, hh{, ml, mt, mr, mb}: Integer; sx, sy, sw, sh: LongInt;
1585 begin
1586 (* camera rect *)
1587 cx := camx - w div 2;
1588 cy := camy - h div 2;
1589 cw := w;
1590 ch := h;
1592 (* camera bounds *)
1593 if g_dbg_ignore_bounds = false then
1594 begin
1595 if w > gMapInfo.Width then
1596 cx := gMapInfo.Width div 2 - w div 2
1597 else if cx + cw > gMapInfo.Width then
1598 cx := gMapInfo.Width - cw
1599 else if cx < 0 then
1600 cx := 0;
1602 if h > gMapInfo.Height then
1603 cy := gMapInfo.Height div 2 - h div 2
1604 else if cy + ch > gMapInfo.Height then
1605 cy := gMapInfo.Height - ch
1606 else if cy < 0 then
1607 cy := 0;
1608 end;
1610 acx := cx;
1611 acy := cy;
1612 acw := cw;
1613 ach := ch;
1615 (* map bounds *)
1616 xx := cx;
1617 yy := cy;
1618 ww := cw;
1619 hh := ch;
1620 if xx + ww > gMapInfo.Width then
1621 xx := gMapInfo.Width - ww;
1622 if yy + hh > gMapInfo.Height then
1623 yy := gMapInfo.Height - hh;
1624 if xx < 0 then
1625 xx := 0;
1626 if yy < 0 then
1627 yy := 0;
1628 axx := xx;
1629 ayy := yy;
1630 aww := ww;
1631 ahh := hh;
1634 (* view bounds *)
1635 ml := x; mt := y; mr := x + w; mb := y + h;
1636 if FillOutsizeArea and (DebugCameraScale = 1.0) then
1637 begin
1638 ml := MAX(cx + ml, 0) - cx;
1639 mt := MAX(cy + mt, 0) - cy;
1640 mr := MIN(cx + mr, gMapInfo.Width - 1) - cx;
1641 mb := MIN(cy + mb, gMapInfo.Height - 1) - cy;
1642 end;
1643 r_Draw_SetRect(ml, mt, mr, mb);
1646 if DebugCameraScale <> 1.0 then
1647 begin
1648 glTranslatef(cw div 2, ch div 2, 0);
1649 glScalef(DebugCameraScale, DebugCameraScale, 1);
1650 glTranslatef(-w div 2, -h div 2, 0);
1651 end;
1653 if gDrawBackGround and (SkyTexture <> nil) then
1654 begin
1655 r_Map_CalcSkyParallax(cx, cy, w, h, SkyTexture.width, SkyTexture.height, gMapInfo.Width, gMapInfo.Height, sx, sy, sw, sh);
1656 r_Draw_Texture(SkyTexture, sx, sy, sw, sh, false, 255, 255, 255, 255, false);
1657 end;
1659 glTranslatef(-cx, -cy, 0);
1660 r_Map_DrawGame(xx, yy, ww, hh, player);
1661 if FillOutsizeArea and (DebugCameraScale = 1.0) then
1662 begin
1663 (* top *) r_Draw_FillRect(0 - limit, 0 - limit, gMapInfo.Width + limit, 0, 0, 0, 0, 255);
1664 (* left *) r_Draw_FillRect(0 - limit, 0, 0, gMapInfo.Height + limit, 0, 0, 0, 255);
1665 (* right *) r_Draw_FillRect(gMapInfo.Width, 0, gMapInfo.Width + limit, gMapInfo.Height + limit, 0, 0, 0, 255);
1666 (* bottom *) r_Draw_FillRect(0 - limit, gMapInfo.Height, gMapInfo.Width + limit, gMapInfo.Height + limit, 0, 0, 0, 255);
1667 end;
1668 glTranslatef(cx, cy, 0);
1669 end;
1671 procedure r_Map_Draw (x, y, w, h, camx, camy: Integer; player: TPlayer; out acx, acy: Integer);
1672 var cx, cy, cw, ch, xx, yy, ww, hh, ml, mt, mr, mb, mcx, mcy: Integer; l, t, r, b: Integer;
1673 begin
1674 glPushMatrix;
1675 r_Draw_GetRect(l, t, r, b);
1676 glTranslatef(x, y, 0);
1677 glScalef(g_dbg_scale, g_dbg_scale, 0);
1679 r_Draw_SetRect(x, y, x + w, y + h);
1680 r_Map_DrawScaled(Round(w / g_dbg_scale), Round(h / g_dbg_scale), camx, camy, player, cx, cy, cw, ch, xx, yy, ww, hh);
1681 acx := cx;
1682 acy := cy;
1683 r_Draw_SetRect(x, y, x + w, y + h);
1685 if DebugCameraScale <> 1.0 then
1686 begin
1687 r_Draw_Rect(0, 0, cw, ch, 0, 255, 0, 255);
1688 r_Draw_Rect(-cx + xx, -cy + yy, -cx + xx + ww, -cy + yy + hh, 255, 0, 0, 255);
1689 end;
1691 if gGameSettings.GameMode <> GM_SINGLE then
1692 begin
1693 glTranslatef(-cx, -cy, 0);
1694 r_Map_DrawPlayerIndicators(player, cx, cy, cw, ch);
1695 end;
1697 //glTranslatef(-x, -y, 0);
1698 r_Draw_SetRect(l, t, r, b);
1699 glPopMatrix;
1701 r_Map_DrawScreenEffects(x, y, w, h, player);
1702 end;
1704 procedure r_Map_Reset;
1705 begin
1706 {$IFDEF ENABLE_GFX}
1707 r_Map_ResetGFX;
1708 {$ENDIF}
1709 end;
1711 procedure r_Map_Update;
1712 var i, count, tick: LongInt;
1713 begin
1714 tick := gTime div GAME_TICK;
1715 for i := 0 to ITEM_LAST do
1716 g_Anim_GetFrameByTime(ItemAnim[i].anim, tick, count, Items[i].frame);
1717 r_Map_UpdateGFX(tick);
1718 g_Anim_GetFrameByTime(FlagAnim, tick, count, FlagFrame);
1719 end;
1721 initialization
1722 conRegVar('r_sq_draw', @UseAccel, 'accelerated spatial queries in rendering', 'accelerated rendering');
1723 conRegVar('r_debug_camera_scale', @DebugCameraScale, 0.0001, 1000.0, '', '');
1724 conRegVar('r_gl_fill_outside', @FillOutsizeArea, '', '');
1725 conRegVar('d_frames', @DebugFrames, '', '');
1726 conRegVar('d_health', @DebugHealth, '', '');
1727 UseAccel := true;
1728 DebugCameraScale := 1.0;
1729 FillOutsizeArea := true;
1730 DebugFrames := false;
1731 DebugHealth := false;
1732 end.