hedgewars/HHHandlers.inc
author unc0rr
Thu, 07 Aug 2008 15:21:11 +0000
changeset 1167 2aa93ec4718b
parent 1112 11590c68b68e
child 1259 0c660c3d98a4
permissions -rw-r--r--
Set bg color for QPushButton
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     1
(*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 1035
diff changeset
     2
 * Hedgewars, a free turn based strategy game
883
07a568ba44e0 Update copyright info in source files headers
unc0rr
parents: 876
diff changeset
     3
 * Copyright (c) 2004-2008 Andrey Korotaev <unC0Rr@gmail.com>
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     4
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 149
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 149
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 149
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     8
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 149
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 149
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 149
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 149
diff changeset
    12
 * GNU General Public License for more details.
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    13
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 149
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 149
diff changeset
    15
 * along with this program; if not, write to the Free Software
57c2ef19f719 Relicense to GPL
unc0rr
parents: 149
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    17
 *)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    18
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    19
////////////////////////////////////////////////////////////////////////////////
783
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    20
procedure ChangeAmmo(Gear: PGear);
941
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    21
var slot, i: Longword;
783
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    22
begin
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    23
slot:= Gear^.MsgParam;
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    24
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    25
with PHedgehog(Gear^.Hedgehog)^ do
927
2c1675344a6f Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents: 926
diff changeset
    26
	begin
928
b9064b48b001 Some preparation work for attacking from rope, parachute and etc.
unc0rr
parents: 927
diff changeset
    27
	if ((Gear^.State and (gstAttacking or gstAttacked)) <> 0)
b9064b48b001 Some preparation work for attacking from rope, parachute and etc.
unc0rr
parents: 927
diff changeset
    28
		or (AttacksNum > 0)
927
2c1675344a6f Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents: 926
diff changeset
    29
		or ((Gear^.State and gstHHDriven) = 0) then exit;
783
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    30
927
2c1675344a6f Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents: 926
diff changeset
    31
	Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump or gm_Slot);
783
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    32
927
2c1675344a6f Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents: 926
diff changeset
    33
	if CurSlot = slot then
2c1675344a6f Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents: 926
diff changeset
    34
		begin
941
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    35
		i:= 0;
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    36
		repeat
927
2c1675344a6f Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents: 926
diff changeset
    37
		inc(CurAmmo);
941
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    38
		if (CurAmmo > cMaxSlotAmmoIndex) then
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    39
			begin
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    40
			CurAmmo:= 0;
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    41
			inc(i);
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    42
			TryDo(i < 2, 'Engine bug: no ammo in current slot', true)
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    43
			end;
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    44
		until (Ammo^[slot, CurAmmo].Count > 0) and (Team^.Clan^.TurnNumber > Ammoz[Ammo^[slot, CurAmmo].AmmoType].SkipTurns)
927
2c1675344a6f Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents: 926
diff changeset
    45
		end else
2c1675344a6f Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents: 926
diff changeset
    46
		begin
941
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    47
		i:= 0;
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    48
		// check whether there's ammo in slot
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    49
		while (i <= cMaxSlotAmmoIndex)
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    50
		  and ((Ammo^[slot, i].Count = 0)
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    51
		       or (Team^.Clan^.TurnNumber <= Ammoz[Ammo^[slot, i].AmmoType].SkipTurns)) do inc(i);
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    52
		
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    53
		if i <= cMaxSlotAmmoIndex then
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    54
			begin
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    55
			CurSlot:= slot;
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    56
			CurAmmo:= i
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    57
			end
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    58
		end
927
2c1675344a6f Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents: 926
diff changeset
    59
	end;
2c1675344a6f Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents: 926
diff changeset
    60
783
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    61
ApplyAmmoChanges(PHedgehog(Gear^.Hedgehog)^)
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    62
end;
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    63
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    64
procedure HHSetWeapon(Gear: PGear);
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    65
var t: LongInt;
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    66
    weap: TAmmoType;
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    67
begin
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    68
weap:= TAmmoType(Gear^.MsgParam);
941
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    69
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    70
if PHedgehog(Gear^.Hedgehog)^.Team^.Clan^.TurnNumber <= Ammoz[weap].SkipTurns then exit; // weapon isn't activated yet
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 931
diff changeset
    71
783
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    72
Gear^.MsgParam:= Ammoz[weap].Slot;
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    73
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    74
t:= cMaxSlotAmmoIndex;
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    75
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    76
Gear^.Message:= Gear^.Message and not gm_Weapon;
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    77
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    78
with PHedgehog(Gear^.Hedgehog)^ do
926
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    79
	while (Ammo^[CurSlot, CurAmmo].AmmoType <> weap) and (t >= 0) do
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    80
		begin
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    81
		ChangeAmmo(Gear);
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    82
		dec(t)
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    83
		end
783
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    84
end;
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
    85
