author | unc0rr |
Tue, 03 Jul 2007 17:03:41 +0000 | |
changeset 550 | f6a18d2bab00 |
parent 549 | 4278a80140a8 |
child 553 | 5478386d935f |
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 |
351 | 92 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^, |
93 |
CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog] 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; |
351 | 97 |
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
|
98 |
else begin |
351 | 99 |
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
|
100 |
State:= State or gstAttacked; |
534 | 101 |
OnUsedAmmo(CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog]) |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
102 |
end; |
95 | 103 |
AttackBar:= 0; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
104 |
end |
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 |
|
42 | 107 |
//////////////////////////////////////////////////////////////////////////////// |
108 |
procedure PickUp(HH, Gear: PGear); |
|
295 | 109 |
var s: shortstring; |
110 |
a: TAmmoType; |
|
42 | 111 |
begin |
351 | 112 |
Gear^.Message:= gm_Destroy; |
113 |
case Gear^.Pos of |
|
295 | 114 |
posCaseAmmo: begin |
351 | 115 |
a:= TAmmoType(Gear^.State); |
116 |
AddAmmo(PHedgehog(HH^.Hedgehog), a); |
|
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
117 |
s:= trammo[Ammoz[a].NameId] + '(+' + IntToStr(Ammoz[a].NumberInCase) + ')'; |
549 | 118 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.Color, capgrpAmmoinfo); |
295 | 119 |
end; |
42 | 120 |
posCaseHealth: begin |
351 | 121 |
inc(HH^.Health, Gear^.Health); |
122 |
str(Gear^.Health, s); |
|
295 | 123 |
s:= '+' + s; |
549 | 124 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.Color, capgrpAmmoinfo); |
351 | 125 |
RenderHealth(PHedgehog(HH^.Hedgehog)^); |
126 |
RecountTeamHealth(PHedgehog(HH^.Hedgehog)^.Team) |
|
42 | 127 |
end; |
435 | 128 |
end |
42 | 129 |
end; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
130 |
|
4 | 131 |
const StepTicks: LongWord = 0; |
132 |
||
302 | 133 |
procedure HedgehogStep(Gear: PGear); |
371 | 134 |
var PrevdX: LongInt; |
302 | 135 |
begin |
542 | 136 |
if ((Gear^.State and (gstAttacking or gstMoving)) = 0) then |
4 | 137 |
begin |
408 | 138 |
if isCursorVisible then |
139 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
140 |
with Ammo^[CurSlot, CurAmmo] do |
|
141 |
begin |
|
542 | 142 |
if (Gear^.Message and gm_Left ) <> 0 then |
408 | 143 |
Pos:= (Pos + Ammoz[AmmoType].PosCount - 1) mod Ammoz[AmmoType].PosCount |
144 |
else |
|
542 | 145 |
if (Gear^.Message and gm_Right ) <> 0 then |
408 | 146 |
Pos:= (Pos + 1) mod Ammoz[AmmoType].PosCount |
147 |
else exit; |
|
423 | 148 |
StepTicks:= 200; |
408 | 149 |
exit |
150 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
151 |
|
351 | 152 |
if ((Gear^.Message and gm_LJump ) <> 0) then |
4 | 153 |
begin |
542 | 154 |
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
|
155 |
DeleteCI(Gear); |
68 | 156 |
if not TestCollisionYwithGear(Gear, -1) then |
498 | 157 |
if not TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _2 else |
158 |
if not TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _1; |
|
351 | 159 |
if not (TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) |
68 | 160 |
or TestCollisionYwithGear(Gear, -1)) then |
4 | 161 |
begin |
351 | 162 |
Gear^.dY:= -_0_15; |
498 | 163 |
Gear^.dX:= SignAs(_0_15, Gear^.dX); |
542 | 164 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
4 | 165 |
exit |
166 |
end; |
|
167 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
168 |
|
351 | 169 |
if ((Gear^.Message and gm_HJump ) <> 0) then |
4 | 170 |
begin |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
171 |
DeleteCI(Gear); |
542 | 172 |
Gear^.Message:= Gear^.Message and not gm_HJump; |
68 | 173 |
if not TestCollisionYwithGear(Gear, -1) then |
4 | 174 |
begin |
351 | 175 |
Gear^.dY:= -_0_2; |
176 |
SetLittle(Gear^.dX); |
|
542 | 177 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
4 | 178 |
exit |
179 |
end; |
|
180 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
181 |
|
351 | 182 |
PrevdX:= hwSign(Gear^.dX); |
183 |
if (Gear^.Message and gm_Left )<>0 then Gear^.dX:= -cLittle else |
|
184 |
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
|
185 |
|
74 | 186 |
StepTicks:= cHHStepTicks; |
351 | 187 |
if PrevdX <> hwSign(Gear^.dX) then exit; |
517 | 188 |
DeleteCI(Gear); // after exit!! ^^^^ |
189 |
||
351 | 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; |
|
542 | 232 |
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
|
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 |
542 | 247 |
if ((Gear^.State and gstMoving) = 0) then |
351 | 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 |
//////////////////////////////////////////////////////////////////////////////// |
|
538 | 255 |
procedure doStepHedgehogMoving(Gear: PGear); |
545 | 256 |
var isFalling: boolean; |
538 | 257 |
begin |
542 | 258 |
isFalling:= not TestCollisionYKick(Gear, 1); |
259 |
if isFalling then |
|
538 | 260 |
begin |
261 |
if (Gear^.dY.isNegative) and TestCollisionYKick(Gear, -1) then Gear^.dY:= _0; |
|
542 | 262 |
Gear^.State:= Gear^.State or gstMoving; |
538 | 263 |
Gear^.dY:= Gear^.dY + cGravity |
264 |
end else |
|
265 |
begin |
|
266 |
if ((hwAbs(Gear^.dX) + hwAbs(Gear^.dY)) < _0_55) |
|
267 |
and ((Gear^.State and gstHHJumping) <> 0) then SetLittle(Gear^.dX); |
|
268 |
||
540 | 269 |
if not Gear^.dY.isNegative then |
270 |
begin |
|
271 |
CheckHHDamage(Gear); |
|
542 | 272 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
540 | 273 |
Gear^.dY:= _0; |
274 |
end else Gear^.dY:= Gear^.dY + cGravity; |
|
538 | 275 |
|
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 |
|
542 | 283 |
if not isFalling then |
538 | 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 |
||
542 | 302 |
if (not isFalling) and |
538 | 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; |
|
542 | 344 |
|
345 |
if ((Gear^.State and gstMoving) <> 0) |
|
528 | 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 |
542 | 362 |
((Gear^.State and gstAttacking) <> 0) then Attack(Gear); |
302 | 363 |
|
542 | 364 |
if (Gear^.State and 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 |
542 | 371 |
Gear^.State:= Gear^.State or gstHHHJump or gstMoving; |
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 |
if ((Gear^.State and gstHHJumping) <> 0) and |
|
378 |
TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then SetLittle(Gear^.dX); |
|
379 |
||
380 |
doStepHedgehogMoving(Gear); |
|
542 | 381 |
|
382 |
if (Gear^.State and gstMoving) = 0 then |
|
302 | 383 |
begin |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
384 |
AddGearCI(Gear); |
542 | 385 |
StepTicks:= 350 |
302 | 386 |
end; |
387 |
exit |
|
538 | 388 |
end; |
302 | 389 |
|
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
390 |
HedgehogChAngle(Gear); |
302 | 391 |
if StepTicks > 0 then dec(StepTicks); |
392 |
if (StepTicks = 0) then HedgehogStep(Gear) |
|
393 |
end; |
|
394 |
||
4 | 395 |
//////////////////////////////////////////////////////////////////////////////// |
396 |
procedure doStepHedgehogFree(Gear: PGear); |
|
511 | 397 |
var prevState: Longword; |
4 | 398 |
begin |
511 | 399 |
prevState:= Gear^.State; |
4 | 400 |
|
538 | 401 |
doStepHedgehogMoving(Gear); |
4 | 402 |
|
538 | 403 |
if (Gear^.State and gstMoving) = 0 then |
351 | 404 |
if Gear^.Health = 0 then |
4 | 405 |
begin |
406 |
if AllInactive then |
|
407 |
begin |
|
522 | 408 |
Gear^.State:= Gear^.State or gstNoDamage; |
351 | 409 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound); |
498 | 410 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtGrave, 0, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
4 | 411 |
DeleteGear(Gear); |
412 |
SetAllToActive |
|
413 |
end; |
|
351 | 414 |
AllInactive:= false; |
4 | 415 |
exit |
416 |
end; |
|
417 |
||
418 |
AllInactive:= false; |
|
419 |
||
538 | 420 |
if ((Gear^.State and gstMoving) = 0) then |
511 | 421 |
if ((Gear^.State and gstAnimation) = 0) and |
422 |
(prevState <> Gear^.State) then |
|
4 | 423 |
begin |
511 | 424 |
Gear^.State:= gstAnimation; |
425 |
Gear^.Timer:= 150 |
|
426 |
end else |
|
427 |
begin |
|
428 |
if Gear^.Timer = 0 then |
|
429 |
begin |
|
430 |
Gear^.State:= 0; |
|
431 |
Gear^.Active:= false; |
|
432 |
AddGearCI(Gear); |
|
433 |
exit |
|
434 |
end else dec(Gear^.Timer) |
|
4 | 435 |
end |
436 |
end; |
|
437 |
||
438 |
//////////////////////////////////////////////////////////////////////////////// |
|
439 |
procedure doStepHedgehog(Gear: PGear); |
|
440 |
begin |
|
351 | 441 |
if (Gear^.Message and gm_Destroy) <> 0 then |
4 | 442 |
begin |
443 |
DeleteGear(Gear); |
|
444 |
exit |
|
445 |
end; |
|
351 | 446 |
if (Gear^.State and gstHHDriven) = 0 then doStepHedgehogFree(Gear) |
511 | 447 |
else doStepHedgehogDriven(Gear) |
4 | 448 |
end; |