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