author | unc0rr |
Sun, 27 Jul 2008 23:01:41 +0000 | |
changeset 1132 | b4c0698fbb6b |
parent 1079 | 2a4a8a5ca392 |
child 1505 | 3a96e93572cb |
permissions | -rw-r--r-- |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
3 |
* Copyright (c) 2008 Andrey Korotaev <unC0Rr@gmail.com> |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
4 |
* |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
5 |
* This program is free software; you can redistribute it and/or modify |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
6 |
* it under the terms of the GNU General Public License as published by |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
7 |
* the Free Software Foundation; version 2 of the License |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
8 |
* |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
9 |
* This program is distributed in the hope that it will be useful, |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
12 |
* GNU General Public License for more details. |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
13 |
* |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
14 |
* You should have received a copy of the GNU General Public License |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
15 |
* along with this program; if not, write to the Free Software |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
17 |
*) |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
18 |
|
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
19 |
unit uVisualGears; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
20 |
interface |
805 | 21 |
uses SDLh, uConsts, uFloat, GL; |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
22 |
{$INCLUDE options.inc} |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
23 |
const AllInactive: boolean = false; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
24 |
|
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
25 |
type PVisualGear = ^TVisualGear; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
26 |
TVGearStepProcedure = procedure (Gear: PVisualGear; Steps: Longword); |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
27 |
TVisualGear = record |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
28 |
NextGear, PrevGear: PVisualGear; |
805 | 29 |
Frame, |
30 |
FrameTicks: Longword; |
|
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
31 |
X : hwFloat; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
32 |
Y : hwFloat; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
33 |
dX: hwFloat; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
34 |
dY: hwFloat; |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
938
diff
changeset
|
35 |
mdY: QWord; |
805 | 36 |
Angle, dAngle: real; |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
37 |
Kind: TVisualGearType; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
38 |
doStep: TVGearStepProcedure; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
39 |
end; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
40 |
|
805 | 41 |
function AddVisualGear(X, Y: LongInt; Kind: TVisualGearType): PVisualGear; |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
42 |
procedure ProcessVisualGears(Steps: Longword); |
1045 | 43 |
procedure DrawVisualGears(Layer: LongWord); |
1041 | 44 |
procedure DeleteVisualGear(Gear: PVisualGear); |
803 | 45 |
procedure AddClouds; |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
46 |
|
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
47 |
var VisualGearsList: PVisualGear = nil; |
805 | 48 |
vobFrameTicks, vobFramesCount: Longword; |
49 |
vobVelocity, vobFallSpeed: LongInt; |
|
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
50 |
|
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
51 |
implementation |
805 | 52 |
uses uWorld, uMisc, uStore; |
1047 | 53 |
const cExplFrameTicks = 110; |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
54 |
|
803 | 55 |
// ================================================================== |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
56 |
procedure doStepFlake(Gear: PVisualGear; Steps: Longword); |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
57 |
begin |
805 | 58 |
with Gear^ do |
59 |
begin |
|
60 |
inc(FrameTicks, Steps); |
|
61 |
if FrameTicks > vobFrameTicks then |
|
62 |
begin |
|
63 |
dec(FrameTicks, vobFrameTicks); |
|
64 |
inc(Frame); |
|
65 |
if Frame = vobFramesCount then Frame:= 0 |
|
66 |
end |
|
67 |
end; |
|
68 |
||
69 |
Gear^.X:= Gear^.X + (cWindSpeed * 200 + Gear^.dX) * Steps; |
|
808 | 70 |
Gear^.Y:= Gear^.Y + (Gear^.dY + cGravity * vobFallSpeed) * Steps; |
71 |
Gear^.Angle:= Gear^.Angle + Gear^.dAngle * Steps; |
|
805 | 72 |
|
73 |
if hwRound(Gear^.X) < -cScreenWidth - 64 then Gear^.X:= int2hwFloat(cScreenWidth + 2048) else |
|
74 |
if hwRound(Gear^.X) > cScreenWidth + 2048 then Gear^.X:= int2hwFloat(-cScreenWidth - 64); |
|
938 | 75 |
if hwRound(Gear^.Y) > 1100 then Gear^.Y:= Gear^.Y - int2hwFloat(1228) |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
76 |
end; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
77 |
|
803 | 78 |
procedure doStepCloud(Gear: PVisualGear; Steps: Longword); |
1079 | 79 |
var i: Longword; |
803 | 80 |
begin |
81 |
Gear^.X:= Gear^.X + (cWindSpeed * 200 + Gear^.dX) * Steps; |
|
805 | 82 |
|
1079 | 83 |
for i:= 0 to Steps - 1 do |
84 |
begin |
|
85 |
if hwRound(Gear^.Y) > -160 then |
|
86 |
Gear^.dY:= Gear^.dY - _1div50000 |
|
87 |
else |
|
88 |
Gear^.dY:= Gear^.dY + _1div50000; |
|
89 |
||
90 |
Gear^.Y:= Gear^.Y + Gear^.dY |
|
91 |
end; |
|
805 | 92 |
|
803 | 93 |
if hwRound(Gear^.X) < -cScreenWidth - 256 then Gear^.X:= int2hwFloat(cScreenWidth + 2048) else |
94 |
if hwRound(Gear^.X) > cScreenWidth + 2048 then Gear^.X:= int2hwFloat(-cScreenWidth - 256) |
|
95 |
end; |
|
96 |
||
1041 | 97 |
procedure doStepExpl(Gear: PVisualGear; Steps: Longword); |
98 |
begin |
|
1046 | 99 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
1041 | 100 |
|
1046 | 101 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
102 |
//Gear^.dY:= Gear^.dY + cGravity; |
|
1041 | 103 |
|
1045 | 104 |
if Gear^.FrameTicks <= Steps then |
105 |
if Gear^.Frame = 0 then DeleteVisualGear(Gear) |
|
106 |
else |
|
107 |
begin |
|
108 |
dec(Gear^.Frame); |
|
109 |
Gear^.FrameTicks:= cExplFrameTicks |
|
110 |
end |
|
111 |
else dec(Gear^.FrameTicks, Steps) |
|
1041 | 112 |
end; |
113 |
||
1046 | 114 |
procedure doStepFire(Gear: PVisualGear; Steps: Longword); |
115 |
begin |
|
116 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
117 |
||
118 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps;// + cGravity * (Steps * Steps); |
|
119 |
Gear^.dY:= Gear^.dY + cGravity * Steps; |
|
120 |
||
121 |
if Gear^.FrameTicks <= Steps then |
|
122 |
DeleteVisualGear(Gear) |
|
123 |
else |
|
124 |
dec(Gear^.FrameTicks, Steps) |
|
125 |
end; |
|
126 |
||
803 | 127 |
// ================================================================== |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
128 |
const doStepHandlers: array[TVisualGearType] of TVGearStepProcedure = |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
129 |
( |
803 | 130 |
@doStepFlake, |
1041 | 131 |
@doStepCloud, |
1046 | 132 |
@doStepExpl, |
1047 | 133 |
@doStepExpl, |
1046 | 134 |
@doStepFire |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
135 |
); |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
136 |
|
805 | 137 |
function AddVisualGear(X, Y: LongInt; Kind: TVisualGearType): PVisualGear; |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
138 |
var Result: PVisualGear; |
1045 | 139 |
t: Longword; |
140 |
sp: hwFloat; |
|
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
141 |
begin |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
142 |
New(Result); |
812
cbc392576990
Fix memory corrupt due to wrong parameter in sizeof()
unc0rr
parents:
808
diff
changeset
|
143 |
FillChar(Result^, sizeof(TVisualGear), 0); |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
144 |
Result^.X:= int2hwFloat(X); |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
145 |
Result^.Y:= int2hwFloat(Y); |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
146 |
Result^.Kind := Kind; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
147 |
Result^.doStep:= doStepHandlers[Kind]; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
148 |
|
803 | 149 |
case Kind of |
805 | 150 |
vgtFlake: with Result^ do |
151 |
begin |
|
152 |
FrameTicks:= random(vobFrameTicks); |
|
153 |
Frame:= random(vobFramesCount); |
|
154 |
Angle:= random * 360; |
|
155 |
dx.isNegative:= random(2) = 0; |
|
156 |
dx.QWordValue:= random(100000000); |
|
157 |
dy.isNegative:= false; |
|
806 | 158 |
dy.QWordValue:= random(70000000); |
805 | 159 |
dAngle:= (random(2) * 2 - 1) * (1 + random) * vobVelocity / 1000 |
160 |
end; |
|
161 |
vgtCloud: with Result^ do |
|
162 |
begin |
|
163 |
Frame:= random(4); |
|
164 |
dx.isNegative:= random(2) = 0; |
|
165 |
dx.QWordValue:= random(214748364); |
|
166 |
dy.isNegative:= random(2) = 0; |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
938
diff
changeset
|
167 |
dy.QWordValue:= 21474836 + random(64424509); |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
938
diff
changeset
|
168 |
mdY:= dy.QWordValue |
805 | 169 |
end; |
1047 | 170 |
vgtExplPart, |
171 |
vgtExplPart2: with Result^ do |
|
1041 | 172 |
begin |
1045 | 173 |
t:= random(1024); |
1047 | 174 |
sp:= _0_001 * (random(95) + 70); |
1045 | 175 |
dx:= AngleSin(t) * sp; |
1041 | 176 |
dx.isNegative:= random(2) = 0; |
1045 | 177 |
dy:= AngleCos(t) * sp; |
1041 | 178 |
dy.isNegative:= random(2) = 0; |
1045 | 179 |
Frame:= 7 - random(3); |
180 |
FrameTicks:= cExplFrameTicks |
|
1041 | 181 |
end; |
1046 | 182 |
vgtFire: with Result^ do |
183 |
begin |
|
184 |
t:= random(1024); |
|
185 |
sp:= _0_001 * (random(85) + 95); |
|
186 |
dx:= AngleSin(t) * sp; |
|
187 |
dx.isNegative:= random(2) = 0; |
|
188 |
dy:= AngleCos(t) * sp; |
|
189 |
dy.isNegative:= random(2) = 0; |
|
1047 | 190 |
FrameTicks:= 650 + random(250); |
1046 | 191 |
Frame:= random(8) |
192 |
end; |
|
803 | 193 |
end; |
194 |
||
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
195 |
if VisualGearsList <> nil then |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
196 |
begin |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
197 |
VisualGearsList^.PrevGear:= Result; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
198 |
Result^.NextGear:= VisualGearsList |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
199 |
end; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
200 |
VisualGearsList:= Result; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
201 |
|
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
202 |
AddVisualGear:= Result |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
203 |
end; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
204 |
|
1041 | 205 |
procedure DeleteVisualGear(Gear: PVisualGear); |
206 |
begin |
|
207 |
if Gear^.NextGear <> nil then Gear^.NextGear^.PrevGear:= Gear^.PrevGear; |
|
208 |
if Gear^.PrevGear <> nil then Gear^.PrevGear^.NextGear:= Gear^.NextGear |
|
209 |
else VisualGearsList:= Gear^.NextGear; |
|
210 |
||
211 |
Dispose(Gear) |
|
212 |
end; |
|
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
213 |
|
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
214 |
procedure ProcessVisualGears(Steps: Longword); |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
215 |
var Gear, t: PVisualGear; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
216 |
begin |
803 | 217 |
if Steps = 0 then exit; |
218 |
||
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
219 |
t:= VisualGearsList; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
220 |
while t <> nil do |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
221 |
begin |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
222 |
Gear:= t; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
223 |
t:= Gear^.NextGear; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
224 |
Gear^.doStep(Gear, Steps) |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
225 |
end |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
226 |
end; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
227 |
|
1045 | 228 |
procedure DrawVisualGears(Layer: LongWord); |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
229 |
var Gear: PVisualGear; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
230 |
begin |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
231 |
Gear:= VisualGearsList; |
1045 | 232 |
case Layer of |
233 |
0: while Gear <> nil do |
|
234 |
begin |
|
235 |
case Gear^.Kind of |
|
236 |
vgtFlake: if vobVelocity = 0 then |
|
237 |
DrawSprite(sprFlake, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Frame) |
|
238 |
else |
|
239 |
DrawRotatedF(sprFlake, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Frame, 1, Gear^.Angle); |
|
240 |
vgtCloud: DrawSprite(sprCloud, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Frame); |
|
241 |
end; |
|
242 |
Gear:= Gear^.NextGear |
|
243 |
end; |
|
244 |
1: while Gear <> nil do |
|
245 |
begin |
|
246 |
case Gear^.Kind of |
|
247 |
vgtExplPart: DrawSprite(sprExplPart, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 7 - Gear^.Frame); |
|
1047 | 248 |
vgtExplPart2: DrawSprite(sprExplPart2, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 7 - Gear^.Frame); |
1046 | 249 |
vgtFire: DrawSprite(sprFlame, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, (RealTicks div 64 + Gear^.Frame) mod 8); |
1045 | 250 |
end; |
251 |
Gear:= Gear^.NextGear |
|
252 |
end |
|
253 |
end |
|
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
254 |
end; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
255 |
|
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
256 |
procedure AddClouds; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
257 |
var i: LongInt; |
803 | 258 |
begin |
1132 | 259 |
for i:= 0 to cCloudsNumber - 1 do |
260 |
AddVisualGear( - cScreenWidth + i * ((cScreenWidth * 2 + 2304) div (cCloudsNumber + 1)), -160, vgtCloud) |
|
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
261 |
end; |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
262 |
|
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
263 |
initialization |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
264 |
|
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
265 |
finalization |
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
266 |
|
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
diff
changeset
|
267 |
end. |