author | unc0rr |
Sat, 16 Aug 2008 13:29:18 +0000 | |
changeset 1222 | bc94a25d867a |
parent 1190 | 73ec31d8bb6f |
child 1256 | 2754a6a8c8f1 |
permissions | -rw-r--r-- |
184 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2005-2008 Andrey Korotaev <unC0Rr@gmail.com> |
184 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*) |
|
18 |
||
19 |
unit uLandObjects; |
|
20 |
interface |
|
21 |
uses SDLh; |
|
22 |
{$include options.inc} |
|
23 |
||
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1156
diff
changeset
|
24 |
procedure AddObjects(); |
1085
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
25 |
procedure LoadThemeConfig; |
1183
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
26 |
procedure BlitImageAndGenerateCollisionInfo(cpX, cpY, Width: Longword; Image: PSDL_Surface); |
1190
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
27 |
procedure AddOnLandObjects(Surface: PSDL_Surface); |
184 | 28 |
|
29 |
implementation |
|
1097 | 30 |
uses uLand, uStore, uConsts, uMisc, uConsole, uRandom, uVisualGears, uFloat, GL, uSound; |
1190
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
31 |
const MaxRects = 512; |
184 | 32 |
MAXOBJECTRECTS = 16; |
33 |
MAXTHEMEOBJECTS = 32; |
|
34 |
||
35 |
type PRectArray = ^TRectsArray; |
|
36 |
TRectsArray = array[0..MaxRects] of TSDL_Rect; |
|
37 |
TThemeObject = record |
|
38 |
Surf: PSDL_Surface; |
|
39 |
inland: TSDL_Rect; |
|
40 |
outland: array[0..Pred(MAXOBJECTRECTS)] of TSDL_Rect; |
|
41 |
rectcnt: Longword; |
|
42 |
Width, Height: Longword; |
|
43 |
Maxcnt: Longword; |
|
44 |
end; |
|
45 |
TThemeObjects = record |
|
371 | 46 |
Count: LongInt; |
184 | 47 |
objs: array[0..Pred(MAXTHEMEOBJECTS)] of TThemeObject; |
48 |
end; |
|
49 |
TSprayObject = record |
|
50 |
Surf: PSDL_Surface; |
|
51 |
Width, Height: Longword; |
|
52 |
Maxcnt: Longword; |
|
53 |
end; |
|
54 |
TSprayObjects = record |
|
371 | 55 |
Count: LongInt; |
184 | 56 |
objs: array[0..Pred(MAXTHEMEOBJECTS)] of TSprayObject |
57 |
end; |
|
58 |
||
59 |
var Rects: PRectArray; |
|
60 |
RectCount: Longword; |
|
1085
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
61 |
ThemeObjects: TThemeObjects; |
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
62 |
SprayObjects: TSprayObjects; |
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
63 |
|
184 | 64 |
|
1183
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
65 |
procedure BlitImageAndGenerateCollisionInfo(cpX, cpY, Width: Longword; Image: PSDL_Surface); |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
66 |
var p: PLongwordArray; |
184 | 67 |
x, y: Longword; |
371 | 68 |
bpp: LongInt; |
184 | 69 |
begin |
70 |
WriteToConsole('Generating collision info... '); |
|
71 |
||
72 |
if SDL_MustLock(Image) then |
|
73 |
SDLTry(SDL_LockSurface(Image) >= 0, true); |
|
74 |
||
351 | 75 |
bpp:= Image^.format^.BytesPerPixel; |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1156
diff
changeset
|
76 |
TryDo(bpp = 4, 'Land object should be 32bit', true); |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
77 |
|
1183
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
78 |
if Width = 0 then Width:= Image^.w; |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
79 |
|
351 | 80 |
p:= Image^.pixels; |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1156
diff
changeset
|
81 |
for y:= 0 to Pred(Image^.h) do |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1156
diff
changeset
|
82 |
begin |
1183
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
83 |
for x:= 0 to Pred(Width) do |
1181 | 84 |
if LandPixels[cpY + y, cpX + x] = 0 then |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1156
diff
changeset
|
85 |
begin |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
86 |
LandPixels[cpY + y, cpX + x]:= p^[x]; |
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
87 |
if (p^[x] and $FF000000) <> 0 then Land[cpY + y, cpX + x]:= COLOR_LAND; |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1156
diff
changeset
|
88 |
end; |
1182
e2e13aa055c1
Step 3: Maps are rendered correctly, but without objects yet
unc0rr
parents:
1181
diff
changeset
|
89 |
p:= @(p^[Image^.pitch div 4]); |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1156
diff
changeset
|
90 |
end; |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1156
diff
changeset
|
91 |
|
184 | 92 |
if SDL_MustLock(Image) then |
93 |
SDL_UnlockSurface(Image); |
|
94 |
WriteLnToConsole(msgOK) |
|
95 |
end; |
|
96 |
||
371 | 97 |
procedure AddRect(x1, y1, w1, h1: LongInt); |
184 | 98 |
begin |
351 | 99 |
with Rects^[RectCount] do |
184 | 100 |
begin |
101 |
x:= x1; |
|
102 |
y:= y1; |
|
103 |
w:= w1; |
|
104 |
h:= h1 |
|
105 |
end; |
|
106 |
inc(RectCount); |
|
107 |
TryDo(RectCount < MaxRects, 'AddRect: overflow', true) |
|
108 |
end; |
|
109 |
||
110 |
procedure InitRects; |
|
111 |
begin |
|
112 |
RectCount:= 0; |
|
113 |
New(Rects) |
|
114 |
end; |
|
115 |
||
116 |
procedure FreeRects; |
|
117 |
begin |
|
118 |
Dispose(rects) |
|
119 |
end; |
|
120 |
||
371 | 121 |
function CheckIntersect(x1, y1, w1, h1: LongInt): boolean; |
184 | 122 |
var i: Longword; |
351 | 123 |
Result: boolean; |
184 | 124 |
begin |
125 |
Result:= false; |
|
126 |
i:= 0; |
|
127 |
if RectCount > 0 then |
|
128 |
repeat |
|
351 | 129 |
with Rects^[i] do |
184 | 130 |
Result:= (x < x1 + w1) and (x1 < x + w) and |
131 |
(y < y1 + h1) and (y1 < y + h); |
|
132 |
inc(i) |
|
351 | 133 |
until (i = RectCount) or (Result); |
134 |
CheckIntersect:= Result |
|
184 | 135 |
end; |
136 |
||
1183
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
137 |
function AddGirder(gX: LongInt): boolean; |
184 | 138 |
var tmpsurf: PSDL_Surface; |
371 | 139 |
x1, x2, y, k, i: LongInt; |
1183
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
140 |
rr: TSDL_Rect; |
351 | 141 |
Result: boolean; |
184 | 142 |
|
1183
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
143 |
function CountNonZeroz(x, y: LongInt): Longword; |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
144 |
var i: LongInt; |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
145 |
Result: Longword; |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
146 |
begin |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
147 |
Result:= 0; |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
148 |
for i:= y to y + 15 do |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
149 |
if Land[i, x] <> 0 then inc(Result); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
150 |
CountNonZeroz:= Result |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
151 |
end; |
184 | 152 |
|
153 |
begin |
|
154 |
y:= 150; |
|
155 |
repeat |
|
1183
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
156 |
inc(y, 24); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
157 |
x1:= gX; |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
158 |
x2:= gX; |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
159 |
|
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
160 |
while (x1 > 100) and (CountNonZeroz(x1, y) = 0) do dec(x1, 2); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
161 |
|
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
162 |
i:= x1 - 12; |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
163 |
repeat |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
164 |
dec(x1, 2); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
165 |
k:= CountNonZeroz(x1, y) |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
166 |
until (x1 < 100) or (k = 0) or (k = 16) or (x1 < i); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
167 |
|
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
168 |
inc(x1, 2); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
169 |
if k = 16 then |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
170 |
begin |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
171 |
while (x2 < 1900) and (CountNonZeroz(x2, y) = 0) do inc(x2, 2); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
172 |
i:= x2 + 12; |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
173 |
repeat |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
174 |
inc(x2, 2); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
175 |
k:= CountNonZeroz(x2, y) |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
176 |
until (x2 > 1900) or (k = 0) or (k = 16) or (x2 > i); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
177 |
if (x2 < 1900) and (k = 16) and (x2 - x1 > 250) |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
178 |
and not CheckIntersect(x1 - 32, y - 64, x2 - x1 + 64, 144) then break; |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
179 |
end; |
184 | 180 |
x1:= 0; |
181 |
until y > 900; |
|
1183
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
182 |
|
184 | 183 |
if x1 > 0 then |
1183
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
184 |
begin |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
185 |
Result:= true; |
1184 | 186 |
tmpsurf:= LoadImage(Pathz[ptCurrTheme] + '/Girder', false, false, true); |
1185 | 187 |
if tmpsurf = nil then tmpsurf:= LoadImage(Pathz[ptGraphics] + '/Girder', false, true, true); |
1184 | 188 |
|
1183
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
189 |
rr.x:= x1; |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
190 |
while rr.x < x2 do |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
191 |
begin |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
192 |
BlitImageAndGenerateCollisionInfo(rr.x, y, min(x2 - rr.x, tmpsurf^.w), tmpsurf); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
193 |
inc(rr.x, tmpsurf^.w); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
194 |
end; |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
195 |
SDL_FreeSurface(tmpsurf); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
196 |
|
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
197 |
AddRect(x1 - 8, y - 32, x2 - x1 + 16, 80); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
198 |
end else Result:= false; |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
199 |
|
351 | 200 |
AddGirder:= Result |
184 | 201 |
end; |
202 |
||
203 |
function CheckLand(rect: TSDL_Rect; dX, dY, Color: Longword): boolean; |
|
204 |
var i: Longword; |
|
351 | 205 |
Result: boolean; |
184 | 206 |
begin |
207 |
Result:= true; |
|
208 |
inc(rect.x, dX); |
|
209 |
inc(rect.y, dY); |
|
210 |
i:= 0; |
|
211 |
{$WARNINGS OFF} |
|
212 |
while (i <= rect.w) and Result do |
|
213 |
begin |
|
214 |
Result:= (Land[rect.y, rect.x + i] = Color) and (Land[rect.y + rect.h, rect.x + i] = Color); |
|
215 |
inc(i) |
|
216 |
end; |
|
217 |
i:= 0; |
|
218 |
while (i <= rect.h) and Result do |
|
219 |
begin |
|
220 |
Result:= (Land[rect.y + i, rect.x] = Color) and (Land[rect.y + i, rect.x + rect.w] = Color); |
|
221 |
inc(i) |
|
222 |
end; |
|
223 |
{$WARNINGS ON} |
|
351 | 224 |
CheckLand:= Result |
184 | 225 |
end; |
226 |
||
227 |
function CheckCanPlace(x, y: Longword; var Obj: TThemeObject): boolean; |
|
228 |
var i: Longword; |
|
351 | 229 |
Result: boolean; |
184 | 230 |
begin |
231 |
with Obj do |
|
232 |
if CheckLand(inland, x, y, $FFFFFF) then |
|
233 |
begin |
|
234 |
Result:= true; |
|
235 |
i:= 1; |
|
236 |
while Result and (i <= rectcnt) do |
|
237 |
begin |
|
238 |
Result:= CheckLand(outland[i], x, y, 0); |
|
239 |
inc(i) |
|
240 |
end; |
|
241 |
if Result then |
|
242 |
Result:= not CheckIntersect(x, y, Width, Height) |
|
243 |
end else |
|
351 | 244 |
Result:= false; |
245 |
CheckCanPlace:= Result |
|
184 | 246 |
end; |
247 |
||
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1156
diff
changeset
|
248 |
function TryPut(var Obj: TThemeObject): boolean; overload; |
184 | 249 |
const MaxPointsIndex = 2047; |
250 |
var x, y: Longword; |
|
251 |
ar: array[0..MaxPointsIndex] of TPoint; |
|
252 |
cnt, i: Longword; |
|
351 | 253 |
Result: boolean; |
184 | 254 |
begin |
255 |
cnt:= 0; |
|
256 |
with Obj do |
|
257 |
begin |
|
258 |
if Maxcnt = 0 then |
|
351 | 259 |
exit(false); |
184 | 260 |
x:= 0; |
261 |
repeat |
|
262 |
y:= 0; |
|
263 |
repeat |
|
264 |
if CheckCanPlace(x, y, Obj) then |
|
265 |
begin |
|
266 |
ar[cnt].x:= x; |
|
267 |
ar[cnt].y:= y; |
|
268 |
inc(cnt); |
|
269 |
if cnt > MaxPointsIndex then // buffer is full, do not check the rest land |
|
270 |
begin |
|
271 |
y:= 5000; |
|
272 |
x:= 5000; |
|
273 |
end |
|
274 |
end; |
|
275 |
inc(y, 3); |
|
276 |
until y > 1023 - Height; |
|
277 |
inc(x, getrandom(6) + 3) |
|
278 |
until x > 2047 - Width; |
|
279 |
Result:= cnt <> 0; |
|
280 |
if Result then |
|
281 |
begin |
|
282 |
i:= getrandom(cnt); |
|
1183
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
283 |
BlitImageAndGenerateCollisionInfo(ar[i].x, ar[i].y, 0, Obj.Surf); |
184 | 284 |
AddRect(ar[i].x, ar[i].y, Width, Height); |
285 |
dec(Maxcnt) |
|
286 |
end else Maxcnt:= 0 |
|
351 | 287 |
end; |
288 |
TryPut:= Result |
|
184 | 289 |
end; |
290 |
||
291 |
function TryPut(var Obj: TSprayObject; Surface: PSDL_Surface): boolean; overload; |
|
292 |
const MaxPointsIndex = 8095; |
|
293 |
var x, y: Longword; |
|
294 |
ar: array[0..MaxPointsIndex] of TPoint; |
|
295 |
cnt, i: Longword; |
|
296 |
r: TSDL_Rect; |
|
351 | 297 |
Result: boolean; |
184 | 298 |
begin |
299 |
cnt:= 0; |
|
300 |
with Obj do |
|
1190
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
301 |
begin |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
302 |
if Maxcnt = 0 then |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
303 |
exit(false); |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
304 |
x:= 0; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
305 |
r.x:= 0; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
306 |
r.y:= 0; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
307 |
r.w:= Width; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
308 |
r.h:= Height + 16; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
309 |
repeat |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
310 |
y:= 8; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
311 |
repeat |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
312 |
if CheckLand(r, x, y - 8, $FFFFFF) |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
313 |
and not CheckIntersect(x, y, Width, Height) then |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
314 |
begin |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
315 |
ar[cnt].x:= x; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
316 |
ar[cnt].y:= y; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
317 |
inc(cnt); |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
318 |
if cnt > MaxPointsIndex then // buffer is full, do not check the rest land |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
319 |
begin |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
320 |
y:= 5000; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
321 |
x:= 5000; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
322 |
end |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
323 |
end; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
324 |
inc(y, 12); |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
325 |
until y > 1023 - Height - 8; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
326 |
inc(x, getrandom(12) + 12) |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
327 |
until x > 2047 - Width; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
328 |
Result:= cnt <> 0; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
329 |
if Result then |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
330 |
begin |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
331 |
i:= getrandom(cnt); |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
332 |
r.x:= ar[i].X; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
333 |
r.y:= ar[i].Y; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
334 |
r.w:= Width; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
335 |
r.h:= Height; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
336 |
SDL_UpperBlit(Obj.Surf, nil, Surface, @r); |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
337 |
AddRect(ar[i].x - 32, ar[i].y - 32, Width + 64, Height + 64); |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
338 |
dec(Maxcnt) |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
339 |
end else Maxcnt:= 0 |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
340 |
end; |
351 | 341 |
TryPut:= Result |
184 | 342 |
end; |
343 |
||
344 |
procedure ReadThemeInfo(var ThemeObjects: TThemeObjects; var SprayObjects: TSprayObjects); |
|
345 |
var s: string; |
|
346 |
f: textfile; |
|
371 | 347 |
i, ii: LongInt; |
805 | 348 |
vobcount: Longword; |
1085
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
349 |
c1, c2: TSDL_Color; |
184 | 350 |
begin |
351 |
s:= Pathz[ptCurrTheme] + '/' + cThemeCFGFilename; |
|
352 |
WriteLnToConsole('Reading objects info...'); |
|
351 | 353 |
Assign(f, s); |
184 | 354 |
{$I-} |
355 |
Reset(f); |
|
1085
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
356 |
|
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
357 |
// read sky and explosion border colors |
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
358 |
Readln(f, c1.r, c1.g, c1. b); |
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
359 |
Readln(f, c2.r, c2.g, c2. b); |
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
360 |
|
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
361 |
glClearColor(c1.r / 255, c1.g / 255, c1.b / 255, 0.99); // sky color |
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
362 |
cExplosionBorderColor:= c2.value or $FF000000; |
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
363 |
|
1097 | 364 |
ReadLn(f, s); |
365 |
if MusicFN = '' then MusicFN:= s; |
|
366 |
||
1131
c5b8f2bfa487
- Add ability to choose clouds number in theme config file
unc0rr
parents:
1097
diff
changeset
|
367 |
ReadLn(f, cCloudsNumber); |
c5b8f2bfa487
- Add ability to choose clouds number in theme config file
unc0rr
parents:
1097
diff
changeset
|
368 |
|
184 | 369 |
Readln(f, ThemeObjects.Count); |
370 |
for i:= 0 to Pred(ThemeObjects.Count) do |
|
371 |
begin |
|
372 |
Readln(f, s); // filename |
|
373 |
with ThemeObjects.objs[i] do |
|
374 |
begin |
|
351 | 375 |
Surf:= LoadImage(Pathz[ptCurrTheme] + '/' + s, false, true, true); |
376 |
Width:= Surf^.w; |
|
377 |
Height:= Surf^.h; |
|
184 | 378 |
with inland do Read(f, x, y, w, h); |
379 |
Read(f, rectcnt); |
|
380 |
for ii:= 1 to rectcnt do |
|
381 |
with outland[ii] do Read(f, x, y, w, h); |
|
382 |
Maxcnt:= 3; |
|
383 |
ReadLn(f) |
|
384 |
end; |
|
385 |
end; |
|
386 |
||
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
780
diff
changeset
|
387 |
// sprays |
184 | 388 |
Readln(f, SprayObjects.Count); |
389 |
for i:= 0 to Pred(SprayObjects.Count) do |
|
390 |
begin |
|
391 |
Readln(f, s); // filename |
|
392 |
with SprayObjects.objs[i] do |
|
393 |
begin |
|
351 | 394 |
Surf:= LoadImage(Pathz[ptCurrTheme] + '/' + s, false, true, true); |
395 |
Width:= Surf^.w; |
|
396 |
Height:= Surf^.h; |
|
184 | 397 |
ReadLn(f, Maxcnt) |
398 |
end; |
|
399 |
end; |
|
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
780
diff
changeset
|
400 |
|
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
780
diff
changeset
|
401 |
// snowflakes |
805 | 402 |
Readln(f, vobCount); |
403 |
if vobCount > 0 then |
|
404 |
Readln(f, vobFramesCount, vobFrameTicks, vobVelocity, vobFallSpeed); |
|
405 |
||
406 |
for i:= 0 to Pred(vobCount) do |
|
806 | 407 |
AddVisualGear( -cScreenWidth + random(cScreenWidth * 2 + 2048), random(1200) - 100, vgtFlake); |
805 | 408 |
|
351 | 409 |
Close(f); |
184 | 410 |
{$I+} |
411 |
TryDo(IOResult = 0, 'Bad data or cannot access file ' + cThemeCFGFilename, true) |
|
412 |
end; |
|
413 |
||
1186
bf5af791d234
Step 5: Finally... we have theme objects with alpha-channel!
unc0rr
parents:
1185
diff
changeset
|
414 |
procedure AddThemeObjects(var ThemeObjects: TThemeObjects; MaxCount: LongInt); |
371 | 415 |
var i, ii, t: LongInt; |
184 | 416 |
b: boolean; |
417 |
begin |
|
418 |
if ThemeObjects.Count = 0 then exit; |
|
419 |
WriteLnToConsole('Adding theme objects...'); |
|
420 |
i:= 1; |
|
421 |
repeat |
|
422 |
t:= getrandom(ThemeObjects.Count); |
|
423 |
ii:= t; |
|
424 |
repeat |
|
425 |
inc(ii); |
|
426 |
if ii = ThemeObjects.Count then ii:= 0; |
|
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1156
diff
changeset
|
427 |
b:= TryPut(ThemeObjects.objs[ii]) |
184 | 428 |
until b or (ii = t); |
429 |
inc(i) |
|
430 |
until (i > MaxCount) or not b; |
|
431 |
end; |
|
432 |
||
433 |
procedure AddSprayObjects(Surface: PSDL_Surface; var SprayObjects: TSprayObjects; MaxCount: Longword); |
|
434 |
var i: Longword; |
|
371 | 435 |
ii, t: LongInt; |
184 | 436 |
b: boolean; |
437 |
begin |
|
438 |
if SprayObjects.Count = 0 then exit; |
|
439 |
WriteLnToConsole('Adding spray objects...'); |
|
440 |
i:= 1; |
|
441 |
repeat |
|
442 |
t:= getrandom(SprayObjects.Count); |
|
443 |
ii:= t; |
|
444 |
repeat |
|
445 |
inc(ii); |
|
446 |
if ii = SprayObjects.Count then ii:= 0; |
|
447 |
b:= TryPut(SprayObjects.objs[ii], Surface) |
|
448 |
until b or (ii = t); |
|
449 |
inc(i) |
|
450 |
until (i > MaxCount) or not b; |
|
451 |
end; |
|
452 |
||
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1156
diff
changeset
|
453 |
procedure AddObjects(); |
184 | 454 |
begin |
1183
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
455 |
InitRects; |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
456 |
AddGirder(256); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
457 |
AddGirder(512); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
458 |
AddGirder(768); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
459 |
AddGirder(1024); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
460 |
AddGirder(1280); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
461 |
AddGirder(1536); |
540cea859395
Step 4: repair girder rendering (girder is 32bit now)
unc0rr
parents:
1182
diff
changeset
|
462 |
AddGirder(1792); |
1186
bf5af791d234
Step 5: Finally... we have theme objects with alpha-channel!
unc0rr
parents:
1185
diff
changeset
|
463 |
AddThemeObjects(ThemeObjects, 8); |
184 | 464 |
AddProgress; |
1190
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
465 |
FreeRects |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
466 |
end; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
467 |
|
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
468 |
procedure AddOnLandObjects(Surface: PSDL_Surface); |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
469 |
begin |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
470 |
InitRects; |
73ec31d8bb6f
Enable back rendering objects that are put on top of land texture
unc0rr
parents:
1186
diff
changeset
|
471 |
AddSprayObjects(Surface, SprayObjects, 12); |
1186
bf5af791d234
Step 5: Finally... we have theme objects with alpha-channel!
unc0rr
parents:
1185
diff
changeset
|
472 |
FreeRects |
184 | 473 |
end; |
474 |
||
1085
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
475 |
procedure LoadThemeConfig; |
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
476 |
begin |
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
477 |
ReadThemeInfo(ThemeObjects, SprayObjects) |
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
478 |
end; |
0b82870073b5
Load flakes information from theme.cfg when playing painted map
unc0rr
parents:
1066
diff
changeset
|
479 |
|
184 | 480 |
end. |