author | unc0rr |
Wed, 30 May 2007 19:29:27 +0000 | |
changeset 532 | 8136a5363586 |
parent 528 | 54fd6924de4e |
child 534 | 92fb2b0d5117 |
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; |
519 | 51 |
xx:= SignAs(AngleSin(Angle), dX); |
351 | 52 |
yy:= -AngleCos(Angle); |
53 |
case Ammo^[CurSlot, CurAmmo].AmmoType of |
|
54 |
amGrenade: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtAmmo_Bomb, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo^[CurSlot, CurAmmo].Timer); |
|
55 |
amClusterBomb: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtClusterBomb, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo^[CurSlot, CurAmmo].Timer); |
|
56 |
amBazooka: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtAmmo_Grenade, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0); |
|
57 |
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
|
58 |
amShotgun: begin |
351 | 59 |
PlaySound(sndShotgunReload, false); |
60 |
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
|
61 |
end; |
498 | 62 |
amPickHammer: CurAmmoGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y) + cHHRadius, gtPickHammer, 0, _0, _0, 0); |
78 | 63 |
amSkip: TurnTimeLeft:= 0; |
351 | 64 |
amRope: CurAmmoGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtRope, 0, xx, yy, 0); |
498 | 65 |
amMine: AddGear(hwRound(X) + hwSign(dX) * 7, hwRound(Y), gtMine, 0, SignAs(_0_02, dX), _0, 3000); |
518 | 66 |
amDEagle: AddGear(hwRound(X + xx * cHHRadius), hwRound(Y + yy * cHHRadius), gtDEagleShot, 0, xx * _0_5, yy * _0_5, 0); |
498 | 67 |
amDynamite: AddGear(hwRound(X) + hwSign(dX) * 7, hwRound(Y), gtDynamite, 0, SignAs(_0_03, dX), _0, 5000); |
351 | 68 |
amBaseballBat: AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtShover, 0, xx * _0_5, yy * _0_5, 0)^.Radius:= 20; |
498 | 69 |
amFirePunch: CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtFirePunch, 0, _0, _0, 0); |
70 |
amParachute: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtParachute, 0, _0, _0, 0); |
|
71 |
amAirAttack: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 0, _0, _0, 0); |
|
72 |
amMineStrike: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 1, _0, _0, 0); |
|
73 |
amBlowTorch: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtBlowTorch, 0, SignAs(_0_5, dX), _0, 0); |
|
74 |
amGirder: CurAmmoGear:= AddGear(0, 0, gtGirder, Ammo^[CurSlot, CurAmmo].Pos, _0, _0, 0); |
|
520 | 75 |
amTeleport: CurAmmoGear:= AddGear(0, 0, gtTeleport, 0, _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 |
|
74 | 187 |
StepTicks:= cHHStepTicks; |
351 | 188 |
if PrevdX <> hwSign(Gear^.dX) then exit; |
517 | 189 |
DeleteCI(Gear); // after exit!! ^^^^ |
190 |
||
351 | 191 |
PHedgehog(Gear^.Hedgehog)^.visStepPos:= (PHedgehog(Gear^.Hedgehog)^.visStepPos + 1) and 7; |
192 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
|
4 | 193 |
begin |
498 | 194 |
if not (TestCollisionXwithXYShift(Gear, _0, -6, hwSign(Gear^.dX)) |
195 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
196 |
if not (TestCollisionXwithXYShift(Gear, _0, -5, hwSign(Gear^.dX)) |
|
197 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
198 |
if not (TestCollisionXwithXYShift(Gear, _0, -4, hwSign(Gear^.dX)) |
|
199 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
200 |
if not (TestCollisionXwithXYShift(Gear, _0, -3, hwSign(Gear^.dX)) |
|
201 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
202 |
if not (TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) |
|
203 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
204 |
if not (TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) |
|
205 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
4 | 206 |
end; |
498 | 207 |
if not TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then Gear^.X:= Gear^.X + SignAs(_1, Gear^.dX); |
300 | 208 |
|
62 | 209 |
SetAllHHToActive; |
37 | 210 |
|
68 | 211 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 212 |
begin |
498 | 213 |
Gear^.Y:= Gear^.Y + _1; |
68 | 214 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 215 |
begin |
498 | 216 |
Gear^.Y:= Gear^.Y + _1; |
68 | 217 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 218 |
begin |
498 | 219 |
Gear^.Y:= Gear^.Y + _1; |
68 | 220 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 221 |
begin |
498 | 222 |
Gear^.Y:= Gear^.Y + _1; |
68 | 223 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 224 |
begin |
498 | 225 |
Gear^.Y:= Gear^.Y + _1; |
68 | 226 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 227 |
begin |
498 | 228 |
Gear^.Y:= Gear^.Y + _1; |
68 | 229 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 230 |
begin |
498 | 231 |
Gear^.Y:= Gear^.Y - _6; |
232 |
Gear^.dY:= _0; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
233 |
Gear^.State:= Gear^.State or gstFalling; |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
234 |
exit |
4 | 235 |
end; |
236 |
end |
|
237 |
end |
|
238 |
end |
|
239 |
end |
|
240 |
end |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
241 |
end; |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
242 |
AddGearCI(Gear) |
4 | 243 |
end |
244 |
end; |
|
245 |
||
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
246 |
procedure HedgehogChAngle(Gear: PGear); |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
247 |
begin |
351 | 248 |
if ((Gear^.State and (gstMoving or gstFalling)) = 0) then |
249 |
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
|
250 |
else else |
351 | 251 |
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
|
252 |
end; |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
253 |
|
302 | 254 |
procedure doStepHedgehog(Gear: PGear); forward; |
255 |
//////////////////////////////////////////////////////////////////////////////// |
|
256 |
procedure doStepHedgehogDriven(Gear: PGear); |
|
257 |
var t: PGear; |
|
258 |
begin |
|
351 | 259 |
if isInMultiShoot and (Gear^.Damage = 0) then |
302 | 260 |
begin |
261 |
exit |
|
262 |
end; |
|
263 |
AllInactive:= false; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
264 |
|
351 | 265 |
if (TurnTimeLeft = 0) or (Gear^.Damage > 0) then |
302 | 266 |
begin |
267 |
TurnTimeLeft:= 0; |
|
351 | 268 |
Gear^.State:= Gear^.State and not gstHHDriven; |
269 |
if Gear^.Damage > 0 then |
|
424 | 270 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
302 | 271 |
exit |
272 |
end; |
|
525 | 273 |
|
528 | 274 |
if ((Gear^.State and (gstFalling or gstMoving)) <> 0) |
275 |
or (StepTicks = cHHStepTicks) |
|
302 | 276 |
or (CurAmmoGear <> nil) then // we're moving |
277 |
begin |
|
278 |
// check for case with ammo |
|
279 |
t:= CheckGearNear(Gear, gtCase, 36, 36); |
|
280 |
if t <> nil then |
|
281 |
PickUp(Gear, t) |
|
282 |
end; |
|
283 |
||
284 |
if CurAmmoGear <> nil then |
|
285 |
begin |
|
351 | 286 |
CurAmmoGear^.Message:= Gear^.Message; |
302 | 287 |
exit |
288 |
end; |
|
289 |
||
351 | 290 |
if ((Gear^.Message and gm_Attack) <> 0) or |
291 |
((Gear^.State and gstAttacking) <> 0)then Attack(Gear); |
|
302 | 292 |
|
528 | 293 |
if (Gear^.State and (gstFalling or gstMoving)) <> 0 then |
302 | 294 |
begin |
424 | 295 |
if ((Gear^.Message and gm_HJump) <> 0) and |
296 |
((Gear^.State and gstHHJumping) <> 0) and |
|
297 |
((Gear^.State and gstHHHJump) = 0) then |
|
298 |
if (not (hwAbs(Gear^.dX) > cLittle)) and (Gear^.dY < -_0_02) then |
|
302 | 299 |
begin |
424 | 300 |
Gear^.State:= Gear^.State or gstHHHJump; |
351 | 301 |
Gear^.dY:= -_0_25; |
498 | 302 |
Gear^.dX:= SignAs(_0_02, Gear^.dX) |
302 | 303 |
end; |
351 | 304 |
Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump); |
305 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then SetLittle(Gear^.dX); |
|
306 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
307 |
Gear^.dY:= Gear^.dY + cGravity; |
|
498 | 308 |
if (Gear^.dY.isNegative)and TestCollisionYwithGear(Gear, -1) then Gear^.dY:= _0; |
351 | 309 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
310 |
if (not Gear^.dY.isNegative)and TestCollisionYwithGear(Gear, 1) then |
|
302 | 311 |
begin |
312 |
CheckHHDamage(Gear); |
|
351 | 313 |
if ((hwAbs(Gear^.dX) + hwAbs(Gear^.dY)) < _0_55) |
314 |
and ((Gear^.State and gstHHJumping) <> 0) then SetLittle(Gear^.dX); |
|
424 | 315 |
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
|
316 |
AddGearCI(Gear); |
351 | 317 |
StepTicks:= 300; |
498 | 318 |
Gear^.dY:= _0 |
302 | 319 |
end; |
320 |
CheckGearDrowning(Gear); |
|
321 |
exit |
|
351 | 322 |
end ;//else if Gear^.CollIndex = High(Longword) then AddIntersectorsCR(Gear); |
302 | 323 |
|
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
324 |
HedgehogChAngle(Gear); |
302 | 325 |
if StepTicks > 0 then dec(StepTicks); |
326 |
if (StepTicks = 0) then HedgehogStep(Gear) |
|
327 |
end; |
|
328 |
||
4 | 329 |
//////////////////////////////////////////////////////////////////////////////// |
330 |
procedure doStepHedgehogFree(Gear: PGear); |
|
511 | 331 |
var prevState: Longword; |
4 | 332 |
begin |
511 | 333 |
prevState:= Gear^.State; |
513
69e06d710d46
Moving hedgehog could get another hedgehog moving forward
unc0rr
parents:
511
diff
changeset
|
334 |
if not TestCollisionYKick(Gear, 1) then |
4 | 335 |
begin |
513
69e06d710d46
Moving hedgehog could get another hedgehog moving forward
unc0rr
parents:
511
diff
changeset
|
336 |
if (Gear^.dY.isNegative) and TestCollisionYKick(Gear, -1) then Gear^.dY:= _0; |
351 | 337 |
Gear^.State:= Gear^.State or gstFalling or gstMoving; |
338 |
Gear^.dY:= Gear^.dY + cGravity |
|
4 | 339 |
end else begin |
340 |
CheckHHDamage(Gear); |
|
351 | 341 |
if ((hwAbs(Gear^.dX) + hwAbs(Gear^.dY)) < _0_55) |
342 |
and ((Gear^.State and gstHHJumping) <> 0) then SetLittle(Gear^.dX); |
|
343 |
Gear^.State:= Gear^.State and not (gstFalling or gstHHJumping); |
|
498 | 344 |
if Gear^.dY > _0 then Gear^.dY:= _0; |
351 | 345 |
if ((Gear^.State and gstMoving) <> 0) then Gear^.dX:= Gear^.dX * Gear^.Friction |
4 | 346 |
end; |
347 |
||
351 | 348 |
if (Gear^.State <> 0) then DeleteCI(Gear); |
4 | 349 |
|
351 | 350 |
if (Gear^.State and gstMoving) <> 0 then |
513
69e06d710d46
Moving hedgehog could get another hedgehog moving forward
unc0rr
parents:
511
diff
changeset
|
351 |
if TestCollisionXKick(Gear, hwSign(Gear^.dX)) then |
351 | 352 |
if ((Gear^.State and gstFalling) = 0) then |
353 |
if hwAbs(Gear^.dX) > _0_01 then |
|
498 | 354 |
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 |
355 |
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 |
|
356 |
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 |
|
357 |
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 |
|
358 |
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 | 359 |
if hwAbs(Gear^.dX) > _0_02 then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
4 | 360 |
else begin |
351 | 361 |
Gear^.State:= Gear^.State and not gstMoving; |
362 |
SetLittle(Gear^.dX) |
|
4 | 363 |
end |
149 | 364 |
else begin |
351 | 365 |
Gear^.State:= Gear^.State and not gstMoving; |
366 |
SetLittle(Gear^.dX) |
|
149 | 367 |
end |
351 | 368 |
else Gear^.dX:= -Gear^.Elasticity * Gear^.dX; |
4 | 369 |
|
351 | 370 |
if ((Gear^.State and gstFalling) = 0)and |
371 |
(hwAbs(Gear^.dX) + hwAbs(Gear^.dY) < _0_03) then |
|
4 | 372 |
begin |
351 | 373 |
Gear^.State:= Gear^.State and not gstMoving; |
374 |
SetLittle(Gear^.dX); |
|
498 | 375 |
Gear^.dY:= _0 |
351 | 376 |
end else Gear^.State:= Gear^.State or gstMoving; |
4 | 377 |
|
351 | 378 |
if (Gear^.State and gstMoving) <> 0 then |
4 | 379 |
begin |
511 | 380 |
Gear^.State:= Gear^.State and not gstAnimation; |
351 | 381 |
Gear^.X:= Gear^.X + Gear^.dX; |
382 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
513
69e06d710d46
Moving hedgehog could get another hedgehog moving forward
unc0rr
parents:
511
diff
changeset
|
383 |
if (not Gear^.dY.isNegative) and |
69e06d710d46
Moving hedgehog could get another hedgehog moving forward
unc0rr
parents:
511
diff
changeset
|
384 |
(not TestCollisionYKick(Gear, 1)) and |
69e06d710d46
Moving hedgehog could get another hedgehog moving forward
unc0rr
parents:
511
diff
changeset
|
385 |
TestCollisionYwithXYShift(Gear, 0, 1, 1) then |
74 | 386 |
begin |
82 | 387 |
CheckHHDamage(Gear); |
498 | 388 |
Gear^.dY:= _0; |
389 |
Gear^.Y:= Gear^.Y + _1 |
|
74 | 390 |
end; |
4 | 391 |
end else |
351 | 392 |
if Gear^.Health = 0 then |
4 | 393 |
begin |
394 |
if AllInactive then |
|
395 |
begin |
|
522 | 396 |
Gear^.State:= Gear^.State or gstNoDamage; |
351 | 397 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound); |
498 | 398 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtGrave, 0, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
4 | 399 |
DeleteGear(Gear); |
400 |
SetAllToActive |
|
401 |
end; |
|
351 | 402 |
AllInactive:= false; |
4 | 403 |
exit |
404 |
end; |
|
405 |
||
406 |
AllInactive:= false; |
|
407 |
||
408 |
if (not CheckGearDrowning(Gear)) and |
|
351 | 409 |
((Gear^.State and gstMoving) = 0) then |
511 | 410 |
if ((Gear^.State and gstAnimation) = 0) and |
411 |
(prevState <> Gear^.State) then |
|
4 | 412 |
begin |
511 | 413 |
Gear^.State:= gstAnimation; |
414 |
Gear^.Timer:= 150 |
|
415 |
end else |
|
416 |
begin |
|
417 |
if Gear^.Timer = 0 then |
|
418 |
begin |
|
419 |
Gear^.State:= 0; |
|
420 |
Gear^.Active:= false; |
|
421 |
AddGearCI(Gear); |
|
422 |
exit |
|
423 |
end else dec(Gear^.Timer) |
|
4 | 424 |
end |
425 |
end; |
|
426 |
||
427 |
//////////////////////////////////////////////////////////////////////////////// |
|
428 |
procedure doStepHedgehog(Gear: PGear); |
|
429 |
begin |
|
351 | 430 |
if (Gear^.Message and gm_Destroy) <> 0 then |
4 | 431 |
begin |
432 |
DeleteGear(Gear); |
|
433 |
exit |
|
434 |
end; |
|
351 | 435 |
if (Gear^.State and gstHHDriven) = 0 then doStepHedgehogFree(Gear) |
511 | 436 |
else doStepHedgehogDriven(Gear) |
4 | 437 |
end; |