author | unc0rr |
Sat, 23 Sep 2006 19:26:07 +0000 | |
changeset 161 | d8870bbf960e |
parent 160 | 207f520b9e83 |
child 173 | 004493dd60e4 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
70 | 3 |
* Copyright (c) 2005, 2006 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
5 |
* Distributed under the terms of the BSD-modified licence: |
|
6 |
* |
|
7 |
* Permission is hereby granted, free of charge, to any person obtaining a copy |
|
8 |
* of this software and associated documentation files (the "Software"), to deal |
|
9 |
* with the Software without restriction, including without limitation the |
|
10 |
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
|
11 |
* sell copies of the Software, and to permit persons to whom the Software is |
|
12 |
* furnished to do so, subject to the following conditions: |
|
13 |
* |
|
14 |
* 1. Redistributions of source code must retain the above copyright notice, |
|
15 |
* this list of conditions and the following disclaimer. |
|
16 |
* 2. Redistributions in binary form must reproduce the above copyright notice, |
|
17 |
* this list of conditions and the following disclaimer in the documentation |
|
18 |
* and/or other materials provided with the distribution. |
|
19 |
* 3. The name of the author may not be used to endorse or promote products |
|
20 |
* derived from this software without specific prior written permission. |
|
21 |
* |
|
22 |
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
|
23 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
24 |
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
|
25 |
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
26 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
27 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
|
28 |
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
|
29 |
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
|
30 |
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
|
31 |
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
32 |
*) |
|
33 |
||
34 |
unit uLand; |
|
35 |
interface |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
36 |
uses SDLh, uGears, uLandTemplates; |
4 | 37 |
{$include options.inc} |
38 |
type TLandArray = packed array[0..1023, 0..2047] of LongWord; |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
39 |
TPreview = packed array[0..127, 0..31] of byte; |
4 | 40 |
|
41 |
var Land: TLandArray; |
|
42 |
LandSurface: PSDL_Surface; |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
43 |
Preview: TPreview; |
4 | 44 |
|
37 | 45 |
procedure GenMap; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
46 |
procedure GenPreview; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
47 |
|
4 | 48 |
|
49 |
implementation |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
50 |
uses uConsole, uStore, uMisc, uConsts, uRandom, uTeams, uIO, uLandObjects; |
4 | 51 |
|
52 |
type TPixAr = record |
|
53 |
Count: Longword; |
|
22 | 54 |
ar: array[0..Pred(cMaxEdgePoints)] of TPoint; |
4 | 55 |
end; |
56 |
||
37 | 57 |
procedure LogLandDigest; |
102 | 58 |
//var ctx: TSHA1Context; |
59 |
// dig: TSHA1Digest; |
|
37 | 60 |
begin |
102 | 61 |
//SHA1Init(ctx); |
62 |
//SHA1Update(ctx, @Land, sizeof(Land)); |
|
63 |
//dig:= SHA1Final(ctx); |
|
57 | 64 |
{$IFDEF DEBUGFILE} |
102 | 65 |
//AddFileLog('SHA1 Land digest: {'+inttostr(dig.LongWords[0])+':' |
66 |
// +inttostr(dig.LongWords[1])+':'+inttostr(dig.LongWords[2])+':' |
|
67 |
// +inttostr(dig.LongWords[3])+':'+inttostr(dig.LongWords[4])+'}'); |
|
57 | 68 |
{$ENDIF} |
37 | 69 |
end; |
70 |
||
89 | 71 |
procedure DrawBezierEdge(var pa: TPixAr; Color: Longword); |
4 | 72 |
var x, y, i: integer; |
107 | 73 |
tx, ty, vx, vy, vlen, t: Double; |
74 |
r1, r2, r3, r4: Double; |
|
75 |
x1, y1, x2, y2, cx1, cy1, cx2, cy2, tsq, tcb: Double; |
|
4 | 76 |
begin |
77 |
vx:= 0; |
|
78 |
vy:= 0; |
|
79 |
with pa do |
|
80 |
for i:= 0 to Count-2 do |
|
81 |
begin |
|
82 |
vlen:= sqrt(sqr(ar[i + 1].x - ar[i ].X) + sqr(ar[i + 1].y - ar[i ].y)); |
|
83 |
t:= sqrt(sqr(ar[i + 1].x - ar[i + 2].X) + sqr(ar[i + 1].y - ar[i + 2].y)); |
|
84 |
if t<vlen then vlen:= t; |
|
85 |
vlen:= vlen/3; |
|
86 |
tx:= ar[i+2].X - ar[i].X; |
|
87 |
ty:= ar[i+2].y - ar[i].y; |
|
88 |
t:= sqrt(sqr(tx)+sqr(ty)); |
|
89 |
if t = 0 then |
|
90 |
begin |
|
91 |
tx:= -tx * 100000; |
|
92 |
ty:= -ty * 100000; |
|
93 |
end else |
|
94 |
begin |
|
95 |
tx:= -tx/t; |
|
96 |
ty:= -ty/t; |
|
97 |
end; |
|
98 |
t:= 1.0*vlen; |
|
99 |
tx:= tx*t; |
|
100 |
ty:= ty*t; |
|
101 |
x1:= ar[i].x; |
|
102 |
y1:= ar[i].y; |
|
103 |
x2:= ar[i + 1].x; |
|
104 |
y2:= ar[i + 1].y; |
|
105 |
cx1:= ar[i].X + trunc(vx); |
|
106 |
cy1:= ar[i].y + trunc(vy); |
|
107 |
cx2:= ar[i+1].X + trunc(tx); |
|
108 |
cy2:= ar[i+1].y + trunc(ty); |
|
109 |
vx:= -tx; |
|
110 |
vy:= -ty; |
|
111 |
t:= 0; |
|
112 |
while t <= 1.0 do |
|
113 |
begin |
|
114 |
tsq:= sqr(t); |
|
115 |
tcb:= tsq * t; |
|
116 |
r1:= (1 - 3*t + 3*tsq - tcb) * x1; |
|
117 |
r2:= ( 3*t - 6*tsq + 3*tcb) * cx1; |
|
118 |
r3:= ( 3*tsq - 3*tcb) * cx2; |
|
119 |
r4:= ( tcb) * x2; |
|
120 |
X:= round(r1 + r2 + r3 + r4); |
|
121 |
r1:= (1 - 3*t + 3*tsq - tcb) * y1; |
|
122 |
r2:= ( 3*t - 6*tsq + 3*tcb) * cy1; |
|
123 |
r3:= ( 3*tsq - 3*tcb) * cy2; |
|
124 |
r4:= ( tcb) * y2; |
|
125 |
Y:= round(r1 + r2 + r3 + r4); |
|
126 |
t:= t + 0.001; |
|
127 |
if ((x and $FFFFF800) = 0) and ((y and $FFFFFC00) = 0) then |
|
89 | 128 |
Land[y, x]:= Color; |
4 | 129 |
end; |
130 |
end; |
|
131 |
end; |
|
132 |
||
107 | 133 |
procedure BezierizeEdge(var pa: TPixAr; Delta: Double); |
22 | 134 |
var x, y, i: integer; |
107 | 135 |
tx, ty, vx, vy, vlen, t: Double; |
136 |
r1, r2, r3, r4: Double; |
|
137 |
x1, y1, x2, y2, cx1, cy1, cx2, cy2, tsq, tcb: Double; |
|
22 | 138 |
opa: TPixAr; |
139 |
begin |
|
140 |
opa:= pa; |
|
141 |
pa.Count:= 0; |
|
142 |
vx:= 0; |
|
143 |
vy:= 0; |
|
144 |
with opa do |
|
145 |
for i:= 0 to Count-2 do |
|
146 |
begin |
|
147 |
vlen:= sqrt(sqr(ar[i + 1].x - ar[i ].X) + sqr(ar[i + 1].y - ar[i ].y)); |
|
148 |
t:= sqrt(sqr(ar[i + 1].x - ar[i + 2].X) + sqr(ar[i + 1].y - ar[i + 2].y)); |
|
149 |
if t<vlen then vlen:= t; |
|
150 |
vlen:= vlen/3; |
|
151 |
tx:= ar[i+2].X - ar[i].X; |
|
152 |
ty:= ar[i+2].y - ar[i].y; |
|
153 |
t:= sqrt(sqr(tx)+sqr(ty)); |
|
154 |
if t = 0 then |
|
155 |
begin |
|
156 |
tx:= -tx * 100000; |
|
157 |
ty:= -ty * 100000; |
|
158 |
end else |
|
159 |
begin |
|
160 |
tx:= -tx/t; |
|
161 |
ty:= -ty/t; |
|
162 |
end; |
|
163 |
t:= 1.0*vlen; |
|
164 |
tx:= tx*t; |
|
165 |
ty:= ty*t; |
|
166 |
x1:= ar[i].x; |
|
167 |
y1:= ar[i].y; |
|
168 |
x2:= ar[i + 1].x; |
|
169 |
y2:= ar[i + 1].y; |
|
170 |
cx1:= ar[i].X + trunc(vx); |
|
171 |
cy1:= ar[i].y + trunc(vy); |
|
172 |
cx2:= ar[i+1].X + trunc(tx); |
|
173 |
cy2:= ar[i+1].y + trunc(ty); |
|
174 |
vx:= -tx; |
|
175 |
vy:= -ty; |
|
176 |
t:= 0; |
|
177 |
while t <= 1.0 do |
|
178 |
begin |
|
179 |
tsq:= sqr(t); |
|
180 |
tcb:= tsq * t; |
|
181 |
r1:= (1 - 3*t + 3*tsq - tcb) * x1; |
|
182 |
r2:= ( 3*t - 6*tsq + 3*tcb) * cx1; |
|
183 |
r3:= ( 3*tsq - 3*tcb) * cx2; |
|
184 |
r4:= ( tcb) * x2; |
|
185 |
X:= round(r1 + r2 + r3 + r4); |
|
186 |
r1:= (1 - 3*t + 3*tsq - tcb) * y1; |
|
187 |
r2:= ( 3*t - 6*tsq + 3*tcb) * cy1; |
|
188 |
r3:= ( 3*tsq - 3*tcb) * cy2; |
|
189 |
r4:= ( tcb) * y2; |
|
190 |
Y:= round(r1 + r2 + r3 + r4); |
|
191 |
t:= t + Delta; |
|
192 |
pa.ar[pa.Count].x:= X; |
|
193 |
pa.ar[pa.Count].y:= Y; |
|
194 |
inc(pa.Count); |
|
160 | 195 |
TryDo(pa.Count <= cMaxEdgePoints, 'Edge points overflow', true) |
22 | 196 |
end; |
197 |
end; |
|
198 |
end; |
|
199 |
||
4 | 200 |
procedure FillLand(x, y: integer); |
201 |
var Stack: record |
|
202 |
Count: Longword; |
|
203 |
points: array[0..8192] of record |
|
204 |
xl, xr, y, dir: integer; |
|
205 |
end |
|
206 |
end; |
|
207 |
||
208 |
procedure Push(_xl, _xr, _y, _dir: integer); |
|
209 |
begin |
|
75 | 210 |
TryDo(Stack.Count <= 8192, 'FillLand: stack overflow', true); |
4 | 211 |
_y:= _y + _dir; |
212 |
if (_y < 0) or (_y > 1023) then exit; |
|
213 |
with Stack.points[Stack.Count] do |
|
214 |
begin |
|
215 |
xl:= _xl; |
|
216 |
xr:= _xr; |
|
217 |
y:= _y; |
|
218 |
dir:= _dir |
|
219 |
end; |
|
75 | 220 |
inc(Stack.Count) |
4 | 221 |
end; |
222 |
||
223 |
procedure Pop(out _xl, _xr, _y, _dir: integer); |
|
224 |
begin |
|
225 |
dec(Stack.Count); |
|
226 |
with Stack.points[Stack.Count] do |
|
227 |
begin |
|
228 |
_xl:= xl; |
|
229 |
_xr:= xr; |
|
230 |
_y:= y; |
|
231 |
_dir:= dir |
|
232 |
end |
|
233 |
end; |
|
234 |
||
235 |
var xl, xr, dir: integer; |
|
109 | 236 |
begin |
4 | 237 |
Stack.Count:= 0; |
238 |
xl:= x - 1; |
|
239 |
xr:= x; |
|
23 | 240 |
Push(xl, xr, y, -1); |
241 |
Push(xl, xr, y, 1); |
|
4 | 242 |
while Stack.Count > 0 do |
243 |
begin |
|
244 |
Pop(xl, xr, y, dir); |
|
51 | 245 |
while (xl > 0) and (Land[y, xl] <> 0) do dec(xl); |
246 |
while (xr < 2047) and (Land[y, xr] <> 0) do inc(xr); |
|
4 | 247 |
while (xl < xr) do |
248 |
begin |
|
51 | 249 |
while (xl <= xr) and (Land[y, xl] = 0) do inc(xl); |
4 | 250 |
x:= xl; |
51 | 251 |
while (xl <= xr) and (Land[y, xl] <> 0) do |
4 | 252 |
begin |
51 | 253 |
Land[y, xl]:= 0; |
4 | 254 |
inc(xl) |
255 |
end; |
|
22 | 256 |
if x < xl then |
257 |
begin |
|
258 |
Push(x, Pred(xl), y, dir); |
|
259 |
Push(x, Pred(xl), y,-dir); |
|
260 |
end; |
|
4 | 261 |
end; |
262 |
end; |
|
263 |
end; |
|
264 |
||
265 |
procedure ColorizeLand(Surface: PSDL_Surface); |
|
266 |
var tmpsurf: PSDL_Surface; |
|
267 |
r: TSDL_Rect; |
|
268 |
begin |
|
80 | 269 |
tmpsurf:= LoadImage(Pathz[ptCurrTheme] + '/LandTex', false); |
4 | 270 |
r.y:= 0; |
271 |
while r.y < 1024 do |
|
272 |
begin |
|
273 |
r.x:= 0; |
|
274 |
while r.x < 2048 do |
|
275 |
begin |
|
276 |
SDL_UpperBlit(tmpsurf, nil, Surface, @r); |
|
277 |
inc(r.x, tmpsurf.w) |
|
278 |
end; |
|
279 |
inc(r.y, tmpsurf.h) |
|
280 |
end; |
|
281 |
SDL_FreeSurface(tmpsurf); |
|
282 |
||
283 |
tmpsurf:= SDL_CreateRGBSurfaceFrom(@Land, 2048, 1024, 32, 2048*4, $FF0000, $FF00, $FF, 0); |
|
284 |
SDLTry(tmpsurf <> nil, true); |
|
285 |
SDL_SetColorKey(tmpsurf, SDL_SRCCOLORKEY, SDL_MapRGB(tmpsurf.format, $FF, $FF, $FF)); |
|
22 | 286 |
SDL_UpperBlit(tmpsurf, nil, Surface, nil); |
287 |
SDL_FreeSurface(tmpsurf) |
|
4 | 288 |
end; |
289 |
||
290 |
procedure AddBorder(Surface: PSDL_Surface); |
|
291 |
var tmpsurf: PSDL_Surface; |
|
292 |
r, rr: TSDL_Rect; |
|
293 |
x, yd, yu: integer; |
|
294 |
begin |
|
80 | 295 |
tmpsurf:= LoadImage(Pathz[ptCurrTheme] + '/Border', false); |
4 | 296 |
for x:= 0 to 2047 do |
297 |
begin |
|
298 |
yd:= 1023; |
|
299 |
repeat |
|
300 |
while (yd > 0 ) and (Land[yd, x] = 0) do dec(yd); |
|
301 |
if (yd < 0) then yd:= 0; |
|
302 |
while (yd < 1024) and (Land[yd, x] <> 0) do inc(yd); |
|
303 |
dec(yd); |
|
304 |
yu:= yd; |
|
305 |
while (yu > 0 ) and (Land[yu, x] <> 0) do dec(yu); |
|
306 |
while (yu < yd ) and (Land[yu, x] = 0) do inc(yu); |
|
307 |
if (yd < 1023) and ((yd - yu) >= 16) then |
|
308 |
begin |
|
309 |
rr.x:= x; |
|
310 |
rr.y:= yd - 15; |
|
311 |
r.x:= x mod tmpsurf.w; |
|
312 |
r.y:= 16; |
|
313 |
r.w:= 1; |
|
314 |
r.h:= 16; |
|
315 |
SDL_UpperBlit(tmpsurf, @r, Surface, @rr); |
|
316 |
end; |
|
317 |
if (yu > 0) then |
|
318 |
begin |
|
319 |
rr.x:= x; |
|
320 |
rr.y:= yu; |
|
321 |
r.x:= x mod tmpsurf.w; |
|
322 |
r.y:= 0; |
|
323 |
r.w:= 1; |
|
324 |
r.h:= min(16, yd - yu + 1); |
|
325 |
SDL_UpperBlit(tmpsurf, @r, Surface, @rr); |
|
326 |
end; |
|
327 |
yd:= yu - 1; |
|
328 |
until yd < 0; |
|
329 |
end; |
|
330 |
end; |
|
331 |
||
23 | 332 |
procedure PointWave(var Template: TEdgeTemplate; var pa: TPixAr); |
27 | 333 |
const MAXPASSES = 32; |
107 | 334 |
var ar: array[0..MAXPASSES, 0..5] of Double; |
22 | 335 |
i, k: integer; |
107 | 336 |
rx, ry, oy: Double; |
23 | 337 |
PassesNum: Longword; |
22 | 338 |
begin |
23 | 339 |
with Template do |
340 |
begin |
|
341 |
PassesNum:= PassMin + getrandom(PassDelta); |
|
342 |
TryDo(PassesNum < MAXPASSES, 'Passes number too big', true); |
|
27 | 343 |
ar[0, 1]:= WaveFreqMin; |
344 |
ar[0, 4]:= WaveFreqMin; |
|
23 | 345 |
for i:= 1 to PassesNum do // initialize random parameters |
346 |
begin |
|
347 |
ar[i, 0]:= WaveAmplMin + getrandom * WaveAmplDelta; |
|
27 | 348 |
ar[i, 1]:= ar[i - 1, 1] + (getrandom * 0.7 + 0.3) * WaveFreqDelta; |
23 | 349 |
ar[i, 2]:= getrandom * pi * 2; |
350 |
ar[i, 3]:= WaveAmplMin + getrandom * WaveAmplDelta; |
|
27 | 351 |
ar[i, 4]:= ar[i - 1, 4] + (getrandom * 0.7 + 0.3) * WaveFreqDelta; |
23 | 352 |
ar[i, 5]:= getrandom * pi * 2; |
53 | 353 |
{$IFDEF DEBUGFILE} |
354 |
AddFileLog('Wave params ¹' + inttostr(i) + ':'); |
|
355 |
AddFileLog('X: ampl = ' + floattostr(ar[i, 0]) + '; freq = ' + floattostr(ar[i, 1]) + '; shift = ' + floattostr(ar[i, 2])); |
|
356 |
AddFileLog('Y: ampl = ' + floattostr(ar[i, 3]) + '; freq = ' + floattostr(ar[i, 4]) + '; shift = ' + floattostr(ar[i, 5])); |
|
357 |
{$ENDIF} |
|
23 | 358 |
end; |
359 |
end; |
|
22 | 360 |
|
361 |
for k:= 0 to Pred(pa.Count) do // apply transformation |
|
362 |
begin |
|
363 |
rx:= pa.ar[k].x; |
|
364 |
ry:= pa.ar[k].y; |
|
24 | 365 |
for i:= 1 to PassesNum do |
22 | 366 |
begin |
367 |
oy:= ry; |
|
368 |
ry:= ry + ar[i, 0] * sin(ar[i, 1] * rx + ar[i, 2]); |
|
369 |
rx:= rx + ar[i, 3] * sin(ar[i, 4] * oy + ar[i, 5]); |
|
370 |
end; |
|
24 | 371 |
pa.ar[k].x:= round(rx); |
372 |
pa.ar[k].y:= round(ry); |
|
373 |
end; |
|
4 | 374 |
end; |
375 |
||
67 | 376 |
procedure NormalizePoints(var pa: TPixAr); |
377 |
const brd = 32; |
|
378 |
var isUP: boolean; // HACK: transform for Y should be exact as one for X |
|
379 |
Left, Right, Top, Bottom, |
|
380 |
OWidth, Width, OHeight, Height, |
|
381 |
OLeft: integer; |
|
382 |
i: integer; |
|
383 |
begin |
|
384 |
TryDo((pa.ar[0].y < 0) or (pa.ar[0].y > 1023), 'Bad land generated', true); |
|
160 | 385 |
TryDo((pa.ar[Pred(pa.Count)].y < 0) or (pa.ar[Pred(pa.Count)].y > 1023), 'Bad land generated', true); |
67 | 386 |
isUP:= pa.ar[0].y > 0; |
387 |
Left:= 1023; |
|
388 |
Right:= Left; |
|
389 |
Top:= pa.ar[0].y; |
|
390 |
Bottom:= Top; |
|
391 |
||
392 |
for i:= 1 to Pred(pa.Count) do |
|
393 |
with pa.ar[i] do |
|
394 |
begin |
|
395 |
if (y and $FFFFFC00) = 0 then |
|
396 |
if x < Left then Left:= x else |
|
397 |
if x > Right then Right:= x; |
|
398 |
if y < Top then Top:= y else |
|
399 |
if y > Bottom then Bottom:= y |
|
400 |
end; |
|
401 |
||
402 |
if (Left < brd) or (Right > 2047 - brd) then |
|
403 |
begin |
|
404 |
OLeft:= Left; |
|
405 |
OWidth:= Right - OLeft; |
|
406 |
if Left < brd then Left:= brd; |
|
407 |
if Right > 2047 - brd then Right:= 2047 - brd; |
|
408 |
Width:= Right - Left; |
|
409 |
for i:= 0 to Pred(pa.Count) do |
|
410 |
with pa.ar[i] do |
|
411 |
x:= round((x - OLeft) * Width div OWidth + Left) |
|
412 |
end; |
|
413 |
||
414 |
if isUp then // FIXME: remove hack |
|
415 |
if Top < brd then |
|
416 |
begin |
|
417 |
OHeight:= 1023 - Top; |
|
418 |
Height:= 1023 - brd; |
|
419 |
for i:= 0 to Pred(pa.Count) do |
|
420 |
with pa.ar[i] do |
|
421 |
y:= round((y - 1023) * Height div OHeight + 1023) |
|
422 |
end; |
|
423 |
end; |
|
424 |
||
23 | 425 |
procedure GenBlank(var Template: TEdgeTemplate); |
4 | 426 |
var pa: TPixAr; |
23 | 427 |
i: Longword; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
428 |
y, x: Longword; |
4 | 429 |
begin |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
430 |
for y:= 0 to 1023 do |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
431 |
for x:= 0 to 2047 do |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
432 |
Land[y, x]:= COLOR_LAND; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
433 |
|
23 | 434 |
with Template do |
435 |
begin |
|
27 | 436 |
if canMirror then |
437 |
if getrandom(16) < 8 then |
|
438 |
begin |
|
439 |
for i:= 0 to pred(BasePointsCount) do |
|
440 |
BasePoints^[i].x:= 2047 - BasePoints^[i].x; |
|
441 |
for i:= 0 to pred(FillPointsCount) do |
|
442 |
FillPoints^[i].x:= 2047 - FillPoints^[i].x; |
|
443 |
end; |
|
444 |
||
445 |
if canFlip then |
|
446 |
if getrandom(16) < 8 then |
|
447 |
begin |
|
448 |
for i:= 0 to pred(BasePointsCount) do |
|
449 |
BasePoints^[i].y:= 1023 - BasePoints^[i].y; |
|
450 |
for i:= 0 to pred(FillPointsCount) do |
|
451 |
FillPoints^[i].y:= 1023 - FillPoints^[i].y; |
|
452 |
end; |
|
453 |
||
23 | 454 |
pa.Count:= BasePointsCount; |
455 |
for i:= 0 to pred(pa.Count) do |
|
456 |
pa.ar[i]:= BasePoints^[i]; |
|
457 |
||
458 |
for i:= 1 to BezPassCnt do |
|
459 |
BezierizeEdge(pa, 0.33333334); |
|
460 |
||
461 |
PointWave(Template, pa); |
|
67 | 462 |
NormalizePoints(pa); |
89 | 463 |
DrawBezierEdge(pa, 0); |
23 | 464 |
|
465 |
for i:= 0 to pred(FillPointsCount) do |
|
466 |
with FillPoints^[i] do |
|
89 | 467 |
FillLand(x, y); |
468 |
||
469 |
DrawBezierEdge(pa, COLOR_LAND); |
|
23 | 470 |
end; |
471 |
end; |
|
472 |
||
161 | 473 |
function SelectTemplate: integer; |
474 |
begin |
|
475 |
Result:= getrandom(Succ(High(EdgeTemplates))) |
|
476 |
end; |
|
477 |
||
23 | 478 |
procedure GenLandSurface; |
479 |
var tmpsurf: PSDL_Surface; |
|
480 |
begin |
|
53 | 481 |
WriteLnToConsole('Generating land...'); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
482 |
|
161 | 483 |
GenBlank(EdgeTemplates[SelectTemplate]); |
22 | 484 |
|
4 | 485 |
AddProgress; |
486 |
with PixelFormat^ do |
|
487 |
tmpsurf:= SDL_CreateRGBSurface(SDL_HWSURFACE, 2048, 1024, BitsPerPixel, RMask, GMask, BMask, 0); |
|
67 | 488 |
TryDo(tmpsurf <> nil, 'Error creating pre-land surface', true); |
4 | 489 |
ColorizeLand(tmpsurf); |
490 |
AddProgress; |
|
491 |
AddBorder(tmpsurf); |
|
492 |
with PixelFormat^ do |
|
493 |
LandSurface:= SDL_CreateRGBSurface(SDL_HWSURFACE, 2048, 1024, BitsPerPixel, RMask, GMask, BMask, 0); |
|
67 | 494 |
TryDo(LandSurface <> nil, 'Error creating land surface', true); |
4 | 495 |
SDL_FillRect(LandSurface, nil, 0); |
27 | 496 |
AddProgress; |
24 | 497 |
|
70 | 498 |
SDL_SetColorKey(tmpsurf, SDL_SRCCOLORKEY, 0); |
499 |
AddObjects(tmpsurf, LandSurface); |
|
500 |
SDL_FreeSurface(tmpsurf); |
|
24 | 501 |
|
70 | 502 |
AddProgress |
4 | 503 |
end; |
504 |
||
505 |
procedure MakeFortsMap; |
|
506 |
var p: PTeam; |
|
507 |
tmpsurf: PSDL_Surface; |
|
508 |
begin |
|
53 | 509 |
WriteLnToConsole('Generating forts land...'); |
4 | 510 |
p:= TeamsList; |
511 |
TryDo(p <> nil, 'No teams on map!', true); |
|
512 |
with PixelFormat^ do |
|
513 |
LandSurface:= SDL_CreateRGBSurface(SDL_HWSURFACE, 2048, 1024, BitsPerPixel, RMask, GMask, BMask, 0); |
|
37 | 514 |
SDL_FillRect(LandSurface, nil, 0); |
74 | 515 |
tmpsurf:= LoadImage(Pathz[ptForts] + '/' + p.FortName + 'L', false); |
4 | 516 |
BlitImageAndGenerateCollisionInfo(0, 0, tmpsurf, LandSurface); |
517 |
SDL_FreeSurface(tmpsurf); |
|
518 |
p:= p.Next; |
|
519 |
TryDo(p <> nil, 'Only one team on map!', true); |
|
74 | 520 |
tmpsurf:= LoadImage(Pathz[ptForts] + '/' + p.FortName + 'R', false); |
4 | 521 |
BlitImageAndGenerateCollisionInfo(1024, 0, tmpsurf, LandSurface); |
522 |
SDL_FreeSurface(tmpsurf); |
|
523 |
p:= p.Next; |
|
524 |
TryDo(p = nil, 'More than 2 teams on map in forts mode!', true); |
|
525 |
end; |
|
526 |
||
53 | 527 |
procedure LoadMap; |
107 | 528 |
var x, y: Longword; |
529 |
p: PByteArray; |
|
53 | 530 |
begin |
531 |
WriteLnToConsole('Loading land from file...'); |
|
532 |
AddProgress; |
|
74 | 533 |
LandSurface:= LoadImage(Pathz[ptMapCurrent] + '/map', false); |
53 | 534 |
TryDo((LandSurface.w = 2048) and (LandSurface.h = 1024), 'Map dimensions should be 2048x1024!', true); |
535 |
||
536 |
if SDL_MustLock(LandSurface) then |
|
537 |
SDLTry(SDL_LockSurface(LandSurface) >= 0, true); |
|
538 |
||
107 | 539 |
p:= LandSurface.pixels; |
53 | 540 |
case LandSurface.format.BytesPerPixel of |
541 |
1: OutError('We don''t work with 8 bit surfaces', true); |
|
542 |
2: for y:= 0 to 1023 do |
|
543 |
begin |
|
544 |
for x:= 0 to 2047 do |
|
107 | 545 |
if PWord(@p[x * 2])^ <> 0 then Land[y, x]:= COLOR_LAND; |
546 |
p:= @p[LandSurface.pitch]; |
|
53 | 547 |
end; |
548 |
3: for y:= 0 to 1023 do |
|
549 |
begin |
|
550 |
for x:= 0 to 2047 do |
|
107 | 551 |
if (p[x * 3 + 0] <> 0) |
552 |
or (p[x * 3 + 1] <> 0) |
|
553 |
or (p[x * 3 + 2] <> 0) then Land[y, x]:= COLOR_LAND; |
|
554 |
p:= @p[LandSurface.pitch]; |
|
53 | 555 |
end; |
556 |
4: for y:= 0 to 1023 do |
|
557 |
begin |
|
558 |
for x:= 0 to 2047 do |
|
107 | 559 |
if PLongword(@p[x * 4])^ <> 0 then Land[y, x]:= COLOR_LAND; |
560 |
p:= @p[LandSurface.pitch]; |
|
53 | 561 |
end; |
562 |
end; |
|
563 |
if SDL_MustLock(LandSurface) then |
|
564 |
SDL_UnlockSurface(LandSurface); |
|
565 |
end; |
|
566 |
||
37 | 567 |
procedure GenMap; |
568 |
begin |
|
53 | 569 |
if (GameFlags and gfForts) = 0 then |
570 |
if Pathz[ptMapCurrent] <> '' then LoadMap |
|
571 |
else GenLandSurface |
|
37 | 572 |
else MakeFortsMap; |
573 |
AddProgress; |
|
574 |
{$IFDEF DEBUGFILE}LogLandDigest{$ENDIF} |
|
575 |
end; |
|
576 |
||
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
577 |
procedure GenPreview; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
578 |
var x, y, xx, yy, t, bit: integer; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
579 |
begin |
160 | 580 |
WriteLnToConsole('Generating preview...'); |
161 | 581 |
GenBlank(EdgeTemplates[SelectTemplate]); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
582 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
583 |
for y:= 0 to 127 do |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
584 |
for x:= 0 to 31 do |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
585 |
begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
586 |
Preview[y, x]:= 0; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
587 |
for bit:= 0 to 7 do |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
588 |
begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
589 |
t:= 0; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
590 |
for yy:= y * 8 to y * 8 + 7 do |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
591 |
for xx:= x * 64 + bit * 8 to x * 64 + bit * 8 + 7 do |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
592 |
if Land[yy, xx] <> 0 then inc(t); |
160 | 593 |
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
|
594 |
end |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
595 |
end |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
596 |
end; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
597 |
|
51 | 598 |
initialization |
599 |
||
4 | 600 |
end. |