author | koda |
Sat, 05 May 2012 19:04:59 +0100 | |
changeset 7028 | 0f60591f3a16 |
parent 7010 | 10a0a31804f3 |
child 7053 | 8c9dcaedc7a8 |
permissions | -rw-r--r-- |
6581 | 1 |
(* |
2 |
* Hedgewars, a free turn based strategy game |
|
6700 | 3 |
* Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
6581 | 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 |
{$INCLUDE "options.inc"} |
|
20 |
||
21 |
unit uGearsUtils; |
|
22 |
interface |
|
6803
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
23 |
uses uTypes, math; |
6581 | 24 |
|
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
25 |
procedure doMakeExplosion(X, Y, Radius: LongInt; AttackingHog: PHedgehog; Mask: Longword); inline; |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
26 |
procedure doMakeExplosion(X, Y, Radius: LongInt; AttackingHog: PHedgehog; Mask: Longword; const Tint: LongWord); |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
27 |
|
6581 | 28 |
function ModifyDamage(dmg: Longword; Gear: PGear): Longword; |
29 |
procedure ApplyDamage(Gear: PGear; AttackerHog: PHedgehog; Damage: Longword; Source: TDamageSource); |
|
30 |
procedure spawnHealthTagForHH(HHGear: PGear; dmg: Longword); |
|
31 |
procedure HHHurt(Hedgehog: PHedgehog; Source: TDamageSource); |
|
32 |
procedure CheckHHDamage(Gear: PGear); |
|
33 |
procedure CalcRotationDirAngle(Gear: PGear); |
|
34 |
procedure ResurrectHedgehog(gear: PGear); |
|
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
35 |
|
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
36 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); inline; |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
37 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt; skipProximity: boolean); |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
38 |
|
6581 | 39 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; |
40 |
function CheckGearDrowning(Gear: PGear): boolean; |
|
41 |
||
42 |
var doStepHandlers: array[TGearType] of TGearStepProcedure; |
|
43 |
||
44 |
||
45 |
implementation |
|
46 |
uses uFloat, uSound, uCollisions, uUtils, uConsts, uVisualGears, uAIMisc, |
|
47 |
uVariables, uLandGraphics, uScript, uStats, uCaptions, uTeams, uStore, |
|
48 |
uLocale, uTextures, uRenderUtils, uRandom, SDLh, uDebug, uGears, |
|
49 |
uGearsList; |
|
50 |
||
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
51 |
procedure doMakeExplosion(X, Y, Radius: LongInt; AttackingHog: PHedgehog; Mask: Longword); inline; |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
52 |
begin |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
53 |
doMakeExplosion(X, Y, Radius, AttackingHog, Mask, $FFFFFFFF); |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
54 |
end; |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
55 |
|
6581 | 56 |
procedure doMakeExplosion(X, Y, Radius: LongInt; AttackingHog: PHedgehog; Mask: Longword; const Tint: LongWord); |
57 |
var Gear: PGear; |
|
6769
44ad49a3a126
Add drowning to grenade too, try some little optimisations
nemo
parents:
6765
diff
changeset
|
58 |
dmg, dmgBase: LongInt; |
6765 | 59 |
fX, fY, tdX, tdY: hwFloat; |
6581 | 60 |
vg: PVisualGear; |
61 |
i, cnt: LongInt; |
|
62 |
begin |
|
63 |
if Radius > 4 then AddFileLog('Explosion: at (' + inttostr(x) + ',' + inttostr(y) + ')'); |
|
64 |
if Radius > 25 then KickFlakes(Radius, X, Y); |
|
65 |
||
66 |
if ((Mask and EXPLNoGfx) = 0) then |
|
67 |
begin |
|
68 |
vg:= nil; |
|
69 |
if Radius > 50 then vg:= AddVisualGear(X, Y, vgtBigExplosion) |
|
70 |
else if Radius > 10 then vg:= AddVisualGear(X, Y, vgtExplosion); |
|
71 |
if vg <> nil then |
|
72 |
vg^.Tint:= Tint; |
|
73 |
end; |
|
74 |
if (Mask and EXPLAutoSound) <> 0 then PlaySound(sndExplosion); |
|
75 |
||
6765 | 76 |
(*if (Mask and EXPLAllDamageInRadius) = 0 then |
6581 | 77 |
dmgRadius:= Radius shl 1 |
78 |
else |
|
79 |
dmgRadius:= Radius; |
|
6765 | 80 |
dmgBase:= dmgRadius + cHHRadius div 2;*) |
81 |
dmgBase:= Radius shl 1 + cHHRadius div 2; |
|
6581 | 82 |
fX:= int2hwFloat(X); |
83 |
fY:= int2hwFloat(Y); |
|
84 |
Gear:= GearsList; |
|
85 |
while Gear <> nil do |
|
86 |
begin |
|
87 |
dmg:= 0; |
|
88 |
//dmg:= dmgRadius + cHHRadius div 2 - hwRound(Distance(Gear^.X - int2hwFloat(X), Gear^.Y - int2hwFloat(Y))); |
|
89 |
//if (dmg > 1) and |
|
90 |
if (Gear^.State and gstNoDamage) = 0 then |
|
91 |
begin |
|
92 |
case Gear^.Kind of |
|
93 |
gtHedgehog, |
|
94 |
gtMine, |
|
95 |
gtBall, |
|
96 |
gtMelonPiece, |
|
97 |
gtGrenade, |
|
98 |
gtClusterBomb, |
|
99 |
// gtCluster, too game breaking I think |
|
100 |
gtSMine, |
|
101 |
gtCase, |
|
102 |
gtTarget, |
|
103 |
gtFlame, |
|
104 |
gtExplosives, |
|
105 |
gtStructure: begin |
|
106 |
// Run the calcs only once we know we have a type that will need damage |
|
6765 | 107 |
tdX:= Gear^.X-fX; |
108 |
tdY:= Gear^.Y-fY; |
|
109 |
if hwRound(hwAbs(tdX)+hwAbs(tdY)) < dmgBase then |
|
110 |
dmg:= dmgBase - max(hwRound(Distance(tdX, tdY)),Gear^.Radius); |
|
6581 | 111 |
if dmg > 1 then |
112 |
begin |
|
113 |
dmg:= ModifyDamage(min(dmg div 2, Radius), Gear); |
|
114 |
//AddFileLog('Damage: ' + inttostr(dmg)); |
|
115 |
if (Mask and EXPLNoDamage) = 0 then |
|
116 |
begin |
|
117 |
if not Gear^.Invulnerable then |
|
118 |
ApplyDamage(Gear, AttackingHog, dmg, dsExplosion) |
|
119 |
else |
|
120 |
Gear^.State:= Gear^.State or gstWinner; |
|
121 |
end; |
|
122 |
if ((Mask and EXPLDoNotTouchAny) = 0) and (((Mask and EXPLDoNotTouchHH) = 0) or (Gear^.Kind <> gtHedgehog)) then |
|
123 |
begin |
|
124 |
DeleteCI(Gear); |
|
6765 | 125 |
Gear^.dX:= Gear^.dX + SignAs(_0_005 * dmg + cHHKick, tdX)/(Gear^.Density/_3); |
126 |
Gear^.dY:= Gear^.dY + SignAs(_0_005 * dmg + cHHKick, tdY)/(Gear^.Density/_3); |
|
6581 | 127 |
|
128 |
Gear^.State:= (Gear^.State or gstMoving) and (not gstLoser); |
|
129 |
if not Gear^.Invulnerable then |
|
130 |
Gear^.State:= (Gear^.State or gstMoving) and (not gstWinner); |
|
131 |
Gear^.Active:= true; |
|
132 |
if Gear^.Kind <> gtFlame then FollowGear:= Gear |
|
133 |
end; |
|
134 |
if ((Mask and EXPLPoisoned) <> 0) and (Gear^.Kind = gtHedgehog) and (not Gear^.Invulnerable) then |
|
7010
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6990
diff
changeset
|
135 |
Gear^.Hedgehog^.Effects[hePoisoned] := 1; |
6581 | 136 |
end; |
137 |
||
138 |
end; |
|
139 |
gtGrave: begin |
|
140 |
// Run the calcs only once we know we have a type that will need damage |
|
6765 | 141 |
tdX:= Gear^.X-fX; |
142 |
tdY:= Gear^.Y-fY; |
|
143 |
if hwRound(hwAbs(tdX)+hwAbs(tdY)) < dmgBase then |
|
144 |
dmg:= dmgBase - hwRound(Distance(tdX, tdY)); |
|
6581 | 145 |
if dmg > 1 then |
146 |
begin |
|
147 |
dmg:= ModifyDamage(min(dmg div 2, Radius), Gear); |
|
148 |
Gear^.dY:= - _0_004 * dmg; |
|
149 |
Gear^.Active:= true |
|
150 |
end |
|
151 |
end; |
|
152 |
end; |
|
153 |
end; |
|
154 |
Gear:= Gear^.NextGear |
|
155 |
end; |
|
156 |
||
157 |
if (Mask and EXPLDontDraw) = 0 then |
|
158 |
if (GameFlags and gfSolidLand) = 0 then |
|
159 |
begin |
|
160 |
cnt:= DrawExplosion(X, Y, Radius) div 1608; // approx 2 16x16 circles to erase per chunk |
|
161 |
if (cnt > 0) and (SpritesData[sprChunk].Texture <> nil) then |
|
162 |
for i:= 0 to cnt do |
|
163 |
AddVisualGear(X, Y, vgtChunk) |
|
164 |
end; |
|
165 |
||
166 |
uAIMisc.AwareOfExplosion(0, 0, 0) |
|
167 |
end; |
|
168 |
||
169 |
function ModifyDamage(dmg: Longword; Gear: PGear): Longword; |
|
170 |
var i: hwFloat; |
|
171 |
begin |
|
172 |
(* Invulnerability cannot be placed in here due to still needing kicks |
|
173 |
Not without a new damage machine. |
|
174 |
King check should be in here instead of ApplyDamage since Tiy wants them kicked less |
|
175 |
*) |
|
176 |
i:= _1; |
|
177 |
if (CurrentHedgehog <> nil) and CurrentHedgehog^.King then |
|
178 |
i:= _1_5; |
|
179 |
if (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.King) then |
|
180 |
ModifyDamage:= hwRound(_0_01 * cDamageModifier * dmg * i * cDamagePercent * _0_5) |
|
181 |
else |
|
182 |
ModifyDamage:= hwRound(_0_01 * cDamageModifier * dmg * i * cDamagePercent) |
|
183 |
end; |
|
184 |
||
185 |
procedure ApplyDamage(Gear: PGear; AttackerHog: PHedgehog; Damage: Longword; Source: TDamageSource); |
|
186 |
var s: shortstring; |
|
187 |
vampDmg, tmpDmg, i: Longword; |
|
188 |
vg: PVisualGear; |
|
189 |
begin |
|
190 |
if Damage = 0 then |
|
191 |
exit; // nothing to apply |
|
192 |
||
193 |
if (Gear^.Kind = gtHedgehog) then |
|
194 |
begin |
|
195 |
Gear^.LastDamage := AttackerHog; |
|
196 |
||
197 |
Gear^.Hedgehog^.Team^.Clan^.Flawless:= false; |
|
198 |
HHHurt(Gear^.Hedgehog, Source); |
|
199 |
AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), Damage, Gear^.Hedgehog^.Team^.Clan^.Color); |
|
200 |
tmpDmg:= min(Damage, max(0,Gear^.Health-Gear^.Damage)); |
|
201 |
if (Gear <> CurrentHedgehog^.Gear) and (CurrentHedgehog^.Gear <> nil) and (tmpDmg >= 1) then |
|
202 |
begin |
|
203 |
if cVampiric then |
|
204 |
begin |
|
205 |
vampDmg:= hwRound(int2hwFloat(tmpDmg)*_0_8); |
|
206 |
if vampDmg >= 1 then |
|
207 |
begin |
|
208 |
// was considering pulsing on attack, Tiy thinks it should be permanent while in play |
|
209 |
//CurrentHedgehog^.Gear^.State:= CurrentHedgehog^.Gear^.State or gstVampiric; |
|
210 |
inc(CurrentHedgehog^.Gear^.Health,vampDmg); |
|
211 |
str(vampDmg, s); |
|
212 |
s:= '+' + s; |
|
213 |
AddCaption(s, CurrentHedgehog^.Team^.Clan^.Color, capgrpAmmoinfo); |
|
214 |
RenderHealth(CurrentHedgehog^); |
|
215 |
RecountTeamHealth(CurrentHedgehog^.Team); |
|
216 |
i:= 0; |
|
217 |
while i < vampDmg do |
|
218 |
begin |
|
219 |
vg:= AddVisualGear(hwRound(CurrentHedgehog^.Gear^.X), hwRound(CurrentHedgehog^.Gear^.Y), vgtStraightShot); |
|
220 |
if vg <> nil then |
|
221 |
with vg^ do |
|
222 |
begin |
|
223 |
Tint:= $FF0000FF; |
|
224 |
State:= ord(sprHealth) |
|
225 |
end; |
|
226 |
inc(i, 5); |
|
227 |
end; |
|
228 |
end |
|
229 |
end; |
|
230 |
if ((GameFlags and gfKarma) <> 0) and |
|
231 |
((GameFlags and gfInvulnerable) = 0) |
|
232 |
and (not CurrentHedgehog^.Gear^.Invulnerable) then |
|
233 |
begin // this cannot just use Damage or it interrupts shotgun and gets you called stupid |
|
234 |
inc(CurrentHedgehog^.Gear^.Karma, tmpDmg); |
|
235 |
CurrentHedgehog^.Gear^.LastDamage := CurrentHedgehog; |
|
236 |
spawnHealthTagForHH(CurrentHedgehog^.Gear, tmpDmg); |
|
237 |
end; |
|
238 |
uStats.HedgehogDamaged(Gear, AttackerHog, Damage, false); |
|
239 |
end; |
|
240 |
end |
|
241 |
else if Gear^.Kind <> gtStructure then // not gtHedgehog nor gtStructure |
|
242 |
begin |
|
243 |
Gear^.Hedgehog:= AttackerHog; |
|
244 |
end; |
|
245 |
inc(Gear^.Damage, Damage); |
|
246 |
||
247 |
ScriptCall('onGearDamage', Gear^.UID, Damage); |
|
248 |
end; |
|
249 |
||
250 |
procedure spawnHealthTagForHH(HHGear: PGear; dmg: Longword); |
|
251 |
var tag: PVisualGear; |
|
252 |
begin |
|
253 |
tag:= AddVisualGear(hwRound(HHGear^.X), hwRound(HHGear^.Y), vgtHealthTag, dmg); |
|
254 |
if (tag <> nil) then |
|
255 |
tag^.Hedgehog:= HHGear^.Hedgehog; // the tag needs the tag to determine the text color |
|
256 |
AllInactive:= false; |
|
257 |
HHGear^.Active:= true; |
|
258 |
end; |
|
259 |
||
260 |
procedure HHHurt(Hedgehog: PHedgehog; Source: TDamageSource); |
|
261 |
begin |
|
262 |
if (Source = dsFall) or (Source = dsExplosion) then |
|
263 |
case random(3) of |
|
264 |
0: PlaySound(sndOoff1, Hedgehog^.Team^.voicepack); |
|
265 |
1: PlaySound(sndOoff2, Hedgehog^.Team^.voicepack); |
|
266 |
2: PlaySound(sndOoff3, Hedgehog^.Team^.voicepack); |
|
267 |
end |
|
268 |
else if (Source = dsPoison) then |
|
269 |
case random(2) of |
|
270 |
0: PlaySound(sndPoisonCough, Hedgehog^.Team^.voicepack); |
|
271 |
1: PlaySound(sndPoisonMoan, Hedgehog^.Team^.voicepack); |
|
272 |
end |
|
273 |
else |
|
274 |
case random(4) of |
|
275 |
0: PlaySound(sndOw1, Hedgehog^.Team^.voicepack); |
|
276 |
1: PlaySound(sndOw2, Hedgehog^.Team^.voicepack); |
|
277 |
2: PlaySound(sndOw3, Hedgehog^.Team^.voicepack); |
|
278 |
3: PlaySound(sndOw4, Hedgehog^.Team^.voicepack); |
|
279 |
end |
|
280 |
end; |
|
281 |
||
282 |
procedure CheckHHDamage(Gear: PGear); |
|
283 |
var |
|
284 |
dmg: Longword; |
|
285 |
i: LongInt; |
|
286 |
particle: PVisualGear; |
|
287 |
begin |
|
288 |
if _0_4 < Gear^.dY then |
|
289 |
begin |
|
290 |
dmg := ModifyDamage(1 + hwRound((hwAbs(Gear^.dY) - _0_4) * 70), Gear); |
|
291 |
PlaySound(sndBump); |
|
292 |
if dmg < 1 then |
|
293 |
exit; |
|
294 |
||
295 |
for i:= min(12, (3 + dmg div 10)) downto 0 do |
|
296 |
begin |
|
297 |
particle := AddVisualGear(hwRound(Gear^.X) - 5 + Random(10), hwRound(Gear^.Y) + 12, vgtDust); |
|
298 |
if particle <> nil then |
|
299 |
particle^.dX := particle^.dX + (Gear^.dX.QWordValue / 21474836480); |
|
300 |
end; |
|
301 |
||
302 |
if (Gear^.Invulnerable) then |
|
303 |
exit; |
|
304 |
||
305 |
//if _0_6 < Gear^.dY then |
|
306 |
// PlaySound(sndOw4, Gear^.Hedgehog^.Team^.voicepack) |
|
307 |
//else |
|
308 |
// PlaySound(sndOw1, Gear^.Hedgehog^.Team^.voicepack); |
|
309 |
||
310 |
if Gear^.LastDamage <> nil then |
|
311 |
ApplyDamage(Gear, Gear^.LastDamage, dmg, dsFall) |
|
312 |
else |
|
313 |
ApplyDamage(Gear, CurrentHedgehog, dmg, dsFall); |
|
314 |
end |
|
315 |
end; |
|
316 |
||
317 |
||
318 |
procedure CalcRotationDirAngle(Gear: PGear); |
|
319 |
var |
|
320 |
dAngle: real; |
|
321 |
begin |
|
322 |
dAngle := (Gear^.dX.QWordValue + Gear^.dY.QWordValue) / $80000000; |
|
323 |
if not Gear^.dX.isNegative then |
|
324 |
Gear^.DirAngle := Gear^.DirAngle + dAngle |
|
325 |
else |
|
326 |
Gear^.DirAngle := Gear^.DirAngle - dAngle; |
|
327 |
||
328 |
if Gear^.DirAngle < 0 then |
|
329 |
Gear^.DirAngle := Gear^.DirAngle + 360 |
|
330 |
else if 360 < Gear^.DirAngle then |
|
331 |
Gear^.DirAngle := Gear^.DirAngle - 360 |
|
332 |
end; |
|
333 |
||
334 |
function CheckGearDrowning(Gear: PGear): boolean; |
|
335 |
var |
|
336 |
skipSpeed, skipAngle, skipDecay: hwFloat; |
|
337 |
i, maxDrops, X, Y: LongInt; |
|
338 |
vdX, vdY: real; |
|
6803
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
339 |
particle, splash: PVisualGear; |
6581 | 340 |
isSubmersible: boolean; |
341 |
begin |
|
342 |
// probably needs tweaking. might need to be in a case statement based upon gear type |
|
343 |
Y:= hwRound(Gear^.Y); |
|
344 |
if cWaterLine < Y + Gear^.Radius then |
|
345 |
begin |
|
346 |
isSubmersible:= (Gear = CurrentHedgehog^.Gear) and (CurAmmoGear <> nil) and (CurAmmoGear^.AmmoType = amJetpack); |
|
347 |
skipSpeed := _0_25; |
|
348 |
skipAngle := _1_9; |
|
349 |
skipDecay := _0_87; |
|
350 |
X:= hwRound(Gear^.X); |
|
351 |
vdX:= hwFloat2Float(Gear^.dX); |
|
352 |
vdY:= hwFloat2Float(Gear^.dY); |
|
353 |
// this could perhaps be a tiny bit higher. |
|
354 |
if (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) > skipSpeed) |
|
355 |
and (hwAbs(Gear^.dX) > skipAngle * hwAbs(Gear^.dY)) then |
|
356 |
begin |
|
357 |
Gear^.dY.isNegative := true; |
|
358 |
Gear^.dY := Gear^.dY * skipDecay; |
|
359 |
Gear^.dX := Gear^.dX * skipDecay; |
|
360 |
CheckGearDrowning := false; |
|
361 |
PlaySound(sndSkip) |
|
362 |
end |
|
363 |
else |
|
364 |
begin |
|
365 |
if not isSubmersible then |
|
366 |
begin |
|
367 |
CheckGearDrowning := true; |
|
368 |
Gear^.State := gstDrowning; |
|
369 |
Gear^.RenderTimer := false; |
|
370 |
if (Gear^.Kind <> gtSniperRifleShot) and (Gear^.Kind <> gtShotgunShot) |
|
371 |
and (Gear^.Kind <> gtDEagleShot) and (Gear^.Kind <> gtSineGunShot) then |
|
372 |
if Gear^.Kind = gtHedgehog then |
|
373 |
begin |
|
7010
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6990
diff
changeset
|
374 |
if Gear^.Hedgehog^.Effects[heResurrectable] <> 0 then |
6581 | 375 |
ResurrectHedgehog(Gear) |
376 |
else |
|
377 |
begin |
|
378 |
Gear^.doStep := @doStepDrowningGear; |
|
379 |
Gear^.State := Gear^.State and (not gstHHDriven); |
|
380 |
AddCaption(Format(GetEventString(eidDrowned), Gear^.Hedgehog^.Name), cWhiteColor, capgrpMessage); |
|
381 |
end |
|
382 |
end |
|
383 |
else |
|
384 |
Gear^.doStep := @doStepDrowningGear; |
|
385 |
if Gear^.Kind = gtFlake then |
|
386 |
exit // skip splashes |
|
387 |
end; |
|
388 |
if ((not isSubmersible) and (Y < cWaterLine + 64 + Gear^.Radius)) |
|
389 |
or (isSubmersible and (Y < cWaterLine + 2 + Gear^.Radius) and ((CurAmmoGear^.Pos = 0) |
|
390 |
and (CurAmmoGear^.dY < _0_01))) then |
|
6804 | 391 |
if Gear^.Density * Gear^.dY > _1 then |
392 |
PlaySound(sndSplash) |
|
393 |
else if Gear^.Density * Gear^.dY > _0_5 then |
|
394 |
PlaySound(sndSkip) |
|
395 |
else |
|
396 |
PlaySound(sndDroplet2); |
|
6581 | 397 |
end; |
398 |
||
399 |
if ((cReducedQuality and rqPlainSplash) = 0) |
|
400 |
and (((not isSubmersible) and (Y < cWaterLine + 64 + Gear^.Radius)) |
|
401 |
or (isSubmersible and (Y < cWaterLine + 2 + Gear^.Radius) and ((CurAmmoGear^.Pos = 0) |
|
402 |
and (CurAmmoGear^.dY < _0_01)))) then |
|
403 |
begin |
|
6803
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
404 |
splash:= AddVisualGear(X, cWaterLine, vgtSplash); |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
405 |
if splash <> nil then |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
406 |
begin |
6804 | 407 |
splash^.Scale:= hwFloat2Float(Gear^.Density / _3 * Gear^.dY); |
6803
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
408 |
if splash^.Scale > 1 then splash^.Scale:= power(splash^.Scale,0.3333) |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
409 |
else splash^.Scale:= splash^.Scale + ((1-splash^.Scale) / 2); |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
410 |
end; |
6581 | 411 |
|
6803
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
412 |
maxDrops := (hwRound(Gear^.Density) * 3) div 2 + round(vdX * hwRound(Gear^.Density) * 6) + round(vdY * hwRound(Gear^.Density) * 6); |
6581 | 413 |
for i:= max(maxDrops div 3, min(32, Random(maxDrops))) downto 0 do |
414 |
begin |
|
415 |
particle := AddVisualGear(X - 3 + Random(6), cWaterLine, vgtDroplet); |
|
416 |
if particle <> nil then |
|
417 |
begin |
|
418 |
particle^.dX := particle^.dX - vdX / 10; |
|
419 |
particle^.dY := particle^.dY - vdY / 5; |
|
6803
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
420 |
if splash <> nil then |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
421 |
begin |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
422 |
if splash^.Scale > 1 then |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
423 |
begin |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
424 |
particle^.dX:= particle^.dX * power(splash^.Scale,0.3333); // tone down the droplet height further |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
425 |
particle^.dY:= particle^.dY * power(splash^.Scale, 0.3333) |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
426 |
end |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
427 |
else |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
428 |
begin |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
429 |
particle^.dX:= particle^.dX * splash^.Scale; |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
430 |
particle^.dY:= particle^.dY * splash^.Scale |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
431 |
end |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
432 |
end |
6581 | 433 |
end |
434 |
end |
|
435 |
end; |
|
436 |
if isSubmersible and (CurAmmoGear^.Pos = 0) then |
|
437 |
CurAmmoGear^.Pos := 1000 |
|
438 |
end |
|
439 |
else |
|
440 |
CheckGearDrowning := false; |
|
441 |
end; |
|
442 |
||
443 |
||
444 |
procedure ResurrectHedgehog(gear: PGear); |
|
445 |
var tempTeam : PTeam; |
|
446 |
begin |
|
447 |
AttackBar:= 0; |
|
448 |
gear^.dX := _0; |
|
449 |
gear^.dY := _0; |
|
450 |
gear^.Damage := 0; |
|
451 |
gear^.Health := gear^.Hedgehog^.InitialHealth; |
|
7010
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6990
diff
changeset
|
452 |
gear^.Hedgehog^.Effects[hePoisoned] := 0; |
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6990
diff
changeset
|
453 |
if CurrentHedgehog^.Effects[heResurrectable] = 0 then |
6581 | 454 |
with CurrentHedgehog^ do |
455 |
begin |
|
456 |
inc(Team^.stats.AIKills); |
|
457 |
FreeTexture(Team^.AIKillsTex); |
|
458 |
Team^.AIKillsTex := RenderStringTex(inttostr(Team^.stats.AIKills), Team^.Clan^.Color, fnt16); |
|
459 |
end; |
|
460 |
tempTeam := gear^.Hedgehog^.Team; |
|
461 |
DeleteCI(gear); |
|
462 |
FindPlace(gear, false, 0, LAND_WIDTH, true); |
|
463 |
if gear <> nil then |
|
464 |
begin |
|
465 |
RenderHealth(gear^.Hedgehog^); |
|
466 |
ScriptCall('onGearResurrect', gear^.uid); |
|
467 |
gear^.State := gstWait; |
|
468 |
end; |
|
469 |
RecountTeamHealth(tempTeam); |
|
470 |
end; |
|
471 |
||
472 |
function CountNonZeroz(x, y, r, c: LongInt): LongInt; |
|
473 |
var i: LongInt; |
|
474 |
count: LongInt = 0; |
|
475 |
begin |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
476 |
if (y and LAND_HEIGHT_MASK) = 0 then |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
477 |
for i:= max(x - r, 0) to min(x + r, LAND_WIDTH - 4) do |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
478 |
if Land[y, i] <> 0 then |
6581 | 479 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
480 |
inc(count); |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
481 |
if count = c then |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
482 |
begin |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
483 |
CountNonZeroz:= count; |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
484 |
exit |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
485 |
end; |
6581 | 486 |
end; |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
487 |
CountNonZeroz:= count; |
6581 | 488 |
end; |
489 |
||
6888 | 490 |
|
491 |
function NoGearsToAvoid(mX, mY: LongInt; rX, rY: LongInt): boolean; |
|
492 |
var t: PGear; |
|
493 |
begin |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
494 |
NoGearsToAvoid:= false; |
6888 | 495 |
t:= GearsList; |
496 |
rX:= sqr(rX); |
|
497 |
rY:= sqr(rY); |
|
498 |
while t <> nil do |
|
499 |
begin |
|
500 |
if t^.Kind <= gtExplosives then |
|
501 |
if not (hwSqr(int2hwFloat(mX) - t^.X) / rX + hwSqr(int2hwFloat(mY) - t^.Y) / rY > _1) then |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
502 |
exit; |
6888 | 503 |
t:= t^.NextGear |
504 |
end; |
|
505 |
NoGearsToAvoid:= true |
|
506 |
end; |
|
507 |
||
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
508 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); inline; |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
509 |
begin |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
510 |
FindPlace(Gear, withFall, Left, Right, false); |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
511 |
end; |
6888 | 512 |
|
6581 | 513 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt; skipProximity: boolean); |
514 |
var x: LongInt; |
|
515 |
y, sy: LongInt; |
|
516 |
ar: array[0..511] of TPoint; |
|
517 |
ar2: array[0..1023] of TPoint; |
|
518 |
cnt, cnt2: Longword; |
|
519 |
delta: LongInt; |
|
520 |
reallySkip, tryAgain: boolean; |
|
521 |
begin |
|
522 |
reallySkip:= false; // try not skipping proximity at first |
|
523 |
tryAgain:= true; |
|
524 |
while tryAgain do |
|
525 |
begin |
|
526 |
delta:= 250; |
|
527 |
cnt2:= 0; |
|
528 |
repeat |
|
529 |
x:= Left + LongInt(GetRandom(Delta)); |
|
530 |
repeat |
|
531 |
inc(x, Delta); |
|
532 |
cnt:= 0; |
|
533 |
y:= min(1024, topY) - 2 * Gear^.Radius; |
|
534 |
while y < cWaterLine do |
|
535 |
begin |
|
536 |
repeat |
|
537 |
inc(y, 2); |
|
538 |
until (y >= cWaterLine) or (CountNonZeroz(x, y, Gear^.Radius - 1, 1) = 0); |
|
539 |
||
540 |
sy:= y; |
|
541 |
||
542 |
repeat |
|
543 |
inc(y); |
|
544 |
until (y >= cWaterLine) or (CountNonZeroz(x, y, Gear^.Radius - 1, 1) <> 0); |
|
545 |
||
546 |
if (y - sy > Gear^.Radius * 2) |
|
547 |
and (((Gear^.Kind = gtExplosives) |
|
548 |
and (y < cWaterLine) |
|
6888 | 549 |
and (reallySkip or NoGearsToAvoid(x, y - Gear^.Radius, 60, 60)) |
6581 | 550 |
and (CountNonZeroz(x, y+1, Gear^.Radius - 1, Gear^.Radius+1) > Gear^.Radius)) |
551 |
or |
|
552 |
((Gear^.Kind <> gtExplosives) |
|
553 |
and (y < cWaterLine) |
|
6888 | 554 |
and (reallySkip or NoGearsToAvoid(x, y - Gear^.Radius, 110, 110)) |
555 |
)) then |
|
556 |
begin |
|
6581 | 557 |
ar[cnt].X:= x; |
558 |
if withFall then |
|
559 |
ar[cnt].Y:= sy + Gear^.Radius |
|
560 |
else |
|
561 |
ar[cnt].Y:= y - Gear^.Radius; |
|
562 |
inc(cnt) |
|
563 |
end; |
|
564 |
||
565 |
inc(y, 45) |
|
566 |
end; |
|
567 |
||
568 |
if cnt > 0 then |
|
569 |
with ar[GetRandom(cnt)] do |
|
570 |
begin |
|
571 |
ar2[cnt2].x:= x; |
|
572 |
ar2[cnt2].y:= y; |
|
573 |
inc(cnt2) |
|
574 |
end |
|
575 |
until (x + Delta > Right); |
|
576 |
||
577 |
dec(Delta, 60) |
|
578 |
until (cnt2 > 0) or (Delta < 70); |
|
579 |
if (cnt2 = 0) and skipProximity and (not reallySkip) then |
|
580 |
tryAgain:= true |
|
581 |
else tryAgain:= false; |
|
582 |
reallySkip:= true; |
|
583 |
end; |
|
584 |
||
585 |
if cnt2 > 0 then |
|
586 |
with ar2[GetRandom(cnt2)] do |
|
587 |
begin |
|
588 |
Gear^.X:= int2hwFloat(x); |
|
589 |
Gear^.Y:= int2hwFloat(y); |
|
590 |
AddFileLog('Assigned Gear coordinates (' + inttostr(x) + ',' + inttostr(y) + ')'); |
|
591 |
end |
|
592 |
else |
|
593 |
begin |
|
594 |
OutError('Can''t find place for Gear', false); |
|
595 |
if Gear^.Kind = gtHedgehog then |
|
7010
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6990
diff
changeset
|
596 |
Gear^.Hedgehog^.Effects[heResurrectable] := 0; |
6581 | 597 |
DeleteGear(Gear); |
598 |
Gear:= nil |
|
599 |
end |
|
600 |
end; |
|
601 |
||
602 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; |
|
603 |
var t: PGear; |
|
604 |
begin |
|
605 |
t:= GearsList; |
|
606 |
rX:= sqr(rX); |
|
607 |
rY:= sqr(rY); |
|
608 |
||
609 |
while t <> nil do |
|
610 |
begin |
|
611 |
if (t <> Gear) and (t^.Kind = Kind) then |
|
612 |
if not((hwSqr(Gear^.X - t^.X) / rX + hwSqr(Gear^.Y - t^.Y) / rY) > _1) then |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
613 |
begin |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
614 |
CheckGearNear:= t; |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
615 |
exit; |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
616 |
end; |
6581 | 617 |
t:= t^.NextGear |
618 |
end; |
|
619 |
||
620 |
CheckGearNear:= nil |
|
621 |
end; |
|
622 |
||
623 |
end. |