hedgewars/GSHandlers.inc
author unc0rr
Sun, 04 Jan 2009 14:24:44 +0000
changeset 1579 2f581b1f289e
parent 1573 cf88e0ace609
child 1586 2c6f1d1f43c1
permissions -rw-r--r--
More bouncy rope, but you need to press vertical arrow and horizontal keys at once to bounce
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     1
(*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 1047
diff changeset
     2
 * Hedgewars, a free turn based strategy game
883
07a568ba44e0 Update copyright info in source files headers
unc0rr
parents: 876
diff changeset
     3
 * Copyright (c) 2004-2008 Andrey Korotaev <unC0Rr@gmail.com>
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     4
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 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
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    24
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    25
	CheckGearDrowning:= true;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    26
	Gear^.State:= gstDrowning;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    27
	Gear^.doStep:= @doStepDrowningGear;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    28
	PlaySound(sndSplash, false)
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    29
	end else
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
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))
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    36
	then Gear^.State:= Gear^.State or      gstCollision
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
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
1123
ed713652afae Play Ow1.ogg and Ow4.ogg when hedgehog falls
unc0rr
parents: 1120
diff changeset
    44
	begin
ed713652afae Play Ow1.ogg and Ow4.ogg when hedgehog falls
unc0rr
parents: 1120
diff changeset
    45
	if _0_6 < Gear^.dY then
1132
b4c0698fbb6b - Fix problem when clouds number is 0
unc0rr
parents: 1124
diff changeset
    46
		PlaySound(sndOw4, false)
1123
ed713652afae Play Ow1.ogg and Ow4.ogg when hedgehog falls
unc0rr
parents: 1120
diff changeset
    47
	else
1132
b4c0698fbb6b - Fix problem when clouds number is 0
unc0rr
parents: 1124
diff changeset
    48
		PlaySound(sndOw1, false);
1123
ed713652afae Play Ow1.ogg and Ow4.ogg when hedgehog falls
unc0rr
parents: 1120
diff changeset
    49
ed713652afae Play Ow1.ogg and Ow4.ogg when hedgehog falls
unc0rr
parents: 1120
diff changeset
    50
	dmg:= 1 + hwRound((hwAbs(Gear^.dY) - _0_4) * 70);
ed713652afae Play Ow1.ogg and Ow4.ogg when hedgehog falls
unc0rr
parents: 1120
diff changeset
    51
	inc(Gear^.Damage, dmg);
1505
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
    52
	AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y) + cHHRadius, dmg, PHedgehog(Gear^.Hedgehog)^.Team^.Clan^.Color);
1123
ed713652afae Play Ow1.ogg and Ow4.ogg when hedgehog falls
unc0rr
parents: 1120
diff changeset
    53
	end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    54
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    55
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    56
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    57
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    58
procedure CalcRotationDirAngle(Gear: PGear);
776
8fc7e59d9cb4 Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents: 764
diff changeset
    59
var dAngle: real;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    60
begin
776
8fc7e59d9cb4 Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents: 764
diff changeset
    61
dAngle:= (hwAbs(Gear^.dX) + hwAbs(Gear^.dY)).QWordValue / $80000000;
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    62
if not Gear^.dX.isNegative then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    63
	Gear^.DirAngle:= Gear^.DirAngle + dAngle
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    64
else
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    65
	Gear^.DirAngle:= Gear^.DirAngle - dAngle;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    66
776
8fc7e59d9cb4 Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents: 764
diff changeset
    67
if Gear^.DirAngle < 0 then Gear^.DirAngle:= Gear^.DirAngle + 360
8fc7e59d9cb4 Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents: 764
diff changeset
    68
else if 360 < Gear^.DirAngle then Gear^.DirAngle:= Gear^.DirAngle - 360
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 doStepDrowningGear(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    73
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    74
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    75
Gear^.Y:= Gear^.Y + cDrownSpeed;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    76
if hwRound(Gear^.Y) > Gear^.Radius + cWaterLine + cVisibleWater then DeleteGear(Gear)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    77
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    78
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    79
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    80
procedure doStepFallingGear(Gear: PGear);
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
    81
var isFalling: boolean;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    82
begin
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    83
Gear^.State:= Gear^.State and not gstCollision;
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    84
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
    85
if Gear^.dY.isNegative then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    86
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    87
	isFalling:= true;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    88
	if TestCollisionYwithGear(Gear, -1) then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    89
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    90
		Gear^.dX:=   Gear^.dX * Gear^.Friction;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    91
		Gear^.dY:= - Gear^.dY * Gear^.Elasticity;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    92
		Gear^.State:= Gear^.State or gstCollision
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    93
		end
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    94
	end else
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    95
	if TestCollisionYwithGear(Gear, 1) then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    96
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    97
		isFalling:= false;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    98
		Gear^.dX:=   Gear^.dX * Gear^.Friction;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    99
		Gear^.dY:= - Gear^.dY * Gear^.Elasticity;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   100
		Gear^.State:= Gear^.State or gstCollision
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   101
		end else isFalling:= true;
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   102
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   103
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   104
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   105
	Gear^.dX:= - Gear^.dX * Gear^.Elasticity;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   106
	Gear^.dY:=   Gear^.dY * Gear^.Elasticity;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   107
	Gear^.State:= Gear^.State or gstCollision
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   108
	end;
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   109
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   110
if isFalling then Gear^.dY:= Gear^.dY + cGravity;
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   111
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   112
Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   113
Gear^.Y:= Gear^.Y + Gear^.dY;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   114
CheckGearDrowning(Gear);
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   115
if (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) < _0_0002) and
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   116
	(not isFalling) then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   117
	Gear^.State:= Gear^.State and not gstMoving
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   118
else
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   119
	Gear^.State:= Gear^.State or      gstMoving
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   120
end;
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
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   123
procedure doStepBomb(Gear: PGear);
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   124
var i: LongInt;
919
fadfefc2ae40 It looks like fix for cluster bomb issue...
unc0rr
parents: 915
diff changeset
   125
    dX, dY: hwFloat;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   126
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   127
AllInactive:= false;
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   128
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   129
doStepFallingGear(Gear);
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   130
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   131
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   132
if Gear^.Timer = 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   133
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   134
	case Gear^.Kind of
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   135
		gtAmmo_Bomb: doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   136
		gtClusterBomb: begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   137
				doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 20, EXPLAutoSound);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   138
				for i:= 0 to 4 do
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   139
					begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   140
					dX:= rndSign(GetRandom * _0_1);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   141
					dY:= (GetRandom - _3) * _0_08;
1261
903058d382c7 Add watermelon weapon (without proper sprites yet)
unc0rr
parents: 1259
diff changeset
   142
					AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtCluster, 0, dX, dY, 25);
903058d382c7 Add watermelon weapon (without proper sprites yet)
unc0rr
parents: 1259
diff changeset
   143
					end
903058d382c7 Add watermelon weapon (without proper sprites yet)
unc0rr
parents: 1259
diff changeset
   144
				end;
903058d382c7 Add watermelon weapon (without proper sprites yet)
unc0rr
parents: 1259
diff changeset
   145
		gtWatermelon: begin
903058d382c7 Add watermelon weapon (without proper sprites yet)
unc0rr
parents: 1259
diff changeset
   146
				doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 75, EXPLAutoSound);
903058d382c7 Add watermelon weapon (without proper sprites yet)
unc0rr
parents: 1259
diff changeset
   147
				for i:= 0 to 5 do
903058d382c7 Add watermelon weapon (without proper sprites yet)
unc0rr
parents: 1259
diff changeset
   148
					begin
903058d382c7 Add watermelon weapon (without proper sprites yet)
unc0rr
parents: 1259
diff changeset
   149
					dX:= rndSign(GetRandom * _0_1);
1496
bc2a166b4fd2 Modify melon pieces spread a bit
unc0rr
parents: 1495
diff changeset
   150
					dY:= (GetRandom - _1_5) * _0_3;
1262
e9191c693e44 Add watermelon sprite
unc0rr
parents: 1261
diff changeset
   151
					AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtMelonPiece, 0, dX, dY, 75)^.DirAngle:= i * 60;
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   152
					end
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   153
				end;
1555
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   154
		gtHellishBomb: begin
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   155
				doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 90, EXPLAutoSound);
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   156
				for i:= 0 to 127 do
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   157
					begin
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   158
					dX:= AngleCos(i * 16) * _0_5 * (GetRandom + _1);
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   159
					dY:= AngleSin(i * 16) * _0_5 * (GetRandom + _1);
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   160
					AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtFlame, 0, dX, dY, 0);
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   161
					AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtFlame, 0, dX, -dY, 0);
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   162
					end
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   163
				end;
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   164
		end;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   165
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   166
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   167
	end;
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   168
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   169
CalcRotationDirAngle(Gear);
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   170
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   171
if Gear^.Kind = gtHellishBomb then
1279
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   172
	begin
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   173
	if Gear^.Timer = 3000 then PlaySound(sndHellish, false);
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   174
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   175
	if (GameTicks and $3F) = 0 then
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   176
		if (Gear^.State and gstCollision) = 0 then
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   177
			AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtEvilTrace, 0, _0, _0, 0);
1279
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   178
	end;
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   179
1158
d03d12ef8971 - Fix grenade sound
unc0rr
parents: 1142
diff changeset
   180
if (Gear^.State and (gstCollision or gstMoving)) = (gstCollision or gstMoving) then
d03d12ef8971 - Fix grenade sound
unc0rr
parents: 1142
diff changeset
   181
	if (hwAbs(Gear^.dX) > _0_1) or
d03d12ef8971 - Fix grenade sound
unc0rr
parents: 1142
diff changeset
   182
	   (hwAbs(Gear^.dY) > _0_1) then
d03d12ef8971 - Fix grenade sound
unc0rr
parents: 1142
diff changeset
   183
		PlaySound(sndGrenadeImpact, false)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   184
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   185
1279
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   186
procedure doStepWatermelon(Gear: PGear);
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   187
begin
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   188
AllInactive:= false;
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   189
PlaySound(sndMelon, false);
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   190
Gear^.doStep:= @doStepBomb
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   191
end;
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   192
78
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   193
procedure doStepCluster(Gear: PGear);
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   194
begin
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   195
AllInactive:= false;
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   196
doStepFallingGear(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   197
if (Gear^.State and gstCollision) <> 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   198
	begin
1261
903058d382c7 Add watermelon weapon (without proper sprites yet)
unc0rr
parents: 1259
diff changeset
   199
	doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), Gear^.Timer, EXPLAutoSound);
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   200
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   201
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   202
	end;
1262
e9191c693e44 Add watermelon sprite
unc0rr
parents: 1261
diff changeset
   203
e9191c693e44 Add watermelon sprite
unc0rr
parents: 1261
diff changeset
   204
if Gear^.Kind = gtMelonPiece then
e9191c693e44 Add watermelon sprite
unc0rr
parents: 1261
diff changeset
   205
	CalcRotationDirAngle(Gear)
e9191c693e44 Add watermelon sprite
unc0rr
parents: 1261
diff changeset
   206
else
e9191c693e44 Add watermelon sprite
unc0rr
parents: 1261
diff changeset
   207
	if (GameTicks and $1F) = 0 then
e9191c693e44 Add watermelon sprite
unc0rr
parents: 1261
diff changeset
   208
		AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0)
