author | unc0rr |
Wed, 06 Jun 2007 21:27:12 +0000 | |
changeset 538 | 74219eadab5e |
parent 534 | 92fb2b0d5117 |
child 540 | b06c5aace2fa |
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); |
534 | 76 |
amSwitch: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtSwitcher, 0, _0, _0, 0); |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
77 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
78 |
Power:= 0; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
79 |
if CurAmmoGear <> nil then |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
80 |
begin |
82 | 81 |
Message:= Message or gm_Attack; |
351 | 82 |
CurAmmoGear^.Message:= Message |
82 | 83 |
end else begin |
351 | 84 |
if not CurrentTeam^.ExtDriven and |
85 |
((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Power) <> 0) then SendIPC('a'); |
|
82 | 86 |
AfterAttack |
87 |
end |
|
95 | 88 |
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
|
89 |
end |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
90 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
91 |
|
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
92 |
procedure AfterAttack; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
93 |
begin |
351 | 94 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^, |
95 |
CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog] do |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
96 |
begin |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
97 |
Inc(AttacksNum); |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
98 |
State:= State and not gstAttacking; |
351 | 99 |
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
|
100 |
else begin |
351 | 101 |
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
|
102 |
State:= State or gstAttacked; |
534 | 103 |
OnUsedAmmo(CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog]) |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
104 |
end; |
95 | 105 |
AttackBar:= 0; |
32
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 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
108 |
|
42 | 109 |
//////////////////////////////////////////////////////////////////////////////// |
110 |
procedure PickUp(HH, Gear: PGear); |
|
295 | 111 |
var s: shortstring; |
112 |
a: TAmmoType; |
|
42 | 113 |
begin |
351 | 114 |
Gear^.Message:= gm_Destroy; |
115 |
case Gear^.Pos of |
|
295 | 116 |
posCaseAmmo: begin |
351 | 117 |
a:= TAmmoType(Gear^.State); |
118 |
AddAmmo(PHedgehog(HH^.Hedgehog), a); |
|
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
119 |
s:= trammo[Ammoz[a].NameId] + '(+' + IntToStr(Ammoz[a].NumberInCase) + ')'; |
351 | 120 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Color, capgrpAmmoinfo); |
295 | 121 |
end; |
42 | 122 |
posCaseHealth: begin |
351 | 123 |
inc(HH^.Health, Gear^.Health); |
124 |
str(Gear^.Health, s); |
|
295 | 125 |
s:= '+' + s; |
351 | 126 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Color, capgrpAmmoinfo); |
127 |
RenderHealth(PHedgehog(HH^.Hedgehog)^); |
|
128 |
RecountTeamHealth(PHedgehog(HH^.Hedgehog)^.Team) |
|
42 | 129 |
end; |
435 | 130 |
end |
42 | 131 |
end; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
132 |
|
4 | 133 |
const StepTicks: LongWord = 0; |
134 |
||
302 | 135 |
procedure HedgehogStep(Gear: PGear); |
371 | 136 |
var PrevdX: LongInt; |
302 | 137 |
begin |
351 | 138 |
if ((Gear^.State and (gstAttacking or gstMoving or gstFalling)) = 0) then |
4 | 139 |
begin |
408 | 140 |
if isCursorVisible then |
141 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
142 |
with Ammo^[CurSlot, CurAmmo] do |
|
143 |
begin |
|
144 |
if (Gear^.Message and gm_Left )<>0 then |
|
145 |
Pos:= (Pos + Ammoz[AmmoType].PosCount - 1) mod Ammoz[AmmoType].PosCount |
|
146 |
else |
|
147 |
if (Gear^.Message and gm_Right )<>0 then |
|
148 |
Pos:= (Pos + 1) mod Ammoz[AmmoType].PosCount |
|
149 |
else exit; |
|
423 | 150 |
StepTicks:= 200; |
408 | 151 |
exit |
152 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
153 |
|
351 | 154 |
if ((Gear^.Message and gm_LJump ) <> 0) then |
4 | 155 |
begin |
351 | 156 |
Gear^.Message:= 0; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
157 |
DeleteCI(Gear); |
68 | 158 |
if not TestCollisionYwithGear(Gear, -1) then |
498 | 159 |
if not TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _2 else |
160 |
if not TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _1; |
|
351 | 161 |
if not (TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) |
68 | 162 |
or TestCollisionYwithGear(Gear, -1)) then |
4 | 163 |
begin |
351 | 164 |
Gear^.dY:= -_0_15; |
498 | 165 |
Gear^.dX:= SignAs(_0_15, Gear^.dX); |
351 | 166 |
Gear^.State:= Gear^.State or gstFalling or gstHHJumping; |
4 | 167 |
exit |
168 |
end; |
|
169 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
170 |
|
351 | 171 |
if ((Gear^.Message and gm_HJump ) <> 0) then |
4 | 172 |
begin |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
173 |
DeleteCI(Gear); |
351 | 174 |
Gear^.Message:= 0; |
68 | 175 |
if not TestCollisionYwithGear(Gear, -1) then |
4 | 176 |
begin |
351 | 177 |
Gear^.dY:= -_0_2; |
178 |
SetLittle(Gear^.dX); |
|
179 |
Gear^.State:= Gear^.State or gstFalling or gstHHJumping; |
|
4 | 180 |
exit |
181 |
end; |
|
182 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
183 |
|
351 | 184 |
PrevdX:= hwSign(Gear^.dX); |
185 |
if (Gear^.Message and gm_Left )<>0 then Gear^.dX:= -cLittle else |
|
186 |
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
|
187 |
|
74 | 188 |
StepTicks:= cHHStepTicks; |
351 | 189 |
if PrevdX <> hwSign(Gear^.dX) then exit; |
517 | 190 |
DeleteCI(Gear); // after exit!! ^^^^ |
191 |
||
351 | 192 |
PHedgehog(Gear^.Hedgehog)^.visStepPos:= (PHedgehog(Gear^.Hedgehog)^.visStepPos + 1) and 7; |
193 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
|
4 | 194 |
begin |
498 | 195 |
if not (TestCollisionXwithXYShift(Gear, _0, -6, hwSign(Gear^.dX)) |
196 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
197 |
if not (TestCollisionXwithXYShift(Gear, _0, -5, hwSign(Gear^.dX)) |
|
198 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
199 |
if not (TestCollisionXwithXYShift(Gear, _0, -4, hwSign(Gear^.dX)) |
|
200 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
201 |
if not (TestCollisionXwithXYShift(Gear, _0, -3, hwSign(Gear^.dX)) |
|
202 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
203 |
if not (TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) |
|
204 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
205 |
if not (TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) |
|
206 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
4 | 207 |
end; |
498 | 208 |
if not TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then Gear^.X:= Gear^.X + SignAs(_1, Gear^.dX); |
300 | 209 |
|
62 | 210 |
SetAllHHToActive; |
37 | 211 |
|
68 | 212 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 213 |
begin |
498 | 214 |
Gear^.Y:= Gear^.Y + _1; |
68 | 215 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 216 |
begin |
498 | 217 |
Gear^.Y:= Gear^.Y + _1; |
68 | 218 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 219 |
begin |
498 | 220 |
Gear^.Y:= Gear^.Y + _1; |
68 | 221 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 222 |
begin |
498 | 223 |
Gear^.Y:= Gear^.Y + _1; |
68 | 224 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 225 |
begin |
498 | 226 |
Gear^.Y:= Gear^.Y + _1; |
68 | 227 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 228 |
begin |
498 | 229 |
Gear^.Y:= Gear^.Y + _1; |
68 | 230 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 231 |
begin |
498 | 232 |
Gear^.Y:= Gear^.Y - _6; |
233 |
Gear^.dY:= _0; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
234 |
Gear^.State:= Gear^.State or gstFalling; |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
235 |
exit |
4 | 236 |
end; |
237 |
end |
|
238 |
end |
|
239 |
end |
|
240 |
end |
|
241 |
end |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
242 |
end; |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
243 |
AddGearCI(Gear) |
4 | 244 |
end |
245 |
end; |
|
246 |
||
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
247 |
procedure HedgehogChAngle(Gear: PGear); |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
248 |
begin |
351 | 249 |
if ((Gear^.State and (gstMoving or gstFalling)) = 0) then |
250 |
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
|
251 |
else else |
351 | 252 |
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
|
253 |
end; |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
254 |
|
302 | 255 |
procedure doStepHedgehog(Gear: PGear); forward; |
256 |
//////////////////////////////////////////////////////////////////////////////// |
|
538 | 257 |
procedure doStepHedgehogMoving(Gear: PGear); |
258 |
var prevState: Longword; |
|
259 |
begin |
|
260 |
prevState:= Gear^.State; |
|
261 |
if not TestCollisionYKick(Gear, 1) then |
|
262 |
begin |
|
263 |
if (Gear^.dY.isNegative) and TestCollisionYKick(Gear, -1) then Gear^.dY:= _0; |
|
264 |
Gear^.State:= Gear^.State or gstFalling or gstMoving; |
|
265 |
Gear^.dY:= Gear^.dY + cGravity |
|
266 |
end else |
|
267 |
if (not Gear^.dY.isNegative) then |
|
268 |
begin |
|
269 |
CheckHHDamage(Gear); |
|
270 |
if ((hwAbs(Gear^.dX) + hwAbs(Gear^.dY)) < _0_55) |
|
271 |
and ((Gear^.State and gstHHJumping) <> 0) then SetLittle(Gear^.dX); |
|
272 |
||
273 |
Gear^.State:= Gear^.State and not (gstFalling or gstHHJumping or gstHHHJump); |
|
274 |
||
275 |
if Gear^.dY > _0 then Gear^.dY:= _0; |
|
276 |
if ((Gear^.State and gstMoving) <> 0) then Gear^.dX:= Gear^.dX * Gear^.Friction |
|
277 |
end; |
|
278 |
||
279 |
if (Gear^.State <> 0) then DeleteCI(Gear); |
|
280 |
||
281 |
if (Gear^.State and gstMoving) <> 0 then |
|
282 |
if TestCollisionXKick(Gear, hwSign(Gear^.dX)) then |
|
283 |
if ((Gear^.State and gstFalling) = 0) then |
|
284 |
if hwAbs(Gear^.dX) > _0_01 then |
|
285 |
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 |
|
286 |
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 |
|
287 |
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 |
|
288 |
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 |
|
289 |
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 |
|
290 |
if hwAbs(Gear^.dX) > _0_02 then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
291 |
else begin |
|
292 |
Gear^.State:= Gear^.State and not gstMoving; |
|
293 |
SetLittle(Gear^.dX) |
|
294 |
end |
|
295 |
else begin |
|
296 |
Gear^.State:= Gear^.State and not gstMoving; |
|
297 |
SetLittle(Gear^.dX) |
|
298 |
end |
|
299 |
else if hwAbs(Gear^.dX) > cLittle then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
300 |
else SetLittle(Gear^.dX); |
|
301 |
||
302 |
if ((Gear^.State and gstFalling) = 0)and |
|
303 |
(hwAbs(Gear^.dX) + hwAbs(Gear^.dY) < _0_03) then |
|
304 |
begin |
|
305 |
Gear^.State:= Gear^.State and not gstMoving; |
|
306 |
SetLittle(Gear^.dX); |
|
307 |
Gear^.dY:= _0 |
|
308 |
end else Gear^.State:= Gear^.State or gstMoving; |
|
309 |
||
310 |
if (Gear^.State and gstMoving) <> 0 then |
|
311 |
begin |
|
312 |
Gear^.State:= Gear^.State and not gstAnimation; |
|
313 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
314 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
315 |
if (not Gear^.dY.isNegative) and |
|
316 |
(not TestCollisionYKick(Gear, 1)) and |
|
317 |
TestCollisionYwithXYShift(Gear, 0, 1, 1) then |
|
318 |
begin |
|
319 |
CheckHHDamage(Gear); |
|
320 |
Gear^.dY:= _0; |
|
321 |
Gear^.Y:= Gear^.Y + _1 |
|
322 |
end; |
|
323 |
CheckGearDrowning(Gear) |
|
324 |
end |
|
325 |
end; |
|
326 |
||
302 | 327 |
procedure doStepHedgehogDriven(Gear: PGear); |
328 |
var t: PGear; |
|
329 |
begin |
|
351 | 330 |
if isInMultiShoot and (Gear^.Damage = 0) then |
302 | 331 |
begin |
332 |
exit |
|
333 |
end; |
|
334 |
AllInactive:= false; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
335 |
|
351 | 336 |
if (TurnTimeLeft = 0) or (Gear^.Damage > 0) then |
302 | 337 |
begin |
338 |
TurnTimeLeft:= 0; |
|
351 | 339 |
Gear^.State:= Gear^.State and not gstHHDriven; |
340 |
if Gear^.Damage > 0 then |
|
424 | 341 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
302 | 342 |
exit |
343 |
end; |
|
525 | 344 |
|
528 | 345 |
if ((Gear^.State and (gstFalling or gstMoving)) <> 0) |
346 |
or (StepTicks = cHHStepTicks) |
|
302 | 347 |
or (CurAmmoGear <> nil) then // we're moving |
348 |
begin |
|
349 |
// check for case with ammo |
|
350 |
t:= CheckGearNear(Gear, gtCase, 36, 36); |
|
351 |
if t <> nil then |
|
352 |
PickUp(Gear, t) |
|
353 |
end; |
|
354 |
||
355 |
if CurAmmoGear <> nil then |
|
356 |
begin |
|
351 | 357 |
CurAmmoGear^.Message:= Gear^.Message; |
302 | 358 |
exit |
359 |
end; |
|
360 |
||
351 | 361 |
if ((Gear^.Message and gm_Attack) <> 0) or |
362 |
((Gear^.State and gstAttacking) <> 0)then Attack(Gear); |
|
302 | 363 |
|
528 | 364 |
if (Gear^.State and (gstFalling or gstMoving)) <> 0 then |
302 | 365 |
begin |
424 | 366 |
if ((Gear^.Message and gm_HJump) <> 0) and |
367 |
((Gear^.State and gstHHJumping) <> 0) and |
|
368 |
((Gear^.State and gstHHHJump) = 0) then |
|
369 |
if (not (hwAbs(Gear^.dX) > cLittle)) and (Gear^.dY < -_0_02) then |
|
302 | 370 |
begin |
424 | 371 |
Gear^.State:= Gear^.State or gstHHHJump; |
351 | 372 |
Gear^.dY:= -_0_25; |
498 | 373 |
Gear^.dX:= SignAs(_0_02, Gear^.dX) |
302 | 374 |
end; |
351 | 375 |
Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump); |
538 | 376 |
|
377 |
||
378 |
if ((Gear^.State and gstHHJumping) <> 0) and |
|
379 |
TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then SetLittle(Gear^.dX); |
|
380 |
||
381 |
doStepHedgehogMoving(Gear); |
|
382 |
||
383 |
if (Gear^.State and (gstFalling or gstMoving)) = 0 then |
|
302 | 384 |
begin |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
385 |
AddGearCI(Gear); |
538 | 386 |
StepTicks:= 300 |
302 | 387 |
end; |
388 |
exit |
|
538 | 389 |
end; |
302 | 390 |
|
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
391 |
HedgehogChAngle(Gear); |
302 | 392 |
if StepTicks > 0 then dec(StepTicks); |
393 |
if (StepTicks = 0) then HedgehogStep(Gear) |
|
394 |
end; |
|
395 |
||
4 | 396 |
//////////////////////////////////////////////////////////////////////////////// |
397 |
procedure doStepHedgehogFree(Gear: PGear); |
|
511 | 398 |
var prevState: Longword; |
4 | 399 |
begin |
511 | 400 |
prevState:= Gear^.State; |
4 | 401 |
|
538 | 402 |
doStepHedgehogMoving(Gear); |
4 | 403 |
|
538 | 404 |
if (Gear^.State and gstMoving) = 0 then |
351 | 405 |
if Gear^.Health = 0 then |
4 | 406 |
begin |
407 |
if AllInactive then |
|
408 |
begin |
|
522 | 409 |
Gear^.State:= Gear^.State or gstNoDamage; |
351 | 410 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound); |
498 | 411 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtGrave, 0, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
4 | 412 |
DeleteGear(Gear); |
413 |
SetAllToActive |
|
414 |
end; |
|
351 | 415 |
AllInactive:= false; |
4 | 416 |
exit |
417 |
end; |
|
418 |
||
419 |
AllInactive:= false; |
|
420 |
||
538 | 421 |
if ((Gear^.State and gstMoving) = 0) then |
511 | 422 |
if ((Gear^.State and gstAnimation) = 0) and |
423 |
(prevState <> Gear^.State) then |
|
4 | 424 |
begin |
511 | 425 |
Gear^.State:= gstAnimation; |
426 |
Gear^.Timer:= 150 |
|
427 |
end else |
|
428 |
begin |
|
429 |
if Gear^.Timer = 0 then |
|
430 |
begin |
|
431 |
Gear^.State:= 0; |
|
432 |
Gear^.Active:= false; |
|
433 |
AddGearCI(Gear); |
|
434 |
exit |
|
435 |
end else dec(Gear^.Timer) |
|
4 | 436 |
end |
437 |
end; |
|
438 |
||
439 |
//////////////////////////////////////////////////////////////////////////////// |
|
440 |
procedure doStepHedgehog(Gear: PGear); |
|
441 |
begin |
|
351 | 442 |
if (Gear^.Message and gm_Destroy) <> 0 then |
4 | 443 |
begin |
444 |
DeleteGear(Gear); |
|
445 |
exit |
|
446 |
end; |
|
351 | 447 |
if (Gear^.State and gstHHDriven) = 0 then doStepHedgehogFree(Gear) |
511 | 448 |
else doStepHedgehogDriven(Gear) |
4 | 449 |
end; |