hedgewars/HHHandlers.inc
author unc0rr
Sat, 16 Sep 2006 15:15:30 +0000
changeset 149 aae256899c49
parent 113 d975a426ebf7
child 183 57c2ef19f719
permissions -rw-r--r--
Fix hedgehog physics %)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     1
(*
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     2
 * Hedgewars, a worms-like game
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 42
diff changeset
     3
 * Copyright (c) 2004, 2005, 2006 Andrey Korotaev <unC0Rr@gmail.com>
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     4
 *
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     5
 * Distributed under the terms of the BSD-modified licence:
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     6
 *
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     7
 * Permission is hereby granted, free of charge, to any person obtaining a copy
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     8
 * of this software and associated documentation files (the "Software"), to deal
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     9
 * with the Software without restriction, including without limitation the
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    10
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    11
 * sell copies of the Software, and to permit persons to whom the Software is
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    12
 * furnished to do so, subject to the following conditions:
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    13
 *
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    14
 * 1. Redistributions of source code must retain the above copyright notice,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    15
 *    this list of conditions and the following disclaimer.
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    16
 * 2. Redistributions in binary form must reproduce the above copyright notice,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    17
 *    this list of conditions and the following disclaimer in the documentation
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    18
 *    and/or other materials provided with the distribution.
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    19
 * 3. The name of the author may not be used to endorse or promote products
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    20
 *    derived from this software without specific prior written permission.
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    21
 *
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    22
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    23
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    24
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    25
 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    26
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    27
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    28
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    29
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    30
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    31
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    32
 *)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    33
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    34
////////////////////////////////////////////////////////////////////////////////
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    35
procedure Attack(Gear: PGear);
107
b08ce0293a51 - Many type fixes
unc0rr
parents: 95
diff changeset
    36
