hedgewars/HHHandlers.inc
author unc0rr
Sun, 15 Jan 2006 14:14:12 +0000
changeset 49 3afe33c1cf06
parent 47 8daf1ee0b9a3
child 53 0e27949850e3
permissions -rw-r--r--
- Teams health bars sorting - Fixed slow walking on hedgehog - Fixed accidently disabled bots' ammo - Fixed exception when runnig engine without command line parameters - One more template
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
procedure AddIntersectorsCR(Gear: PGear);
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    35
var t: PGear;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    36
    x, xw, y, yh: real;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    37
    ar: array[0..Pred(cMaxHHs)] of PGear;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    38
    cnt: Longword;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    39
    b: boolean;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    40
begin
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    41
x:= Gear.X - Gear.HalfWidth;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    42
xw:= Gear.X + Gear.HalfWidth;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    43
y:= Gear.Y - Gear.HalfHeight;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    44
yh:= Gear.Y + Gear.HalfHeight;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    45
t:= GearsList;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    46
b:= false;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    47
cnt:= 0;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    48
while (t <> nil) do
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    49
      begin
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
    50
      if (t <> Gear) and not (t.Kind in [gtGrave, gtMine]) then
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    51
         if (x < t.X + t.HalfWidth ) and (t.X - t.HalfWidth  < xw) and
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    52
            (y < t.Y + t.HalfHeight) and (t.Y - t.HalfHeight < yh) then
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    53
            if t.Kind = gtHedgehog then
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    54
               begin
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    55
               ar[cnt]:= t;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    56
               inc(cnt)
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
    57
               end else b:= true;
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    58
      t:= t.NextGear
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    59
      end;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    60
ar[cnt]:= Gear;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    61
inc(cnt);
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    62
if b then
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    63
   begin
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    64
   repeat
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    65
     dec(cnt);
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    66
     if ar[cnt].CollIndex < High(Longword) then DeleteCR(ar[cnt])
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    67
   until cnt = 0;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    68
   end else
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    69
   begin
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    70
   repeat
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    71
     dec(cnt);
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    72
     if ar[cnt].CollIndex = High(Longword) then AddGearCR(ar[cnt])
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    73
   until cnt = 0
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    74
   end
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    75
end;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    76
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    77
procedure RemoveIntersectorsCR(Gear: PGear);
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    78
var t: PGear;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    79
    x, xw, y, yh: real;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    80
begin
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    81
x:= Gear.X - Gear.HalfWidth;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    82
xw:= Gear.X + Gear.HalfWidth;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    83
y:= Gear.Y - Gear.HalfHeight;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    84
yh:= Gear.Y + Gear.HalfHeight;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    85
t:= GearsList;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    86
while (t <> nil) do
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    87
      begin
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    88
      if (t <> Gear) then
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    89
         if (x < t.X + t.HalfWidth ) and (t.X - t.HalfWidth  < xw) and
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    90
            (y < t.Y + t.HalfHeight) and (t.Y - t.HalfHeight < yh) then
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    91
               if t.CollIndex < High(Longword) then DeleteCR(t);
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    92
      t:= t.NextGear
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    93
      end;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    94
if Gear.CollIndex < High(Longword) then DeleteCR(Gear);
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    95
end;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    96
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
    97
////////////////////////////////////////////////////////////////////////////////
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    98
procedure Attack(Gear: PGear);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
    99
