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