926
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    86
procedure HHSetTimer(Gear: PGear);
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    87
begin
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    88
Gear^.Message:= Gear^.Message and not gm_Timer;
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    89
with PHedgehog(Gear^.Hedgehog)^ do
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    90
	if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Timerable) <> 0 then
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    91
		begin
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    92
		Ammo^[CurSlot, CurAmmo].Timer:= 1000 * Gear^.MsgParam;
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    93
		with CurrentTeam^ do
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    94
			ApplyAmmoChanges(Hedgehogs[CurrHedgehog]);
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    95
		end;
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    96
end;
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    97
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
    98
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    99
procedure Attack(Gear: PGear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   100
var xx, yy: hwFloat;
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   101
begin
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   102
with Gear^,
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   103
     PHedgehog(Gear^.Hedgehog)^ do
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   104
     begin
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
   105
     if ((State and gstHHDriven) <> 0)and
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   106
        ((State and (gstAttacked or gstHHChooseTarget)) = 0)and
836
150c7c87e66c - Small formatting changes
unc0rr
parents: 835
diff changeset
   107
        (((State and gstMoving) = 0) or ((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_AttackInMove) <> 0))and
150c7c87e66c - Small formatting changes
unc0rr
parents: 835
diff changeset
   108
        ((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
   109
        begin
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
   110
        State:= State or gstAttacking;
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
   111
        if Power = cMaxPower then Message:= Message and not gm_Attack
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   112
        else if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Power) = 0 then Message:= Message and not gm_Attack
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
   113
        else begin
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
   114
             if Power = 0 then
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
   115
                begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   116
                AttackBar:= CurrentTeam^.AttackBar;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   117
                PlaySound(sndThrowPowerUp, false)
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
   118
                end;
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
   119
             inc(Power)
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
   120
             end;
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
   121
        if ((Message and gm_Attack) <> 0) then exit;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   122
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   123
        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
   124
           begin
282
b1e3387389b6 - Pickhammer sound
unc0rr
parents: 263
diff changeset
   125
           StopSound(sndThrowPowerUp);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   126
           PlaySound(sndThrowRelease, false);
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   127
           end;
519
981df6f6e2a9 - Fix desert eagle
unc0rr
parents: 518
diff changeset
   128
        xx:= SignAs(AngleSin(Angle), dX);
900
5224ac938442 Fix attack direction when perform somersault
unc0rr
parents: 883
diff changeset
   129
        yy:= -AngleCos(Angle);
5224ac938442 Fix attack direction when perform somersault
unc0rr
parents: 883
diff changeset
   130
5224ac938442 Fix attack direction when perform somersault
unc0rr
parents: 883
diff changeset
   131
        if ((Gear^.State and gstHHHJump) <> 0) then xx:= - xx;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   132
             case Ammo^[CurSlot, CurAmmo].AmmoType of
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   133
                      amGrenade: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtAmmo_Bomb,    0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo^[CurSlot, CurAmmo].Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   134
                  amClusterBomb: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtClusterBomb,  0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo^[CurSlot, CurAmmo].Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   135
                      amBazooka: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtAmmo_Grenade, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   136
                          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
   137
                      amShotgun: begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   138
                                 PlaySound(sndShotgunReload, false);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   139
                                 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
   140
                                 end;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   141
                   amPickHammer: CurAmmoGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y) + cHHRadius, gtPickHammer, 0, _0, _0, 0);
866
ac6f6c95c23f - Some more sounds
unc0rr
parents: 865
diff changeset
   142
                         amSkip: ParseCommand('/skip', true);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   143
                         amRope: CurAmmoGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtRope, 0, xx, yy, 0);
800
e95f16b7ec80 - Your hedgehogs says you: "Yes, sir"
unc0rr
parents: 799
diff changeset
   144
                         amMine: begin
e95f16b7ec80 - Your hedgehogs says you: "Yes, sir"
unc0rr
parents: 799
diff changeset
   145
                                 AddGear(hwRound(X) + hwSign(dX) * 7, hwRound(Y), gtMine, 0, SignAs(_0_02, dX), _0, 3000);
e95f16b7ec80 - Your hedgehogs says you: "Yes, sir"
unc0rr
parents: 799
diff changeset
   146
                                 PlaySound(sndLaugh, false)
e95f16b7ec80 - Your hedgehogs says you: "Yes, sir"
unc0rr
parents: 799
diff changeset
   147
                                 end;
876
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 868
diff changeset
   148
                       amDEagle: CurAmmoGear:= AddGear(hwRound(X + xx * cHHRadius), hwRound(Y + yy * cHHRadius), gtDEagleShot, 0, xx * _0_5, yy * _0_5, 0);
1112
11590c68b68e Hedgehog laughs when drops dynamite or cake
unc0rr
parents: 1108
diff changeset
   149
                     amDynamite: begin
11590c68b68e Hedgehog laughs when drops dynamite or cake
unc0rr
parents: 1108
diff changeset
   150
                                 AddGear(hwRound(X) + hwSign(dX) * 7, hwRound(Y), gtDynamite, 0, SignAs(_0_03, dX), _0, 5000);
11590c68b68e Hedgehog laughs when drops dynamite or cake
unc0rr
parents: 1108
diff changeset
   151
                                 PlaySound(sndLaugh, false)
11590c68b68e Hedgehog laughs when drops dynamite or cake
unc0rr
parents: 1108
diff changeset
   152
                                 end;
979
edb8f208c1d9 Fix firepunch direction when attacking from high jump
unc0rr
parents: 958
diff changeset
   153
                    amFirePunch: CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtFirePunch, 0, xx, _0, 0);
925
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
   154
                         amWhip: CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtWhip, 0, SignAs(_1, dX), - _0_8, 0);
854
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 839
diff changeset
   155
                  amBaseballBat: CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtShover, 0, xx * _0_5, yy * _0_5, 0);
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   156
                    amParachute: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtParachute, 0, _0, _0, 0);
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   157
                    amAirAttack: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 0, _0, _0, 0);
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   158
                   amMineStrike: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 1, _0, _0, 0);
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   159
                    amBlowTorch: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtBlowTorch, 0, SignAs(_0_5, dX), _0, 0);
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   160
                       amGirder: CurAmmoGear:= AddGear(0, 0, gtGirder, Ammo^[CurSlot, CurAmmo].Pos, _0, _0, 0);
520
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
   161
                     amTeleport: CurAmmoGear:= AddGear(0, 0, gtTeleport, 0, _0, _0, 0);
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 528
diff changeset
   162
                       amSwitch: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtSwitcher, 0, _0, _0, 0);
924
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 900
diff changeset
   163
                       amMortar: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtMortar,  0, xx*cMaxPower/cPowerDivisor, yy*cMaxPower/cPowerDivisor, 0);
984
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 979
diff changeset
   164
                       amKamikaze: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtKamikaze, 0, xx * _0_5, yy * _0_5, 0);