var xx, yy: real;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   100
begin
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   101
with Gear^,
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   102
     CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog] do
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   103
     begin
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   104
     {$IFDEF DEBUGFILE}AddFileLog('Attack: Gear.State = '+inttostr(State)+' CurAmmoGear = '+inttostr(longword(CurAmmoGear)));{$ENDIF}
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   105
     if CurAmmoGear <> nil then
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   106
        begin
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   107
        Message:= Message and not gm_Attack;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   108
        if not CurrentTeam.ExtDriven then SendIPC('a')
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   109
        end;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   110
     if (((State and (gstHHDriven or gstAttacking)) = (gstHHDriven or gstAttacking))and
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   111
        ((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
   112
        (((State and gstFalling  ) = 0)or((Ammo[CurSlot, CurAmmo].Propz and ammoprop_AttackInFall) <> 0))and
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   113
        (((State and gstHHJumping) = 0)or((Ammo[CurSlot, CurAmmo].Propz and ammoprop_AttackInJump) <> 0)))and
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   114
        (CurAmmoGear = nil) then
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   115
        begin
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   116
        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
   117
           begin
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   118
           StopTPUSound;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   119
           PlaySound(sndThrowRelease);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   120
           end;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   121
        xx:= Sign(dX)*Sin(Angle*pi/cMaxAngle);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   122
        yy:= -Cos(Angle*pi/cMaxAngle);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   123
             case Ammo[CurSlot, CurAmmo].AmmoType of
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   124
                      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
   125
                      amGrenade: FollowGear:= AddGear(round(X), round(Y), gtAmmo_Bomb,    0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo[CurSlot, CurAmmo].Timer);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   126
                          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
   127
                      amShotgun: begin
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   128
                                 PlaySound(sndShotgunReload);
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   129
                                 FollowGear:= 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
   130
                                 end;
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   131
                       amDEagle: begin
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   132
                                 FollowGear:= AddGear(round(X), round(Y), gtDEagleShot,   0, xx * 0.5, yy * 0.5);
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   133
                                 end;
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   134
                         amSkip: TurnTimeLeft:= 0;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   135
                   amPickHammer: CurAmmoGear:= AddGear(round(Gear.X), round(Gear.Y) + cHHHalfHeight, gtPickHammer, 0);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   136
                         amRope: CurAmmoGear:= AddGear(round(Gear.X), round(Gear.Y), gtRope, 0, xx, yy);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   137
                         amMine: AddGear(round(X) + Sign(dX) * 7, round(Y), gtMine, 0, Sign(dX) * 0.01, 0, 3000);
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   138
                     amDynamite: AddGear(round(X) + Sign(dX) * 7, round(Y), gtDynamite, 0, Sign(dX) * 0.01, 0, 5000); 
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   139
                  end;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   140
        Power:= 0;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   141
        if CurAmmoGear <> nil then
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   142
           begin
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   143
           Gear.Message:= Gear.Message or gm_Attack;
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   144
           CurAmmoGear.Message:= Gear.Message;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   145
           exit
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   146
           end else
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   147
           begin
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   148
           Message:= Message and not gm_Attack;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   149
           if not CurrentTeam.ExtDriven then SendIPC('a')
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   150
           end;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   151
        AfterAttack
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   152
        end
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   153
     end
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   154
end;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   155
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   156
procedure AfterAttack;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   157
begin
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   158
with CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog].Gear^,
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   159
     CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog] do
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   160
     begin
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   161
        Inc(AttacksNum);
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   162
        State:= State and not gstAttacking;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   163
        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
   164
           else begin
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   165
           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
   166
           State:= State or gstAttacked;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   167
           OnUsedAmmo(Ammo)
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   168
           end;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   169
     AttackBar:= 0
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   170
     end
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   171
end;
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   172
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   173
////////////////////////////////////////////////////////////////////////////////
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   174
procedure PickUp(HH, Gear: PGear);
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   175
begin
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   176
case Gear.Pos of
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   177
     posCaseHealth: begin
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   178
                    inc(HH.Health, Gear.Health);
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 42
diff changeset
   179
                    RenderHealth(PHedgehog(HH.Hedgehog)^);
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 42
diff changeset
   180
                    RecountTeamHealth(PHedgehog(HH.Hedgehog)^.Team)
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   181
                    end;
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   182
     end;
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   183
end;
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   184
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   185
procedure doStepHedgehog(Gear: PGear); forward;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   186
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   187
procedure doStepHedgehogDriven(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   188
const StepTicks: LongWord = 0;
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   189
      cStepTicks = 38;
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 7
diff changeset
   190
var t: PGear;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   191
begin
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   192
if isinMultiShoot and (Gear.Damage = 0) then
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   193
   begin
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   194
   if Gear.CollIndex = High(Longword) then AddIntersectorsCR(Gear);
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   195
   exit
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   196
   end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   197
AllInactive:= false;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   198
if (TurnTimeLeft = 0) or (Gear.Damage > 0) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   199
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   200
   if ((Gear.State and (gstMoving or gstFalling)) = 0)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   201
      and (CurAmmoGear = nil) then Gear.dX:= 0.0000001 * Sign(Gear.dX);
7
b472e4b1a106 Fixed problem with hedgehog physics when turn is over and hedgehog is jumping
unc0rr
parents: 4
diff changeset
   202
   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
   203
   if Gear.Damage > 0 then
b472e4b1a106 Fixed problem with hedgehog physics when turn is over and hedgehog is jumping
unc0rr
parents: 4
diff changeset
   204
      Gear.State:= Gear.State and not gstHHJumping;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   205
   exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   206
   end;
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   207
if ((Gear.State and gstFalling) <> 0) or (StepTicks = cStepTicks)
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   208
   or (CurAmmoGear <> nil) then // we're moving
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 7
diff changeset
   209
   begin
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   210
   // check for case with ammo
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   211
   t:= CheckGearNear(Gear, gtCase, 36, 36);
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   212
   if t <> nil then
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   213
      begin
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   214
      t.Message:= gm_Destroy;
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   215
      PickUp(Gear, t)
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   216
      end;
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 7
diff changeset
   217
   end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   218
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   219
if CurAmmoGear <> nil then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   220
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   221
   CurAmmoGear.Message:= Gear.Message;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   222
   exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   223
   end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   224
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   225
if (Gear.Message and gm_Attack)<>0 then
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   226
   if (Gear.State and (gstAttacked or gstHHChooseTarget) = 0) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   227
      with PHedgehog(Gear.Hedgehog)^ do
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.State:= Gear.State or gstAttacking;
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 16
diff changeset
   230
            if Gear.Power = cMaxPower then Gear.Message:= Gear.Message and not gm_Attack
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   231
               else
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   232
               if (Ammo[CurSlot, CurAmmo].Propz and ammoprop_Power) = 0 then
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   233
                  Gear.Message:= Gear.Message and not gm_Attack
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   234
                  else begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   235
                  if Gear.Power = 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   236
                     begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   237
                     AttackBar:= CurrentTeam.AttackBar;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   238
                     PlaySound(sndThrowPowerUp)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   239
                     end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   240
                  inc(Gear.Power)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   241
                  end
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   242
            end
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   243
      else Gear.Message:= Gear.Message and not gm_Attack;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   244
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   245
if ((Gear.State and gstAttacking) <> 0) and ((Gear.Message and gm_Attack) = 0) then
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   246
   begin
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   247
   RemoveIntersectorsCR(Gear);
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   248
   Attack(Gear);
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   249
   StepTicks:= 40
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   250
   end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   251
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   252
if (Gear.State and gstFalling) <> 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   253
   begin
7
b472e4b1a106 Fixed problem with hedgehog physics when turn is over and hedgehog is jumping
unc0rr
parents: 4
diff changeset
   254
   // 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
   255
   // collision - > (abs(Gear.dX) < 0.0000002) -> backspace -> even more high jump
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   256
   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
   257
      if (abs(Gear.dX) < 0.0000002) and (Gear.dY < -0.02) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   258
         begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   259
         Gear.dY:= -0.25;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   260
         Gear.dX:= Sign(Gear.dX) * 0.02
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   261
         end;
7
b472e4b1a106 Fixed problem with hedgehog physics when turn is over and hedgehog is jumping
unc0rr
parents: 4
diff changeset
   262
   Gear.Message:= Gear.Message and not (gm_LJump or gm_HJump);     
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   263
   if TestCollisionXwithGear(Gear, Sign(Gear.dX)) then Gear.dX:= 0.0000001 * Sign(Gear.dX);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   264
   Gear.X:= Gear.X + Gear.dX;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   265
   Gear.dY:= Gear.dY + cGravity;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   266
   if (Gear.dY < 0)and TestCollisionYwithGear(Gear, -1) then Gear.dY:= 0; 
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   267
   Gear.Y:= Gear.Y + Gear.dY;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   268
   if (Gear.dY >= 0)and HHTestCollisionYwithGear(Gear, 1) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   269
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   270
      CheckHHDamage(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   271
      if ((abs(Gear.dX) + abs(Gear.dY)) < 0.55)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   272
         and ((Gear.State and gstHHJumping) <> 0) then Gear.dX:= 0.0000001 * Sign(Gear.dX);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   273
      Gear.State:= Gear.State and not (gstFalling or gstHHJumping);
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   274
      StepTicks:= 300; 
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   275
      Gear.dY:= 0
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   276
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   277
   CheckGearDrowning(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   278
   exit
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   279
   end else if Gear.CollIndex = High(Longword) then AddIntersectorsCR(Gear);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   280
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   281
if StepTicks > 0 then dec(StepTicks);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   282
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   283
if ((Gear.State and (gstMoving or gstFalling)) = 0) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   284
   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
   285
      else else
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   286
   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
   287
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   288
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
   289
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   290
   if ((Gear.Message and gm_LJump )<>0) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   291
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   292
      Gear.Message:= 0;
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   293
      RemoveIntersectorsCR(Gear);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   294
      if not HHTestCollisionYwithGear(Gear, -1) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   295
         if not TestCollisionXwithXYShift(Gear, 0, -2, Sign(Gear.dX)) then Gear.Y:= Gear.Y - 2 else
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   296
         if not TestCollisionXwithXYShift(Gear, 0, -1, Sign(Gear.dX)) then Gear.Y:= Gear.Y - 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   297
      if not (TestCollisionXwithGear(Gear, Sign(Gear.dX))
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   298
         or   HHTestCollisionYwithGear(Gear, -1)) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   299
         begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   300
         Gear.dY:= -0.15;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   301
         Gear.dX:= Sign(Gear.dX) * 0.15;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   302
         Gear.State:= Gear.State or gstFalling or gstHHJumping;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   303
         exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   304
         end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   305
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   306
   if ((Gear.Message and gm_HJump )<>0) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   307
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   308
      Gear.Message:= 0;
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   309
      RemoveIntersectorsCR(Gear);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   310
      if not HHTestCollisionYwithGear(Gear, -1) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   311
         begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   312
         Gear.dY:= -0.20;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   313
         Gear.dX:= 0.0000001 * Sign(Gear.dX);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   314
         Gear.X:= Gear.X - Sign(Gear.dX)*0.00008; // êîìïåíñàöèÿ ñäâèãà %)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   315
         Gear.State:= Gear.State or gstFalling or gstHHJumping;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   316
         exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   317
         end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   318
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   319
   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
   320
   if (Gear.Message and gm_Right )<>0 then Gear.dX:=  1.0 else exit;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   321
   PHedgehog(Gear.Hedgehog).visStepPos:= (PHedgehog(Gear.Hedgehog).visStepPos + 1) and 7;
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   322
   StepTicks:= cStepTicks;
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   323
   RemoveIntersectorsCR(Gear);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   324
   if TestCollisionXwithGear(Gear, Sign(Gear.dX)) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   325
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   326
      if not (TestCollisionXwithXYShift(Gear, 0, -6, Sign(Gear.dX))
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   327
         or HHTestCollisionYwithGear(Gear, -1)) then Gear.Y:= Gear.Y - 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   328
      if not (TestCollisionXwithXYShift(Gear, 0, -5, Sign(Gear.dX))
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   329
         or HHTestCollisionYwithGear(Gear, -1)) then Gear.Y:= Gear.Y - 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   330
      if not (TestCollisionXwithXYShift(Gear, 0, -4, Sign(Gear.dX))
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   331
         or HHTestCollisionYwithGear(Gear, -1)) then Gear.Y:= Gear.Y - 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   332
      if not (TestCollisionXwithXYShift(Gear, 0, -3, Sign(Gear.dX))
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   333
         or HHTestCollisionYwithGear(Gear, -1)) then Gear.Y:= Gear.Y - 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   334
      if not (TestCollisionXwithXYShift(Gear, 0, -2, Sign(Gear.dX))
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   335
         or HHTestCollisionYwithGear(Gear, -1)) then Gear.Y:= Gear.Y - 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   336
      if not (TestCollisionXwithXYShift(Gear, 0, -1, Sign(Gear.dX))
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   337
         or HHTestCollisionYwithGear(Gear, -1)) then Gear.Y:= Gear.Y - 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   338
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   339
   if not TestCollisionXwithGear(Gear, Sign(Gear.dX)) then Gear.X:= Gear.X + Gear.dX;
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   340
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 47
diff changeset
   341
   AddIntersectorsCR(Gear);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   342
   if not HHTestCollisionYwithGear(Gear, 1) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   343
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   344
   Gear.Y:= Gear.Y + 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   345
   if not HHTestCollisionYwithGear(Gear, 1) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   346
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   347
   Gear.Y:= Gear.Y + 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   348
   if not HHTestCollisionYwithGear(Gear, 1) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   349
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   350
   Gear.Y:= Gear.Y + 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   351
   if not HHTestCollisionYwithGear(Gear, 1) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   352
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   353
   Gear.Y:= Gear.Y + 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   354
   if not HHTestCollisionYwithGear(Gear, 1) 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
   Gear.Y:= Gear.Y + 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   357
   if not HHTestCollisionYwithGear(Gear, 1) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   358
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   359
   Gear.Y:= Gear.Y + 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   360
   if not HHTestCollisionYwithGear(Gear, 1) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   361
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   362
      Gear.Y:= Gear.Y - 6;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   363
      Gear.dY:= 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   364
      Gear.dX:= 0.0000001 * Sign(Gear.dX);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   365
      Gear.State:= Gear.State or gstFalling
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   366
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   367
   end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   368
   end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   369
   end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   370
   end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   371
   end
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   372
   end;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   373
   SetAllHHToActive
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   374
   end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   375
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   376
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   377
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   378
procedure doStepHedgehogFree(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   379
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   380
if not HHTestCollisionYwithGear(Gear, 1) then
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.dY < 0) and HHTestCollisionYwithGear(Gear, -1) then Gear.dY:= 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   383
   Gear.State:= Gear.State or gstFalling or gstMoving;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   384
   Gear.dY:= Gear.dY + cGravity
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   385
   end else begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   386
   CheckHHDamage(Gear);
7
b472e4b1a106 Fixed problem with hedgehog physics when turn is over and hedgehog is jumping
unc0rr
parents: 4
diff changeset
   387
   if ((abs(Gear.dX) + abs(Gear.dY)) < 0.55)
b472e4b1a106 Fixed problem with hedgehog physics when turn is over and hedgehog is jumping
unc0rr
parents: 4
diff changeset
   388
      and ((Gear.State and gstHHJumping) <> 0) then Gear.dX:= 0.0000001 * Sign(Gear.dX);
b472e4b1a106 Fixed problem with hedgehog physics when turn is over and hedgehog is jumping
unc0rr
parents: 4
diff changeset
   389
   Gear.State:= Gear.State and not (gstFalling or gstHHJumping);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   390
   if Gear.dY > 0    then Gear.dY:= 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   391
   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
   392
   end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   393
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   394
if (Gear.State <> 0) and (Gear.CollIndex < High(Longword)) then DeleteCR(Gear);
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   395
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   396
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   397
if (Gear.State and gstMoving) <> 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   398
   if TestCollisionXwithGear(Gear, Sign(Gear.dX)) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   399
      if ((Gear.State and gstFalling) = 0) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   400
         if abs(Gear.dX) > 0.01 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   401
            if not TestCollisionXwithXYShift(Gear, 0, -1, Sign(Gear.dX)) then begin Gear.dX:= Gear.dX * 0.9; Gear.Y:= Gear.Y - 1 end else
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   402
            if not TestCollisionXwithXYShift(Gear, 0, -2, Sign(Gear.dX)) then begin Gear.dX:= Gear.dX * 0.9; Gear.Y:= Gear.Y - 2 end else
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   403
            if not TestCollisionXwithXYShift(Gear, 0, -3, Sign(Gear.dX)) then begin Gear.dX:= Gear.dX * 0.9; Gear.Y:= Gear.Y - 3 end else
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   404
            if not TestCollisionXwithXYShift(Gear, 0, -4, Sign(Gear.dX)) then begin Gear.dX:= Gear.dX * 0.9; Gear.Y:= Gear.Y - 4 end else
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   405
            if not TestCollisionXwithXYShift(Gear, 0, -5, Sign(Gear.dX)) then begin Gear.dX:= Gear.dX * 0.3; Gear.Y:= Gear.Y - 5 end else
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   406
            if abs(Gear.dX) > 0.02 then Gear.dX:= -0.5 * Gear.dX
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   407
                                   else begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   408
                                        Gear.State:= Gear.State and not gstMoving;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   409
                                        Gear.dX:= 0.0000001 * Sign(Gear.dX)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   410
                                        end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   411
                                   else begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   412
                                        Gear.State:= Gear.State and not gstMoving;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   413
                                        Gear.dX:= 0.0000001 * Sign(Gear.dX)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   414
                                        end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   415
         else Gear.dX:= -0.8 * Gear.dX;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   416
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   417
if ((Gear.State and gstFalling) = 0)and
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   418
   (sqr(Gear.dX) + sqr(Gear.dY) < 0.0008) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   419
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   420
   Gear.State:= Gear.State and not gstMoving;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   421
   Gear.dX:= 0.0000001 * Sign(Gear.dX);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   422
   Gear.dY:= 0
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   423
   end else Gear.State:= Gear.State or      gstMoving;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   424
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   425
if (Gear.State and gstMoving) <> 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   426
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   427
   Gear.X:= Gear.X + Gear.dX;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   428
   Gear.Y:= Gear.Y + Gear.dY
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   429
   end else
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   430
   if Gear.Health = 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   431
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   432
      if AllInactive then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   433
         begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   434
         doMakeExplosion(round(Gear.X), round(Gear.Y), 30, EXPLAutoSound);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   435
         AddGear(round(Gear.X), round(Gear.Y), gtGrave, 0).Hedgehog:= Gear.Hedgehog;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   436
         DeleteGear(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   437
         SetAllToActive
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   438
         end;
7
b472e4b1a106 Fixed problem with hedgehog physics when turn is over and hedgehog is jumping
unc0rr
parents: 4
diff changeset
   439
      AllInactive:= false;  
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   440
      exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   441
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   442
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   443
AllInactive:= false;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   444
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   445
if (not CheckGearDrowning(Gear)) and
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   446
   ((Gear.State and gstMoving) = 0) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   447
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   448
      Gear.State:= 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   449
      Gear.Active:= false;
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 32
diff changeset
   450
      AddIntersectorsCR(Gear);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   451
      exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   452
      end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   453
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   454
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   455
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   456
procedure doStepHedgehog(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   457
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   458
if (Gear.Message and gm_Destroy) <> 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   459
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   460
   DeleteGear(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   461
   exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   462
   end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   463
if (Gear.State and gstHHDriven) = 0 then doStepHedgehogFree(Gear)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   464
                                    else doStepHedgehogDriven(Gear)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   465
end;