author | Xeli |
Fri, 01 Jul 2011 08:46:47 +0200 | |
branch | hedgeroid |
changeset 5385 | a864a0aeed96 |
parent 5366 | bfdd925e89a5 |
child 5491 | 3a82724de759 |
permissions | -rw-r--r-- |
3441 | 1 |
(* |
2 |
* Hedgewars, a free turn based strategy game |
|
4976 | 3 |
* Copyright (c) 2004-2011 Andrey Korotaev <unC0Rr@gmail.com> |
3441 | 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 |
*) |
|
5121
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
18 |
|
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
19 |
(* |
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
20 |
* This file contains the step handlers for visual gears. |
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
21 |
* |
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
22 |
* Since the effects of visual gears do not affect the course of the game, |
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
23 |
* no "synchronization" between players is required. |
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
24 |
* => The usage of safe functions or data types (e.g. GetRandom() or hwFloat) |
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
25 |
* is usually not necessary and therefore undesirable. |
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
26 |
*) |
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
27 |
|
3441 | 28 |
procedure doStepFlake(Gear: PVisualGear; Steps: Longword); |
4379
6cd6b77df8b8
No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents:
4365
diff
changeset
|
29 |
var sign: real; |
3441 | 30 |
begin |
3641 | 31 |
if vobCount = 0 then exit; |
3611 | 32 |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
33 |
sign:= 1; |
3441 | 34 |
with Gear^ do |
35 |
begin |
|
36 |
inc(FrameTicks, Steps); |
|
4806
48c1a395f0a7
added flake configuration also in sudden death and SDClouds for underwater
Henek
parents:
4475
diff
changeset
|
37 |
if not SuddenDeathDmg and (FrameTicks > vobFrameTicks) then |
3441 | 38 |
begin |
39 |
dec(FrameTicks, vobFrameTicks); |
|
40 |
inc(Frame); |
|
41 |
if Frame = vobFramesCount then Frame:= 0 |
|
4806
48c1a395f0a7
added flake configuration also in sudden death and SDClouds for underwater
Henek
parents:
4475
diff
changeset
|
42 |
end |
48c1a395f0a7
added flake configuration also in sudden death and SDClouds for underwater
Henek
parents:
4475
diff
changeset
|
43 |
else if SuddenDeathDmg and (FrameTicks > vobSDFrameTicks) then |
48c1a395f0a7
added flake configuration also in sudden death and SDClouds for underwater
Henek
parents:
4475
diff
changeset
|
44 |
begin |
48c1a395f0a7
added flake configuration also in sudden death and SDClouds for underwater
Henek
parents:
4475
diff
changeset
|
45 |
dec(FrameTicks, vobSDFrameTicks); |
48c1a395f0a7
added flake configuration also in sudden death and SDClouds for underwater
Henek
parents:
4475
diff
changeset
|
46 |
inc(Frame); |
48c1a395f0a7
added flake configuration also in sudden death and SDClouds for underwater
Henek
parents:
4475
diff
changeset
|
47 |
if Frame = vobSDFramesCount then Frame:= 0 |
3441 | 48 |
end; |
5355 | 49 |
X:= X + (cWindSpeedf * 400 + dX + tdX) * Steps; |
4806
48c1a395f0a7
added flake configuration also in sudden death and SDClouds for underwater
Henek
parents:
4475
diff
changeset
|
50 |
if SuddenDeathDmg then |
48c1a395f0a7
added flake configuration also in sudden death and SDClouds for underwater
Henek
parents:
4475
diff
changeset
|
51 |
Y:= Y + (dY + tdY + cGravityf * vobSDFallSpeed) * Steps |
48c1a395f0a7
added flake configuration also in sudden death and SDClouds for underwater
Henek
parents:
4475
diff
changeset
|
52 |
else |
48c1a395f0a7
added flake configuration also in sudden death and SDClouds for underwater
Henek
parents:
4475
diff
changeset
|
53 |
Y:= Y + (dY + tdY + cGravityf * vobFallSpeed) * Steps; |
3441 | 54 |
Angle:= Angle + dAngle * Steps; |
4152
07008cb354f9
Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents:
4034
diff
changeset
|
55 |
if Angle > 360 then |
07008cb354f9
Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents:
4034
diff
changeset
|
56 |
Angle:= Angle - 360 |
07008cb354f9
Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents:
4034
diff
changeset
|
57 |
else |
07008cb354f9
Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents:
4034
diff
changeset
|
58 |
if Angle < - 360 then |
07008cb354f9
Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents:
4034
diff
changeset
|
59 |
Angle:= Angle + 360; |
07008cb354f9
Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents:
4034
diff
changeset
|
60 |
|
3441 | 61 |
|
3764 | 62 |
if (round(X) >= cLeftScreenBorder) and |
63 |
(round(X) <= cRightScreenBorder) and |
|
4161 | 64 |
(round(Y) - 75 <= LAND_HEIGHT) and |
3441 | 65 |
(Timer > 0) and (Timer-Steps > 0) then |
66 |
begin |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
67 |
if tdX > 0 then sign := 1 |
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
68 |
else sign:= -1; |
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
69 |
tdX:= tdX - 0.005*Steps*sign; |
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
70 |
if ((sign < 0) and (tdX > 0)) or ((sign > 0) and (tdX < 0)) then tdX:= 0; |
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
71 |
if tdX > 0 then sign := 1 |
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
72 |
else sign:= -1; |
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
73 |
tdY:= tdY - 0.005*Steps*sign; |
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
74 |
if ((sign < 0) and (tdY > 0)) or ((sign > 0) and (tdY < 0)) then tdY:= 0; |
3441 | 75 |
dec(Timer, Steps) |
76 |
end |
|
77 |
else |
|
78 |
begin |
|
3764 | 79 |
if round(X) < cLeftScreenBorder then X:= X + cScreenSpace else |
80 |
if round(X) > cRightScreenBorder then X:= X - cScreenSpace; |
|
4379
6cd6b77df8b8
No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents:
4365
diff
changeset
|
81 |
// if round(Y) < (LAND_HEIGHT - 1024 - 75) then Y:= Y + 25.0; // For if flag is set for flakes rising upwards? |
6cd6b77df8b8
No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents:
4365
diff
changeset
|
82 |
if round(Y) - 75 > LAND_HEIGHT then Y:= Y - (1024 + 150); // TODO - configure in theme (jellies for example could use limited range) |
3441 | 83 |
Timer:= 0; |
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
84 |
tdX:= 0; |
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
85 |
tdY:= 0 |
3441 | 86 |
end; |
87 |
end; |
|
88 |
||
89 |
end; |
|
90 |
||
91 |
//////////////////////////////////////////////////////////////////////////////// |
|
92 |
procedure doStepBeeTrace(Gear: PVisualGear; Steps: Longword); |
|
93 |
begin |
|
94 |
if Gear^.FrameTicks > Steps then |
|
95 |
dec(Gear^.FrameTicks, Steps) |
|
96 |
else |
|
97 |
DeleteVisualGear(Gear); |
|
98 |
end; |
|
99 |
||
100 |
//////////////////////////////////////////////////////////////////////////////// |
|
101 |
procedure doStepCloud(Gear: PVisualGear; Steps: Longword); |
|
3592
0bcad5c38c9e
clouds: up-and-down-bouncing now without evil loop
sheepluva
parents:
3590
diff
changeset
|
102 |
var s: Longword; |
4379
6cd6b77df8b8
No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents:
4365
diff
changeset
|
103 |
t: real; |
3441 | 104 |
begin |
3994
486da687d76a
fix/tweak let clouds reflect wind speed and direction again + stronger
sheepluva
parents:
3976
diff
changeset
|
105 |
Gear^.X:= Gear^.X + (cWindSpeedf * 750 * Gear^.dX) * Steps; |
3441 | 106 |
|
3592
0bcad5c38c9e
clouds: up-and-down-bouncing now without evil loop
sheepluva
parents:
3590
diff
changeset
|
107 |
// up-and-down-bounce magic |
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
108 |
s := (GameTicks + Gear^.Timer) mod 4096; |
5151
cbadb9fa52fc
An experiment - make bazooka AI use float instead of hwFloat - should be as accurate, but faster.
nemo
parents:
5121
diff
changeset
|
109 |
t := 8 * hwFloat2Float(AngleSin(s mod 2048)); |
3597
978c30ef50fc
visual gears: fixing nemo's c-style assignment/multiplications
sheepluva
parents:
3593
diff
changeset
|
110 |
if (s < 2048) then t := -t; |
3441 | 111 |
|
4161 | 112 |
Gear^.Y := LAND_HEIGHT - 1184 + LongInt(Gear^.Timer mod 8) + t; |
3441 | 113 |
|
3764 | 114 |
if round(Gear^.X) < cLeftScreenBorder then Gear^.X:= Gear^.X + cScreenSpace else |
115 |
if round(Gear^.X) > cRightScreenBorder then Gear^.X:= Gear^.X - cScreenSpace |
|
3441 | 116 |
end; |
117 |
||
118 |
//////////////////////////////////////////////////////////////////////////////// |
|
119 |
procedure doStepExpl(Gear: PVisualGear; Steps: Longword); |
|
120 |
begin |
|
121 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
122 |
||
123 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
124 |
//Gear^.dY:= Gear^.dY + cGravityf; |
3441 | 125 |
|
126 |
if Gear^.FrameTicks <= Steps then |
|
127 |
if Gear^.Frame = 0 then DeleteVisualGear(Gear) |
|
128 |
else |
|
129 |
begin |
|
130 |
dec(Gear^.Frame); |
|
131 |
Gear^.FrameTicks:= cExplFrameTicks |
|
132 |
end |
|
133 |
else dec(Gear^.FrameTicks, Steps) |
|
134 |
end; |
|
135 |
||
136 |
//////////////////////////////////////////////////////////////////////////////// |
|
3704 | 137 |
procedure doStepNote(Gear: PVisualGear; Steps: Longword); |
138 |
begin |
|
139 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
140 |
||
141 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
|
3706 | 142 |
Gear^.dY:= Gear^.dY + cGravityf * Steps / 2; |
3704 | 143 |
|
3706 | 144 |
Gear^.Angle:= Gear^.Angle + (Gear^.Frame + 1) * Steps / 10; |
145 |
while Gear^.Angle > cMaxAngle do |
|
146 |
Gear^.Angle:= Gear^.Angle - cMaxAngle; |
|
3704 | 147 |
|
148 |
if Gear^.FrameTicks <= Steps then |
|
149 |
DeleteVisualGear(Gear) |
|
150 |
else |
|
151 |
dec(Gear^.FrameTicks, Steps) |
|
152 |
end; |
|
153 |
||
154 |
//////////////////////////////////////////////////////////////////////////////// |
|
4279 | 155 |
procedure doStepLineTrail(Gear: PVisualGear; Steps: Longword); |
156 |
begin |
|
157 |
Steps := Steps; |
|
158 |
if Gear^.Timer <= Steps then |
|
159 |
DeleteVisualGear(Gear) |
|
160 |
else |
|
161 |
dec(Gear^.Timer, Steps) |
|
162 |
end; |
|
163 |
||
164 |
//////////////////////////////////////////////////////////////////////////////// |
|
3441 | 165 |
procedure doStepEgg(Gear: PVisualGear; Steps: Longword); |
166 |
begin |
|
167 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
168 |
||
169 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
170 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
3441 | 171 |
|
172 |
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle; |
|
173 |
||
174 |
if Gear^.FrameTicks <= Steps then |
|
175 |
DeleteVisualGear(Gear) |
|
176 |
else |
|
177 |
dec(Gear^.FrameTicks, Steps) |
|
178 |
end; |
|
179 |
||
180 |
//////////////////////////////////////////////////////////////////////////////// |
|
181 |
procedure doStepFire(Gear: PVisualGear; Steps: Longword); |
|
3751 | 182 |
var vgt: PVisualGear; |
3441 | 183 |
begin |
184 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
185 |
||
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
186 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps;// + cGravityf * (Steps * Steps); |
3751 | 187 |
if (Gear^.State and gstTmpFlag) = 0 then |
188 |
begin |
|
189 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
|
3764 | 190 |
if ((GameTicks mod 200) < Steps + 1) then |
3751 | 191 |
begin |
192 |
vgt:= AddVisualGear(round(Gear^.X), round(Gear^.Y), vgtFire); |
|
193 |
if vgt <> nil then |
|
194 |
begin |
|
195 |
vgt^.dx:= 0; |
|
196 |
vgt^.dy:= 0; |
|
197 |
vgt^.State:= gstTmpFlag; |
|
198 |
end; |
|
199 |
end |
|
200 |
end |
|
201 |
else |
|
202 |
inc(Steps, Steps); |
|
3441 | 203 |
|
204 |
if Gear^.FrameTicks <= Steps then |
|
205 |
DeleteVisualGear(Gear) |
|
206 |
else |
|
207 |
dec(Gear^.FrameTicks, Steps) |
|
208 |
end; |
|
209 |
||
210 |
//////////////////////////////////////////////////////////////////////////////// |
|
211 |
procedure doStepShell(Gear: PVisualGear; Steps: Longword); |
|
212 |
begin |
|
213 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
214 |
||
215 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
216 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
3441 | 217 |
|
218 |
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle; |
|
219 |
||
220 |
if Gear^.FrameTicks <= Steps then |
|
221 |
DeleteVisualGear(Gear) |
|
222 |
else |
|
223 |
dec(Gear^.FrameTicks, Steps) |
|
224 |
end; |
|
225 |
||
226 |
procedure doStepSmallDamage(Gear: PVisualGear; Steps: Longword); |
|
227 |
begin |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
228 |
Gear^.Y:= Gear^.Y - 0.02 * Steps; |
3441 | 229 |
|
230 |
if Gear^.FrameTicks <= Steps then |
|
231 |
DeleteVisualGear(Gear) |
|
232 |
else |
|
233 |
dec(Gear^.FrameTicks, Steps) |
|
234 |
end; |
|
235 |
||
236 |
//////////////////////////////////////////////////////////////////////////////// |
|
237 |
procedure doStepBubble(Gear: PVisualGear; Steps: Longword); |
|
238 |
begin |
|
3909
4ba25a3d15af
remove windspeed from bubbles, remove initial dY from bubbles, apply dY/dX to bubbles, correct offsets on flying saucer flame graphics, add bubbles when flying saucer thrusts underwater, make flying saucer sink more slowly underwater
nemo
parents:
3764
diff
changeset
|
239 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
4ba25a3d15af
remove windspeed from bubbles, remove initial dY from bubbles, apply dY/dX to bubbles, correct offsets on flying saucer flame graphics, add bubbles when flying saucer thrusts underwater, make flying saucer sink more slowly underwater
nemo
parents:
3764
diff
changeset
|
240 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
241 |
Gear^.Y:= Gear^.Y - cDrownSpeedf * Steps; |
3441 | 242 |
|
4172 | 243 |
Gear^.dX := Gear^.dX / (1.001 * Steps); |
244 |
Gear^.dY := Gear^.dY / (1.001 * Steps); |
|
3909
4ba25a3d15af
remove windspeed from bubbles, remove initial dY from bubbles, apply dY/dX to bubbles, correct offsets on flying saucer flame graphics, add bubbles when flying saucer thrusts underwater, make flying saucer sink more slowly underwater
nemo
parents:
3764
diff
changeset
|
245 |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
246 |
if (Gear^.FrameTicks <= Steps) or (round(Gear^.Y) < cWaterLine) then |
3441 | 247 |
DeleteVisualGear(Gear) |
248 |
else |
|
249 |
dec(Gear^.FrameTicks, Steps) |
|
250 |
end; |
|
251 |
||
252 |
//////////////////////////////////////////////////////////////////////////////// |
|
253 |
procedure doStepHealth(Gear: PVisualGear; Steps: Longword); |
|
254 |
begin |
|
255 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
256 |
Gear^.Y:= Gear^.Y - Gear^.dY * Steps; |
|
257 |
||
258 |
if Gear^.FrameTicks <= Steps then |
|
259 |
DeleteVisualGear(Gear) |
|
260 |
else |
|
261 |
dec(Gear^.FrameTicks, Steps); |
|
262 |
end; |
|
263 |
||
264 |
//////////////////////////////////////////////////////////////////////////////// |
|
265 |
procedure doStepSteam(Gear: PVisualGear; Steps: Longword); |
|
266 |
begin |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
267 |
Gear^.X:= Gear^.X + (cWindSpeedf * 100 + Gear^.dX) * Steps; |
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
268 |
Gear^.Y:= Gear^.Y - cDrownSpeedf * Steps; |
3441 | 269 |
|
270 |
if Gear^.FrameTicks <= Steps then |
|
271 |
if Gear^.Frame = 0 then DeleteVisualGear(Gear) |
|
272 |
else |
|
273 |
begin |
|
274 |
if Random(2) = 0 then dec(Gear^.Frame); |
|
275 |
Gear^.FrameTicks:= cExplFrameTicks |
|
276 |
end |
|
277 |
else dec(Gear^.FrameTicks, Steps) |
|
278 |
end; |
|
279 |
||
280 |
//////////////////////////////////////////////////////////////////////////////// |
|
281 |
procedure doStepAmmo(Gear: PVisualGear; Steps: Longword); |
|
282 |
begin |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
283 |
Gear^.Y:= Gear^.Y - cDrownSpeedf * Steps; |
3441 | 284 |
|
285 |
Gear^.scale:= Gear^.scale + 0.0025 * Steps; |
|
286 |
Gear^.alpha:= Gear^.alpha - 0.0015 * Steps; |
|
287 |
||
288 |
if Gear^.alpha < 0 then DeleteVisualGear(Gear) |
|
289 |
end; |
|
290 |
||
291 |
//////////////////////////////////////////////////////////////////////////////// |
|
292 |
procedure doStepSmoke(Gear: PVisualGear; Steps: Longword); |
|
293 |
begin |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
294 |
Gear^.X:= Gear^.X + (cWindSpeedf + Gear^.dX) * Steps; |
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
295 |
Gear^.Y:= Gear^.Y - (cDrownSpeedf + Gear^.dY) * Steps; |
3441 | 296 |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
297 |
Gear^.dX := Gear^.dX + (cWindSpeedf * 0.3 * Steps); |
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
298 |
//Gear^.dY := Gear^.dY - (cDrownSpeedf * 0.995); |
3441 | 299 |
|
300 |
if Gear^.FrameTicks <= Steps then |
|
301 |
if Gear^.Frame = 0 then DeleteVisualGear(Gear) |
|
302 |
else |
|
303 |
begin |
|
304 |
if Random(2) = 0 then dec(Gear^.Frame); |
|
305 |
Gear^.FrameTicks:= cExplFrameTicks |
|
306 |
end |
|
307 |
else dec(Gear^.FrameTicks, Steps) |
|
308 |
end; |
|
309 |
||
310 |
//////////////////////////////////////////////////////////////////////////////// |
|
311 |
procedure doStepDust(Gear: PVisualGear; Steps: Longword); |
|
312 |
begin |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
313 |
Gear^.X:= Gear^.X + (cWindSpeedf + (cWindSpeedf * 0.03 * Steps) + Gear^.dX) * Steps; |
3441 | 314 |
Gear^.Y:= Gear^.Y - (Gear^.dY) * Steps; |
315 |
||
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
316 |
Gear^.dX := Gear^.dX - (Gear^.dX * 0.005 * Steps); |
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
317 |
Gear^.dY := Gear^.dY - (cDrownSpeedf * 0.001 * Steps); |
3441 | 318 |
|
319 |
if Gear^.FrameTicks <= Steps then |
|
320 |
if Gear^.Frame = 0 then DeleteVisualGear(Gear) |
|
321 |
else |
|
322 |
begin |
|
323 |
dec(Gear^.Frame); |
|
324 |
Gear^.FrameTicks:= cExplFrameTicks |
|
325 |
end |
|
326 |
else dec(Gear^.FrameTicks, Steps) |
|
327 |
end; |
|
328 |
||
329 |
//////////////////////////////////////////////////////////////////////////////// |
|
330 |
procedure doStepSplash(Gear: PVisualGear; Steps: Longword); |
|
331 |
begin |
|
332 |
if Gear^.FrameTicks <= Steps then |
|
333 |
DeleteVisualGear(Gear) |
|
334 |
else |
|
335 |
dec(Gear^.FrameTicks, Steps); |
|
336 |
end; |
|
337 |
||
338 |
//////////////////////////////////////////////////////////////////////////////// |
|
339 |
procedure doStepDroplet(Gear: PVisualGear; Steps: Longword); |
|
340 |
begin |
|
341 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
342 |
||
343 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
344 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
3441 | 345 |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
346 |
if round(Gear^.Y) > cWaterLine then begin |
3441 | 347 |
DeleteVisualGear(Gear); |
348 |
PlaySound(TSound(ord(sndDroplet1) + Random(3))); |
|
349 |
end; |
|
350 |
end; |
|
351 |
||
352 |
//////////////////////////////////////////////////////////////////////////////// |
|
353 |
procedure doStepSmokeRing(Gear: PVisualGear; Steps: Longword); |
|
354 |
begin |
|
355 |
inc(Gear^.Timer, Steps); |
|
356 |
if Gear^.Timer >= Gear^.FrameTicks then DeleteVisualGear(Gear) |
|
357 |
else |
|
358 |
begin |
|
359 |
Gear^.scale := 1.25 * (-power(2, -10 * Int(Gear^.Timer)/Gear^.FrameTicks) + 1) + 0.4; |
|
360 |
Gear^.alpha := 1 - power(Gear^.Timer / 350, 4); |
|
361 |
if Gear^.alpha < 0 then Gear^.alpha:= 0; |
|
362 |
end; |
|
363 |
end; |
|
364 |
||
365 |
//////////////////////////////////////////////////////////////////////////////// |
|
366 |
procedure doStepFeather(Gear: PVisualGear; Steps: Longword); |
|
367 |
begin |
|
368 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
369 |
||
370 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
371 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
3441 | 372 |
|
373 |
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle; |
|
374 |
||
375 |
if Gear^.FrameTicks <= Steps then |
|
376 |
DeleteVisualGear(Gear) |
|
377 |
else |
|
378 |
dec(Gear^.FrameTicks, Steps) |
|
379 |
end; |
|
380 |
||
381 |
//////////////////////////////////////////////////////////////////////////////// |
|
382 |
const cSorterWorkTime = 640; |
|
383 |
var thexchar: array[0..cMaxTeams] of |
|
384 |
record |
|
385 |
dy, ny, dw: LongInt; |
|
386 |
team: PTeam; |
|
387 |
SortFactor: QWord; |
|
388 |
end; |
|
389 |
currsorter: PVisualGear = nil; |
|
390 |
||
391 |
procedure doStepTeamHealthSorterWork(Gear: PVisualGear; Steps: Longword); |
|
392 |
var i, t: LongInt; |
|
393 |
begin |
|
394 |
for t:= 1 to Steps do |
|
395 |
begin |
|
396 |
dec(Gear^.Timer); |
|
397 |
if (Gear^.Timer and 15) = 0 then |
|
398 |
for i:= 0 to Pred(TeamsCount) do |
|
399 |
with thexchar[i] do |
|
400 |
begin |
|
401 |
{$WARNINGS OFF} |
|
402 |
team^.DrawHealthY:= ny + dy * LongInt(Gear^.Timer) div 640; |
|
403 |
team^.TeamHealthBarWidth:= team^.NewTeamHealthBarWidth + dw * LongInt(Gear^.Timer) div cSorterWorkTime; |
|
404 |
{$WARNINGS ON} |
|
405 |
end; |
|
406 |
||
407 |
if (Gear^.Timer = 0) or (currsorter <> Gear) then |
|
408 |
begin |
|
409 |
if currsorter = Gear then currsorter:= nil; |
|
410 |
DeleteVisualGear(Gear); |
|
411 |
exit |
|
412 |
end |
|
413 |
end |
|
414 |
end; |
|
415 |
||
416 |
procedure doStepTeamHealthSorter(Gear: PVisualGear; Steps: Longword); |
|
417 |
var i: Longword; |
|
418 |
b: boolean; |
|
419 |
t: LongInt; |
|
420 |
begin |
|
421 |
Steps:= Steps; // avoid compiler hint |
|
422 |
for t:= 0 to Pred(TeamsCount) do |
|
423 |
with thexchar[t] do |
|
424 |
begin |
|
425 |
dy:= TeamsArray[t]^.DrawHealthY; |
|
426 |
dw:= TeamsArray[t]^.TeamHealthBarWidth - TeamsArray[t]^.NewTeamHealthBarWidth; |
|
427 |
team:= TeamsArray[t]; |
|
428 |
SortFactor:= TeamsArray[t]^.Clan^.ClanHealth; |
|
429 |
SortFactor:= (SortFactor shl 3) + TeamsArray[t]^.Clan^.ClanIndex; |
|
430 |
SortFactor:= (SortFactor shl 30) + TeamsArray[t]^.TeamHealth; |
|
431 |
end; |
|
432 |
||
433 |
if TeamsCount > 1 then |
|
434 |
repeat |
|
435 |
b:= true; |
|
436 |
for t:= 0 to TeamsCount - 2 do |
|
437 |
if (thexchar[t].SortFactor > thexchar[Succ(t)].SortFactor) then |
|
438 |
begin |
|
439 |
thexchar[cMaxTeams]:= thexchar[t]; |
|
440 |
thexchar[t]:= thexchar[Succ(t)]; |
|
441 |
thexchar[Succ(t)]:= thexchar[cMaxTeams]; |
|
442 |
b:= false |
|
443 |
end |
|
444 |
until b; |
|
445 |
||
446 |
t:= - 4; |
|
447 |
for i:= 0 to Pred(TeamsCount) do |
|
448 |
with thexchar[i] do |
|
449 |
begin |
|
450 |
dec(t, team^.HealthTex^.h + 2); |
|
451 |
ny:= t; |
|
452 |
dy:= dy - ny |
|
453 |
end; |
|
454 |
||
455 |
Gear^.Timer:= cSorterWorkTime; |
|
456 |
Gear^.doStep:= @doStepTeamHealthSorterWork; |
|
457 |
currsorter:= Gear; |
|
458 |
//doStepTeamHealthSorterWork(Gear, Steps) |
|
459 |
end; |
|
460 |
||
461 |
//////////////////////////////////////////////////////////////////////////////// |
|
462 |
procedure doStepSpeechBubbleWork(Gear: PVisualGear; Steps: Longword); |
|
463 |
begin |
|
464 |
if Gear^.Timer > Steps then dec(Gear^.Timer, Steps) else Gear^.Timer:= 0; |
|
465 |
||
4365 | 466 |
if (Gear^.Hedgehog^.Gear <> nil) then |
3441 | 467 |
begin |
5151
cbadb9fa52fc
An experiment - make bazooka AI use float instead of hwFloat - should be as accurate, but faster.
nemo
parents:
5121
diff
changeset
|
468 |
Gear^.X:= hwFloat2Float(Gear^.Hedgehog^.Gear^.X) + (Gear^.Tex^.w div 2 - Gear^.FrameTicks); |
cbadb9fa52fc
An experiment - make bazooka AI use float instead of hwFloat - should be as accurate, but faster.
nemo
parents:
5121
diff
changeset
|
469 |
Gear^.Y:= hwFloat2Float(Gear^.Hedgehog^.Gear^.Y) - (16 + Gear^.Tex^.h); |
3441 | 470 |
end; |
471 |
||
472 |
if Gear^.Timer = 0 then |
|
473 |
begin |
|
4365 | 474 |
if Gear^.Hedgehog^.SpeechGear = Gear then |
475 |
Gear^.Hedgehog^.SpeechGear:= nil; |
|
3441 | 476 |
DeleteVisualGear(Gear) |
477 |
end; |
|
478 |
end; |
|
479 |
||
480 |
procedure doStepSpeechBubble(Gear: PVisualGear; Steps: Longword); |
|
481 |
begin |
|
482 |
Steps:= Steps; // avoid compiler hint |
|
483 |
||
4365 | 484 |
with Gear^.Hedgehog^ do |
3441 | 485 |
if SpeechGear <> nil then SpeechGear^.Timer:= 0; |
486 |
||
4365 | 487 |
Gear^.Hedgehog^.SpeechGear:= Gear; |
3441 | 488 |
|
5186 | 489 |
Gear^.Timer:= max(LongInt(Length(Gear^.Text)) * 150, 3000); |
3441 | 490 |
|
491 |
Gear^.Tex:= RenderSpeechBubbleTex(Gear^.Text, Gear^.FrameTicks, fnt16); |
|
492 |
||
493 |
case Gear^.FrameTicks of |
|
494 |
1: Gear^.FrameTicks:= SpritesData[sprSpeechTail].Width-28; |
|
495 |
2: Gear^.FrameTicks:= SpritesData[sprThoughtTail].Width-20; |
|
496 |
3: Gear^.FrameTicks:= SpritesData[sprShoutTail].Width-10; |
|
497 |
end; |
|
498 |
||
499 |
Gear^.doStep:= @doStepSpeechBubbleWork; |
|
500 |
||
4379
6cd6b77df8b8
No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents:
4365
diff
changeset
|
501 |
Gear^.Y:= Gear^.Y - Gear^.Tex^.h |
3441 | 502 |
end; |
503 |
||
504 |
//////////////////////////////////////////////////////////////////////////////// |
|
505 |
procedure doStepHealthTagWork(Gear: PVisualGear; Steps: Longword); |
|
506 |
begin |
|
507 |
if Steps > Gear^.Timer then |
|
3459
c552aa44108d
hey sheepluva, how about just this? lets you have an anonymous one too.
nemo
parents:
3443
diff
changeset
|
508 |
DeleteVisualGear(Gear) |
3441 | 509 |
else |
510 |
begin |
|
511 |
dec(Gear^.Timer, Steps); |
|
512 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
|
513 |
end; |
|
514 |
end; |
|
515 |
||
516 |
procedure doStepHealthTagWorkUnderWater(Gear: PVisualGear; Steps: Longword); |
|
517 |
begin |
|
4161 | 518 |
if round(Gear^.Y) - 10 < cWaterLine then |
3441 | 519 |
DeleteVisualGear(Gear) |
520 |
else |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
521 |
Gear^.Y:= Gear^.Y - 0.08 * Steps; |
3441 | 522 |
|
523 |
end; |
|
524 |
||
525 |
procedure doStepHealthTag(Gear: PVisualGear; Steps: Longword); |
|
526 |
var s: shortstring; |
|
527 |
begin |
|
528 |
s:= ''; |
|
529 |
||
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
530 |
Gear^.dY:= -0.08; |
3441 | 531 |
|
532 |
str(Gear^.State, s); |
|
3459
c552aa44108d
hey sheepluva, how about just this? lets you have an anonymous one too.
nemo
parents:
3443
diff
changeset
|
533 |
if Gear^.Hedgehog <> nil then |
4365 | 534 |
Gear^.Tex:= RenderStringTex(s, Gear^.Hedgehog^.Team^.Clan^.Color, fnt16) |
3459
c552aa44108d
hey sheepluva, how about just this? lets you have an anonymous one too.
nemo
parents:
3443
diff
changeset
|
535 |
else |
c552aa44108d
hey sheepluva, how about just this? lets you have an anonymous one too.
nemo
parents:
3443
diff
changeset
|
536 |
Gear^.Tex:= RenderStringTex(s, cWhiteColor, fnt16); |
3441 | 537 |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
538 |
if round(Gear^.Y) < cWaterLine then |
3441 | 539 |
Gear^.doStep:= @doStepHealthTagWork |
540 |
else |
|
541 |
Gear^.doStep:= @doStepHealthTagWorkUnderWater; |
|
542 |
||
4379
6cd6b77df8b8
No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents:
4365
diff
changeset
|
543 |
Gear^.Y:= Gear^.Y - Gear^.Tex^.h; |
3441 | 544 |
|
545 |
if Steps > 1 then Gear^.doStep(Gear, Steps-1); |
|
546 |
end; |
|
547 |
||
548 |
//////////////////////////////////////////////////////////////////////////////// |
|
549 |
procedure doStepSmokeTrace(Gear: PVisualGear; Steps: Longword); |
|
550 |
begin |
|
551 |
inc(Gear^.Timer, Steps ); |
|
552 |
if Gear^.Timer > 64 then |
|
553 |
begin |
|
3995
360332f8785f
SmokeTrace: animation got aborted before last animation frame was displayed
sheepluva
parents:
3994
diff
changeset
|
554 |
if Gear^.State = 0 then |
360332f8785f
SmokeTrace: animation got aborted before last animation frame was displayed
sheepluva
parents:
3994
diff
changeset
|
555 |
begin |
360332f8785f
SmokeTrace: animation got aborted before last animation frame was displayed
sheepluva
parents:
3994
diff
changeset
|
556 |
DeleteVisualGear(Gear); |
360332f8785f
SmokeTrace: animation got aborted before last animation frame was displayed
sheepluva
parents:
3994
diff
changeset
|
557 |
exit; |
360332f8785f
SmokeTrace: animation got aborted before last animation frame was displayed
sheepluva
parents:
3994
diff
changeset
|
558 |
end; |
3441 | 559 |
dec(Gear^.State, Gear^.Timer div 65); |
560 |
Gear^.Timer:= Gear^.Timer mod 65; |
|
561 |
end; |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
562 |
Gear^.dX:= Gear^.dX + cWindSpeedf * Steps; |
3587 | 563 |
Gear^.X:= Gear^.X + Gear^.dX; |
3441 | 564 |
end; |
565 |
||
566 |
//////////////////////////////////////////////////////////////////////////////// |
|
567 |
procedure doStepExplosionWork(Gear: PVisualGear; Steps: Longword); |
|
568 |
begin |
|
569 |
inc(Gear^.Timer, Steps); |
|
570 |
if Gear^.Timer > 75 then |
|
571 |
begin |
|
572 |
inc(Gear^.State, Gear^.Timer div 76); |
|
573 |
Gear^.Timer:= Gear^.Timer mod 76; |
|
574 |
if Gear^.State > 5 then DeleteVisualGear(Gear); |
|
575 |
end; |
|
576 |
end; |
|
577 |
||
578 |
procedure doStepExplosion(Gear: PVisualGear; Steps: Longword); |
|
579 |
var i: LongWord; |
|
4473 | 580 |
gX,gY: LongInt; |
581 |
vg: PVisualGear; |
|
3441 | 582 |
begin |
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
583 |
gX:= round(Gear^.X); |
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
584 |
gY:= round(Gear^.Y); |
4473 | 585 |
for i:= 0 to 31 do |
586 |
begin |
|
587 |
vg:= AddVisualGear(gX, gY, vgtFire); |
|
4475
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
588 |
if vg <> nil then |
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
589 |
begin |
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
590 |
vg^.State:= gstTmpFlag; |
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
591 |
inc(vg^.FrameTicks, vg^.FrameTicks) |
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
592 |
end |
4473 | 593 |
end; |
3590 | 594 |
for i:= 0 to 8 do AddVisualGear(gX, gY, vgtExplPart); |
595 |
for i:= 0 to 8 do AddVisualGear(gX, gY, vgtExplPart2); |
|
3441 | 596 |
Gear^.doStep:= @doStepExplosionWork; |
597 |
if Steps > 1 then Gear^.doStep(Gear, Steps-1); |
|
598 |
end; |
|
599 |
||
600 |
||
601 |
//////////////////////////////////////////////////////////////////////////////// |
|
602 |
procedure doStepBigExplosionWork(Gear: PVisualGear; Steps: Longword); |
|
3587 | 603 |
//var maxMovement: LongInt; |
3441 | 604 |
begin |
605 |
||
606 |
inc(Gear^.Timer, Steps); |
|
3466
78d9fa9a700e
Comment out the desyncing block, with a suggestion for possible fix
nemo
parents:
3459
diff
changeset
|
607 |
(* |
78d9fa9a700e
Comment out the desyncing block, with a suggestion for possible fix
nemo
parents:
3459
diff
changeset
|
608 |
FIXME - This block desyncs due to the way WorldDx is important for various things network related. |
78d9fa9a700e
Comment out the desyncing block, with a suggestion for possible fix
nemo
parents:
3459
diff
changeset
|
609 |
One possible solution is, instead of using WorldDx, to use straight gl/SDL calls to jitter the screen a bit. |
5357
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
610 |
|
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
611 |
// a comment by unC0Rr: instead of changing WorldDx shake cursor coordinates, that should be safe |
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
612 |
|
3441 | 613 |
if (Gear^.Timer and 5) = 0 then |
614 |
begin |
|
615 |
maxMovement := max(1, 13 - ((Gear^.Timer * 15) div 250)); |
|
616 |
ShakeCamera(maxMovement); |
|
617 |
end; |
|
3466
78d9fa9a700e
Comment out the desyncing block, with a suggestion for possible fix
nemo
parents:
3459
diff
changeset
|
618 |
*) |
3441 | 619 |
if Gear^.Timer > 250 then DeleteVisualGear(Gear); |
620 |
end; |
|
621 |
||
622 |
procedure doStepBigExplosion(Gear: PVisualGear; Steps: Longword); |
|
623 |
var i: LongWord; |
|
4473 | 624 |
gX,gY: LongInt; |
625 |
vg: PVisualGear; |
|
3441 | 626 |
begin |
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
627 |
gX:= round(Gear^.X); |
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
628 |
gY:= round(Gear^.Y); |
3441 | 629 |
AddVisualGear(gX, gY, vgtSmokeRing); |
4473 | 630 |
for i:= 0 to 46 do |
631 |
begin |
|
632 |
vg:= AddVisualGear(gX, gY, vgtFire); |
|
4475
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
633 |
if vg <> nil then |
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
634 |
begin |
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
635 |
vg^.State:= gstTmpFlag; |
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
636 |
inc(vg^.FrameTicks, vg^.FrameTicks) |
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
637 |
end |
4473 | 638 |
end; |
3441 | 639 |
for i:= 0 to 15 do AddVisualGear(gX, gY, vgtExplPart); |
640 |
for i:= 0 to 15 do AddVisualGear(gX, gY, vgtExplPart2); |
|
641 |
Gear^.doStep:= @doStepBigExplosionWork; |
|
642 |
if Steps > 1 then Gear^.doStep(Gear, Steps-1); |
|
4034
634a8c8682de
add some phone rumbling to big explosions, airbomb and sinegun
koda
parents:
3995
diff
changeset
|
643 |
performRumble(); |
3441 | 644 |
end; |
3689 | 645 |
|
646 |
procedure doStepChunk(Gear: PVisualGear; Steps: Longword); |
|
647 |
begin |
|
648 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
649 |
||
650 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
|
651 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
|
652 |
||
653 |
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle; |
|
654 |
||
5235
e30b06ffea3a
Skip droplets if plain splash is enabled, add a sanity check just in case.
nemo
parents:
5186
diff
changeset
|
655 |
if (round(Gear^.Y) > cWaterLine) and ((cReducedQuality and rqPlainSplash) = 0) then |
3689 | 656 |
begin |
3699 | 657 |
AddVisualGear(round(Gear^.X), round(Gear^.Y), vgtDroplet); |
3689 | 658 |
DeleteVisualGear(Gear); |
659 |
end |
|
660 |
end; |
|
4327 | 661 |
|
662 |
//////////////////////////////////////////////////////////////////////////////// |
|
663 |
procedure doStepBulletHit(Gear: PVisualGear; Steps: Longword); |
|
664 |
begin |
|
665 |
if Gear^.FrameTicks <= Steps then |
|
666 |
DeleteVisualGear(Gear) |
|
667 |
else |
|
668 |
dec(Gear^.FrameTicks, Steps); |
|
669 |
end; |
|
4420
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
670 |
|
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
671 |
//////////////////////////////////////////////////////////////////////////////// |
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
672 |
procedure doStepCircle(Gear: PVisualGear; Steps: Longword); |
4452 | 673 |
var tmp: LongInt; |
4421 | 674 |
i: LongWord; |
4420
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
675 |
begin |
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
676 |
with Gear^ do |
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
677 |
if Frame <> 0 then |
4421 | 678 |
for i:= 1 to Steps do |
4420
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
679 |
begin |
4421 | 680 |
inc(FrameTicks); |
681 |
if (FrameTicks mod Frame) = 0 then |
|
682 |
begin |
|
683 |
tmp:= Gear^.Tint and $FF; |
|
684 |
if tdY >= 0 then inc(tmp) |
|
685 |
else dec(tmp); |
|
686 |
if tmp < round(dX) then tdY:= 1; |
|
687 |
if tmp > round(dY) then tdY:= -1; |
|
4838
6c2528fe925d
Force a bunch of images to RGBA that were either RGB or indexed, strip
nemo
parents:
4806
diff
changeset
|
688 |
if tmp > 255 then tmp := 255; |
6c2528fe925d
Force a bunch of images to RGBA that were either RGB or indexed, strip
nemo
parents:
4806
diff
changeset
|
689 |
if tmp < 0 then tmp := 0; |
5179
8d64dcb566ea
Fix "Mixing signed expressions and longwords gives a 64bit result" warnings
unc0rr
parents:
5151
diff
changeset
|
690 |
Gear^.Tint:= (Gear^.Tint and $FFFFFF00) or Longword(tmp) |
4421 | 691 |
end |
4420
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
692 |
end |
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
693 |
end; |
5357
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
694 |
|
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
695 |
//////////////////////////////////////////////////////////////////////////////// |
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
696 |
procedure doStepSmoothWindBar(Gear: PVisualGear; Steps: Longword); |
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
697 |
begin |
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
698 |
inc(Gear^.Timer, Steps); |
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
699 |
|
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
700 |
while Gear^.Timer >= 10 do |
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
701 |
begin |
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
702 |
dec(Gear^.Timer, 10); |
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
703 |
if WindBarWidth < Gear^.Tag then inc(WindBarWidth) |
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
704 |
else if WindBarWidth > Gear^.Tag then dec(WindBarWidth); |
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
705 |
end; |
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
706 |
|
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
707 |
if WindBarWidth = Gear^.Tag then |
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
708 |
DeleteVisualGear(Gear) |
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
709 |
end; |
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
710 |