1112
11590c68b68e Hedgehog laughs when drops dynamite or cake
unc0rr
parents: 1108
diff changeset
   165
                         amCake: begin
11590c68b68e Hedgehog laughs when drops dynamite or cake
unc0rr
parents: 1108
diff changeset
   166
                                 CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 3, hwRound(Y), gtCake, 0, xx, _0, 0);
11590c68b68e Hedgehog laughs when drops dynamite or cake
unc0rr
parents: 1108
diff changeset
   167
                                 PlaySound(sndLaugh, false)
11590c68b68e Hedgehog laughs when drops dynamite or cake
unc0rr
parents: 1108
diff changeset
   168
                                 end;
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   169
                  end;
829
1209eb768acf Use 'first blood' sound
unc0rr
parents: 800
diff changeset
   170
1209eb768acf Use 'first blood' sound
unc0rr
parents: 800
diff changeset
   171
        uStats.AmmoUsed(Ammo^[CurSlot, CurAmmo].AmmoType);
1209eb768acf Use 'first blood' sound
unc0rr
parents: 800
diff changeset
   172
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   173
        Power:= 0;
930
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   174
        if (CurAmmoGear <> nil)
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   175
           and (((Ammo^[CurSlot, CurAmmo].Propz) and ammoprop_AltUse) = 0){check for dropping ammo from rope} then
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   176
           begin
930
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   177
           CurAmmoGear^.Ammo:= @(Ammo^[CurSlot, CurAmmo]);
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   178
           Message:= Message or gm_Attack;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   179
           CurAmmoGear^.Message:= Message
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   180
           end else begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   181
           if not CurrentTeam^.ExtDriven and
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   182
             ((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Power) <> 0) then SendIPC('a');
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   183
           AfterAttack
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   184
           end
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
   185
        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
   186
     end
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   187
end;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   188
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   189
procedure AfterAttack;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   190
begin
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 558
diff changeset
   191
with CurrentHedgehog^.Gear^,
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 558
diff changeset
   192
     CurrentHedgehog^ do
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   193
     begin
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   194
        Inc(AttacksNum);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   195
        State:= State and not gstAttacking;
614
0e04504bc140 - Fix some warnings
unc0rr
parents: 610
diff changeset
   196
        if (Ammo^[CurSlot, CurAmmo].NumPerTurn >= AttacksNum) or
0e04504bc140 - Fix some warnings
unc0rr
parents: 610
diff changeset
   197
           ((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
   198
           else begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   199
           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
   200
           State:= State or gstAttacked;
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 558
diff changeset
   201
           OnUsedAmmo(CurrentHedgehog^)
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   202
           end;
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
   203
     AttackBar:= 0;
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   204
     end
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   205
end;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   206
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   207
////////////////////////////////////////////////////////////////////////////////
863
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   208
procedure doStepHedgehogDead(Gear: PGear);
868
4884bce5e5eb Hedgehog death animation
unc0rr
parents: 866
diff changeset
   209
const frametime = 200;
4884bce5e5eb Hedgehog death animation
unc0rr
parents: 866
diff changeset
   210
      timertime = frametime * 6;
863
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   211
begin
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   212
if Gear^.Timer > 1 then
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   213
	begin
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   214
	AllInactive:= false;
868
4884bce5e5eb Hedgehog death animation
unc0rr
parents: 866
diff changeset
   215
	dec(Gear^.Timer);
4884bce5e5eb Hedgehog death animation
unc0rr
parents: 866
diff changeset
   216
	if (Gear^.Timer mod frametime) = 0 then inc(Gear^.Pos)
863
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   217
	end else
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   218
if Gear^.Timer = 1 then
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   219
	begin
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   220
	Gear^.State:= Gear^.State or gstNoDamage;
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   221
	doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound);
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   222
	AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtGrave, 0, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog;
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   223
	DeleteGear(Gear);
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   224
	SetAllToActive
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   225
	end else // Gear^.Timer = 0
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   226
	begin
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   227
	AllInactive:= false;
868
4884bce5e5eb Hedgehog death animation
unc0rr
parents: 866
diff changeset
   228
	Gear^.Z:= cCurrHHZ;
4884bce5e5eb Hedgehog death animation
unc0rr
parents: 866
diff changeset
   229
	RemoveGearFromList(Gear);
4884bce5e5eb Hedgehog death animation
unc0rr
parents: 866
diff changeset
   230
	InsertGearToList(Gear);
863
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   231
	PlaySound(sndByeBye, false);
868
4884bce5e5eb Hedgehog death animation
unc0rr
parents: 866
diff changeset
   232
	Gear^.Pos:= 0;
4884bce5e5eb Hedgehog death animation
unc0rr
parents: 866
diff changeset
   233
	Gear^.Timer:= timertime
863
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   234
	end
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   235
end;
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   236
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   237
////////////////////////////////////////////////////////////////////////////////
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   238
procedure PickUp(HH, Gear: PGear);
295
8834f3cb620e - Implement ammo cases
unc0rr
parents: 285
diff changeset
   239
var s: shortstring;
8834f3cb620e - Implement ammo cases
unc0rr
parents: 285
diff changeset
   240
    a: TAmmoType;
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   241
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   242
Gear^.Message:= gm_Destroy;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   243
case Gear^.Pos of
295
8834f3cb620e - Implement ammo cases
unc0rr
parents: 285
diff changeset
   244
       posCaseAmmo: begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   245
                    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
   246
                    AddAmmo(PHedgehog(HH^.Hedgehog)^, a);
1072
6bc4389344c7 Show picked up ammo in demo playing mode
unc0rr
parents: 1066
diff changeset
   247
                    if (not (PHedgehog(HH^.Hedgehog)^.Team^.ExtDriven
6bc4389344c7 Show picked up ammo in demo playing mode
unc0rr
parents: 1066
diff changeset
   248
                      or (PHedgehog(HH^.Hedgehog)^.BotLevel > 0)))
6bc4389344c7 Show picked up ammo in demo playing mode
unc0rr
parents: 1066
diff changeset
   249
                    or (GameType = gmtDemo)  then
836
150c7c87e66c - Small formatting changes
unc0rr
parents: 835
diff changeset
   250
                       begin
150c7c87e66c - Small formatting changes
unc0rr
parents: 835
diff changeset
   251
                       s:= trammo[Ammoz[a].NameId] + '(+' + IntToStr(Ammoz[a].NumberInCase) + ')';
150c7c87e66c - Small formatting changes
unc0rr
parents: 835
diff changeset
   252
                       AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.Color, capgrpAmmoinfo);
