author | unc0rr |
Fri, 07 Mar 2008 14:10:13 +0000 | |
changeset 799 | 71ba310da909 |
parent 790 | a6f442173822 |
child 800 | e95f16b7ec80 |
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 |
//////////////////////////////////////////////////////////////////////////////// |
783 | 20 |
procedure ChangeAmmo(Gear: PGear); |
21 |
var slot: Longword; |
|
22 |
caSlot, caAmmo: PLongword; |
|
23 |
begin |
|
24 |
slot:= Gear^.MsgParam; |
|
25 |
||
26 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
27 |
begin |
|
28 |
if ((Gear^.State and (gstAttacking or gstAttacked)) <> 0) or (AttacksNum > 0) |
|
29 |
or ((Gear^.State and gstHHDriven) = 0) then exit; |
|
30 |
||
31 |
Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump or gm_Slot); |
|
32 |
||
33 |
if CurAmmoGear = nil then begin caSlot:= @CurSlot; caAmmo:= @CurAmmo end |
|
34 |
else begin caSlot:= @AltSlot; caAmmo:= @AltAmmo end; |
|
35 |
||
36 |
if caSlot^ = slot then |
|
37 |
begin |
|
38 |
inc(caAmmo^); |
|
39 |
if (caAmmo^ > cMaxSlotAmmoIndex) or (Ammo^[slot, caAmmo^].Count = 0) then caAmmo^:= 0 |
|
40 |
end else |
|
41 |
if Ammo^[slot, 0].Count > 0 then |
|
42 |
begin |
|
43 |
caSlot^:= slot; |
|
44 |
caAmmo^:= 0; |
|
45 |
end; |
|
46 |
end; |
|
47 |
ApplyAmmoChanges(PHedgehog(Gear^.Hedgehog)^) |
|
48 |
end; |
|
49 |
||
50 |
procedure HHSetWeapon(Gear: PGear); |
|
51 |
var t: LongInt; |
|
52 |
weap: TAmmoType; |
|
53 |
begin |
|
54 |
weap:= TAmmoType(Gear^.MsgParam); |
|
55 |
Gear^.MsgParam:= Ammoz[weap].Slot; |
|
56 |
||
57 |
t:= cMaxSlotAmmoIndex; |
|
58 |
||
59 |
Gear^.Message:= Gear^.Message and not gm_Weapon; |
|
60 |
||
61 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
62 |
while (Ammo^[CurSlot, CurAmmo].AmmoType <> weap) and (t >= 0) do |
|
63 |
begin |
|
64 |
ChangeAmmo(Gear); |
|
65 |
dec(t) |
|
66 |
end |
|
67 |
end; |
|
68 |
||
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
69 |
procedure Attack(Gear: PGear); |
351 | 70 |
var xx, yy: hwFloat; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
71 |
begin |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
72 |
with Gear^, |
351 | 73 |
PHedgehog(Gear^.Hedgehog)^ do |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
74 |
begin |
95 | 75 |
if ((State and gstHHDriven) <> 0)and |
542 | 76 |
((State and (gstAttacked or gstHHChooseTarget)) = 0)and |
77 |
(((State and gstMoving) = 0)or((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_AttackInMove) <> 0))and |
|
78 |
((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
|
79 |
begin |
95 | 80 |
State:= State or gstAttacking; |
81 |
if Power = cMaxPower then Message:= Message and not gm_Attack |
|
351 | 82 |
else if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Power) = 0 then Message:= Message and not gm_Attack |
95 | 83 |
else begin |
84 |
if Power = 0 then |
|
85 |
begin |
|
351 | 86 |
AttackBar:= CurrentTeam^.AttackBar; |
87 |
PlaySound(sndThrowPowerUp, false) |
|
95 | 88 |
end; |
89 |
inc(Power) |
|
90 |
end; |
|
91 |
if ((Message and gm_Attack) <> 0) then exit; |
|
351 | 92 |
|
93 |
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
|
94 |
begin |
282 | 95 |
StopSound(sndThrowPowerUp); |
351 | 96 |
PlaySound(sndThrowRelease, false); |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
97 |
end; |
519 | 98 |
xx:= SignAs(AngleSin(Angle), dX); |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
99 |
yy:= -AngleCos(Angle); |
351 | 100 |
case Ammo^[CurSlot, CurAmmo].AmmoType of |
101 |
amGrenade: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtAmmo_Bomb, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo^[CurSlot, CurAmmo].Timer); |
|
102 |
amClusterBomb: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtClusterBomb, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo^[CurSlot, CurAmmo].Timer); |
|
103 |
amBazooka: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtAmmo_Grenade, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0); |
|
104 |
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
|
105 |
amShotgun: begin |
351 | 106 |
PlaySound(sndShotgunReload, false); |
107 |
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
|
108 |
end; |
498 | 109 |
amPickHammer: CurAmmoGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y) + cHHRadius, gtPickHammer, 0, _0, _0, 0); |
78 | 110 |
amSkip: TurnTimeLeft:= 0; |
351 | 111 |
amRope: CurAmmoGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtRope, 0, xx, yy, 0); |
498 | 112 |
amMine: AddGear(hwRound(X) + hwSign(dX) * 7, hwRound(Y), gtMine, 0, SignAs(_0_02, dX), _0, 3000); |
518 | 113 |
amDEagle: AddGear(hwRound(X + xx * cHHRadius), hwRound(Y + yy * cHHRadius), gtDEagleShot, 0, xx * _0_5, yy * _0_5, 0); |
498 | 114 |
amDynamite: AddGear(hwRound(X) + hwSign(dX) * 7, hwRound(Y), gtDynamite, 0, SignAs(_0_03, dX), _0, 5000); |
351 | 115 |
amBaseballBat: AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtShover, 0, xx * _0_5, yy * _0_5, 0)^.Radius:= 20; |
498 | 116 |
amFirePunch: CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtFirePunch, 0, _0, _0, 0); |
117 |
amParachute: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtParachute, 0, _0, _0, 0); |
|
118 |
amAirAttack: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 0, _0, _0, 0); |
|
119 |
amMineStrike: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 1, _0, _0, 0); |
|
120 |
amBlowTorch: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtBlowTorch, 0, SignAs(_0_5, dX), _0, 0); |
|
121 |
amGirder: CurAmmoGear:= AddGear(0, 0, gtGirder, Ammo^[CurSlot, CurAmmo].Pos, _0, _0, 0); |
|
520 | 122 |
amTeleport: CurAmmoGear:= AddGear(0, 0, gtTeleport, 0, _0, _0, 0); |
534 | 123 |
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
|
124 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
125 |
Power:= 0; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
126 |
if CurAmmoGear <> nil then |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
127 |
begin |
82 | 128 |
Message:= Message or gm_Attack; |
351 | 129 |
CurAmmoGear^.Message:= Message |
82 | 130 |
end else begin |
351 | 131 |
if not CurrentTeam^.ExtDriven and |
132 |
((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Power) <> 0) then SendIPC('a'); |
|
82 | 133 |
AfterAttack |
134 |
end |
|
95 | 135 |
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
|
136 |
end |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
137 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
138 |
|
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
139 |
procedure AfterAttack; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
140 |
begin |
602 | 141 |
with CurrentHedgehog^.Gear^, |
142 |
CurrentHedgehog^ do |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
143 |
begin |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
144 |
Inc(AttacksNum); |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
145 |
State:= State and not gstAttacking; |
614 | 146 |
if (Ammo^[CurSlot, CurAmmo].NumPerTurn >= AttacksNum) or |
147 |
((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
|
148 |
else begin |
351 | 149 |
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
|
150 |
State:= State or gstAttacked; |
602 | 151 |
OnUsedAmmo(CurrentHedgehog^) |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
152 |
end; |
95 | 153 |
AttackBar:= 0; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
154 |
end |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
155 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
156 |
|
42 | 157 |
//////////////////////////////////////////////////////////////////////////////// |
158 |
procedure PickUp(HH, Gear: PGear); |
|
295 | 159 |
var s: shortstring; |
160 |
a: TAmmoType; |
|
42 | 161 |
begin |
351 | 162 |
Gear^.Message:= gm_Destroy; |
163 |
case Gear^.Pos of |
|
295 | 164 |
posCaseAmmo: begin |
351 | 165 |
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
|
166 |
AddAmmo(PHedgehog(HH^.Hedgehog)^, a); |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
167 |
s:= trammo[Ammoz[a].NameId] + '(+' + IntToStr(Ammoz[a].NumberInCase) + ')'; |
549 | 168 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.Color, capgrpAmmoinfo); |
295 | 169 |
end; |
42 | 170 |
posCaseHealth: begin |
351 | 171 |
inc(HH^.Health, Gear^.Health); |
172 |
str(Gear^.Health, s); |
|
295 | 173 |
s:= '+' + s; |
549 | 174 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.Color, capgrpAmmoinfo); |
351 | 175 |
RenderHealth(PHedgehog(HH^.Hedgehog)^); |
176 |
RecountTeamHealth(PHedgehog(HH^.Hedgehog)^.Team) |
|
42 | 177 |
end; |
435 | 178 |
end |
42 | 179 |
end; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
180 |
|
4 | 181 |
const StepTicks: LongWord = 0; |
182 |
||
302 | 183 |
procedure HedgehogStep(Gear: PGear); |
371 | 184 |
var PrevdX: LongInt; |
302 | 185 |
begin |
542 | 186 |
if ((Gear^.State and (gstAttacking or gstMoving)) = 0) then |
4 | 187 |
begin |
408 | 188 |
if isCursorVisible then |
189 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
190 |
with Ammo^[CurSlot, CurAmmo] do |
|
191 |
begin |
|
542 | 192 |
if (Gear^.Message and gm_Left ) <> 0 then |
408 | 193 |
Pos:= (Pos + Ammoz[AmmoType].PosCount - 1) mod Ammoz[AmmoType].PosCount |
194 |
else |
|
542 | 195 |
if (Gear^.Message and gm_Right ) <> 0 then |
408 | 196 |
Pos:= (Pos + 1) mod Ammoz[AmmoType].PosCount |
197 |
else exit; |
|
423 | 198 |
StepTicks:= 200; |
408 | 199 |
exit |
200 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
201 |
|
351 | 202 |
if ((Gear^.Message and gm_LJump ) <> 0) then |
4 | 203 |
begin |
542 | 204 |
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
|
205 |
DeleteCI(Gear); |
68 | 206 |
if not TestCollisionYwithGear(Gear, -1) then |
498 | 207 |
if not TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _2 else |
208 |
if not TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _1; |
|
351 | 209 |
if not (TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) |
68 | 210 |
or TestCollisionYwithGear(Gear, -1)) then |
4 | 211 |
begin |
351 | 212 |
Gear^.dY:= -_0_15; |
498 | 213 |
Gear^.dX:= SignAs(_0_15, Gear^.dX); |
542 | 214 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
799 | 215 |
PlaySound(sndJump1, false); |
4 | 216 |
exit |
217 |
end; |
|
218 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
219 |
|
351 | 220 |
if ((Gear^.Message and gm_HJump ) <> 0) then |
4 | 221 |
begin |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
222 |
DeleteCI(Gear); |
542 | 223 |
Gear^.Message:= Gear^.Message and not gm_HJump; |
68 | 224 |
if not TestCollisionYwithGear(Gear, -1) then |
4 | 225 |
begin |
351 | 226 |
Gear^.dY:= -_0_2; |
227 |
SetLittle(Gear^.dX); |
|
542 | 228 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
799 | 229 |
PlaySound(sndJump3, false); |
4 | 230 |
exit |
231 |
end; |
|
232 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
233 |
|
351 | 234 |
PrevdX:= hwSign(Gear^.dX); |
235 |
if (Gear^.Message and gm_Left )<>0 then Gear^.dX:= -cLittle else |
|
236 |
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
|
237 |
|
74 | 238 |
StepTicks:= cHHStepTicks; |
610 | 239 |
if PrevdX <> hwSign(Gear^.dX) then |
240 |
begin |
|
241 |
FollowGear:= Gear; |
|
242 |
exit |
|
243 |
end; |
|
244 |
DeleteCI(Gear); // must be after exit!! (see previous line) |
|
517 | 245 |
|
351 | 246 |
PHedgehog(Gear^.Hedgehog)^.visStepPos:= (PHedgehog(Gear^.Hedgehog)^.visStepPos + 1) and 7; |
247 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
|
4 | 248 |
begin |
498 | 249 |
if not (TestCollisionXwithXYShift(Gear, _0, -6, hwSign(Gear^.dX)) |
250 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
251 |
if not (TestCollisionXwithXYShift(Gear, _0, -5, hwSign(Gear^.dX)) |
|
252 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
253 |
if not (TestCollisionXwithXYShift(Gear, _0, -4, hwSign(Gear^.dX)) |
|
254 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
255 |
if not (TestCollisionXwithXYShift(Gear, _0, -3, hwSign(Gear^.dX)) |
|
256 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
257 |
if not (TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) |
|
258 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
259 |
if not (TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) |
|
260 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
4 | 261 |
end; |
498 | 262 |
if not TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then Gear^.X:= Gear^.X + SignAs(_1, Gear^.dX); |
300 | 263 |
|
62 | 264 |
SetAllHHToActive; |
37 | 265 |
|
68 | 266 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 267 |
begin |
498 | 268 |
Gear^.Y:= Gear^.Y + _1; |
68 | 269 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 270 |
begin |
498 | 271 |
Gear^.Y:= Gear^.Y + _1; |
68 | 272 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 273 |
begin |
498 | 274 |
Gear^.Y:= Gear^.Y + _1; |
68 | 275 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 276 |
begin |
498 | 277 |
Gear^.Y:= Gear^.Y + _1; |
68 | 278 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 279 |
begin |
498 | 280 |
Gear^.Y:= Gear^.Y + _1; |
68 | 281 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 282 |
begin |
498 | 283 |
Gear^.Y:= Gear^.Y + _1; |
68 | 284 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 285 |
begin |
498 | 286 |
Gear^.Y:= Gear^.Y - _6; |
287 |
Gear^.dY:= _0; |
|
542 | 288 |
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
|
289 |
exit |
4 | 290 |
end; |
291 |
end |
|
292 |
end |
|
293 |
end |
|
294 |
end |
|
295 |
end |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
296 |
end; |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
297 |
AddGearCI(Gear) |
4 | 298 |
end |
299 |
end; |
|
300 |
||
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
301 |
procedure HedgehogChAngle(Gear: PGear); |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
302 |
begin |
542 | 303 |
if ((Gear^.State and gstMoving) = 0) then |
351 | 304 |
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
|
305 |
else else |
351 | 306 |
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
|
307 |
end; |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
308 |
|
302 | 309 |
procedure doStepHedgehog(Gear: PGear); forward; |
310 |
//////////////////////////////////////////////////////////////////////////////// |
|
538 | 311 |
procedure doStepHedgehogMoving(Gear: PGear); |
545 | 312 |
var isFalling: boolean; |
538 | 313 |
begin |
542 | 314 |
isFalling:= not TestCollisionYKick(Gear, 1); |
315 |
if isFalling then |
|
538 | 316 |
begin |
317 |
if (Gear^.dY.isNegative) and TestCollisionYKick(Gear, -1) then Gear^.dY:= _0; |
|
542 | 318 |
Gear^.State:= Gear^.State or gstMoving; |
538 | 319 |
Gear^.dY:= Gear^.dY + cGravity |
320 |
end else |
|
321 |
begin |
|
322 |
if ((hwAbs(Gear^.dX) + hwAbs(Gear^.dY)) < _0_55) |
|
323 |
and ((Gear^.State and gstHHJumping) <> 0) then SetLittle(Gear^.dX); |
|
324 |
||
540 | 325 |
if not Gear^.dY.isNegative then |
326 |
begin |
|
327 |
CheckHHDamage(Gear); |
|
790
a6f442173822
Make high jump behaviour like in worms (back somersault)
unc0rr
parents:
783
diff
changeset
|
328 |
|
a6f442173822
Make high jump behaviour like in worms (back somersault)
unc0rr
parents:
783
diff
changeset
|
329 |
if ((Gear^.State and gstHHHJump) <> 0) and |
a6f442173822
Make high jump behaviour like in worms (back somersault)
unc0rr
parents:
783
diff
changeset
|
330 |
(Gear^.dX.QWordValue < _0_02.QWordValue) then Gear^.dX.isNegative:= not Gear^.dX.isNegative; // landing after high jump |
a6f442173822
Make high jump behaviour like in worms (back somersault)
unc0rr
parents:
783
diff
changeset
|
331 |
|
542 | 332 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
540 | 333 |
Gear^.dY:= _0; |
334 |
end else Gear^.dY:= Gear^.dY + cGravity; |
|
538 | 335 |
|
336 |
if ((Gear^.State and gstMoving) <> 0) then Gear^.dX:= Gear^.dX * Gear^.Friction |
|
337 |
end; |
|
338 |
||
339 |
if (Gear^.State <> 0) then DeleteCI(Gear); |
|
783 | 340 |
|
538 | 341 |
if (Gear^.State and gstMoving) <> 0 then |
342 |
if TestCollisionXKick(Gear, hwSign(Gear^.dX)) then |
|
542 | 343 |
if not isFalling then |
538 | 344 |
if hwAbs(Gear^.dX) > _0_01 then |
345 |
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 |
|
346 |
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 |
|
347 |
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 |
|
348 |
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 |
|
349 |
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 |
|
350 |
if hwAbs(Gear^.dX) > _0_02 then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
351 |
else begin |
|
352 |
Gear^.State:= Gear^.State and not gstMoving; |
|
353 |
SetLittle(Gear^.dX) |
|
354 |
end |
|
355 |
else begin |
|
356 |
Gear^.State:= Gear^.State and not gstMoving; |
|
357 |
SetLittle(Gear^.dX) |
|
358 |
end |
|
359 |
else if hwAbs(Gear^.dX) > cLittle then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
360 |
else SetLittle(Gear^.dX); |
|
361 |
||
542 | 362 |
if (not isFalling) and |
538 | 363 |
(hwAbs(Gear^.dX) + hwAbs(Gear^.dY) < _0_03) then |
364 |
begin |
|
365 |
Gear^.State:= Gear^.State and not gstMoving; |
|
366 |
SetLittle(Gear^.dX); |
|
367 |
Gear^.dY:= _0 |
|
368 |
end else Gear^.State:= Gear^.State or gstMoving; |
|
369 |
||
370 |
if (Gear^.State and gstMoving) <> 0 then |
|
371 |
begin |
|
372 |
Gear^.State:= Gear^.State and not gstAnimation; |
|
373 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
374 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
375 |
if (not Gear^.dY.isNegative) and |
|
376 |
(not TestCollisionYKick(Gear, 1)) and |
|
377 |
TestCollisionYwithXYShift(Gear, 0, 1, 1) then |
|
378 |
begin |
|
379 |
CheckHHDamage(Gear); |
|
380 |
Gear^.dY:= _0; |
|
381 |
Gear^.Y:= Gear^.Y + _1 |
|
382 |
end; |
|
383 |
CheckGearDrowning(Gear) |
|
384 |
end |
|
385 |
end; |
|
386 |
||
302 | 387 |
procedure doStepHedgehogDriven(Gear: PGear); |
388 |
var t: PGear; |
|
389 |
begin |
|
558
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
390 |
if not isInMultiShoot then |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
391 |
AllInactive:= false |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
392 |
else |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
393 |
Gear^.Message:= 0; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
394 |
|
351 | 395 |
if (TurnTimeLeft = 0) or (Gear^.Damage > 0) then |
302 | 396 |
begin |
397 |
TurnTimeLeft:= 0; |
|
351 | 398 |
Gear^.State:= Gear^.State and not gstHHDriven; |
399 |
if Gear^.Damage > 0 then |
|
424 | 400 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
302 | 401 |
exit |
402 |
end; |
|
542 | 403 |
|
404 |
if ((Gear^.State and gstMoving) <> 0) |
|
528 | 405 |
or (StepTicks = cHHStepTicks) |
302 | 406 |
or (CurAmmoGear <> nil) then // we're moving |
407 |
begin |
|
408 |
// check for case with ammo |
|
409 |
t:= CheckGearNear(Gear, gtCase, 36, 36); |
|
410 |
if t <> nil then |
|
411 |
PickUp(Gear, t) |
|
412 |
end; |
|
413 |
||
414 |
if CurAmmoGear <> nil then |
|
415 |
begin |
|
351 | 416 |
CurAmmoGear^.Message:= Gear^.Message; |
302 | 417 |
exit |
418 |
end; |
|
419 |
||
783 | 420 |
if ((Gear^.Message and gm_Slot) <> 0) then ChangeAmmo(Gear); |
421 |
||
422 |
if ((Gear^.Message and gm_Weapon) <> 0) then HHSetWeapon(Gear); |
|
423 |
||
351 | 424 |
if ((Gear^.Message and gm_Attack) <> 0) or |
542 | 425 |
((Gear^.State and gstAttacking) <> 0) then Attack(Gear); |
302 | 426 |
|
542 | 427 |
if (Gear^.State and gstMoving) <> 0 then |
302 | 428 |
begin |
424 | 429 |
if ((Gear^.Message and gm_HJump) <> 0) and |
430 |
((Gear^.State and gstHHJumping) <> 0) and |
|
431 |
((Gear^.State and gstHHHJump) = 0) then |
|
432 |
if (not (hwAbs(Gear^.dX) > cLittle)) and (Gear^.dY < -_0_02) then |
|
302 | 433 |
begin |
542 | 434 |
Gear^.State:= Gear^.State or gstHHHJump or gstMoving; |
351 | 435 |
Gear^.dY:= -_0_25; |
799 | 436 |
Gear^.dX:= -SignAs(_0_02, Gear^.dX); |
437 |
PlaySound(sndJump2, false) |
|
302 | 438 |
end; |
351 | 439 |
Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump); |
538 | 440 |
|
441 |
if ((Gear^.State and gstHHJumping) <> 0) and |
|
442 |
TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then SetLittle(Gear^.dX); |
|
443 |
||
444 |
doStepHedgehogMoving(Gear); |
|
542 | 445 |
|
446 |
if (Gear^.State and gstMoving) = 0 then |
|
302 | 447 |
begin |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
448 |
AddGearCI(Gear); |
542 | 449 |
StepTicks:= 350 |
302 | 450 |
end; |
451 |
exit |
|
538 | 452 |
end; |
302 | 453 |
|
558
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
454 |
if not isInMultiShoot then |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
455 |
begin |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
456 |
HedgehogChAngle(Gear); |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
457 |
if StepTicks > 0 then dec(StepTicks); |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
458 |
if (StepTicks = 0) then HedgehogStep(Gear) |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
459 |
end |
302 | 460 |
end; |
461 |
||
4 | 462 |
//////////////////////////////////////////////////////////////////////////////// |
463 |
procedure doStepHedgehogFree(Gear: PGear); |
|
511 | 464 |
var prevState: Longword; |
4 | 465 |
begin |
511 | 466 |
prevState:= Gear^.State; |
4 | 467 |
|
538 | 468 |
doStepHedgehogMoving(Gear); |
4 | 469 |
|
538 | 470 |
if (Gear^.State and gstMoving) = 0 then |
351 | 471 |
if Gear^.Health = 0 then |
4 | 472 |
begin |
473 |
if AllInactive then |
|
474 |
begin |
|
522 | 475 |
Gear^.State:= Gear^.State or gstNoDamage; |
351 | 476 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound); |
498 | 477 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtGrave, 0, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
4 | 478 |
DeleteGear(Gear); |
479 |
SetAllToActive |
|
480 |
end; |
|
351 | 481 |
AllInactive:= false; |
4 | 482 |
exit |
483 |
end; |
|
484 |
||
485 |
AllInactive:= false; |
|
486 |
||
538 | 487 |
if ((Gear^.State and gstMoving) = 0) then |
511 | 488 |
if ((Gear^.State and gstAnimation) = 0) and |
489 |
(prevState <> Gear^.State) then |
|
4 | 490 |
begin |
511 | 491 |
Gear^.State:= gstAnimation; |
492 |
Gear^.Timer:= 150 |
|
493 |
end else |
|
494 |
begin |
|
495 |
if Gear^.Timer = 0 then |
|
496 |
begin |
|
497 |
Gear^.State:= 0; |
|
498 |
Gear^.Active:= false; |
|
499 |
AddGearCI(Gear); |
|
500 |
exit |
|
501 |
end else dec(Gear^.Timer) |
|
4 | 502 |
end |
503 |
end; |
|
504 |
||
505 |
//////////////////////////////////////////////////////////////////////////////// |
|
506 |
procedure doStepHedgehog(Gear: PGear); |
|
507 |
begin |
|
351 | 508 |
if (Gear^.Message and gm_Destroy) <> 0 then |
4 | 509 |
begin |
510 |
DeleteGear(Gear); |
|
511 |
exit |
|
512 |
end; |
|
351 | 513 |
if (Gear^.State and gstHHDriven) = 0 then doStepHedgehogFree(Gear) |
511 | 514 |
else doStepHedgehogDriven(Gear) |
4 | 515 |
end; |