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