150c7c87e66c - Small formatting changes
unc0rr
parents: 835
diff changeset
   253
                       end
295
8834f3cb620e - Implement ammo cases
unc0rr
parents: 285
diff changeset
   254
                    end;
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   255
     posCaseHealth: begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   256
                    inc(HH^.Health, Gear^.Health);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   257
                    str(Gear^.Health, s);
295
8834f3cb620e - Implement ammo cases
unc0rr
parents: 285
diff changeset
   258
                    s:= '+' + s;
549
4278a80140a8 - Introduce clans (teams with same color)
unc0rr
parents: 545
diff changeset
   259
                    AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.Color, capgrpAmmoinfo);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   260
                    RenderHealth(PHedgehog(HH^.Hedgehog)^);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   261
                    RecountTeamHealth(PHedgehog(HH^.Hedgehog)^.Team)
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   262
                    end;
435
25820c10c849 Better AI behavior
unc0rr
parents: 434
diff changeset
   263
     end
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   264
end;
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   265
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   266
const StepTicks: LongWord = 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   267
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   268
procedure HedgehogStep(Gear: PGear);
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 369
diff changeset
   269
var PrevdX: LongInt;
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   270
begin
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   271
if ((Gear^.State and (gstAttacking or gstMoving)) = 0) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   272
   begin
408
6c3da4907d00 Airplane can fly from right to left
unc0rr
parents: 394
diff changeset
   273
   if isCursorVisible then
6c3da4907d00 Airplane can fly from right to left
unc0rr
parents: 394
diff changeset
   274
      with PHedgehog(Gear^.Hedgehog)^ do
6c3da4907d00 Airplane can fly from right to left
unc0rr
parents: 394
diff changeset
   275
        with Ammo^[CurSlot, CurAmmo] do
6c3da4907d00 Airplane can fly from right to left
unc0rr
parents: 394
diff changeset
   276
          begin
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   277
          if (Gear^.Message and gm_Left  ) <> 0 then
408
6c3da4907d00 Airplane can fly from right to left
unc0rr
parents: 394
diff changeset
   278
             Pos:= (Pos + Ammoz[AmmoType].PosCount - 1) mod Ammoz[AmmoType].PosCount
6c3da4907d00 Airplane can fly from right to left
unc0rr
parents: 394
diff changeset
   279
          else
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   280
          if (Gear^.Message and gm_Right ) <> 0 then
408
6c3da4907d00 Airplane can fly from right to left
unc0rr
parents: 394
diff changeset
   281
             Pos:= (Pos + 1) mod Ammoz[AmmoType].PosCount
6c3da4907d00 Airplane can fly from right to left
unc0rr
parents: 394
diff changeset
   282
          else exit;
423
5f4559ce7062 Better construction tool
unc0rr
parents: 409
diff changeset
   283
          StepTicks:= 200;
408
6c3da4907d00 Airplane can fly from right to left
unc0rr
parents: 394
diff changeset
   284
          exit
6c3da4907d00 Airplane can fly from right to left
unc0rr
parents: 394
diff changeset
   285
          end;
505
fcba7d7aea0d Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents: 498
diff changeset
   286
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   287
	if ((Gear^.Message and gm_Animate) <> 0) then
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   288
		begin
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   289
		Gear^.Message:= 0;
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   290
		Gear^.State:= Gear^.State or gstAnimation;
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   291
		Gear^.Tag:= Gear^.MsgParam;
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   292
		Gear^.Timer:= 0;
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   293
		Gear^.Pos:= 0
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   294
		end;
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   295
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   296
   if ((Gear^.Message and gm_LJump ) <> 0) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   297
      begin
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   298
      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
   299
      DeleteCI(Gear);
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   300
      if not TestCollisionYwithGear(Gear, -1) then
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   301
         if not TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _2 else
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   302
         if not TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _1;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   303
      if not (TestCollisionXwithGear(Gear, hwSign(Gear^.dX))
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   304
         or   TestCollisionYwithGear(Gear, -1)) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   305
         begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   306
         Gear^.dY:= -_0_15;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   307
         Gear^.dX:= SignAs(_0_15, Gear^.dX);
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   308
         Gear^.State:= Gear^.State or gstMoving or gstHHJumping;
799
71ba310da909 - Commit voice sounds by Stephen Alexander
unc0rr
parents: 790
diff changeset
   309
         PlaySound(sndJump1, false);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   310
         exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   311
         end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   312
      end;
505
fcba7d7aea0d Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents: 498
diff changeset
   313
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   314
   if ((Gear^.Message and gm_HJump ) <> 0) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   315
      begin
505
fcba7d7aea0d Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents: 498
diff changeset
   316
      DeleteCI(Gear);
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   317
      Gear^.Message:= Gear^.Message and not gm_HJump;
855
8842c71d16bf - Fix too long delay between shotgun and deagle shots
unc0rr
parents: 854
diff changeset
   318
8842c71d16bf - Fix too long delay between shotgun and deagle shots
unc0rr
parents: 854
diff changeset
   319
      Gear^.dY:= -_0_2;
8842c71d16bf - Fix too long delay between shotgun and deagle shots
unc0rr
parents: 854
diff changeset
   320
      SetLittle(Gear^.dX);
