author | koda |
Wed, 08 Jul 2009 15:03:57 +0000 | |
changeset 2243 | b4764993f833 |
parent 2240 | 7ce9e6b7be3b |
child 2244 | 853a1db1cff6 |
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 |
||
19 |
unit uLand; |
|
20 |
interface |
|
1906 | 21 |
uses SDLh, uLandTemplates, uFloat, |
2152 | 22 |
{$IFDEF GLES11} |
1906 | 23 |
gles11, |
24 |
{$ELSE} |
|
25 |
GL, |
|
26 |
{$ENDIF} |
|
27 |
uConsts; |
|
4 | 28 |
{$include options.inc} |
1760 | 29 |
type TLandArray = packed array[0 .. LAND_HEIGHT - 1, 0 .. LAND_WIDTH - 1] of LongWord; |
2243
b4764993f833
additional touch support and nemo's reduced land array size
koda
parents:
2240
diff
changeset
|
30 |
TCollisionArray = packed array[0 .. LAND_HEIGHT - 1, 0 .. LAND_WIDTH - 1] of Word; |
1760 | 31 |
TPreview = packed array[0..127, 0..31] of byte; |
32 |
TDirtyTag = packed array[0 .. LAND_HEIGHT div 32 - 1, 0 .. LAND_WIDTH div 32 - 1] of byte; |
|
4 | 33 |
|
2243
b4764993f833
additional touch support and nemo's reduced land array size
koda
parents:
2240
diff
changeset
|
34 |
var Land: TCollisionArray; |
768 | 35 |
LandPixels: TLandArray; |
1738
00e8dadce69a
Add nemo's depixeling patch. Still needs some polishing for the case when we delete pixel on which hedgehog stays
unc0rr
parents:
1537
diff
changeset
|
36 |
LandDirty: TDirtyTag; |
1776 | 37 |
hasBorder: boolean; // I'm putting this here for now. I'd like it to be toggleable by user (so user can set a border on a non-cave map) - will turn off air attacks |
2152 | 38 |
hasGirders: boolean; // I think should be on template by template basis. some caverns might have open water and large spaces. Some islands do not need? It might be better to tweak the girder code based upon space above. dunno. |
1792 | 39 |
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. Maybe not a good idea, but, for now? Could also be used to prevent placing a girder outside play area on maps with hasBorder = true |
1776 | 40 |
|
41 |
// in your coding style, it appears to be "isXXXX" for a verb, and "FooBar" for everything else - should be PlayHeight ? |
|
4 | 42 |
|
37 | 43 |
procedure GenMap; |
766 | 44 |
function GenPreview: TPreview; |
367 | 45 |
procedure CheckLandDigest(s: shortstring); |
4 | 46 |
|
47 |
implementation |
|
1806 | 48 |
uses uConsole, uStore, uMisc, uRandom, uTeams, uLandObjects, uSHA, uIO, uAmmos, uLandTexture; |
4 | 49 |
|
50 |
type TPixAr = record |
|
51 |
Count: Longword; |
|
22 | 52 |
ar: array[0..Pred(cMaxEdgePoints)] of TPoint; |
4 | 53 |
end; |
54 |
||
37 | 55 |
procedure LogLandDigest; |
316 | 56 |
var ctx: TSHA1Context; |
57 |
dig: TSHA1Digest; |
|
58 |
s: shortstring; |
|
37 | 59 |
begin |
316 | 60 |
SHA1Init(ctx); |
2157 | 61 |
SHA1UpdateLongwords(ctx, @Land, sizeof(Land) div 4); |
316 | 62 |
dig:= SHA1Final(ctx); |
367 | 63 |
s:='M{'+inttostr(dig[0])+':' |
316 | 64 |
+inttostr(dig[1])+':' |
65 |
+inttostr(dig[2])+':' |
|
66 |
+inttostr(dig[3])+':' |
|
67 |
+inttostr(dig[4])+'}'; |
|
699 | 68 |
CheckLandDigest(s); |
367 | 69 |
SendIPCRaw(@s[0], Length(s) + 1) |
70 |
end; |
|
71 |
||
72 |
procedure CheckLandDigest(s: shortstring); |
|
73 |
const digest: shortstring = ''; |
|
74 |
begin |
|
368 | 75 |
{$IFDEF DEBUGFILE} |
76 |
AddFileLog('CheckLandDigest: ' + s); |
|
77 |
{$ENDIF} |
|
367 | 78 |
if digest = '' then |
79 |
digest:= s |
|
80 |
else |
|
700 | 81 |
TryDo(s = digest, 'Different maps generated, sorry', true) |
37 | 82 |
end; |
83 |
||
371 | 84 |
procedure DrawLine(X1, Y1, X2, Y2: LongInt; Color: Longword); |
358 | 85 |
var |
371 | 86 |
eX, eY, dX, dY: LongInt; |
87 |
i, sX, sY, x, y, d: LongInt; |
|
358 | 88 |
begin |
89 |
eX:= 0; |
|
90 |
eY:= 0; |
|
91 |
dX:= X2 - X1; |
|
92 |
dY:= Y2 - Y1; |
|
93 |
||
94 |
if (dX > 0) then sX:= 1 |
|
95 |
else |
|
96 |
if (dX < 0) then |
|
97 |
begin |
|
98 |
sX:= -1; |
|
99 |
dX:= -dX |
|
100 |
end else sX:= dX; |
|
101 |
||
102 |
if (dY > 0) then sY:= 1 |
|
103 |
else |
|
104 |
if (dY < 0) then |
|
105 |
begin |
|
106 |
sY:= -1; |
|
107 |
dY:= -dY |
|
108 |
end else sY:= dY; |
|
109 |
||
110 |
if (dX > dY) then d:= dX |
|
111 |
else d:= dY; |
|
112 |
||
113 |
x:= X1; |
|
114 |
y:= Y1; |
|
115 |
||
116 |
for i:= 0 to d do |
|
117 |
begin |
|
118 |
inc(eX, dX); |
|
119 |
inc(eY, dY); |
|
120 |
if (eX > d) then |
|
121 |
begin |
|
122 |
dec(eX, d); |
|
123 |
inc(x, sX); |
|
124 |
end; |
|
125 |
if (eY > d) then |
|
126 |
begin |
|
127 |
dec(eY, d); |
|
128 |
inc(y, sY); |
|
129 |
end; |
|
364 | 130 |
|
1753 | 131 |
if ((x and LAND_WIDTH_MASK) = 0) and ((y and LAND_HEIGHT_MASK) = 0) then |
358 | 132 |
Land[y, x]:= Color; |
133 |
end |
|
134 |
end; |
|
135 |
||
365 | 136 |
procedure DrawEdge(var pa: TPixAr; Color: Longword); |
371 | 137 |
var i: LongInt; |
4 | 138 |
begin |
365 | 139 |
i:= 0; |
4 | 140 |
with pa do |
371 | 141 |
while i < LongInt(Count) - 1 do |
365 | 142 |
if (ar[i + 1].X = NTPX) then inc(i, 2) |
143 |
else begin |
|
144 |
DrawLine(ar[i].x, ar[i].y, ar[i + 1].x, ar[i + 1].y, Color); |
|
145 |
inc(i) |
|
146 |
end |
|
22 | 147 |
end; |
148 |
||
365 | 149 |
procedure Vector(p1, p2, p3: TPoint; var Vx, Vy: hwFloat); |
150 |
var d1, d2, d: hwFloat; |
|
364 | 151 |
begin |
498 | 152 |
Vx:= int2hwFloat(p1.X - p3.X); |
153 |
Vy:= int2hwFloat(p1.Y - p3.Y); |
|
154 |
d:= DistanceI(p2.X - p1.X, p2.Y - p1.Y); |
|
155 |
d1:= DistanceI(p2.X - p3.X, p2.Y - p3.Y); |
|
365 | 156 |
d2:= Distance(Vx, Vy); |
157 |
if d1 < d then d:= d1; |
|
158 |
if d2 < d then d:= d2; |
|
159 |
d:= d * _1div3; |
|
160 |
if d2.QWordValue = 0 then |
|
161 |
begin |
|
498 | 162 |
Vx:= _0; |
163 |
Vy:= _0 |
|
365 | 164 |
end else |
165 |
begin |
|
498 | 166 |
d2:= _1 / d2; |
365 | 167 |
Vx:= Vx * d2; |
168 |
Vy:= Vy * d2; |
|
169 |
||
170 |
Vx:= Vx * d; |
|
171 |
Vy:= Vy * d |
|
172 |
end |
|
173 |
end; |
|
174 |
||
371 | 175 |
procedure AddLoopPoints(var pa, opa: TPixAr; StartI, EndI: LongInt; Delta: hwFloat); |
176 |
var i, pi, ni: LongInt; |
|
365 | 177 |
NVx, NVy, PVx, PVy: hwFloat; |
498 | 178 |
x1, x2, y1, y2: LongInt; |
179 |
tsq, tcb, t, r1, r2, r3, cx1, cx2, cy1, cy2: hwFloat; |
|
371 | 180 |
X, Y: LongInt; |
365 | 181 |
begin |
182 |
pi:= EndI; |
|
183 |
i:= StartI; |
|
184 |
ni:= Succ(StartI); |
|
185 |
Vector(opa.ar[pi], opa.ar[i], opa.ar[ni], NVx, NVy); |
|
186 |
repeat |
|
187 |
inc(pi); |
|
188 |
if pi > EndI then pi:= StartI; |
|
189 |
inc(i); |
|
190 |
if i > EndI then i:= StartI; |
|
191 |
inc(ni); |
|
192 |
if ni > EndI then ni:= StartI; |
|
193 |
PVx:= NVx; |
|
194 |
PVy:= NVy; |
|
195 |
Vector(opa.ar[pi], opa.ar[i], opa.ar[ni], NVx, NVy); |
|
196 |
||
197 |
x1:= opa.ar[pi].x; |
|
198 |
y1:= opa.ar[pi].y; |
|
199 |
x2:= opa.ar[i].x; |
|
200 |
y2:= opa.ar[i].y; |
|
498 | 201 |
cx1:= int2hwFloat(x1) - PVx; |
202 |
cy1:= int2hwFloat(y1) - PVy; |
|
203 |
cx2:= int2hwFloat(x2) + NVx; |
|
204 |
cy2:= int2hwFloat(y2) + NVy; |
|
205 |
t:= _0; |
|
364 | 206 |
while t.Round = 0 do |
207 |
begin |
|
208 |
tsq:= t * t; |
|
209 |
tcb:= tsq * t; |
|
498 | 210 |
r1:= (_1 - t*3 + tsq*3 - tcb); |
211 |
r2:= ( t*3 - tsq*6 + tcb*3); |
|
212 |
r3:= ( tsq*3 - tcb*3); |
|
430 | 213 |
X:= hwRound(r1 * x1 + r2 * cx1 + r3 * cx2 + tcb * x2); |
214 |
Y:= hwRound(r1 * y1 + r2 * cy1 + r3 * cy2 + tcb * y2); |
|
364 | 215 |
t:= t + Delta; |
216 |
pa.ar[pa.Count].x:= X; |
|
217 |
pa.ar[pa.Count].y:= Y; |
|
218 |
inc(pa.Count); |
|
219 |
TryDo(pa.Count <= cMaxEdgePoints, 'Edge points overflow', true) |
|
220 |
end; |
|
365 | 221 |
until i = StartI; |
222 |
pa.ar[pa.Count].x:= opa.ar[StartI].X; |
|
223 |
pa.ar[pa.Count].y:= opa.ar[StartI].Y; |
|
364 | 224 |
inc(pa.Count) |
225 |
end; |
|
226 |
||
365 | 227 |
procedure BezierizeEdge(var pa: TPixAr; Delta: hwFloat); |
495 | 228 |
var i, StartLoop: LongInt; |
365 | 229 |
opa: TPixAr; |
230 |
begin |
|
231 |
opa:= pa; |
|
232 |
pa.Count:= 0; |
|
233 |
i:= 0; |
|
234 |
StartLoop:= 0; |
|
371 | 235 |
while i < LongInt(opa.Count) do |
365 | 236 |
if (opa.ar[i + 1].X = NTPX) then |
237 |
begin |
|
238 |
AddLoopPoints(pa, opa, StartLoop, i, Delta); |
|
239 |
inc(i, 2); |
|
240 |
StartLoop:= i; |
|
241 |
pa.ar[pa.Count].X:= NTPX; |
|
242 |
inc(pa.Count); |
|
243 |
end else inc(i) |
|
244 |
end; |
|
245 |
||
371 | 246 |
procedure FillLand(x, y: LongInt); |
4 | 247 |
var Stack: record |
248 |
Count: Longword; |
|
249 |
points: array[0..8192] of record |
|
371 | 250 |
xl, xr, y, dir: LongInt; |
4 | 251 |
end |
252 |
end; |
|
253 |
||
371 | 254 |
procedure Push(_xl, _xr, _y, _dir: LongInt); |
4 | 255 |
begin |
75 | 256 |
TryDo(Stack.Count <= 8192, 'FillLand: stack overflow', true); |
4 | 257 |
_y:= _y + _dir; |
1760 | 258 |
if (_y < 0) or (_y >= LAND_HEIGHT) then exit; |
4 | 259 |
with Stack.points[Stack.Count] do |
260 |
begin |
|
261 |
xl:= _xl; |
|
262 |
xr:= _xr; |
|
263 |
y:= _y; |
|
264 |
dir:= _dir |
|
265 |
end; |
|
75 | 266 |
inc(Stack.Count) |
4 | 267 |
end; |
268 |
||
371 | 269 |
procedure Pop(var _xl, _xr, _y, _dir: LongInt); |
4 | 270 |
begin |
271 |
dec(Stack.Count); |
|
272 |
with Stack.points[Stack.Count] do |
|
273 |
begin |
|
274 |
_xl:= xl; |
|
275 |
_xr:= xr; |
|
276 |
_y:= y; |
|
277 |
_dir:= dir |
|
278 |
end |
|
279 |
end; |
|
280 |
||
371 | 281 |
var xl, xr, dir: LongInt; |
351 | 282 |
begin |
4 | 283 |
Stack.Count:= 0; |
284 |
xl:= x - 1; |
|
285 |
xr:= x; |
|
23 | 286 |
Push(xl, xr, y, -1); |
287 |
Push(xl, xr, y, 1); |
|
4 | 288 |
while Stack.Count > 0 do |
289 |
begin |
|
290 |
Pop(xl, xr, y, dir); |
|
51 | 291 |
while (xl > 0) and (Land[y, xl] <> 0) do dec(xl); |
1760 | 292 |
while (xr < LAND_WIDTH - 1) and (Land[y, xr] <> 0) do inc(xr); |
4 | 293 |
while (xl < xr) do |
294 |
begin |
|
51 | 295 |
while (xl <= xr) and (Land[y, xl] = 0) do inc(xl); |
4 | 296 |
x:= xl; |
51 | 297 |
while (xl <= xr) and (Land[y, xl] <> 0) do |
4 | 298 |
begin |
51 | 299 |
Land[y, xl]:= 0; |
4 | 300 |
inc(xl) |
301 |
end; |
|
22 | 302 |
if x < xl then |
303 |
begin |
|
304 |
Push(x, Pred(xl), y, dir); |
|
305 |
Push(x, Pred(xl), y,-dir); |
|
306 |
end; |
|
4 | 307 |
end; |
308 |
end; |
|
309 |
end; |
|
310 |
||
311 |
procedure ColorizeLand(Surface: PSDL_Surface); |
|
312 |
var tmpsurf: PSDL_Surface; |
|
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
313 |
r, rr: TSDL_Rect; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
314 |
x, yd, yu: LongInt; |
4 | 315 |
begin |
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
|
316 |
tmpsurf:= LoadImage(Pathz[ptCurrTheme] + '/LandTex', ifCritical or ifIgnoreCaps); |
4 | 317 |
r.y:= 0; |
1760 | 318 |
while r.y < LAND_HEIGHT do |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
319 |
begin |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
320 |
r.x:= 0; |
1760 | 321 |
while r.x < LAND_WIDTH do |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
322 |
begin |
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
|
323 |
{$IFDEF IPHONEOS} |
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
324 |
//does not draw border with SDL_UpperBlit function, so we will use our own copy |
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
325 |
copyToXY(tmpsurf,Surface, r.x,r.y); |
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
326 |
{$ELSE} |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
327 |
SDL_UpperBlit(tmpsurf, nil, Surface, @r); |
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
|
328 |
{$ENDIF} |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
329 |
inc(r.x, tmpsurf^.w) |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
330 |
end; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
331 |
inc(r.y, tmpsurf^.h) |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
332 |
end; |
4 | 333 |
SDL_FreeSurface(tmpsurf); |
334 |
||
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
|
335 |
tmpsurf:= LoadImage(Pathz[ptCurrTheme] + '/Border', ifCritical or ifIgnoreCaps or ifTransparent); |
1760 | 336 |
for x:= 0 to LAND_WIDTH - 1 do |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
337 |
begin |
1760 | 338 |
yd:= LAND_HEIGHT - 1; |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
339 |
repeat |
1760 | 340 |
while (yd > 0) and (Land[yd, x] = 0) do dec(yd); |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
341 |
|
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
342 |
if (yd < 0) then yd:= 0; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
343 |
|
1760 | 344 |
while (yd < LAND_HEIGHT) and (Land[yd, x] <> 0) do inc(yd); |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
345 |
dec(yd); |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
346 |
yu:= yd; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
347 |
|
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
348 |
while (yu > 0 ) and (Land[yu, x] <> 0) do dec(yu); |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
349 |
while (yu < yd ) and (Land[yu, x] = 0) do inc(yu); |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
350 |
|
1760 | 351 |
if (yd < LAND_HEIGHT - 1) and ((yd - yu) >= 16) then |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
352 |
begin |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
353 |
rr.x:= x; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
354 |
rr.y:= yd - 15; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
355 |
r.x:= x mod tmpsurf^.w; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
356 |
r.y:= 16; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
357 |
r.w:= 1; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
358 |
r.h:= 16; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
359 |
SDL_UpperBlit(tmpsurf, @r, Surface, @rr); |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
360 |
end; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
361 |
if (yu > 0) then |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
362 |
begin |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
363 |
rr.x:= x; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
364 |
rr.y:= yu; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
365 |
r.x:= x mod tmpsurf^.w; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
366 |
r.y:= 0; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
367 |
r.w:= 1; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
368 |
r.h:= min(16, yd - yu + 1); |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
369 |
SDL_UpperBlit(tmpsurf, @r, Surface, @rr); |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
370 |
end; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
371 |
yd:= yu - 1; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
372 |
until yd < 0; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
373 |
end; |
4 | 374 |
end; |
375 |
||
358 | 376 |
procedure SetPoints(var Template: TEdgeTemplate; var pa: TPixAr); |
371 | 377 |
var i: LongInt; |
22 | 378 |
begin |
23 | 379 |
with Template do |
380 |
begin |
|
358 | 381 |
pa.Count:= BasePointsCount; |
382 |
for i:= 0 to pred(pa.Count) do |
|
23 | 383 |
begin |
371 | 384 |
pa.ar[i].x:= BasePoints^[i].x + LongInt(GetRandom(BasePoints^[i].w)); |
1792 | 385 |
if pa.ar[i].x <> NTPX then |
386 |
pa.ar[i].x:= pa.ar[i].x + ((LAND_WIDTH - Template.TemplateWidth) div 2); |
|
1776 | 387 |
pa.ar[i].y:= BasePoints^[i].y + LongInt(GetRandom(BasePoints^[i].h)) + LAND_HEIGHT - Template.TemplateHeight |
23 | 388 |
end; |
1183
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
389 |
|
358 | 390 |
if canMirror then |
360 | 391 |
if getrandom(2) = 0 then |
358 | 392 |
begin |
393 |
for i:= 0 to pred(BasePointsCount) do |
|
365 | 394 |
if pa.ar[i].x <> NTPX then |
1760 | 395 |
pa.ar[i].x:= LAND_WIDTH - 1 - pa.ar[i].x; |
358 | 396 |
for i:= 0 to pred(FillPointsCount) do |
1760 | 397 |
FillPoints^[i].x:= LAND_WIDTH - 1 - FillPoints^[i].x; |
358 | 398 |
end; |
22 | 399 |
|
358 | 400 |
if canFlip then |
360 | 401 |
if getrandom(2) = 0 then |
358 | 402 |
begin |
403 |
for i:= 0 to pred(BasePointsCount) do |
|
1760 | 404 |
pa.ar[i].y:= LAND_HEIGHT - 1 - pa.ar[i].y; |
358 | 405 |
for i:= 0 to pred(FillPointsCount) do |
1760 | 406 |
FillPoints^[i].y:= LAND_HEIGHT - 1 - FillPoints^[i].y; |
358 | 407 |
end; |
408 |
end |
|
4 | 409 |
end; |
67 | 410 |
|
561 | 411 |
function CheckIntersect(V1, V2, V3, V4: TPoint): boolean; |
412 |
var c1, c2, dm: LongInt; |
|
413 |
begin |
|
414 |
dm:= (V4.y - V3.y) * (V2.x - V1.x) - (V4.x - V3.x) * (V2.y - V1.y); |
|
415 |
c1:= (V4.x - V3.x) * (V1.y - V3.y) - (V4.y - V3.y) * (V1.x - V3.x); |
|
416 |
if dm = 0 then exit(false); |
|
417 |
||
418 |
c2:= (V2.x - V3.x) * (V1.y - V3.y) - (V2.y - V3.y) * (V1.x - V3.x); |
|
419 |
if dm > 0 then |
|
420 |
begin |
|
421 |
if (c1 < 0) or (c1 > dm) then exit(false); |
|
422 |
if (c2 < 0) or (c2 > dm) then exit(false) |
|
423 |
end else |
|
424 |
begin |
|
425 |
if (c1 > 0) or (c1 < dm) then exit(false); |
|
426 |
if (c2 > 0) or (c2 < dm) then exit(false) |
|
427 |
end; |
|
428 |
||
429 |
//AddFileLog('1 (' + inttostr(V1.x) + ',' + inttostr(V1.y) + ')x(' + inttostr(V2.x) + ',' + inttostr(V2.y) + ')'); |
|
430 |
//AddFileLog('2 (' + inttostr(V3.x) + ',' + inttostr(V3.y) + ')x(' + inttostr(V4.x) + ',' + inttostr(V4.y) + ')'); |
|
431 |
CheckIntersect:= true |
|
432 |
end; |
|
433 |
||
434 |
function CheckSelfIntersect(var pa: TPixAr; ind: Longword): boolean; |
|
435 |
var i: Longword; |
|
436 |
begin |
|
437 |
if (ind <= 0) or (ind >= Pred(pa.Count)) then exit(false); |
|
438 |
for i:= 1 to pa.Count - 3 do |
|
439 |
if (i <= ind - 1) or (i >= ind + 2) then |
|
440 |
begin |
|
441 |
if (i <> ind - 1) and |
|
442 |
CheckIntersect(pa.ar[ind], pa.ar[ind - 1], pa.ar[i], pa.ar[i - 1]) then exit(true); |
|
443 |
if (i <> ind + 2) and |
|
444 |
CheckIntersect(pa.ar[ind], pa.ar[ind + 1], pa.ar[i], pa.ar[i - 1]) then exit(true); |
|
445 |
end; |
|
446 |
CheckSelfIntersect:= false |
|
447 |
end; |
|
448 |
||
429 | 449 |
procedure RandomizePoints(var pa: TPixAr); |
364 | 450 |
const cEdge = 55; |
561 | 451 |
cMinDist = 8; |
371 | 452 |
var radz: array[0..Pred(cMaxEdgePoints)] of LongInt; |
561 | 453 |
i, k, dist, px, py: LongInt; |
364 | 454 |
begin |
455 |
radz[0]:= 0; |
|
456 |
for i:= 0 to Pred(pa.Count) do |
|
457 |
with pa.ar[i] do |
|
365 | 458 |
if x <> NTPX then |
459 |
begin |
|
1760 | 460 |
radz[i]:= Min(Max(x - cEdge, 0), Max(LAND_WIDTH - cEdge - x, 0)); |
461 |
radz[i]:= Min(radz[i], Min(Max(y - cEdge, 0), Max(LAND_HEIGHT - cEdge - y, 0))); |
|
365 | 462 |
if radz[i] > 0 then |
463 |
for k:= 0 to Pred(i) do |
|
364 | 464 |
begin |
429 | 465 |
dist:= Max(abs(x - pa.ar[k].x), abs(y - pa.ar[k].y)); |
365 | 466 |
radz[k]:= Max(0, Min((dist - cMinDist) div 2, radz[k])); |
467 |
radz[i]:= Max(0, Min(dist - radz[k] - cMinDist, radz[i])) |
|
468 |
end |
|
469 |
end; |
|
364 | 470 |
|
471 |
for i:= 0 to Pred(pa.Count) do |
|
472 |
with pa.ar[i] do |
|
1753 | 473 |
if ((x and LAND_WIDTH_MASK) = 0) and ((y and LAND_HEIGHT_MASK) = 0) then |
364 | 474 |
begin |
561 | 475 |
px:= x; |
476 |
py:= y; |
|
371 | 477 |
x:= x + LongInt(GetRandom(7) - 3) * (radz[i] * 5 div 7) div 3; |
561 | 478 |
y:= y + LongInt(GetRandom(7) - 3) * (radz[i] * 5 div 7) div 3; |
479 |
if CheckSelfIntersect(pa, i) then |
|
480 |
begin |
|
481 |
x:= px; |
|
482 |
y:= py |
|
483 |
end; |
|
364 | 484 |
end |
67 | 485 |
end; |
486 |
||
364 | 487 |
|
23 | 488 |
procedure GenBlank(var Template: TEdgeTemplate); |
4 | 489 |
var pa: TPixAr; |
23 | 490 |
i: Longword; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
491 |
y, x: Longword; |
4 | 492 |
begin |
1760 | 493 |
for y:= 0 to LAND_HEIGHT - 1 do |
494 |
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
|
495 |
Land[y, x]:= COLOR_LAND; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
496 |
|
358 | 497 |
SetPoints(Template, pa); |
429 | 498 |
for i:= 1 to Template.BezierizeCount do |
499 |
begin |
|
431 | 500 |
BezierizeEdge(pa, _0_5); |
561 | 501 |
RandomizePoints(pa); |
429 | 502 |
RandomizePoints(pa) |
503 |
end; |
|
504 |
for i:= 1 to Template.RandPassesCount do RandomizePoints(pa); |
|
365 | 505 |
BezierizeEdge(pa, _0_1); |
27 | 506 |
|
365 | 507 |
DrawEdge(pa, 0); |
27 | 508 |
|
358 | 509 |
with Template do |
23 | 510 |
for i:= 0 to pred(FillPointsCount) do |
511 |
with FillPoints^[i] do |
|
89 | 512 |
FillLand(x, y); |
513 |
||
1773 | 514 |
DrawEdge(pa, COLOR_LAND); |
515 |
||
1792 | 516 |
MaxHedgehogs:= Template.MaxHedgehogs; |
1776 | 517 |
hasGirders:= Template.hasGirders; |
518 |
playHeight:= Template.TemplateHeight; |
|
519 |
playWidth:= Template.TemplateWidth; |
|
520 |
leftX:= ((LAND_WIDTH - playWidth) div 2); |
|
521 |
rightX:= (playWidth + ((LAND_WIDTH - playWidth) div 2)) - 1; |
|
522 |
topY:= LAND_HEIGHT - playHeight; |
|
523 |
||
1797 | 524 |
// force to only cavern even if a cavern map is invertable if cTemplateFilter = 4 ? |
1773 | 525 |
if (Template.canInvert and (getrandom(2) = 0)) or |
526 |
(not Template.canInvert and Template.isNegative) then |
|
1776 | 527 |
begin |
528 |
hasBorder:= true; |
|
1773 | 529 |
for y:= 0 to LAND_HEIGHT - 1 do |
530 |
for x:= 0 to LAND_WIDTH - 1 do |
|
1776 | 531 |
if (y < topY) or (x < leftX) or (x > rightX) then |
532 |
Land[y, x]:= 0 |
|
533 |
else |
|
534 |
begin |
|
535 |
if Land[y, x] = 0 then |
|
536 |
Land[y, x]:= COLOR_LAND |
|
537 |
else if Land[y, x] = COLOR_LAND then |
|
538 |
Land[y, x]:= 0; |
|
539 |
end; |
|
540 |
end; |
|
23 | 541 |
end; |
542 |
||
371 | 543 |
function SelectTemplate: LongInt; |
161 | 544 |
begin |
1797 | 545 |
case cTemplateFilter of |
546 |
0: begin |
|
547 |
SelectTemplate:= getrandom(Succ(High(EdgeTemplates))); |
|
548 |
end; |
|
549 |
1: begin |
|
550 |
SelectTemplate:= SmallTemplates[getrandom(Succ(High(SmallTemplates)))]; |
|
551 |
end; |
|
552 |
2: begin |
|
553 |
SelectTemplate:= MediumTemplates[getrandom(Succ(High(MediumTemplates)))]; |
|
554 |
end; |
|
555 |
3: begin |
|
556 |
SelectTemplate:= LargeTemplates[getrandom(Succ(High(LargeTemplates)))]; |
|
557 |
end; |
|
558 |
4: begin |
|
559 |
SelectTemplate:= CavernTemplates[getrandom(Succ(High(CavernTemplates)))]; |
|
560 |
end; |
|
561 |
5: begin |
|
562 |
SelectTemplate:= WackyTemplates[getrandom(Succ(High(WackyTemplates)))]; |
|
563 |
end; |
|
564 |
end; |
|
565 |
WriteLnToConsole('Selected template #'+inttostr(SelectTemplate)+' using filter #'+inttostr(cTemplateFilter)); |
|
161 | 566 |
end; |
567 |
||
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
568 |
procedure LandSurface2LandPixels(Surface: PSDL_Surface); |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
569 |
var x, y: LongInt; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
570 |
p: PLongwordArray; |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1085
diff
changeset
|
571 |
begin |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
572 |
TryDo(Surface <> nil, 'Assert (LandSurface <> nil) failed', true); |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
573 |
|
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
574 |
if SDL_MustLock(Surface) then |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
575 |
SDLTry(SDL_LockSurface(Surface) >= 0, true); |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1085
diff
changeset
|
576 |
|
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
577 |
p:= Surface^.pixels; |
1760 | 578 |
for y:= 0 to LAND_HEIGHT - 1 do |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
579 |
begin |
1760 | 580 |
for x:= 0 to LAND_WIDTH - 1 do |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
581 |
if Land[y, x] <> 0 then LandPixels[y, x]:= p^[x] or $FF000000; |
1760 | 582 |
|
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
583 |
p:= @(p^[Surface^.pitch div 4]); |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
584 |
end; |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1085
diff
changeset
|
585 |
|
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
586 |
if SDL_MustLock(Surface) then |
1753 | 587 |
SDL_UnlockSurface(Surface); |
1754 | 588 |
end; |
589 |
||
590 |
procedure GenLandSurface; |
|
591 |
var tmpsurf: PSDL_Surface; |
|
592 |
begin |
|
593 |
WriteLnToConsole('Generating land...'); |
|
594 |
||
595 |
GenBlank(EdgeTemplates[SelectTemplate]); |
|
596 |
||
597 |
AddProgress; |
|
598 |
||
1760 | 599 |
tmpsurf:= SDL_CreateRGBSurface(SDL_SWSURFACE, LAND_WIDTH, LAND_HEIGHT, 32, RMask, GMask, BMask, 0); |
1754 | 600 |
|
601 |
TryDo(tmpsurf <> nil, 'Error creating pre-land surface', true); |
|
602 |
ColorizeLand(tmpsurf); |
|
603 |
AddOnLandObjects(tmpsurf); |
|
604 |
||
605 |
LandSurface2LandPixels(tmpsurf); |
|
606 |
SDL_FreeSurface(tmpsurf); |
|
607 |
||
608 |
AddProgress; |
|
609 |
||
610 |
end; |
|
611 |
||
612 |
procedure MakeFortsMap; |
|
613 |
var tmpsurf: PSDL_Surface; |
|
614 |
begin |
|
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
|
615 |
// 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 | 616 |
playHeight:= 1200; |
2096 | 617 |
playWidth:= 2560; |
1776 | 618 |
leftX:= (LAND_WIDTH - playWidth) div 2; |
619 |
rightX:= ((playWidth + (LAND_WIDTH - playWidth) div 2) - 1); |
|
620 |
topY:= LAND_HEIGHT - playHeight; |
|
621 |
||
1754 | 622 |
WriteLnToConsole('Generating forts land...'); |
623 |
||
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
|
624 |
tmpsurf:= LoadImage(Pathz[ptForts] + '/' + ClansArray[0]^.Teams[0]^.FortName + 'L', ifAlpha or ifCritical or ifTransparent or ifIgnoreCaps); |
1784 | 625 |
BlitImageAndGenerateCollisionInfo(leftX+150, LAND_HEIGHT - tmpsurf^.h, tmpsurf^.w, tmpsurf); |
1754 | 626 |
SDL_FreeSurface(tmpsurf); |
627 |
||
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
|
628 |
tmpsurf:= LoadImage(Pathz[ptForts] + '/' + ClansArray[1]^.Teams[0]^.FortName + 'R', ifAlpha or ifCritical or ifTransparent or ifIgnoreCaps); |
1784 | 629 |
BlitImageAndGenerateCollisionInfo(rightX - 150 - tmpsurf^.w, LAND_HEIGHT - tmpsurf^.h, tmpsurf^.w, tmpsurf); |
1754 | 630 |
SDL_FreeSurface(tmpsurf); |
631 |
end; |
|
632 |
||
1792 | 633 |
// Hi unC0Rr. |
634 |
// This is a function that Tiy assures me would not be good for gameplay. |
|
635 |
// 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
|
636 |
// 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
|
637 |
// I would just like to play with it with my friends if you do not mind. |
1792 | 638 |
// Can allow for amusing maps. |
639 |
procedure LoadMask; |
|
640 |
var tmpsurf: PSDL_Surface; |
|
641 |
p: PLongwordArray; |
|
642 |
x, y, cpX, cpY: Longword; |
|
643 |
begin |
|
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
|
644 |
tmpsurf:= LoadImage(Pathz[ptMapCurrent] + '/mask', ifAlpha or ifTransparent or ifIgnoreCaps); |
1792 | 645 |
if (tmpsurf <> nil) and (tmpsurf^.w <= LAND_WIDTH) and (tmpsurf^.h <= LAND_HEIGHT) and (tmpsurf^.format^.BytesPerPixel = 4) then |
646 |
begin |
|
647 |
cpX:= (LAND_WIDTH - tmpsurf^.w) div 2; |
|
648 |
cpY:= LAND_HEIGHT - tmpsurf^.h; |
|
649 |
if SDL_MustLock(tmpsurf) then |
|
650 |
SDLTry(SDL_LockSurface(tmpsurf) >= 0, true); |
|
651 |
||
652 |
p:= tmpsurf^.pixels; |
|
653 |
for y:= 0 to Pred(tmpsurf^.h) do |
|
654 |
begin |
|
655 |
for x:= 0 to Pred(tmpsurf^.w) do |
|
1849 | 656 |
begin |
657 |
if (($FF000000 and p^[x]) = 0) then // Tiy was having trouble generating transparent black |
|
658 |
Land[cpY + y, cpX + x]:= 0 |
|
2243
b4764993f833
additional touch support and nemo's reduced land array size
koda
parents:
2240
diff
changeset
|
659 |
else if p^[x] = $FF0000FF then |
b4764993f833
additional touch support and nemo's reduced land array size
koda
parents:
2240
diff
changeset
|
660 |
Land[cpY + y, cpX + x]:= COLOR_INDESTRUCTIBLE |
b4764993f833
additional touch support and nemo's reduced land array size
koda
parents:
2240
diff
changeset
|
661 |
else if p^[x] = $FFFFFFFF then |
b4764993f833
additional touch support and nemo's reduced land array size
koda
parents:
2240
diff
changeset
|
662 |
Land[cpY + y, cpX + x]:= COLOR_LAND; |
b4764993f833
additional touch support and nemo's reduced land array size
koda
parents:
2240
diff
changeset
|
663 |
|
1849 | 664 |
end; |
1792 | 665 |
p:= @(p^[tmpsurf^.pitch div 4]); |
666 |
end; |
|
667 |
||
668 |
if SDL_MustLock(tmpsurf) then |
|
669 |
SDL_UnlockSurface(tmpsurf); |
|
670 |
SDL_FreeSurface(tmpsurf); |
|
671 |
end; |
|
672 |
end; |
|
673 |
||
1754 | 674 |
procedure LoadMap; |
675 |
var tmpsurf: PSDL_Surface; |
|
1795 | 676 |
s: string; |
677 |
f: textfile; |
|
1754 | 678 |
begin |
679 |
WriteLnToConsole('Loading land from file...'); |
|
680 |
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
|
681 |
tmpsurf:= LoadImage(Pathz[ptMapCurrent] + '/map', ifAlpha or ifCritical or ifTransparent or ifIgnoreCaps); |
1760 | 682 |
TryDo((tmpsurf^.w <= LAND_WIDTH) and (tmpsurf^.h <= LAND_HEIGHT), 'Map dimensions too big!', true); |
1754 | 683 |
|
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
|
684 |
// unC0Rr - should this be passed from the GUI? I am not sure which layer does what |
1792 | 685 |
s:= Pathz[ptMapCurrent] + '/map.cfg'; |
686 |
WriteLnToConsole('Fetching map HH limit'); |
|
687 |
Assign(f, s); |
|
688 |
Reset(f); |
|
1795 | 689 |
Readln(f); |
690 |
if not eof(f) then Readln(f, MaxHedgehogs); |
|
691 |
||
1792 | 692 |
if(MaxHedgehogs = 0) then MaxHedgehogs:= 18; |
693 |
||
1776 | 694 |
playHeight:= tmpsurf^.h; |
695 |
playWidth:= tmpsurf^.w; |
|
696 |
leftX:= (LAND_WIDTH - playWidth) div 2; |
|
697 |
rightX:= (playWidth + ((LAND_WIDTH - playWidth) div 2)) - 1; |
|
698 |
topY:= LAND_HEIGHT - playHeight; |
|
699 |
||
1754 | 700 |
TryDo(tmpsurf^.format^.BytesPerPixel = 4, 'Map should be 32bit', true); |
701 |
||
1772 | 702 |
BlitImageAndGenerateCollisionInfo( |
703 |
(LAND_WIDTH - tmpsurf^.w) div 2, |
|
704 |
LAND_HEIGHT - tmpsurf^.h, |
|
705 |
tmpsurf^.w, |
|
706 |
tmpsurf); |
|
1754 | 707 |
SDL_FreeSurface(tmpsurf); |
1792 | 708 |
|
709 |
LoadMask; |
|
1754 | 710 |
end; |
711 |
||
712 |
procedure GenMap; |
|
1784 | 713 |
var x, y, w, c: Longword; |
1754 | 714 |
begin |
1776 | 715 |
hasBorder:= false; |
716 |
hasGirders:= true; |
|
1754 | 717 |
LoadThemeConfig; |
718 |
||
719 |
if (GameFlags and gfForts) = 0 then |
|
720 |
if Pathz[ptMapCurrent] <> '' then LoadMap |
|
721 |
else GenLandSurface |
|
722 |
else MakeFortsMap; |
|
723 |
AddProgress; |
|
1760 | 724 |
|
1754 | 725 |
{$IFDEF DEBUGFILE}LogLandDigest;{$ENDIF} |
1753 | 726 |
|
1768 | 727 |
// check for land near top |
1784 | 728 |
c:= 0; |
729 |
if (GameFlags and gfBorder) <> 0 then |
|
730 |
hasBorder:= true |
|
731 |
else |
|
732 |
for y:= topY to topY + 5 do |
|
733 |
for x:= leftX to rightX do |
|
734 |
if Land[y, x] <> 0 then |
|
735 |
begin |
|
736 |
inc(c); |
|
737 |
if c > 200 then // avoid accidental triggering |
|
738 |
begin |
|
739 |
hasBorder:= true; |
|
740 |
break; |
|
741 |
end; |
|
742 |
end; |
|
1768 | 743 |
|
1776 | 744 |
if hasBorder then |
1768 | 745 |
begin |
1784 | 746 |
for y:= 0 to LAND_HEIGHT - 1 do |
747 |
for x:= 0 to LAND_WIDTH - 1 do |
|
748 |
if (y < topY) or (x < leftX) or (x > rightX) then |
|
749 |
Land[y, x]:= COLOR_INDESTRUCTIBLE; |
|
1768 | 750 |
// experiment hardcoding cave |
1784 | 751 |
// also try basing cave dimensions on map/template dimensions, if they exist |
752 |
for w:= 0 to 5 do // width of 3 allowed worms to be knocked through with grenade |
|
753 |
begin |
|
754 |
for y:= topY to LAND_HEIGHT - 1 do |
|
755 |
begin |
|
756 |
Land[y, leftX + w]:= COLOR_INDESTRUCTIBLE; |
|
757 |
Land[y, rightX - w]:= COLOR_INDESTRUCTIBLE; |
|
758 |
if (y + w) mod 32 < 16 then |
|
759 |
c:= $FF000000 |
|
760 |
else |
|
761 |
c:= $FF00FFFF; |
|
762 |
LandPixels[y, leftX + w]:= c; |
|
763 |
LandPixels[y, rightX - w]:= c; |
|
764 |
end; |
|
1768 | 765 |
|
1784 | 766 |
for x:= leftX to rightX do |
767 |
begin |
|
768 |
Land[topY + w, x]:= COLOR_INDESTRUCTIBLE; |
|
769 |
if (x + w) mod 32 < 16 then |
|
770 |
c:= $FF000000 |
|
771 |
else |
|
772 |
c:= $FF00FFFF; |
|
773 |
LandPixels[topY + w, x]:= c; |
|
774 |
end; |
|
775 |
end; |
|
1768 | 776 |
end; |
777 |
||
1776 | 778 |
if ((GameFlags and gfForts) = 0) and (Pathz[ptMapCurrent] = '') then AddObjects; |
779 |
||
1807 | 780 |
UpdateLandTexture(0, LAND_WIDTH, 0, LAND_HEIGHT); |
37 | 781 |
end; |
782 |
||
566 | 783 |
function GenPreview: TPreview; |
371 | 784 |
var x, y, xx, yy, t, bit: LongInt; |
566 | 785 |
Preview: TPreview; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
786 |
begin |
160 | 787 |
WriteLnToConsole('Generating preview...'); |
161 | 788 |
GenBlank(EdgeTemplates[SelectTemplate]); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
789 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
790 |
for y:= 0 to 127 do |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
791 |
for x:= 0 to 31 do |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
792 |
begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
793 |
Preview[y, x]:= 0; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
794 |
for bit:= 0 to 7 do |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
795 |
begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
796 |
t:= 0; |
1760 | 797 |
for yy:= y * (LAND_HEIGHT div 128) to y * (LAND_HEIGHT div 128) + 7 do |
798 |
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
|
799 |
if Land[yy, xx] <> 0 then inc(t); |
351 | 800 |
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
|
801 |
end |
566 | 802 |
end; |
1768 | 803 |
GenPreview:= Preview |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
804 |
end; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
805 |
|
51 | 806 |
initialization |
807 |
||
4 | 808 |
end. |