author | koda |
Mon, 29 Mar 2010 23:20:34 +0000 | |
changeset 3165 | 3ec07a7d8456 |
parent 3141 | 70d65353bd60 |
child 3181 | 5c350b6c38f4 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2005-2008 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
183 | 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 |
|
4 | 8 |
* |
183 | 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. |
|
4 | 13 |
* |
183 | 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 |
|
4 | 17 |
*) |
18 |
||
2599 | 19 |
{$INCLUDE "options.inc"} |
2587
0dfa56a8513c
fix a segfault in the iphone simulator by moving options.inc at the beginning of the file
koda
parents:
2376
diff
changeset
|
20 |
|
4 | 21 |
unit uLand; |
22 |
interface |
|
3165
3ec07a7d8456
just some very sane stuff for the iphone port (plus some macro on pascal files)
koda
parents:
3141
diff
changeset
|
23 |
uses SDLh, uLandTemplates, uFloat, uConsts, GLunit; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2692
diff
changeset
|
24 |
|
1760 | 25 |
type TLandArray = packed array[0 .. LAND_HEIGHT - 1, 0 .. LAND_WIDTH - 1] of LongWord; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
26 |
TCollisionArray = packed array[0 .. LAND_HEIGHT - 1, 0 .. LAND_WIDTH - 1] of Word; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
27 |
TPreview = packed array[0..127, 0..31] of byte; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
28 |
TDirtyTag = packed array[0 .. LAND_HEIGHT div 32 - 1, 0 .. LAND_WIDTH div 32 - 1] of byte; |
4 | 29 |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2692
diff
changeset
|
30 |
var Land: TCollisionArray; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2692
diff
changeset
|
31 |
LandPixels: TLandArray; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2692
diff
changeset
|
32 |
LandDirty: TDirtyTag; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2692
diff
changeset
|
33 |
hasBorder: boolean; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2692
diff
changeset
|
34 |
hasGirders: boolean; |
2981 | 35 |
isMap: boolean; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2692
diff
changeset
|
36 |
playHeight, playWidth, leftX, rightX, topY, MaxHedgehogs: Longword; // idea is that a template can specify height/width. Or, a map, a height/width by the dimensions of the image. If the map has pixels near top of image, it triggers border. |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2692
diff
changeset
|
37 |
LandBackSurface: PSDL_Surface; |
4 | 38 |
|
3133 | 39 |
type direction = record x, y: integer; end; |
40 |
var DIR_N: direction = (x: 0; y: -1); |
|
41 |
var DIR_E: direction = (x: 1; y: 0); |
|
42 |
var DIR_S: direction = (x: 0; y: 1); |
|
43 |
var DIR_W: direction = (x: -1; y: 0); |
|
44 |
var DIR_NONE: direction = (x: 0; y: 0); |
|
45 |
||
3038 | 46 |
procedure initModule; |
47 |
procedure freeModule; |
|
37 | 48 |
procedure GenMap; |
766 | 49 |
function GenPreview: TPreview; |
367 | 50 |
procedure CheckLandDigest(s: shortstring); |
2692
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
2665
diff
changeset
|
51 |
function LandBackPixel(x, y: LongInt): LongWord; |
4 | 52 |
|
53 |
implementation |
|
1806 | 54 |
uses uConsole, uStore, uMisc, uRandom, uTeams, uLandObjects, uSHA, uIO, uAmmos, uLandTexture; |
4 | 55 |
|
3133 | 56 |
operator=(const a, b: direction) c: Boolean; |
57 |
begin |
|
58 |
c := (a.x = b.x) and (a.y = b.y); |
|
59 |
end; |
|
60 |
||
4 | 61 |
type TPixAr = record |
62 |
Count: Longword; |
|
22 | 63 |
ar: array[0..Pred(cMaxEdgePoints)] of TPoint; |
4 | 64 |
end; |
65 |
||
37 | 66 |
procedure LogLandDigest; |
316 | 67 |
var ctx: TSHA1Context; |
68 |
dig: TSHA1Digest; |
|
69 |
s: shortstring; |
|
37 | 70 |
begin |
316 | 71 |
SHA1Init(ctx); |
2157 | 72 |
SHA1UpdateLongwords(ctx, @Land, sizeof(Land) div 4); |
316 | 73 |
dig:= SHA1Final(ctx); |
367 | 74 |
s:='M{'+inttostr(dig[0])+':' |
316 | 75 |
+inttostr(dig[1])+':' |
76 |
+inttostr(dig[2])+':' |
|
77 |
+inttostr(dig[3])+':' |
|
78 |
+inttostr(dig[4])+'}'; |
|
699 | 79 |
CheckLandDigest(s); |
367 | 80 |
SendIPCRaw(@s[0], Length(s) + 1) |
81 |
end; |
|
82 |
||
83 |
procedure CheckLandDigest(s: shortstring); |
|
84 |
const digest: shortstring = ''; |
|
85 |
begin |
|
368 | 86 |
{$IFDEF DEBUGFILE} |
87 |
AddFileLog('CheckLandDigest: ' + s); |
|
88 |
{$ENDIF} |
|
367 | 89 |
if digest = '' then |
90 |
digest:= s |
|
91 |
else |
|
700 | 92 |
TryDo(s = digest, 'Different maps generated, sorry', true) |
37 | 93 |
end; |
94 |
||
371 | 95 |
procedure DrawLine(X1, Y1, X2, Y2: LongInt; Color: Longword); |
358 | 96 |
var |
371 | 97 |
eX, eY, dX, dY: LongInt; |
98 |
i, sX, sY, x, y, d: LongInt; |
|
358 | 99 |
begin |
100 |
eX:= 0; |
|
101 |
eY:= 0; |
|
102 |
dX:= X2 - X1; |
|
103 |
dY:= Y2 - Y1; |
|
104 |
||
105 |
if (dX > 0) then sX:= 1 |
|
106 |
else |
|
107 |
if (dX < 0) then |
|
108 |
begin |
|
109 |
sX:= -1; |
|
110 |
dX:= -dX |
|
111 |
end else sX:= dX; |
|
112 |
||
113 |
if (dY > 0) then sY:= 1 |
|
114 |
else |
|
115 |
if (dY < 0) then |
|
116 |
begin |
|
117 |
sY:= -1; |
|
118 |
dY:= -dY |
|
119 |
end else sY:= dY; |
|
120 |
||
121 |
if (dX > dY) then d:= dX |
|
122 |
else d:= dY; |
|
123 |
||
124 |
x:= X1; |
|
125 |
y:= Y1; |
|
2376 | 126 |
|
358 | 127 |
for i:= 0 to d do |
128 |
begin |
|
129 |
inc(eX, dX); |
|
130 |
inc(eY, dY); |
|
131 |
if (eX > d) then |
|
132 |
begin |
|
133 |
dec(eX, d); |
|
134 |
inc(x, sX); |
|
135 |
end; |
|
136 |
if (eY > d) then |
|
137 |
begin |
|
138 |
dec(eY, d); |
|
139 |
inc(y, sY); |
|
140 |
end; |
|
364 | 141 |
|
1753 | 142 |
if ((x and LAND_WIDTH_MASK) = 0) and ((y and LAND_HEIGHT_MASK) = 0) then |
358 | 143 |
Land[y, x]:= Color; |
144 |
end |
|
145 |
end; |
|
146 |
||
365 | 147 |
procedure DrawEdge(var pa: TPixAr; Color: Longword); |
371 | 148 |
var i: LongInt; |
4 | 149 |
begin |
365 | 150 |
i:= 0; |
4 | 151 |
with pa do |
371 | 152 |
while i < LongInt(Count) - 1 do |
365 | 153 |
if (ar[i + 1].X = NTPX) then inc(i, 2) |
154 |
else begin |
|
155 |
DrawLine(ar[i].x, ar[i].y, ar[i + 1].x, ar[i + 1].y, Color); |
|
156 |
inc(i) |
|
157 |
end |
|
22 | 158 |
end; |
159 |
||
365 | 160 |
procedure Vector(p1, p2, p3: TPoint; var Vx, Vy: hwFloat); |
161 |
var d1, d2, d: hwFloat; |
|
364 | 162 |
begin |
498 | 163 |
Vx:= int2hwFloat(p1.X - p3.X); |
164 |
Vy:= int2hwFloat(p1.Y - p3.Y); |
|
165 |
d:= DistanceI(p2.X - p1.X, p2.Y - p1.Y); |
|
166 |
d1:= DistanceI(p2.X - p3.X, p2.Y - p3.Y); |
|
365 | 167 |
d2:= Distance(Vx, Vy); |
168 |
if d1 < d then d:= d1; |
|
169 |
if d2 < d then d:= d2; |
|
170 |
d:= d * _1div3; |
|
171 |
if d2.QWordValue = 0 then |
|
172 |
begin |
|
498 | 173 |
Vx:= _0; |
174 |
Vy:= _0 |
|
365 | 175 |
end else |
176 |
begin |
|
498 | 177 |
d2:= _1 / d2; |
365 | 178 |
Vx:= Vx * d2; |
179 |
Vy:= Vy * d2; |
|
180 |
||
181 |
Vx:= Vx * d; |
|
182 |
Vy:= Vy * d |
|
183 |
end |
|
184 |
end; |
|
185 |
||
371 | 186 |
procedure AddLoopPoints(var pa, opa: TPixAr; StartI, EndI: LongInt; Delta: hwFloat); |
187 |
var i, pi, ni: LongInt; |
|
365 | 188 |
NVx, NVy, PVx, PVy: hwFloat; |
498 | 189 |
x1, x2, y1, y2: LongInt; |
190 |
tsq, tcb, t, r1, r2, r3, cx1, cx2, cy1, cy2: hwFloat; |
|
371 | 191 |
X, Y: LongInt; |
365 | 192 |
begin |
193 |
pi:= EndI; |
|
194 |
i:= StartI; |
|
195 |
ni:= Succ(StartI); |
|
196 |
Vector(opa.ar[pi], opa.ar[i], opa.ar[ni], NVx, NVy); |
|
197 |
repeat |
|
198 |
inc(pi); |
|
199 |
if pi > EndI then pi:= StartI; |
|
200 |
inc(i); |
|
201 |
if i > EndI then i:= StartI; |
|
202 |
inc(ni); |
|
203 |
if ni > EndI then ni:= StartI; |
|
204 |
PVx:= NVx; |
|
205 |
PVy:= NVy; |
|
206 |
Vector(opa.ar[pi], opa.ar[i], opa.ar[ni], NVx, NVy); |
|
207 |
||
208 |
x1:= opa.ar[pi].x; |
|
209 |
y1:= opa.ar[pi].y; |
|
210 |
x2:= opa.ar[i].x; |
|
211 |
y2:= opa.ar[i].y; |
|
498 | 212 |
cx1:= int2hwFloat(x1) - PVx; |
213 |
cy1:= int2hwFloat(y1) - PVy; |
|
214 |
cx2:= int2hwFloat(x2) + NVx; |
|
215 |
cy2:= int2hwFloat(y2) + NVy; |
|
216 |
t:= _0; |
|
364 | 217 |
while t.Round = 0 do |
218 |
begin |
|
219 |
tsq:= t * t; |
|
220 |
tcb:= tsq * t; |
|
498 | 221 |
r1:= (_1 - t*3 + tsq*3 - tcb); |
222 |
r2:= ( t*3 - tsq*6 + tcb*3); |
|
223 |
r3:= ( tsq*3 - tcb*3); |
|
430 | 224 |
X:= hwRound(r1 * x1 + r2 * cx1 + r3 * cx2 + tcb * x2); |
225 |
Y:= hwRound(r1 * y1 + r2 * cy1 + r3 * cy2 + tcb * y2); |
|
364 | 226 |
t:= t + Delta; |
227 |
pa.ar[pa.Count].x:= X; |
|
228 |
pa.ar[pa.Count].y:= Y; |
|
229 |
inc(pa.Count); |
|
230 |
TryDo(pa.Count <= cMaxEdgePoints, 'Edge points overflow', true) |
|
231 |
end; |
|
365 | 232 |
until i = StartI; |
233 |
pa.ar[pa.Count].x:= opa.ar[StartI].X; |
|
234 |
pa.ar[pa.Count].y:= opa.ar[StartI].Y; |
|
364 | 235 |
inc(pa.Count) |
236 |
end; |
|
237 |
||
365 | 238 |
procedure BezierizeEdge(var pa: TPixAr; Delta: hwFloat); |
495 | 239 |
var i, StartLoop: LongInt; |
365 | 240 |
opa: TPixAr; |
241 |
begin |
|
242 |
opa:= pa; |
|
243 |
pa.Count:= 0; |
|
244 |
i:= 0; |
|
245 |
StartLoop:= 0; |
|
371 | 246 |
while i < LongInt(opa.Count) do |
365 | 247 |
if (opa.ar[i + 1].X = NTPX) then |
248 |
begin |
|
249 |
AddLoopPoints(pa, opa, StartLoop, i, Delta); |
|
250 |
inc(i, 2); |
|
251 |
StartLoop:= i; |
|
252 |
pa.ar[pa.Count].X:= NTPX; |
|
253 |
inc(pa.Count); |
|
254 |
end else inc(i) |
|
255 |
end; |
|
256 |
||
371 | 257 |
procedure FillLand(x, y: LongInt); |
4 | 258 |
var Stack: record |
259 |
Count: Longword; |
|
260 |
points: array[0..8192] of record |
|
371 | 261 |
xl, xr, y, dir: LongInt; |
4 | 262 |
end |
263 |
end; |
|
264 |
||
371 | 265 |
procedure Push(_xl, _xr, _y, _dir: LongInt); |
4 | 266 |
begin |
75 | 267 |
TryDo(Stack.Count <= 8192, 'FillLand: stack overflow', true); |
4 | 268 |
_y:= _y + _dir; |
1760 | 269 |
if (_y < 0) or (_y >= LAND_HEIGHT) then exit; |
4 | 270 |
with Stack.points[Stack.Count] do |
271 |
begin |
|
272 |
xl:= _xl; |
|
273 |
xr:= _xr; |
|
274 |
y:= _y; |
|
275 |
dir:= _dir |
|
276 |
end; |
|
75 | 277 |
inc(Stack.Count) |
4 | 278 |
end; |
279 |
||
371 | 280 |
procedure Pop(var _xl, _xr, _y, _dir: LongInt); |
4 | 281 |
begin |
282 |
dec(Stack.Count); |
|
283 |
with Stack.points[Stack.Count] do |
|
284 |
begin |
|
285 |
_xl:= xl; |
|
286 |
_xr:= xr; |
|
287 |
_y:= y; |
|
288 |
_dir:= dir |
|
289 |
end |
|
290 |
end; |
|
291 |
||
371 | 292 |
var xl, xr, dir: LongInt; |
351 | 293 |
begin |
4 | 294 |
Stack.Count:= 0; |
295 |
xl:= x - 1; |
|
296 |
xr:= x; |
|
23 | 297 |
Push(xl, xr, y, -1); |
298 |
Push(xl, xr, y, 1); |
|
4 | 299 |
while Stack.Count > 0 do |
300 |
begin |
|
301 |
Pop(xl, xr, y, dir); |
|
51 | 302 |
while (xl > 0) and (Land[y, xl] <> 0) do dec(xl); |
1760 | 303 |
while (xr < LAND_WIDTH - 1) and (Land[y, xr] <> 0) do inc(xr); |
4 | 304 |
while (xl < xr) do |
305 |
begin |
|
51 | 306 |
while (xl <= xr) and (Land[y, xl] = 0) do inc(xl); |
4 | 307 |
x:= xl; |
51 | 308 |
while (xl <= xr) and (Land[y, xl] <> 0) do |
4 | 309 |
begin |
51 | 310 |
Land[y, xl]:= 0; |
4 | 311 |
inc(xl) |
312 |
end; |
|
22 | 313 |
if x < xl then |
314 |
begin |
|
315 |
Push(x, Pred(xl), y, dir); |
|
316 |
Push(x, Pred(xl), y,-dir); |
|
317 |
end; |
|
4 | 318 |
end; |
319 |
end; |
|
320 |
end; |
|
321 |
||
2647 | 322 |
function LandBackPixel(x, y: LongInt): LongWord; |
323 |
var p: PLongWordArray; |
|
324 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
325 |
if LandBackSurface = nil then LandBackPixel:= 0 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
326 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
327 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
328 |
p:= LandBackSurface^.pixels; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
329 |
LandBackPixel:= p^[LandBackSurface^.w * (y mod LandBackSurface^.h) + (x mod LandBackSurface^.w)];// or $FF000000; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
330 |
end |
2647 | 331 |
end; |
332 |
||
4 | 333 |
procedure ColorizeLand(Surface: PSDL_Surface); |
334 |
var tmpsurf: PSDL_Surface; |
|
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
335 |
r, rr: TSDL_Rect; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
336 |
x, yd, yu: LongInt; |
4 | 337 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
338 |
tmpsurf:= LoadImage(Pathz[ptCurrTheme] + '/LandTex', ifCritical or ifIgnoreCaps); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
339 |
r.y:= 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
340 |
while r.y < LAND_HEIGHT do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
341 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
342 |
r.x:= 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
343 |
while r.x < LAND_WIDTH do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
344 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
345 |
SDL_UpperBlit(tmpsurf, nil, Surface, @r); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
346 |
inc(r.x, tmpsurf^.w) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
347 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
348 |
inc(r.y, tmpsurf^.h) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
349 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
350 |
SDL_FreeSurface(tmpsurf); |
4 | 351 |
|
3038 | 352 |
// freed in freeModule() below |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
353 |
LandBackSurface:= LoadImage(Pathz[ptCurrTheme] + '/LandBackTex', ifIgnoreCaps or ifTransparent); |
2647 | 354 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
355 |
tmpsurf:= LoadImage(Pathz[ptCurrTheme] + '/Border', ifCritical or ifIgnoreCaps or ifTransparent); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
356 |
for x:= 0 to LAND_WIDTH - 1 do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
357 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
358 |
yd:= LAND_HEIGHT - 1; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
359 |
repeat |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
360 |
while (yd > 0) and (Land[yd, x] = 0) do dec(yd); |
2376 | 361 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
362 |
if (yd < 0) then yd:= 0; |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
363 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
364 |
while (yd < LAND_HEIGHT) and (Land[yd, x] <> 0) do inc(yd); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
365 |
dec(yd); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
366 |
yu:= yd; |
2376 | 367 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
368 |
while (yu > 0 ) and (Land[yu, x] <> 0) do dec(yu); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
369 |
while (yu < yd ) and (Land[yu, x] = 0) do inc(yu); |
2376 | 370 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
371 |
if (yd < LAND_HEIGHT - 1) and ((yd - yu) >= 16) then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
372 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
373 |
rr.x:= x; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
374 |
rr.y:= yd - 15; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
375 |
r.x:= x mod tmpsurf^.w; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
376 |
r.y:= 16; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
377 |
r.w:= 1; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
378 |
r.h:= 16; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
379 |
SDL_UpperBlit(tmpsurf, @r, Surface, @rr); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
380 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
381 |
if (yu > 0) then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
382 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
383 |
rr.x:= x; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
384 |
rr.y:= yu; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
385 |
r.x:= x mod tmpsurf^.w; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
386 |
r.y:= 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
387 |
r.w:= 1; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
388 |
r.h:= min(16, yd - yu + 1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
389 |
SDL_UpperBlit(tmpsurf, @r, Surface, @rr); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
390 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
391 |
yd:= yu - 1; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
392 |
until yd < 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
393 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
394 |
SDL_FreeSurface(tmpsurf); |
4 | 395 |
end; |
396 |
||
358 | 397 |
procedure SetPoints(var Template: TEdgeTemplate; var pa: TPixAr); |
371 | 398 |
var i: LongInt; |
22 | 399 |
begin |
23 | 400 |
with Template do |
401 |
begin |
|
358 | 402 |
pa.Count:= BasePointsCount; |
403 |
for i:= 0 to pred(pa.Count) do |
|
23 | 404 |
begin |
371 | 405 |
pa.ar[i].x:= BasePoints^[i].x + LongInt(GetRandom(BasePoints^[i].w)); |
1792 | 406 |
if pa.ar[i].x <> NTPX then |
407 |
pa.ar[i].x:= pa.ar[i].x + ((LAND_WIDTH - Template.TemplateWidth) div 2); |
|
1776 | 408 |
pa.ar[i].y:= BasePoints^[i].y + LongInt(GetRandom(BasePoints^[i].h)) + LAND_HEIGHT - Template.TemplateHeight |
23 | 409 |
end; |
1183
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
410 |
|
358 | 411 |
if canMirror then |
360 | 412 |
if getrandom(2) = 0 then |
358 | 413 |
begin |
414 |
for i:= 0 to pred(BasePointsCount) do |
|
365 | 415 |
if pa.ar[i].x <> NTPX then |
1760 | 416 |
pa.ar[i].x:= LAND_WIDTH - 1 - pa.ar[i].x; |
358 | 417 |
for i:= 0 to pred(FillPointsCount) do |
1760 | 418 |
FillPoints^[i].x:= LAND_WIDTH - 1 - FillPoints^[i].x; |
358 | 419 |
end; |
22 | 420 |
|
2338
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
421 |
(* Experiment in making this option more useful |
2376 | 422 |
if ((not isNegative) and (cTemplateFilter = 4)) or |
2338
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
423 |
(canFlip and (getrandom(2) = 0)) then |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
424 |
begin |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
425 |
for i:= 0 to pred(BasePointsCount) do |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
426 |
begin |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
427 |
pa.ar[i].y:= LAND_HEIGHT - 1 - pa.ar[i].y + (LAND_HEIGHT - TemplateHeight) * 2; |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
428 |
if pa.ar[i].y > LAND_HEIGHT - 1 then |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
429 |
pa.ar[i].y:= LAND_HEIGHT - 1; |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
430 |
end; |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
431 |
for i:= 0 to pred(FillPointsCount) do |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
432 |
begin |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
433 |
FillPoints^[i].y:= LAND_HEIGHT - 1 - FillPoints^[i].y + (LAND_HEIGHT - TemplateHeight) * 2; |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
434 |
if FillPoints^[i].y > LAND_HEIGHT - 1 then |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
435 |
FillPoints^[i].y:= LAND_HEIGHT - 1; |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
436 |
end; |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
437 |
end; |
2376 | 438 |
end |
2338
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
439 |
*) |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
440 |
// template recycling. Pull these off the floor a bit |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
441 |
if (not isNegative) and (cTemplateFilter = 4) then |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
442 |
begin |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
443 |
for i:= 0 to pred(BasePointsCount) do |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
444 |
begin |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
445 |
dec(pa.ar[i].y, 100); |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
446 |
if pa.ar[i].y < 0 then |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
447 |
pa.ar[i].y:= 0; |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
448 |
end; |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
449 |
for i:= 0 to pred(FillPointsCount) do |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
450 |
begin |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
451 |
dec(FillPoints^[i].y, 100); |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
452 |
if FillPoints^[i].y < 0 then |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
453 |
FillPoints^[i].y:= 0; |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
454 |
end; |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
455 |
end; |
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
456 |
|
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
457 |
if (canFlip and (getrandom(2) = 0)) then |
358 | 458 |
begin |
459 |
for i:= 0 to pred(BasePointsCount) do |
|
1760 | 460 |
pa.ar[i].y:= LAND_HEIGHT - 1 - pa.ar[i].y; |
358 | 461 |
for i:= 0 to pred(FillPointsCount) do |
1760 | 462 |
FillPoints^[i].y:= LAND_HEIGHT - 1 - FillPoints^[i].y; |
358 | 463 |
end; |
464 |
end |
|
4 | 465 |
end; |
67 | 466 |
|
561 | 467 |
function CheckIntersect(V1, V2, V3, V4: TPoint): boolean; |
468 |
var c1, c2, dm: LongInt; |
|
469 |
begin |
|
470 |
dm:= (V4.y - V3.y) * (V2.x - V1.x) - (V4.x - V3.x) * (V2.y - V1.y); |
|
471 |
c1:= (V4.x - V3.x) * (V1.y - V3.y) - (V4.y - V3.y) * (V1.x - V3.x); |
|
472 |
if dm = 0 then exit(false); |
|
473 |
||
474 |
c2:= (V2.x - V3.x) * (V1.y - V3.y) - (V2.y - V3.y) * (V1.x - V3.x); |
|
475 |
if dm > 0 then |
|
476 |
begin |
|
477 |
if (c1 < 0) or (c1 > dm) then exit(false); |
|
478 |
if (c2 < 0) or (c2 > dm) then exit(false) |
|
479 |
end else |
|
480 |
begin |
|
481 |
if (c1 > 0) or (c1 < dm) then exit(false); |
|
482 |
if (c2 > 0) or (c2 < dm) then exit(false) |
|
483 |
end; |
|
484 |
||
485 |
//AddFileLog('1 (' + inttostr(V1.x) + ',' + inttostr(V1.y) + ')x(' + inttostr(V2.x) + ',' + inttostr(V2.y) + ')'); |
|
486 |
//AddFileLog('2 (' + inttostr(V3.x) + ',' + inttostr(V3.y) + ')x(' + inttostr(V4.x) + ',' + inttostr(V4.y) + ')'); |
|
487 |
CheckIntersect:= true |
|
488 |
end; |
|
489 |
||
490 |
function CheckSelfIntersect(var pa: TPixAr; ind: Longword): boolean; |
|
491 |
var i: Longword; |
|
492 |
begin |
|
493 |
if (ind <= 0) or (ind >= Pred(pa.Count)) then exit(false); |
|
494 |
for i:= 1 to pa.Count - 3 do |
|
495 |
if (i <= ind - 1) or (i >= ind + 2) then |
|
496 |
begin |
|
497 |
if (i <> ind - 1) and |
|
498 |
CheckIntersect(pa.ar[ind], pa.ar[ind - 1], pa.ar[i], pa.ar[i - 1]) then exit(true); |
|
499 |
if (i <> ind + 2) and |
|
500 |
CheckIntersect(pa.ar[ind], pa.ar[ind + 1], pa.ar[i], pa.ar[i - 1]) then exit(true); |
|
501 |
end; |
|
502 |
CheckSelfIntersect:= false |
|
503 |
end; |
|
504 |
||
429 | 505 |
procedure RandomizePoints(var pa: TPixAr); |
364 | 506 |
const cEdge = 55; |
561 | 507 |
cMinDist = 8; |
371 | 508 |
var radz: array[0..Pred(cMaxEdgePoints)] of LongInt; |
561 | 509 |
i, k, dist, px, py: LongInt; |
364 | 510 |
begin |
511 |
radz[0]:= 0; |
|
512 |
for i:= 0 to Pred(pa.Count) do |
|
513 |
with pa.ar[i] do |
|
365 | 514 |
if x <> NTPX then |
515 |
begin |
|
1760 | 516 |
radz[i]:= Min(Max(x - cEdge, 0), Max(LAND_WIDTH - cEdge - x, 0)); |
517 |
radz[i]:= Min(radz[i], Min(Max(y - cEdge, 0), Max(LAND_HEIGHT - cEdge - y, 0))); |
|
365 | 518 |
if radz[i] > 0 then |
519 |
for k:= 0 to Pred(i) do |
|
364 | 520 |
begin |
429 | 521 |
dist:= Max(abs(x - pa.ar[k].x), abs(y - pa.ar[k].y)); |
365 | 522 |
radz[k]:= Max(0, Min((dist - cMinDist) div 2, radz[k])); |
523 |
radz[i]:= Max(0, Min(dist - radz[k] - cMinDist, radz[i])) |
|
524 |
end |
|
525 |
end; |
|
364 | 526 |
|
527 |
for i:= 0 to Pred(pa.Count) do |
|
528 |
with pa.ar[i] do |
|
1753 | 529 |
if ((x and LAND_WIDTH_MASK) = 0) and ((y and LAND_HEIGHT_MASK) = 0) then |
364 | 530 |
begin |
561 | 531 |
px:= x; |
532 |
py:= y; |
|
371 | 533 |
x:= x + LongInt(GetRandom(7) - 3) * (radz[i] * 5 div 7) div 3; |
561 | 534 |
y:= y + LongInt(GetRandom(7) - 3) * (radz[i] * 5 div 7) div 3; |
535 |
if CheckSelfIntersect(pa, i) then |
|
536 |
begin |
|
537 |
x:= px; |
|
538 |
y:= py |
|
539 |
end; |
|
364 | 540 |
end |
67 | 541 |
end; |
542 |
||
364 | 543 |
|
23 | 544 |
procedure GenBlank(var Template: TEdgeTemplate); |
4 | 545 |
var pa: TPixAr; |
23 | 546 |
i: Longword; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
547 |
y, x: Longword; |
4 | 548 |
begin |
1760 | 549 |
for y:= 0 to LAND_HEIGHT - 1 do |
550 |
for x:= 0 to LAND_WIDTH - 1 do |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
551 |
Land[y, x]:= COLOR_LAND; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
552 |
|
358 | 553 |
SetPoints(Template, pa); |
429 | 554 |
for i:= 1 to Template.BezierizeCount do |
555 |
begin |
|
431 | 556 |
BezierizeEdge(pa, _0_5); |
561 | 557 |
RandomizePoints(pa); |
429 | 558 |
RandomizePoints(pa) |
559 |
end; |
|
560 |
for i:= 1 to Template.RandPassesCount do RandomizePoints(pa); |
|
365 | 561 |
BezierizeEdge(pa, _0_1); |
27 | 562 |
|
365 | 563 |
DrawEdge(pa, 0); |
27 | 564 |
|
358 | 565 |
with Template do |
23 | 566 |
for i:= 0 to pred(FillPointsCount) do |
567 |
with FillPoints^[i] do |
|
89 | 568 |
FillLand(x, y); |
569 |
||
1773 | 570 |
DrawEdge(pa, COLOR_LAND); |
571 |
||
1792 | 572 |
MaxHedgehogs:= Template.MaxHedgehogs; |
1776 | 573 |
hasGirders:= Template.hasGirders; |
574 |
playHeight:= Template.TemplateHeight; |
|
575 |
playWidth:= Template.TemplateWidth; |
|
576 |
leftX:= ((LAND_WIDTH - playWidth) div 2); |
|
577 |
rightX:= (playWidth + ((LAND_WIDTH - playWidth) div 2)) - 1; |
|
578 |
topY:= LAND_HEIGHT - playHeight; |
|
579 |
||
1797 | 580 |
// force to only cavern even if a cavern map is invertable if cTemplateFilter = 4 ? |
2376 | 581 |
if (cTemplateFilter = 4) or |
2338
8f6508c97f3f
An experiment with increasing number of caves by selecting a few potential non-cave maps and adding to the cave map array. Ones selected here might not actually be that playable as caves.
nemo
parents:
2308
diff
changeset
|
582 |
(Template.canInvert and (getrandom(2) = 0)) or |
2376 | 583 |
(not Template.canInvert and Template.isNegative) then |
1776 | 584 |
begin |
585 |
hasBorder:= true; |
|
1773 | 586 |
for y:= 0 to LAND_HEIGHT - 1 do |
587 |
for x:= 0 to LAND_WIDTH - 1 do |
|
1776 | 588 |
if (y < topY) or (x < leftX) or (x > rightX) then |
589 |
Land[y, x]:= 0 |
|
590 |
else |
|
591 |
begin |
|
592 |
if Land[y, x] = 0 then |
|
593 |
Land[y, x]:= COLOR_LAND |
|
594 |
else if Land[y, x] = COLOR_LAND then |
|
595 |
Land[y, x]:= 0; |
|
596 |
end; |
|
597 |
end; |
|
23 | 598 |
end; |
599 |
||
371 | 600 |
function SelectTemplate: LongInt; |
161 | 601 |
begin |
1797 | 602 |
case cTemplateFilter of |
603 |
0: begin |
|
604 |
SelectTemplate:= getrandom(Succ(High(EdgeTemplates))); |
|
605 |
end; |
|
606 |
1: begin |
|
607 |
SelectTemplate:= SmallTemplates[getrandom(Succ(High(SmallTemplates)))]; |
|
608 |
end; |
|
609 |
2: begin |
|
610 |
SelectTemplate:= MediumTemplates[getrandom(Succ(High(MediumTemplates)))]; |
|
611 |
end; |
|
612 |
3: begin |
|
613 |
SelectTemplate:= LargeTemplates[getrandom(Succ(High(LargeTemplates)))]; |
|
614 |
end; |
|
615 |
4: begin |
|
616 |
SelectTemplate:= CavernTemplates[getrandom(Succ(High(CavernTemplates)))]; |
|
617 |
end; |
|
618 |
5: begin |
|
619 |
SelectTemplate:= WackyTemplates[getrandom(Succ(High(WackyTemplates)))]; |
|
620 |
end; |
|
621 |
end; |
|
622 |
WriteLnToConsole('Selected template #'+inttostr(SelectTemplate)+' using filter #'+inttostr(cTemplateFilter)); |
|
161 | 623 |
end; |
624 |
||
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
625 |
procedure LandSurface2LandPixels(Surface: PSDL_Surface); |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
626 |
var x, y: LongInt; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
627 |
p: PLongwordArray; |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1085
diff
changeset
|
628 |
begin |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
629 |
TryDo(Surface <> nil, 'Assert (LandSurface <> nil) failed', true); |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
630 |
|
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
631 |
if SDL_MustLock(Surface) then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
632 |
SDLTry(SDL_LockSurface(Surface) >= 0, true); |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1085
diff
changeset
|
633 |
|
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
634 |
p:= Surface^.pixels; |
1760 | 635 |
for y:= 0 to LAND_HEIGHT - 1 do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
636 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
637 |
for x:= 0 to LAND_WIDTH - 1 do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
638 |
if Land[y, x] <> 0 then LandPixels[y, x]:= p^[x] or AMask; |
2376 | 639 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
640 |
p:= @(p^[Surface^.pitch div 4]); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
641 |
end; |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1085
diff
changeset
|
642 |
|
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
643 |
if SDL_MustLock(Surface) then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
644 |
SDL_UnlockSurface(Surface); |
1754 | 645 |
end; |
646 |
||
3133 | 647 |
procedure GenMaze; |
648 |
const small_cell_size = 128; |
|
649 |
medium_cell_size = 192; |
|
650 |
large_cell_size = 256; |
|
3138 | 651 |
braidness = 10; |
3133 | 652 |
maze_inverted = false; //false makes more sense for now |
653 |
||
654 |
var x, y: Longint; |
|
655 |
bg_color, fg_color: Longint; |
|
656 |
cellsize: LongInt; //selected by the user in the gui |
|
657 |
seen_cells_x, seen_cells_y: Longint; //number of cells that can be visited by the generator, that is every second cell in x and y direction. the cells between there are walls that will be removed when we move from one cell to another |
|
658 |
start_x, start_y: Longint; //first visited cell, must be between 0 and seen_cells_x/y - 1 inclusive |
|
659 |
num_edges_x, num_edges_y: Longint; //number of resulting edges that need to be vertexificated |
|
660 |
num_cells_x, num_cells_y: Longint; //actual number of cells, depending on cell size |
|
661 |
seen_list: array of array of Boolean; |
|
662 |
xwalls: array of array of Boolean; |
|
663 |
ywalls: array of array of Boolean; |
|
664 |
x_edge_list: array of array of Boolean; |
|
665 |
y_edge_list: array of array of Boolean; |
|
666 |
maze: array of array of Boolean; |
|
667 |
pa: TPixAr; |
|
668 |
num_vertices: Longint; |
|
669 |
off_y: LongInt; |
|
670 |
||
671 |
function is_cell_seen(x: Longint; y: Longint): Boolean; |
|
672 |
begin |
|
673 |
if (x < 0) or (x >= seen_cells_x) or (y < 0) or (y >= seen_cells_y) then |
|
674 |
is_cell_seen := true |
|
675 |
else |
|
676 |
is_cell_seen := seen_list[x, y]; |
|
677 |
end; |
|
678 |
||
679 |
function is_x_edge(x, y: Longint): Boolean; |
|
680 |
begin |
|
681 |
if (x < 0) or (x > num_edges_x) or (y < 0) or (y > num_cells_y) then |
|
682 |
is_x_edge := false |
|
683 |
else |
|
684 |
is_x_edge := x_edge_list[x, y]; |
|
685 |
end; |
|
686 |
||
687 |
function is_y_edge(x, y: Longint): Boolean; |
|
688 |
begin |
|
689 |
if (x < 0) or (x > num_cells_x) or (y < 0) or (y > num_edges_y) then |
|
690 |
is_y_edge := false |
|
691 |
else |
|
692 |
is_y_edge := y_edge_list[x, y]; |
|
693 |
end; |
|
694 |
||
695 |
procedure see_cell(x: Longint; y: Longint); |
|
696 |
var dir: direction; |
|
697 |
tries: Longint; |
|
698 |
begin |
|
699 |
seen_list[x, y] := true; |
|
700 |
case GetRandom(4) of |
|
701 |
0: dir := DIR_N; |
|
702 |
1: dir := DIR_E; |
|
703 |
2: dir := DIR_S; |
|
704 |
3: dir := DIR_W; |
|
705 |
end; |
|
706 |
tries := 0; |
|
707 |
while (tries < 5) do |
|
708 |
begin |
|
709 |
if is_cell_seen(x + dir.x, y + dir.y) then |
|
710 |
begin |
|
711 |
//we have already seen the target cell, decide if we should remove the wall anyway |
|
712 |
//(or put a wall there if maze_inverted, but we're not doing that right now) |
|
713 |
if not maze_inverted and (GetRandom(braidness) = 0) then |
|
714 |
//or just warn that inverted+braid+indestructable terrain != good idea |
|
715 |
begin |
|
716 |
case dir.x of |
|
717 |
-1: if x > 0 then ywalls[x-1, y] := false; |
|
718 |
1: if x < seen_cells_x - 1 then ywalls[x, y] := false; |
|
719 |
end; |
|
720 |
case dir.y of |
|
721 |
-1: if y > 0 then xwalls[x, y-1] := false; |
|
722 |
1: if y < seen_cells_y - 1 then xwalls[x, y] := false; |
|
723 |
end; |
|
724 |
end; |
|
725 |
if dir = DIR_N then //TODO might want to randomize that |
|
726 |
dir := DIR_E |
|
727 |
else if dir = DIR_E then |
|
728 |
dir := DIR_S |
|
729 |
else if dir = DIR_S then |
|
730 |
dir := DIR_W |
|
731 |
else |
|
732 |
dir := DIR_N; |
|
733 |
end |
|
734 |
else //cell wasn't seen yet, go there |
|
735 |
begin |
|
736 |
case dir.y of |
|
737 |
-1: xwalls[x, y-1] := false; |
|
738 |
1: xwalls[x, y] := false; |
|
739 |
end; |
|
740 |
case dir.x of |
|
741 |
-1: ywalls[x-1, y] := false; |
|
742 |
1: ywalls[x, y] := false; |
|
743 |
end; |
|
744 |
see_cell(x + dir.x, y + dir.y); |
|
745 |
end; |
|
746 |
||
747 |
tries := tries + 1; |
|
748 |
end; |
|
749 |
||
750 |
end; |
|
751 |
procedure add_vertex(x, y: Longint); |
|
3138 | 752 |
var tmp_x, tmp_y: Longint; |
3133 | 753 |
begin |
754 |
if x = NTPX then |
|
755 |
begin |
|
3138 | 756 |
if pa.ar[num_vertices - 6].x = NTPX then |
757 |
begin |
|
758 |
num_vertices := num_vertices - 6; |
|
759 |
end |
|
760 |
else |
|
761 |
begin |
|
762 |
pa.ar[num_vertices].x := NTPX; |
|
763 |
pa.ar[num_vertices].y := 0; |
|
764 |
end |
|
3133 | 765 |
end |
766 |
else |
|
767 |
begin |
|
3138 | 768 |
if x mod 2 = 0 then tmp_x := cellsize |
769 |
else tmp_x := cellsize * 2 div 3; |
|
770 |
if y mod 2 = 0 then tmp_y := cellsize |
|
771 |
else tmp_y := cellsize * 2 div 3; |
|
772 |
||
773 |
pa.ar[num_vertices].x := (x-1)*cellsize + tmp_x; |
|
774 |
pa.ar[num_vertices].y := (y-1)*cellsize + tmp_y + off_y; |
|
3133 | 775 |
end; |
776 |
num_vertices := num_vertices + 1; |
|
777 |
end; |
|
778 |
||
779 |
procedure add_edge(x, y: Longint; dir: direction); |
|
780 |
var i: integer; |
|
781 |
begin |
|
782 |
if dir = DIR_N then |
|
783 |
begin |
|
784 |
dir := DIR_W |
|
785 |
end |
|
786 |
else if dir = DIR_E then |
|
787 |
begin |
|
788 |
dir := DIR_N |
|
789 |
end |
|
790 |
else if dir = DIR_S then |
|
791 |
begin |
|
792 |
dir := DIR_E |
|
793 |
end |
|
794 |
else |
|
795 |
begin |
|
796 |
dir := DIR_S; |
|
797 |
end; |
|
798 |
||
799 |
for i := 0 to 3 do |
|
800 |
begin |
|
801 |
if dir = DIR_N then |
|
802 |
dir := DIR_E |
|
803 |
else if dir = DIR_E then |
|
804 |
dir := DIR_S |
|
805 |
else if dir = DIR_S then |
|
806 |
dir := DIR_W |
|
807 |
else |
|
808 |
dir := DIR_N; |
|
809 |
||
810 |
if (dir = DIR_N) and is_x_edge(x, y) then |
|
811 |
begin |
|
812 |
x_edge_list[x, y] := false; |
|
813 |
add_vertex(x+1, y); |
|
814 |
add_edge(x, y-1, DIR_N); |
|
815 |
break; |
|
816 |
end; |
|
817 |
||
818 |
if (dir = DIR_E) and is_y_edge(x+1, y) then |
|
819 |
begin |
|
820 |
y_edge_list[x+1, y] := false; |
|
821 |
add_vertex(x+2, y+1); |
|
822 |
add_edge(x+1, y, DIR_E); |
|
823 |
break; |
|
824 |
end; |
|
825 |
||
826 |
if (dir = DIR_S) and is_x_edge(x, y+1) then |
|
827 |
begin |
|
828 |
x_edge_list[x, y+1] := false; |
|
829 |
add_vertex(x+1, y+2); |
|
830 |
add_edge(x, y+1, DIR_S); |
|
831 |
break; |
|
832 |
end; |
|
833 |
||
834 |
if (dir = DIR_W) and is_y_edge(x, y) then |
|
835 |
begin |
|
836 |
y_edge_list[x, y] := false; |
|
837 |
add_vertex(x, y+1); |
|
838 |
add_edge(x-1, y, DIR_W); |
|
839 |
break; |
|
840 |
end; |
|
841 |
end; |
|
842 |
||
843 |
end; |
|
844 |
||
845 |
begin |
|
846 |
case cMazeSize of |
|
847 |
0: cellsize := small_cell_size; |
|
848 |
1: cellsize := medium_cell_size; |
|
849 |
2: cellsize := large_cell_size; |
|
850 |
end; |
|
851 |
||
852 |
num_cells_x := LAND_WIDTH div cellsize; |
|
853 |
if num_cells_x mod 2 = 0 then num_cells_x := num_cells_x - 1; //needs to be odd |
|
854 |
num_cells_y := LAND_HEIGHT div cellsize; |
|
855 |
if num_cells_y mod 2 = 0 then num_cells_y := num_cells_y - 1; |
|
856 |
num_edges_x := num_cells_x - 1; |
|
857 |
num_edges_y := num_cells_y - 1; |
|
858 |
seen_cells_x := num_cells_x div 2; |
|
859 |
seen_cells_y := num_cells_y div 2; |
|
860 |
||
861 |
SetLength(seen_list, seen_cells_x, seen_cells_y); |
|
862 |
SetLength(xwalls, seen_cells_x, seen_cells_y - 1); |
|
863 |
SetLength(ywalls, seen_cells_x - 1, seen_cells_y); |
|
864 |
SetLength(x_edge_list, num_edges_x, num_cells_y); |
|
865 |
SetLength(y_edge_list, num_cells_x, num_edges_y); |
|
866 |
SetLength(maze, num_cells_x, num_cells_y); |
|
867 |
||
868 |
num_vertices := 0; |
|
869 |
||
870 |
(* |
|
871 |
TODO - Inverted maze |
|
872 |
if maze_inverted then |
|
873 |
begin |
|
874 |
bg_color := 0; |
|
875 |
fg_color := COLOR_LAND; |
|
876 |
end |
|
877 |
else |
|
878 |
begin*) |
|
879 |
bg_color := COLOR_LAND; |
|
880 |
fg_color := 0; |
|
881 |
//end; |
|
882 |
||
883 |
playHeight := num_cells_y * cellsize; |
|
884 |
playWidth := num_cells_x * cellsize; |
|
885 |
off_y := LAND_HEIGHT - playHeight; |
|
886 |
||
887 |
for x := 0 to playWidth do |
|
888 |
for y := 0 to off_y - 1 do |
|
889 |
Land[y, x] := fg_color; |
|
890 |
||
891 |
for x := 0 to playWidth do |
|
892 |
for y := off_y to LAND_HEIGHT - 1 do |
|
893 |
Land[y, x] := bg_color; |
|
894 |
||
895 |
for y := 0 to num_cells_y - 1 do |
|
896 |
for x := 0 to num_cells_x - 1 do |
|
897 |
maze[x, y] := false; |
|
898 |
||
899 |
start_x := GetRandom(seen_cells_x); |
|
900 |
start_y := GetRandom(seen_cells_y); |
|
901 |
||
902 |
for x := 0 to seen_cells_x - 1 do |
|
903 |
for y := 0 to seen_cells_y - 2 do |
|
904 |
xwalls[x, y] := true; |
|
905 |
||
906 |
for x := 0 to seen_cells_x - 2 do |
|
907 |
for y := 0 to seen_cells_y - 1 do |
|
908 |
ywalls[x, y] := true; |
|
909 |
||
910 |
for x := 0 to seen_cells_x - 1 do |
|
911 |
for y := 0 to seen_cells_y - 1 do |
|
912 |
seen_list[x, y] := false; |
|
913 |
||
914 |
for x := 0 to num_edges_x - 1 do |
|
915 |
for y := 0 to num_cells_y - 1 do |
|
916 |
x_edge_list[x, y] := false; |
|
917 |
||
918 |
for x := 0 to num_cells_x - 1 do |
|
919 |
for y := 0 to num_edges_y - 1 do |
|
920 |
y_edge_list[x, y] := false; |
|
921 |
||
922 |
see_cell(start_x, start_y); |
|
923 |
||
924 |
for x := 0 to seen_cells_x - 1 do |
|
925 |
for y := 0 to seen_cells_y - 1 do |
|
926 |
if seen_list[x, y] then |
|
927 |
maze[(x+1)*2-1, (y+1)*2-1] := true; |
|
928 |
||
929 |
for x := 0 to seen_cells_x - 1 do |
|
930 |
for y := 0 to seen_cells_y - 2 do |
|
931 |
if not xwalls[x, y] then |
|
932 |
maze[x*2 + 1, y*2 + 2] := true; |
|
933 |
||
934 |
||
935 |
for x := 0 to seen_cells_x - 2 do |
|
936 |
for y := 0 to seen_cells_y - 1 do |
|
937 |
if not ywalls[x, y] then |
|
938 |
maze[x*2 + 2, y*2 + 1] := true; |
|
939 |
||
940 |
for x := 0 to num_edges_x - 1 do |
|
941 |
for y := 0 to num_cells_y - 1 do |
|
942 |
if maze[x, y] xor maze[x+1, y] then |
|
943 |
x_edge_list[x, y] := true |
|
944 |
else |
|
945 |
x_edge_list[x, y] := false; |
|
946 |
||
947 |
for x := 0 to num_cells_x - 1 do |
|
948 |
for y := 0 to num_edges_y - 1 do |
|
949 |
if maze[x, y] xor maze[x, y+1] then |
|
950 |
y_edge_list[x, y] := true |
|
951 |
else |
|
952 |
y_edge_list[x, y] := false; |
|
953 |
||
954 |
for x := 0 to num_edges_x - 1 do |
|
955 |
for y := 0 to num_cells_y - 1 do |
|
956 |
if x_edge_list[x, y] then |
|
957 |
begin |
|
958 |
x_edge_list[x, y] := false; |
|
959 |
add_vertex(x+1, y+1); |
|
960 |
add_vertex(x+1, y); |
|
961 |
add_edge(x, y-1, DIR_N); |
|
962 |
add_vertex(NTPX, 0); |
|
963 |
end; |
|
964 |
||
965 |
pa.count := num_vertices; |
|
966 |
||
967 |
RandomizePoints(pa); |
|
968 |
BezierizeEdge(pa, _0_25); |
|
969 |
RandomizePoints(pa); |
|
3138 | 970 |
BezierizeEdge(pa, _0_25); |
3133 | 971 |
|
972 |
DrawEdge(pa, 0); |
|
973 |
||
3138 | 974 |
x := 0; |
975 |
while Land[cellsize div 2 + cellsize + off_y, x] = bg_color do |
|
976 |
x := x + 1; |
|
977 |
while Land[cellsize div 2 + cellsize + off_y, x] = fg_color do |
|
978 |
x := x + 1; |
|
979 |
FillLand(x+1, cellsize div 2 + cellsize + off_y); |
|
3133 | 980 |
|
981 |
MaxHedgehogs:= 32; |
|
3141
70d65353bd60
prg adds option to toggle girders in maze, adjusts some frontend strings
nemo
parents:
3138
diff
changeset
|
982 |
if (GameFlags and gfDisableGirders) <> 0 then hasGirders:= false |
70d65353bd60
prg adds option to toggle girders in maze, adjusts some frontend strings
nemo
parents:
3138
diff
changeset
|
983 |
else hasGirders := true; |
3133 | 984 |
leftX:= 0; |
985 |
rightX:= playWidth; |
|
986 |
topY:= off_y; |
|
987 |
hasBorder := true; |
|
988 |
end; |
|
989 |
||
1754 | 990 |
procedure GenLandSurface; |
991 |
var tmpsurf: PSDL_Surface; |
|
992 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
993 |
WriteLnToConsole('Generating land...'); |
3133 | 994 |
case cMapGen of |
995 |
0: GenBlank(EdgeTemplates[SelectTemplate]); |
|
996 |
1: GenMaze; |
|
997 |
end; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
998 |
AddProgress(); |
1754 | 999 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1000 |
tmpsurf:= SDL_CreateRGBSurface(SDL_SWSURFACE, LAND_WIDTH, LAND_HEIGHT, 32, RMask, GMask, BMask, 0); |
1754 | 1001 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1002 |
TryDo(tmpsurf <> nil, 'Error creating pre-land surface', true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1003 |
ColorizeLand(tmpsurf); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1004 |
AddOnLandObjects(tmpsurf); |
1754 | 1005 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1006 |
LandSurface2LandPixels(tmpsurf); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1007 |
SDL_FreeSurface(tmpsurf); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1008 |
AddProgress(); |
1754 | 1009 |
end; |
1010 |
||
1011 |
procedure MakeFortsMap; |
|
1012 |
var tmpsurf: PSDL_Surface; |
|
1013 |
begin |
|
2866 | 1014 |
MaxHedgehogs:= 32; |
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
1015 |
// For now, defining a fort is playable area as 3072x1200 - there are no tall forts. The extra height is to avoid triggering border with current code, also if user turns on a border, it will give a bit more maneuvering room. |
1784 | 1016 |
playHeight:= 1200; |
2096 | 1017 |
playWidth:= 2560; |
1776 | 1018 |
leftX:= (LAND_WIDTH - playWidth) div 2; |
1019 |
rightX:= ((playWidth + (LAND_WIDTH - playWidth) div 2) - 1); |
|
1020 |
topY:= LAND_HEIGHT - playHeight; |
|
1021 |
||
1754 | 1022 |
WriteLnToConsole('Generating forts land...'); |
1023 |
||
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
1024 |
tmpsurf:= LoadImage(Pathz[ptForts] + '/' + ClansArray[0]^.Teams[0]^.FortName + 'L', ifAlpha or ifCritical or ifTransparent or ifIgnoreCaps); |
1784 | 1025 |
BlitImageAndGenerateCollisionInfo(leftX+150, LAND_HEIGHT - tmpsurf^.h, tmpsurf^.w, tmpsurf); |
1754 | 1026 |
SDL_FreeSurface(tmpsurf); |
1027 |
||
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
1028 |
tmpsurf:= LoadImage(Pathz[ptForts] + '/' + ClansArray[1]^.Teams[0]^.FortName + 'R', ifAlpha or ifCritical or ifTransparent or ifIgnoreCaps); |
1784 | 1029 |
BlitImageAndGenerateCollisionInfo(rightX - 150 - tmpsurf^.w, LAND_HEIGHT - tmpsurf^.h, tmpsurf^.w, tmpsurf); |
1754 | 1030 |
SDL_FreeSurface(tmpsurf); |
1031 |
end; |
|
1032 |
||
1792 | 1033 |
// Hi unC0Rr. |
1034 |
// This is a function that Tiy assures me would not be good for gameplay. |
|
1035 |
// It allows the setting of arbitrary portions of landscape as indestructible, or regular, or even blank. |
|
2154
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
1036 |
// He said I could add it here only when I swore it would not impact gameplay. Which, as far as I can tell, is true. |
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
1037 |
// I would just like to play with it with my friends if you do not mind. |
1792 | 1038 |
// Can allow for amusing maps. |
1039 |
procedure LoadMask; |
|
1040 |
var tmpsurf: PSDL_Surface; |
|
1041 |
p: PLongwordArray; |
|
1042 |
x, y, cpX, cpY: Longword; |
|
1043 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1044 |
tmpsurf:= LoadImage(Pathz[ptMapCurrent] + '/mask', ifAlpha or ifTransparent or ifIgnoreCaps); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1045 |
if (tmpsurf <> nil) and (tmpsurf^.w <= LAND_WIDTH) and (tmpsurf^.h <= LAND_HEIGHT) and (tmpsurf^.format^.BytesPerPixel = 4) then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1046 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1047 |
cpX:= (LAND_WIDTH - tmpsurf^.w) div 2; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1048 |
cpY:= LAND_HEIGHT - tmpsurf^.h; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1049 |
if SDL_MustLock(tmpsurf) then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1050 |
SDLTry(SDL_LockSurface(tmpsurf) >= 0, true); |
2376 | 1051 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1052 |
p:= tmpsurf^.pixels; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1053 |
for y:= 0 to Pred(tmpsurf^.h) do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1054 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1055 |
for x:= 0 to Pred(tmpsurf^.w) do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1056 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1057 |
if ((AMask and p^[x]) = 0) then // Tiy was having trouble generating transparent black |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1058 |
Land[cpY + y, cpX + x]:= 0 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1059 |
else if p^[x] = (AMask or RMask) then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1060 |
Land[cpY + y, cpX + x]:= COLOR_INDESTRUCTIBLE |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1061 |
else if p^[x] = $FFFFFFFF then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1062 |
Land[cpY + y, cpX + x]:= COLOR_LAND; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1063 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1064 |
p:= @(p^[tmpsurf^.pitch div 4]); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1065 |
end; |
2243
b4764993f833
additional touch support and nemo's reduced land array size
koda
parents:
2240
diff
changeset
|
1066 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1067 |
if SDL_MustLock(tmpsurf) then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1068 |
SDL_UnlockSurface(tmpsurf); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1069 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1070 |
if (tmpsurf <> nil) then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1071 |
SDL_FreeSurface(tmpsurf); |
1792 | 1072 |
end; |
1073 |
||
1754 | 1074 |
procedure LoadMap; |
1075 |
var tmpsurf: PSDL_Surface; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1076 |
s: shortstring; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1077 |
f: textfile; |
1754 | 1078 |
begin |
2981 | 1079 |
isMap:= true; |
1754 | 1080 |
WriteLnToConsole('Loading land from file...'); |
1081 |
AddProgress; |
|
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
1082 |
tmpsurf:= LoadImage(Pathz[ptMapCurrent] + '/map', ifAlpha or ifCritical or ifTransparent or ifIgnoreCaps); |
1760 | 1083 |
TryDo((tmpsurf^.w <= LAND_WIDTH) and (tmpsurf^.h <= LAND_HEIGHT), 'Map dimensions too big!', true); |
1754 | 1084 |
|
2154
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
1085 |
// unC0Rr - should this be passed from the GUI? I am not sure which layer does what |
1792 | 1086 |
s:= Pathz[ptMapCurrent] + '/map.cfg'; |
1087 |
WriteLnToConsole('Fetching map HH limit'); |
|
1088 |
Assign(f, s); |
|
2747 | 1089 |
filemode:= 0; // readonly |
1792 | 1090 |
Reset(f); |
1795 | 1091 |
Readln(f); |
1092 |
if not eof(f) then Readln(f, MaxHedgehogs); |
|
1093 |
||
2705
2b5625c4ec16
fix a nasty 196 bytes memory leak in engine, plus other stuff for iphone frontend
koda
parents:
2699
diff
changeset
|
1094 |
if (MaxHedgehogs = 0) then MaxHedgehogs:= 18; |
1792 | 1095 |
|
1776 | 1096 |
playHeight:= tmpsurf^.h; |
1097 |
playWidth:= tmpsurf^.w; |
|
1098 |
leftX:= (LAND_WIDTH - playWidth) div 2; |
|
1099 |
rightX:= (playWidth + ((LAND_WIDTH - playWidth) div 2)) - 1; |
|
1100 |
topY:= LAND_HEIGHT - playHeight; |
|
1101 |
||
1754 | 1102 |
TryDo(tmpsurf^.format^.BytesPerPixel = 4, 'Map should be 32bit', true); |
1103 |
||
1772 | 1104 |
BlitImageAndGenerateCollisionInfo( |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1105 |
(LAND_WIDTH - tmpsurf^.w) div 2, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1106 |
LAND_HEIGHT - tmpsurf^.h, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1107 |
tmpsurf^.w, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1108 |
tmpsurf); |
1754 | 1109 |
SDL_FreeSurface(tmpsurf); |
1792 | 1110 |
|
1111 |
LoadMask; |
|
1754 | 1112 |
end; |
1113 |
||
1114 |
procedure GenMap; |
|
1784 | 1115 |
var x, y, w, c: Longword; |
1754 | 1116 |
begin |
1776 | 1117 |
hasBorder:= false; |
2891
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2866
diff
changeset
|
1118 |
|
1754 | 1119 |
LoadThemeConfig; |
2981 | 1120 |
isMap:= false; |
1754 | 1121 |
if (GameFlags and gfForts) = 0 then |
1122 |
if Pathz[ptMapCurrent] <> '' then LoadMap |
|
1123 |
else GenLandSurface |
|
1124 |
else MakeFortsMap; |
|
1125 |
AddProgress; |
|
1760 | 1126 |
|
1754 | 1127 |
{$IFDEF DEBUGFILE}LogLandDigest;{$ENDIF} |
1753 | 1128 |
|
1768 | 1129 |
// check for land near top |
1784 | 1130 |
c:= 0; |
1131 |
if (GameFlags and gfBorder) <> 0 then |
|
1132 |
hasBorder:= true |
|
1133 |
else |
|
1134 |
for y:= topY to topY + 5 do |
|
1135 |
for x:= leftX to rightX do |
|
1136 |
if Land[y, x] <> 0 then |
|
1137 |
begin |
|
1138 |
inc(c); |
|
1139 |
if c > 200 then // avoid accidental triggering |
|
1140 |
begin |
|
1141 |
hasBorder:= true; |
|
1142 |
break; |
|
1143 |
end; |
|
1144 |
end; |
|
1768 | 1145 |
|
1776 | 1146 |
if hasBorder then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1147 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1148 |
for y:= 0 to LAND_HEIGHT - 1 do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1149 |
for x:= 0 to LAND_WIDTH - 1 do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1150 |
if (y < topY) or (x < leftX) or (x > rightX) then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1151 |
Land[y, x]:= COLOR_INDESTRUCTIBLE; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1152 |
// experiment hardcoding cave |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1153 |
// also try basing cave dimensions on map/template dimensions, if they exist |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1154 |
for w:= 0 to 5 do // width of 3 allowed hogs to be knocked through with grenade |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1155 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1156 |
for y:= topY to LAND_HEIGHT - 1 do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1157 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1158 |
Land[y, leftX + w]:= COLOR_INDESTRUCTIBLE; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1159 |
Land[y, rightX - w]:= COLOR_INDESTRUCTIBLE; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1160 |
if (y + w) mod 32 < 16 then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1161 |
c:= AMask |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1162 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1163 |
c:= AMask or RMask or GMask; // FF00FFFF |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1164 |
LandPixels[y, leftX + w]:= c; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1165 |
LandPixels[y, rightX - w]:= c; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1166 |
end; |
1768 | 1167 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1168 |
for x:= leftX to rightX do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1169 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1170 |
Land[topY + w, x]:= COLOR_INDESTRUCTIBLE; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1171 |
if (x + w) mod 32 < 16 then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1172 |
c:= AMask |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1173 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1174 |
c:= AMask or RMask or GMask; // FF00FFFF |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1175 |
LandPixels[topY + w, x]:= c; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1176 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1177 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1178 |
end; |
1768 | 1179 |
|
2891
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2866
diff
changeset
|
1180 |
if (GameFlags and gfDisableGirders) <> 0 then hasGirders:= false; |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2866
diff
changeset
|
1181 |
|
1776 | 1182 |
if ((GameFlags and gfForts) = 0) and (Pathz[ptMapCurrent] = '') then AddObjects; |
1183 |
||
3058 | 1184 |
FreeLandObjects; |
1185 |
||
1807 | 1186 |
UpdateLandTexture(0, LAND_WIDTH, 0, LAND_HEIGHT); |
37 | 1187 |
end; |
1188 |
||
566 | 1189 |
function GenPreview: TPreview; |
371 | 1190 |
var x, y, xx, yy, t, bit: LongInt; |
566 | 1191 |
Preview: TPreview; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
1192 |
begin |
160 | 1193 |
WriteLnToConsole('Generating preview...'); |
3133 | 1194 |
case cMapGen of |
1195 |
0: GenBlank(EdgeTemplates[SelectTemplate]); |
|
1196 |
1: GenMaze; |
|
1197 |
end; |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
1198 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
1199 |
for y:= 0 to 127 do |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
1200 |
for x:= 0 to 31 do |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
1201 |
begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
1202 |
Preview[y, x]:= 0; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
1203 |
for bit:= 0 to 7 do |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
1204 |
begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
1205 |
t:= 0; |
1760 | 1206 |
for yy:= y * (LAND_HEIGHT div 128) to y * (LAND_HEIGHT div 128) + 7 do |
1207 |
for xx:= x * (LAND_WIDTH div 32) + bit * 8 to x * (LAND_WIDTH div 32) + bit * 8 + 7 do |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
1208 |
if Land[yy, xx] <> 0 then inc(t); |
351 | 1209 |
if t > 8 then Preview[y, x]:= Preview[y, x] or ($80 shr bit) |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
1210 |
end |
566 | 1211 |
end; |
1768 | 1212 |
GenPreview:= Preview |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
1213 |
end; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
1214 |
|
3038 | 1215 |
procedure initModule; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2692
diff
changeset
|
1216 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
1217 |
LandBackSurface:= nil; |
3055
f542a36ef6c0
fix a build error on 10.5, LandPixels properly initialized
koda
parents:
3048
diff
changeset
|
1218 |
FillChar(LandPixels, sizeof(TLandArray), 0); |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2692
diff
changeset
|
1219 |
end; |
51 | 1220 |
|
3038 | 1221 |
procedure freeModule; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2692
diff
changeset
|
1222 |
begin |
3055
f542a36ef6c0
fix a build error on 10.5, LandPixels properly initialized
koda
parents:
3048
diff
changeset
|
1223 |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2692
diff
changeset
|
1224 |
end; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2692
diff
changeset
|
1225 |
|
4 | 1226 |
end. |