author | unc0rr |
Sat, 29 Sep 2007 16:39:21 +0000 | |
changeset 614 | 0e04504bc140 |
parent 610 | 9b5a6200f667 |
child 783 | 4f59db6f147d |
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 |
542 | 27 |
((State and (gstAttacked or gstHHChooseTarget)) = 0)and |
28 |
(((State and gstMoving) = 0)or((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_AttackInMove) <> 0))and |
|
29 |
((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
|
30 |
begin |
95 | 31 |
State:= State or gstAttacking; |
32 |
if Power = cMaxPower then Message:= Message and not gm_Attack |
|
351 | 33 |
else if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Power) = 0 then Message:= Message and not gm_Attack |
95 | 34 |
else begin |
35 |
if Power = 0 then |
|
36 |
begin |
|
351 | 37 |
AttackBar:= CurrentTeam^.AttackBar; |
38 |
PlaySound(sndThrowPowerUp, false) |
|
95 | 39 |
end; |
40 |
inc(Power) |
|
41 |
end; |
|
42 |
if ((Message and gm_Attack) <> 0) then exit; |
|
351 | 43 |
|
44 |
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
|
45 |
begin |
282 | 46 |
StopSound(sndThrowPowerUp); |
351 | 47 |
PlaySound(sndThrowRelease, false); |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
48 |
end; |
519 | 49 |
xx:= SignAs(AngleSin(Angle), dX); |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
50 |
yy:= -AngleCos(Angle); |
351 | 51 |
case Ammo^[CurSlot, CurAmmo].AmmoType of |
52 |
amGrenade: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtAmmo_Bomb, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo^[CurSlot, CurAmmo].Timer); |
|
53 |
amClusterBomb: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtClusterBomb, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo^[CurSlot, CurAmmo].Timer); |
|
54 |
amBazooka: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtAmmo_Grenade, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0); |
|
55 |
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
|
56 |
amShotgun: begin |
351 | 57 |
PlaySound(sndShotgunReload, false); |
58 |
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
|
59 |
end; |
498 | 60 |
amPickHammer: CurAmmoGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y) + cHHRadius, gtPickHammer, 0, _0, _0, 0); |
78 | 61 |
amSkip: TurnTimeLeft:= 0; |
351 | 62 |
amRope: CurAmmoGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtRope, 0, xx, yy, 0); |
498 | 63 |
amMine: AddGear(hwRound(X) + hwSign(dX) * 7, hwRound(Y), gtMine, 0, SignAs(_0_02, dX), _0, 3000); |
518 | 64 |
amDEagle: AddGear(hwRound(X + xx * cHHRadius), hwRound(Y + yy * cHHRadius), gtDEagleShot, 0, xx * _0_5, yy * _0_5, 0); |
498 | 65 |
amDynamite: AddGear(hwRound(X) + hwSign(dX) * 7, hwRound(Y), gtDynamite, 0, SignAs(_0_03, dX), _0, 5000); |
351 | 66 |
amBaseballBat: AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtShover, 0, xx * _0_5, yy * _0_5, 0)^.Radius:= 20; |
498 | 67 |
amFirePunch: CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtFirePunch, 0, _0, _0, 0); |
68 |
amParachute: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtParachute, 0, _0, _0, 0); |
|
69 |
amAirAttack: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 0, _0, _0, 0); |
|
70 |
amMineStrike: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 1, _0, _0, 0); |
|
71 |
amBlowTorch: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtBlowTorch, 0, SignAs(_0_5, dX), _0, 0); |
|
72 |
amGirder: CurAmmoGear:= AddGear(0, 0, gtGirder, Ammo^[CurSlot, CurAmmo].Pos, _0, _0, 0); |
|
520 | 73 |
amTeleport: CurAmmoGear:= AddGear(0, 0, gtTeleport, 0, _0, _0, 0); |
534 | 74 |
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
|
75 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
76 |
Power:= 0; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
77 |
if CurAmmoGear <> nil then |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
78 |
begin |
82 | 79 |
Message:= Message or gm_Attack; |
351 | 80 |
CurAmmoGear^.Message:= Message |
82 | 81 |
end else begin |
351 | 82 |
if not CurrentTeam^.ExtDriven and |
83 |
((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Power) <> 0) then SendIPC('a'); |
|
82 | 84 |
AfterAttack |
85 |
end |
|
95 | 86 |
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
|
87 |
end |
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 |
|
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
90 |
procedure AfterAttack; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
91 |
begin |
602 | 92 |
with CurrentHedgehog^.Gear^, |
93 |
CurrentHedgehog^ do |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
94 |
begin |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
95 |
Inc(AttacksNum); |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
96 |
State:= State and not gstAttacking; |
614 | 97 |
if (Ammo^[CurSlot, CurAmmo].NumPerTurn >= AttacksNum) or |
98 |
((GameFlags and gfMultiWeapon) <> 0) 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; |
602 | 102 |
OnUsedAmmo(CurrentHedgehog^) |
32
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); |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
549
diff
changeset
|
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) + ')'; |
549 | 119 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.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; |
549 | 125 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.Color, capgrpAmmoinfo); |
351 | 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 |
542 | 137 |
if ((Gear^.State and (gstAttacking or gstMoving)) = 0) then |
4 | 138 |
begin |
408 | 139 |
if isCursorVisible then |
140 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
141 |
with Ammo^[CurSlot, CurAmmo] do |
|
142 |
begin |
|
542 | 143 |
if (Gear^.Message and gm_Left ) <> 0 then |
408 | 144 |
Pos:= (Pos + Ammoz[AmmoType].PosCount - 1) mod Ammoz[AmmoType].PosCount |
145 |
else |
|
542 | 146 |
if (Gear^.Message and gm_Right ) <> 0 then |
408 | 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 |
542 | 155 |
Gear^.Message:= Gear^.Message and not gm_LJump; |
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); |
542 | 165 |
Gear^.State:= Gear^.State or gstMoving 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); |
542 | 173 |
Gear^.Message:= Gear^.Message and not gm_HJump; |
68 | 174 |
if not TestCollisionYwithGear(Gear, -1) then |
4 | 175 |
begin |
351 | 176 |
Gear^.dY:= -_0_2; |
177 |
SetLittle(Gear^.dX); |
|
542 | 178 |
Gear^.State:= Gear^.State or gstMoving 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; |
610 | 188 |
if PrevdX <> hwSign(Gear^.dX) then |
189 |
begin |
|
190 |
FollowGear:= Gear; |
|
191 |
exit |
|
192 |
end; |
|
193 |
DeleteCI(Gear); // must be after exit!! (see previous line) |
|
517 | 194 |
|
351 | 195 |
PHedgehog(Gear^.Hedgehog)^.visStepPos:= (PHedgehog(Gear^.Hedgehog)^.visStepPos + 1) and 7; |
196 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
|
4 | 197 |
begin |
498 | 198 |
if not (TestCollisionXwithXYShift(Gear, _0, -6, hwSign(Gear^.dX)) |
199 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
200 |
if not (TestCollisionXwithXYShift(Gear, _0, -5, hwSign(Gear^.dX)) |
|
201 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
202 |
if not (TestCollisionXwithXYShift(Gear, _0, -4, hwSign(Gear^.dX)) |
|
203 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
204 |
if not (TestCollisionXwithXYShift(Gear, _0, -3, hwSign(Gear^.dX)) |
|
205 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
206 |
if not (TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) |
|
207 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
208 |
if not (TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) |
|
209 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
4 | 210 |
end; |
498 | 211 |
if not TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then Gear^.X:= Gear^.X + SignAs(_1, Gear^.dX); |
300 | 212 |
|
62 | 213 |
SetAllHHToActive; |
37 | 214 |
|
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 + _1; |
68 | 233 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 234 |
begin |
498 | 235 |
Gear^.Y:= Gear^.Y - _6; |
236 |
Gear^.dY:= _0; |
|
542 | 237 |
Gear^.State:= Gear^.State or gstMoving; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
238 |
exit |
4 | 239 |
end; |
240 |
end |
|
241 |
end |
|
242 |
end |
|
243 |
end |
|
244 |
end |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
245 |
end; |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
246 |
AddGearCI(Gear) |
4 | 247 |
end |
248 |
end; |
|
249 |
||
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
250 |
procedure HedgehogChAngle(Gear: PGear); |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
251 |
begin |
542 | 252 |
if ((Gear^.State and gstMoving) = 0) then |
351 | 253 |
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
|
254 |
else else |
351 | 255 |
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
|
256 |
end; |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
257 |
|
302 | 258 |
procedure doStepHedgehog(Gear: PGear); forward; |
259 |
//////////////////////////////////////////////////////////////////////////////// |
|
538 | 260 |
procedure doStepHedgehogMoving(Gear: PGear); |
545 | 261 |
var isFalling: boolean; |
538 | 262 |
begin |
542 | 263 |
isFalling:= not TestCollisionYKick(Gear, 1); |
264 |
if isFalling then |
|
538 | 265 |
begin |
266 |
if (Gear^.dY.isNegative) and TestCollisionYKick(Gear, -1) then Gear^.dY:= _0; |
|
542 | 267 |
Gear^.State:= Gear^.State or gstMoving; |
538 | 268 |
Gear^.dY:= Gear^.dY + cGravity |
269 |
end else |
|
270 |
begin |
|
271 |
if ((hwAbs(Gear^.dX) + hwAbs(Gear^.dY)) < _0_55) |
|
272 |
and ((Gear^.State and gstHHJumping) <> 0) then SetLittle(Gear^.dX); |
|
273 |
||
540 | 274 |
if not Gear^.dY.isNegative then |
275 |
begin |
|
276 |
CheckHHDamage(Gear); |
|
542 | 277 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
540 | 278 |
Gear^.dY:= _0; |
279 |
end else Gear^.dY:= Gear^.dY + cGravity; |
|
538 | 280 |
|
281 |
if ((Gear^.State and gstMoving) <> 0) then Gear^.dX:= Gear^.dX * Gear^.Friction |
|
282 |
end; |
|
283 |
||
284 |
if (Gear^.State <> 0) then DeleteCI(Gear); |
|
285 |
||
286 |
if (Gear^.State and gstMoving) <> 0 then |
|
287 |
if TestCollisionXKick(Gear, hwSign(Gear^.dX)) then |
|
542 | 288 |
if not isFalling then |
538 | 289 |
if hwAbs(Gear^.dX) > _0_01 then |
290 |
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 |
|
291 |
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 |
|
292 |
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 |
|
293 |
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 |
|
294 |
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 |
|
295 |
if hwAbs(Gear^.dX) > _0_02 then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
296 |
else begin |
|
297 |
Gear^.State:= Gear^.State and not gstMoving; |
|
298 |
SetLittle(Gear^.dX) |
|
299 |
end |
|
300 |
else begin |
|
301 |
Gear^.State:= Gear^.State and not gstMoving; |
|
302 |
SetLittle(Gear^.dX) |
|
303 |
end |
|
304 |
else if hwAbs(Gear^.dX) > cLittle then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
305 |
else SetLittle(Gear^.dX); |
|
306 |
||
542 | 307 |
if (not isFalling) and |
538 | 308 |
(hwAbs(Gear^.dX) + hwAbs(Gear^.dY) < _0_03) then |
309 |
begin |
|
310 |
Gear^.State:= Gear^.State and not gstMoving; |
|
311 |
SetLittle(Gear^.dX); |
|
312 |
Gear^.dY:= _0 |
|
313 |
end else Gear^.State:= Gear^.State or gstMoving; |
|
314 |
||
315 |
if (Gear^.State and gstMoving) <> 0 then |
|
316 |
begin |
|
317 |
Gear^.State:= Gear^.State and not gstAnimation; |
|
318 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
319 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
320 |
if (not Gear^.dY.isNegative) and |
|
321 |
(not TestCollisionYKick(Gear, 1)) and |
|
322 |
TestCollisionYwithXYShift(Gear, 0, 1, 1) then |
|
323 |
begin |
|
324 |
CheckHHDamage(Gear); |
|
325 |
Gear^.dY:= _0; |
|
326 |
Gear^.Y:= Gear^.Y + _1 |
|
327 |
end; |
|
328 |
CheckGearDrowning(Gear) |
|
329 |
end |
|
330 |
end; |
|
331 |
||
302 | 332 |
procedure doStepHedgehogDriven(Gear: PGear); |
333 |
var t: PGear; |
|
334 |
begin |
|
558
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
335 |
if not isInMultiShoot then |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
336 |
AllInactive:= false |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
337 |
else |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
338 |
Gear^.Message:= 0; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
339 |
|
351 | 340 |
if (TurnTimeLeft = 0) or (Gear^.Damage > 0) then |
302 | 341 |
begin |
342 |
TurnTimeLeft:= 0; |
|
351 | 343 |
Gear^.State:= Gear^.State and not gstHHDriven; |
344 |
if Gear^.Damage > 0 then |
|
424 | 345 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
302 | 346 |
exit |
347 |
end; |
|
542 | 348 |
|
349 |
if ((Gear^.State and gstMoving) <> 0) |
|
528 | 350 |
or (StepTicks = cHHStepTicks) |
302 | 351 |
or (CurAmmoGear <> nil) then // we're moving |
352 |
begin |
|
353 |
// check for case with ammo |
|
354 |
t:= CheckGearNear(Gear, gtCase, 36, 36); |
|
355 |
if t <> nil then |
|
356 |
PickUp(Gear, t) |
|
357 |
end; |
|
358 |
||
359 |
if CurAmmoGear <> nil then |
|
360 |
begin |
|
351 | 361 |
CurAmmoGear^.Message:= Gear^.Message; |
302 | 362 |
exit |
363 |
end; |
|
364 |
||
351 | 365 |
if ((Gear^.Message and gm_Attack) <> 0) or |
542 | 366 |
((Gear^.State and gstAttacking) <> 0) then Attack(Gear); |
302 | 367 |
|
542 | 368 |
if (Gear^.State and gstMoving) <> 0 then |
302 | 369 |
begin |
424 | 370 |
if ((Gear^.Message and gm_HJump) <> 0) and |
371 |
((Gear^.State and gstHHJumping) <> 0) and |
|
372 |
((Gear^.State and gstHHHJump) = 0) then |
|
373 |
if (not (hwAbs(Gear^.dX) > cLittle)) and (Gear^.dY < -_0_02) then |
|
302 | 374 |
begin |
542 | 375 |
Gear^.State:= Gear^.State or gstHHHJump or gstMoving; |
351 | 376 |
Gear^.dY:= -_0_25; |
498 | 377 |
Gear^.dX:= SignAs(_0_02, Gear^.dX) |
302 | 378 |
end; |
351 | 379 |
Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump); |
538 | 380 |
|
381 |
if ((Gear^.State and gstHHJumping) <> 0) and |
|
382 |
TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then SetLittle(Gear^.dX); |
|
383 |
||
384 |
doStepHedgehogMoving(Gear); |
|
542 | 385 |
|
386 |
if (Gear^.State and gstMoving) = 0 then |
|
302 | 387 |
begin |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
388 |
AddGearCI(Gear); |
542 | 389 |
StepTicks:= 350 |
302 | 390 |
end; |
391 |
exit |
|
538 | 392 |
end; |
302 | 393 |
|
558
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
394 |
if not isInMultiShoot then |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
395 |
begin |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
396 |
HedgehogChAngle(Gear); |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
397 |
if StepTicks > 0 then dec(StepTicks); |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
398 |
if (StepTicks = 0) then HedgehogStep(Gear) |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
399 |
end |
302 | 400 |
end; |
401 |
||
4 | 402 |
//////////////////////////////////////////////////////////////////////////////// |
403 |
procedure doStepHedgehogFree(Gear: PGear); |
|
511 | 404 |
var prevState: Longword; |
4 | 405 |
begin |
511 | 406 |
prevState:= Gear^.State; |
4 | 407 |
|
538 | 408 |
doStepHedgehogMoving(Gear); |
4 | 409 |
|
538 | 410 |
if (Gear^.State and gstMoving) = 0 then |
351 | 411 |
if Gear^.Health = 0 then |
4 | 412 |
begin |
413 |
if AllInactive then |
|
414 |
begin |
|
522 | 415 |
Gear^.State:= Gear^.State or gstNoDamage; |
351 | 416 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound); |
498 | 417 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtGrave, 0, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
4 | 418 |
DeleteGear(Gear); |
419 |
SetAllToActive |
|
420 |
end; |
|
351 | 421 |
AllInactive:= false; |
4 | 422 |
exit |
423 |
end; |
|
424 |
||
425 |
AllInactive:= false; |
|
426 |
||
538 | 427 |
if ((Gear^.State and gstMoving) = 0) then |
511 | 428 |
if ((Gear^.State and gstAnimation) = 0) and |
429 |
(prevState <> Gear^.State) then |
|
4 | 430 |
begin |
511 | 431 |
Gear^.State:= gstAnimation; |
432 |
Gear^.Timer:= 150 |
|
433 |
end else |
|
434 |
begin |
|
435 |
if Gear^.Timer = 0 then |
|
436 |
begin |
|
437 |
Gear^.State:= 0; |
|
438 |
Gear^.Active:= false; |
|
439 |
AddGearCI(Gear); |
|
440 |
exit |
|
441 |
end else dec(Gear^.Timer) |
|
4 | 442 |
end |
443 |
end; |
|
444 |
||
445 |
//////////////////////////////////////////////////////////////////////////////// |
|
446 |
procedure doStepHedgehog(Gear: PGear); |
|
447 |
begin |
|
351 | 448 |
if (Gear^.Message and gm_Destroy) <> 0 then |
4 | 449 |
begin |
450 |
DeleteGear(Gear); |
|
451 |
exit |
|
452 |
end; |
|
351 | 453 |
if (Gear^.State and gstHHDriven) = 0 then doStepHedgehogFree(Gear) |
511 | 454 |
else doStepHedgehogDriven(Gear) |
4 | 455 |
end; |