author | unc0rr |
Sun, 06 May 2007 14:53:56 +0000 | |
changeset 507 | 38ee23c7c8c2 |
parent 505 | fcba7d7aea0d |
child 511 | 2b5b9e00419d |
permissions | -rw-r--r-- |
4 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
393 | 3 |
* Copyright (c) 2004-2007 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
183 | 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 |
|
4 | 8 |
* |
183 | 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. |
|
4 | 13 |
* |
183 | 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 |
|
4 | 17 |
*) |
18 |
||
37 | 19 |
//////////////////////////////////////////////////////////////////////////////// |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
20 |
procedure Attack(Gear: PGear); |
351 | 21 |
var xx, yy: hwFloat; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
22 |
begin |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
23 |
with Gear^, |
351 | 24 |
PHedgehog(Gear^.Hedgehog)^ do |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
25 |
begin |
95 | 26 |
if ((State and gstHHDriven) <> 0)and |
27 |
// (((State and gstAttacking) <> 0) or ((Message and gm_Attack) <> 0))and |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
28 |
((State and (gstAttacked or gstMoving or gstHHChooseTarget)) = 0)and |
351 | 29 |
(((State and gstFalling ) = 0)or((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_AttackInFall) <> 0))and |
30 |
(((State and gstHHJumping) = 0)or((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_AttackInJump) <> 0))and |
|
31 |
((TargetPoint.X <> NoPointX) or((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_NeedTarget) = 0)) then |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
32 |
begin |
95 | 33 |
State:= State or gstAttacking; |
34 |
if Power = cMaxPower then Message:= Message and not gm_Attack |
|
351 | 35 |
else if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Power) = 0 then Message:= Message and not gm_Attack |
95 | 36 |
else begin |
37 |
if Power = 0 then |
|
38 |
begin |
|
351 | 39 |
AttackBar:= CurrentTeam^.AttackBar; |
40 |
PlaySound(sndThrowPowerUp, false) |
|
95 | 41 |
end; |
42 |
inc(Power) |
|
43 |
end; |
|
44 |
if ((Message and gm_Attack) <> 0) then exit; |
|
351 | 45 |
|
46 |
if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Power) <> 0 then |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
47 |
begin |
282 | 48 |
StopSound(sndThrowPowerUp); |
351 | 49 |
PlaySound(sndThrowRelease, false); |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
50 |
end; |
351 | 51 |
xx:= AngleSin(Angle); |
52 |
xx.isNegative:= dX.isNegative; |
|
53 |
yy:= -AngleCos(Angle); |
|
54 |
case Ammo^[CurSlot, CurAmmo].AmmoType of |
|
55 |
amGrenade: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtAmmo_Bomb, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo^[CurSlot, CurAmmo].Timer); |
|
56 |
amClusterBomb: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtClusterBomb, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo^[CurSlot, CurAmmo].Timer); |
|
57 |
amBazooka: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtAmmo_Grenade, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0); |
|
58 |
amUFO: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtUFO, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0); |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
59 |
amShotgun: begin |
351 | 60 |
PlaySound(sndShotgunReload, false); |
61 |
CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtShotgunShot, 0, xx * _0_5, yy * _0_5, 0); |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
62 |
end; |
498 | 63 |
amPickHammer: CurAmmoGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y) + cHHRadius, gtPickHammer, 0, _0, _0, 0); |
78 | 64 |
amSkip: TurnTimeLeft:= 0; |
351 | 65 |
amRope: CurAmmoGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtRope, 0, xx, yy, 0); |
498 | 66 |
amMine: AddGear(hwRound(X) + hwSign(dX) * 7, hwRound(Y), gtMine, 0, SignAs(_0_02, dX), _0, 3000); |
351 | 67 |
amDEagle: AddGear(hwRound(X), hwRound(Y), gtDEagleShot, 0, xx * _0_5, yy * _0_5, 0); |
498 | 68 |
amDynamite: AddGear(hwRound(X) + hwSign(dX) * 7, hwRound(Y), gtDynamite, 0, SignAs(_0_03, dX), _0, 5000); |
351 | 69 |
amBaseballBat: AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtShover, 0, xx * _0_5, yy * _0_5, 0)^.Radius:= 20; |
498 | 70 |
amFirePunch: CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtFirePunch, 0, _0, _0, 0); |
71 |
amParachute: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtParachute, 0, _0, _0, 0); |
|
72 |
amAirAttack: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 0, _0, _0, 0); |
|
73 |
amMineStrike: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 1, _0, _0, 0); |
|
74 |
amBlowTorch: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtBlowTorch, 0, SignAs(_0_5, dX), _0, 0); |
|
75 |
amGirder: CurAmmoGear:= AddGear(0, 0, gtGirder, Ammo^[CurSlot, CurAmmo].Pos, _0, _0, 0); |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
76 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
77 |
Power:= 0; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
78 |
if CurAmmoGear <> nil then |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
79 |
begin |
82 | 80 |
Message:= Message or gm_Attack; |
351 | 81 |
CurAmmoGear^.Message:= Message |
82 | 82 |
end else begin |
351 | 83 |
if not CurrentTeam^.ExtDriven and |
84 |
((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Power) <> 0) then SendIPC('a'); |
|
82 | 85 |
AfterAttack |
86 |
end |
|
95 | 87 |
end else Message:= Message and not gm_Attack |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
88 |
end |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
89 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
90 |
|
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
91 |
procedure AfterAttack; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
92 |
begin |
351 | 93 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^, |
94 |
CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog] do |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
95 |
begin |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
96 |
Inc(AttacksNum); |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
97 |
State:= State and not gstAttacking; |
351 | 98 |
if Ammo^[CurSlot, CurAmmo].NumPerTurn >= AttacksNum then isInMultiShoot:= true |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
99 |
else begin |
351 | 100 |
TurnTimeLeft:= Ammoz[Ammo^[CurSlot, CurAmmo].AmmoType].TimeAfterTurn; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
101 |
State:= State or gstAttacked; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
102 |
OnUsedAmmo(Ammo) |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
103 |
end; |
95 | 104 |
AttackBar:= 0; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
105 |
end |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
106 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
107 |
|
42 | 108 |
//////////////////////////////////////////////////////////////////////////////// |
109 |
procedure PickUp(HH, Gear: PGear); |
|
295 | 110 |
var s: shortstring; |
111 |
a: TAmmoType; |
|
42 | 112 |
begin |
351 | 113 |
Gear^.Message:= gm_Destroy; |
114 |
case Gear^.Pos of |
|
295 | 115 |
posCaseAmmo: begin |
351 | 116 |
a:= TAmmoType(Gear^.State); |
117 |
AddAmmo(PHedgehog(HH^.Hedgehog), a); |
|
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
118 |
s:= trammo[Ammoz[a].NameId] + '(+' + IntToStr(Ammoz[a].NumberInCase) + ')'; |
351 | 119 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Color, capgrpAmmoinfo); |
295 | 120 |
end; |
42 | 121 |
posCaseHealth: begin |
351 | 122 |
inc(HH^.Health, Gear^.Health); |
123 |
str(Gear^.Health, s); |
|
295 | 124 |
s:= '+' + s; |
351 | 125 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Color, capgrpAmmoinfo); |
126 |
RenderHealth(PHedgehog(HH^.Hedgehog)^); |
|
127 |
RecountTeamHealth(PHedgehog(HH^.Hedgehog)^.Team) |
|
42 | 128 |
end; |
435 | 129 |
end |
42 | 130 |
end; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
131 |
|
4 | 132 |
const StepTicks: LongWord = 0; |
133 |
||
302 | 134 |
procedure HedgehogStep(Gear: PGear); |
371 | 135 |
var PrevdX: LongInt; |
302 | 136 |
begin |
351 | 137 |
if ((Gear^.State and (gstAttacking or gstMoving or gstFalling)) = 0) then |
4 | 138 |
begin |
408 | 139 |
if isCursorVisible then |
140 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
141 |
with Ammo^[CurSlot, CurAmmo] do |
|
142 |
begin |
|
143 |
if (Gear^.Message and gm_Left )<>0 then |
|
144 |
Pos:= (Pos + Ammoz[AmmoType].PosCount - 1) mod Ammoz[AmmoType].PosCount |
|
145 |
else |
|
146 |
if (Gear^.Message and gm_Right )<>0 then |
|
147 |
Pos:= (Pos + 1) mod Ammoz[AmmoType].PosCount |
|
148 |
else exit; |
|
423 | 149 |
StepTicks:= 200; |
408 | 150 |
exit |
151 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
152 |
|
351 | 153 |
if ((Gear^.Message and gm_LJump ) <> 0) then |
4 | 154 |
begin |
351 | 155 |
Gear^.Message:= 0; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
156 |
DeleteCI(Gear); |
68 | 157 |
if not TestCollisionYwithGear(Gear, -1) then |
498 | 158 |
if not TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _2 else |
159 |
if not TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _1; |
|
351 | 160 |
if not (TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) |
68 | 161 |
or TestCollisionYwithGear(Gear, -1)) then |
4 | 162 |
begin |
351 | 163 |
Gear^.dY:= -_0_15; |
498 | 164 |
Gear^.dX:= SignAs(_0_15, Gear^.dX); |
351 | 165 |
Gear^.State:= Gear^.State or gstFalling or gstHHJumping; |
4 | 166 |
exit |
167 |
end; |
|
168 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
169 |
|
351 | 170 |
if ((Gear^.Message and gm_HJump ) <> 0) then |
4 | 171 |
begin |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
172 |
DeleteCI(Gear); |
351 | 173 |
Gear^.Message:= 0; |
68 | 174 |
if not TestCollisionYwithGear(Gear, -1) then |
4 | 175 |
begin |
351 | 176 |
Gear^.dY:= -_0_2; |
177 |
SetLittle(Gear^.dX); |
|
178 |
Gear^.State:= Gear^.State or gstFalling or gstHHJumping; |
|
4 | 179 |
exit |
180 |
end; |
|
181 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
182 |
|
351 | 183 |
PrevdX:= hwSign(Gear^.dX); |
184 |
if (Gear^.Message and gm_Left )<>0 then Gear^.dX:= -cLittle else |
|
185 |
if (Gear^.Message and gm_Right )<>0 then Gear^.dX:= cLittle else exit; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
186 |
DeleteCI(Gear); |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
187 |
|
74 | 188 |
StepTicks:= cHHStepTicks; |
351 | 189 |
if PrevdX <> hwSign(Gear^.dX) then exit; |
190 |
PHedgehog(Gear^.Hedgehog)^.visStepPos:= (PHedgehog(Gear^.Hedgehog)^.visStepPos + 1) and 7; |
|
191 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
|
4 | 192 |
begin |
498 | 193 |
if not (TestCollisionXwithXYShift(Gear, _0, -6, hwSign(Gear^.dX)) |
194 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
195 |
if not (TestCollisionXwithXYShift(Gear, _0, -5, hwSign(Gear^.dX)) |
|
196 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
197 |
if not (TestCollisionXwithXYShift(Gear, _0, -4, hwSign(Gear^.dX)) |
|
198 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
199 |
if not (TestCollisionXwithXYShift(Gear, _0, -3, hwSign(Gear^.dX)) |
|
200 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
201 |
if not (TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) |
|
202 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
203 |
if not (TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) |
|
204 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
4 | 205 |
end; |
498 | 206 |
if not TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then Gear^.X:= Gear^.X + SignAs(_1, Gear^.dX); |
300 | 207 |
|
62 | 208 |
SetAllHHToActive; |
37 | 209 |
|
68 | 210 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 211 |
begin |
498 | 212 |
Gear^.Y:= Gear^.Y + _1; |
68 | 213 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 214 |
begin |
498 | 215 |
Gear^.Y:= Gear^.Y + _1; |
68 | 216 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 217 |
begin |
498 | 218 |
Gear^.Y:= Gear^.Y + _1; |
68 | 219 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 220 |
begin |
498 | 221 |
Gear^.Y:= Gear^.Y + _1; |
68 | 222 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 223 |
begin |
498 | 224 |
Gear^.Y:= Gear^.Y + _1; |
68 | 225 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 226 |
begin |
498 | 227 |
Gear^.Y:= Gear^.Y + _1; |
68 | 228 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 229 |
begin |
498 | 230 |
Gear^.Y:= Gear^.Y - _6; |
231 |
Gear^.dY:= _0; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
232 |
Gear^.State:= Gear^.State or gstFalling; |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
233 |
exit |
4 | 234 |
end; |
235 |
end |
|
236 |
end |
|
237 |
end |
|
238 |
end |
|
239 |
end |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
240 |
end; |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
241 |
AddGearCI(Gear) |
4 | 242 |
end |
243 |
end; |
|
244 |
||
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
245 |
procedure HedgehogChAngle(Gear: PGear); |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
246 |
begin |
351 | 247 |
if ((Gear^.State and (gstMoving or gstFalling)) = 0) then |
248 |
if (Gear^.Message and gm_Up )<>0 then if Gear^.Angle > CurMinAngle then dec(Gear^.Angle) |
|
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
249 |
else else |
351 | 250 |
if (Gear^.Message and gm_Down )<>0 then if Gear^.Angle < CurMaxAngle then inc(Gear^.Angle); |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
251 |
end; |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
252 |
|
302 | 253 |
procedure doStepHedgehog(Gear: PGear); forward; |
254 |
//////////////////////////////////////////////////////////////////////////////// |
|
255 |
procedure doStepHedgehogDriven(Gear: PGear); |
|
256 |
var t: PGear; |
|
257 |
begin |
|
351 | 258 |
if isInMultiShoot and (Gear^.Damage = 0) then |
302 | 259 |
begin |
260 |
exit |
|
261 |
end; |
|
262 |
AllInactive:= false; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
263 |
|
351 | 264 |
if (TurnTimeLeft = 0) or (Gear^.Damage > 0) then |
302 | 265 |
begin |
266 |
TurnTimeLeft:= 0; |
|
351 | 267 |
Gear^.State:= Gear^.State and not gstHHDriven; |
268 |
if Gear^.Damage > 0 then |
|
424 | 269 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
302 | 270 |
exit |
271 |
end; |
|
351 | 272 |
if ((Gear^.State and gstFalling) <> 0) or (StepTicks = cHHStepTicks) |
302 | 273 |
or (CurAmmoGear <> nil) then // we're moving |
274 |
begin |
|
275 |
// check for case with ammo |
|
276 |
t:= CheckGearNear(Gear, gtCase, 36, 36); |
|
277 |
if t <> nil then |
|
278 |
PickUp(Gear, t) |
|
279 |
end; |
|
280 |
||
281 |
if CurAmmoGear <> nil then |
|
282 |
begin |
|
351 | 283 |
CurAmmoGear^.Message:= Gear^.Message; |
302 | 284 |
exit |
285 |
end; |
|
286 |
||
351 | 287 |
if ((Gear^.Message and gm_Attack) <> 0) or |
288 |
((Gear^.State and gstAttacking) <> 0)then Attack(Gear); |
|
302 | 289 |
|
351 | 290 |
if (Gear^.State and gstFalling) <> 0 then |
302 | 291 |
begin |
424 | 292 |
if ((Gear^.Message and gm_HJump) <> 0) and |
293 |
((Gear^.State and gstHHJumping) <> 0) and |
|
294 |
((Gear^.State and gstHHHJump) = 0) then |
|
295 |
if (not (hwAbs(Gear^.dX) > cLittle)) and (Gear^.dY < -_0_02) then |
|
302 | 296 |
begin |
424 | 297 |
Gear^.State:= Gear^.State or gstHHHJump; |
351 | 298 |
Gear^.dY:= -_0_25; |
498 | 299 |
Gear^.dX:= SignAs(_0_02, Gear^.dX) |
302 | 300 |
end; |
351 | 301 |
Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump); |
302 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then SetLittle(Gear^.dX); |
|
303 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
304 |
Gear^.dY:= Gear^.dY + cGravity; |
|
498 | 305 |
if (Gear^.dY.isNegative)and TestCollisionYwithGear(Gear, -1) then Gear^.dY:= _0; |
351 | 306 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
307 |
if (not Gear^.dY.isNegative)and TestCollisionYwithGear(Gear, 1) then |
|
302 | 308 |
begin |
309 |
CheckHHDamage(Gear); |
|
351 | 310 |
if ((hwAbs(Gear^.dX) + hwAbs(Gear^.dY)) < _0_55) |
311 |
and ((Gear^.State and gstHHJumping) <> 0) then SetLittle(Gear^.dX); |
|
424 | 312 |
Gear^.State:= Gear^.State and not (gstFalling or gstHHJumping or gstHHHJump); |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
313 |
AddGearCI(Gear); |
351 | 314 |
StepTicks:= 300; |
498 | 315 |
Gear^.dY:= _0 |
302 | 316 |
end; |
317 |
CheckGearDrowning(Gear); |
|
318 |
exit |
|
351 | 319 |
end ;//else if Gear^.CollIndex = High(Longword) then AddIntersectorsCR(Gear); |
302 | 320 |
|
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
321 |
HedgehogChAngle(Gear); |
302 | 322 |
if StepTicks > 0 then dec(StepTicks); |
323 |
if (StepTicks = 0) then HedgehogStep(Gear) |
|
324 |
end; |
|
325 |
||
4 | 326 |
//////////////////////////////////////////////////////////////////////////////// |
327 |
procedure doStepHedgehogFree(Gear: PGear); |
|
328 |
begin |
|
62 | 329 |
//DeleteCI(Gear); |
68 | 330 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 331 |
begin |
498 | 332 |
if (Gear^.dY.isNegative) and TestCollisionYwithGear(Gear, -1) then Gear^.dY:= _0; |
351 | 333 |
Gear^.State:= Gear^.State or gstFalling or gstMoving; |
334 |
Gear^.dY:= Gear^.dY + cGravity |
|
4 | 335 |
end else begin |
336 |
CheckHHDamage(Gear); |
|
351 | 337 |
if ((hwAbs(Gear^.dX) + hwAbs(Gear^.dY)) < _0_55) |
338 |
and ((Gear^.State and gstHHJumping) <> 0) then SetLittle(Gear^.dX); |
|
339 |
Gear^.State:= Gear^.State and not (gstFalling or gstHHJumping); |
|
498 | 340 |
if Gear^.dY > _0 then Gear^.dY:= _0; |
351 | 341 |
if ((Gear^.State and gstMoving) <> 0) then Gear^.dX:= Gear^.dX * Gear^.Friction |
4 | 342 |
end; |
343 |
||
351 | 344 |
if (Gear^.State <> 0) then DeleteCI(Gear); |
4 | 345 |
|
351 | 346 |
if (Gear^.State and gstMoving) <> 0 then |
347 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
|
348 |
if ((Gear^.State and gstFalling) = 0) then |
|
349 |
if hwAbs(Gear^.dX) > _0_01 then |
|
498 | 350 |
if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -1, hwSign(Gear^.dX)) then begin Gear^.X:= Gear^.X + Gear^.dX; Gear^.dX:= Gear^.dX * _0_96; Gear^.Y:= Gear^.Y - _1 end else |
351 |
if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -2, hwSign(Gear^.dX)) then begin Gear^.X:= Gear^.X + Gear^.dX; Gear^.dX:= Gear^.dX * _0_93; Gear^.Y:= Gear^.Y - _2 end else |
|
352 |
if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -3, hwSign(Gear^.dX)) then begin Gear^.X:= Gear^.X + Gear^.dX; Gear^.dX:= Gear^.dX * _0_9 ; Gear^.Y:= Gear^.Y - _3 end else |
|
353 |
if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -4, hwSign(Gear^.dX)) then begin Gear^.X:= Gear^.X + Gear^.dX; Gear^.dX:= Gear^.dX * _0_87; Gear^.Y:= Gear^.Y - _4 end else |
|
354 |
if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -5, hwSign(Gear^.dX)) then begin Gear^.X:= Gear^.X + Gear^.dX; Gear^.dX:= Gear^.dX * _0_84; Gear^.Y:= Gear^.Y - _5 end else |
|
351 | 355 |
if hwAbs(Gear^.dX) > _0_02 then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
4 | 356 |
else begin |
351 | 357 |
Gear^.State:= Gear^.State and not gstMoving; |
358 |
SetLittle(Gear^.dX) |
|
4 | 359 |
end |
149 | 360 |
else begin |
351 | 361 |
Gear^.State:= Gear^.State and not gstMoving; |
362 |
SetLittle(Gear^.dX) |
|
149 | 363 |
end |
351 | 364 |
else Gear^.dX:= -Gear^.Elasticity * Gear^.dX; |
4 | 365 |
|
351 | 366 |
if ((Gear^.State and gstFalling) = 0)and |
367 |
(hwAbs(Gear^.dX) + hwAbs(Gear^.dY) < _0_03) then |
|
4 | 368 |
begin |
351 | 369 |
Gear^.State:= Gear^.State and not gstMoving; |
370 |
SetLittle(Gear^.dX); |
|
498 | 371 |
Gear^.dY:= _0 |
351 | 372 |
end else Gear^.State:= Gear^.State or gstMoving; |
4 | 373 |
|
351 | 374 |
if (Gear^.State and gstMoving) <> 0 then |
4 | 375 |
begin |
351 | 376 |
Gear^.X:= Gear^.X + Gear^.dX; |
377 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
498 | 378 |
if (Gear^.dY > _0) and not TestCollisionYwithGear(Gear, 1) and TestCollisionYwithXYShift(Gear, 0, 1, 1) then |
74 | 379 |
begin |
82 | 380 |
CheckHHDamage(Gear); |
498 | 381 |
Gear^.dY:= _0; |
382 |
Gear^.Y:= Gear^.Y + _1 |
|
74 | 383 |
end; |
4 | 384 |
end else |
351 | 385 |
if Gear^.Health = 0 then |
4 | 386 |
begin |
387 |
if AllInactive then |
|
388 |
begin |
|
351 | 389 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound); |
498 | 390 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtGrave, 0, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
4 | 391 |
DeleteGear(Gear); |
392 |
SetAllToActive |
|
393 |
end; |
|
351 | 394 |
AllInactive:= false; |
4 | 395 |
exit |
396 |
end; |
|
397 |
||
398 |
AllInactive:= false; |
|
399 |
||
400 |
if (not CheckGearDrowning(Gear)) and |
|
351 | 401 |
((Gear^.State and gstMoving) = 0) then |
4 | 402 |
begin |
351 | 403 |
Gear^.State:= 0; |
404 |
Gear^.Active:= false; |
|
53 | 405 |
AddGearCI(Gear); |
4 | 406 |
exit |
407 |
end |
|
408 |
end; |
|
409 |
||
410 |
//////////////////////////////////////////////////////////////////////////////// |
|
411 |
procedure doStepHedgehog(Gear: PGear); |
|
412 |
begin |
|
351 | 413 |
if (Gear^.Message and gm_Destroy) <> 0 then |
4 | 414 |
begin |
415 |
DeleteGear(Gear); |
|
416 |
exit |
|
417 |
end; |
|
351 | 418 |
if (Gear^.State and gstHHDriven) = 0 then doStepHedgehogFree(Gear) |
4 | 419 |
else doStepHedgehogDriven(Gear) |
420 |
end; |