var xx, yy: Double;
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    37
begin
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    38
with Gear^,
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    39
     PHedgehog(Gear.Hedgehog)^ do
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    40
     begin
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    41
     if ((State and gstHHDriven) <> 0)and
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    42
 //       (((State and gstAttacking) <> 0) or ((Message and gm_Attack) <> 0))and
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    43
        ((State and (gstAttacked or gstMoving or gstHHChooseTarget)) = 0)and
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    44
        (((State and gstFalling  ) = 0)or((Ammo[CurSlot, CurAmmo].Propz and ammoprop_AttackInFall) <> 0))and
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    45
        (((State and gstHHJumping) = 0)or((Ammo[CurSlot, CurAmmo].Propz and ammoprop_AttackInJump) <> 0))and
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    46
          ((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
    47
        begin
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    48
        State:= State or gstAttacking;
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    49
        if Power = cMaxPower then Message:= Message and not gm_Attack
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    50
        else if (Ammo[CurSlot, CurAmmo].Propz and ammoprop_Power) = 0 then Message:= Message and not gm_Attack
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    51
        else begin
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    52
             if Power = 0 then
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    53
                begin
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    54
                AttackBar:= CurrentTeam.AttackBar;
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    55
                PlaySound(sndThrowPowerUp)
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    56
                end;
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    57
             inc(Power)
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    58
             end;
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    59
        if ((Message and gm_Attack) <> 0) then exit;
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    60
        
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    61
        if (Ammo[CurSlot, CurAmmo].Propz and ammoprop_Power) <> 0 then
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    62
           begin
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    63
           StopTPUSound;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    64
           PlaySound(sndThrowRelease);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    65
           end;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
    66
        xx:= hwSign(dX)*Sin(Angle*pi/cMaxAngle);
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    67
        yy:= -Cos(Angle*pi/cMaxAngle);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    68
             case Ammo[CurSlot, CurAmmo].AmmoType of
78
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
    69
                      amGrenade: FollowGear:= AddGear(round(X), round(Y), gtAmmo_Bomb,    0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo[CurSlot, CurAmmo].Timer);
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
    70
                  amClusterBomb: FollowGear:= AddGear(round(X), round(Y), gtClusterBomb,  0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo[CurSlot, CurAmmo].Timer);
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    71
                      amBazooka: FollowGear:= AddGear(round(X), round(Y), gtAmmo_Grenade, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    72
                          amUFO: FollowGear:= AddGear(round(X), round(Y), gtUFO,          0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    73
                      amShotgun: begin
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    74
                                 PlaySound(sndShotgunReload);
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
    75
                                 CurAmmoGear:= AddGear(round(X), round(Y), gtShotgunShot,  0, xx * 0.5, yy * 0.5);
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    76
                                 end;
78
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
    77
                   amPickHammer: CurAmmoGear:= AddGear(round(Gear.X), round(Gear.Y) + cHHRadius, gtPickHammer, 0);
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
    78
                         amSkip: TurnTimeLeft:= 0;
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
    79
                         amRope: CurAmmoGear:= AddGear(round(Gear.X), round(Gear.Y), gtRope, 0, xx, yy);
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
    80
                         amMine: AddGear(round(X) + hwSign(dX) * 7, round(Y), gtMine, 0, hwSign(dX) * 0.02, 0, 3000);
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
    81
                       amDEagle: AddGear(round(X), round(Y), gtDEagleShot, 0, xx * 0.5, yy * 0.5);
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
    82
                     amDynamite: AddGear(round(X) + hwSign(dX) * 7, round(Y), gtDynamite, 0, hwSign(dX) * 0.035, 0, 5000);
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
    83
                  amBaseballBat: AddGear(round(X) + hwSign(dX) * 10, round(Y), gtShover, 0, xx * 0.5, yy * 0.5).Radius:= 20;
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
    84
                    amFirePunch: CurAmmoGear:= AddGear(round(X) + hwSign(dX) * 10, round(Y), gtFirePunch, 0);
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    85
                  end;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    86
        Power:= 0;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    87
        if CurAmmoGear <> nil then
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    88
           begin
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
    89
           Message:= Message or gm_Attack;
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
    90
           CurAmmoGear.Message:= Message
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
    91
           end else begin
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    92
           if not CurrentTeam.ExtDriven and
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    93
             ((Ammo[CurSlot, CurAmmo].Propz and ammoprop_Power) <> 0) then SendIPC('a');
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
    94
           AfterAttack
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
    95
           end
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
    96
        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
    97
     end
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    98
end;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    99
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   100
procedure AfterAttack;
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 CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog].Gear^,
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   103
     CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog] do
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   104
     begin
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   105
        Inc(AttacksNum);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   106
        State:= State and not gstAttacking;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   107
        if Ammo[CurSlot, CurAmmo].NumPerTurn >= AttacksNum then isInMultiShoot:= true
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   108
           else begin
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   109
           TurnTimeLeft:= Ammoz[Ammo[CurSlot, CurAmmo].AmmoType].TimeAfterTurn;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   110
           State:= State or gstAttacked;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   111
           OnUsedAmmo(Ammo)
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   112
           end;
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
   113
     AttackBar:= 0;
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   114
     end
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   115
end;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   116
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   117
////////////////////////////////////////////////////////////////////////////////
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   118
procedure PickUp(HH, Gear: PGear);
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   119
begin
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   120
Gear.Message:= gm_Destroy;
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   121
case Gear.Pos of
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   122
     posCaseHealth: begin
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   123
                    inc(HH.Health, Gear.Health);
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 42
diff changeset
   124
                    RenderHealth(PHedgehog(HH.Hedgehog)^);
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 42
diff changeset
   125
                    RecountTeamHealth(PHedgehog(HH.Hedgehog)^.Team)
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   126
                    end;
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   127
     end;
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   128
end;
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   129
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   130
procedure doStepHedgehog(Gear: PGear); forward;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   131
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   132
procedure doStepHedgehogDriven(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   133
const StepTicks: LongWord = 0;
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 7
diff changeset
   134
var t: PGear;
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 73
diff changeset
   135
    PrevdX: integer;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   136
begin
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   137
if isInMultiShoot and (Gear.Damage = 0) then
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   138
   begin
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   139
   exit
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   140
   end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   141
AllInactive:= false;
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 49
diff changeset
   142
DeleteCI(Gear);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   143
if (TurnTimeLeft = 0) or (Gear.Damage > 0) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   144
   begin
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   145
   TurnTimeLeft:= 0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   146
   if ((Gear.State and (gstMoving or gstFalling)) = 0)
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   147
      and (CurAmmoGear = nil) then Gear.dX:= 0.0000001 * hwSign(Gear.dX);
7
b472e4b1a106 Fixed problem with hedgehog physics when turn is over and hedgehog is jumping
unc0rr
parents: 4
diff changeset
   148
   Gear.State:= Gear.State and not gstHHDriven;
b472e4b1a106 Fixed problem with hedgehog physics when turn is over and hedgehog is jumping
unc0rr
parents: 4
diff changeset
   149
   if Gear.Damage > 0 then
b472e4b1a106 Fixed problem with hedgehog physics when turn is over and hedgehog is jumping
unc0rr
parents: 4
diff changeset
   150
      Gear.State:= Gear.State and not gstHHJumping;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   151
   exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   152
   end;
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   153
if ((Gear.State and gstFalling) <> 0) or (StepTicks = cHHStepTicks)
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   154
   or (CurAmmoGear <> nil) then // we're moving
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 7
diff changeset
   155
   begin
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   156
   // check for case with ammo
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   157
   t:= CheckGearNear(Gear, gtCase, 36, 36);
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   158
   if t <> nil then
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   159
      PickUp(Gear, t)
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 7
diff changeset
   160
   end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   161
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   162
if CurAmmoGear <> nil then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   163
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   164
   CurAmmoGear.Message:= Gear.Message;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   165
   exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   166
   end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   167
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
   168
if ((Gear.Message and gm_Attack) <> 0) or
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 82
diff changeset
   169
   ((Gear.State and gstAttacking) <> 0)then Attack(Gear);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   170
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   171
if (Gear.State and gstFalling) <> 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   172
   begin
7
b472e4b1a106 Fixed problem with hedgehog physics when turn is over and hedgehog is jumping
unc0rr
parents: 4
diff changeset
   173
   // it could be the source to trick: double-backspace jump -> vertical wall
b472e4b1a106 Fixed problem with hedgehog physics when turn is over and hedgehog is jumping
unc0rr
parents: 4
diff changeset
   174
   // collision - > (abs(Gear.dX) < 0.0000002) -> backspace -> even more high jump
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   175
   if ((Gear.Message and gm_HJump) <> 0) and ((Gear.State and gstHHJumping) <> 0) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   176
      if (abs(Gear.dX) < 0.0000002) and (Gear.dY < -0.02) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   177
         begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   178
         Gear.dY:= -0.25;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   179
         Gear.dX:= hwSign(Gear.dX) * 0.02
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   180
         end;
7
b472e4b1a106 Fixed problem with hedgehog physics when turn is over and hedgehog is jumping
unc0rr
parents: 4
diff changeset
   181
   Gear.Message:= Gear.Message and not (gm_LJump or gm_HJump);     
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   182
   if TestCollisionXwithGear(Gear, hwSign(Gear.dX)) then Gear.dX:= 0.0000001 * hwSign(Gear.dX);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   183
   Gear.X:= Gear.X + Gear.dX;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   184
   Gear.dY:= Gear.dY + cGravity;
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   185
   if (Gear.dY < 0)and TestCollisionYwithGear(Gear, -1) then Gear.dY:= 0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   186
   Gear.Y:= Gear.Y + Gear.dY;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   187
   if (Gear.dY >= 0)and TestCollisionYwithGear(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   188
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   189
      CheckHHDamage(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   190
      if ((abs(Gear.dX) + abs(Gear.dY)) < 0.55)
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   191
         and ((Gear.State and gstHHJumping) <> 0) then Gear.dX:= 0.0000001 * hwSign(Gear.dX);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   192
      Gear.State:= Gear.State and not (gstFalling or gstHHJumping);
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   193
      StepTicks:= 300; 
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   194
      Gear.dY:= 0
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   195
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   196
   CheckGearDrowning(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   197
   exit
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 49
diff changeset
   198
   end ;//else if Gear.CollIndex = High(Longword) then AddIntersectorsCR(Gear);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   199
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   200
if StepTicks > 0 then dec(StepTicks);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   201
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   202
if ((Gear.State and (gstMoving or gstFalling)) = 0) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   203
   if (Gear.Message and gm_Up    )<>0 then if Gear.Angle > 0         then dec(Gear.Angle)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   204
      else else
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   205
   if (Gear.Message and gm_Down  )<>0 then if Gear.Angle < cMaxAngle then inc(Gear.Angle);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   206
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   207
if ((Gear.State and (gstAttacking or gstMoving or gstFalling)) = 0)and(StepTicks = 0) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   208
   begin
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   209
   if ((Gear.Message and gm_LJump ) <> 0) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   210
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   211
      Gear.Message:= 0;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   212
      if not TestCollisionYwithGear(Gear, -1) then
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   213
         if not TestCollisionXwithXYShift(Gear, 0, -2, hwSign(Gear.dX)) then Gear.Y:= Gear.Y - 2 else
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   214
         if not TestCollisionXwithXYShift(Gear, 0, -1, hwSign(Gear.dX)) then Gear.Y:= Gear.Y - 1;
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   215
      if not (TestCollisionXwithGear(Gear, hwSign(Gear.dX))
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   216
         or   TestCollisionYwithGear(Gear, -1)) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   217
         begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   218
         Gear.dY:= -0.15;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   219
         Gear.dX:= hwSign(Gear.dX) * 0.15;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   220
         Gear.State:= Gear.State or gstFalling or gstHHJumping;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   221
         exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   222
         end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   223
      end;
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   224
   if ((Gear.Message and gm_HJump ) <> 0) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   225
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   226
      Gear.Message:= 0;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   227
      if not TestCollisionYwithGear(Gear, -1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   228
         begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   229
         Gear.dY:= -0.20;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   230
         Gear.dX:= 0.0000001 * hwSign(Gear.dX);
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   231
         Gear.X:= Gear.X - hwSign(Gear.dX)*0.00008; // shift compensation
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   232
         Gear.State:= Gear.State or gstFalling or gstHHJumping;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   233
         exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   234
         end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   235
      end;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   236
   PrevdX:= hwSign(Gear.dX);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   237
   if (Gear.Message and gm_Left  )<>0 then Gear.dX:= -1.0 else
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   238
   if (Gear.Message and gm_Right )<>0 then Gear.dX:=  1.0 else exit;
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 73
diff changeset
   239
   StepTicks:= cHHStepTicks;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   240
   if PrevdX <> hwSign(Gear.dX) then exit;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   241
   PHedgehog(Gear.Hedgehog).visStepPos:= (PHedgehog(Gear.Hedgehog).visStepPos + 1) and 7;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   242
   if TestCollisionXwithGear(Gear, hwSign(Gear.dX)) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   243
      begin
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   244
      if not (TestCollisionXwithXYShift(Gear, 0, -6, hwSign(Gear.dX))
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   245
         or TestCollisionYwithGear(Gear, -1)) then Gear.Y:= Gear.Y - 1;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   246
      if not (TestCollisionXwithXYShift(Gear, 0, -5, hwSign(Gear.dX))
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   247
         or TestCollisionYwithGear(Gear, -1)) then Gear.Y:= Gear.Y - 1;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   248
      if not (TestCollisionXwithXYShift(Gear, 0, -4, hwSign(Gear.dX))
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   249
         or TestCollisionYwithGear(Gear, -1)) then Gear.Y:= Gear.Y - 1;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   250
      if not (TestCollisionXwithXYShift(Gear, 0, -3, hwSign(Gear.dX))
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   251
         or TestCollisionYwithGear(Gear, -1)) then Gear.Y:= Gear.Y - 1;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   252
      if not (TestCollisionXwithXYShift(Gear, 0, -2, hwSign(Gear.dX))
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   253
         or TestCollisionYwithGear(Gear, -1)) then Gear.Y:= Gear.Y - 1;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   254
      if not (TestCollisionXwithXYShift(Gear, 0, -1, hwSign(Gear.dX))
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   255
         or TestCollisionYwithGear(Gear, -1)) then Gear.Y:= Gear.Y - 1;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   256
      end;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   257
   if not TestCollisionXwithGear(Gear, hwSign(Gear.dX)) then Gear.X:= Gear.X + Gear.dX;
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   258
   Gear.dX:= 0.0000001 * hwSign(Gear.dX);
62
c3eda0c68cd6 No more hedgehogs hung in air
unc0rr
parents: 56
diff changeset
   259
   SetAllHHToActive;
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   260
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   261
   if not TestCollisionYwithGear(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   262
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   263
   Gear.Y:= Gear.Y + 1;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   264
   if not TestCollisionYwithGear(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   265
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   266
   Gear.Y:= Gear.Y + 1;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   267
   if not TestCollisionYwithGear(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   268
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   269
   Gear.Y:= Gear.Y + 1;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   270
   if not TestCollisionYwithGear(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   271
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   272
   Gear.Y:= Gear.Y + 1;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   273
   if not TestCollisionYwithGear(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   274
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   275
   Gear.Y:= Gear.Y + 1;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   276
   if not TestCollisionYwithGear(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   277
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   278
   Gear.Y:= Gear.Y + 1;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   279
   if not TestCollisionYwithGear(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   280
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   281
      Gear.Y:= Gear.Y - 6;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   282
      Gear.dY:= 0;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   283
      Gear.dX:= 0.0000001 * hwSign(Gear.dX);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   284
      Gear.State:= Gear.State or gstFalling
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   285
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   286
   end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   287
   end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   288
   end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   289
   end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   290
   end
62
c3eda0c68cd6 No more hedgehogs hung in air
unc0rr
parents: 56
diff changeset
   291
   end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   292
   end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   293
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   294
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   295
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   296
procedure doStepHedgehogFree(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   297
begin
62
c3eda0c68cd6 No more hedgehogs hung in air
unc0rr
parents: 56
diff changeset
   298
//DeleteCI(Gear);
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   299
if not TestCollisionYwithGear(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   300
   begin
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 62
diff changeset
   301
   if (Gear.dY < 0) and TestCollisionYwithGear(Gear, -1) then Gear.dY:= 0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   302
   Gear.State:= Gear.State or gstFalling or gstMoving;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   303
   Gear.dY:= Gear.dY + cGravity
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   304
   end else begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   305
   CheckHHDamage(Gear);
7
b472e4b1a106 Fixed problem with hedgehog physics when turn is over and hedgehog is jumping
unc0rr
parents: 4
diff changeset
   306
   if ((abs(Gear.dX) + abs(Gear.dY)) < 0.55)
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   307
      and ((Gear.State and gstHHJumping) <> 0) then Gear.dX:= 0.0000001 * hwSign(Gear.dX);
7
b472e4b1a106 Fixed problem with hedgehog physics when turn is over and hedgehog is jumping
unc0rr
parents: 4
diff changeset
   308
   Gear.State:= Gear.State and not (gstFalling or gstHHJumping);
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 73
diff changeset
   309
   if Gear.dY > 0 then Gear.dY:= 0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   310
   if ((Gear.State and gstMoving) <> 0) then Gear.dX:= Gear.dX * Gear.Friction
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
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 49
diff changeset
   313
if (Gear.State <> 0) then DeleteCI(Gear);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   314
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   315
if (Gear.State and gstMoving) <> 0 then
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   316
   if TestCollisionXwithGear(Gear, hwSign(Gear.dX)) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   317
      if ((Gear.State and gstFalling) = 0) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   318
         if abs(Gear.dX) > 0.01 then
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   319
            if not TestCollisionXwithXYShift(Gear, hwSign(Gear.dX) - Gear.dX, -1, hwSign(Gear.dX)) then begin Gear.X:= Gear.X + Gear.dX; Gear.dX:= Gear.dX * 0.96; Gear.Y:= Gear.Y - 1 end else
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   320
            if not TestCollisionXwithXYShift(Gear, hwSign(Gear.dX) - Gear.dX, -2, hwSign(Gear.dX)) then begin Gear.X:= Gear.X + Gear.dX; Gear.dX:= Gear.dX * 0.93; Gear.Y:= Gear.Y - 2 end else
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   321
            if not TestCollisionXwithXYShift(Gear, hwSign(Gear.dX) - Gear.dX, -3, hwSign(Gear.dX)) then begin Gear.X:= Gear.X + Gear.dX; Gear.dX:= Gear.dX * 0.90; Gear.Y:= Gear.Y - 3 end else
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   322
            if not TestCollisionXwithXYShift(Gear, hwSign(Gear.dX) - Gear.dX, -4, hwSign(Gear.dX)) then begin Gear.X:= Gear.X + Gear.dX; Gear.dX:= Gear.dX * 0.87; Gear.Y:= Gear.Y - 4 end else
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   323
            if not TestCollisionXwithXYShift(Gear, hwSign(Gear.dX) - Gear.dX, -5, hwSign(Gear.dX)) then begin Gear.X:= Gear.X + Gear.dX; Gear.dX:= Gear.dX * 0.84; Gear.Y:= Gear.Y - 5 end else
149
aae256899c49 Fix hedgehog physics %)
unc0rr
parents: 113
diff changeset
   324
            if abs(Gear.dX) > 0.02 then Gear.dX:= -Gear.Elasticity * Gear.dX
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   325
                                   else begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   326
                                        Gear.State:= Gear.State and not gstMoving;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   327
                                        Gear.dX:= 0.0000001 * hwSign(Gear.dX)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   328
                                        end
149
aae256899c49 Fix hedgehog physics %)
unc0rr
parents: 113
diff changeset
   329
            else begin
aae256899c49 Fix hedgehog physics %)
unc0rr
parents: 113
diff changeset
   330
                 Gear.State:= Gear.State and not gstMoving;
aae256899c49 Fix hedgehog physics %)
unc0rr
parents: 113
diff changeset
   331
                 Gear.dX:= 0.0000001 * hwSign(Gear.dX)
aae256899c49 Fix hedgehog physics %)
unc0rr
parents: 113
diff changeset
   332
                 end
aae256899c49 Fix hedgehog physics %)
unc0rr
parents: 113
diff changeset
   333
         else Gear.dX:= -Gear.Elasticity * Gear.dX;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   334
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   335
if ((Gear.State and gstFalling) = 0)and
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   336
   (sqr(Gear.dX) + sqr(Gear.dY) < 0.0008) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   337
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   338
   Gear.State:= Gear.State and not gstMoving;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   339
   Gear.dX:= 0.0000001 * hwSign(Gear.dX);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   340
   Gear.dY:= 0
73
fe1c62875a19 - More smooth hedgehogs physics
unc0rr
parents: 70
diff changeset
   341
   end else Gear.State:= Gear.State or gstMoving;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   342
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   343
if (Gear.State and gstMoving) <> 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   344
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   345
   Gear.X:= Gear.X + Gear.dX;
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 73
diff changeset
   346
   Gear.Y:= Gear.Y + Gear.dY;
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 73
diff changeset
   347
   if (Gear.dY > 0) and not TestCollisionYwithGear(Gear, 1) and TestCollisionYwithXYShift(Gear, 0, 1, 1) then
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 73
diff changeset
   348
      begin
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   349
      CheckHHDamage(Gear);
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 73
diff changeset
   350
      Gear.dY:= 0;
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 73
diff changeset
   351
      Gear.Y:= Gear.Y + 1
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 73
diff changeset
   352
      end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   353
   end else
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   354
   if Gear.Health = 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   355
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   356
      if AllInactive then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   357
         begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   358
         doMakeExplosion(round(Gear.X), round(Gear.Y), 30, EXPLAutoSound);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   359
         AddGear(round(Gear.X), round(Gear.Y), gtGrave, 0).Hedgehog:= Gear.Hedgehog;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   360
         DeleteGear(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   361
         SetAllToActive
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   362
         end;
7
b472e4b1a106 Fixed problem with hedgehog physics when turn is over and hedgehog is jumping
unc0rr
parents: 4
diff changeset
   363
      AllInactive:= false;  
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   364
      exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   365
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   366
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   367
AllInactive:= false;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   368
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   369
if (not CheckGearDrowning(Gear)) and
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   370
   ((Gear.State and gstMoving) = 0) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   371
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   372
      Gear.State:= 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   373
      Gear.Active:= false;
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 49
diff changeset
   374
      AddGearCI(Gear);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   375
      exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   376
      end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   377
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   378
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   379
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   380
procedure doStepHedgehog(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   381
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   382
if (Gear.Message and gm_Destroy) <> 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   383
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   384
   DeleteGear(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   385
   exit
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
if (Gear.State and gstHHDriven) = 0 then doStepHedgehogFree(Gear)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   388
                                    else doStepHedgehogDriven(Gear)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   389
end;