8842c71d16bf - Fix too long delay between shotgun and deagle shots
unc0rr
parents: 854
diff changeset
   321
      Gear^.State:= Gear^.State or gstMoving or gstHHJumping;
8842c71d16bf - Fix too long delay between shotgun and deagle shots
unc0rr
parents: 854
diff changeset
   322
      PlaySound(sndJump3, false);
8842c71d16bf - Fix too long delay between shotgun and deagle shots
unc0rr
parents: 854
diff changeset
   323
      exit
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   324
      end;
505
fcba7d7aea0d Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents: 498
diff changeset
   325
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   326
   PrevdX:= hwSign(Gear^.dX);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   327
   if (Gear^.Message and gm_Left  )<>0 then Gear^.dX:= -cLittle else
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   328
   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
   329
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 73
diff changeset
   330
   StepTicks:= cHHStepTicks;
610
9b5a6200f667 - Training format change
unc0rr
parents: 602
diff changeset
   331
   if PrevdX <> hwSign(Gear^.dX) then
9b5a6200f667 - Training format change
unc0rr
parents: 602
diff changeset
   332
      begin
9b5a6200f667 - Training format change
unc0rr
parents: 602
diff changeset
   333
      FollowGear:= Gear;
9b5a6200f667 - Training format change
unc0rr
parents: 602
diff changeset
   334
      exit
9b5a6200f667 - Training format change
unc0rr
parents: 602
diff changeset
   335
      end;
9b5a6200f667 - Training format change
unc0rr
parents: 602
diff changeset
   336
   DeleteCI(Gear); // must be after exit!! (see previous line)
