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