78
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   209
end;
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   210
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   211
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   212
procedure doStepGrenade(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   213
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   214
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   215
Gear^.dX:= Gear^.dX + cWindSpeed;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   216
doStepFallingGear(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   217
if (Gear^.State and gstCollision) <> 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   218
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   219
	doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   220
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   221
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   222
	end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   223
if (GameTicks and $3F) = 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   224
	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
   225
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   226
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   227
////////////////////////////////////////////////////////////////////////////////
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   228
procedure doStepHealthTagWork(Gear: PGear);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   229
begin
522
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   230
if Gear^.Kind = gtHealthTag then
1505
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   231
	AllInactive:= false;
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   232
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   233
dec(Gear^.Timer);
522
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   234
Gear^.Y:= Gear^.Y + Gear^.dY;
1505
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   235
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   236
if Gear^.Timer = 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   237
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   238
	if Gear^.Kind = gtHealthTag then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   239
		PHedgehog(Gear^.Hedgehog)^.Gear^.Active:= true; // to let current hh die
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   240
	DeleteGear(Gear)
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   241
	end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   242
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   243
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
   244
procedure doStepHealthTagWorkUnderWater(Gear: PGear);
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
   245
begin
1505
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   246
AllInactive:= false;
1495
2b2b89bdb5f3 More verbose gear delete debuglog message
unc0rr
parents: 1437
diff changeset
   247
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   248
Gear^.Y:= Gear^.Y - _0_08;
1495
2b2b89bdb5f3 More verbose gear delete debuglog message
unc0rr
parents: 1437
diff changeset
   249
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   250
if hwRound(Gear^.Y) < cWaterLine + 10 then
1505
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   251
	DeleteGear(Gear)
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
   252
end;
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
   253
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   254
procedure doStepHealthTag(Gear: PGear);
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   255
var s: shortstring;
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   256
begin
1505
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   257
AllInactive:= false;
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   258
Gear^.dY:= -_0_08;
522
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   259
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   260
str(Gear^.State, s);
1505
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   261
Gear^.Tex:= RenderStringTex(s, PHedgehog(Gear^.Hedgehog)^.Team^.Clan^.Color, fnt16);
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   262
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   263
if hwRound(Gear^.Y) < cWaterLine then
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   264
	Gear^.doStep:= @doStepHealthTagWork
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   265
else
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   266
	Gear^.doStep:= @doStepHealthTagWorkUnderWater;
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   267
762
5ecf042f6113 More sprites are visible
unc0rr
parents: 690
diff changeset
   268
Gear^.Y:= Gear^.Y - int2hwFloat(Gear^.Tex^.h)
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   269
end;
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   270
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   271
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   272
procedure doStepGrave(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   273
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   274
AllInactive:= false;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   275
if Gear^.dY.isNegative then
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   276
   if TestCollisionY(Gear, -1) then Gear^.dY:= _0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   277
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   278
if not Gear^.dY.isNegative then
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 57
diff changeset
   279
   if TestCollisionY(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   280
      begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   281
      Gear^.dY:= - Gear^.dY * Gear^.Elasticity;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   282
      if Gear^.dY > - _1div1024 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   283
         begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   284
         Gear^.Active:= false;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   285
         exit
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   286
         end else if Gear^.dY < - _0_03 then PlaySound(sndGraveImpact, false)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   287
      end;
1505
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   288
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   289
Gear^.Y:= Gear^.Y + Gear^.dY;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   290
CheckGearDrowning(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   291
Gear^.dY:= Gear^.dY + cGravity
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   292
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   293
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 doStepUFOWork(Gear: PGear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   296
var t: hwFloat;
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   297
    y: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   298
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   299
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   300
t:= Distance(Gear^.dX, Gear^.dY);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   301
Gear^.dX:= Gear^.Elasticity * (Gear^.dX + _0_000004 * (TargetPoint.X - hwRound(Gear^.X)));
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   302
Gear^.dY:= Gear^.Elasticity * (Gear^.dY + _0_000004 * (TargetPoint.Y - hwRound(Gear^.Y)));
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   303
t:= t / Distance(Gear^.dX, Gear^.dY);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   304
Gear^.dX:= Gear^.dX * t;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   305
Gear^.dY:= Gear^.dY * t;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   306
Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   307
Gear^.Y:= Gear^.Y + Gear^.dY;
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   308
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   309
if (GameTicks and $3F) = 0 then
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   310
   begin
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   311
   y:= hwRound(Gear^.Y);
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   312
   if y + Gear^.Radius < cWaterLine then
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   313
      AddGear(hwRound(Gear^.X), y, gtSmokeTrace, 0, _0, _0, 0);
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   314
   end;
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   315
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   316
CheckCollision(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   317
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   318
if ((Gear^.State and gstCollision) <> 0) or (Gear^.Timer = 0) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   319
   begin
560
7bf2b554de0c UFO Sound
unc0rr
parents: 559
diff changeset
   320
   StopSound(sndUFO);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   321
   doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   322
   DeleteGear(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   323
   end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   324
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   325
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   326
procedure doStepUFO(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   327
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   328
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   329
Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   330
Gear^.Y:= Gear^.Y + Gear^.dY;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   331
Gear^.dY:= Gear^.dY + cGravity;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   332
CheckCollision(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   333
if (Gear^.State and gstCollision) <> 0 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   334
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   335
   doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   336
   DeleteGear(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   337
   exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   338
   end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   339
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   340
if Gear^.Timer = 0 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   341
   begin
560
7bf2b554de0c UFO Sound
unc0rr
parents: 559
diff changeset
   342
   PlaySound(sndUFO, true);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   343
   Gear^.Timer:= 5000;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   344
   Gear^.doStep:= @doStepUFOWork
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   345
   end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   346
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   347
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   348
////////////////////////////////////////////////////////////////////////////////
876
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   349
procedure doStepShotIdle(Gear: PGear);
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   350
begin
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   351
AllInactive:= false;
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   352
inc(Gear^.Timer);
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   353
if Gear^.Timer > 75 then
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   354
	begin
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   355
	DeleteGear(Gear);
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   356
	AfterAttack
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   357
	end
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   358
end;
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   359
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   360
procedure doStepShotgunShot(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   361
var i: LongWord;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   362
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   363
AllInactive:= false;
876
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   364
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   365
if ((Gear^.State and gstAnimation) = 0) then
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   366
	begin
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   367
	dec(Gear^.Timer);
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   368
	if Gear^.Timer = 0 then
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   369
		begin
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   370
		PlaySound(sndShotgunFire, false);
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   371
		Gear^.State:= Gear^.State or gstAnimation
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   372
		end;
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   373
	exit
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   374
	end
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   375
	else inc(Gear^.Timer);
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   376
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   377
i:= 200;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   378
repeat
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   379
Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   380
Gear^.Y:= Gear^.Y + Gear^.dY;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   381
CheckCollision(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   382
if (Gear^.State and gstCollision) <> 0 then
876
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   383
	begin
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   384
	Gear^.X:= Gear^.X + Gear^.dX * 8;
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   385
	Gear^.Y:= Gear^.Y + Gear^.dY * 8;
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   386
	ShotgunShot(Gear);
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   387
	Gear^.doStep:= @doStepShotIdle;
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   388
	exit
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   389
	end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   390
dec(i)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   391
until i = 0;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   392
if (Gear^.X < _0) or (Gear^.Y < _0) or (Gear^.X > _2048) or (Gear^.Y > _1024) then
876
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   393
	Gear^.doStep:= @doStepShotIdle
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   394
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   395
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   396
////////////////////////////////////////////////////////////////////////////////
559
6083fffc9e2f Desert Eagle sound
unc0rr
parents: 557
diff changeset
   397
procedure doStepDEagleShotWork(Gear: PGear);
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   398
var i, x, y: LongWord;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   399
    oX, oY: hwFloat;
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   400
begin
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   401
AllInactive:= false;
876
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   402
inc(Gear^.Timer);
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   403
i:= 80;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   404
oX:= Gear^.X;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   405
oY:= Gear^.Y;
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   406
repeat
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   407
  Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   408
  Gear^.Y:= Gear^.Y + Gear^.dY;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   409
  x:= hwRound(Gear^.X);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   410
  y:= hwRound(Gear^.Y);
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   411
  if ((y and $FFFFFC00) = 0) and ((x and $FFFFF800) = 0)
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   412
     and (Land[y, x] <> 0) then inc(Gear^.Damage);
519
981df6f6e2a9 - Fix desert eagle
unc0rr
parents: 517
diff changeset
   413
  if Gear^.Damage > 5 then AmmoShove(Gear, 7, 20);
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   414
  dec(i)
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   415
until (i = 0) or (Gear^.Damage > Gear^.Health);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   416
if Gear^.Damage > 0 then
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   417
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   418
   DrawTunnel(oX, oY, Gear^.dX, Gear^.dY, 82 - i, 1);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   419
   dec(Gear^.Health, Gear^.Damage);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   420
   Gear^.Damage:= 0
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   421
   end;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   422
if (Gear^.Health <= 0) or (Gear^.X < _0) or (Gear^.Y < _0) or (Gear^.X > _2048) or (Gear^.Y > _1024) then
876
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   423
	Gear^.doStep:= @doStepShotIdle
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   424
end;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   425
559
6083fffc9e2f Desert Eagle sound
unc0rr
parents: 557
diff changeset
   426
procedure doStepDEagleShot(Gear: PGear);
6083fffc9e2f Desert Eagle sound
unc0rr
parents: 557
diff changeset
   427
begin
6083fffc9e2f Desert Eagle sound
unc0rr
parents: 557
diff changeset
   428
PlaySound(sndGun, false);
6083fffc9e2f Desert Eagle sound
unc0rr
parents: 557
diff changeset
   429
Gear^.doStep:= @doStepDEagleShotWork
6083fffc9e2f Desert Eagle sound
unc0rr
parents: 557
diff changeset
   430
end;
6083fffc9e2f Desert Eagle sound
unc0rr
parents: 557
diff changeset
   431
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   432
////////////////////////////////////////////////////////////////////////////////
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   433
procedure doStepActionTimer(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   434
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   435
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   436
case Gear^.Kind of
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   437
    gtATStartGame: begin
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   438
                   AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   439
                   if Gear^.Timer = 0 then
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   440
                      AddCaption(trmsg[sidStartFight], $FFFFFF, capgrpGameState);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   441
                   end;
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   442
 gtATSmoothWindCh: begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   443
                   if Gear^.Timer = 0 then
6
9c1f00e7b43e Smooth change wind bar
unc0rr
parents: 4
diff changeset
   444
                      begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   445
                      if WindBarWidth < Gear^.Tag then inc(WindBarWidth)
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   446
                         else if WindBarWidth > Gear^.Tag then dec(WindBarWidth);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   447
                      if WindBarWidth <> Gear^.Tag then Gear^.Timer:= 10;
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   448
                      end
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   449
                   end;
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   450
   gtATFinishGame: begin
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   451
                   AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   452
                   if Gear^.Timer = 0 then
113
d975a426ebf7 - Many small fixes in engine
unc0rr
parents: 109
diff changeset
   453
                      begin
d975a426ebf7 - Many small fixes in engine
unc0rr
parents: 109
diff changeset
   454
                      SendIPC('N');
324
f4c109c82a0c Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents: 306
diff changeset
   455
                      SendIPC('q');
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   456
                      GameState:= gsExit
113
d975a426ebf7 - Many small fixes in engine
unc0rr
parents: 109
diff changeset
   457
                      end
6
9c1f00e7b43e Smooth change wind bar
unc0rr
parents: 4
diff changeset
   458
                   end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   459
     end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   460
if Gear^.Timer = 0 then DeleteGear(Gear)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   461
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   462
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
procedure doStepPickHammerWork(Gear: PGear);
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   465
var i, ei: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   466
    HHGear: PGear;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   467
begin
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   468
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   469
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   470
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   471
if (Gear^.Timer = 0)or((Gear^.Message and gm_Destroy) <> 0)or((HHGear^.State and gstHHDriven) = 0) then
1200
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   472
	begin
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   473
	StopSound(sndPickhammer);
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   474
	DeleteGear(Gear);
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   475
	AfterAttack;
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   476
	exit
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   477
	end;
845
ca72cf446ec2 Add sprite for pickhammer
unc0rr
parents: 820
diff changeset
   478
422
12295a8b8b2f Tune pickhammer
unc0rr
parents: 415
diff changeset
   479
if (Gear^.Timer mod 33) = 0 then
1200
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   480
	begin
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   481
	HHGear^.State:= HHGear^.State or gstNoDamage;
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   482
	doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y) + 7, 6, EXPLDontDraw);
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   483
	HHGear^.State:= HHGear^.State and not gstNoDamage
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   484
	end;
422
12295a8b8b2f Tune pickhammer
unc0rr
parents: 415
diff changeset
   485
12295a8b8b2f Tune pickhammer
unc0rr
parents: 415
diff changeset
   486
if (Gear^.Timer mod 47) = 0 then
1200
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   487
	begin
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   488
	i:= hwRound(Gear^.X) - Gear^.Radius - LongInt(GetRandom(2));
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   489
	ei:= hwRound(Gear^.X) + Gear^.Radius + LongInt(GetRandom(2));
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   490
	while i <= ei do
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   491
		begin
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   492
		DrawExplosion(i, hwRound(Gear^.Y) + 3, 3);
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   493
		inc(i, 1)
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   494
		end;
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   495
	Gear^.X:= Gear^.X + Gear^.dX;
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   496
	Gear^.Y:= Gear^.Y + _1_9;
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   497
	SetAllHHToActive;
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   498
	end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   499
if TestCollisionYwithGear(Gear, 1) then
1200
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   500
	begin
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   501
	Gear^.dY:= _0;
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   502
	SetLittle(HHGear^.dX);
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   503
	HHGear^.dY:= _0;
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   504
	end else
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   505
	begin
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   506
	Gear^.dY:= Gear^.dY + cGravity;
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   507
	Gear^.Y:= Gear^.Y + Gear^.dY;
1417
210cb6b1b275 Fix some problems with water rising
unc0rr
parents: 1388
diff changeset
   508
	if hwRound(Gear^.Y) > cWaterLine then Gear^.Timer:= 1
1200
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   509
	end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   510
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   511
Gear^.X:= Gear^.X + HHGear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   512
HHGear^.X:= Gear^.X;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   513
HHGear^.Y:= Gear^.Y - int2hwFloat(cHHRadius);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   514
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   515
if (Gear^.Message and gm_Attack) <> 0 then
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   516
   if (Gear^.State and gsttmpFlag) <> 0 then Gear^.Timer:= 1 else else
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   517
   if (Gear^.State and gsttmpFlag) = 0 then Gear^.State:= Gear^.State or gsttmpFlag;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   518
if ((Gear^.Message and gm_Left) <> 0) then Gear^.dX:= - _0_3 else
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   519
   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
   520
                                          else Gear^.dX:= _0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   521
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   522
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   523
procedure doStepPickHammer(Gear: PGear);
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   524
var i, y: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   525
    ar: TRangeArray;
911
b709fe13ed69 Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents: 883
diff changeset
   526
    HHGear: PGear;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   527
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   528
i:= 0;
911
b709fe13ed69 Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents: 883
diff changeset
   529
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
b709fe13ed69 Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents: 883
diff changeset
   530
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   531
y:= hwRound(Gear^.Y) - cHHRadius * 2;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   532
while y < hwRound(Gear^.Y) do
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   533
   begin
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   534
   ar[i].Left := hwRound(Gear^.X) - Gear^.Radius - LongInt(GetRandom(2));
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   535
   ar[i].Right:= hwRound(Gear^.X) + Gear^.Radius + LongInt(GetRandom(2));
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   536
   inc(y, 2);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   537
   inc(i)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   538
   end;
911
b709fe13ed69 Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents: 883
diff changeset
   539
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   540
DrawHLinesExplosions(@ar, 3, hwRound(Gear^.Y) - cHHRadius * 2, 2, Pred(i));
911
b709fe13ed69 Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents: 883
diff changeset
   541
Gear^.dY:= HHGear^.dY;
b709fe13ed69 Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents: 883
diff changeset
   542
DeleteCI(HHGear);
b709fe13ed69 Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents: 883
diff changeset
   543
282
b1e3387389b6 - Pickhammer sound
unc0rr
parents: 263
diff changeset
   544
PlaySound(sndPickhammer, true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   545
doStepPickHammerWork(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   546
Gear^.doStep:= @doStepPickHammerWork
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   547
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   548
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   549
////////////////////////////////////////////////////////////////////////////////
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   550
var BTPrevAngle, BTSteps: LongInt;
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   551
303
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   552
procedure doStepBlowTorchWork(Gear: PGear);
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   553
var HHGear: PGear;
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   554
	b: boolean;
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   555
	prevX: LongInt;
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   556
begin
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   557
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   558
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   559
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
303
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   560
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   561
HedgehogChAngle(HHGear);
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   562
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   563
b:= false;
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   564
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   565
if abs(LongInt(HHGear^.Angle) - BTPrevAngle) > 7  then
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   566
	begin
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   567
	Gear^.dX:= SignAs(AngleSin(HHGear^.Angle) * _0_5, HHGear^.dX);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   568
	Gear^.dY:= AngleCos(HHGear^.Angle) * ( - _0_5);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   569
	BTPrevAngle:= HHGear^.Angle;
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   570
	b:= true
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   571
	end;
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   572
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   573
if ((HHGear^.State and gstMoving) <> 0) then
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   574
	begin
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   575
	doStepHedgehogMoving(HHGear);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   576
	if (HHGear^.Damage > 0) then Gear^.Timer:= 0
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   577
	end;
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   578
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   579
if Gear^.Timer mod cHHStepTicks = 0 then
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   580
	begin
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   581
	b:= true;
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   582
	if Gear^.dX.isNegative then
1547
4251f9598d54 - Fix blowtorch regression
unc0rr
parents: 1545
diff changeset
   583
		HHGear^.Message:= (HHGear^.Message and (gm_Attack or gm_Up or gm_Down)) or gm_Left
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   584
	else
1547
4251f9598d54 - Fix blowtorch regression
unc0rr
parents: 1545
diff changeset
   585
		HHGear^.Message:= (HHGear^.Message and (gm_Attack or gm_Up or gm_Down)) or gm_Right;
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   586
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   587
	if ((HHGear^.State and gstMoving) = 0) then
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   588
		begin
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   589
		HHGear^.State:= HHGear^.State and not gstAttacking;
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   590
		prevX:= hwRound(HHGear^.X);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   591
		
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   592
		HedgehogStep(HHGear);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   593
		
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   594
		if (prevX = hwRound(HHGear^.X)) then HHGear^.X:= HHGear^.X + SignAs(_1, HHGear^.dX);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   595
		HHGear^.State:= HHGear^.State or gstAttacking
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   596
		end;
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   597
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   598
	inc(BTSteps);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   599
	if BTSteps = 7 then
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   600
		begin
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   601
		BTSteps:= 0;
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   602
		Gear^.X:= HHGear^.X + Gear^.dX * (cHHRadius + cBlowTorchC);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   603
		Gear^.Y:= HHGear^.Y + Gear^.dY * (cHHRadius + cBlowTorchC);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   604
		HHGear^.State:= HHGear^.State or gstNoDamage;
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   605
		AmmoShove(Gear, 2, 10);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   606
		HHGear^.State:= HHGear^.State and not gstNoDamage
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   607
		end;
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   608
	end;
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   609
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   610
if b then
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   611
   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
   612
              Gear^.dX, Gear^.dY,
1501
a0e56fdf10cd Tune blowtorch a bit
unc0rr
parents: 1496
diff changeset
   613
              cHHRadius * 5, cHHRadius * 2 + 7);
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   614
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   615
if (Gear^.Timer = 0) or ((HHGear^.Message and gm_Attack) <> 0) then
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   616
	begin
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   617
	HHGear^.Message:= 0;
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   618
	HHGear^.State:= HHGear^.State and (not gstNotKickable);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   619
	DeleteGear(Gear);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   620
	AfterAttack
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   621
	end
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   622
end;
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   623
303
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   624
procedure doStepBlowTorch(Gear: PGear);
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   625
var HHGear: PGear;
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   626
begin
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   627
BTPrevAngle:= High(LongInt);
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   628
BTSteps:= 0;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   629
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   630
HHGear^.Message:= 0;
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   631
HHGear^.State:= HHGear^.State or gstNotKickable;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   632
Gear^.doStep:= @doStepBlowTorchWork
303
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   633
end;
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   634
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   635
////////////////////////////////////////////////////////////////////////////////
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   636
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   637
procedure doStepRopeWork(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   638
var HHGear: PGear;
1547
4251f9598d54 - Fix blowtorch regression
unc0rr
parents: 1545
diff changeset
   639
	len, cs, cc, tx, ty, nx, ny, ropeDx, ropeDy: hwFloat;
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   640
	lx, ly: LongInt;
1553
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   641
	haveCollision,
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   642
	haveDivided: boolean;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   643
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   644
	procedure DeleteMe;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   645
	begin
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   646
	with HHGear^ do
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   647
		begin
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   648
		Message:= Message and not gm_Attack;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   649
		State:= State or gstMoving;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   650
		end;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   651
	DeleteGear(Gear)
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   652
	end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   653
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   654
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   655
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   656
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   657
if ((HHGear^.State and gstHHDriven) = 0)
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   658
	or (CheckGearDrowning(HHGear)) then
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   659
	begin
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   660
	DeleteMe;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   661
	exit
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   662
	end;
928
b9064b48b001 Some preparation work for attacking from rope, parachute and etc.
unc0rr
parents: 925
diff changeset
   663
1547
4251f9598d54 - Fix blowtorch regression
unc0rr
parents: 1545
diff changeset
   664
ropeDx:= HHGear^.X - Gear^.X; // vector between hedgehog and rope attaching point
4251f9598d54 - Fix blowtorch regression
unc0rr
parents: 1545
diff changeset
   665
ropeDy:= HHGear^.Y - Gear^.Y;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   666
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   667
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
   668
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
   669
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   670
if not TestCollisionYwithGear(HHGear, 1) then HHGear^.dY:= HHGear^.dY + cGravity;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   671
1553
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   672
tx:= ropeDx + HHGear^.dX;
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   673
ty:= ropeDy + HHGear^.dY;
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   674
len:= _1 / Distance(tx, ty);
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   675
tx:= tx * len; // rope vector plus hedgehog direction vector normalized
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   676
ty:= ty * len;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   677
1554
5657cd89668d Fix rope animation
unc0rr
parents: 1553
diff changeset
   678
Gear^.dX:= tx; // for visual purposes only
5657cd89668d Fix rope animation
unc0rr
parents: 1553
diff changeset
   679
Gear^.dY:= ty;
5657cd89668d Fix rope animation
unc0rr
parents: 1553
diff changeset
   680
1553
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   681
haveDivided:= false;
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   682
	// check whether rope needs dividing
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   683
	len:= _1 / Distance(ropeDx, ropeDy); // old rope pos
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   684
	nx:= ropeDx * len;
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   685
	ny:= ropeDy * len;
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   686
	
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   687
	len:= Gear^.Elasticity - _20;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   688
	while len > _5 do
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   689
			begin
1553
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   690
			lx:= hwRound(Gear^.X + tx * len);
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   691
			ly:= hwRound(Gear^.Y + ty * len);
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   692
			if ((ly and $FFFFFC00) = 0) and ((lx and $FFFFF800) = 0) and (Land[ly, lx] <> 0) then
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   693
				begin
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   694
				with RopePoints.ar[RopePoints.Count] do
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   695
					begin
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   696
					X:= Gear^.X;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   697
					Y:= Gear^.Y;
1553
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   698
					if RopePoints.Count = 0 then RopePoints.HookAngle:= DxDy2Angle(Gear^.dY, Gear^.dX);
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   699
					b:= (tx * HHGear^.dY) > (ty * HHGear^.dX);
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   700
					dLen:= len
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   701
					end;
1553
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   702
				Gear^.X:= Gear^.X + nx * len;
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   703
				Gear^.Y:= Gear^.Y + ny * len;
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   704
				inc(RopePoints.Count);
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   705
				TryDo(RopePoints.Count <= MAXROPEPOINTS, 'Rope points overflow', true);
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   706
				Gear^.Elasticity:= Gear^.Elasticity - len;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   707
				Gear^.Friction:= Gear^.Friction - len;
1553
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   708
				haveDivided:= true;
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   709
				break
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   710
				end;
1553
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   711
			len:= len - _0_3 // should be the same as increase step
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   712
			end;
1553
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   713
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   714
if not haveDivided then
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   715
	if RopePoints.Count > 0 then // check whether the last dividing point could be removed
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   716
		begin
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   717
		tx:= RopePoints.ar[Pred(RopePoints.Count)].X;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   718
		ty:= RopePoints.ar[Pred(RopePoints.Count)].Y;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   719
		if RopePoints.ar[Pred(RopePoints.Count)].b xor ((tx - Gear^.X) * (ty - HHGear^.Y) > (tx - HHGear^.X) * (ty - Gear^.Y)) then
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   720
			begin
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   721
			dec(RopePoints.Count);
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   722
			Gear^.X:=RopePoints.ar[RopePoints.Count].X;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   723
			Gear^.Y:=RopePoints.ar[RopePoints.Count].Y;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   724
			Gear^.Elasticity:= Gear^.Elasticity + RopePoints.ar[RopePoints.Count].dLen;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   725
			Gear^.Friction:= Gear^.Friction + RopePoints.ar[RopePoints.Count].dLen
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   726
			end
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   727
		end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   728
1548
682c0c968997 - Fix wrond hedgehog speed calculation when using rope and changing rope length
unc0rr
parents: 1547
diff changeset
   729
ropeDx:= HHGear^.X - Gear^.X;
682c0c968997 - Fix wrond hedgehog speed calculation when using rope and changing rope length
unc0rr
parents: 1547
diff changeset
   730
ropeDy:= HHGear^.Y - Gear^.Y;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   731
1548
682c0c968997 - Fix wrond hedgehog speed calculation when using rope and changing rope length
unc0rr
parents: 1547
diff changeset
   732
cs:= ropeDy + HHGear^.dY;
682c0c968997 - Fix wrond hedgehog speed calculation when using rope and changing rope length
unc0rr
parents: 1547
diff changeset
   733
cc:= ropeDx + HHGear^.dX;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   734
len:= _1 / Distance(cc, cs);
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   735
cc:= cc * len;
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   736
cs:= cs * len;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   737
1552
cd907418da91 Bring back old rope behaviour when changing its length (that's more correct physical model)
unc0rr
parents: 1551
diff changeset
   738
tx:= HHGear^.X;
cd907418da91 Bring back old rope behaviour when changing its length (that's more correct physical model)
unc0rr
parents: 1551
diff changeset
   739
ty:= HHGear^.Y;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   740
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   741
if ((Gear^.Message and gm_Down) <> 0) and (Gear^.Elasticity < Gear^.Friction) then
1548
682c0c968997 - Fix wrond hedgehog speed calculation when using rope and changing rope length
unc0rr
parents: 1547
diff changeset
   742
	if not (TestCollisionXwithGear(HHGear, hwSign(ropeDx))
682c0c968997 - Fix wrond hedgehog speed calculation when using rope and changing rope length
unc0rr
parents: 1547
diff changeset
   743
			or TestCollisionYwithGear(HHGear, hwSign(ropeDy))) then Gear^.Elasticity:= Gear^.Elasticity + _0_3;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   744
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   745
if ((Gear^.Message and gm_Up) <> 0) and (Gear^.Elasticity > _30) then
1548
682c0c968997 - Fix wrond hedgehog speed calculation when using rope and changing rope length
unc0rr
parents: 1547
diff changeset
   746
	if not (TestCollisionXwithGear(HHGear, -hwSign(ropeDx))
682c0c968997 - Fix wrond hedgehog speed calculation when using rope and changing rope length
unc0rr
parents: 1547
diff changeset
   747
			or TestCollisionYwithGear(HHGear, -hwSign(ropeDy))) then Gear^.Elasticity:= Gear^.Elasticity - _0_3;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   748
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   749
HHGear^.X:= Gear^.X + cc*Gear^.Elasticity;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   750
HHGear^.Y:= Gear^.Y + cs*Gear^.Elasticity;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   751
1552
cd907418da91 Bring back old rope behaviour when changing its length (that's more correct physical model)
unc0rr
parents: 1551
diff changeset
   752
HHGear^.dX:= HHGear^.X - tx;
cd907418da91 Bring back old rope behaviour when changing its length (that's more correct physical model)
unc0rr
parents: 1551
diff changeset
   753
HHGear^.dY:= HHGear^.Y - ty;
cd907418da91 Bring back old rope behaviour when changing its length (that's more correct physical model)
unc0rr
parents: 1551
diff changeset
   754
1551
c747e69f98f3 Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents: 1548
diff changeset
   755
haveCollision:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   756
if TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then
1551
c747e69f98f3 Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents: 1548
diff changeset
   757
	begin
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   758
	HHGear^.dX:= -_0_6 * HHGear^.dX;
1551
c747e69f98f3 Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents: 1548
diff changeset
   759
	haveCollision:= true
c747e69f98f3 Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents: 1548
diff changeset
   760
	end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   761
if TestCollisionYwithGear(HHGear, hwSign(HHGear^.dY)) then
1551
c747e69f98f3 Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents: 1548
diff changeset
   762
	begin
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   763
	HHGear^.dY:= -_0_6 * HHGear^.dY;
1551
c747e69f98f3 Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents: 1548
diff changeset
   764
	haveCollision:= true
c747e69f98f3 Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents: 1548
diff changeset
   765
	end;
c747e69f98f3 Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents: 1548
diff changeset
   766
1579
2f581b1f289e More bouncy rope, but you need to press vertical arrow and horizontal keys at once to bounce
unc0rr
parents: 1573
diff changeset
   767
if haveCollision
2f581b1f289e More bouncy rope, but you need to press vertical arrow and horizontal keys at once to bounce
unc0rr
parents: 1573
diff changeset
   768
	and (Gear^.Message and (gm_Left or gm_Right) <> 0)
2f581b1f289e More bouncy rope, but you need to press vertical arrow and horizontal keys at once to bounce
unc0rr
parents: 1573
diff changeset
   769
	and (Gear^.Message and (gm_Up or gm_Down) <> 0) then
1551
c747e69f98f3 Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents: 1548
diff changeset
   770
	begin
1579
2f581b1f289e More bouncy rope, but you need to press vertical arrow and horizontal keys at once to bounce
unc0rr
parents: 1573
diff changeset
   771
	HHGear^.dX:= SignAs(hwAbs(HHGear^.dX) + _0_2, HHGear^.dX);
2f581b1f289e More bouncy rope, but you need to press vertical arrow and horizontal keys at once to bounce
unc0rr
parents: 1573
diff changeset
   772
	HHGear^.dY:= SignAs(hwAbs(HHGear^.dY) + _0_2, HHGear^.dY)
1551
c747e69f98f3 Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents: 1548
diff changeset
   773
	end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   774
789
3d976d2579eb - More accurate rope collision detection
unc0rr
parents: 776
diff changeset
   775
len:= Distance(HHGear^.dX, HHGear^.dY);
940
769adb0ad082 Better rope
unc0rr
parents: 931
diff changeset
   776
if len > _0_8 then
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   777
	begin
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   778
	len:= _0_8 / len;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   779
	HHGear^.dX:= HHGear^.dX * len;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   780
	HHGear^.dY:= HHGear^.dY * len;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   781
	end;
789
3d976d2579eb - More accurate rope collision detection
unc0rr
parents: 776
diff changeset
   782
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   783
if (Gear^.Message and gm_Attack) <> 0 then
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   784
	if (Gear^.State and gsttmpFlag) <> 0 then
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   785
		DeleteMe
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   786
	else
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   787
else
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   788
	if (Gear^.State and gsttmpFlag) = 0 then
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   789
		Gear^.State:= Gear^.State or gsttmpFlag;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   790
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   791
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   792
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   793
procedure doStepRopeAttach(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   794
var HHGear: PGear;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   795
    tx, ty, tt: hwFloat;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   796
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   797
Gear^.X:= Gear^.X - Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   798
Gear^.Y:= Gear^.Y - Gear^.dY;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   799
Gear^.Elasticity:= Gear^.Elasticity + _1;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   800
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
517
ba560c17c24c - Don't kick cases by moving hedgehog
unc0rr
parents: 516
diff changeset
   801
DeleteCI(HHGear);
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   802
if (HHGear^.State and gstMoving) <> 0 then
1433
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   803
if TestCollisionYwithGear(HHGear, 1) then
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   804
	begin
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   805
	CheckHHDamage(HHGear);
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   806
	HHGear^.dY:= _0;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   807
	HHGear^.State:= HHGear^.State and not (gstMoving or gstHHJumping);
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   808
	end else
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   809
	begin
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   810
	if TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then SetLittle(HHGear^.dX);
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   811
	HHGear^.X:= HHGear^.X + HHGear^.dX;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   812
	HHGear^.Y:= HHGear^.Y + HHGear^.dY;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   813
	Gear^.X:= Gear^.X + HHGear^.dX;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   814
	Gear^.Y:= Gear^.Y + HHGear^.dY;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   815
	HHGear^.dY:= HHGear^.dY + cGravity;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   816
	tt:= Gear^.Elasticity;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   817
	tx:= _0;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   818
	ty:= _0;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   819
	while tt > _20 do
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   820
		begin
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   821
		if  TestCollisionXwithXYShift(Gear, tx, hwRound(ty), -hwSign(Gear^.dX))
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   822
		or TestCollisionYwithXYShift(Gear, hwRound(tx), hwRound(ty), -hwSign(Gear^.dY)) then
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   823
			begin
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   824
			Gear^.X:= Gear^.X + tx;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   825
			Gear^.Y:= Gear^.Y + ty;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   826
			Gear^.Elasticity:= tt;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   827
			Gear^.doStep:= @doStepRopeWork;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   828
			with HHGear^ do State:= State and not gstAttacking;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   829
			tt:= _0
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   830
			end;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   831
		tx:= tx + Gear^.dX + Gear^.dX;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   832
		ty:= ty + Gear^.dY + Gear^.dY;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   833
		tt:= tt - _2;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   834
		end;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   835
	end;
929
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
   836
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   837
CheckCollision(Gear);
929
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
   838
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   839
if (Gear^.State and gstCollision) <> 0 then
929
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
   840
	begin
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
   841
	Gear^.doStep:= @doStepRopeWork;
974
fc16141a0128 Prevent wrong aim direction when using rope after high jump
unc0rr
parents: 963
diff changeset
   842
	with HHGear^ do State:= State and not (gstAttacking or gstHHHJump);
929
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
   843
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
   844
	OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^);
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
   845
	ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^);
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
   846
	
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
   847
	if Gear^.Elasticity < _10 then
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
   848
		Gear^.Elasticity:= _10000;
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
   849
	end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   850
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   851
if (Gear^.Elasticity > Gear^.Friction) or ((Gear^.Message and gm_Attack) = 0) then
1433
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   852
	begin
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   853
	with PHedgehog(Gear^.Hedgehog)^.Gear^ do
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   854
		begin
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   855
		State:= State and not gstAttacking;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   856
		Message:= Message and not gm_Attack
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   857
		end;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   858
	DeleteGear(Gear)
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   859
	end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   860
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   861
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   862
procedure doStepRope(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   863
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   864
Gear^.dX:= - Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   865
Gear^.dY:= - Gear^.dY;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   866
Gear^.doStep:= @doStepRopeAttach
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   867
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   868
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   869
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   870
procedure doStepSmokeTrace(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   871
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   872
inc(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   873
if Gear^.Timer > 64 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   874
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   875
	Gear^.Timer:= 0;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   876
	dec(Gear^.State)
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   877
	end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   878
Gear^.dX:= Gear^.dX + cWindSpeed;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   879
Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   880
if Gear^.State = 0 then DeleteGear(Gear)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   881
end;
9
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   882
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   883
////////////////////////////////////////////////////////////////////////////////
1045
ea195268734f Testing explosion particles implementation
unc0rr
parents: 1024
diff changeset
   884
procedure doStepExplosionWork(Gear: PGear);
9
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   885
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   886
inc(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   887
if Gear^.Timer > 75 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   888
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   889
	inc(Gear^.State);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   890
	Gear^.Timer:= 0;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   891
	if Gear^.State > 5 then DeleteGear(Gear)
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   892
	end;
9
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   893
end;
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   894
1045
ea195268734f Testing explosion particles implementation
unc0rr
parents: 1024
diff changeset
   895
procedure doStepExplosion(Gear: PGear);
ea195268734f Testing explosion particles implementation
unc0rr
parents: 1024
diff changeset
   896
var i: LongWord;
ea195268734f Testing explosion particles implementation
unc0rr
parents: 1024
diff changeset
   897
begin
1047
ca7078116c0c Update explosion graphics
unc0rr
parents: 1046
diff changeset
   898
for i:= 0 to 31 do AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtFire);
ca7078116c0c Update explosion graphics
unc0rr
parents: 1046
diff changeset
   899
for i:= 0 to 8 do AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtExplPart);
ca7078116c0c Update explosion graphics
unc0rr
parents: 1046
diff changeset
   900
for i:= 0 to 8 do AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtExplPart2);
1045
ea195268734f Testing explosion particles implementation
unc0rr
parents: 1024
diff changeset
   901
Gear^.doStep:= @doStepExplosionWork
ea195268734f Testing explosion particles implementation
unc0rr
parents: 1024
diff changeset
   902
end;
ea195268734f Testing explosion particles implementation
unc0rr
parents: 1024
diff changeset
   903
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   904
////////////////////////////////////////////////////////////////////////////////
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   905
procedure doStepMine(Gear: PGear);
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   906
begin
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   907
if (Gear^.State and gstMoving) <> 0 then
914
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
   908
	begin
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
   909
	DeleteCI(Gear);
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
   910
	doStepFallingGear(Gear);
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
   911
	if (Gear^.State and gstMoving) = 0 then
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
   912
		begin
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
   913
		AddGearCI(Gear);
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
   914
		Gear^.dX:= _0;
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
   915
		Gear^.dY:= _0
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
   916
		end;
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
   917
	CalcRotationDirAngle(Gear);
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
   918
	AllInactive:= false
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
   919
	end else
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
   920
	if ((GameTicks and $3F) = 25) then
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
   921
		doStepFallingGear(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   922
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   923
if ((Gear^.State and gsttmpFlag) <> 0) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   924
	if ((Gear^.State and gstAttacking) = 0) then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   925
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   926
		if ((GameTicks and $1F) = 0) then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   927
			if CheckGearNear(Gear, gtHedgehog, 46, 32) <> nil then Gear^.State:= Gear^.State or gstAttacking
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   928
		end else // gstAttacking <> 0
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   929
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   930
		AllInactive:= false;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   931
		if (Gear^.Timer and $FF) = 0 then PlaySound(sndMineTick, false);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   932
		if Gear^.Timer = 0 then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   933
			begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   934
			doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   935
			DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   936
			exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   937
			end;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   938
		dec(Gear^.Timer);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   939
		end else // gsttmpFlag = 0
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   940
	if TurnTimeLeft = 0 then Gear^.State:= Gear^.State or gsttmpFlag;
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   941
end;
57
e1a77ae57065 - Fixed compiling .)
unc0rr
parents: 53
diff changeset
   942
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   943
////////////////////////////////////////////////////////////////////////////////
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   944
procedure doStepDynamite(Gear: PGear);
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   945
begin
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
   946
doStepFallingGear(Gear);
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
   947
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   948
if Gear^.Timer mod 166 = 0 then inc(Gear^.Tag);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   949
if Gear^.Timer = 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   950
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   951
	doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 75, EXPLAutoSound);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   952
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   953
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   954
	end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   955
dec(Gear^.Timer);
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   956
end;
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
   957
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   958
///////////////////////////////////////////////////////////////////////////////
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
   959
procedure doStepCase(Gear: PGear);
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   960
var i, x, y: LongInt;
1436
252ab509c779 Well, okay, better fix
unc0rr
parents: 1435
diff changeset
   961
	k: TGearType;
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
   962
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   963
if (Gear^.Message and gm_Destroy) > 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   964
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   965
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   966
	FreeActionsList;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   967
	SetAllToActive; // something (hh, mine, etc...) could be on top of the case
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   968
	with CurrentHedgehog^ do
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   969
		if Gear <> nil then Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   970
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   971
	end;
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   972
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   973
if Gear^.Damage > 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   974
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   975
	x:= hwRound(Gear^.X);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   976
	y:= hwRound(Gear^.Y);
1436
252ab509c779 Well, okay, better fix
unc0rr
parents: 1435
diff changeset
   977
	k:= Gear^.Kind;
252ab509c779 Well, okay, better fix
unc0rr
parents: 1435
diff changeset
   978
	DeleteGear(Gear); // <-- delete gear!
252ab509c779 Well, okay, better fix
unc0rr
parents: 1435
diff changeset
   979
	
252ab509c779 Well, okay, better fix
unc0rr
parents: 1435
diff changeset
   980
	if k = gtCase then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   981
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   982
		doMakeExplosion(x, y, 25, EXPLAutoSound);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   983
		for i:= 0 to 63 do
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   984
			AddGear(x, y, gtFlame, 0, _0, _0, 0);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   985
		end;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   986
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   987
	end;
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   988
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   989
if (Gear^.dY.QWordValue <> 0) or (not TestCollisionYwithGear(Gear, 1)) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   990
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   991
	AllInactive:= false;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   992
	Gear^.dY:= Gear^.dY + cGravity;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   993
	Gear^.Y:= Gear^.Y + Gear^.dY;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   994
	if (Gear^.dY.isNegative) and TestCollisionYwithGear(Gear, -1) then Gear^.dY:= _0 else
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   995
	if (not Gear^.dY.isNegative) and TestCollisionYwithGear(Gear, 1) then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   996
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   997
		Gear^.dY:= - Gear^.dY * Gear^.Elasticity;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   998
		if Gear^.dY > - _0_001 then Gear^.dY:= _0
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   999
			else if Gear^.dY < - _0_03 then PlaySound(sndGraveImpact, false);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1000
		end;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1001
	CheckGearDrowning(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1002
	end;
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
  1003
511
2b5b9e00419d - Further work on new collisions implementation
unc0rr
parents: 506
diff changeset
  1004
if (Gear^.dY.QWordValue = 0) then AddGearCI(Gear)
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1005
	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
  1006
end;
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
  1007
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
  1008
////////////////////////////////////////////////////////////////////////////////
557
a7d49d5e8257 - TeamHealthSorter refactored to know about clans
unc0rr
parents: 551
diff changeset
  1009
const cSorterWorkTime = 640;
a7d49d5e8257 - TeamHealthSorter refactored to know about clans
unc0rr
parents: 551
diff changeset
  1010
var thexchar: array[0..cMaxTeams] of
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1011
			record
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1012
			dy, ny, dw: LongInt;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1013
			team: PTeam;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1014
			SortFactor: QWord;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1015
			end;
601
78a68cc4d846 Special game mode allowing the only clan on map for training mode
unc0rr
parents: 590
diff changeset
  1016
    currsorter: PGear = nil;
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
  1017
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
  1018
procedure doStepTeamHealthSorterWork(Gear: PGear);
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
  1019
var i: LongInt;
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
  1020
begin
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
  1021
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1022
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1023
if (Gear^.Timer and 15) = 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1024
	for i:= 0 to Pred(TeamsCount) do
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1025
		with thexchar[i] do
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1026
			begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1027
			{$WARNINGS OFF}
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1028
			team^.DrawHealthY:= ny + dy * Gear^.Timer div 640;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1029
			team^.TeamHealthBarWidth:= team^.NewTeamHealthBarWidth + dw * Gear^.Timer div cSorterWorkTime;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1030
			{$WARNINGS ON}
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1031
			end;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1032
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1033
if (Gear^.Timer = 0) or (currsorter <> Gear) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1034
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1035
	if currsorter = Gear then currsorter:= nil;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1036
	DeleteGear(Gear)
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1037
	end
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
  1038
end;
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
  1039
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
  1040
procedure doStepTeamHealthSorter(Gear: PGear);
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1041
var i: Longword;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1042
	b: boolean;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1043
	t: LongInt;
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
  1044
begin
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
  1045
AllInactive:= false;
557
a7d49d5e8257 - TeamHealthSorter refactored to know about clans
unc0rr
parents: 551
diff changeset
  1046
547
b81a055f2d06 Convert teams list to array
unc0rr
parents: 545
diff changeset
  1047
for t:= 0 to Pred(TeamsCount) do
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1048
	with thexchar[t] do
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1049
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1050
		dy:= TeamsArray[t]^.DrawHealthY;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1051
		dw:= TeamsArray[t]^.TeamHealthBarWidth - TeamsArray[t]^.NewTeamHealthBarWidth;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1052
		team:= TeamsArray[t];
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1053
		SortFactor:= TeamsArray[t]^.Clan^.ClanHealth;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1054
		SortFactor:= (SortFactor shl  3) + TeamsArray[t]^.Clan^.ClanIndex;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1055
		SortFactor:= (SortFactor shl 30) + TeamsArray[t]^.TeamHealth;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1056
		end;
547
b81a055f2d06 Convert teams list to array
unc0rr
parents: 545
diff changeset
  1057
601
78a68cc4d846 Special game mode allowing the only clan on map for training mode
unc0rr
parents: 590
diff changeset
  1058
if TeamsCount > 1 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1059
	repeat
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1060
	b:= true;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1061
	for t:= 0 to TeamsCount - 2 do
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1062
		if (thexchar[t].SortFactor > thexchar[Succ(t)].SortFactor) then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1063
			begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1064
			thexchar[cMaxTeams]:= thexchar[t];
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1065
			thexchar[t]:= thexchar[Succ(t)];
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1066
			thexchar[Succ(t)]:= thexchar[cMaxTeams];
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1067
			b:= false
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1068
			end
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1069
	until b;
557
a7d49d5e8257 - TeamHealthSorter refactored to know about clans
unc0rr
parents: 551
diff changeset
  1070
1120
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1111
diff changeset
  1071
t:= - 4;
557
a7d49d5e8257 - TeamHealthSorter refactored to know about clans
unc0rr
parents: 551
diff changeset
  1072
for i:= 0 to Pred(TeamsCount) do
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1073
	with thexchar[i] do
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1074
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1075
		dec(t, team^.HealthTex^.h + 2);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1076
		ny:= t;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1077
		dy:= dy - ny
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1078
		end;
764
7513452b1d51 Now game looks almost like it did before switching to OpenGL
unc0rr
parents: 762
diff changeset
  1079
557
a7d49d5e8257 - TeamHealthSorter refactored to know about clans
unc0rr
parents: 551
diff changeset
  1080
Gear^.Timer:= cSorterWorkTime;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1081
Gear^.doStep:= @doStepTeamHealthSorterWork;
143
3dacbd83209b - Many fixes to AI
unc0rr
parents: 113
diff changeset
  1082
currsorter:= Gear
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
  1083
end;
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
  1084
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1085
////////////////////////////////////////////////////////////////////////////////
854
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1086
procedure doStepIdle(Gear: PGear);
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1087
begin
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1088
AllInactive:= false;
925
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1089
dec(Gear^.Timer);
854
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1090
if Gear^.Timer = 0 then
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1091
	begin
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1092
	DeleteGear(Gear);
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1093
	AfterAttack
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1094
	end
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1095
end;
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1096
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1097
procedure doStepShover(Gear: PGear);
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1098
var HHGear: PGear;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1099
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1100
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1101
HHGear^.State:= HHGear^.State or gstNoDamage;
980
20128e98988b Don't push attacking hedgehog when using whip or baseball
unc0rr
parents: 979
diff changeset
  1102
DeleteCI(HHGear);
20128e98988b Don't push attacking hedgehog when using whip or baseball
unc0rr
parents: 979
diff changeset
  1103
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1104
AmmoShove(Gear, 30, 115);
980
20128e98988b Don't push attacking hedgehog when using whip or baseball
unc0rr
parents: 979
diff changeset
  1105
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1106
HHGear^.State:= HHGear^.State and not gstNoDamage;
854
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1107
Gear^.Timer:= 250;
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1108
Gear^.doStep:= @doStepIdle
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1109
end;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1110
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1111
////////////////////////////////////////////////////////////////////////////////
925
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1112
procedure doStepWhip(Gear: PGear);
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1113
var HHGear: PGear;
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1114
    i: LongInt;
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1115
begin
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1116
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1117
HHGear^.State:= HHGear^.State or gstNoDamage;
980
20128e98988b Don't push attacking hedgehog when using whip or baseball
unc0rr
parents: 979
diff changeset
  1118
DeleteCI(HHGear);
925
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1119
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1120
for i:= 0 to 3 do
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1121
	begin
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1122
	AmmoShove(Gear, 30, 25);
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1123
	Gear^.X:= Gear^.X + Gear^.dX * 5
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1124
	end;
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1125
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1126
HHGear^.State:= HHGear^.State and not gstNoDamage;
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1127
Gear^.Timer:= 250;
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1128
Gear^.doStep:= @doStepIdle
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1129
end;
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1130
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1131
////////////////////////////////////////////////////////////////////////////////
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1132
procedure doStepFlame(Gear: PGear);
1433
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
  1133
var cWindFactor: hwFloat;
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1134
begin
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1135
AllInactive:= false;
1433
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
  1136
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1137
if not TestCollisionYwithGear(Gear, 1) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1138
	begin
1433
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
  1139
	cWindFactor:= cWindSpeed * 270;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
  1140
	
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
  1141
	if hwAbs(Gear^.dX - cWindFactor) > _0_01 then
1437
9f370351e859 That const is better...
unc0rr
parents: 1436
diff changeset
  1142
		Gear^.dX:= (Gear^.dX - cWindFactor) * _0_995 + cWindFactor;
1297
78670b0c4a23 Try to adjust flame parameters
unc0rr
parents: 1295
diff changeset
  1143
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1144
	Gear^.dY:= Gear^.dY + cGravity;
1555
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
  1145
	if hwAbs(Gear^.dY) > _0_1 then Gear^.dY:= Gear^.dY * _0_995;
1297
78670b0c4a23 Try to adjust flame parameters
unc0rr
parents: 1295
diff changeset
  1146
	
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1147
	Gear^.X:= Gear^.X + Gear^.dX;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1148
	Gear^.Y:= Gear^.Y + Gear^.dY;
1297
78670b0c4a23 Try to adjust flame parameters
unc0rr
parents: 1295
diff changeset
  1149
	
1417
210cb6b1b275 Fix some problems with water rising
unc0rr
parents: 1388
diff changeset
  1150
	if not (hwRound(Gear^.Y) < cWaterLine) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1151
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1152
		DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1153
		exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1154
		end
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1155
	end else begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1156
	if Gear^.Timer > 0 then dec(Gear^.Timer)
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1157
		else begin
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
  1158
		Gear^.Radius:= 7;
1297
78670b0c4a23 Try to adjust flame parameters
unc0rr
parents: 1295
diff changeset
  1159
		AmmoShove(Gear, 3, 100);
78670b0c4a23 Try to adjust flame parameters
unc0rr
parents: 1295
diff changeset
  1160
		Gear^.Radius:= 1;
78670b0c4a23 Try to adjust flame parameters
unc0rr
parents: 1295
diff changeset
  1161
		doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 4, EXPLNoDamage);
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1162
		dec(Gear^.Health);
1297
78670b0c4a23 Try to adjust flame parameters
unc0rr
parents: 1295
diff changeset
  1163
		Gear^.Timer:= 1250 - Gear^.Tag * 12
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1164
		end
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1165
	end;
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1166
1295
27bec661581c Start flames rework
unc0rr
parents: 1286
diff changeset
  1167
//if (((GameTicks div 8) mod 64) = Gear^.Tag) then
27bec661581c Start flames rework
unc0rr
parents: 1286
diff changeset
  1168
//	AmmoFlameWork(Gear);
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1169
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1170
if Gear^.Health = 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1171
	DeleteGear(Gear)
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1172
end;
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1173
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1174
////////////////////////////////////////////////////////////////////////////////
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1175
procedure doStepFirePunchWork(Gear: PGear);
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1176
var HHGear: PGear;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1177
begin
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1178
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1179
if ((Gear^.Message and gm_Destroy) <> 0) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1180
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1181
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1182
	AfterAttack;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1183
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1184
	end;
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1185
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1186
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1187
if hwRound(HHGear^.Y) <= Gear^.Tag - 2 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1188
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1189
	Gear^.Tag:= hwRound(HHGear^.Y);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1190
	DrawTunnel(HHGear^.X - int2hwFloat(cHHRadius), HHGear^.Y - _1, _0_5, _0, cHHRadius * 4, 2);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1191
	HHGear^.State:= HHGear^.State or gstNoDamage;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1192
	Gear^.Y:= HHGear^.Y;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1193
	AmmoShove(Gear, 30, 40);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1194
	HHGear^.State:= HHGear^.State and not gstNoDamage
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1195
	end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1196
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1197
HHGear^.dY:= HHGear^.dY + cGravity;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1198
if not (HHGear^.dY.isNegative) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1199
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1200
	HHGear^.State:= HHGear^.State or gstMoving;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1201
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1202
	AfterAttack;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1203
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1204
	end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1205
HHGear^.Y:= HHGear^.Y + HHGear^.dY
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1206
end;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1207
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1208
procedure doStepFirePunch(Gear: PGear);
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1209
var HHGear: PGear;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1210
begin
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1211
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1212
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
514
fb8ba88a83c3 Fix firepunch regression
unc0rr
parents: 513
diff changeset
  1213
DeleteCI(HHGear);
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1214
HHGear^.X:= int2hwFloat(hwRound(HHGear^.X)) - _0_5;
1014
3c7d4e7ccdff - Fix firepunch sprite direction when use in high jump
unc0rr
parents: 992
diff changeset
  1215
HHGear^.dX:= SignAs(cLittle, Gear^.dX);
3c7d4e7ccdff - Fix firepunch sprite direction when use in high jump
unc0rr
parents: 992
diff changeset
  1216
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1217
HHGear^.dY:= - _0_3;
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1218
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1219
Gear^.X:= HHGear^.X;
979
edb8f208c1d9 Fix firepunch direction when attacking from high jump
unc0rr
parents: 974
diff changeset
  1220
Gear^.dX:= SignAs(_0_45, Gear^.dX);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1221
Gear^.dY:= - _0_9;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1222
Gear^.doStep:= @doStepFirePunchWork;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1223
DrawTunnel(HHGear^.X - int2hwFloat(cHHRadius), HHGear^.Y + _1, _0_5, _0, cHHRadius * 4, 5);
1279
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
  1224
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
  1225
PlaySound(TSound(ord(sndFirePunch1) + GetRandom(6)), false)
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1226
end;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1227
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1228
////////////////////////////////////////////////////////////////////////////////
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1229
929
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1230
procedure doStepParachuteWork(Gear: PGear);
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1231
var HHGear: PGear;
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1232
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1233
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1234
516
f682e134ac2e Fix using parachute while staying on the ground
unc0rr
parents: 514
diff changeset
  1235
inc(Gear^.Timer);
f682e134ac2e Fix using parachute while staying on the ground
unc0rr
parents: 514
diff changeset
  1236
212
c8c650b23e32 Parachute fixes
unc0rr
parents: 211
diff changeset
  1237
if TestCollisionYwithGear(HHGear, 1)
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1238
	or ((HHGear^.State and gstHHDriven) = 0)
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1239
	or CheckGearDrowning(HHGear)
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1240
	or ((Gear^.Message and gm_Attack) <> 0) then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1241
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1242
	with HHGear^ do
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1243
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1244
		Message:= 0;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1245
		SetLittle(dX);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1246
		dY:= _0;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1247
		State:= State or gstMoving;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1248
		end;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1249
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1250
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1251
	end;
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1252
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1253
if not TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1254
	HHGear^.X:= HHGear^.X + cWindSpeed * 200;
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1255
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1256
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
  1257
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
  1258
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
  1259
else if (Gear^.Message and gm_Down) <> 0 then HHGear^.Y:= HHGear^.Y + cGravity * 40;
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1260
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1261
HHGear^.Y:= HHGear^.Y + cGravity * 100;
568
d0690b7aa808 - Small fixes
unc0rr
parents: 560
diff changeset
  1262
Gear^.X:= HHGear^.X;
d0690b7aa808 - Small fixes
unc0rr
parents: 560
diff changeset
  1263
Gear^.Y:= HHGear^.Y
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1264
end;
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1265
929
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1266
procedure doStepParachute(Gear: PGear);
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1267
var HHGear: PGear;
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1268
begin
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1269
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1270
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1271
DeleteCI(HHGear);
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1272
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1273
OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^);
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1274
ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^);
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1275
931
ab4d98858a40 Fix some bugs with dropping from parachute
unc0rr
parents: 929
diff changeset
  1276
HHGear^.State:= HHGear^.State and not (gstAttacking or gstAttacked or gstMoving);
929
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1277
HHGear^.Message:= HHGear^.Message and not gm_Attack;
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1278
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1279
Gear^.doStep:= @doStepParachuteWork;
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1280
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1281
Gear^.Message:= HHGear^.Message;
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1282
doStepParachuteWork(Gear)
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1283
end;
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1284
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1285
////////////////////////////////////////////////////////////////////////////////
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1286
procedure doStepAirAttackWork(Gear: PGear);
1507
d18c67b7ad4c Quick and dirty napalm implementation
unc0rr
parents: 1505
diff changeset
  1287
var i: Longint;
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1288
begin
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1289
AllInactive:= false;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1290
Gear^.X:= Gear^.X + cAirPlaneSpeed * Gear^.Tag;
1124
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1291
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 542
diff changeset
  1292
if (Gear^.Health > 0)and(not (Gear^.X < Gear^.dX))and(Gear^.X < Gear^.dX + cAirPlaneSpeed) then
1124
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1293
	begin
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1294
	dec(Gear^.Health);
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1295
	case Gear^.State of
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1296
			0: FollowGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtAirBomb, 0, cBombsSpeed * Gear^.Tag, _0, 0);
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1297
			1: FollowGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtMine,    0, cBombsSpeed * Gear^.Tag, _0, 0);
1507
d18c67b7ad4c Quick and dirty napalm implementation
unc0rr
parents: 1505
diff changeset
  1298
			2: for i:= -17 to 17 do
d18c67b7ad4c Quick and dirty napalm implementation
unc0rr
parents: 1505
diff changeset
  1299
				FollowGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtFlame, 0, _0_01 * i, _0, 0);
1124
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1300
			end;
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1301
	Gear^.dX:= Gear^.dX + int2hwFloat(30 * Gear^.Tag)
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1302
	end;
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1303
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1304
if (GameTicks and $3F) = 0 then
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1305
	AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0);
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1306
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1307
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
  1308
end;
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1309
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1310
procedure doStepAirAttack(Gear: PGear);
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1311
begin
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1312
AllInactive:= false;
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 542
diff changeset
  1313
1507
d18c67b7ad4c Quick and dirty napalm implementation
unc0rr
parents: 1505
diff changeset
  1314
if Gear^.X.QWordValue = 0 then
d18c67b7ad4c Quick and dirty napalm implementation
unc0rr
parents: 1505
diff changeset
  1315
	Gear^.Tag:=  1
d18c67b7ad4c Quick and dirty napalm implementation
unc0rr
parents: 1505
diff changeset
  1316
else
d18c67b7ad4c Quick and dirty napalm implementation
unc0rr
parents: 1505
diff changeset
  1317
	Gear^.Tag:= -1;
d18c67b7ad4c Quick and dirty napalm implementation
unc0rr
parents: 1505
diff changeset
  1318
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1319
Gear^.X:= _1024 - _2048 * Gear^.Tag;
1124
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1320
Gear^.Y:= -_300;
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 542
diff changeset
  1321
Gear^.dX:= int2hwFloat(TargetPoint.X - 5 * Gear^.Tag * 15);
357
165a040e4cfa - Fix Blow Torch and Air Attack
unc0rr
parents: 355
diff changeset
  1322
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 542
diff changeset
  1323
if int2hwFloat(TargetPoint.Y) - Gear^.Y > _0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1324
	Gear^.dX:= Gear^.dX - cBombsSpeed * hwSqrt((int2hwFloat(TargetPoint.Y) - Gear^.Y) * 2 / cGravity) * Gear^.Tag;
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 542
diff changeset
  1325
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1326
Gear^.Health:= 6;
801
0323e5c7ee54 - 'Incoming!' shout when the plane appears
unc0rr
parents: 798
diff changeset
  1327
Gear^.doStep:= @doStepAirAttackWork;
0323e5c7ee54 - 'Incoming!' shout when the plane appears
unc0rr
parents: 798
diff changeset
  1328
PlaySound(sndIncoming, false)
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1329
end;
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1330
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1331
////////////////////////////////////////////////////////////////////////////////
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1332
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1333
procedure doStepAirBomb(Gear: PGear);
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1334
begin
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1335
AllInactive:= false;
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1336
doStepFallingGear(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1337
if (Gear^.State and gstCollision) <> 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1338
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1339
	doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1340
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1341
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1342
	end;
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1343
if (GameTicks and $3F) = 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1344
	AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0)
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1345
end;
409
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1346
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1347
////////////////////////////////////////////////////////////////////////////////
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1348
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1349
procedure doStepGirder(Gear: PGear);
415
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1350
var HHGear: PGear;
409
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1351
begin
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1352
AllInactive:= false;
415
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1353
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1354
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
409
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1355
if not TryPlaceOnLand(TargetPoint.X - SpritesData[sprAmGirder].Width div 2,
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1356
                      TargetPoint.Y - SpritesData[sprAmGirder].Height div 2,
520
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1357
                      sprAmGirder, Gear^.State, true) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1358
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1359
	HHGear^.Message:= HHGear^.Message and not gm_Attack;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1360
	HHGear^.State:= HHGear^.State and not gstAttacking;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1361
	HHGear^.State:= HHGear^.State or gstHHChooseTarget;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1362
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1363
	isCursorVisible:= true
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1364
	end
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1365
else begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1366
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1367
	AfterAttack
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1368
	end;
415
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1369
TargetPoint.X:= NoPointX
409
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1370
end;
520
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1371
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1372
////////////////////////////////////////////////////////////////////////////////
525
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1373
procedure doStepTeleportAfter(Gear: PGear);
912
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1374
var HHGear: PGear;
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1375
begin
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1376
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1377
HHGear^.Y:= HHGear^.Y + HHGear^.dY; // hedgehog falling to collect cases
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1378
HHGear^.dY:= HHGear^.dY + cGravity;
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 940
diff changeset
  1379
if TestCollisionYwithGear(HHGear, 1)
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1380
	or CheckGearDrowning(HHGear) then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1381
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1382
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1383
	AfterAttack
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1384
	end
912
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1385
end;
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1386
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1387
procedure doStepTeleportAnim(Gear: PGear);
525
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1388
begin
853
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1389
inc(Gear^.Timer);
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1390
if Gear^.Timer = 65 then
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1391
	begin
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1392
	Gear^.Timer:= 0;
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1393
	inc(Gear^.Pos);
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1394
	if Gear^.Pos = 11 then
912
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1395
		Gear^.doStep:= @doStepTeleportAfter
853
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1396
	end
525
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1397
end;
520
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1398
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1399
procedure doStepTeleport(Gear: PGear);
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1400
var HHGear: PGear;
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1401
begin
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1402
AllInactive:= false;
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1403
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1404
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1405
if not TryPlaceOnLand(TargetPoint.X - SpritesData[sprHHTelepMask].Width div 2,
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1406
                      TargetPoint.Y - SpritesData[sprHHTelepMask].Height div 2,
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1407
                      sprHHTelepMask, 0, false) then
853
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1408
		begin
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1409
		HHGear^.Message:= HHGear^.Message and not gm_Attack;
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1410
		HHGear^.State:= HHGear^.State and not gstAttacking;
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1411
		HHGear^.State:= HHGear^.State or gstHHChooseTarget;
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1412
		DeleteGear(Gear);
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1413
		isCursorVisible:= true
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1414
		end
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1415
	else begin
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1416
		DeleteCI(HHGear);
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1417
		SetAllHHToActive;
912
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1418
		Gear^.doStep:= @doStepTeleportAnim;
853
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1419
		Gear^.X:= HHGear^.X;
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1420
		Gear^.Y:= HHGear^.Y;
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1421
		HHGear^.X:= int2hwFloat(TargetPoint.X);
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1422
		HHGear^.Y:= int2hwFloat(TargetPoint.Y);
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1423
		HHGear^.State:= HHGear^.State or gstMoving
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1424
		end;
520
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1425
TargetPoint.X:= NoPointX
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1426
end;
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1427
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1428
////////////////////////////////////////////////////////////////////////////////
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1429
procedure doStepSwitcherWork(Gear: PGear);
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1430
var HHGear: PGear;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1431
    Msg, State: Longword;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1432
begin
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1433
AllInactive:= false;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1434
540
b06c5aace2fa - Many fixes related to hh switcher
unc0rr
parents: 538
diff changeset
  1435
if ((Gear^.Message and not gm_Switch) <> 0) or (TurnTimeLeft = 0) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1436
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1437
	HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1438
	Msg:= Gear^.Message and not gm_Switch;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1439
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1440
	OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1441
	ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^);
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1442
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1443
	HHGear:= CurrentHedgehog^.Gear;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1444
	ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1445
	HHGear^.Message:= Msg;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1446
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1447
	end;
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1448
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1449
if (Gear^.Message and gm_Switch) <> 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1450
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1451
	HHGear:= CurrentHedgehog^.Gear;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1452
	HHGear^.Message:= HHGear^.Message and not gm_Switch;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1453
	Gear^.Message:= Gear^.Message and not gm_Switch;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1454
	State:= HHGear^.State;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1455
	HHGear^.State:= 0;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1456
	HHGear^.Active:= false;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1457
	HHGear^.Z:= cHHZ;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1458
	RemoveGearFromList(HHGear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1459
	InsertGearToList(HHGear);
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1460
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1461
	repeat
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1462
		CurrentTeam^.CurrHedgehog:= Succ(CurrentTeam^.CurrHedgehog) mod (CurrentTeam^.HedgehogsNumber);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1463
	until (CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear <> nil);
652
4cca0c7de609 - Fix for hedgehogs switching
unc0rr
parents: 602
diff changeset
  1464
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1465
	CurrentHedgehog:= @CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog];
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1466
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1467
	HHGear:= CurrentHedgehog^.Gear;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1468
	HHGear^.State:= State;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1469
	HHGear^.Active:= true;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1470
	FollowGear:= HHGear;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1471
	HHGear^.Z:= cCurrHHZ;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1472
	RemoveGearFromList(HHGear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1473
	InsertGearToList(HHGear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1474
	Gear^.X:= HHGear^.X;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1475
	Gear^.Y:= HHGear^.Y
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1476
	end;
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1477
end;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1478
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1479
procedure doStepSwitcher(Gear: PGear);
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1480
var HHGear: PGear;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1481
begin
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1482
Gear^.doStep:= @doStepSwitcherWork;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1483
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1484
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1485
with HHGear^ do
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1486
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1487
	State:= State and not gstAttacking;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1488
	Message:= Message and not gm_Attack
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1489
	end
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1490
end;
924
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1491
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1492
////////////////////////////////////////////////////////////////////////////////
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1493
procedure doStepMortar(Gear: PGear);
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1494
var dX, dY: hwFloat;
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1495
    i: LongInt;
963
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1496
    dxn, dyn: boolean;
924
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1497
begin
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1498
AllInactive:= false;
963
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1499
dxn:= Gear^.dX.isNegative;
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1500
dyn:= Gear^.dY.isNegative;
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1501
924
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1502
doStepFallingGear(Gear);
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1503
if (Gear^.State and gstCollision) <> 0 then
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1504
	begin
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1505
	doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 20, EXPLAutoSound);
963
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1506
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1507
	Gear^.dX.isNegative:= not dxn;
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1508
	Gear^.dY.isNegative:= not dyn;
924
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1509
	for i:= 0 to 4 do
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1510
		begin
963
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1511
		dX:= Gear^.dX + (GetRandom - _0_5) * _0_03;
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1512
		dY:= Gear^.dY + (GetRandom - _0_5) * _0_03;
1273
8dcb04b143e1 Fix mortar
unc0rr
parents: 1263
diff changeset
  1513
		AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtCluster, 0, dX, dY, 25);
924
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1514
		end;
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1515
	
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1516
	DeleteGear(Gear);
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1517
	exit
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1518
	end;
963
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1519
924
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1520
if (GameTicks and $3F) = 0 then
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1521
	AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0)
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1522
end;
984
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1523
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1524
////////////////////////////////////////////////////////////////////////////////
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1525
procedure doStepKamikazeWork(Gear: PGear);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1526
const upd: Longword = 0;
987
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1527
var i: LongWord;
984
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1528
    HHGear: PGear;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1529
begin
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1530
AllInactive:= false;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1531
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1532
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1533
HHGear^.State:= HHGear^.State or gstNoDamage;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1534
DeleteCI(HHGear);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1535
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1536
i:= 2;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1537
repeat
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1538
	Gear^.X:= Gear^.X + HHGear^.dX;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1539
	Gear^.Y:= Gear^.Y + HHGear^.dY;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1540
	HHGear^.X:= Gear^.X;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1541
	HHGear^.Y:= Gear^.Y;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1542
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1543
	inc(Gear^.Damage, 2);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1544
1200
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
  1545
//	if TestCollisionXwithGear(HHGear, hwSign(Gear^.dX))
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
  1546
//		or TestCollisionYwithGear(HHGear, hwSign(Gear^.dY)) then inc(Gear^.Damage, 3);
984
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1547
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1548
	dec(i)
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1549
until (i = 0) or (Gear^.Damage > Gear^.Health);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1550
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1551
inc(upd);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1552
if upd > 3 then
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1553
	begin
987
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1554
	if Gear^.Health < 1500 then Gear^.Pos:= 2;
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1555
	
984
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1556
	AmmoShove(Gear, 30, 40);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1557
	
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1558
	DrawTunnel(HHGear^.X - HHGear^.dX * 10,
1200
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
  1559
			HHGear^.Y - _2 - HHGear^.dY * 10 + hwAbs(HHGear^.dY) * 2,
984
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1560
			HHGear^.dX,
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1561
			HHGear^.dY,
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1562
			20 + cHHRadius * 2,
1200
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
  1563
			cHHRadius * 2 + 6);
984
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1564
	
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1565
	upd:= 0
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1566
	end;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1567
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1568
if Gear^.Health < Gear^.Damage then
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1569
	begin
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1570
	doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1571
	AfterAttack;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1572
	DeleteGear(Gear);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1573
	DeleteGear(HHGear);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1574
	end else
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1575
	begin
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1576
	dec(Gear^.Health, Gear^.Damage);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1577
	Gear^.Damage:= 0
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1578
	end
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1579
end;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1580
987
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1581
procedure doStepKamikazeIdle(Gear: PGear);
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1582
begin
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1583
AllInactive:= false;
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1584
dec(Gear^.Timer);
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1585
if Gear^.Timer = 0 then
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1586
	begin
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1587
	Gear^.Pos:= 1;
992
c16355b0c982 Use Kamikaze sound
unc0rr
parents: 987
diff changeset
  1588
	PlaySound(sndKamikaze, false);
987
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1589
	Gear^.doStep:= @doStepKamikazeWork
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1590
	end
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1591
end;
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1592
984
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1593
procedure doStepKamikaze(Gear: PGear);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1594
var HHGear: PGear;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1595
begin
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1596
AllInactive:= false;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1597
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1598
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1599
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1600
HHGear^.dX:= Gear^.dX;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1601
HHGear^.dY:= Gear^.dY;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1602
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1603
Gear^.dX:= SignAs(_0_45, Gear^.dX);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1604
Gear^.dY:= - _0_9;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1605
987
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1606
Gear^.Timer:= 550;
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1607
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1608
Gear^.doStep:= @doStepKamikazeIdle
984
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1609
end;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1610
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1611
////////////////////////////////////////////////////////////////////////////////
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1612
const cakeh = 27;
1110
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1613
      cakeDmg = 75;
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1614
var CakePoints: array[0..Pred(cakeh)] of record x, y: hwFloat; end;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1615
	CakeI: Longword;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1616
1110
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1617
procedure doStepCakeExpl(Gear: PGear);
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1618
begin
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1619
inc(Gear^.Tag);
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1620
if Gear^.Tag < 2250 then exit;
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1621
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1622
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), cakeDmg, EXPLAutoSound);
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1623
AfterAttack;
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1624
DeleteGear(Gear)
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1625
end;
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1626
1109
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1627
procedure doStepCakeDown(Gear: PGear);
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1628
var gi: PGear;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1629
	dmg: LongInt;
1109
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1630
begin
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1631
AllInactive:= false;
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1632
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1633
inc(Gear^.Tag);
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1634
if Gear^.Tag < 100 then exit;
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1635
Gear^.Tag:= 0;
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1636
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1637
if Gear^.Pos = 0 then
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1638
	begin
1110
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1639
	gi:= GearsList;
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1640
	while gi <> nil do
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1641
		begin
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1642
		dmg:= cakeDmg * 2 - hwRound(Distance(gi^.X - Gear^.X, gi^.Y - Gear^.Y));
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1643
		if (dmg > 1) and (gi^.Kind = gtHedgehog) then
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1644
			gi^.State:= gi^.State or gstWinner;
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1645
		gi:= gi^.NextGear
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1646
		end;
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1647
	Gear^.doStep:= @doStepCakeExpl;
1111
25d0ca2e4a7d Play sound before cake explodes
unc0rr
parents: 1110
diff changeset
  1648
	PlaySound(sndCake, false)
1109
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1649
	end else dec(Gear^.Pos)
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1650
end;
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1651
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1652
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1653
procedure doStepCakeWork(Gear: PGear);
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1654
const dirs: array[0..3] of TPoint = ((x: 0; y: -1), (x: 1; y: 0),(x: 0; y: 1),(x: -1; y: 0));
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1655
var xx, yy, xxn, yyn: LongInt;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1656
	da: LongInt;
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1657
	tdx, tdy: hwFloat;
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1658
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1659
	procedure PrevAngle;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1660
	begin
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1661
	Gear^.Angle:= (LongInt(Gear^.Angle) + 4 - dA) mod 4
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1662
	end;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1663
	
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1664
	procedure NextAngle;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1665
	begin
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1666
	Gear^.Angle:= (LongInt(Gear^.Angle) + 4 + dA) mod 4
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1667
	end;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1668
	
1088
9702e17146e6 Stubs for spider weapon
unc0rr
parents: 1066
diff changeset
  1669
begin
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1670
inc(Gear^.Tag);
1108
c77267d982ee Animate falling and waking up cake
unc0rr
parents: 1106
diff changeset
  1671
if Gear^.Tag < 7 then exit;
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1672
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1673
dA:= hwSign(Gear^.dX);
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1674
xx:= dirs[Gear^.Angle].x;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1675
yy:= dirs[Gear^.Angle].y;
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1676
xxn:= dirs[(LongInt(Gear^.Angle) + 4 + dA) mod 4].x;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1677
yyn:= dirs[(LongInt(Gear^.Angle) + 4 + dA) mod 4].y;
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1678
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1679
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1680
if (xx = 0) then
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1681
	if TestCollisionYwithGear(Gear, yy) then
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1682
		PrevAngle
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1683
	else begin
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1684
		Gear^.Tag:= 0;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1685
		Gear^.Y:= Gear^.Y + int2hwFloat(yy);
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1686
		if not TestCollisionXwithGear(Gear, xxn) then NextAngle
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1687
		end;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1688
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1689
if (yy = 0) then
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1690
	if TestCollisionXwithGear(Gear, xx) then
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1691
		PrevAngle
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1692
	else begin
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1693
		Gear^.Tag:= 0;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1694
		Gear^.X:= Gear^.X + int2hwFloat(xx);
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1695
		if not TestCollisionYwithGear(Gear, yyn) then NextAngle
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1696
		end;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1697
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1698
if Gear^.Tag = 0 then
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1699
	begin
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1700
	CakeI:= (CakeI + 1) mod cakeh;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1701
	tdx:= CakePoints[CakeI].x - Gear^.X;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1702
	tdy:= - CakePoints[CakeI].y + Gear^.Y;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1703
	CakePoints[CakeI].x:= Gear^.X;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1704
	CakePoints[CakeI].y:= Gear^.Y;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1705
	Gear^.DirAngle:= DxDy2Angle(tdx, tdy);
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1706
	end;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1707
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1708
dec(Gear^.Health);
1090
c4ff49d0fe9b Cake explodes on /attack
unc0rr
parents: 1089
diff changeset
  1709
if (Gear^.Health = 0) or ((Gear^.Message and gm_Attack) <> 0) then
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1710
	begin
1109
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1711
	FollowGear:= Gear;
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1712
	Gear^.doStep:= @doStepCakeDown
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1713
	end
1088
9702e17146e6 Stubs for spider weapon
unc0rr
parents: 1066
diff changeset
  1714
end;
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1715
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1716
procedure doStepCakeUp(Gear: PGear);
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1717
var i: Longword;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1718
begin
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1719
AllInactive:= false;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1720
1108
c77267d982ee Animate falling and waking up cake
unc0rr
parents: 1106
diff changeset
  1721
inc(Gear^.Tag);
1109
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1722
if Gear^.Tag < 100 then exit;
1108
c77267d982ee Animate falling and waking up cake
unc0rr
parents: 1106
diff changeset
  1723
Gear^.Tag:= 0;
c77267d982ee Animate falling and waking up cake
unc0rr
parents: 1106
diff changeset
  1724
1109
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1725
if Gear^.Pos = 6 then
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1726
	begin
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1727
	for i:= 0 to Pred(cakeh) do
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1728
		begin
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1729
		CakePoints[i].x:= Gear^.X;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1730
		CakePoints[i].y:= Gear^.Y
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1731
		end;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1732
	CakeI:= 0;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1733
	Gear^.doStep:= @doStepCakeWork
1109
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1734
	end else inc(Gear^.Pos)
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1735
end;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1736
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1737
procedure doStepCakeFall(Gear: PGear);
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1738
begin
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1739
AllInactive:= false;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1740
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1741
Gear^.dY:= Gear^.dY + cGravity;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1742
if TestCollisionYwithGear(Gear, 1) then
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1743
	Gear^.doStep:= @doStepCakeUp
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1744
else
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1745
	begin
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1746
	Gear^.Y:= Gear^.Y + Gear^.dY;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1747
	if CheckGearDrowning(Gear) then AfterAttack
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1748
	end
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1749
end;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1750
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1751
procedure doStepCake(Gear: PGear);
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1752
var HHGear: PGear;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1753
begin
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1754
AllInactive:= false;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1755
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1756
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1757
HHGear^.Message:= HHGear^.Message and (not gm_Attack);
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1758
DeleteCI(HHGear);
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1759
1106
f868b7307003 - Animate cake walking
unc0rr
parents: 1103
diff changeset
  1760
FollowGear:= Gear;
f868b7307003 - Animate cake walking
unc0rr
parents: 1103
diff changeset
  1761
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1762
Gear^.doStep:= @doStepCakeFall
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1763
end;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1764
1259
0c660c3d98a4 - Continue seduction implementation
unc0rr
parents: 1207
diff changeset
  1765
////////////////////////////////////////////////////////////////////////////////
1284
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1766
procedure doStepSeductionWork(Gear: PGear);
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1767
var x, y: LongInt;
1259
0c660c3d98a4 - Continue seduction implementation
unc0rr
parents: 1207
diff changeset
  1768
begin
0c660c3d98a4 - Continue seduction implementation
unc0rr
parents: 1207
diff changeset
  1769
AllInactive:= false;
1284
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1770
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1771
Gear^.X:= Gear^.X + Gear^.dX;
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1772
Gear^.Y:= Gear^.Y + Gear^.dY;
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1773
x:= hwRound(Gear^.X);
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1774
y:= hwRound(Gear^.Y);
1259
0c660c3d98a4 - Continue seduction implementation
unc0rr
parents: 1207
diff changeset
  1775
1284
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1776
if ((y and $FFFFFC00) = 0) and ((x and $FFFFF800) = 0) then
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1777
	if (Land[y, x] <> 0) then
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1778
		begin
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1779
		Gear^.dX.isNegative:= not Gear^.dX.isNegative;
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1780
		Gear^.dY.isNegative:= not Gear^.dY.isNegative;
1286
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1781
		Gear^.dX:= Gear^.dX * _1_5;
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1782
		Gear^.dY:= Gear^.dY * _1_5 - _0_3;
1284
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1783
		AmmoShove(Gear, 0, 40);
1286
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1784
		AfterAttack;
1284
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1785
		DeleteGear(Gear)
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1786
		end
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1787
	else
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1788
else
1286
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1789
	begin
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1790
	AfterAttack;
1284
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1791
	DeleteGear(Gear)
1286
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1792
	end
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1793
end;
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1794
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1795
procedure doStepSeductionWear(Gear: PGear);
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1796
begin
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1797
AllInactive:= false;
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1798
inc(Gear^.Timer);
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1799
if Gear^.Timer > 250 then
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1800
	begin
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1801
	Gear^.Timer:= 0;
1388
5e7920f2e2aa Fix seduction sound
unc0rr
parents: 1367
diff changeset
  1802
	inc(Gear^.Pos);
5e7920f2e2aa Fix seduction sound
unc0rr
parents: 1367
diff changeset
  1803
	if Gear^.Pos = 5 then
5e7920f2e2aa Fix seduction sound
unc0rr
parents: 1367
diff changeset
  1804
		PlaySound(sndYoohoo, false)
1286
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1805
	end;
1367
e1aaa1a4901f Use seduction sound
unc0rr
parents: 1361
diff changeset
  1806
e1aaa1a4901f Use seduction sound
unc0rr
parents: 1361
diff changeset
  1807
if Gear^.Pos = 14 then
1286
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1808
	Gear^.doStep:= @doStepSeductionWork
1259
0c660c3d98a4 - Continue seduction implementation
unc0rr
parents: 1207
diff changeset
  1809
end;
1284
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1810
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1811
procedure doStepSeduction(Gear: PGear);
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1812
begin
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1813
AllInactive:= false;
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1814
DeleteCI(PHedgehog(Gear^.Hedgehog)^.Gear);
1286
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1815
Gear^.doStep:= @doStepSeductionWear
1284
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1816
end;
1298
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1817
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1818
////////////////////////////////////////////////////////////////////////////////
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1819
procedure doStepWaterUp(Gear: PGear);
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1820
var i: LongWord;
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1821
begin
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1822
AllInactive:= false;
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1823
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1824
inc(Gear^.Timer);
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1825
if Gear^.Timer = 17 then
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1826
	Gear^.Timer:= 0
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1827
else
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1828
	exit;
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1829
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1830
if cWaterLine > 0 then
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1831
	begin
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1832
	dec(cWaterLine);
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1833
	for i:= 0 to 2047 do
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1834
		Land[cWaterLine, i]:= 0;
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1835
	SetAllToActive
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1836
	end;
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1837
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1838
inc(Gear^.Tag);
1343
7a47a80b20ad Fix water rising too fast
unc0rr
parents: 1298
diff changeset
  1839
if (Gear^.Tag = 47) or (cWaterLine = 0) then
1298
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1840
	DeleteGear(Gear)
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1841
end;
1573
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1842
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1843
////////////////////////////////////////////////////////////////////////////////
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1844
procedure doStepDiggingGear(Gear: PGear);
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1845
var ox,oy: hwFloat;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1846
begin
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1847
	ox:= Gear^.X;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1848
	oy:= Gear^.Y;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1849
	Gear^.X:= Gear^.X + Gear^.dX;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1850
	Gear^.Y:= Gear^.Y + Gear^.dY;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1851
	DrawTunnel(oX, oY, Gear^.dX, Gear^.dY, 2, 6);
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1852
	CheckGearDrowning(Gear);
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1853
end;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1854
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1855
procedure doStepDrill(Gear: PGear);
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1856
var newX, newY, oldDx, oldDy: hwFloat;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1857
	t: PGearArray;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1858
begin
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1859
	AllInactive:= false;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1860
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1861
	if (Gear^.Timer = 5000) then begin //flying
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1862
		Gear^.dX:= Gear^.dX + cWindSpeed;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1863
		oldDx:= Gear^.dX;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1864
		oldDy:= Gear^.dY;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1865
		doStepFallingGear(Gear);
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1866
		if (GameTicks and $3F) = 0 then
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1867
			AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0);
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1868
	end;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1869
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1870
	if ((Gear^.State and gstCollision) <> 0) and (Gear^.Timer = 5000) then
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1871
		begin //hit
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1872
		Gear^.dX:= oldDx;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1873
		Gear^.dY:= oldDy;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1874
		t:= CheckGearsCollision(Gear);
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1875
		if (t^.Count = 0) then
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1876
			begin //hit the ground not the hedgehog
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1877
			newy:= hwSqrt((_0_5 * Gear^.dY * Gear^.dY) / Distance(Gear^.dX, Gear^.dY));
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1878
			if (Gear^.dY < _0) then newY := -newY;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1879
			newx:= newy * Gear^.dX / Gear^.dY;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1880
			Gear^.dX := newx;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1881
			Gear^.dY := newy;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1882
			dec(Gear^.Timer);
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1883
			end
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1884
		else
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1885
			Gear^.Timer:= 0
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1886
		end;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1887
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1888
	if (Gear^.Timer > 0) and (Gear^.Timer < 5000) and ((Gear^.Timer mod 20) = 0) then doStepDiggingGear(Gear);
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1889
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1890
	if (Gear^.Timer = 0)
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1891
	or ((Gear^.Timer < 5000)
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1892
		and not TestCollisionYWithGear(Gear, hwSign(Gear^.dY))
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1893
	and not TestCollisionXWithGear(Gear, hwSign(Gear^.dX))) then
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1894
		begin //out of time or exited ground
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1895
		doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1896
		DeleteGear(Gear);
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1897
		exit
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1898
		end;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1899
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1900
	if (Gear^.Timer < 5000) then dec(Gear^.Timer);
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1901
end;