838
1faae19f2116 Remove tailing spaces in some places
unc0rr
parents: 836
diff changeset
   337
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   338
   PHedgehog(Gear^.Hedgehog)^.visStepPos:= (PHedgehog(Gear^.Hedgehog)^.visStepPos + 1) and 7;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   339
   if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   340
      begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   341
      if not (TestCollisionXwithXYShift(Gear, _0, -6, hwSign(Gear^.dX))
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   342
         or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1;
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   343
      if not (TestCollisionXwithXYShift(Gear, _0, -5, hwSign(Gear^.dX))
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   344
         or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1;
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   345
      if not (TestCollisionXwithXYShift(Gear, _0, -4, hwSign(Gear^.dX))
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   346
         or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1;
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   347
      if not (TestCollisionXwithXYShift(Gear, _0, -3, hwSign(Gear^.dX))
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   348
         or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1;
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   349
      if not (TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX))
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   350
         or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1;
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   351
      if not (TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX))
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   352
         or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   353
      end;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   354
   if not TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then Gear^.X:= Gear^.X + SignAs(_1, Gear^.dX);
300
be94799f33d2 Simplify hedgehogs physics code, make it better
unc0rr
parents: 295
diff changeset
   355
62
c3eda0c68cd6 No more hedgehogs hung in air
unc0rr
parents: 56
diff changeset
   356
   SetAllHHToActive;
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   357
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   358
   if not TestCollisionYwithGear(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   359
   begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   360
   Gear^.Y:= Gear^.Y + _1;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   361
   if not TestCollisionYwithGear(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   362
   begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   363
   Gear^.Y:= Gear^.Y + _1;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   364
   if not TestCollisionYwithGear(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   365
   begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   366
   Gear^.Y:= Gear^.Y + _1;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   367
   if not TestCollisionYwithGear(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   368
   begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   369
   Gear^.Y:= Gear^.Y + _1;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   370
   if not TestCollisionYwithGear(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   371
   begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   372
   Gear^.Y:= Gear^.Y + _1;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   373
   if not TestCollisionYwithGear(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   374
   begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   375
   Gear^.Y:= Gear^.Y + _1;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   376
   if not TestCollisionYwithGear(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   377
      begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   378
      Gear^.Y:= Gear^.Y - _6;
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 435
diff changeset
   379
      Gear^.dY:= _0;
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   380
      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
   381
      exit
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   382
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   383
   end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   384
   end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   385
   end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   386
   end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   387
   end
505
fcba7d7aea0d Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents: 498
diff changeset
   388
   end;
fcba7d7aea0d Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents: 498
diff changeset
   389
   AddGearCI(Gear)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   390
   end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   391
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   392
303
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   393
procedure HedgehogChAngle(Gear: PGear);
958
92bb9fa046f9 Aim at high speed when performing rope swinging
unc0rr
parents: 952
diff changeset
   394
var da: LongWord;
303
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   395
begin
958
92bb9fa046f9 Aim at high speed when performing rope swinging
unc0rr
parents: 952
diff changeset
   396
with PHedgehog(Gear^.Hedgehog)^ do
92bb9fa046f9 Aim at high speed when performing rope swinging
unc0rr
parents: 952
diff changeset
   397
	if (Ammo^[CurSlot, CurAmmo].AmmoType = amRope)
92bb9fa046f9 Aim at high speed when performing rope swinging
unc0rr
parents: 952
diff changeset
   398
	and ((Gear^.State and (gstMoving or gstHHJumping)) = gstMoving) then da:= 2 else da:= 1;
92bb9fa046f9 Aim at high speed when performing rope swinging
unc0rr
parents: 952
diff changeset
   399
92bb9fa046f9 Aim at high speed when performing rope swinging
unc0rr
parents: 952
diff changeset
   400
if ((Gear^.Message and gm_Up) <> 0) and (Gear^.Angle - da >= CurMinAngle) then dec(Gear^.Angle, da)
952
9dd48265e0b9 Allow aiming while moving
unc0rr
parents: 941
diff changeset
   401
else
958
92bb9fa046f9 Aim at high speed when performing rope swinging
unc0rr
parents: 952
diff changeset
   402
if ((Gear^.Message and gm_Down) <> 0) and (Gear^.Angle + da <= CurMaxAngle) then inc(Gear^.Angle, da);
303
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   403
end;
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   404
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   405
procedure doStepHedgehog(Gear: PGear); forward;
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   406
////////////////////////////////////////////////////////////////////////////////
538
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   407
procedure doStepHedgehogMoving(Gear: PGear);
545
f527450337c1 Fix some warnings
unc0rr
parents: 543
diff changeset
   408
var isFalling: boolean;
538
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   409
begin
855
8842c71d16bf - Fix too long delay between shotgun and deagle shots
unc0rr
parents: 854
diff changeset
   410
isFalling:= (Gear^.dY.isNegative) or not TestCollisionYKick(Gear, 1);
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   411
if isFalling then
538
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   412
   begin
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   413
   if (Gear^.dY.isNegative) and TestCollisionYKick(Gear, -1) then Gear^.dY:= _0;
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   414
   Gear^.State:= Gear^.State or gstMoving;
538
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   415
   Gear^.dY:= Gear^.dY + cGravity
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   416
   end else
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   417
   begin
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   418
   if ((hwAbs(Gear^.dX) + hwAbs(Gear^.dY)) < _0_55)
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   419
      and ((Gear^.State and gstHHJumping) <> 0) then SetLittle(Gear^.dX);
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   420
540
b06c5aace2fa - Many fixes related to hh switcher
unc0rr
parents: 538
diff changeset
   421
   if not Gear^.dY.isNegative then
b06c5aace2fa - Many fixes related to hh switcher
unc0rr
parents: 538
diff changeset
   422
      begin
b06c5aace2fa - Many fixes related to hh switcher
unc0rr
parents: 538
diff changeset
   423
      CheckHHDamage(Gear);
790
a6f442173822 Make high jump behaviour like in worms (back somersault)
unc0rr
parents: 783
diff changeset
   424
a6f442173822 Make high jump behaviour like in worms (back somersault)
unc0rr
parents: 783
diff changeset
   425
      if ((Gear^.State and gstHHHJump) <> 0) and
a6f442173822 Make high jump behaviour like in worms (back somersault)
unc0rr
parents: 783
diff changeset
   426
         (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
   427
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   428
      Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump);
540
b06c5aace2fa - Many fixes related to hh switcher
unc0rr
parents: 538
diff changeset
   429
      Gear^.dY:= _0;
b06c5aace2fa - Many fixes related to hh switcher
unc0rr
parents: 538
diff changeset
   430
      end else Gear^.dY:= Gear^.dY + cGravity;
538
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   431
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   432
   if ((Gear^.State and gstMoving) <> 0) then Gear^.dX:= Gear^.dX * Gear^.Friction
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   433
   end;
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   434
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   435
if (Gear^.State <> 0) then DeleteCI(Gear);
783
4f59db6f147d - New command 'set weapon'
unc0rr
parents: 614
diff changeset
   436
538
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   437
if (Gear^.State and gstMoving) <> 0 then
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   438
   if TestCollisionXKick(Gear, hwSign(Gear^.dX)) then
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   439
      if not isFalling then
538
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   440
         if hwAbs(Gear^.dX) > _0_01 then
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   441
            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
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   442
            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
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   443
            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
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   444
            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
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   445
            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
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   446
            if hwAbs(Gear^.dX) > _0_02 then Gear^.dX:= -Gear^.Elasticity * Gear^.dX
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   447
                                   else begin
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   448
                                        Gear^.State:= Gear^.State and not gstMoving;
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   449
                                        SetLittle(Gear^.dX)
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   450
                                        end
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   451
            else begin
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   452
                 Gear^.State:= Gear^.State and not gstMoving;
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   453
                 SetLittle(Gear^.dX)
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   454
                 end
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   455
         else if hwAbs(Gear^.dX) > cLittle then Gear^.dX:= -Gear^.Elasticity * Gear^.dX
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   456
                                           else SetLittle(Gear^.dX);
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   457
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   458
if (not isFalling) and
538
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   459
   (hwAbs(Gear^.dX) + hwAbs(Gear^.dY) < _0_03) then
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   460
   begin
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   461
   Gear^.State:= Gear^.State and not gstMoving;
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   462
   SetLittle(Gear^.dX);
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   463
   Gear^.dY:= _0
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   464
   end else Gear^.State:= Gear^.State or gstMoving;
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   465
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   466
if (Gear^.State and gstMoving) <> 0 then
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   467
   begin
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   468
   Gear^.State:= Gear^.State and not gstAnimation;
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   469
   Gear^.X:= Gear^.X + Gear^.dX;
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   470
   Gear^.Y:= Gear^.Y + Gear^.dY;
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   471
   if (not Gear^.dY.isNegative) and
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   472
      (not TestCollisionYKick(Gear, 1)) and
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   473
       TestCollisionYwithXYShift(Gear, 0, 1, 1) then
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   474
      begin
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   475
      CheckHHDamage(Gear);
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   476
      Gear^.dY:= _0;
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   477
      Gear^.Y:= Gear^.Y + _1
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   478
      end;
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   479
   CheckGearDrowning(Gear)
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   480
   end
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   481
end;
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   482
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   483
procedure doStepHedgehogDriven(Gear: PGear);
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   484
var t: PGear;
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   485
begin
558
b2b840eeb10a Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents: 553
diff changeset
   486
if not isInMultiShoot then
b2b840eeb10a Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents: 553
diff changeset
   487
   AllInactive:= false
b2b840eeb10a Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents: 553
diff changeset
   488
else
b2b840eeb10a Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents: 553
diff changeset
   489
   Gear^.Message:= 0;
505
fcba7d7aea0d Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents: 498
diff changeset
   490
1035
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   491
if (TurnTimeLeft = 0) or (Gear^.Damage > 0) then
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   492
   begin
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   493
   TurnTimeLeft:= 0;
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   494
   Gear^.State:= Gear^.State and not (gstHHDriven or gstAnimation);
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   495
   if Gear^.Damage > 0 then
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   496
      Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump);
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   497
   exit
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   498
   end;
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   499
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   500
if (Gear^.State and gstAnimation) <> 0 then
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   501
	begin
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   502
	Gear^.Message:= 0;
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   503
	inc(Gear^.Timer);
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   504
	if Gear^.Timer = 125 then
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   505
		begin
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   506
		Gear^.Timer:= 0;
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   507
		inc(Gear^.Pos);
1034
05f003ad3caa Further work on taunts
unc0rr
parents: 1033
diff changeset
   508
		if Gear^.Pos = Wavez[TWave(Gear^.Tag)].FramesCount then
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   509
			Gear^.State:= Gear^.State and not gstAnimation
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   510
		end;
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   511
	exit
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   512
	end;
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   513
836
150c7c87e66c - Small formatting changes
unc0rr
parents: 835
diff changeset
   514
if ((Gear^.State and gstMoving) <> 0)
150c7c87e66c - Small formatting changes
unc0rr
parents: 835
diff changeset
   515
    or (StepTicks = cHHStepTicks)
835
6f567934cc44 Automatically use parachute when vertical speed is high enough
unc0rr
parents: 829
diff changeset
   516
	or (CurAmmoGear <> nil) then // we're moving
836
150c7c87e66c - Small formatting changes
unc0rr
parents: 835
diff changeset
   517
	begin
839
1493f697d1bb Fix broken logic for the new parachute feature
unc0rr
parents: 838
diff changeset
   518
	with PHedgehog(Gear^.Hedgehog)^ do
1493f697d1bb Fix broken logic for the new parachute feature
unc0rr
parents: 838
diff changeset
   519
		if (CurAmmoGear = nil)
1493f697d1bb Fix broken logic for the new parachute feature
unc0rr
parents: 838
diff changeset
   520
		and (Gear^.dY > _0_39)
1493f697d1bb Fix broken logic for the new parachute feature
unc0rr
parents: 838
diff changeset
   521
		and (Ammo^[CurSlot, CurAmmo].AmmoType = amParachute) then Gear^.Message:= Gear^.Message or gm_Attack;
836
150c7c87e66c - Small formatting changes
unc0rr
parents: 835
diff changeset
   522
	// check for case with ammo
150c7c87e66c - Small formatting changes
unc0rr
parents: 835
diff changeset
   523
	t:= CheckGearNear(Gear, gtCase, 36, 36);
150c7c87e66c - Small formatting changes
unc0rr
parents: 835
diff changeset
   524
	if t <> nil then
150c7c87e66c - Small formatting changes
unc0rr
parents: 835
diff changeset
   525
		PickUp(Gear, t)
855
8842c71d16bf - Fix too long delay between shotgun and deagle shots
unc0rr
parents: 854
diff changeset
   526
	end;
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   527
930
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   528
if (CurAmmoGear = nil) then
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   529
	if (((Gear^.Message and gm_Attack) <> 0)
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   530
		or ((Gear^.State and gstAttacking) <> 0)) then
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   531
		Attack(Gear) // should be before others to avoid desync with '/put' msg and changing weapon msgs
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   532
	else
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   533
else with PHedgehog(Gear^.Hedgehog)^ do
931
ab4d98858a40 Fix some bugs with dropping from parachute
unc0rr
parents: 930
diff changeset
   534
	 if ((CurAmmoGear^.Ammo^.Propz and ammoprop_AltAttack) <> 0) 
930
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   535
		and ((Gear^.Message and gm_LJump) <> 0)
931
ab4d98858a40 Fix some bugs with dropping from parachute
unc0rr
parents: 930
diff changeset
   536
		and (((Ammo^[CurSlot, CurAmmo].Propz) and ammoprop_AltUse) <> 0) then
ab4d98858a40 Fix some bugs with dropping from parachute
unc0rr
parents: 930
diff changeset
   537
		begin
ab4d98858a40 Fix some bugs with dropping from parachute
unc0rr
parents: 930
diff changeset
   538
		Gear^.Message:= Gear^.Message and not gm_LJump;
ab4d98858a40 Fix some bugs with dropping from parachute
unc0rr
parents: 930
diff changeset
   539
		Attack(Gear)
ab4d98858a40 Fix some bugs with dropping from parachute
unc0rr
parents: 930
diff changeset
   540
		end;
930
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   541
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   542
if (CurAmmoGear = nil)
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   543
	or ((CurAmmoGear^.Ammo^.Propz and ammoprop_AltAttack) <> 0) then
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   544
	begin
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   545
	if ((Gear^.Message and gm_Slot) <> 0) then ChangeAmmo(Gear);
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   546
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   547
	if ((Gear^.Message and gm_Weapon) <> 0) then HHSetWeapon(Gear);
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   548
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   549
	if ((Gear^.Message and gm_Timer) <> 0) then HHSetTimer(Gear);
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   550
	end;
3f61bd3b08fd Initial support for attacking from rope
unc0rr
parents: 928
diff changeset
   551
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   552
if CurAmmoGear <> nil then
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   553
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   554
   CurAmmoGear^.Message:= Gear^.Message;
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   555
   exit
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   556
   end;
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   557
952
9dd48265e0b9 Allow aiming while moving
unc0rr
parents: 941
diff changeset
   558
if not isInMultiShoot then
9dd48265e0b9 Allow aiming while moving
unc0rr
parents: 941
diff changeset
   559
   HedgehogChAngle(Gear);
926
d231e007452a Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents: 925
diff changeset
   560
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   561
if (Gear^.State and gstMoving) <> 0 then
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   562
   begin
424
4598c21bb421 Disable cheat trick with hjump
unc0rr
parents: 423
diff changeset
   563
   if ((Gear^.Message and gm_HJump) <> 0) and
4598c21bb421 Disable cheat trick with hjump
unc0rr
parents: 423
diff changeset
   564
      ((Gear^.State and gstHHJumping) <> 0) and
4598c21bb421 Disable cheat trick with hjump
unc0rr
parents: 423
diff changeset
   565
      ((Gear^.State and gstHHHJump) = 0) then
4598c21bb421 Disable cheat trick with hjump
unc0rr
parents: 423
diff changeset
   566
      if (not (hwAbs(Gear^.dX) > cLittle)) and (Gear^.dY < -_0_02) then
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   567
         begin
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   568
         Gear^.State:= Gear^.State or gstHHHJump or gstMoving;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   569
         Gear^.dY:= -_0_25;
799
71ba310da909 - Commit voice sounds by Stephen Alexander
unc0rr
parents: 790
diff changeset
   570
         Gear^.dX:= -SignAs(_0_02, Gear^.dX);
71ba310da909 - Commit voice sounds by Stephen Alexander
unc0rr
parents: 790
diff changeset
   571
         PlaySound(sndJump2, false)
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   572
         end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   573
   Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump);
538
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   574
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   575
   if ((Gear^.State and gstHHJumping) <> 0) and
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   576
      TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then SetLittle(Gear^.dX);
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   577
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   578
   doStepHedgehogMoving(Gear);
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   579
1002
14ecd5fd4fab Implement drowning hedgehog sprite
unc0rr
parents: 984
diff changeset
   580
   if ((Gear^.State and (gstMoving or gstDrowning)) = 0) then
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   581
      begin
505
fcba7d7aea0d Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents: 498
diff changeset
   582
      AddGearCI(Gear);
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   583
      StepTicks:= 350
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   584
      end;
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   585
   exit
538
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   586
   end;
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   587
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   588
	if not isInMultiShoot then
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   589
		begin
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   590
		if StepTicks > 0 then dec(StepTicks);
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   591
		if (StepTicks = 0) then HedgehogStep(Gear)
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   592
		end
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   593
end;
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   594
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   595
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   596
procedure doStepHedgehogFree(Gear: PGear);
511
2b5b9e00419d - Further work on new collisions implementation
unc0rr
parents: 505
diff changeset
   597
var prevState: Longword;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   598
begin
511
2b5b9e00419d - Further work on new collisions implementation
unc0rr
parents: 505
diff changeset
   599
prevState:= Gear^.State;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   600
538
74219eadab5e - Various small fixes
unc0rr
parents: 534
diff changeset
   601
doStepHedgehogMoving(Gear);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   602
1002
14ecd5fd4fab Implement drowning hedgehog sprite
unc0rr
parents: 984
diff changeset
   603
if (Gear^.State and (gstMoving or gstDrowning)) <> 0 then
865
a4a5ec6c61d4 - Fix introduced bug with hh physics
unc0rr
parents: 864
diff changeset
   604
	begin
1012
36b5cc8264e8 Damaged hedgehog animation
unc0rr
parents: 1002
diff changeset
   605
	if Gear^.Damage > 0 then CalcRotationDirAngle(Gear);
865
a4a5ec6c61d4 - Fix introduced bug with hh physics
unc0rr
parents: 864
diff changeset
   606
	AllInactive:= false;
a4a5ec6c61d4 - Fix introduced bug with hh physics
unc0rr
parents: 864
diff changeset
   607
	exit
a4a5ec6c61d4 - Fix introduced bug with hh physics
unc0rr
parents: 864
diff changeset
   608
	end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   609
863
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   610
if (Gear^.Health = 0) then
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   611
	begin
868
4884bce5e5eb Hedgehog death animation
unc0rr
parents: 866
diff changeset
   612
	if PrvInactive then
864
024369e09a53 Use some more sounds
unc0rr
parents: 863
diff changeset
   613
		begin
024369e09a53 Use some more sounds
unc0rr
parents: 863
diff changeset
   614
		Gear^.Timer:= 0;
868
4884bce5e5eb Hedgehog death animation
unc0rr
parents: 866
diff changeset
   615
		Gear^.State:= Gear^.State or gstHHDeath;
4884bce5e5eb Hedgehog death animation
unc0rr
parents: 866
diff changeset
   616
		Gear^.doStep:= @doStepHedgehogDead;
4884bce5e5eb Hedgehog death animation
unc0rr
parents: 866
diff changeset
   617
		PrvInactive:= false;
4884bce5e5eb Hedgehog death animation
unc0rr
parents: 866
diff changeset
   618
		AllInactive:= false
864
024369e09a53 Use some more sounds
unc0rr
parents: 863
diff changeset
   619
		end;
863
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   620
	exit
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   621
	end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   622
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   623
if ((Gear^.State and gstWait) = 0) and
863
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   624
	(prevState <> Gear^.State) then
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   625
	begin
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1012
diff changeset
   626
	Gear^.State:= gstWait;
863
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   627
	Gear^.Timer:= 150
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   628
	end else
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   629
	begin
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   630
	if Gear^.Timer = 0 then
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   631
		begin
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   632
		Gear^.State:= 0;
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   633
		Gear^.Active:= false;
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   634
		AddGearCI(Gear);
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   635
		exit
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   636
		end else dec(Gear^.Timer)
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   637
	end;
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   638
dfa3aa51ecb5 Merge some more sounds
unc0rr
parents: 855
diff changeset
   639
AllInactive:= false
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   640
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   641
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   642
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   643
procedure doStepHedgehog(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   644
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   645
if (Gear^.Message and gm_Destroy) <> 0 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   646
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   647
   DeleteGear(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   648
   exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   649
   end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 304
diff changeset
   650
if (Gear^.State and gstHHDriven) = 0 then doStepHedgehogFree(Gear)
511
2b5b9e00419d - Further work on new collisions implementation
unc0rr
parents: 505
diff changeset
   651
                                     else doStepHedgehogDriven(Gear)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   652
end;