author | unc0rr |
Fri, 04 May 2007 19:59:51 +0000 | |
changeset 505 | fcba7d7aea0d |
parent 504 | 13b6ebc53627 |
child 511 | 2b5b9e00419d |
permissions | -rw-r--r-- |
393 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
3 |
* Copyright (c) 2005-2007 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 |
* |
|
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*) |
|
18 |
||
184 | 19 |
unit uLandGraphics; |
20 |
interface |
|
409 | 21 |
uses uFloat, uConsts; |
345 | 22 |
{$INCLUDE options.inc} |
184 | 23 |
|
24 |
type PRangeArray = ^TRangeArray; |
|
25 |
TRangeArray = array[0..31] of record |
|
371 | 26 |
Left, Right: LongInt; |
184 | 27 |
end; |
28 |
||
371 | 29 |
procedure DrawExplosion(X, Y, Radius: LongInt); |
30 |
procedure DrawHLinesExplosions(ar: PRangeArray; Radius: LongInt; y, dY: LongInt; Count: Byte); |
|
31 |
procedure DrawTunnel(X, Y, dX, dY: hwFloat; ticks, HalfWidth: LongInt); |
|
32 |
procedure FillRoundInLand(X, Y, Radius: LongInt; Value: Longword); |
|
504
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
33 |
procedure ChangeRoundInLand(X, Y, Radius: LongInt; Delta: LongInt); |
184 | 34 |
|
409 | 35 |
function TryPlaceOnLand(cpX, cpY: LongInt; Obj: TSprite; Frame: LongInt): boolean; |
36 |
||
184 | 37 |
implementation |
409 | 38 |
uses SDLh, uMisc, uLand; |
184 | 39 |
|
371 | 40 |
procedure FillCircleLines(x, y, dx, dy: LongInt; Value: Longword); |
41 |
var i: LongInt; |
|
184 | 42 |
begin |
43 |
if ((y + dy) and $FFFFFC00) = 0 then |
|
44 |
for i:= max(x - dx, 0) to min(x + dx, 2047) do Land[y + dy, i]:= Value; |
|
45 |
if ((y - dy) and $FFFFFC00) = 0 then |
|
46 |
for i:= max(x - dx, 0) to min(x + dx, 2047) do Land[y - dy, i]:= Value; |
|
47 |
if ((y + dx) and $FFFFFC00) = 0 then |
|
48 |
for i:= max(x - dy, 0) to min(x + dy, 2047) do Land[y + dx, i]:= Value; |
|
49 |
if ((y - dx) and $FFFFFC00) = 0 then |
|
50 |
for i:= max(x - dy, 0) to min(x + dy, 2047) do Land[y - dx, i]:= Value; |
|
51 |
end; |
|
52 |
||
504
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
53 |
procedure ChangeCircleLines(x, y, dx, dy: LongInt; Delta: LongInt); |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
54 |
var i: LongInt; |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
55 |
begin |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
56 |
if ((y + dy) and $FFFFFC00) = 0 then |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
57 |
for i:= max(x - dx, 0) to min(x + dx, 2047) do inc(Land[y + dy, i], Delta); |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
58 |
if ((y - dy) and $FFFFFC00) = 0 then |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
59 |
for i:= max(x - dx, 0) to min(x + dx, 2047) do inc(Land[y - dy, i], Delta); |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
60 |
if ((y + dx) and $FFFFFC00) = 0 then |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
61 |
for i:= max(x - dy, 0) to min(x + dy, 2047) do inc(Land[y + dx, i], Delta); |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
62 |
if ((y - dx) and $FFFFFC00) = 0 then |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
63 |
for i:= max(x - dy, 0) to min(x + dy, 2047) do inc(Land[y - dx, i], Delta); |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
64 |
end; |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
65 |
|
371 | 66 |
procedure FillRoundInLand(X, Y, Radius: LongInt; Value: Longword); |
67 |
var dx, dy, d: LongInt; |
|
184 | 68 |
begin |
69 |
dx:= 0; |
|
70 |
dy:= Radius; |
|
71 |
d:= 3 - 2 * Radius; |
|
72 |
while (dx < dy) do |
|
73 |
begin |
|
74 |
FillCircleLines(x, y, dx, dy, Value); |
|
75 |
if (d < 0) |
|
76 |
then d:= d + 4 * dx + 6 |
|
77 |
else begin |
|
78 |
d:= d + 4 * (dx - dy) + 10; |
|
79 |
dec(dy) |
|
80 |
end; |
|
81 |
inc(dx) |
|
82 |
end; |
|
83 |
if (dx = dy) then FillCircleLines(x, y, dx, dy, Value); |
|
84 |
end; |
|
85 |
||
504
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
86 |
procedure ChangeRoundInLand(X, Y, Radius: LongInt; Delta: LongInt); |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
87 |
var dx, dy, d: LongInt; |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
88 |
begin |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
89 |
dx:= 0; |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
90 |
dy:= Radius; |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
91 |
d:= 3 - 2 * Radius; |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
92 |
while (dx < dy) do |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
93 |
begin |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
94 |
ChangeCircleLines(x, y, dx, dy, Delta); |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
95 |
if (d < 0) |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
96 |
then d:= d + 4 * dx + 6 |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
97 |
else begin |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
98 |
d:= d + 4 * (dx - dy) + 10; |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
99 |
dec(dy) |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
100 |
end; |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
101 |
inc(dx) |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
102 |
end; |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
103 |
if (dx = dy) then ChangeCircleLines(x, y, dx, dy, Delta); |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
104 |
end; |
13b6ebc53627
Fix collision info artifacts in Land array when two objects intersect
unc0rr
parents:
495
diff
changeset
|
105 |
|
371 | 106 |
procedure ClearLandPixel(y, x: LongInt); |
184 | 107 |
var p: PByteArray; |
108 |
begin |
|
351 | 109 |
p:= @PByteArray(LandSurface^.pixels)^[LandSurface^.pitch * y]; |
110 |
case LandSurface^.format^.BytesPerPixel of |
|
111 |
2: PWord(@(p^[x * 2]))^:= 0; |
|
184 | 112 |
3: begin |
351 | 113 |
p^[x * 3 + 0]:= 0; |
114 |
p^[x * 3 + 1]:= 0; |
|
115 |
p^[x * 3 + 2]:= 0; |
|
184 | 116 |
end; |
351 | 117 |
4: PLongword(@(p^[x * 4]))^:= 0; |
184 | 118 |
end |
119 |
end; |
|
120 |
||
371 | 121 |
procedure SetLandPixel(y, x: LongInt); |
184 | 122 |
var p: PByteArray; |
123 |
begin |
|
351 | 124 |
p:= @PByteArray(LandSurface^.pixels)^[LandSurface^.pitch * y]; |
125 |
case LandSurface^.format^.BytesPerPixel of |
|
126 |
2: PWord(@(p^[x * 2]))^:= cExplosionBorderColor; |
|
184 | 127 |
3: begin |
351 | 128 |
p^[x * 3 + 0]:= cExplosionBorderColor and $FF; |
129 |
p^[x * 3 + 1]:= (cExplosionBorderColor shr 8) and $FF; |
|
130 |
p^[x * 3 + 2]:= cExplosionBorderColor shr 16; |
|
184 | 131 |
end; |
351 | 132 |
4: PLongword(@(p^[x * 4]))^:= cExplosionBorderColor; |
184 | 133 |
end |
134 |
end; |
|
135 |
||
371 | 136 |
procedure FillLandCircleLines0(x, y, dx, dy: LongInt); |
137 |
var i: LongInt; |
|
184 | 138 |
begin |
139 |
if ((y + dy) and $FFFFFC00) = 0 then |
|
140 |
for i:= max(x - dx, 0) to min(x + dx, 2047) do ClearLandPixel(y + dy, i); |
|
141 |
if ((y - dy) and $FFFFFC00) = 0 then |
|
142 |
for i:= max(x - dx, 0) to min(x + dx, 2047) do ClearLandPixel(y - dy, i); |
|
143 |
if ((y + dx) and $FFFFFC00) = 0 then |
|
144 |
for i:= max(x - dy, 0) to min(x + dy, 2047) do ClearLandPixel(y + dx, i); |
|
145 |
if ((y - dx) and $FFFFFC00) = 0 then |
|
146 |
for i:= max(x - dy, 0) to min(x + dy, 2047) do ClearLandPixel(y - dx, i); |
|
147 |
end; |
|
148 |
||
371 | 149 |
procedure FillLandCircleLinesEBC(x, y, dx, dy: LongInt); |
150 |
var i: LongInt; |
|
184 | 151 |
begin |
152 |
if ((y + dy) and $FFFFFC00) = 0 then |
|
153 |
for i:= max(x - dx, 0) to min(x + dx, 2047) do |
|
154 |
if Land[y + dy, i] = COLOR_LAND then SetLandPixel(y + dy, i); |
|
155 |
if ((y - dy) and $FFFFFC00) = 0 then |
|
156 |
for i:= max(x - dx, 0) to min(x + dx, 2047) do |
|
157 |
if Land[y - dy, i] = COLOR_LAND then SetLandPixel(y - dy, i); |
|
158 |
if ((y + dx) and $FFFFFC00) = 0 then |
|
159 |
for i:= max(x - dy, 0) to min(x + dy, 2047) do |
|
160 |
if Land[y + dx, i] = COLOR_LAND then SetLandPixel(y + dx, i); |
|
161 |
if ((y - dx) and $FFFFFC00) = 0 then |
|
162 |
for i:= max(x - dy, 0) to min(x + dy, 2047) do |
|
163 |
if Land[y - dx, i] = COLOR_LAND then SetLandPixel(y - dx, i); |
|
164 |
end; |
|
165 |
||
371 | 166 |
procedure DrawExplosion(X, Y, Radius: LongInt); |
167 |
var dx, dy, d: LongInt; |
|
184 | 168 |
begin |
169 |
FillRoundInLand(X, Y, Radius, 0); |
|
170 |
||
171 |
if SDL_MustLock(LandSurface) then |
|
172 |
SDLTry(SDL_LockSurface(LandSurface) >= 0, true); |
|
173 |
||
174 |
dx:= 0; |
|
175 |
dy:= Radius; |
|
176 |
d:= 3 - 2 * Radius; |
|
177 |
while (dx < dy) do |
|
178 |
begin |
|
179 |
FillLandCircleLines0(x, y, dx, dy); |
|
180 |
if (d < 0) |
|
181 |
then d:= d + 4 * dx + 6 |
|
182 |
else begin |
|
183 |
d:= d + 4 * (dx - dy) + 10; |
|
184 |
dec(dy) |
|
185 |
end; |
|
186 |
inc(dx) |
|
187 |
end; |
|
188 |
if (dx = dy) then FillLandCircleLines0(x, y, dx, dy); |
|
189 |
inc(Radius, 4); |
|
190 |
dx:= 0; |
|
191 |
dy:= Radius; |
|
192 |
d:= 3 - 2 * Radius; |
|
193 |
while (dx < dy) do |
|
194 |
begin |
|
195 |
FillLandCircleLinesEBC(x, y, dx, dy); |
|
196 |
if (d < 0) |
|
197 |
then d:= d + 4 * dx + 6 |
|
198 |
else begin |
|
199 |
d:= d + 4 * (dx - dy) + 10; |
|
200 |
dec(dy) |
|
201 |
end; |
|
202 |
inc(dx) |
|
203 |
end; |
|
351 | 204 |
if (dx = dy) then FillLandCircleLinesEBC(x, y, dx, dy); |
205 |
||
184 | 206 |
if SDL_MustLock(LandSurface) then |
207 |
SDL_UnlockSurface(LandSurface); |
|
208 |
end; |
|
209 |
||
371 | 210 |
procedure DrawHLinesExplosions(ar: PRangeArray; Radius: LongInt; y, dY: LongInt; Count: Byte); |
184 | 211 |
var tx, ty, i: LongInt; |
212 |
begin |
|
213 |
if SDL_MustLock(LandSurface) then |
|
214 |
SDL_LockSurface(LandSurface); |
|
215 |
||
216 |
for i:= 0 to Pred(Count) do |
|
217 |
begin |
|
188 | 218 |
for ty:= max(y - Radius, 0) to min(y + Radius, 1023) do |
351 | 219 |
for tx:= max(0, ar^[i].Left - Radius) to min(2047, ar^[i].Right + Radius) do |
188 | 220 |
ClearLandPixel(ty, tx); |
184 | 221 |
inc(y, dY) |
222 |
end; |
|
223 |
||
224 |
inc(Radius, 4); |
|
351 | 225 |
dec(y, Count * dY); |
184 | 226 |
|
227 |
for i:= 0 to Pred(Count) do |
|
228 |
begin |
|
188 | 229 |
for ty:= max(y - Radius, 0) to min(y + Radius, 1023) do |
351 | 230 |
for tx:= max(0, ar^[i].Left - Radius) to min(2047, ar^[i].Right + Radius) do |
188 | 231 |
if Land[ty, tx] = $FFFFFF then |
232 |
SetLandPixel(ty, tx); |
|
184 | 233 |
inc(y, dY) |
234 |
end; |
|
235 |
||
236 |
if SDL_MustLock(LandSurface) then |
|
237 |
SDL_UnlockSurface(LandSurface); |
|
238 |
end; |
|
239 |
||
240 |
// |
|
241 |
// - (dX, dY) - direction, vector of length = 0.5 |
|
242 |
// |
|
371 | 243 |
procedure DrawTunnel(X, Y, dX, dY: hwFloat; ticks, HalfWidth: LongInt); |
358 | 244 |
var nx, ny, dX8, dY8: hwFloat; |
184 | 245 |
i, t, tx, ty: Longint; |
246 |
begin // (-dY, dX) is (dX, dY) rotated by PI/2 |
|
247 |
if SDL_MustLock(LandSurface) then |
|
248 |
SDL_LockSurface(LandSurface); |
|
249 |
||
250 |
nx:= X + dY * (HalfWidth + 8); |
|
251 |
ny:= Y - dX * (HalfWidth + 8); |
|
252 |
||
358 | 253 |
dX8:= dX * 8; |
254 |
dY8:= dY * 8; |
|
184 | 255 |
for i:= 0 to 7 do |
256 |
begin |
|
358 | 257 |
X:= nx - dX8; |
258 |
Y:= ny - dY8; |
|
184 | 259 |
for t:= -8 to ticks + 8 do |
260 |
{$include tunsetborder.inc} |
|
261 |
nx:= nx - dY; |
|
262 |
ny:= ny + dX; |
|
263 |
end; |
|
264 |
||
265 |
for i:= -HalfWidth to HalfWidth do |
|
266 |
begin |
|
358 | 267 |
X:= nx - dX8; |
268 |
Y:= ny - dY8; |
|
184 | 269 |
for t:= 0 to 7 do |
270 |
{$include tunsetborder.inc} |
|
271 |
X:= nx; |
|
272 |
Y:= ny; |
|
273 |
for t:= 0 to ticks do |
|
274 |
begin |
|
275 |
X:= X + dX; |
|
276 |
Y:= Y + dY; |
|
351 | 277 |
tx:= hwRound(X); |
278 |
ty:= hwRound(Y); |
|
184 | 279 |
if ((ty and $FFFFFC00) = 0) and ((tx and $FFFFF800) = 0) then |
280 |
begin |
|
281 |
Land[ty, tx]:= 0; |
|
282 |
ClearLandPixel(ty, tx); |
|
283 |
end |
|
284 |
end; |
|
285 |
for t:= 0 to 7 do |
|
286 |
{$include tunsetborder.inc} |
|
287 |
nx:= nx - dY; |
|
288 |
ny:= ny + dX; |
|
289 |
end; |
|
290 |
||
291 |
for i:= 0 to 7 do |
|
292 |
begin |
|
358 | 293 |
X:= nx - dX8; |
294 |
Y:= ny - dY8; |
|
184 | 295 |
for t:= -8 to ticks + 8 do |
296 |
{$include tunsetborder.inc} |
|
297 |
nx:= nx - dY; |
|
298 |
ny:= ny + dX; |
|
299 |
end; |
|
300 |
||
301 |
if SDL_MustLock(LandSurface) then |
|
302 |
SDL_UnlockSurface(LandSurface) |
|
303 |
end; |
|
304 |
||
409 | 305 |
function TryPlaceOnLand(cpX, cpY: LongInt; Obj: TSprite; Frame: LongInt): boolean; |
495 | 306 |
var X, Y, bpp, h, w: LongInt; |
409 | 307 |
p: PByteArray; |
308 |
r, rr: TSDL_Rect; |
|
309 |
Image: PSDL_Surface; |
|
310 |
begin |
|
311 |
Image:= SpritesData[Obj].Surface; |
|
312 |
w:= SpritesData[Obj].Width; |
|
313 |
h:= SpritesData[Obj].Height; |
|
314 |
||
315 |
if SDL_MustLock(Image) then |
|
316 |
SDLTry(SDL_LockSurface(Image) >= 0, true); |
|
317 |
||
318 |
bpp:= Image^.format^.BytesPerPixel; |
|
319 |
TryDo(bpp <> 1, 'We don''t work with 8 bit surfaces', true); |
|
320 |
// Check that sprites fits free space |
|
321 |
p:= @(PByteArray(Image^.pixels)^[Image^.pitch * Frame * h]); |
|
322 |
case bpp of |
|
323 |
2: for y:= 0 to Pred(h) do |
|
324 |
begin |
|
325 |
for x:= 0 to Pred(w) do |
|
326 |
if PWord(@(p^[x * 2]))^ <> 0 then |
|
327 |
if (((cpY + y) and $FFFFFC00) <> 0) or |
|
328 |
(((cpX + x) and $FFFFF800) <> 0) or |
|
329 |
(Land[cpY + y, cpX + x] <> 0) then |
|
330 |
begin |
|
331 |
if SDL_MustLock(Image) then |
|
332 |
SDL_UnlockSurface(Image); |
|
333 |
exit(false) |
|
334 |
end; |
|
335 |
p:= @(p^[Image^.pitch]); |
|
336 |
end; |
|
337 |
3: for y:= 0 to Pred(h) do |
|
338 |
begin |
|
339 |
for x:= 0 to Pred(w) do |
|
340 |
if (p^[x * 3 + 0] <> 0) |
|
341 |
or (p^[x * 3 + 1] <> 0) |
|
342 |
or (p^[x * 3 + 2] <> 0) then |
|
343 |
if (((cpY + y) and $FFFFFC00) <> 0) or |
|
344 |
(((cpX + x) and $FFFFF800) <> 0) or |
|
345 |
(Land[cpY + y, cpX + x] <> 0) then |
|
346 |
begin |
|
347 |
if SDL_MustLock(Image) then |
|
348 |
SDL_UnlockSurface(Image); |
|
349 |
exit(false) |
|
350 |
end; |
|
351 |
p:= @(p^[Image^.pitch]); |
|
352 |
end; |
|
353 |
4: for y:= 0 to Pred(h) do |
|
354 |
begin |
|
355 |
for x:= 0 to Pred(w) do |
|
356 |
if PLongword(@(p^[x * 4]))^ <> 0 then |
|
357 |
if (((cpY + y) and $FFFFFC00) <> 0) or |
|
358 |
(((cpX + x) and $FFFFF800) <> 0) or |
|
359 |
(Land[cpY + y, cpX + x] <> 0) then |
|
360 |
begin |
|
361 |
if SDL_MustLock(Image) then |
|
362 |
SDL_UnlockSurface(Image); |
|
363 |
exit(false) |
|
364 |
end; |
|
365 |
p:= @(p^[Image^.pitch]); |
|
366 |
end; |
|
367 |
end; |
|
368 |
||
369 |
// Checked, now place |
|
370 |
p:= @(PByteArray(Image^.pixels)^[Image^.pitch * Frame * h]); |
|
371 |
case bpp of |
|
372 |
2: for y:= 0 to Pred(h) do |
|
373 |
begin |
|
374 |
for x:= 0 to Pred(w) do |
|
375 |
if PWord(@(p^[x * 2]))^ <> 0 then Land[cpY + y, cpX + x]:= COLOR_LAND; |
|
376 |
p:= @(p^[Image^.pitch]); |
|
377 |
end; |
|
378 |
3: for y:= 0 to Pred(h) do |
|
379 |
begin |
|
380 |
for x:= 0 to Pred(w) do |
|
381 |
if (p^[x * 3 + 0] <> 0) |
|
382 |
or (p^[x * 3 + 1] <> 0) |
|
383 |
or (p^[x * 3 + 2] <> 0) then Land[cpY + y, cpX + x]:= COLOR_LAND; |
|
384 |
p:= @(p^[Image^.pitch]); |
|
385 |
end; |
|
386 |
4: for y:= 0 to Pred(h) do |
|
387 |
begin |
|
388 |
for x:= 0 to Pred(w) do |
|
389 |
if PLongword(@(p^[x * 4]))^ <> 0 then Land[cpY + y, cpX + x]:= COLOR_LAND; |
|
390 |
p:= @(p^[Image^.pitch]); |
|
391 |
end; |
|
392 |
end; |
|
393 |
if SDL_MustLock(Image) then |
|
394 |
SDL_UnlockSurface(Image); |
|
395 |
||
396 |
// Draw sprite on Land surface |
|
397 |
r.x:= 0; |
|
398 |
r.y:= SpritesData[Obj].Height * Frame; |
|
399 |
r.w:= SpritesData[Obj].Width; |
|
400 |
r.h:= SpritesData[Obj].Height; |
|
401 |
rr.x:= cpX; |
|
402 |
rr.y:= cpY; |
|
403 |
SDL_UpperBlit(Image, @r, LandSurface, @rr); |
|
404 |
||
405 |
TryPlaceOnLand:= true |
|
406 |
end; |
|
407 |
||
184 | 408 |
|
409 |
end. |