hedgewars/GSHandlers.inc
author unc0rr
Wed, 06 Jun 2007 21:27:12 +0000
changeset 538 74219eadab5e
parent 537 4d2e60623e44
child 540 b06c5aace2fa
permissions -rw-r--r--
- Various small fixes - Current hh moves like others (fixes some issues of new collision system)
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
393
db01cc79f278 Update copyright information
unc0rr
parents: 374
diff changeset
     3
 * Copyright (c) 2004-2007 Andrey Korotaev <unC0Rr@gmail.com>
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     4
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     8
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
    12
 * GNU General Public License for more details.
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    13
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
    15
 * along with this program; if not, write to the Free Software
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    17
 *)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    18
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    19
procedure doStepDrowningGear(Gear: PGear); forward;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    20
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    21
function CheckGearDrowning(Gear: PGear): boolean;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    22
begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
    23
if cWaterLine < hwRound(Gear^.Y) + Gear^.Radius then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    24
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    25
   CheckGearDrowning:= true;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    26
   Gear^.State:= gstDrowning;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    27
   Gear^.doStep:= @doStepDrowningGear;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    28
   PlaySound(sndSplash, false)
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    29
   end else
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    30
   CheckGearDrowning:= false
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    31
end;
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
procedure CheckCollision(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    34
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    35
if TestCollisionXwithGear(Gear, hwSign(Gear^.X)) or TestCollisionYwithGear(Gear, hwSign(Gear^.Y))
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    36
   then Gear^.State:= Gear^.State or      gstCollision
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    37
   else Gear^.State:= Gear^.State and not gstCollision
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    38
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    39
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    40
procedure CheckHHDamage(Gear: PGear);
522
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
    41
var dmg: Longword;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    42
begin
522
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
    43
if _0_4 < Gear^.dY then
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
    44
   begin
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
    45
   dmg:= 1 + hwRound((hwAbs(Gear^.dY) - _0_4) * 70);
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
    46
   inc(Gear^.Damage, dmg);
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
    47
   AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y) + cHHRadius, dmg, Gear);
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
    48
   end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    49
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    50
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    51
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    52
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    53
procedure CalcRotationDirAngle(Gear: PGear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    54
var dAngle: hwFloat;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    55
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    56
dAngle:= (hwAbs(Gear^.dX) + hwAbs(Gear^.dY)) * _0_1;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    57
if not Gear^.dX.isNegative then Gear^.DirAngle:= Gear^.DirAngle + dAngle
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    58
                else Gear^.DirAngle:= Gear^.DirAngle - dAngle;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
    59
if Gear^.DirAngle.isNegative then Gear^.DirAngle:= Gear^.DirAngle + _16
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
    60
else if _16 < Gear^.DirAngle then Gear^.DirAngle:= Gear^.DirAngle - _16
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    61
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    62
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    63
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    64
procedure doStepDrowningGear(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    65
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    66
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    67
Gear^.Y:= Gear^.Y + cDrownSpeed;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    68
if hwRound(Gear^.Y) > Gear^.Radius + cWaterLine + cVisibleWater then DeleteGear(Gear)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    69
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    70
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    71
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    72
procedure doStepFallingGear(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    73
begin
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    74
Gear^.State:= Gear^.State and not gstCollision;
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    75
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    76
if Gear^.dY.isNegative then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    77
   begin
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    78
   Gear^.State:= Gear^.State or gstFalling;
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    79
   if TestCollisionYwithGear(Gear, -1) then
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    80
      begin
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    81
      Gear^.dX:=   Gear^.dX * Gear^.Friction;
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    82
      Gear^.dY:= - Gear^.dY * Gear^.Elasticity;
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    83
      Gear^.State:= Gear^.State or gstCollision
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    84
      end
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    85
   end else
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    86
   if TestCollisionYwithGear(Gear, 1) then
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    87
      begin
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    88
      Gear^.State:= Gear^.State and not gstFalling;
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    89
      Gear^.dX:=   Gear^.dX * Gear^.Friction;
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    90
      Gear^.dY:= - Gear^.dY * Gear^.Elasticity;
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    91
      Gear^.State:= Gear^.State or gstCollision
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    92
      end else Gear^.State:= Gear^.State or gstFalling;
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    93
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    94
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    95
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    96
   Gear^.dX:= - Gear^.dX * Gear^.Elasticity;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    97
   Gear^.State:= Gear^.State or gstCollision
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    98
   end;
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    99
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   100
if (Gear^.State and gstFalling) <> 0 then Gear^.dY:= Gear^.dY + cGravity;
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   101
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   102
Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   103
Gear^.Y:= Gear^.Y + Gear^.dY;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   104
CheckGearDrowning(Gear);
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   105
if (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) < _0_0002) and
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   106
   ((Gear^.State and gstFalling) = 0) then Gear^.State:= Gear^.State and not gstMoving
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   107
                                      else Gear^.State:= Gear^.State or      gstMoving
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   108
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   109
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   110
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   111
procedure doStepCloud(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   112
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   113
Gear^.X:= Gear^.X + cWindSpeed * 200 + Gear^.dX;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   114
if hwRound(Gear^.Y) > -160 then Gear^.dY:= Gear^.dY - _1div50000
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   115
                           else Gear^.dY:= Gear^.dY + _1div50000;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   116
Gear^.Y:= Gear^.Y + Gear^.dY;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   117
if hwRound(Gear^.X) < -cScreenWidth - 256 then Gear^.X:= int2hwFloat(cScreenWidth + 2048) else
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   118
if hwRound(Gear^.X) > cScreenWidth + 2048 then Gear^.X:= int2hwFloat(-cScreenWidth - 256)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   119
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   120
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   121
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   122
procedure doStepBomb(Gear: PGear);
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   123
var i: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   124
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   125
AllInactive:= false;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   126
doStepFallingGear(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   127
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   128
if Gear^.Timer = 0 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   129
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   130
   case Gear^.Kind of
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   131
        gtAmmo_Bomb: doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
78
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   132
      gtClusterBomb: begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   133
                     doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound);
78
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   134
                     for i:= 0 to 4 do
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   135
                         AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtCluster, 0, (getrandom - _0_5) * _0_2, (getrandom - _3) * _0_08, 0);
78
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   136
                     end
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   137
        end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   138
   DeleteGear(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   139
   exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   140
   end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   141
CalcRotationDirAngle(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   142
if (Gear^.State and (gstCollision or gstMoving)) = (gstCollision or gstMoving) then PlaySound(sndGrenadeImpact, false)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   143
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   144
78
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   145
procedure doStepCluster(Gear: PGear);
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   146
begin
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   147
AllInactive:= false;
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   148
doStepFallingGear(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   149
if (Gear^.State and gstCollision) <> 0 then
78
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   150
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   151
   doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 20, EXPLAutoSound);
78
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   152
   DeleteGear(Gear);
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   153
   exit
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   154
   end;
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   155
if (GameTicks and $1F) = 0 then
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   156
   AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0)
78
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   157
end;
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   158
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   159
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   160
procedure doStepGrenade(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   161
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   162
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   163
Gear^.dX:= Gear^.dX + cWindSpeed;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   164
doStepFallingGear(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   165
if (Gear^.State and gstCollision) <> 0 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   166
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   167
   doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   168
   DeleteGear(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   169
   exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   170
   end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   171
if (GameTicks and $3F) = 0 then
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   172
   AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   173
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   174
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   175
////////////////////////////////////////////////////////////////////////////////
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   176
procedure doStepHealthTagWork(Gear: PGear);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   177
begin
522
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   178
if Gear^.Kind = gtHealthTag then
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   179
   AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   180
dec(Gear^.Timer);
522
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   181
Gear^.Y:= Gear^.Y + Gear^.dY;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   182
if Gear^.Timer = 0 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   183
   begin
522
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   184
   if Gear^.Kind = gtHealthTag then
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   185
      PHedgehog(Gear^.Hedgehog)^.Gear^.Active:= true; // to let current hh die
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   186
   DeleteGear(Gear)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   187
   end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   188
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   189
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
   190
procedure doStepHealthTagWorkUnderWater(Gear: PGear);
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
   191
begin
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
   192
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   193
Gear^.Y:= Gear^.Y - _0_08;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   194
if hwRound(Gear^.Y) < cWaterLine + 10 then
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
   195
   DeleteGear(Gear)
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
   196
end;
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
   197
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   198
procedure doStepHealthTag(Gear: PGear);
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   199
var s: shortstring;
522
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   200
    font: THWFont;
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   201
begin
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   202
AllInactive:= false;
522
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   203
if Gear^.Kind = gtHealthTag then
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   204
   begin
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   205
   font:= fnt16;
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   206
   Gear^.dY:= -_0_08
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   207
   end else
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   208
   begin
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   209
   font:= fntSmall;
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   210
   Gear^.dY:= -_0_02
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   211
   end;
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   212
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   213
str(Gear^.State, s);
522
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   214
Gear^.Surf:= RenderString(s, PHedgehog(Gear^.Hedgehog)^.Team^.Color, font);
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   215
if hwRound(Gear^.Y) < cWaterLine then Gear^.doStep:= @doStepHealthTagWork
522
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   216
                                 else Gear^.doStep:= @doStepHealthTagWorkUnderWater;
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   217
Gear^.Y:= Gear^.Y - int2hwFloat(Gear^.Surf^.h)
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   218
end;
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   219
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   220
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   221
procedure doStepGrave(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   222
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   223
AllInactive:= false;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   224
if Gear^.dY.isNegative then
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   225
   if TestCollisionY(Gear, -1) then Gear^.dY:= _0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   226
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   227
if not Gear^.dY.isNegative then
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 57
diff changeset
   228
   if TestCollisionY(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   229
      begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   230
      Gear^.dY:= - Gear^.dY * Gear^.Elasticity;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   231
      if Gear^.dY > - _1div1024 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   232
         begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   233
         Gear^.Active:= false;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   234
         exit
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   235
         end else if Gear^.dY < - _0_03 then PlaySound(sndGraveImpact, false)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   236
      end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   237
Gear^.Y:= Gear^.Y + Gear^.dY;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   238
CheckGearDrowning(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   239
Gear^.dY:= Gear^.dY + cGravity
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   240
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   241
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   242
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   243
procedure doStepUFOWork(Gear: PGear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   244
var t: hwFloat;
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   245
    y: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   246
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   247
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   248
t:= Distance(Gear^.dX, Gear^.dY);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   249
Gear^.dX:= Gear^.Elasticity * (Gear^.dX + _0_000004 * (TargetPoint.X - hwRound(Gear^.X)));
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   250
Gear^.dY:= Gear^.Elasticity * (Gear^.dY + _0_000004 * (TargetPoint.Y - hwRound(Gear^.Y)));
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   251
t:= t / Distance(Gear^.dX, Gear^.dY);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   252
Gear^.dX:= Gear^.dX * t;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   253
Gear^.dY:= Gear^.dY * t;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   254
Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   255
Gear^.Y:= Gear^.Y + Gear^.dY;
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   256
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   257
if (GameTicks and $3F) = 0 then
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   258
   begin
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   259
   y:= hwRound(Gear^.Y);
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   260
   if y + Gear^.Radius < cWaterLine then
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   261
      AddGear(hwRound(Gear^.X), y, gtSmokeTrace, 0, _0, _0, 0);
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   262
   end;
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   263
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   264
CheckCollision(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   265
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   266
if ((Gear^.State and gstCollision) <> 0) or (Gear^.Timer = 0) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   267
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   268
   doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   269
   DeleteGear(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   270
   end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   271
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   272
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   273
procedure doStepUFO(Gear: PGear);
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
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   276
Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   277
Gear^.Y:= Gear^.Y + Gear^.dY;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   278
Gear^.dY:= Gear^.dY + cGravity;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   279
CheckCollision(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   280
if (Gear^.State and gstCollision) <> 0 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   281
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   282
   doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   283
   DeleteGear(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   284
   exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   285
   end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   286
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   287
if Gear^.Timer = 0 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   288
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   289
   Gear^.Timer:= 5000;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   290
   Gear^.doStep:= @doStepUFOWork
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   291
   end;
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
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
procedure doStepShotgunShot(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   296
var i: LongWord;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   297
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   298
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   299
if Gear^.Timer > 0 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   300
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   301
   dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   302
   if Gear^.Timer = 0 then PlaySound(sndShotgunFire, false);
4
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
i:= 200;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   306
repeat
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   307
Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   308
Gear^.Y:= Gear^.Y + Gear^.dY;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   309
CheckCollision(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   310
if (Gear^.State and gstCollision) <> 0 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   311
   begin
506
0889d833d47e - A good implementation of shotgun
unc0rr
parents: 505
diff changeset
   312
   Gear^.X:= Gear^.X + Gear^.dX * 8;
0889d833d47e - A good implementation of shotgun
unc0rr
parents: 505
diff changeset
   313
   Gear^.Y:= Gear^.Y + Gear^.dY * 8;
0889d833d47e - A good implementation of shotgun
unc0rr
parents: 505
diff changeset
   314
   ShotgunShot(Gear);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   315
   DeleteGear(Gear);
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   316
   AfterAttack;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   317
   exit
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
dec(i)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   320
until i = 0;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   321
if (Gear^.X < _0) or (Gear^.Y < _0) or (Gear^.X > _2048) or (Gear^.Y > _1024) then
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   322
   begin
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   323
   DeleteGear(Gear);
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   324
   AfterAttack
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   325
   end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   326
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   327
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   328
////////////////////////////////////////////////////////////////////////////////
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   329
procedure doStepDEagleShot(Gear: PGear);
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   330
var i, x, y: LongWord;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   331
    oX, oY: hwFloat;
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   332
begin
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   333
AllInactive:= false;
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   334
i:= 80;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   335
oX:= Gear^.X;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   336
oY:= Gear^.Y;
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   337
repeat
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   338
  Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   339
  Gear^.Y:= Gear^.Y + Gear^.dY;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   340
  x:= hwRound(Gear^.X);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   341
  y:= hwRound(Gear^.Y);
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   342
  if ((y and $FFFFFC00) = 0) and ((x and $FFFFF800) = 0)
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   343
     and (Land[y, x] <> 0) then inc(Gear^.Damage);
519
981df6f6e2a9 - Fix desert eagle
unc0rr
parents: 517
diff changeset
   344
  if Gear^.Damage > 5 then AmmoShove(Gear, 7, 20);
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   345
  dec(i)
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   346
until (i = 0) or (Gear^.Damage > Gear^.Health);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   347
if Gear^.Damage > 0 then
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   348
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   349
   DrawTunnel(oX, oY, Gear^.dX, Gear^.dY, 82 - i, 1);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   350
   dec(Gear^.Health, Gear^.Damage);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   351
   Gear^.Damage:= 0
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   352
   end;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   353
if (Gear^.Health <= 0) or (Gear^.X < _0) or (Gear^.Y < _0) or (Gear^.X > _2048) or (Gear^.Y > _1024) then
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   354
   DeleteGear(Gear)
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   355
end;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   356
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   357
////////////////////////////////////////////////////////////////////////////////
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   358
procedure doStepActionTimer(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   359
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   360
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   361
case Gear^.Kind of
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   362
    gtATStartGame: begin
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   363
                   AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   364
                   if Gear^.Timer = 0 then
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   365
                      AddCaption(trmsg[sidStartFight], $FFFFFF, capgrpGameState);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   366
                   end;
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   367
 gtATSmoothWindCh: begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   368
                   if Gear^.Timer = 0 then
6
9c1f00e7b43e Smooth change wind bar
unc0rr
parents: 4
diff changeset
   369
                      begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   370
                      if WindBarWidth < Gear^.Tag then inc(WindBarWidth)
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   371
                         else if WindBarWidth > Gear^.Tag then dec(WindBarWidth);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   372
                      if WindBarWidth <> Gear^.Tag then Gear^.Timer:= 10;
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   373
                      end
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   374
                   end;
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   375
   gtATFinishGame: begin
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   376
                   AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   377
                   if Gear^.Timer = 0 then
113
d975a426ebf7 - Many small fixes in engine
unc0rr
parents: 109
diff changeset
   378
                      begin
d975a426ebf7 - Many small fixes in engine
unc0rr
parents: 109
diff changeset
   379
                      SendIPC('N');
324
f4c109c82a0c Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents: 306
diff changeset
   380
                      SendIPC('q');
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   381
                      GameState:= gsExit
113
d975a426ebf7 - Many small fixes in engine
unc0rr
parents: 109
diff changeset
   382
                      end
6
9c1f00e7b43e Smooth change wind bar
unc0rr
parents: 4
diff changeset
   383
                   end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   384
     end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   385
if Gear^.Timer = 0 then DeleteGear(Gear)
4
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
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   388
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   389
procedure doStepPickHammerWork(Gear: PGear);
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   390
var i, ei: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   391
    HHGear: PGear;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   392
begin
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   393
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   394
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   395
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   396
if (Gear^.Timer = 0)or((Gear^.Message and gm_Destroy) <> 0)or((HHGear^.State and gstHHDriven) = 0) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   397
   begin
282
b1e3387389b6 - Pickhammer sound
unc0rr
parents: 263
diff changeset
   398
   StopSound(sndPickhammer);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   399
   DeleteGear(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   400
   AfterAttack;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   401
   exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   402
   end;
422
12295a8b8b2f Tune pickhammer
unc0rr
parents: 415
diff changeset
   403
   
12295a8b8b2f Tune pickhammer
unc0rr
parents: 415
diff changeset
   404
if (Gear^.Timer mod 33) = 0 then
12295a8b8b2f Tune pickhammer
unc0rr
parents: 415
diff changeset
   405
   doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y) + 6, 6, EXPLDontDraw);
12295a8b8b2f Tune pickhammer
unc0rr
parents: 415
diff changeset
   406
12295a8b8b2f Tune pickhammer
unc0rr
parents: 415
diff changeset
   407
if (Gear^.Timer mod 47) = 0 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   408
   begin
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   409
   i:= hwRound(Gear^.X) - Gear^.Radius - LongInt(GetRandom(2));
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   410
   ei:= hwRound(Gear^.X) + Gear^.Radius + LongInt(GetRandom(2));
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   411
   while i <= ei do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   412
         begin
422
12295a8b8b2f Tune pickhammer
unc0rr
parents: 415
diff changeset
   413
         DrawExplosion(i, hwRound(Gear^.Y) + 3, 3);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   414
         inc(i, 1)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   415
         end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   416
   Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   417
   Gear^.Y:= Gear^.Y + _1_9;
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   418
   SetAllHHToActive;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   419
   end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   420
if TestCollisionYwithGear(Gear, 1) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   421
   begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   422
   Gear^.dY:= _0;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   423
   SetLittle(HHGear^.dX);
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   424
   HHGear^.dY:= _0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   425
   end else
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   426
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   427
   Gear^.dY:= Gear^.dY + cGravity;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   428
   Gear^.Y:= Gear^.Y + Gear^.dY;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   429
   if Gear^.Y > _1024 then Gear^.Timer:= 1
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   430
   end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   431
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   432
Gear^.X:= Gear^.X + HHGear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   433
HHGear^.X:= Gear^.X;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   434
HHGear^.Y:= Gear^.Y - int2hwFloat(cHHRadius);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   435
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   436
if (Gear^.Message and gm_Attack) <> 0 then
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   437
   if (Gear^.State and gsttmpFlag) <> 0 then Gear^.Timer:= 1 else else
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   438
   if (Gear^.State and gsttmpFlag) = 0 then Gear^.State:= Gear^.State or gsttmpFlag;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   439
if ((Gear^.Message and gm_Left) <> 0) then Gear^.dX:= - _0_3 else
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   440
   if ((Gear^.Message and gm_Right) <> 0) then Gear^.dX:= _0_3
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   441
                                          else Gear^.dX:= _0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   442
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   443
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   444
procedure doStepPickHammer(Gear: PGear);
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   445
var i, y: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   446
    ar: TRangeArray;
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
i:= 0;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   449
y:= hwRound(Gear^.Y) - cHHRadius * 2;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   450
while y < hwRound(Gear^.Y) do
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   451
   begin
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   452
   ar[i].Left := hwRound(Gear^.X) - Gear^.Radius - LongInt(GetRandom(2));
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   453
   ar[i].Right:= hwRound(Gear^.X) + Gear^.Radius + LongInt(GetRandom(2));
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   454
   inc(y, 2);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   455
   inc(i)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   456
   end;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   457
DrawHLinesExplosions(@ar, 3, hwRound(Gear^.Y) - cHHRadius * 2, 2, Pred(i));
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   458
Gear^.dY:= PHedgehog(Gear^.Hedgehog)^.Gear^.dY;
282
b1e3387389b6 - Pickhammer sound
unc0rr
parents: 263
diff changeset
   459
PlaySound(sndPickhammer, true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   460
doStepPickHammerWork(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   461
Gear^.doStep:= @doStepPickHammerWork
4
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
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   464
////////////////////////////////////////////////////////////////////////////////
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   465
var BTPrevAngle, BTSteps: LongInt;
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   466
303
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   467
procedure doStepBlowTorchWork(Gear: PGear);
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   468
var HHGear: PGear;
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   469
    b: boolean;
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   470
begin
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   471
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   472
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   473
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
303
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   474
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   475
HedgehogChAngle(HHGear);
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   476
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   477
b:= false;
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   478
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   479
if abs(LongInt(HHGear^.Angle) - BTPrevAngle) > 7  then
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   480
   begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   481
   Gear^.dX:= SignAs(AngleSin(HHGear^.Angle) * _0_5, HHGear^.dX);
355
40c68869899e Small fixes to bring engine to life
unc0rr
parents: 351
diff changeset
   482
   Gear^.dY:= AngleCos(HHGear^.Angle) * ( - _0_5);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   483
   BTPrevAngle:= HHGear^.Angle;
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 357
diff changeset
   484
   b:= true
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   485
   end;
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   486
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   487
if Gear^.Timer mod cHHStepTicks = 0 then
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   488
   begin
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   489
   b:= true;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   490
   if Gear^.dX.isNegative then HHGear^.Message:= (HHGear^.Message or gm_Left) and not gm_Right
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   491
                          else HHGear^.Message:= (HHGear^.Message or gm_Right) and not gm_Left;
357
165a040e4cfa - Fix Blow Torch and Air Attack
unc0rr
parents: 355
diff changeset
   492
165a040e4cfa - Fix Blow Torch and Air Attack
unc0rr
parents: 355
diff changeset
   493
   HHGear^.State:= HHGear^.State and not gstAttacking;
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   494
   HedgehogStep(HHGear);
357
165a040e4cfa - Fix Blow Torch and Air Attack
unc0rr
parents: 355
diff changeset
   495
   HHGear^.State:= HHGear^.State or gstAttacking;
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   496
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   497
   inc(BTSteps);
511
2b5b9e00419d - Further work on new collisions implementation
unc0rr
parents: 506
diff changeset
   498
   if BTSteps = 7 then
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   499
      begin
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   500
      BTSteps:= 0;
511
2b5b9e00419d - Further work on new collisions implementation
unc0rr
parents: 506
diff changeset
   501
      Gear^.X:= HHGear^.X + Gear^.dX * (cHHRadius + cBlowTorchC);
2b5b9e00419d - Further work on new collisions implementation
unc0rr
parents: 506
diff changeset
   502
      Gear^.Y:= HHGear^.Y + Gear^.dY * (cHHRadius + cBlowTorchC);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   503
      HHGear^.State:= HHGear^.State or gstNoDamage;
511
2b5b9e00419d - Further work on new collisions implementation
unc0rr
parents: 506
diff changeset
   504
      AmmoShove(Gear, 2, 14);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   505
      HHGear^.State:= HHGear^.State and not gstNoDamage
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   506
      end;
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   507
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   508
   if (HHGear^.State and gstFalling) <> 0 then Gear^.Timer:= 0
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   509
   end;
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   510
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   511
if b then
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   512
   DrawTunnel(HHGear^.X - Gear^.dX * cHHRadius, HHGear^.Y - _4 - Gear^.dY * cHHRadius + hwAbs(Gear^.dY) * 7,
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   513
              Gear^.dX, Gear^.dY,
306
7b61834edcf6 - Better blowtorch
unc0rr
parents: 305
diff changeset
   514
              cHHRadius * 5, cHHRadius * 2 + 6);
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   515
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   516
if (Gear^.Timer = 0) or ((HHGear^.Message and gm_Attack) <> 0) then
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   517
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   518
   HHGear^.Message:= 0;
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   519
   DeleteGear(Gear);
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   520
   AfterAttack
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   521
   end
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   522
end;
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   523
303
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   524
procedure doStepBlowTorch(Gear: PGear);
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   525
var HHGear: PGear;
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   526
begin
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   527
BTPrevAngle:= High(LongInt);
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   528
BTSteps:= 0;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   529
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   530
HHGear^.Message:= 0;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   531
Gear^.doStep:= @doStepBlowTorchWork
303
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   532
end;
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   533
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   534
////////////////////////////////////////////////////////////////////////////////
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   535
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   536
procedure doStepRopeWork(Gear: PGear);
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   537
const flCheck: boolean = false;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   538
var HHGear: PGear;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   539
    len, cs, cc, tx, ty: hwFloat;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   540
    lx, ly: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   541
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   542
    procedure DeleteMe;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   543
    begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   544
      with HHGear^ do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   545
           begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   546
           Message:= Message and not gm_Attack;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   547
           State:= State or gstFalling;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   548
           end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   549
      DeleteGear(Gear);
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
   550
      OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   551
      ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   552
    end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   553
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   554
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   555
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   556
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   557
if ((HHGear^.State and gstHHDriven) = 0)
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   558
   or (CheckGearDrowning(HHGear)) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   559
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   560
   DeleteMe;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   561
   exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   562
   end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   563
Gear^.dX:= HHGear^.X - Gear^.X;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   564
Gear^.dY:= HHGear^.Y - Gear^.Y;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   565
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   566
if (Gear^.Message and gm_Left  <> 0) then HHGear^.dX:= HHGear^.dX - _0_0002 else
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   567
if (Gear^.Message and gm_Right <> 0) then HHGear^.dX:= HHGear^.dX + _0_0002;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   568
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   569
if not TestCollisionYwithGear(HHGear, 1) then HHGear^.dY:= HHGear^.dY + cGravity;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   570
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   571
cs:= Gear^.dY + HHGear^.dY;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   572
cc:= Gear^.dX + HHGear^.dX;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   573
len:= _1 / Distance(cc, cs);
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   574
cc:= cc * len;
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   575
cs:= cs * len;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   576
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   577
flCheck:= not flCheck;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   578
if flCheck then  // check whether rope needs dividing
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   579
   begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   580
   len:= Gear^.Elasticity - _20;
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   581
   while len > _5 do
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   582
         begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   583
         tx:= cc*len;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   584
         ty:= cs*len;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   585
         lx:= hwRound(Gear^.X + tx) + hwSign(HHGear^.dX);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   586
         ly:= hwRound(Gear^.Y + ty) + hwSign(HHGear^.dY);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   587
         if ((ly and $FFFFFC00) = 0) and ((lx and $FFFFF800) = 0)and (Land[ly, lx] <> 0) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   588
           begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   589
           with RopePoints.ar[RopePoints.Count] do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   590
                begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   591
                X:= Gear^.X;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   592
                Y:= Gear^.Y;
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 358
diff changeset
   593
                if RopePoints.Count = 0 then RopePoints.HookAngle:= DxDy2Angle32(Gear^.dY, Gear^.dX);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   594
                b:= (cc * HHGear^.dY) > (cs * HHGear^.dX);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   595
                dLen:= len
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   596
                end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   597
           Gear^.X:= Gear^.X + tx;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   598
           Gear^.Y:= Gear^.Y + ty;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   599
           inc(RopePoints.Count);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   600
           Gear^.Elasticity:= Gear^.Elasticity - len;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   601
           Gear^.Friction:= Gear^.Friction - len;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   602
           break
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   603
           end;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   604
         len:= len - _3
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   605
         end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   606
   end else
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   607
   if RopePoints.Count > 0 then // check whether the last dividing point could be removed
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   608
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   609
      tx:= RopePoints.ar[Pred(RopePoints.Count)].X;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   610
      ty:= RopePoints.ar[Pred(RopePoints.Count)].Y;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   611
      if RopePoints.ar[Pred(RopePoints.Count)].b xor ((tx - Gear^.X) * (ty - HHGear^.Y) > (tx - HHGear^.X) * (ty - Gear^.Y)) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   612
         begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   613
         dec(RopePoints.Count);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   614
         Gear^.X:=RopePoints.ar[RopePoints.Count].X;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   615
         Gear^.Y:=RopePoints.ar[RopePoints.Count].Y;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   616
         Gear^.Elasticity:= Gear^.Elasticity + RopePoints.ar[RopePoints.Count].dLen;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   617
         Gear^.Friction:= Gear^.Friction + RopePoints.ar[RopePoints.Count].dLen
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   618
         end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   619
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   620
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   621
Gear^.dX:= HHGear^.X - Gear^.X;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   622
Gear^.dY:= HHGear^.Y - Gear^.Y;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   623
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   624
cs:= Gear^.dY + HHGear^.dY;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   625
cc:= Gear^.dX + HHGear^.dX;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   626
len:= _1 / Distance(cc, cs);
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   627
cc:= cc * len;
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   628
cs:= cs * len;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   629
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   630
HHGear^.dX:= HHGear^.X;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   631
HHGear^.dY:= HHGear^.Y;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   632
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   633
if ((Gear^.Message and gm_Down) <> 0) and (Gear^.Elasticity < Gear^.Friction) then
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   634
   if not (TestCollisionXwithGear(HHGear, hwSign(Gear^.dX))
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   635
        or TestCollisionYwithGear(HHGear, hwSign(Gear^.dY))) then Gear^.Elasticity:= Gear^.Elasticity + _0_3;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   636
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   637
if ((Gear^.Message and gm_Up) <> 0) and (Gear^.Elasticity > _30) then
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   638
   if not (TestCollisionXwithGear(HHGear, -hwSign(Gear^.dX))
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   639
        or TestCollisionYwithGear(HHGear, -hwSign(Gear^.dY))) then Gear^.Elasticity:= Gear^.Elasticity - _0_3;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   640
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   641
HHGear^.X:= Gear^.X + cc*Gear^.Elasticity;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   642
HHGear^.Y:= Gear^.Y + cs*Gear^.Elasticity;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   643
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   644
HHGear^.dX:= HHGear^.X - HHGear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   645
HHGear^.dY:= HHGear^.Y - HHGear^.dY;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   646
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   647
if TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   648
   HHGear^.dX:= -_0_6 * HHGear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   649
if TestCollisionYwithGear(HHGear, hwSign(HHGear^.dY)) then
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   650
   HHGear^.dY:= -_0_6 * HHGear^.dY;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   651
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   652
if (Gear^.Message and gm_Attack) <> 0 then
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   653
   if (Gear^.State and gsttmpFlag) <> 0 then DeleteMe else
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   654
else if (Gear^.State and gsttmpFlag) = 0 then Gear^.State:= Gear^.State or gsttmpFlag;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   655
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   656
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   657
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   658
procedure doStepRopeAttach(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   659
var HHGear: PGear;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   660
    tx, ty, tt: hwFloat;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   661
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   662
Gear^.X:= Gear^.X - Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   663
Gear^.Y:= Gear^.Y - Gear^.dY;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   664
Gear^.Elasticity:= Gear^.Elasticity + _1;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   665
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
517
ba560c17c24c - Don't kick cases by moving hedgehog
unc0rr
parents: 516
diff changeset
   666
DeleteCI(HHGear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   667
if (HHGear^.State and gstFalling) <> 0 then
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 57
diff changeset
   668
   if TestCollisionYwithGear(HHGear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   669
      begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   670
      HHGear^.dY:= _0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   671
      CheckHHDamage(HHGear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   672
      HHGear^.State:= HHGear^.State and not (gstFalling or gstHHJumping);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   673
      end else
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   674
      begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   675
      if TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then SetLittle(HHGear^.dX);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   676
      HHGear^.X:= HHGear^.X + HHGear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   677
      HHGear^.Y:= HHGear^.Y + HHGear^.dY;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   678
      Gear^.X:= Gear^.X + HHGear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   679
      Gear^.Y:= Gear^.Y + HHGear^.dY;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   680
      HHGear^.dY:= HHGear^.dY + cGravity;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   681
      tt:= Gear^.Elasticity;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   682
      tx:= _0;
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   683
      ty:= _0;
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   684
      while tt > _20 do
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   685
            begin
517
ba560c17c24c - Don't kick cases by moving hedgehog
unc0rr
parents: 516
diff changeset
   686
            if  TestCollisionXwithXYShift(Gear, tx, hwRound(ty), -hwSign(Gear^.dX))
ba560c17c24c - Don't kick cases by moving hedgehog
unc0rr
parents: 516
diff changeset
   687
             or TestCollisionYwithXYShift(Gear, hwRound(tx), hwRound(ty), -hwSign(Gear^.dY)) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   688
                begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   689
                Gear^.X:= Gear^.X + tx;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   690
                Gear^.Y:= Gear^.Y + ty;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   691
                Gear^.Elasticity:= tt;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   692
                Gear^.doStep:= @doStepRopeWork;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   693
                with HHGear^ do State:= State and not gstAttacking;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   694
                tt:= _0
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   695
                end;
517
ba560c17c24c - Don't kick cases by moving hedgehog
unc0rr
parents: 516
diff changeset
   696
            tx:= tx + Gear^.dX + Gear^.dX;
ba560c17c24c - Don't kick cases by moving hedgehog
unc0rr
parents: 516
diff changeset
   697
            ty:= ty + Gear^.dY + Gear^.dY;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   698
            tt:= tt - _2;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   699
            end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   700
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   701
CheckCollision(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   702
if (Gear^.State and gstCollision) <> 0 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   703
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   704
   Gear^.doStep:= @doStepRopeWork;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   705
   with HHGear^ do State:= State and not gstAttacking;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   706
   if Gear^.Elasticity < _10 then
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   707
      Gear^.Elasticity:= _10000;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   708
   end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   709
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   710
if (Gear^.Elasticity > Gear^.Friction) or ((Gear^.Message and gm_Attack) = 0) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   711
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   712
   with PHedgehog(Gear^.Hedgehog)^.Gear^ do
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   713
        begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   714
        State:= State and not gstAttacking;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   715
        Message:= Message and not gm_Attack
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   716
        end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   717
   DeleteGear(Gear)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   718
   end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   719
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   720
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   721
procedure doStepRope(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   722
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   723
Gear^.dX:= - Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   724
Gear^.dY:= - Gear^.dY;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   725
Gear^.doStep:= @doStepRopeAttach
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   726
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   727
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   728
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   729
procedure doStepSmokeTrace(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   730
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   731
inc(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   732
if Gear^.Timer > 64 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   733
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   734
   Gear^.Timer:= 0;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   735
   dec(Gear^.State)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   736
   end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   737
Gear^.dX:= Gear^.dX + cWindSpeed;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   738
Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   739
if Gear^.State = 0 then DeleteGear(Gear)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   740
end;
9
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   741
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   742
////////////////////////////////////////////////////////////////////////////////
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   743
procedure doStepExplosion(Gear: PGear);
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   744
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   745
inc(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   746
if Gear^.Timer > 75 then
9
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   747
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   748
   inc(Gear^.State);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   749
   Gear^.Timer:= 0;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   750
   if Gear^.State > 5 then DeleteGear(Gear)
9
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   751
   end;
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   752
end;
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   753
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   754
////////////////////////////////////////////////////////////////////////////////
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   755
procedure doStepMine(Gear: PGear);
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   756
begin
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   757
if (Gear^.State and (gstMoving or gstFalling)) <> 0 then
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   758
   begin
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   759
   DeleteCI(Gear);
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   760
   doStepFallingGear(Gear);
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   761
   if (Gear^.State and (gstMoving or gstFalling)) = 0 then
13
7a5db822fd3f - Show no crosshair when using mine
unc0rr
parents: 10
diff changeset
   762
      begin
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   763
      AddGearCI(Gear);
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   764
      Gear^.dX:= _0;
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   765
      Gear^.dY:= _0
13
7a5db822fd3f - Show no crosshair when using mine
unc0rr
parents: 10
diff changeset
   766
      end;
7a5db822fd3f - Show no crosshair when using mine
unc0rr
parents: 10
diff changeset
   767
   CalcRotationDirAngle(Gear);
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   768
   AllInactive:= false
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   769
   end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   770
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   771
if ((Gear^.State and gsttmpFlag) <> 0) then
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   772
   if ((Gear^.State and gstAttacking) = 0) then
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
   773
      begin
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   774
      if ((GameTicks and $F) = 0) then
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   775
         if CheckGearNear(Gear, gtHedgehog, 46, 32) <> nil then Gear^.State:= Gear^.State or gstAttacking
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
   776
      end else // gstAttacking <> 0
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   777
      begin
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   778
      AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   779
      if (Gear^.Timer and $FF) = 0 then PlaySound(sndMineTick, false);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   780
      if Gear^.Timer = 0 then
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   781
         begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   782
         doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
521
bc8fd78d7598 - Fix some collision bugs
unc0rr
parents: 520
diff changeset
   783
         DeleteGear(Gear);
bc8fd78d7598 - Fix some collision bugs
unc0rr
parents: 520
diff changeset
   784
         exit
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   785
         end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   786
      dec(Gear^.Timer);
13
7a5db822fd3f - Show no crosshair when using mine
unc0rr
parents: 10
diff changeset
   787
      end else // gsttmpFlag = 0
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   788
   if TurnTimeLeft = 0 then Gear^.State:= Gear^.State or gsttmpFlag;
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   789
end;
57
e1a77ae57065 - Fixed compiling .)
unc0rr
parents: 53
diff changeset
   790
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   791
////////////////////////////////////////////////////////////////////////////////
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   792
procedure doStepDynamite(Gear: PGear);
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   793
begin
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
   794
doStepFallingGear(Gear);
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
   795
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   796
if Gear^.Timer mod 166 = 0 then inc(Gear^.Tag);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   797
if Gear^.Timer = 0 then
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   798
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   799
   doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 75, EXPLAutoSound);
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
   800
   DeleteGear(Gear);
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
   801
   exit
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   802
   end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   803
dec(Gear^.Timer);
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   804
end;
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
   805
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   806
///////////////////////////////////////////////////////////////////////////////
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
   807
procedure doStepCase(Gear: PGear);
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   808
var i, x, y: LongInt;
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
   809
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   810
if (Gear^.Message and gm_Destroy) > 0 then
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   811
   begin
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   812
   DeleteGear(Gear);
435
25820c10c849 Better AI behavior
unc0rr
parents: 422
diff changeset
   813
   FreeActionsList;
441
f2920f08ea5f Fix hedgehog stopping after picking up bonus box
unc0rr
parents: 439
diff changeset
   814
   with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog] do
f2920f08ea5f Fix hedgehog stopping after picking up bonus box
unc0rr
parents: 439
diff changeset
   815
     if Gear <> nil then Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump);
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   816
   exit
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   817
   end;
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   818
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   819
if Gear^.Damage > 0 then
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   820
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   821
   x:= hwRound(Gear^.X);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   822
   y:= hwRound(Gear^.Y);
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   823
   DeleteGear(Gear);
89
f9db56409a86 - Fix various bugs
unc0rr
parents: 83
diff changeset
   824
   doMakeExplosion(x, y, 25, EXPLAutoSound);
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   825
   for i:= 0 to 63 do
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   826
       AddGear(x, y, gtFlame, 0, _0, _0, 0);
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   827
   exit
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   828
   end;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   829
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   830
if (Gear^.dY.QWordValue <> 0) or (not TestCollisionYwithGear(Gear, 1)) then
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
   831
   begin
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
   832
   AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   833
   Gear^.dY:= Gear^.dY + cGravity;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   834
   Gear^.Y:= Gear^.Y + Gear^.dY;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   835
   if (Gear^.dY.isNegative) and TestCollisionYwithGear(Gear, -1) then Gear^.dY:= _0 else
439
c336ed82e76d Fix bugs:
unc0rr
parents: 437
diff changeset
   836
   if (not Gear^.dY.isNegative) and TestCollisionYwithGear(Gear, 1) then
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
   837
      begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   838
      Gear^.dY:= - Gear^.dY * Gear^.Elasticity;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   839
      if Gear^.dY > - _0_001 then Gear^.dY:= _0
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   840
         else if Gear^.dY < - _0_03 then PlaySound(sndGraveImpact, false);
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
   841
      end;
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
   842
   CheckGearDrowning(Gear);
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
   843
   end;
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
   844
511
2b5b9e00419d - Further work on new collisions implementation
unc0rr
parents: 506
diff changeset
   845
if (Gear^.dY.QWordValue = 0) then AddGearCI(Gear)
2b5b9e00419d - Further work on new collisions implementation
unc0rr
parents: 506
diff changeset
   846
   else if (Gear^.dY.QWordValue <> 0) then DeleteCI(Gear)
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
   847
end;
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   848
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   849
////////////////////////////////////////////////////////////////////////////////
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   850
var thexchar: array[0..5] of record
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   851
                             oy, ny: LongInt;
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   852
                             team: PTeam;
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   853
                             end;
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   854
    thexchcnt: Longword;
143
3dacbd83209b - Many fixes to AI
unc0rr
parents: 113
diff changeset
   855
    currsorter: PGear;
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   856
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   857
procedure doStepTeamHealthSorterWork(Gear: PGear);
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   858
var i: LongInt;
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   859
begin
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   860
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   861
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   862
if (Gear^.Timer and 15) = 0 then
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   863
   for i:= 0 to Pred(thexchcnt) do
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   864
       with thexchar[i] do
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   865
            {$WARNINGS OFF}
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   866
            team^.DrawHealthY:= ny + (oy - ny) * Gear^.Timer div 640;
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   867
            {$WARNINGS ON}
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   868
if (Gear^.Timer = 0) or (currsorter <> Gear) then
143
3dacbd83209b - Many fixes to AI
unc0rr
parents: 113
diff changeset
   869
   begin
3dacbd83209b - Many fixes to AI
unc0rr
parents: 113
diff changeset
   870
   if currsorter = Gear then currsorter:= nil;
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   871
   DeleteGear(Gear)
143
3dacbd83209b - Many fixes to AI
unc0rr
parents: 113
diff changeset
   872
   end
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   873
end;
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   874
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   875
procedure doStepTeamHealthSorter(Gear: PGear);
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   876
var team: PTeam;
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   877
    i, t: Longword;
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   878
begin
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   879
AllInactive:= false;
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   880
team:= TeamsList;
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   881
i:= 0;
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   882
while team <> nil do
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   883
      begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   884
      thexchar[i].oy:= team^.DrawHealthY;
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   885
      thexchar[i].team:= team;
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   886
      inc(i);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   887
      team:= team^.Next
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   888
      end;
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   889
thexchcnt:= i;
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   890
for i:= 1 to thexchcnt do
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   891
    for t:= 0 to thexchcnt - 2 do
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   892
        if thexchar[t].team^.TeamHealthBarWidth > thexchar[Succ(t)].team^.TeamHealthBarWidth then
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   893
           begin
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   894
           thexchar[5]:= thexchar[t];
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   895
           thexchar[t]:= thexchar[Succ(t)];
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   896
           thexchar[Succ(t)]:= thexchar[5]
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   897
           end;
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   898
t:= cScreenHeight - 4;
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   899
for i:= 0 to Pred(thexchcnt) do
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   900
    with thexchar[i] do
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   901
         begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   902
         dec(t, team^.HealthRect.h + 2);
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   903
         ny:= t
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   904
         end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   905
Gear^.Timer:= 640;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   906
Gear^.doStep:= @doStepTeamHealthSorterWork;
143
3dacbd83209b - Many fixes to AI
unc0rr
parents: 113
diff changeset
   907
currsorter:= Gear
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   908
end;
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
   909
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   910
////////////////////////////////////////////////////////////////////////////////
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   911
procedure doStepShover(Gear: PGear);
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   912
var HHGear: PGear;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   913
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   914
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   915
HHGear^.State:= HHGear^.State or gstNoDamage;
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   916
AmmoShove(Gear, 30, 115);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   917
HHGear^.State:= HHGear^.State and not gstNoDamage;
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   918
DeleteGear(Gear)
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   919
end;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   920
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   921
////////////////////////////////////////////////////////////////////////////////
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   922
procedure doStepFlame(Gear: PGear);
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   923
begin
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   924
AllInactive:= false;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   925
if not TestCollisionYwithGear(Gear, 1) then
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   926
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   927
   Gear^.dX:= Gear^.dX + cWindSpeed;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   928
   Gear^.dY:= Gear^.dY + cGravity;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   929
   if hwAbs(Gear^.dX) > _0_1 then Gear^.dX:= Gear^.dX * _0_5;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   930
   if Gear^.dY > _0_1 then Gear^.dY:= Gear^.dY * _0_995;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   931
   Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   932
   Gear^.Y:= Gear^.Y + Gear^.dY;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   933
   if not (Gear^.Y < _1024) then
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   934
      begin
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   935
      DeleteGear(Gear);
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   936
      exit
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   937
      end
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   938
   end else begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   939
   if Gear^.Timer > 0 then dec(Gear^.Timer)
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   940
      else begin
506
0889d833d47e - A good implementation of shotgun
unc0rr
parents: 505
diff changeset
   941
//      doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 2, 0);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   942
      dec(Gear^.Health);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   943
      Gear^.Timer:= 1250 - Gear^.Angle * 12
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   944
      end
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   945
   end;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   946
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   947
if (((GameTicks div 8) mod 64) = Gear^.Angle) then
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   948
   AmmoFlameWork(Gear);
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   949
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   950
if Gear^.Health = 0 then
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   951
   DeleteGear(Gear)
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   952
end;
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   953
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   954
////////////////////////////////////////////////////////////////////////////////
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   955
procedure doStepFirePunchWork(Gear: PGear);
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   956
var HHGear: PGear;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   957
begin
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   958
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   959
if ((Gear^.Message and gm_Destroy) <> 0) then
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   960
   begin
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   961
   DeleteGear(Gear);
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   962
   AfterAttack;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   963
   exit
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   964
   end;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   965
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   966
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   967
if hwRound(HHGear^.Y) <= Gear^.Tag - 2 then
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   968
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   969
   Gear^.Tag:= hwRound(HHGear^.Y);
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   970
   DrawTunnel(HHGear^.X - int2hwFloat(cHHRadius), HHGear^.Y - _1, _0_5, _0, cHHRadius * 4, 2);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   971
   HHGear^.State:= HHGear^.State or gstNoDamage;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   972
   Gear^.Y:= HHGear^.Y;
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   973
   AmmoShove(Gear, 30, 40);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   974
   HHGear^.State:= HHGear^.State and not gstNoDamage
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   975
   end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   976
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   977
HHGear^.dY:= HHGear^.dY + cGravity;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   978
if not (HHGear^.dY.isNegative) then
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   979
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   980
   HHGear^.State:= HHGear^.State or gstFalling;
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   981
   DeleteGear(Gear);
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   982
   AfterAttack;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   983
   exit
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   984
   end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   985
HHGear^.Y:= HHGear^.Y + HHGear^.dY
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   986
end;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   987
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   988
procedure doStepFirePunch(Gear: PGear);
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   989
var HHGear: PGear;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   990
begin
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   991
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   992
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
514
fb8ba88a83c3 Fix firepunch regression
unc0rr
parents: 513
diff changeset
   993
DeleteCI(HHGear);
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   994
HHGear^.X:= int2hwFloat(hwRound(HHGear^.X)) - _0_5;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   995
SetLittle(HHGear^.dX);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   996
HHGear^.dY:= - _0_3;
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   997
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   998
Gear^.X:= HHGear^.X;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   999
Gear^.dX:= SignAs(_0_45, HHGear^.dX);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1000
Gear^.dY:= - _0_9;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1001
Gear^.doStep:= @doStepFirePunchWork;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1002
DrawTunnel(HHGear^.X - int2hwFloat(cHHRadius), HHGear^.Y + _1, _0_5, _0, cHHRadius * 4, 5);
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1003
end;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1004
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1005
////////////////////////////////////////////////////////////////////////////////
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1006
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1007
procedure doStepParachute(Gear: PGear);
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1008
var HHGear: PGear;
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1009
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1010
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1011
HHGear^.State:= HHGear^.State and not gstAttacking;
517
ba560c17c24c - Don't kick cases by moving hedgehog
unc0rr
parents: 516
diff changeset
  1012
DeleteCI(HHGear);
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1013
516
f682e134ac2e Fix using parachute while staying on the ground
unc0rr
parents: 514
diff changeset
  1014
inc(Gear^.Timer);
f682e134ac2e Fix using parachute while staying on the ground
unc0rr
parents: 514
diff changeset
  1015
212
c8c650b23e32 Parachute fixes
unc0rr
parents: 211
diff changeset
  1016
if TestCollisionYwithGear(HHGear, 1)
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1017
   or ((HHGear^.State and gstHHDriven) = 0)
212
c8c650b23e32 Parachute fixes
unc0rr
parents: 211
diff changeset
  1018
   or CheckGearDrowning(HHGear) then
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1019
   begin
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1020
   with HHGear^ do
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1021
        begin
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1022
        Message:= 0;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1023
        SetLittle(dx);
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1024
        dY:= _0;
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1025
        State:= State and not (gstAttacking or gstAttacked);
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1026
        State:= State or gstFalling;
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1027
        end;
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1028
   DeleteGear(Gear);
516
f682e134ac2e Fix using parachute while staying on the ground
unc0rr
parents: 514
diff changeset
  1029
   if Gear^.Timer > 10 then
f682e134ac2e Fix using parachute while staying on the ground
unc0rr
parents: 514
diff changeset
  1030
      begin
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1031
      OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^);
516
f682e134ac2e Fix using parachute while staying on the ground
unc0rr
parents: 514
diff changeset
  1032
      ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^)
f682e134ac2e Fix using parachute while staying on the ground
unc0rr
parents: 514
diff changeset
  1033
      end;
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1034
   exit
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1035
   end;
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1036
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1037
if not TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1038
   HHGear^.X:= HHGear^.X + cWindSpeed * 200;
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1039
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1040
if (Gear^.Message and gm_Left) <> 0 then HHGear^.X:= HHGear^.X - cMaxWindSpeed * 40
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1041
else if (Gear^.Message and gm_Right) <> 0 then HHGear^.X:= HHGear^.X + cMaxWindSpeed * 40;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1042
if (Gear^.Message and gm_Up) <> 0 then HHGear^.Y:= HHGear^.Y - cGravity * 40
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1043
else if (Gear^.Message and gm_Down) <> 0 then HHGear^.Y:= HHGear^.Y + cGravity * 40;
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1044
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1045
HHGear^.Y:= HHGear^.Y + cGravity * 100;
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1046
end;
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1047
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1048
////////////////////////////////////////////////////////////////////////////////
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1049
const cAirPlaneSpeed: hwFloat = (isNegative: false; QWordValue: 6012954214); // 1.4
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1050
      cBombsDistance: hwFloat = (isNegative: false; QWordValue: 128849018880); // 30
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1051
      cBombsSpeed   : hwFloat = (isNegative: false; QWordValue:  429496729);
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1052
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1053
procedure doStepAirAttackWork(Gear: PGear);
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1054
begin
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1055
AllInactive:= false;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1056
Gear^.X:= Gear^.X + cAirPlaneSpeed * Gear^.Tag;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1057
if (Gear^.Health > 0)and( not (Gear^.X < Gear^.dX))and(Gear^.X < Gear^.dX + cAirPlaneSpeed) then
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1058
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1059
   dec(Gear^.Health);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1060
   case Gear^.State of
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1061
        0: FollowGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtAirBomb, 0, cBombsSpeed * Gear^.Tag, _0, 0);
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1062
        1: FollowGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtMine,    0, cBombsSpeed * Gear^.Tag, _0, 0);
285
cdab49768c83 Mine Strike weapon
unc0rr
parents: 283
diff changeset
  1063
        end;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1064
   Gear^.dX:= Gear^.dX + cBombsDistance * Gear^.Tag
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1065
   end;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1066
if (hwRound(Gear^.X) > 3072) or (hwRound(Gear^.X) < -1024) then DeleteGear(Gear)
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1067
end;
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1068
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1069
procedure doStepAirAttack(Gear: PGear);
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1070
begin
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1071
AllInactive:= false;
408
6c3da4907d00 Airplane can fly from right to left
unc0rr
parents: 393
diff changeset
  1072
if Gear^.X.QWordValue = 0 then Gear^.Tag:=  1
6c3da4907d00 Airplane can fly from right to left
unc0rr
parents: 393
diff changeset
  1073
                          else Gear^.Tag:= -1;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1074
Gear^.X:= _1024 - _2048 * Gear^.Tag;
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1075
Gear^.Y:= -_128;
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1076
Gear^.dX:= int2hwFloat(TargetPoint.X) -
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1077
           cBombsDistance * _5 * Gear^.Tag / _2;
357
165a040e4cfa - Fix Blow Torch and Air Attack
unc0rr
parents: 355
diff changeset
  1078
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1079
if TargetPoint.Y - hwRound(Gear^.Y) > 0 then
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1080
   Gear^.dX:= Gear^.dX - cBombsSpeed * hwSqrt((int2hwFloat(TargetPoint.Y) - Gear^.Y) * 2 / cGravity) * Gear^.Tag;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1081
Gear^.Health:= 6;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1082
Gear^.doStep:= @doStepAirAttackWork
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1083
end;
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1084
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1085
////////////////////////////////////////////////////////////////////////////////
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1086
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1087
procedure doStepAirBomb(Gear: PGear);
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1088
begin
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1089
AllInactive:= false;
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1090
doStepFallingGear(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1091
if (Gear^.State and gstCollision) <> 0 then
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1092
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1093
   doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound);
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1094
   DeleteGear(Gear);
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1095
   exit
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1096
   end;
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1097
if (GameTicks and $3F) = 0 then
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1098
   AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0)
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1099
end;
409
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1100
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1101
////////////////////////////////////////////////////////////////////////////////
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1102
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1103
procedure doStepGirder(Gear: PGear);
415
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1104
var HHGear: PGear;
409
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1105
begin
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1106
AllInactive:= false;
415
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1107
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1108
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
409
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1109
if not TryPlaceOnLand(TargetPoint.X - SpritesData[sprAmGirder].Width div 2,
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1110
                      TargetPoint.Y - SpritesData[sprAmGirder].Height div 2,
520
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1111
                      sprAmGirder, Gear^.State, true) then
409
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1112
        begin
415
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1113
        HHGear^.Message:= HHGear^.Message and not gm_Attack;
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1114
        HHGear^.State:= HHGear^.State and not gstAttacking;
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1115
        HHGear^.State:= HHGear^.State or gstHHChooseTarget;
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1116
        DeleteGear(Gear);
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1117
        isCursorVisible:= true
409
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1118
        end
415
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1119
   else begin
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1120
        DeleteGear(Gear);
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1121
        AfterAttack
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1122
        end;
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1123
TargetPoint.X:= NoPointX
409
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1124
end;
520
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1125
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1126
////////////////////////////////////////////////////////////////////////////////
525
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1127
procedure doStepTeleportAfter(Gear: PGear);
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1128
var HHGear: PGear;
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1129
begin
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1130
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1131
HHGear^.Y:= HHGear^.Y + HHGear^.dY;
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1132
HHGear^.dY:= HHGear^.dY + cGravity;
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1133
if TestCollisionYwithGear(HHGear, 1) then
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1134
   begin
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1135
   DeleteGear(Gear);
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1136
   AfterAttack
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1137
   end
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1138
end;
520
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1139
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1140
procedure doStepTeleport(Gear: PGear);
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1141
var HHGear: PGear;
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1142
begin
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1143
AllInactive:= false;
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1144
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1145
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1146
if not TryPlaceOnLand(TargetPoint.X - SpritesData[sprHHTelepMask].Width div 2,
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1147
                      TargetPoint.Y - SpritesData[sprHHTelepMask].Height div 2,
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1148
                      sprHHTelepMask, 0, false) then
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1149
        begin
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1150
        HHGear^.Message:= HHGear^.Message and not gm_Attack;
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1151
        HHGear^.State:= HHGear^.State and not gstAttacking;
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1152
        HHGear^.State:= HHGear^.State or gstHHChooseTarget;
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1153
        DeleteGear(Gear);
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1154
        isCursorVisible:= true
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1155
        end
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1156
   else begin
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1157
        DeleteCI(HHGear);
525
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1158
        Gear^.doStep:= @doStepTeleportAfter;
520
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1159
        HHGear^.X:= int2hwFloat(TargetPoint.X);
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1160
        HHGear^.Y:= int2hwFloat(TargetPoint.Y);
525
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1161
        HHGear^.State:= HHGear^.State or gstFalling
520
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1162
        end;
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1163
TargetPoint.X:= NoPointX
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1164
end;
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1165
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1166
////////////////////////////////////////////////////////////////////////////////
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1167
procedure doStepSwitcherWork(Gear: PGear);
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1168
var HHGear: PGear;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1169
    Team: PTeam;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1170
    th: LongInt;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1171
    Msg, State: Longword;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1172
begin
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1173
AllInactive:= false;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1174
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1175
if (Gear^.Message and not gm_Switch) <> 0 then
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1176
   begin
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1177
   HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1178
   Msg:= Gear^.Message and not gm_Switch;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1179
   DeleteGear(Gear);
538
74219eadab5e - Various small fixes
unc0rr
parents: 537
diff changeset
  1180
   OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^);
74219eadab5e - Various small fixes
unc0rr
parents: 537
diff changeset
  1181
   ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^);
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1182
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1183
   HHGear:= CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear;
538
74219eadab5e - Various small fixes
unc0rr
parents: 537
diff changeset
  1184
   ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^);
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1185
   HHGear^.Message:= Msg;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1186
   exit
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1187
   end;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1188
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1189
if (Gear^.Message and gm_Switch) <> 0 then
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1190
   begin
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1191
   HHGear:= CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1192
   HHGear^.Message:= HHGear^.Message and not gm_Switch;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1193
   State:= HHGear^.State;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1194
   HHGear^.State:= 0;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1195
   HHGear^.Active:= false;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1196
   HHGear^.Z:= cHHZ;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1197
   RemoveGearFromList(HHGear);
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1198
   InsertGearToList(HHGear);
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1199
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1200
   th:= CurrentTeam^.CurrHedgehog;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1201
   repeat
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1202
     CurrentTeam^.CurrHedgehog:= Succ(CurrentTeam^.CurrHedgehog) mod (cMaxHHIndex + 1);
537
4d2e60623e44 Fix typo
unc0rr
parents: 534
diff changeset
  1203
   until (CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear <> nil) or (CurrentTeam^.CurrHedgehog = th);
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1204
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1205
   HHGear:= CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1206
   HHGear^.State:= State;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1207
   HHGear^.Active:= true;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1208
   FollowGear:= HHGear;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1209
   HHGear^.Z:= cCurrHHZ;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1210
   RemoveGearFromList(HHGear);
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1211
   InsertGearToList(HHGear);
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1212
   Gear^.X:= HHGear^.X;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1213
   Gear^.Y:= HHGear^.Y
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1214
   end;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1215
end;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1216
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1217
procedure doStepSwitcher(Gear: PGear);
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1218
var HHGear: PGear;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1219
begin
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1220
Gear^.doStep:= @doStepSwitcherWork;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1221
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1222
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1223
with HHGear^ do
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1224
     begin
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1225
     State:= State and not gstAttacking;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1226
     Message:= Message and not gm_Attack
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1227
     end
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1228
end;