hedgewars/GSHandlers.inc
author unc0rr
Mon, 01 Jun 2009 20:38:45 +0000
changeset 2142 48ed98cfd119
parent 2141 3b06505dbd5d
child 2143 ad05f6b2d1c0
permissions -rw-r--r--
Make code suck less
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
1689
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
     3
 * Copyright (c) 2004-2009 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;
1918
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    22
var skipSpeed, skipAngle, skipDecay: hwFloat;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    23
begin
1918
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    24
// probably needs tweaking. might need to be in a case statement based upon gear type
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    25
//(not Gear^.dY.isNegative) and  this should not be necessary
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
    26
if cWaterLine < hwRound(Gear^.Y) + Gear^.Radius then
1918
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    27
    begin
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    28
    skipSpeed:= _0_25;  // was 0.36 - couldn't manage baseball bat. Tiy's build is 0.36...
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    29
    skipAngle:= _1 + _0_9;  // these should perhaps also be constants, once work out what proper values are
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    30
    skipDecay:= _0_87;  // this could perhaps be a tiny bit higher.
1919
390d3f685a80 Optimize water bouncing a bit
unc0rr
parents: 1918
diff changeset
    31
    if  (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) > skipSpeed) and
1920
unc0rr
parents: 1919
diff changeset
    32
        (hwAbs(Gear^.dX) > skipAngle * hwAbs(Gear^.dY)) then
1918
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    33
       begin
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    34
       Gear^.dY.isNegative:= true;
1919
390d3f685a80 Optimize water bouncing a bit
unc0rr
parents: 1918
diff changeset
    35
       Gear^.dY:= Gear^.dY * skipDecay;
390d3f685a80 Optimize water bouncing a bit
unc0rr
parents: 1918
diff changeset
    36
       Gear^.dX:= Gear^.dX * skipDecay;
1918
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    37
       CheckGearDrowning:= false
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    38
       end
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    39
    else
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    40
        begin
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    41
        CheckGearDrowning:= true;
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    42
        Gear^.State:= gstDrowning;
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    43
        Gear^.doStep:= @doStepDrowningGear;
2142
48ed98cfd119 Make code suck less
unc0rr
parents: 2141
diff changeset
    44
		if Gear^.Kind = gtHedgehog then AddCaption(Format(GetEventString(eidDrowned), PHedgehog(Gear^.Hedgehog)^.Name), $FFFFFF, capgrpMessage);
1918
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    45
        end;
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    46
    PlaySound(sndSplash, false, nil)
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    47
    end
975d5061712f patch by nemo: water bouncing + some tweaks
unc0rr
parents: 1915
diff changeset
    48
    else
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    49
	CheckGearDrowning:= false
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    50
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    51
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    52
procedure CheckCollision(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    53
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    54
if TestCollisionXwithGear(Gear, hwSign(Gear^.X)) or TestCollisionYwithGear(Gear, hwSign(Gear^.Y))
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    55
	then Gear^.State:= Gear^.State or      gstCollision
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    56
	else Gear^.State:= Gear^.State and not gstCollision
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    57
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    58
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    59
procedure CheckHHDamage(Gear: PGear);
522
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
    60
var dmg: Longword;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    61
begin
1849
2a989e5abda6 4 utilities by nemo
unc0rr
parents: 1830
diff changeset
    62
if(Gear^.Invulnerable) then exit;
522
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
    63
if _0_4 < Gear^.dY then
1123
ed713652afae Play Ow1.ogg and Ow4.ogg when hedgehog falls
unc0rr
parents: 1120
diff changeset
    64
	begin
ed713652afae Play Ow1.ogg and Ow4.ogg when hedgehog falls
unc0rr
parents: 1120
diff changeset
    65
	if _0_6 < Gear^.dY then
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
    66
		PlaySound(sndOw4, false, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack)
1123
ed713652afae Play Ow1.ogg and Ow4.ogg when hedgehog falls
unc0rr
parents: 1120
diff changeset
    67
	else
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
    68
		PlaySound(sndOw1, false, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack);
1123
ed713652afae Play Ow1.ogg and Ow4.ogg when hedgehog falls
unc0rr
parents: 1120
diff changeset
    69
1861
unc0rr
parents: 1849
diff changeset
    70
	dmg:= modifyDamage(1 + hwRound((hwAbs(Gear^.dY) - _0_4) * 70));
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2005
diff changeset
    71
    ApplyDamage(Gear, dmg);
1123
ed713652afae Play Ow1.ogg and Ow4.ogg when hedgehog falls
unc0rr
parents: 1120
diff changeset
    72
	end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    73
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    74
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    75
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    76
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    77
procedure CalcRotationDirAngle(Gear: PGear);
776
8fc7e59d9cb4 Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents: 764
diff changeset
    78
var dAngle: real;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    79
begin
776
8fc7e59d9cb4 Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents: 764
diff changeset
    80
dAngle:= (hwAbs(Gear^.dX) + hwAbs(Gear^.dY)).QWordValue / $80000000;
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    81
if not Gear^.dX.isNegative then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    82
	Gear^.DirAngle:= Gear^.DirAngle + dAngle
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    83
else
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    84
	Gear^.DirAngle:= Gear^.DirAngle - dAngle;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
    85
776
8fc7e59d9cb4 Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents: 764
diff changeset
    86
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
    87
else if 360 < Gear^.DirAngle then Gear^.DirAngle:= Gear^.DirAngle - 360
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    88
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    89
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    90
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    91
procedure doStepDrowningGear(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    92
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    93
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    94
Gear^.Y:= Gear^.Y + cDrownSpeed;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    95
if hwRound(Gear^.Y) > Gear^.Radius + cWaterLine + cVisibleWater then DeleteGear(Gear)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    96
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    97
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    98
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    99
procedure doStepFallingGear(Gear: PGear);
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   100
var isFalling: boolean;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   101
begin
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   102
Gear^.State:= Gear^.State and not gstCollision;
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   103
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   104
if Gear^.dY.isNegative then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   105
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   106
	isFalling:= true;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   107
	if TestCollisionYwithGear(Gear, -1) then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   108
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   109
		Gear^.dX:=   Gear^.dX * Gear^.Friction;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   110
		Gear^.dY:= - Gear^.dY * Gear^.Elasticity;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   111
		Gear^.State:= Gear^.State or gstCollision
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   112
		end
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   113
	end else
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   114
	if TestCollisionYwithGear(Gear, 1) then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   115
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   116
		isFalling:= false;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   117
		Gear^.dX:=   Gear^.dX * Gear^.Friction;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   118
		Gear^.dY:= - Gear^.dY * Gear^.Elasticity;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   119
		Gear^.State:= Gear^.State or gstCollision
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   120
		end else isFalling:= true;
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   121
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   122
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   123
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   124
	Gear^.dX:= - Gear^.dX * Gear^.Elasticity;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   125
	Gear^.dY:=   Gear^.dY * Gear^.Elasticity;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   126
	Gear^.State:= Gear^.State or gstCollision
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   127
	end;
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   128
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   129
if isFalling then Gear^.dY:= Gear^.dY + cGravity;
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   130
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   131
Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   132
Gear^.Y:= Gear^.Y + Gear^.dY;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   133
CheckGearDrowning(Gear);
503
2cfdc4bfc2be Mines also collide
unc0rr
parents: 498
diff changeset
   134
if (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) < _0_0002) and
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   135
	(not isFalling) then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   136
	Gear^.State:= Gear^.State and not gstMoving
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   137
else
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   138
	Gear^.State:= Gear^.State or      gstMoving
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   139
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   140
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   141
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   142
procedure doStepBomb(Gear: PGear);
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   143
var i: LongInt;
919
fadfefc2ae40 It looks like fix for cluster bomb issue...
unc0rr
parents: 915
diff changeset
   144
    dX, dY: hwFloat;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   145
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   146
AllInactive:= false;
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   147
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   148
doStepFallingGear(Gear);
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   149
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   150
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   151
if Gear^.Timer = 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   152
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   153
	case Gear^.Kind of
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   154
		gtAmmo_Bomb: doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
1603
dbcb2d531fad Update changelog
unc0rr
parents: 1601
diff changeset
   155
		     gtBall: doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 40, EXPLAutoSound);
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   156
		gtClusterBomb: begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   157
				doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 20, EXPLAutoSound);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   158
				for i:= 0 to 4 do
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   159
					begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   160
					dX:= rndSign(GetRandom * _0_1);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   161
					dY:= (GetRandom - _3) * _0_08;
1261
903058d382c7 Add watermelon weapon (without proper sprites yet)
unc0rr
parents: 1259
diff changeset
   162
					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
   163
					end
903058d382c7 Add watermelon weapon (without proper sprites yet)
unc0rr
parents: 1259
diff changeset
   164
				end;
903058d382c7 Add watermelon weapon (without proper sprites yet)
unc0rr
parents: 1259
diff changeset
   165
		gtWatermelon: begin
903058d382c7 Add watermelon weapon (without proper sprites yet)
unc0rr
parents: 1259
diff changeset
   166
				doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 75, EXPLAutoSound);
903058d382c7 Add watermelon weapon (without proper sprites yet)
unc0rr
parents: 1259
diff changeset
   167
				for i:= 0 to 5 do
903058d382c7 Add watermelon weapon (without proper sprites yet)
unc0rr
parents: 1259
diff changeset
   168
					begin
903058d382c7 Add watermelon weapon (without proper sprites yet)
unc0rr
parents: 1259
diff changeset
   169
					dX:= rndSign(GetRandom * _0_1);
1496
bc2a166b4fd2 Modify melon pieces spread a bit
unc0rr
parents: 1495
diff changeset
   170
					dY:= (GetRandom - _1_5) * _0_3;
1262
e9191c693e44 Add watermelon sprite
unc0rr
parents: 1261
diff changeset
   171
					AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtMelonPiece, 0, dX, dY, 75)^.DirAngle:= i * 60;
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   172
					end
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   173
				end;
1555
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   174
		gtHellishBomb: begin
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   175
				doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 90, EXPLAutoSound);
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   176
				for i:= 0 to 127 do
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   177
					begin
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   178
					dX:= AngleCos(i * 16) * _0_5 * (GetRandom + _1);
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   179
					dY:= AngleSin(i * 16) * _0_5 * (GetRandom + _1);
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   180
					AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtFlame, 0, dX, dY, 0);
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   181
					AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtFlame, 0, dX, -dY, 0);
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   182
					end
0a62938e695a - Hellish bomb now spreads fire
unc0rr
parents: 1554
diff changeset
   183
				end;
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   184
		end;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   185
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   186
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   187
	end;
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   188
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   189
CalcRotationDirAngle(Gear);
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   190
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   191
if Gear^.Kind = gtHellishBomb then
1279
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   192
	begin
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
   193
	if Gear^.Timer = 3000 then PlaySound(sndHellish, false, nil);
1279
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   194
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   195
	if (GameTicks and $3F) = 0 then
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   196
		if (Gear^.State and gstCollision) = 0 then
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   197
			AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtEvilTrace, 0, _0, _0, 0);
1279
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   198
	end;
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1262
diff changeset
   199
1158
d03d12ef8971 - Fix grenade sound
unc0rr
parents: 1142
diff changeset
   200
if (Gear^.State and (gstCollision or gstMoving)) = (gstCollision or gstMoving) then
d03d12ef8971 - Fix grenade sound
unc0rr
parents: 1142
diff changeset
   201
	if (hwAbs(Gear^.dX) > _0_1) or
d03d12ef8971 - Fix grenade sound
unc0rr
parents: 1142
diff changeset
   202
	   (hwAbs(Gear^.dY) > _0_1) then
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
   203
		PlaySound(sndGrenadeImpact, false, nil)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   204
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   205
1279
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   206
procedure doStepWatermelon(Gear: PGear);
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   207
begin
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   208
AllInactive:= false;
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
   209
PlaySound(sndMelon, false, nil);
1279
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   210
Gear^.doStep:= @doStepBomb
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   211
end;
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
   212
78
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   213
procedure doStepCluster(Gear: PGear);
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   214
begin
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   215
AllInactive:= false;
66bb79dd248d Cluster bomb
unc0rr
parents: 75
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
1261
903058d382c7 Add watermelon weapon (without proper sprites yet)
unc0rr
parents: 1259
diff changeset
   219
	doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), Gear^.Timer, EXPLAutoSound);
1133
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;
1262
e9191c693e44 Add watermelon sprite
unc0rr
parents: 1261
diff changeset
   223
e9191c693e44 Add watermelon sprite
unc0rr
parents: 1261
diff changeset
   224
if Gear^.Kind = gtMelonPiece then
e9191c693e44 Add watermelon sprite
unc0rr
parents: 1261
diff changeset
   225
	CalcRotationDirAngle(Gear)
e9191c693e44 Add watermelon sprite
unc0rr
parents: 1261
diff changeset
   226
else
e9191c693e44 Add watermelon sprite
unc0rr
parents: 1261
diff changeset
   227
	if (GameTicks and $1F) = 0 then
e9191c693e44 Add watermelon sprite
unc0rr
parents: 1261
diff changeset
   228
		AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0)
78
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   229
end;
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   230
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   231
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   232
procedure doStepGrenade(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   233
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   234
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   235
Gear^.dX:= Gear^.dX + cWindSpeed;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   236
doStepFallingGear(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   237
if (Gear^.State and gstCollision) <> 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   238
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   239
	doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   240
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   241
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   242
	end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   243
if (GameTicks and $3F) = 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   244
	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
   245
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   246
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   247
////////////////////////////////////////////////////////////////////////////////
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   248
procedure doStepHealthTagWork(Gear: PGear);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   249
begin
522
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   250
if Gear^.Kind = gtHealthTag then
1505
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   251
	AllInactive:= false;
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   252
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   253
dec(Gear^.Timer);
522
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   254
Gear^.Y:= Gear^.Y + Gear^.dY;
1505
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   255
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   256
if Gear^.Timer = 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   257
	begin
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2005
diff changeset
   258
	if (Gear^.Kind = gtHealthTag) and (PHedgehog(Gear^.Hedgehog)^.Gear <> nil) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   259
		PHedgehog(Gear^.Hedgehog)^.Gear^.Active:= true; // to let current hh die
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   260
	DeleteGear(Gear)
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
   261
	end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   262
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   263
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
   264
procedure doStepHealthTagWorkUnderWater(Gear: PGear);
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
   265
begin
1505
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   266
AllInactive:= false;
1495
2b2b89bdb5f3 More verbose gear delete debuglog message
unc0rr
parents: 1437
diff changeset
   267
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   268
Gear^.Y:= Gear^.Y - _0_08;
1495
2b2b89bdb5f3 More verbose gear delete debuglog message
unc0rr
parents: 1437
diff changeset
   269
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   270
if hwRound(Gear^.Y) < cWaterLine + 10 then
1505
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   271
	DeleteGear(Gear)
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
   272
end;
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
   273
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   274
procedure doStepHealthTag(Gear: PGear);
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   275
var s: shortstring;
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   276
begin
1505
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   277
AllInactive:= false;
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   278
Gear^.dY:= -_0_08;
522
ca089787f59d Tags with current damage
unc0rr
parents: 521
diff changeset
   279
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   280
str(Gear^.State, s);
1505
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   281
Gear^.Tex:= RenderStringTex(s, PHedgehog(Gear^.Hedgehog)^.Team^.Clan^.Color, fnt16);
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   282
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   283
if hwRound(Gear^.Y) < cWaterLine then
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   284
	Gear^.doStep:= @doStepHealthTagWork
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   285
else
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   286
	Gear^.doStep:= @doStepHealthTagWorkUnderWater;
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   287
762
5ecf042f6113 More sprites are visible
unc0rr
parents: 690
diff changeset
   288
Gear^.Y:= Gear^.Y - int2hwFloat(Gear^.Tex^.h)
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   289
end;
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 89
diff changeset
   290
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   291
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   292
procedure doStepGrave(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   293
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   294
AllInactive:= false;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   295
if Gear^.dY.isNegative then
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   296
   if TestCollisionY(Gear, -1) then Gear^.dY:= _0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   297
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   298
if not Gear^.dY.isNegative then
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 57
diff changeset
   299
   if TestCollisionY(Gear, 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   300
      begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   301
      Gear^.dY:= - Gear^.dY * Gear^.Elasticity;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   302
      if Gear^.dY > - _1div1024 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   303
         begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   304
         Gear^.Active:= false;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   305
         exit
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
   306
         end else if Gear^.dY < - _0_03 then PlaySound(sndGraveImpact, false, nil)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   307
      end;
1505
3a96e93572cb - Convert small damage tag to visual gears
unc0rr
parents: 1504
diff changeset
   308
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   309
Gear^.Y:= Gear^.Y + Gear^.dY;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   310
CheckGearDrowning(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   311
Gear^.dY:= Gear^.dY + cGravity
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   312
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   313
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   314
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   315
procedure doStepUFOWork(Gear: PGear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   316
var t: hwFloat;
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   317
    y: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   318
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   319
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   320
t:= Distance(Gear^.dX, Gear^.dY);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   321
Gear^.dX:= Gear^.Elasticity * (Gear^.dX + _0_000004 * (TargetPoint.X - hwRound(Gear^.X)));
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   322
Gear^.dY:= Gear^.Elasticity * (Gear^.dY + _0_000004 * (TargetPoint.Y - hwRound(Gear^.Y)));
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   323
t:= t / Distance(Gear^.dX, Gear^.dY);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   324
Gear^.dX:= Gear^.dX * t;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   325
Gear^.dY:= Gear^.dY * t;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   326
Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   327
Gear^.Y:= Gear^.Y + Gear^.dY;
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   328
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   329
if (GameTicks and $3F) = 0 then
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   330
   begin
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   331
   y:= hwRound(Gear^.Y);
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   332
   if y + Gear^.Radius < cWaterLine then
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   333
      AddGear(hwRound(Gear^.X), y, gtSmokeTrace, 0, _0, _0, 0);
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   334
   end;
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   335
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   336
CheckCollision(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   337
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   338
if ((Gear^.State and gstCollision) <> 0) or (Gear^.Timer = 0) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   339
   begin
560
7bf2b554de0c UFO Sound
unc0rr
parents: 559
diff changeset
   340
   StopSound(sndUFO);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   341
   doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   342
   DeleteGear(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   343
   end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   344
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   345
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   346
procedure doStepUFO(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   347
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   348
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   349
Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   350
Gear^.Y:= Gear^.Y + Gear^.dY;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   351
Gear^.dY:= Gear^.dY + cGravity;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   352
CheckCollision(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   353
if (Gear^.State and gstCollision) <> 0 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   354
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   355
   doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   356
   DeleteGear(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   357
   exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   358
   end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   359
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   360
if Gear^.Timer = 0 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   361
   begin
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
   362
   PlaySound(sndUFO, true, nil);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   363
   Gear^.Timer:= 5000;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   364
   Gear^.doStep:= @doStepUFOWork
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   365
   end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   366
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   367
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   368
////////////////////////////////////////////////////////////////////////////////
876
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   369
procedure doStepShotIdle(Gear: PGear);
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   370
begin
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   371
AllInactive:= false;
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   372
inc(Gear^.Timer);
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   373
if Gear^.Timer > 75 then
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   374
	begin
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   375
	DeleteGear(Gear);
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   376
	AfterAttack
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   377
	end
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   378
end;
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   379
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   380
procedure doStepShotgunShot(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   381
var i: LongWord;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   382
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   383
AllInactive:= false;
876
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   384
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   385
if ((Gear^.State and gstAnimation) = 0) then
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   386
	begin
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   387
	dec(Gear^.Timer);
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   388
	if Gear^.Timer = 0 then
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   389
		begin
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
   390
		PlaySound(sndShotgunFire, false, nil);
876
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   391
		Gear^.State:= Gear^.State or gstAnimation
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   392
		end;
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   393
	exit
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   394
	end
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   395
	else inc(Gear^.Timer);
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   396
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   397
i:= 200;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   398
repeat
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   399
Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   400
Gear^.Y:= Gear^.Y + Gear^.dY;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   401
CheckCollision(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   402
if (Gear^.State and gstCollision) <> 0 then
876
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   403
	begin
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   404
	Gear^.X:= Gear^.X + Gear^.dX * 8;
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   405
	Gear^.Y:= Gear^.Y + Gear^.dY * 8;
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   406
	ShotgunShot(Gear);
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   407
	Gear^.doStep:= @doStepShotIdle;
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   408
	exit
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   409
	end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   410
dec(i)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   411
until i = 0;
1760
55a1edd97911 Fix nemo's large land patch
unc0rr
parents: 1753
diff changeset
   412
if (hwRound(Gear^.X) and LAND_WIDTH_MASK <> 0) or (hwRound(Gear^.Y) and LAND_HEIGHT_MASK <> 0) then
876
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   413
	Gear^.doStep:= @doStepShotIdle
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   414
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   415
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   416
////////////////////////////////////////////////////////////////////////////////
2023
41d3afaa20c7 Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents: 2017
diff changeset
   417
procedure doStepBulletWork(Gear: PGear);
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   418
var i, x, y: LongWord;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   419
    oX, oY: hwFloat;
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   420
begin
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   421
AllInactive:= false;
876
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   422
inc(Gear^.Timer);
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   423
i:= 80;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   424
oX:= Gear^.X;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   425
oY:= Gear^.Y;
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   426
repeat
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   427
  Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   428
  Gear^.Y:= Gear^.Y + Gear^.dY;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   429
  x:= hwRound(Gear^.X);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   430
  y:= hwRound(Gear^.Y);
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1752
diff changeset
   431
  if ((y and LAND_HEIGHT_MASK) = 0) and ((x and LAND_WIDTH_MASK) = 0)
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   432
     and (Land[y, x] <> 0) then inc(Gear^.Damage);
2023
41d3afaa20c7 Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents: 2017
diff changeset
   433
  if Gear^.Damage > 5 then
41d3afaa20c7 Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents: 2017
diff changeset
   434
      if Gear^.Ammo^.AmmoType = amDEagle then
41d3afaa20c7 Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents: 2017
diff changeset
   435
          AmmoShove(Gear, 7, 20)
41d3afaa20c7 Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents: 2017
diff changeset
   436
      else
2031
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   437
          AmmoShove(Gear, Gear^.Timer, 20);
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   438
  dec(i)
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   439
until (i = 0) or (Gear^.Damage > Gear^.Health);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   440
if Gear^.Damage > 0 then
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   441
   begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   442
   DrawTunnel(oX, oY, Gear^.dX, Gear^.dY, 82 - i, 1);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   443
   dec(Gear^.Health, Gear^.Damage);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   444
   Gear^.Damage:= 0
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   445
   end;
1760
55a1edd97911 Fix nemo's large land patch
unc0rr
parents: 1753
diff changeset
   446
55a1edd97911 Fix nemo's large land patch
unc0rr
parents: 1753
diff changeset
   447
if (Gear^.Health <= 0)
55a1edd97911 Fix nemo's large land patch
unc0rr
parents: 1753
diff changeset
   448
	or (hwRound(Gear^.X) and LAND_WIDTH_MASK <> 0)
55a1edd97911 Fix nemo's large land patch
unc0rr
parents: 1753
diff changeset
   449
	or (hwRound(Gear^.Y) and LAND_HEIGHT_MASK <> 0) then
2031
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   450
    begin
2087
79472a9be025 neglected test on sniper rifle being active
nemo
parents: 2068
diff changeset
   451
    if (Gear^.Kind = gtSniperRifleShot) and ((GameFlags and gfLaserSight) = 0) then cLaserSighting:= false;
2033
860b9aea5e86 allow adjusting angle during sniping
nemo
parents: 2031
diff changeset
   452
    if (Gear^.Ammo^.NumPerTurn <= CurrentHedgehog^.AttacksNum) and
2031
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   453
       ((GameFlags and gfArtillery) = 0) then cArtillery:= false;
876
d5b6e0ae5755 Desert Eagle and Shotgun shot animations
unc0rr
parents: 854
diff changeset
   454
	Gear^.doStep:= @doStepShotIdle
2031
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   455
    end;
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   456
end;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   457
559
6083fffc9e2f Desert Eagle sound
unc0rr
parents: 557
diff changeset
   458
procedure doStepDEagleShot(Gear: PGear);
6083fffc9e2f Desert Eagle sound
unc0rr
parents: 557
diff changeset
   459
begin
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
   460
PlaySound(sndGun, false, nil);
2023
41d3afaa20c7 Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents: 2017
diff changeset
   461
Gear^.doStep:= @doStepBulletWork
41d3afaa20c7 Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents: 2017
diff changeset
   462
end;
41d3afaa20c7 Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents: 2017
diff changeset
   463
41d3afaa20c7 Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents: 2017
diff changeset
   464
procedure doStepSniperRifleShot(Gear: PGear);
2031
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   465
var HHGear: PGear;
2023
41d3afaa20c7 Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents: 2017
diff changeset
   466
begin
2024
2985f3bd18b7 Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents: 2023
diff changeset
   467
cArtillery:= true;
2031
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   468
HHGear:=PHedgehog(Gear^.Hedgehog)^.Gear;
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   469
HHGear^.State:= HHGear^.State or gstNotKickable;
2033
860b9aea5e86 allow adjusting angle during sniping
nemo
parents: 2031
diff changeset
   470
HedgehogChAngle(HHGear);
2023
41d3afaa20c7 Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents: 2017
diff changeset
   471
if not cLaserSighting then // game doesn't have default laser sight. turn it on and give them a chance to aim
41d3afaa20c7 Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents: 2017
diff changeset
   472
    begin
41d3afaa20c7 Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents: 2017
diff changeset
   473
    cLaserSighting:= true;
2031
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   474
    HHGear^.Message:= 0;
2052
1f67933cb620 constrain angle, decrement turn time
nemo
parents: 2042
diff changeset
   475
    if(HHGear^.Angle - 32 >= 0) then dec(HHGear^.Angle,32)
2031
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   476
    end;
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   477
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   478
if (HHGear^.Message and gm_Attack) <> 0 then
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   479
    begin
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   480
	Gear^.State:= Gear^.State or gstAnimation;
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   481
    Gear^.dX:= SignAs(AngleSin(HHGear^.Angle), HHGear^.dX) * _0_5;
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   482
    Gear^.dY:= -AngleCos(HHGear^.Angle) * _0_5;
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   483
    PlaySound(sndGun, false, nil);
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   484
    Gear^.doStep:= @doStepBulletWork;
2024
2985f3bd18b7 Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents: 2023
diff changeset
   485
    end
2985f3bd18b7 Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents: 2023
diff changeset
   486
else
2031
b6f3e56fb100 david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents: 2029
diff changeset
   487
    if (GameTicks mod 32) = 0 then
2052
1f67933cb620 constrain angle, decrement turn time
nemo
parents: 2042
diff changeset
   488
        if (GameTicks mod 4096) < 2048 then 
1f67933cb620 constrain angle, decrement turn time
nemo
parents: 2042
diff changeset
   489
            begin
1f67933cb620 constrain angle, decrement turn time
nemo
parents: 2042
diff changeset
   490
            if(HHGear^.Angle + 1 <= cMaxAngle) then inc(HHGear^.Angle)
1f67933cb620 constrain angle, decrement turn time
nemo
parents: 2042
diff changeset
   491
            end
1f67933cb620 constrain angle, decrement turn time
nemo
parents: 2042
diff changeset
   492
        else
1f67933cb620 constrain angle, decrement turn time
nemo
parents: 2042
diff changeset
   493
            if(HHGear^.Angle - 1 >= 0) then dec(HHGear^.Angle);
2024
2985f3bd18b7 Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents: 2023
diff changeset
   494
2058
5c2b52755141 Neglected to delete gear at end of turn
nemo
parents: 2052
diff changeset
   495
if (TurnTimeLeft > 0) then 
5c2b52755141 Neglected to delete gear at end of turn
nemo
parents: 2052
diff changeset
   496
    dec(TurnTimeLeft)
5c2b52755141 Neglected to delete gear at end of turn
nemo
parents: 2052
diff changeset
   497
else
5c2b52755141 Neglected to delete gear at end of turn
nemo
parents: 2052
diff changeset
   498
    begin
2139
5a083e71a71d Properly decrement sniper rifle if timed out. Try to get camera position straight for once.
nemo
parents: 2090
diff changeset
   499
    PHedgehog(Gear^.Hedgehog)^.AttacksNum:= Gear^.Ammo^.NumPerTurn+1;
2058
5c2b52755141 Neglected to delete gear at end of turn
nemo
parents: 2052
diff changeset
   500
	DeleteGear(Gear);
2059
b25eed7f9183 oops. forgot to reset turn time
nemo
parents: 2058
diff changeset
   501
	AfterAttack;
b25eed7f9183 oops. forgot to reset turn time
nemo
parents: 2058
diff changeset
   502
    TurnTimeLeft:= 0
2058
5c2b52755141 Neglected to delete gear at end of turn
nemo
parents: 2052
diff changeset
   503
    end;
559
6083fffc9e2f Desert Eagle sound
unc0rr
parents: 557
diff changeset
   504
end;
6083fffc9e2f Desert Eagle sound
unc0rr
parents: 557
diff changeset
   505
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 23
diff changeset
   506
////////////////////////////////////////////////////////////////////////////////
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   507
procedure doStepActionTimer(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   508
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   509
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   510
case Gear^.Kind of
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   511
    gtATStartGame: begin
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   512
                   AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   513
                   if Gear^.Timer = 0 then
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   514
                      AddCaption(trmsg[sidStartFight], $FFFFFF, capgrpGameState);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   515
                   end;
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   516
 gtATSmoothWindCh: begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   517
                   if Gear^.Timer = 0 then
6
9c1f00e7b43e Smooth change wind bar
unc0rr
parents: 4
diff changeset
   518
                      begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   519
                      if WindBarWidth < Gear^.Tag then inc(WindBarWidth)
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   520
                         else if WindBarWidth > Gear^.Tag then dec(WindBarWidth);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   521
                      if WindBarWidth <> Gear^.Tag then Gear^.Timer:= 10;
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   522
                      end
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   523
                   end;
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   524
   gtATFinishGame: begin
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   525
                   AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   526
                   if Gear^.Timer = 0 then
113
d975a426ebf7 - Many small fixes in engine
unc0rr
parents: 109
diff changeset
   527
                      begin
d975a426ebf7 - Many small fixes in engine
unc0rr
parents: 109
diff changeset
   528
                      SendIPC('N');
324
f4c109c82a0c Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents: 306
diff changeset
   529
                      SendIPC('q');
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   530
                      GameState:= gsExit
113
d975a426ebf7 - Many small fixes in engine
unc0rr
parents: 109
diff changeset
   531
                      end
6
9c1f00e7b43e Smooth change wind bar
unc0rr
parents: 4
diff changeset
   532
                   end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   533
     end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   534
if Gear^.Timer = 0 then DeleteGear(Gear)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   535
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   536
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   537
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   538
procedure doStepPickHammerWork(Gear: PGear);
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   539
var i, ei: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   540
    HHGear: PGear;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   541
begin
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   542
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   543
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   544
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   545
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
   546
	begin
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   547
	StopSound(sndPickhammer);
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   548
	DeleteGear(Gear);
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   549
	AfterAttack;
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   550
	exit
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   551
	end;
845
ca72cf446ec2 Add sprite for pickhammer
unc0rr
parents: 820
diff changeset
   552
422
12295a8b8b2f Tune pickhammer
unc0rr
parents: 415
diff changeset
   553
if (Gear^.Timer mod 33) = 0 then
1200
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   554
	begin
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   555
	HHGear^.State:= HHGear^.State or gstNoDamage;
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   556
	doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y) + 7, 6, EXPLDontDraw);
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   557
	HHGear^.State:= HHGear^.State and not gstNoDamage
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   558
	end;
422
12295a8b8b2f Tune pickhammer
unc0rr
parents: 415
diff changeset
   559
12295a8b8b2f Tune pickhammer
unc0rr
parents: 415
diff changeset
   560
if (Gear^.Timer mod 47) = 0 then
1200
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   561
	begin
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   562
	i:= hwRound(Gear^.X) - Gear^.Radius - LongInt(GetRandom(2));
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   563
	ei:= hwRound(Gear^.X) + Gear^.Radius + LongInt(GetRandom(2));
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   564
	while i <= ei do
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   565
		begin
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   566
		DrawExplosion(i, hwRound(Gear^.Y) + 3, 3);
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   567
		inc(i, 1)
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   568
		end;
2090
4edb0d49a42d prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents: 2089
diff changeset
   569
    if Land[hwRound(Gear^.Y + _1_9) , hwRound(Gear^.X + Gear^.dX)] <> COLOR_INDESTRUCTIBLE then
4edb0d49a42d prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents: 2089
diff changeset
   570
        begin
4edb0d49a42d prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents: 2089
diff changeset
   571
        Gear^.X:= Gear^.X + Gear^.dX;
4edb0d49a42d prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents: 2089
diff changeset
   572
        Gear^.Y:= Gear^.Y + _1_9;
4edb0d49a42d prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents: 2089
diff changeset
   573
        end;
1200
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   574
	SetAllHHToActive;
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   575
	end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   576
if TestCollisionYwithGear(Gear, 1) then
1200
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   577
	begin
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   578
	Gear^.dY:= _0;
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   579
	SetLittle(HHGear^.dX);
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   580
	HHGear^.dY:= _0;
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   581
	end else
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   582
	begin
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   583
	Gear^.dY:= Gear^.dY + cGravity;
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   584
	Gear^.Y:= Gear^.Y + Gear^.dY;
1417
210cb6b1b275 Fix some problems with water rising
unc0rr
parents: 1388
diff changeset
   585
	if hwRound(Gear^.Y) > cWaterLine then Gear^.Timer:= 1
1200
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
   586
	end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   587
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   588
Gear^.X:= Gear^.X + HHGear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   589
HHGear^.X:= Gear^.X;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   590
HHGear^.Y:= Gear^.Y - int2hwFloat(cHHRadius);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   591
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   592
if (Gear^.Message and gm_Attack) <> 0 then
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   593
   if (Gear^.State and gsttmpFlag) <> 0 then Gear^.Timer:= 1 else else
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   594
   if (Gear^.State and gsttmpFlag) = 0 then Gear^.State:= Gear^.State or gsttmpFlag;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   595
if ((Gear^.Message and gm_Left) <> 0) then Gear^.dX:= - _0_3 else
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   596
   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
   597
                                          else Gear^.dX:= _0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   598
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   599
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   600
procedure doStepPickHammer(Gear: PGear);
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   601
var i, y: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   602
    ar: TRangeArray;
911
b709fe13ed69 Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents: 883
diff changeset
   603
    HHGear: PGear;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   604
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   605
i:= 0;
911
b709fe13ed69 Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents: 883
diff changeset
   606
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
b709fe13ed69 Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents: 883
diff changeset
   607
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   608
y:= hwRound(Gear^.Y) - cHHRadius * 2;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   609
while y < hwRound(Gear^.Y) do
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   610
   begin
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   611
   ar[i].Left := hwRound(Gear^.X) - Gear^.Radius - LongInt(GetRandom(2));
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   612
   ar[i].Right:= hwRound(Gear^.X) + Gear^.Radius + LongInt(GetRandom(2));
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   613
   inc(y, 2);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   614
   inc(i)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   615
   end;
911
b709fe13ed69 Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents: 883
diff changeset
   616
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   617
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
   618
Gear^.dY:= HHGear^.dY;
b709fe13ed69 Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents: 883
diff changeset
   619
DeleteCI(HHGear);
b709fe13ed69 Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents: 883
diff changeset
   620
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
   621
PlaySound(sndPickhammer, true, nil);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   622
doStepPickHammerWork(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   623
Gear^.doStep:= @doStepPickHammerWork
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   624
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   625
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   626
////////////////////////////////////////////////////////////////////////////////
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   627
var BTPrevAngle, BTSteps: LongInt;
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   628
303
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   629
procedure doStepBlowTorchWork(Gear: PGear);
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   630
var HHGear: PGear;
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   631
	b: boolean;
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   632
	prevX: LongInt;
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   633
begin
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   634
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   635
dec(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   636
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
303
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   637
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   638
HedgehogChAngle(HHGear);
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   639
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   640
b:= false;
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   641
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   642
if abs(LongInt(HHGear^.Angle) - BTPrevAngle) > 7  then
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   643
	begin
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   644
	Gear^.dX:= SignAs(AngleSin(HHGear^.Angle) * _0_5, HHGear^.dX);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   645
	Gear^.dY:= AngleCos(HHGear^.Angle) * ( - _0_5);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   646
	BTPrevAngle:= HHGear^.Angle;
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   647
	b:= true
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   648
	end;
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   649
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   650
if ((HHGear^.State and gstMoving) <> 0) then
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   651
	begin
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   652
	doStepHedgehogMoving(HHGear);
1736
9ae3cd2204d3 Fix blowtorch delete condition
unc0rr
parents: 1719
diff changeset
   653
	if (HHGear^.State and gstHHDriven) = 0 then Gear^.Timer:= 0
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   654
	end;
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   655
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   656
if Gear^.Timer mod cHHStepTicks = 0 then
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   657
	begin
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   658
	b:= true;
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   659
	if Gear^.dX.isNegative then
1547
4251f9598d54 - Fix blowtorch regression
unc0rr
parents: 1545
diff changeset
   660
		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
   661
	else
1547
4251f9598d54 - Fix blowtorch regression
unc0rr
parents: 1545
diff changeset
   662
		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
   663
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   664
	if ((HHGear^.State and gstMoving) = 0) then
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   665
		begin
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   666
		HHGear^.State:= HHGear^.State and not gstAttacking;
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   667
		prevX:= hwRound(HHGear^.X);
2090
4edb0d49a42d prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents: 2089
diff changeset
   668
	
4edb0d49a42d prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents: 2089
diff changeset
   669
// why the call to HedgehogStep then a further increment of X?	
4edb0d49a42d prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents: 2089
diff changeset
   670
		if (prevX = hwRound(HHGear^.X)) and (Land[hwRound(HHGear^.Y) , hwRound(HHGear^.X + SignAs(_1, HHGear^.dX))] <> COLOR_INDESTRUCTIBLE) then HedgehogStep(HHGear);
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   671
		
2090
4edb0d49a42d prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents: 2089
diff changeset
   672
		if (prevX = hwRound(HHGear^.X)) and (Land[hwRound(HHGear^.Y) , hwRound(HHGear^.X + SignAs(_1, HHGear^.dX))] <> COLOR_INDESTRUCTIBLE) then HHGear^.X:= HHGear^.X + SignAs(_1, HHGear^.dX);
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   673
		HHGear^.State:= HHGear^.State or gstAttacking
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   674
		end;
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   675
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   676
	inc(BTSteps);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   677
	if BTSteps = 7 then
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   678
		begin
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   679
		BTSteps:= 0;
2090
4edb0d49a42d prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents: 2089
diff changeset
   680
        if Land[hwRound(HHGear^.Y + Gear^.dY * (cHHRadius + cBlowTorchC)) , hwRound(HHGear^.X + Gear^.dX * (cHHRadius + cBlowTorchC))] <> COLOR_INDESTRUCTIBLE then
4edb0d49a42d prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents: 2089
diff changeset
   681
            begin
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   682
		Gear^.X:= HHGear^.X + Gear^.dX * (cHHRadius + cBlowTorchC);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   683
		Gear^.Y:= HHGear^.Y + Gear^.dY * (cHHRadius + cBlowTorchC);
2090
4edb0d49a42d prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents: 2089
diff changeset
   684
            end;
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   685
		HHGear^.State:= HHGear^.State or gstNoDamage;
1643
434e28245dc0 Fix yet another ballgun bug
unc0rr
parents: 1635
diff changeset
   686
		AmmoShove(Gear, 2, 15);
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   687
		HHGear^.State:= HHGear^.State and not gstNoDamage
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   688
		end;
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   689
	end;
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   690
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   691
if b then
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   692
   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
   693
              Gear^.dX, Gear^.dY,
1501
a0e56fdf10cd Tune blowtorch a bit
unc0rr
parents: 1496
diff changeset
   694
              cHHRadius * 5, cHHRadius * 2 + 7);
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   695
2090
4edb0d49a42d prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents: 2089
diff changeset
   696
if (Gear^.Timer = 0) or ((HHGear^.Message and gm_Attack) <> 0) then
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   697
	begin
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   698
	HHGear^.Message:= 0;
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   699
	HHGear^.State:= HHGear^.State and (not gstNotKickable);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   700
	DeleteGear(Gear);
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   701
	AfterAttack
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   702
	end
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   703
end;
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   704
303
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   705
procedure doStepBlowTorch(Gear: PGear);
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   706
var HHGear: PGear;
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   707
begin
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   708
BTPrevAngle:= High(LongInt);
305
1c1cd66ffcdc Better blowtorch
unc0rr
parents: 304
diff changeset
   709
BTSteps:= 0;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   710
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   711
HHGear^.Message:= 0;
1528
3fee15104c1d More stable blowtorch:
unc0rr
parents: 1507
diff changeset
   712
HHGear^.State:= HHGear^.State or gstNotKickable;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   713
Gear^.doStep:= @doStepBlowTorchWork
303
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   714
end;
1659c4aad5ab Now blow torch angle can be changed during blowing :)
unc0rr
parents: 302
diff changeset
   715
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   716
////////////////////////////////////////////////////////////////////////////////
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 300
diff changeset
   717
1781
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   718
procedure doStepRope(Gear: PGear); forward;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   719
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   720
procedure doStepRopeAfterAttack(Gear: PGear);
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   721
var HHGear: PGear;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   722
begin
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   723
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   724
if ((HHGear^.State and gstHHDriven) = 0)
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   725
	or (CheckGearDrowning(HHGear))
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   726
	or TestCollisionYwithGear(HHGear, 1) then
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   727
	begin
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   728
	DeleteGear(Gear);
2060
3e9e5e1be6f5 fix crash in parachute/rope if drowning with active girder/teleport
nemo
parents: 2059
diff changeset
   729
	isCursorVisible:= false;
1781
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   730
	exit
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   731
	end;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   732
1785
26c28fa8f56c Fix rope regression (unable to change angle)
unc0rr
parents: 1784
diff changeset
   733
HedgehogChAngle(HHGear);
26c28fa8f56c Fix rope regression (unable to change angle)
unc0rr
parents: 1784
diff changeset
   734
2029
51e164a40b41 Add a tracing message to help debug rope bugs
unc0rr
parents: 2025
diff changeset
   735
if TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then
51e164a40b41 Add a tracing message to help debug rope bugs
unc0rr
parents: 2025
diff changeset
   736
	begin
51e164a40b41 Add a tracing message to help debug rope bugs
unc0rr
parents: 2025
diff changeset
   737
	{$IFDEF DEBUGFILE}if HHGear^.dX.QWordValue > 1 then AddFileLog('Stopping hedgehog after rope attack due to wall collision');{$ENDIF}
51e164a40b41 Add a tracing message to help debug rope bugs
unc0rr
parents: 2025
diff changeset
   738
	SetLittle(HHGear^.dX);
51e164a40b41 Add a tracing message to help debug rope bugs
unc0rr
parents: 2025
diff changeset
   739
	end;
51e164a40b41 Add a tracing message to help debug rope bugs
unc0rr
parents: 2025
diff changeset
   740
1781
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   741
if HHGear^.dY.isNegative and TestCollisionYwithGear(HHGear, -1) then HHGear^.dY:= _0;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   742
HHGear^.X:= HHGear^.X + HHGear^.dX;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   743
HHGear^.Y:= HHGear^.Y + HHGear^.dY;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   744
HHGear^.dY:= HHGear^.dY + cGravity;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   745
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   746
if (Gear^.Message and gm_Attack) <> 0 then
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   747
	begin
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   748
	Gear^.X:= HHGear^.X;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   749
	Gear^.Y:= HHGear^.Y;
1964
dc9ea05c9d2f - Another way of defining official server
unc0rr
parents: 1922
diff changeset
   750
dc9ea05c9d2f - Another way of defining official server
unc0rr
parents: 1922
diff changeset
   751
	ApplyAngleBounds(PHedgehog(Gear^.Hedgehog)^, amRope);
dc9ea05c9d2f - Another way of defining official server
unc0rr
parents: 1922
diff changeset
   752
	
1781
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   753
	Gear^.dX:= SignAs(AngleSin(HHGear^.Angle), HHGear^.dX);
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   754
	Gear^.dY:= -AngleCos(HHGear^.Angle);
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   755
	Gear^.Friction:= _450;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   756
	Gear^.Elasticity:= _0;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   757
	Gear^.State:= Gear^.State and not gsttmpflag;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   758
	Gear^.doStep:= @doStepRope
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   759
	end
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   760
end;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   761
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   762
procedure doStepRopeWork(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   763
var HHGear: PGear;
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
   764
	len, tx, ty, nx, ny, ropeDx, ropeDy, mdX, mdY: hwFloat;
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   765
	lx, ly: LongInt;
1553
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   766
	haveCollision,
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   767
	haveDivided: boolean;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   768
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   769
	procedure DeleteMe;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   770
	begin
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   771
	with HHGear^ do
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   772
		begin
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   773
		Message:= Message and not gm_Attack;
2025
692308790912 Adjust routines impacted by DrawRotatedF modification, clear gstHHHJump in rope to avoid crosshair/hat drawing bug.
nemo
parents: 2024
diff changeset
   774
		State:= (State or gstMoving) and not gstWinner;
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   775
		end;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   776
	DeleteGear(Gear)
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   777
	end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   778
1781
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   779
	procedure WaitCollision;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   780
	begin
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   781
	with HHGear^ do
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   782
		begin
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   783
		Message:= Message and not gm_Attack;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   784
		State:= State or gstMoving;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   785
		end;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   786
	RopePoints.Count:= 0;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   787
	Gear^.Elasticity:= _0;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   788
	Gear^.doStep:= @doStepRopeAfterAttack
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   789
	end;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   790
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   791
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   792
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   793
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   794
if ((HHGear^.State and gstHHDriven) = 0)
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   795
	or (CheckGearDrowning(HHGear)) then
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   796
	begin
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   797
	DeleteMe;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   798
	exit
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   799
	end;
928
b9064b48b001 Some preparation work for attacking from rope, parachute and etc.
unc0rr
parents: 925
diff changeset
   800
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   801
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
   802
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
   803
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   804
if not TestCollisionYwithGear(HHGear, 1) then HHGear^.dY:= HHGear^.dY + cGravity;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   805
1652
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   806
ropeDx:= HHGear^.X - Gear^.X; // vector between hedgehog and rope attaching point
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   807
ropeDy:= HHGear^.Y - Gear^.Y;
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   808
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   809
mdX:= ropeDx + HHGear^.dX;
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   810
mdY:= ropeDy + HHGear^.dY;
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   811
len:= _1 / Distance(mdX, mdY);
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   812
mdX:= mdX * len; // rope vector plus hedgehog direction vector normalized
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   813
mdY:= mdY * len;
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   814
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   815
Gear^.dX:= mdX; // for visual purposes only
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   816
Gear^.dY:= mdY;
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   817
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   818
/////
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   819
	tx:= HHGear^.X;
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   820
	ty:= HHGear^.Y;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   821
1652
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   822
	if ((Gear^.Message and gm_Down) <> 0) and (Gear^.Elasticity < Gear^.Friction) then
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   823
		if not (TestCollisionXwithGear(HHGear, hwSign(ropeDx))
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   824
				or TestCollisionYwithGear(HHGear, hwSign(ropeDy))) then
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   825
					Gear^.Elasticity:= Gear^.Elasticity + _0_3;
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   826
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   827
	if ((Gear^.Message and gm_Up) <> 0) and (Gear^.Elasticity > _30) then
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   828
		if not (TestCollisionXwithGear(HHGear, -hwSign(ropeDx))
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   829
				or TestCollisionYwithGear(HHGear, -hwSign(ropeDy))) then
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   830
					Gear^.Elasticity:= Gear^.Elasticity - _0_3;
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   831
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   832
	HHGear^.X:= Gear^.X + mdX * Gear^.Elasticity;
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   833
	HHGear^.Y:= Gear^.Y + mdY * Gear^.Elasticity;
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   834
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   835
	HHGear^.dX:= HHGear^.X - tx;
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   836
	HHGear^.dY:= HHGear^.Y - ty;
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   837
////
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   838
1554
5657cd89668d Fix rope animation
unc0rr
parents: 1553
diff changeset
   839
1922
88cdabb51995 Fix bug with rope and bazooka
unc0rr
parents: 1920
diff changeset
   840
	haveDivided:= false;
1553
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   841
	// check whether rope needs dividing
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   842
	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
   843
	nx:= ropeDx * len;
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   844
	ny:= ropeDy * len;
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   845
	
1652
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   846
	len:= Gear^.Elasticity - _0_3x70;
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   847
	while len > _0_3 do
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   848
			begin
1652
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   849
			lx:= hwRound(Gear^.X + mdX * len);
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   850
			ly:= hwRound(Gear^.Y + mdY * len);
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1752
diff changeset
   851
			if ((ly and LAND_HEIGHT_MASK) = 0) and ((lx and LAND_WIDTH_MASK) = 0) and (Land[ly, lx] <> 0) then
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   852
				begin
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   853
				with RopePoints.ar[RopePoints.Count] do
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   854
					begin
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   855
					X:= Gear^.X;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   856
					Y:= Gear^.Y;
1553
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   857
					if RopePoints.Count = 0 then RopePoints.HookAngle:= DxDy2Angle(Gear^.dY, Gear^.dX);
1652
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   858
					b:= (nx * HHGear^.dY) > (ny * HHGear^.dX);
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   859
					dLen:= len
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   860
					end;
1553
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   861
				Gear^.X:= Gear^.X + nx * len;
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   862
				Gear^.Y:= Gear^.Y + ny * len;
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   863
				inc(RopePoints.Count);
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   864
				TryDo(RopePoints.Count <= MAXROPEPOINTS, 'Rope points overflow', true);
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   865
				Gear^.Elasticity:= Gear^.Elasticity - len;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   866
				Gear^.Friction:= Gear^.Friction - len;
1553
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   867
				haveDivided:= true;
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   868
				break
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   869
				end;
1553
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   870
			len:= len - _0_3 // should be the same as increase step
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   871
			end;
1553
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   872
77f326c7f0ef The best final fix for rope stucking in the ground bug
unc0rr
parents: 1552
diff changeset
   873
if not haveDivided then
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   874
	if RopePoints.Count > 0 then // check whether the last dividing point could be removed
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   875
		begin
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   876
		tx:= RopePoints.ar[Pred(RopePoints.Count)].X;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   877
		ty:= RopePoints.ar[Pred(RopePoints.Count)].Y;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   878
		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
   879
			begin
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   880
			dec(RopePoints.Count);
1652
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   881
			Gear^.X:= RopePoints.ar[RopePoints.Count].X;
2f15a299ffc6 Reorganize rope code, adjust some constants
unc0rr
parents: 1643
diff changeset
   882
			Gear^.Y:= RopePoints.ar[RopePoints.Count].Y;
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   883
			Gear^.Elasticity:= Gear^.Elasticity + RopePoints.ar[RopePoints.Count].dLen;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   884
			Gear^.Friction:= Gear^.Friction + RopePoints.ar[RopePoints.Count].dLen
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   885
			end
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   886
		end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   887
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
   888
haveCollision:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   889
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
   890
	begin
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   891
	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
   892
	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
   893
	end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   894
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
   895
	begin
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   896
	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
   897
	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
   898
	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
   899
1579
2f581b1f289e More bouncy rope, but you need to press vertical arrow and horizontal keys at once to bounce
unc0rr
parents: 1573
diff changeset
   900
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
   901
	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
   902
	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
   903
	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
   904
	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
   905
	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
   906
	end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   907
789
3d976d2579eb - More accurate rope collision detection
unc0rr
parents: 776
diff changeset
   908
len:= Distance(HHGear^.dX, HHGear^.dY);
940
769adb0ad082 Better rope
unc0rr
parents: 931
diff changeset
   909
if len > _0_8 then
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   910
	begin
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   911
	len:= _0_8 / len;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   912
	HHGear^.dX:= HHGear^.dX * len;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   913
	HHGear^.dY:= HHGear^.dY * len;
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   914
	end;
789
3d976d2579eb - More accurate rope collision detection
unc0rr
parents: 776
diff changeset
   915
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   916
if (Gear^.Message and gm_Attack) <> 0 then
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   917
	if (Gear^.State and gsttmpFlag) <> 0 then
1922
88cdabb51995 Fix bug with rope and bazooka
unc0rr
parents: 1920
diff changeset
   918
		with PHedgehog(Gear^.Hedgehog)^ do
1964
dc9ea05c9d2f - Another way of defining official server
unc0rr
parents: 1922
diff changeset
   919
			if Ammo^[CurSlot, CurAmmo].AmmoType <> amParachute then
1922
88cdabb51995 Fix bug with rope and bazooka
unc0rr
parents: 1920
diff changeset
   920
				WaitCollision
88cdabb51995 Fix bug with rope and bazooka
unc0rr
parents: 1920
diff changeset
   921
			else
88cdabb51995 Fix bug with rope and bazooka
unc0rr
parents: 1920
diff changeset
   922
				DeleteMe
1504
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   923
	else
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   924
else
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   925
	if (Gear^.State and gsttmpFlag) = 0 then
1603a796f42a Some reformatting
unc0rr
parents: 1501
diff changeset
   926
		Gear^.State:= Gear^.State or gsttmpFlag;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   927
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   928
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   929
procedure doStepRopeAttach(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   930
var HHGear: PGear;
1781
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   931
	tx, ty, tt: hwFloat;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   932
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   933
	procedure RemoveFromAmmo;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   934
	begin
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   935
	if (Gear^.State and gstAttacked) = 0 then
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   936
		begin
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   937
		OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^);
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   938
		Gear^.State:= Gear^.State or gstAttacked
1964
dc9ea05c9d2f - Another way of defining official server
unc0rr
parents: 1922
diff changeset
   939
		end;
dc9ea05c9d2f - Another way of defining official server
unc0rr
parents: 1922
diff changeset
   940
	ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^)
1781
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   941
	end;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   942
	
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   943
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   944
Gear^.X:= Gear^.X - Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   945
Gear^.Y:= Gear^.Y - Gear^.dY;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
   946
Gear^.Elasticity:= Gear^.Elasticity + _1;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   947
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
517
ba560c17c24c - Don't kick cases by moving hedgehog
unc0rr
parents: 516
diff changeset
   948
DeleteCI(HHGear);
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
   949
if (HHGear^.State and gstMoving) <> 0 then
1433
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   950
if TestCollisionYwithGear(HHGear, 1) then
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   951
	begin
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   952
	CheckHHDamage(HHGear);
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   953
	HHGear^.dY:= _0;
2025
692308790912 Adjust routines impacted by DrawRotatedF modification, clear gstHHHJump in rope to avoid crosshair/hat drawing bug.
nemo
parents: 2024
diff changeset
   954
	HHGear^.State:= HHGear^.State and not (gstMoving or gstHHJumping or gstHHHJump);
1433
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   955
	end else
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   956
	begin
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   957
	if TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then SetLittle(HHGear^.dX);
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   958
	HHGear^.X:= HHGear^.X + HHGear^.dX;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   959
	HHGear^.Y:= HHGear^.Y + HHGear^.dY;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   960
	Gear^.X:= Gear^.X + HHGear^.dX;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   961
	Gear^.Y:= Gear^.Y + HHGear^.dY;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   962
	HHGear^.dY:= HHGear^.dY + cGravity;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   963
	tt:= Gear^.Elasticity;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   964
	tx:= _0;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   965
	ty:= _0;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   966
	while tt > _20 do
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   967
		begin
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   968
		if  TestCollisionXwithXYShift(Gear, tx, hwRound(ty), -hwSign(Gear^.dX))
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   969
		or TestCollisionYwithXYShift(Gear, hwRound(tx), hwRound(ty), -hwSign(Gear^.dY)) then
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   970
			begin
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   971
			Gear^.X:= Gear^.X + tx;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   972
			Gear^.Y:= Gear^.Y + ty;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   973
			Gear^.Elasticity:= tt;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   974
			Gear^.doStep:= @doStepRopeWork;
1752
769986d39202 Fix accidental rope removinf from ammo in some cases
unc0rr
parents: 1736
diff changeset
   975
			with HHGear^ do State:= State and not (gstAttacking or gstMoving or gstHHHJump);
1781
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   976
			
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   977
			RemoveFromAmmo;
28f674367d68 - Right way to handle rope ammo
unc0rr
parents: 1776
diff changeset
   978
			
1752
769986d39202 Fix accidental rope removinf from ammo in some cases
unc0rr
parents: 1736
diff changeset
   979
			tt:= _0;
769986d39202 Fix accidental rope removinf from ammo in some cases
unc0rr
parents: 1736
diff changeset
   980
			exit
1433
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   981
			end;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   982
		tx:= tx + Gear^.dX + Gear^.dX;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   983
		ty:= ty + Gear^.dY + Gear^.dY;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   984
		tt:= tt - _2;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   985
		end;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
   986
	end;
929
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
   987
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   988
CheckCollision(Gear);
929
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
   989
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   990
if (Gear^.State and gstCollision) <> 0 then
2068
9d683de175d7 Fix rope disappearing bug
unc0rr
parents: 2060
diff changeset
   991
	if Gear^.Elasticity < _10 then
9d683de175d7 Fix rope disappearing bug
unc0rr
parents: 2060
diff changeset
   992
		Gear^.Elasticity:= _10000
9d683de175d7 Fix rope disappearing bug
unc0rr
parents: 2060
diff changeset
   993
	else
9d683de175d7 Fix rope disappearing bug
unc0rr
parents: 2060
diff changeset
   994
		begin
9d683de175d7 Fix rope disappearing bug
unc0rr
parents: 2060
diff changeset
   995
		Gear^.doStep:= @doStepRopeWork;
9d683de175d7 Fix rope disappearing bug
unc0rr
parents: 2060
diff changeset
   996
		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
   997
2068
9d683de175d7 Fix rope disappearing bug
unc0rr
parents: 2060
diff changeset
   998
		RemoveFromAmmo;
9d683de175d7 Fix rope disappearing bug
unc0rr
parents: 2060
diff changeset
   999
		
9d683de175d7 Fix rope disappearing bug
unc0rr
parents: 2060
diff changeset
  1000
		exit
9d683de175d7 Fix rope disappearing bug
unc0rr
parents: 2060
diff changeset
  1001
		end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
  1002
1634
486a89f0e843 Fix rope bug which allowed hedgehog to go into land
unc0rr
parents: 1633
diff changeset
  1003
if (Gear^.Elasticity > Gear^.Friction)
486a89f0e843 Fix rope bug which allowed hedgehog to go into land
unc0rr
parents: 1633
diff changeset
  1004
or ((Gear^.Message and gm_Attack) = 0)
486a89f0e843 Fix rope bug which allowed hedgehog to go into land
unc0rr
parents: 1633
diff changeset
  1005
or (HHGear^.Damage > 0) then
1433
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
  1006
	begin
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
  1007
	with PHedgehog(Gear^.Hedgehog)^.Gear^ do
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
  1008
		begin
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
  1009
		State:= State and not gstAttacking;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
  1010
		Message:= Message and not gm_Attack
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
  1011
		end;
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
  1012
	DeleteGear(Gear)
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
  1013
	end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
  1014
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
  1015
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
  1016
procedure doStepRope(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
  1017
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1018
Gear^.dX:= - Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1019
Gear^.dY:= - Gear^.dY;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1020
Gear^.doStep:= @doStepRopeAttach
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
  1021
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
  1022
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
  1023
////////////////////////////////////////////////////////////////////////////////
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
  1024
procedure doStepSmokeTrace(Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
  1025
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1026
inc(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1027
if Gear^.Timer > 64 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1028
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1029
	Gear^.Timer:= 0;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1030
	dec(Gear^.State)
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1031
	end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1032
Gear^.dX:= Gear^.dX + cWindSpeed;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1033
Gear^.X:= Gear^.X + Gear^.dX;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1034
if Gear^.State = 0 then DeleteGear(Gear)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
  1035
end;
9
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
  1036
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
  1037
////////////////////////////////////////////////////////////////////////////////
1045
ea195268734f Testing explosion particles implementation
unc0rr
parents: 1024
diff changeset
  1038
procedure doStepExplosionWork(Gear: PGear);
9
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
  1039
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1040
inc(Gear^.Timer);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1041
if Gear^.Timer > 75 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1042
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1043
	inc(Gear^.State);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1044
	Gear^.Timer:= 0;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1045
	if Gear^.State > 5 then DeleteGear(Gear)
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1046
	end;
9
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
  1047
end;
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
  1048
1045
ea195268734f Testing explosion particles implementation
unc0rr
parents: 1024
diff changeset
  1049
procedure doStepExplosion(Gear: PGear);
ea195268734f Testing explosion particles implementation
unc0rr
parents: 1024
diff changeset
  1050
var i: LongWord;
ea195268734f Testing explosion particles implementation
unc0rr
parents: 1024
diff changeset
  1051
begin
1047
ca7078116c0c Update explosion graphics
unc0rr
parents: 1046
diff changeset
  1052
for i:= 0 to 31 do AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtFire);
ca7078116c0c Update explosion graphics
unc0rr
parents: 1046
diff changeset
  1053
for i:= 0 to 8 do AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtExplPart);
ca7078116c0c Update explosion graphics
unc0rr
parents: 1046
diff changeset
  1054
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
  1055
Gear^.doStep:= @doStepExplosionWork
ea195268734f Testing explosion particles implementation
unc0rr
parents: 1024
diff changeset
  1056
end;
ea195268734f Testing explosion particles implementation
unc0rr
parents: 1024
diff changeset
  1057
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
  1058
////////////////////////////////////////////////////////////////////////////////
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
  1059
procedure doStepMine(Gear: PGear);
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
  1060
begin
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 540
diff changeset
  1061
if (Gear^.State and gstMoving) <> 0 then
914
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
  1062
	begin
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
  1063
	DeleteCI(Gear);
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
  1064
	doStepFallingGear(Gear);
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
  1065
	if (Gear^.State and gstMoving) = 0 then
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
  1066
		begin
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
  1067
		AddGearCI(Gear);
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
  1068
		Gear^.dX:= _0;
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
  1069
		Gear^.dY:= _0
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
  1070
		end;
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
  1071
	CalcRotationDirAngle(Gear);
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
  1072
	AllInactive:= false
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
  1073
	end else
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
  1074
	if ((GameTicks and $3F) = 25) then
c2fcafbfc4aa Now really fix issue with mines on top of cases
unc0rr
parents: 913
diff changeset
  1075
		doStepFallingGear(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1076
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1077
if ((Gear^.State and gsttmpFlag) <> 0) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1078
	if ((Gear^.State and gstAttacking) = 0) then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1079
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1080
		if ((GameTicks and $1F) = 0) then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1081
			if CheckGearNear(Gear, gtHedgehog, 46, 32) <> nil then Gear^.State:= Gear^.State or gstAttacking
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1082
		end else // gstAttacking <> 0
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1083
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1084
		AllInactive:= false;
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
  1085
		if (Gear^.Timer and $FF) = 0 then PlaySound(sndMineTick, false, nil);
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1086
		if Gear^.Timer = 0 then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1087
			begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1088
			doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1089
			DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1090
			exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1091
			end;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1092
		dec(Gear^.Timer);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1093
		end else // gsttmpFlag = 0
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1094
	if TurnTimeLeft = 0 then Gear^.State:= Gear^.State or gsttmpFlag;
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
  1095
end;
57
e1a77ae57065 - Fixed compiling .)
unc0rr
parents: 53
diff changeset
  1096
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
  1097
////////////////////////////////////////////////////////////////////////////////
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
  1098
procedure doStepDynamite(Gear: PGear);
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
  1099
begin
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
  1100
doStepFallingGear(Gear);
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
  1101
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1102
if Gear^.Timer mod 166 = 0 then inc(Gear^.Tag);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1103
if Gear^.Timer = 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1104
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1105
	doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 75, EXPLAutoSound);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1106
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1107
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1108
	end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1109
dec(Gear^.Timer);
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
  1110
end;
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
  1111
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1112
///////////////////////////////////////////////////////////////////////////////
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
  1113
procedure doStepCase(Gear: PGear);
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
  1114
var i, x, y: LongInt;
1436
252ab509c779 Well, okay, better fix
unc0rr
parents: 1435
diff changeset
  1115
	k: TGearType;
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
  1116
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1117
if (Gear^.Message and gm_Destroy) > 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1118
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1119
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1120
	FreeActionsList;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1121
	SetAllToActive; // something (hh, mine, etc...) could be on top of the case
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1122
	with CurrentHedgehog^ do
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1123
		if Gear <> nil then Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1124
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1125
	end;
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
  1126
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1127
if Gear^.Damage > 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1128
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1129
	x:= hwRound(Gear^.X);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1130
	y:= hwRound(Gear^.Y);
1436
252ab509c779 Well, okay, better fix
unc0rr
parents: 1435
diff changeset
  1131
	k:= Gear^.Kind;
252ab509c779 Well, okay, better fix
unc0rr
parents: 1435
diff changeset
  1132
	DeleteGear(Gear); // <-- delete gear!
252ab509c779 Well, okay, better fix
unc0rr
parents: 1435
diff changeset
  1133
	
252ab509c779 Well, okay, better fix
unc0rr
parents: 1435
diff changeset
  1134
	if k = gtCase then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1135
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1136
		doMakeExplosion(x, y, 25, EXPLAutoSound);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1137
		for i:= 0 to 63 do
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1138
			AddGear(x, y, gtFlame, 0, _0, _0, 0);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1139
		end;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1140
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1141
	end;
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1142
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1143
if (Gear^.dY.QWordValue <> 0) or (not TestCollisionYwithGear(Gear, 1)) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1144
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1145
	AllInactive:= false;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1146
	Gear^.dY:= Gear^.dY + cGravity;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1147
	Gear^.Y:= Gear^.Y + Gear^.dY;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1148
	if (Gear^.dY.isNegative) and TestCollisionYwithGear(Gear, -1) then Gear^.dY:= _0 else
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1149
	if (not Gear^.dY.isNegative) and TestCollisionYwithGear(Gear, 1) then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1150
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1151
		Gear^.dY:= - Gear^.dY * Gear^.Elasticity;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1152
		if Gear^.dY > - _0_001 then Gear^.dY:= _0
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
  1153
			else if Gear^.dY < - _0_03 then PlaySound(sndGraveImpact, false, nil);
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1154
		end;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1155
	CheckGearDrowning(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1156
	end;
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 13
diff changeset
  1157
511
2b5b9e00419d - Further work on new collisions implementation
unc0rr
parents: 506
diff changeset
  1158
if (Gear^.dY.QWordValue = 0) then AddGearCI(Gear)
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1159
	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
  1160
end;
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
  1161
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 46
diff changeset
  1162
////////////////////////////////////////////////////////////////////////////////
854
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1163
procedure doStepIdle(Gear: PGear);
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1164
begin
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1165
AllInactive:= false;
925
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1166
dec(Gear^.Timer);
854
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1167
if Gear^.Timer = 0 then
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1168
	begin
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1169
	DeleteGear(Gear);
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1170
	AfterAttack
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1171
	end
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1172
end;
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1173
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1174
procedure doStepShover(Gear: PGear);
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1175
var HHGear: PGear;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1176
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1177
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1178
HHGear^.State:= HHGear^.State or gstNoDamage;
980
20128e98988b Don't push attacking hedgehog when using whip or baseball
unc0rr
parents: 979
diff changeset
  1179
DeleteCI(HHGear);
20128e98988b Don't push attacking hedgehog when using whip or baseball
unc0rr
parents: 979
diff changeset
  1180
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1181
AmmoShove(Gear, 30, 115);
980
20128e98988b Don't push attacking hedgehog when using whip or baseball
unc0rr
parents: 979
diff changeset
  1182
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1183
HHGear^.State:= HHGear^.State and not gstNoDamage;
854
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1184
Gear^.Timer:= 250;
fef7f2d908bf Animate baseball bat attack
unc0rr
parents: 853
diff changeset
  1185
Gear^.doStep:= @doStepIdle
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1186
end;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1187
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1188
////////////////////////////////////////////////////////////////////////////////
925
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1189
procedure doStepWhip(Gear: PGear);
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1190
var HHGear: PGear;
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1191
    i: LongInt;
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1192
begin
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1193
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1194
HHGear^.State:= HHGear^.State or gstNoDamage;
980
20128e98988b Don't push attacking hedgehog when using whip or baseball
unc0rr
parents: 979
diff changeset
  1195
DeleteCI(HHGear);
925
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1196
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1197
for i:= 0 to 3 do
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1198
	begin
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1199
	AmmoShove(Gear, 30, 25);
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1200
	Gear^.X:= Gear^.X + Gear^.dX * 5
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1201
	end;
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1202
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1203
HHGear^.State:= HHGear^.State and not gstNoDamage;
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1204
Gear^.Timer:= 250;
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1205
Gear^.doStep:= @doStepIdle
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1206
end;
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1207
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
  1208
////////////////////////////////////////////////////////////////////////////////
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1209
procedure doStepFlame(Gear: PGear);
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1210
begin
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1211
AllInactive:= false;
1433
4af291d5d79c Repair flame dependancy on wind
unc0rr
parents: 1417
diff changeset
  1212
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1213
if not TestCollisionYwithGear(Gear, 1) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1214
	begin
1586
2c6f1d1f43c1 Adjust flame parameters to produce more damage
unc0rr
parents: 1579
diff changeset
  1215
	if hwAbs(Gear^.dX) > _0_01 then
2c6f1d1f43c1 Adjust flame parameters to produce more damage
unc0rr
parents: 1579
diff changeset
  1216
		Gear^.dX:= Gear^.dX * _0_995;
1297
78670b0c4a23 Try to adjust flame parameters
unc0rr
parents: 1295
diff changeset
  1217
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1218
	Gear^.dY:= Gear^.dY + cGravity;
1830
b3e9ab82c364 Faster fire falling
unc0rr
parents: 1785
diff changeset
  1219
	if hwAbs(Gear^.dY) > _0_2 then Gear^.dY:= Gear^.dY * _0_995;
1297
78670b0c4a23 Try to adjust flame parameters
unc0rr
parents: 1295
diff changeset
  1220
	
1830
b3e9ab82c364 Faster fire falling
unc0rr
parents: 1785
diff changeset
  1221
	Gear^.X:= Gear^.X + Gear^.dX + cWindSpeed * 640;
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1222
	Gear^.Y:= Gear^.Y + Gear^.dY;
1297
78670b0c4a23 Try to adjust flame parameters
unc0rr
parents: 1295
diff changeset
  1223
	
1417
210cb6b1b275 Fix some problems with water rising
unc0rr
parents: 1388
diff changeset
  1224
	if not (hwRound(Gear^.Y) < cWaterLine) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1225
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1226
		DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1227
		exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1228
		end
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1229
	end else begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1230
	if Gear^.Timer > 0 then dec(Gear^.Timer)
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1231
		else begin
1586
2c6f1d1f43c1 Adjust flame parameters to produce more damage
unc0rr
parents: 1579
diff changeset
  1232
		Gear^.Radius:= 9;
2c6f1d1f43c1 Adjust flame parameters to produce more damage
unc0rr
parents: 1579
diff changeset
  1233
		AmmoShove(Gear, 4, 100);
1297
78670b0c4a23 Try to adjust flame parameters
unc0rr
parents: 1295
diff changeset
  1234
		Gear^.Radius:= 1;
78670b0c4a23 Try to adjust flame parameters
unc0rr
parents: 1295
diff changeset
  1235
		doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 4, EXPLNoDamage);
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1236
		dec(Gear^.Health);
1586
2c6f1d1f43c1 Adjust flame parameters to produce more damage
unc0rr
parents: 1579
diff changeset
  1237
		Gear^.Timer:= 450 - Gear^.Tag * 8
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1238
		end
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1239
	end;
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1240
1295
27bec661581c Start flames rework
unc0rr
parents: 1286
diff changeset
  1241
//if (((GameTicks div 8) mod 64) = Gear^.Tag) then
27bec661581c Start flames rework
unc0rr
parents: 1286
diff changeset
  1242
//	AmmoFlameWork(Gear);
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1243
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1244
if Gear^.Health = 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1245
	DeleteGear(Gear)
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
  1246
end;
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1247
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1248
////////////////////////////////////////////////////////////////////////////////
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1249
procedure doStepFirePunchWork(Gear: PGear);
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1250
var HHGear: PGear;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1251
begin
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1252
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1253
if ((Gear^.Message and gm_Destroy) <> 0) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1254
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1255
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1256
	AfterAttack;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1257
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1258
	end;
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1259
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1260
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1261
if hwRound(HHGear^.Y) <= Gear^.Tag - 2 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1262
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1263
	Gear^.Tag:= hwRound(HHGear^.Y);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1264
	DrawTunnel(HHGear^.X - int2hwFloat(cHHRadius), HHGear^.Y - _1, _0_5, _0, cHHRadius * 4, 2);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1265
	HHGear^.State:= HHGear^.State or gstNoDamage;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1266
	Gear^.Y:= HHGear^.Y;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1267
	AmmoShove(Gear, 30, 40);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1268
	HHGear^.State:= HHGear^.State and not gstNoDamage
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1269
	end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1270
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1271
HHGear^.dY:= HHGear^.dY + cGravity;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1272
if not (HHGear^.dY.isNegative) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1273
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1274
	HHGear^.State:= HHGear^.State or gstMoving;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1275
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1276
	AfterAttack;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1277
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1278
	end;
2089
a08758aed76a Prevent unc0rr's sneaky escape
nemo
parents: 2087
diff changeset
  1279
a08758aed76a Prevent unc0rr's sneaky escape
nemo
parents: 2087
diff changeset
  1280
if Land[hwRound(HHGear^.Y + HHGear^.dY), hwRound(HHGear^.X)] <> COLOR_INDESTRUCTIBLE then HHGear^.Y:= HHGear^.Y + HHGear^.dY
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1281
end;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1282
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1283
procedure doStepFirePunch(Gear: PGear);
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1284
var HHGear: PGear;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1285
begin
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1286
AllInactive:= false;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1287
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
514
fb8ba88a83c3 Fix firepunch regression
unc0rr
parents: 513
diff changeset
  1288
DeleteCI(HHGear);
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1289
HHGear^.X:= int2hwFloat(hwRound(HHGear^.X)) - _0_5;
1014
3c7d4e7ccdff - Fix firepunch sprite direction when use in high jump
unc0rr
parents: 992
diff changeset
  1290
HHGear^.dX:= SignAs(cLittle, Gear^.dX);
3c7d4e7ccdff - Fix firepunch sprite direction when use in high jump
unc0rr
parents: 992
diff changeset
  1291
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1292
HHGear^.dY:= - _0_3;
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1293
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1294
Gear^.X:= HHGear^.X;
979
edb8f208c1d9 Fix firepunch direction when attacking from high jump
unc0rr
parents: 974
diff changeset
  1295
Gear^.dX:= SignAs(_0_45, Gear^.dX);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1296
Gear^.dY:= - _0_9;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1297
Gear^.doStep:= @doStepFirePunchWork;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1298
DrawTunnel(HHGear^.X - int2hwFloat(cHHRadius), HHGear^.Y + _1, _0_5, _0, cHHRadius * 4, 5);
1279
33cae6d1635c Use new sounds
unc0rr
parents: 1273
diff changeset
  1299
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
  1300
PlaySound(TSound(ord(sndFirePunch1) + GetRandom(6)), false, PHedgehog(HHGear^.Hedgehog)^.Team^.voicepack)
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1301
end;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1302
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1303
////////////////////////////////////////////////////////////////////////////////
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1304
929
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1305
procedure doStepParachuteWork(Gear: PGear);
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1306
var HHGear: PGear;
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1307
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1308
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
  1309
516
f682e134ac2e Fix using parachute while staying on the ground
unc0rr
parents: 514
diff changeset
  1310
inc(Gear^.Timer);
f682e134ac2e Fix using parachute while staying on the ground
unc0rr
parents: 514
diff changeset
  1311
212
c8c650b23e32 Parachute fixes
unc0rr
parents: 211
diff changeset
  1312
if TestCollisionYwithGear(HHGear, 1)
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1313
	or ((HHGear^.State and gstHHDriven) = 0)
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1314
	or CheckGearDrowning(HHGear)
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1315
	or ((Gear^.Message and gm_Attack) <> 0) then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1316
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1317
	with HHGear^ do
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1318
		begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1319
		Message:= 0;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1320
		SetLittle(dX);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1321
		dY:= _0;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1322
		State:= State or gstMoving;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1323
		end;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1324
	DeleteGear(Gear);
2060
3e9e5e1be6f5 fix crash in parachute/rope if drowning with active girder/teleport
nemo
parents: 2059
diff changeset
  1325
	isCursorVisible:= false;
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1326
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1327
	end;
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1328
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1329
if not TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1330
	HHGear^.X:= HHGear^.X + cWindSpeed * 200;
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1331
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1332
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
  1333
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
  1334
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
  1335
else if (Gear^.Message and gm_Down) <> 0 then HHGear^.Y:= HHGear^.Y + cGravity * 40;
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1336
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1337
HHGear^.Y:= HHGear^.Y + cGravity * 100;
568
d0690b7aa808 - Small fixes
unc0rr
parents: 560
diff changeset
  1338
Gear^.X:= HHGear^.X;
d0690b7aa808 - Small fixes
unc0rr
parents: 560
diff changeset
  1339
Gear^.Y:= HHGear^.Y
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1340
end;
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1341
929
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1342
procedure doStepParachute(Gear: PGear);
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1343
var HHGear: PGear;
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1344
begin
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1345
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1346
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1347
DeleteCI(HHGear);
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1348
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1349
OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^);
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1350
ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^);
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1351
931
ab4d98858a40 Fix some bugs with dropping from parachute
unc0rr
parents: 929
diff changeset
  1352
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
  1353
HHGear^.Message:= HHGear^.Message and not gm_Attack;
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1354
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1355
Gear^.doStep:= @doStepParachuteWork;
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1356
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1357
Gear^.Message:= HHGear^.Message;
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1358
doStepParachuteWork(Gear)
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1359
end;
9456e1e77369 - Continue preparation for implementing attack from rope and parachute
unc0rr
parents: 928
diff changeset
  1360
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1361
////////////////////////////////////////////////////////////////////////////////
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1362
procedure doStepAirAttackWork(Gear: PGear);
1507
d18c67b7ad4c Quick and dirty napalm implementation
unc0rr
parents: 1505
diff changeset
  1363
var i: Longint;
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1364
begin
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1365
AllInactive:= false;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 495
diff changeset
  1366
Gear^.X:= Gear^.X + cAirPlaneSpeed * Gear^.Tag;
1124
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1367
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 542
diff changeset
  1368
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
  1369
	begin
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1370
	dec(Gear^.Health);
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1371
	case Gear^.State of
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1372
			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
  1373
			1: FollowGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtMine,    0, cBombsSpeed * Gear^.Tag, _0, 0);
1586
2c6f1d1f43c1 Adjust flame parameters to produce more damage
unc0rr
parents: 1579
diff changeset
  1374
			2: for i:= -19 to 19 do
2c6f1d1f43c1 Adjust flame parameters to produce more damage
unc0rr
parents: 1579
diff changeset
  1375
				FollowGear:= AddGear(hwRound(Gear^.X) + i div 3, hwRound(Gear^.Y), gtFlame, 0, _0_001 * i, _0, 0);
1124
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1376
			end;
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1377
	Gear^.dX:= Gear^.dX + int2hwFloat(30 * Gear^.Tag)
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1378
	end;
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1379
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1380
if (GameTicks and $3F) = 0 then
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1381
	AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0);
1636a3c7c061 - Airplane is higher
unc0rr
parents: 1123
diff changeset
  1382
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1752
diff changeset
  1383
if (hwRound(Gear^.X) > (LAND_WIDTH+1024)) or (hwRound(Gear^.X) < -1024) then DeleteGear(Gear)
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1384
end;
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1385
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1386
procedure doStepAirAttack(Gear: PGear);
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1387
begin
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1388
AllInactive:= false;
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 542
diff changeset
  1389
1507
d18c67b7ad4c Quick and dirty napalm implementation
unc0rr
parents: 1505
diff changeset
  1390
if Gear^.X.QWordValue = 0 then
1771
141f029a2e0a Fix airplane
unc0rr
parents: 1760
diff changeset
  1391
	begin
141f029a2e0a Fix airplane
unc0rr
parents: 1760
diff changeset
  1392
	Gear^.Tag:=  1;
141f029a2e0a Fix airplane
unc0rr
parents: 1760
diff changeset
  1393
	Gear^.X:= -_1024;
141f029a2e0a Fix airplane
unc0rr
parents: 1760
diff changeset
  1394
	end
1507
d18c67b7ad4c Quick and dirty napalm implementation
unc0rr
parents: 1505
diff changeset
  1395
else
1771
141f029a2e0a Fix airplane
unc0rr
parents: 1760
diff changeset
  1396
	begin
1507
d18c67b7ad4c Quick and dirty napalm implementation
unc0rr
parents: 1505
diff changeset
  1397
	Gear^.Tag:= -1;
1771
141f029a2e0a Fix airplane
unc0rr
parents: 1760
diff changeset
  1398
	Gear^.X:= int2hwFloat(LAND_WIDTH + 1024);
141f029a2e0a Fix airplane
unc0rr
parents: 1760
diff changeset
  1399
	end;
1507
d18c67b7ad4c Quick and dirty napalm implementation
unc0rr
parents: 1505
diff changeset
  1400
1784
dfe9bafb4590 Apply nemo's patch polished by me:
unc0rr
parents: 1781
diff changeset
  1401
Gear^.Y:= int2hwFloat(topY-300);
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 542
diff changeset
  1402
Gear^.dX:= int2hwFloat(TargetPoint.X - 5 * Gear^.Tag * 15);
357
165a040e4cfa - Fix Blow Torch and Air Attack
unc0rr
parents: 355
diff changeset
  1403
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 542
diff changeset
  1404
if int2hwFloat(TargetPoint.Y) - Gear^.Y > _0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1405
	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
  1406
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1407
Gear^.Health:= 6;
801
0323e5c7ee54 - 'Incoming!' shout when the plane appears
unc0rr
parents: 798
diff changeset
  1408
Gear^.doStep:= @doStepAirAttackWork;
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
  1409
PlaySound(sndIncoming, false, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack)
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1410
end;
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1411
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1412
////////////////////////////////////////////////////////////////////////////////
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1413
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1414
procedure doStepAirBomb(Gear: PGear);
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1415
begin
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1416
AllInactive:= false;
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1417
doStepFallingGear(Gear);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
  1418
if (Gear^.State and gstCollision) <> 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1419
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1420
	doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1421
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1422
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1423
	end;
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 219
diff changeset
  1424
if (GameTicks and $3F) = 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1425
	AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0)
211
558476056205 Parachute
unc0rr
parents: 183
diff changeset
  1426
end;
409
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1427
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1428
////////////////////////////////////////////////////////////////////////////////
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1429
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1430
procedure doStepGirder(Gear: PGear);
415
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1431
var HHGear: PGear;
1915
c357f5b55320 patch by nemo:
unc0rr
parents: 1914
diff changeset
  1432
    x, y, tx, ty: hwFloat;
409
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1433
begin
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1434
AllInactive:= false;
415
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1435
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1436
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
1915
c357f5b55320 patch by nemo:
unc0rr
parents: 1914
diff changeset
  1437
tx:= int2hwFloat(TargetPoint.X);
c357f5b55320 patch by nemo:
unc0rr
parents: 1914
diff changeset
  1438
ty:= int2hwFloat(TargetPoint.Y);
c357f5b55320 patch by nemo:
unc0rr
parents: 1914
diff changeset
  1439
x:= HHGear^.X;
c357f5b55320 patch by nemo:
unc0rr
parents: 1914
diff changeset
  1440
y:= HHGear^.Y;
1909
30fa1608b54f nemo's patch for girder + some fixes
unc0rr
parents: 1892
diff changeset
  1441
1915
c357f5b55320 patch by nemo:
unc0rr
parents: 1914
diff changeset
  1442
if (Distance(tx - x, ty - y) > _256) or
c357f5b55320 patch by nemo:
unc0rr
parents: 1914
diff changeset
  1443
   not TryPlaceOnLand(TargetPoint.X - SpritesData[sprAmGirder].Width div 2,
c357f5b55320 patch by nemo:
unc0rr
parents: 1914
diff changeset
  1444
                      TargetPoint.Y - SpritesData[sprAmGirder].Height div 2,
520
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1445
                      sprAmGirder, Gear^.State, true) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1446
	begin
1914
aab686a4e0c5 Add sounds to girder
unc0rr
parents: 1909
diff changeset
  1447
    PlaySound(sndDenied, false, nil);
aab686a4e0c5 Add sounds to girder
unc0rr
parents: 1909
diff changeset
  1448
	HHGear^.Message:= HHGear^.Message and not gm_Attack;
aab686a4e0c5 Add sounds to girder
unc0rr
parents: 1909
diff changeset
  1449
	HHGear^.State:= HHGear^.State and not gstAttacking;
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1450
	HHGear^.State:= HHGear^.State or gstHHChooseTarget;
1914
aab686a4e0c5 Add sounds to girder
unc0rr
parents: 1909
diff changeset
  1451
	isCursorVisible:= true;
aab686a4e0c5 Add sounds to girder
unc0rr
parents: 1909
diff changeset
  1452
	DeleteGear(Gear)
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1453
	end
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1454
else begin
1914
aab686a4e0c5 Add sounds to girder
unc0rr
parents: 1909
diff changeset
  1455
    PlaySound(sndPlaced, false, nil);
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1456
	DeleteGear(Gear);
1909
30fa1608b54f nemo's patch for girder + some fixes
unc0rr
parents: 1892
diff changeset
  1457
    OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^);
1914
aab686a4e0c5 Add sounds to girder
unc0rr
parents: 1909
diff changeset
  1458
    ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^)
aab686a4e0c5 Add sounds to girder
unc0rr
parents: 1909
diff changeset
  1459
	end;
aab686a4e0c5 Add sounds to girder
unc0rr
parents: 1909
diff changeset
  1460
1909
30fa1608b54f nemo's patch for girder + some fixes
unc0rr
parents: 1892
diff changeset
  1461
HHGear^.State:= HHGear^.State and not (gstAttacking or gstAttacked);
30fa1608b54f nemo's patch for girder + some fixes
unc0rr
parents: 1892
diff changeset
  1462
HHGear^.Message:= HHGear^.Message and not gm_Attack;
415
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 409
diff changeset
  1463
TargetPoint.X:= NoPointX
409
4f1841929ccc Construction tool
unc0rr
parents: 408
diff changeset
  1464
end;
520
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1465
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1466
////////////////////////////////////////////////////////////////////////////////
525
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1467
procedure doStepTeleportAfter(Gear: PGear);
912
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1468
var HHGear: PGear;
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1469
begin
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1470
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1471
HHGear^.Y:= HHGear^.Y + HHGear^.dY; // hedgehog falling to collect cases
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1472
HHGear^.dY:= HHGear^.dY + cGravity;
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 940
diff changeset
  1473
if TestCollisionYwithGear(HHGear, 1)
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1474
	or CheckGearDrowning(HHGear) then
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1475
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1476
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1477
	AfterAttack
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1478
	end
912
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1479
end;
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1480
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1481
procedure doStepTeleportAnim(Gear: PGear);
525
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1482
begin
853
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1483
inc(Gear^.Timer);
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1484
if Gear^.Timer = 65 then
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1485
	begin
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1486
	Gear^.Timer:= 0;
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1487
	inc(Gear^.Pos);
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1488
	if Gear^.Pos = 11 then
912
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1489
		Gear^.doStep:= @doStepTeleportAfter
853
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1490
	end
525
ae21b8e86dd9 Teleported hedgehog picks up cases
unc0rr
parents: 522
diff changeset
  1491
end;
520
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1492
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1493
procedure doStepTeleport(Gear: PGear);
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1494
var HHGear: PGear;
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1495
begin
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1496
AllInactive:= false;
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1497
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1498
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1499
if not TryPlaceOnLand(TargetPoint.X - SpritesData[sprHHTelepMask].Width div 2,
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1500
                      TargetPoint.Y - SpritesData[sprHHTelepMask].Height div 2,
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1501
                      sprHHTelepMask, 0, false) then
853
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1502
		begin
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1503
		HHGear^.Message:= HHGear^.Message and not gm_Attack;
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1504
		HHGear^.State:= HHGear^.State and not gstAttacking;
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1505
		HHGear^.State:= HHGear^.State or gstHHChooseTarget;
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1506
		DeleteGear(Gear);
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1507
		isCursorVisible:= true
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1508
		end
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1509
	else begin
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1510
		DeleteCI(HHGear);
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1511
		SetAllHHToActive;
912
acab672fb1aa Fix collecting cases after teleportation
unc0rr
parents: 911
diff changeset
  1512
		Gear^.doStep:= @doStepTeleportAnim;
853
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1513
		Gear^.X:= HHGear^.X;
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1514
		Gear^.Y:= HHGear^.Y;
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1515
		HHGear^.X:= int2hwFloat(TargetPoint.X);
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1516
		HHGear^.Y:= int2hwFloat(TargetPoint.Y);
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1517
		HHGear^.State:= HHGear^.State or gstMoving
0b4a23795530 Teleport animation
unc0rr
parents: 845
diff changeset
  1518
		end;
520
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1519
TargetPoint.X:= NoPointX
e83dfb7ffead Teleportation tool
unc0rr
parents: 519
diff changeset
  1520
end;
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1521
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1522
////////////////////////////////////////////////////////////////////////////////
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1523
procedure doStepSwitcherWork(Gear: PGear);
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1524
var HHGear: PGear;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1525
    Msg, State: Longword;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1526
begin
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1527
AllInactive:= false;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1528
540
b06c5aace2fa - Many fixes related to hh switcher
unc0rr
parents: 538
diff changeset
  1529
if ((Gear^.Message and not gm_Switch) <> 0) or (TurnTimeLeft = 0) then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1530
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1531
	HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1532
	Msg:= Gear^.Message and not gm_Switch;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1533
	DeleteGear(Gear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1534
	OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1535
	ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^);
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1536
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1537
	HHGear:= CurrentHedgehog^.Gear;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1538
	ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1539
	HHGear^.Message:= Msg;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1540
	exit
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1541
	end;
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1542
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1543
if (Gear^.Message and gm_Switch) <> 0 then
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1544
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1545
	HHGear:= CurrentHedgehog^.Gear;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1546
	HHGear^.Message:= HHGear^.Message and not gm_Switch;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1547
	Gear^.Message:= Gear^.Message and not gm_Switch;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1548
	State:= HHGear^.State;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1549
	HHGear^.State:= 0;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1550
	HHGear^.Active:= false;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1551
	HHGear^.Z:= cHHZ;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1552
	RemoveGearFromList(HHGear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1553
	InsertGearToList(HHGear);
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1554
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1555
	repeat
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1556
		CurrentTeam^.CurrHedgehog:= Succ(CurrentTeam^.CurrHedgehog) mod (CurrentTeam^.HedgehogsNumber);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1557
	until (CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear <> nil);
652
4cca0c7de609 - Fix for hedgehogs switching
unc0rr
parents: 602
diff changeset
  1558
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1559
	CurrentHedgehog:= @CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog];
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1560
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1561
	HHGear:= CurrentHedgehog^.Gear;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1562
	HHGear^.State:= State;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1563
	HHGear^.Active:= true;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1564
	FollowGear:= HHGear;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1565
	HHGear^.Z:= cCurrHHZ;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1566
	RemoveGearFromList(HHGear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1567
	InsertGearToList(HHGear);
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1568
	Gear^.X:= HHGear^.X;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1569
	Gear^.Y:= HHGear^.Y
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1570
	end;
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1571
end;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1572
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1573
procedure doStepSwitcher(Gear: PGear);
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1574
var HHGear: PGear;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1575
begin
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1576
Gear^.doStep:= @doStepSwitcherWork;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1577
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1578
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1579
with HHGear^ do
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1580
	begin
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1581
	State:= State and not gstAttacking;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1582
	Message:= Message and not gm_Attack
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1583
	end
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 525
diff changeset
  1584
end;
924
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1585
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1586
////////////////////////////////////////////////////////////////////////////////
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1587
procedure doStepMortar(Gear: PGear);
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1588
var dX, dY: hwFloat;
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1589
    i: LongInt;
963
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1590
    dxn, dyn: boolean;
924
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1591
begin
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1592
AllInactive:= false;
963
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1593
dxn:= Gear^.dX.isNegative;
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1594
dyn:= Gear^.dY.isNegative;
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1595
924
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1596
doStepFallingGear(Gear);
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1597
if (Gear^.State and gstCollision) <> 0 then
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1598
	begin
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1599
	doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 20, EXPLAutoSound);
963
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1600
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1601
	Gear^.dX.isNegative:= not dxn;
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1602
	Gear^.dY.isNegative:= not dyn;
924
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1603
	for i:= 0 to 4 do
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1604
		begin
963
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1605
		dX:= Gear^.dX + (GetRandom - _0_5) * _0_03;
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1606
		dY:= Gear^.dY + (GetRandom - _0_5) * _0_03;
1273
8dcb04b143e1 Fix mortar
unc0rr
parents: 1263
diff changeset
  1607
		AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtCluster, 0, dX, dY, 25);
924
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1608
		end;
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1609
	
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1610
	DeleteGear(Gear);
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1611
	exit
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1612
	end;
963
5f8bb3470563 Fix mortar clusters spread direction
unc0rr
parents: 945
diff changeset
  1613
924
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1614
if (GameTicks and $3F) = 0 then
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1615
	AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0)
227f9fcdc2f4 Initial implementation of mortar
unc0rr
parents: 919
diff changeset
  1616
end;
984
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1617
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1618
////////////////////////////////////////////////////////////////////////////////
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1619
procedure doStepKamikazeWork(Gear: PGear);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1620
const upd: Longword = 0;
987
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1621
var i: LongWord;
984
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1622
    HHGear: PGear;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1623
begin
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1624
AllInactive:= false;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1625
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1626
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1627
HHGear^.State:= HHGear^.State or gstNoDamage;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1628
DeleteCI(HHGear);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1629
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1630
i:= 2;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1631
repeat
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1632
	Gear^.X:= Gear^.X + HHGear^.dX;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1633
	Gear^.Y:= Gear^.Y + HHGear^.dY;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1634
	HHGear^.X:= Gear^.X;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1635
	HHGear^.Y:= Gear^.Y;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1636
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1637
	inc(Gear^.Damage, 2);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1638
1200
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
  1639
//	if TestCollisionXwithGear(HHGear, hwSign(Gear^.dX))
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
  1640
//		or TestCollisionYwithGear(HHGear, hwSign(Gear^.dY)) then inc(Gear^.Damage, 3);
984
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1641
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1642
	dec(i)
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1643
until (i = 0) or (Gear^.Damage > Gear^.Health);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1644
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1645
inc(upd);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1646
if upd > 3 then
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1647
	begin
987
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1648
	if Gear^.Health < 1500 then Gear^.Pos:= 2;
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1649
	
984
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1650
	AmmoShove(Gear, 30, 40);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1651
	
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1652
	DrawTunnel(HHGear^.X - HHGear^.dX * 10,
1200
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
  1653
			HHGear^.Y - _2 - HHGear^.dY * 10 + hwAbs(HHGear^.dY) * 2,
984
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1654
			HHGear^.dX,
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1655
			HHGear^.dY,
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1656
			20 + cHHRadius * 2,
1200
b92323ccce45 Fix pickhammer and kamikaze
unc0rr
parents: 1158
diff changeset
  1657
			cHHRadius * 2 + 6);
984
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1658
	
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1659
	upd:= 0
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1660
	end;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1661
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1662
if Gear^.Health < Gear^.Damage then
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1663
	begin
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1664
	doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1665
	AfterAttack;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1666
	DeleteGear(Gear);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1667
	DeleteGear(HHGear);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1668
	end else
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1669
	begin
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1670
	dec(Gear^.Health, Gear^.Damage);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1671
	Gear^.Damage:= 0
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1672
	end
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1673
end;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1674
987
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1675
procedure doStepKamikazeIdle(Gear: PGear);
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1676
begin
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1677
AllInactive:= false;
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1678
dec(Gear^.Timer);
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1679
if Gear^.Timer = 0 then
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1680
	begin
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1681
	Gear^.Pos:= 1;
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
  1682
	PlaySound(sndKamikaze, false, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack);
987
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1683
	Gear^.doStep:= @doStepKamikazeWork
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1684
	end
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1685
end;
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1686
984
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1687
procedure doStepKamikaze(Gear: PGear);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1688
var HHGear: PGear;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1689
begin
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1690
AllInactive:= false;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1691
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1692
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1693
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1694
HHGear^.dX:= Gear^.dX;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1695
HHGear^.dY:= Gear^.dY;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1696
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1697
Gear^.dX:= SignAs(_0_45, Gear^.dX);
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1698
Gear^.dY:= - _0_9;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1699
987
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1700
Gear^.Timer:= 550;
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1701
0fcd3fadda41 Use kamiakze sprite
unc0rr
parents: 984
diff changeset
  1702
Gear^.doStep:= @doStepKamikazeIdle
984
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1703
end;
dd5f16f69926 Kamikaze weapon
unc0rr
parents: 980
diff changeset
  1704
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1705
////////////////////////////////////////////////////////////////////////////////
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1706
const cakeh = 27;
1110
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1707
      cakeDmg = 75;
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1708
var CakePoints: array[0..Pred(cakeh)] of record x, y: hwFloat; end;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1709
	CakeI: Longword;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1710
1110
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1711
procedure doStepCakeExpl(Gear: PGear);
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1712
begin
2141
3b06505dbd5d Fix some cake bugs
unc0rr
parents: 2140
diff changeset
  1713
AllInactive:= false;
3b06505dbd5d Fix some cake bugs
unc0rr
parents: 2140
diff changeset
  1714
1110
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1715
inc(Gear^.Tag);
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1716
if Gear^.Tag < 2250 then exit;
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1717
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1718
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), cakeDmg, EXPLAutoSound);
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1719
AfterAttack;
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1720
DeleteGear(Gear)
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1721
end;
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1722
1109
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1723
procedure doStepCakeDown(Gear: PGear);
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1724
var gi: PGear;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1725
	dmg: LongInt;
1109
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1726
begin
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1727
AllInactive:= false;
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1728
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1729
inc(Gear^.Tag);
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1730
if Gear^.Tag < 100 then exit;
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1731
Gear^.Tag:= 0;
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1732
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1733
if Gear^.Pos = 0 then
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1734
	begin
1110
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1735
	gi:= GearsList;
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1736
	while gi <> nil do
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1737
		begin
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1738
		dmg:= cakeDmg * 2 - hwRound(Distance(gi^.X - Gear^.X, gi^.Y - Gear^.Y));
1865
ebc6dfca60d4 - nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents: 1861
diff changeset
  1739
		if (dmg > 1) and (gi^.Kind = gtHedgehog) then
ebc6dfca60d4 - nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents: 1861
diff changeset
  1740
            if (CurrentHedgehog^.Gear = gi) and (not gi^.Invulnerable) then
1867
2fc0e1e39b11 loser animation by nemo
unc0rr
parents: 1865
diff changeset
  1741
			    gi^.State:= gi^.State or gstLoser
1865
ebc6dfca60d4 - nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents: 1861
diff changeset
  1742
            else
ebc6dfca60d4 - nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents: 1861
diff changeset
  1743
			    gi^.State:= gi^.State or gstWinner;
1110
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1744
		gi:= gi^.NextGear
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1745
		end;
3660bbfc1cba Finish cake implementation
unc0rr
parents: 1109
diff changeset
  1746
	Gear^.doStep:= @doStepCakeExpl;
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
  1747
	PlaySound(sndCake, false, nil)
1109
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1748
	end else dec(Gear^.Pos)
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1749
end;
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1750
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1751
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1752
procedure doStepCakeWork(Gear: PGear);
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1753
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
  1754
var xx, yy, xxn, yyn: LongInt;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1755
	da: LongInt;
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1756
	tdx, tdy: hwFloat;
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1757
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1758
	procedure PrevAngle;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1759
	begin
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1760
	Gear^.Angle:= (LongInt(Gear^.Angle) + 4 - dA) mod 4
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1761
	end;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1762
	
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1763
	procedure NextAngle;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1764
	begin
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1765
	Gear^.Angle:= (LongInt(Gear^.Angle) + 4 + dA) mod 4
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1766
	end;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1767
	
1088
9702e17146e6 Stubs for spider weapon
unc0rr
parents: 1066
diff changeset
  1768
begin
2141
3b06505dbd5d Fix some cake bugs
unc0rr
parents: 2140
diff changeset
  1769
AllInactive:= false;
3b06505dbd5d Fix some cake bugs
unc0rr
parents: 2140
diff changeset
  1770
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1771
inc(Gear^.Tag);
1108
c77267d982ee Animate falling and waking up cake
unc0rr
parents: 1106
diff changeset
  1772
if Gear^.Tag < 7 then exit;
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1773
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1774
dA:= hwSign(Gear^.dX);
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1775
xx:= dirs[Gear^.Angle].x;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1776
yy:= dirs[Gear^.Angle].y;
1133
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1777
xxn:= dirs[(LongInt(Gear^.Angle) + 4 + dA) mod 4].x;
5d5a912d6fc2 - Fix warnings
unc0rr
parents: 1132
diff changeset
  1778
yyn:= dirs[(LongInt(Gear^.Angle) + 4 + dA) mod 4].y;
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1779
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1780
if (xx = 0) then
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1781
	if TestCollisionYwithGear(Gear, yy) then
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1782
		PrevAngle
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1783
	else begin
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1784
		Gear^.Tag:= 0;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1785
		Gear^.Y:= Gear^.Y + int2hwFloat(yy);
1635
cc5976f292f9 Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents: 1634
diff changeset
  1786
		if not TestCollisionXwithGear(Gear, xxn) then
cc5976f292f9 Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents: 1634
diff changeset
  1787
			begin
cc5976f292f9 Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents: 1634
diff changeset
  1788
			Gear^.X:= Gear^.X + int2hwFloat(xxn);
cc5976f292f9 Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents: 1634
diff changeset
  1789
			NextAngle
cc5976f292f9 Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents: 1634
diff changeset
  1790
			end;
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1791
		end;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1792
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1793
if (yy = 0) then
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1794
	if TestCollisionXwithGear(Gear, xx) then
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1795
		PrevAngle
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1796
	else begin
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1797
		Gear^.Tag:= 0;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1798
		Gear^.X:= Gear^.X + int2hwFloat(xx);
1635
cc5976f292f9 Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents: 1634
diff changeset
  1799
		if not TestCollisionYwithGear(Gear, yyn) then
cc5976f292f9 Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents: 1634
diff changeset
  1800
			begin
cc5976f292f9 Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents: 1634
diff changeset
  1801
			Gear^.Y:= Gear^.Y + int2hwFloat(yyn);
cc5976f292f9 Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents: 1634
diff changeset
  1802
			NextAngle
cc5976f292f9 Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents: 1634
diff changeset
  1803
			end;
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1804
		end;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1805
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1806
if Gear^.Tag = 0 then
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1807
	begin
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1808
	CakeI:= (CakeI + 1) mod cakeh;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1809
	tdx:= CakePoints[CakeI].x - Gear^.X;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1810
	tdy:= - CakePoints[CakeI].y + Gear^.Y;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1811
	CakePoints[CakeI].x:= Gear^.X;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1812
	CakePoints[CakeI].y:= Gear^.Y;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1813
	Gear^.DirAngle:= DxDy2Angle(tdx, tdy);
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1814
	end;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1815
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1816
dec(Gear^.Health);
1090
c4ff49d0fe9b Cake explodes on /attack
unc0rr
parents: 1089
diff changeset
  1817
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
  1818
	begin
1109
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1819
	FollowGear:= Gear;
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1820
	Gear^.doStep:= @doStepCakeDown
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1821
	end
1088
9702e17146e6 Stubs for spider weapon
unc0rr
parents: 1066
diff changeset
  1822
end;
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1823
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1824
procedure doStepCakeUp(Gear: PGear);
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1825
var i: Longword;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1826
begin
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1827
AllInactive:= false;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1828
1108
c77267d982ee Animate falling and waking up cake
unc0rr
parents: 1106
diff changeset
  1829
inc(Gear^.Tag);
1109
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1830
if Gear^.Tag < 100 then exit;
1108
c77267d982ee Animate falling and waking up cake
unc0rr
parents: 1106
diff changeset
  1831
Gear^.Tag:= 0;
c77267d982ee Animate falling and waking up cake
unc0rr
parents: 1106
diff changeset
  1832
1109
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1833
if Gear^.Pos = 6 then
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1834
	begin
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1835
	for i:= 0 to Pred(cakeh) do
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1836
		begin
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1837
		CakePoints[i].x:= Gear^.X;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1838
		CakePoints[i].y:= Gear^.Y
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1839
		end;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1840
	CakeI:= 0;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1841
	Gear^.doStep:= @doStepCakeWork
1109
87c44c14fdd4 - Cake sits down before exploding
unc0rr
parents: 1108
diff changeset
  1842
	end else inc(Gear^.Pos)
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1843
end;
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1844
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1845
procedure doStepCakeFall(Gear: PGear);
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1846
begin
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1847
AllInactive:= false;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1848
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1849
Gear^.dY:= Gear^.dY + cGravity;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1850
if TestCollisionYwithGear(Gear, 1) then
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1851
	Gear^.doStep:= @doStepCakeUp
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1852
else
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1853
	begin
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1854
	Gear^.Y:= Gear^.Y + Gear^.dY;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1855
	if CheckGearDrowning(Gear) then AfterAttack
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1856
	end
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1857
end;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1858
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1859
procedure doStepCake(Gear: PGear);
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1860
var HHGear: PGear;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1861
begin
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1862
AllInactive:= false;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1863
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1864
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
1103
1ff3db3c12af Show cake rotated correct angle
unc0rr
parents: 1090
diff changeset
  1865
HHGear^.Message:= HHGear^.Message and (not gm_Attack);
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1866
DeleteCI(HHGear);
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1867
1106
f868b7307003 - Animate cake walking
unc0rr
parents: 1103
diff changeset
  1868
FollowGear:= Gear;
f868b7307003 - Animate cake walking
unc0rr
parents: 1103
diff changeset
  1869
1089
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1870
Gear^.doStep:= @doStepCakeFall
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1871
end;
24e9e1ca0394 First implementation of the Cake weapon
unc0rr
parents: 1088
diff changeset
  1872
1259
0c660c3d98a4 - Continue seduction implementation
unc0rr
parents: 1207
diff changeset
  1873
////////////////////////////////////////////////////////////////////////////////
1284
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1874
procedure doStepSeductionWork(Gear: PGear);
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1875
var x, y: LongInt;
1259
0c660c3d98a4 - Continue seduction implementation
unc0rr
parents: 1207
diff changeset
  1876
begin
0c660c3d98a4 - Continue seduction implementation
unc0rr
parents: 1207
diff changeset
  1877
AllInactive:= false;
1284
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1878
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1879
Gear^.X:= Gear^.X + Gear^.dX;
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1880
Gear^.Y:= Gear^.Y + Gear^.dY;
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1881
x:= hwRound(Gear^.X);
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1882
y:= hwRound(Gear^.Y);
1259
0c660c3d98a4 - Continue seduction implementation
unc0rr
parents: 1207
diff changeset
  1883
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1752
diff changeset
  1884
if ((y and LAND_HEIGHT_MASK) = 0) and ((x and LAND_WIDTH_MASK) = 0) then
1284
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1885
	if (Land[y, x] <> 0) then
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1886
		begin
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1887
		Gear^.dX.isNegative:= not Gear^.dX.isNegative;
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1888
		Gear^.dY.isNegative:= not Gear^.dY.isNegative;
1286
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1889
		Gear^.dX:= Gear^.dX * _1_5;
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1890
		Gear^.dY:= Gear^.dY * _1_5 - _0_3;
1284
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1891
		AmmoShove(Gear, 0, 40);
1286
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1892
		AfterAttack;
1284
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1893
		DeleteGear(Gear)
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1894
		end
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1895
	else
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1896
else
1286
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1897
	begin
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1898
	AfterAttack;
1284
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1899
	DeleteGear(Gear)
1286
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1900
	end
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1901
end;
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1902
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1903
procedure doStepSeductionWear(Gear: PGear);
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1904
begin
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1905
AllInactive:= false;
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1906
inc(Gear^.Timer);
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1907
if Gear^.Timer > 250 then
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1908
	begin
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1909
	Gear^.Timer:= 0;
1388
5e7920f2e2aa Fix seduction sound
unc0rr
parents: 1367
diff changeset
  1910
	inc(Gear^.Pos);
5e7920f2e2aa Fix seduction sound
unc0rr
parents: 1367
diff changeset
  1911
	if Gear^.Pos = 5 then
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
  1912
		PlaySound(sndYoohoo, false, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack)
1286
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1913
	end;
1367
e1aaa1a4901f Use seduction sound
unc0rr
parents: 1361
diff changeset
  1914
e1aaa1a4901f Use seduction sound
unc0rr
parents: 1361
diff changeset
  1915
if Gear^.Pos = 14 then
1286
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1916
	Gear^.doStep:= @doStepSeductionWork
1259
0c660c3d98a4 - Continue seduction implementation
unc0rr
parents: 1207
diff changeset
  1917
end;
1284
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1918
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1919
procedure doStepSeduction(Gear: PGear);
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1920
begin
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1921
AllInactive:= false;
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1922
DeleteCI(PHedgehog(Gear^.Hedgehog)^.Gear);
1286
a02a5345b91e Seduction animation
unc0rr
parents: 1284
diff changeset
  1923
Gear^.doStep:= @doStepSeductionWear
1284
21916b5de218 - Update Italian translation
unc0rr
parents: 1279
diff changeset
  1924
end;
1298
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1925
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1926
////////////////////////////////////////////////////////////////////////////////
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1927
procedure doStepWaterUp(Gear: PGear);
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1928
var i: LongWord;
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1929
begin
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1930
AllInactive:= false;
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1931
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1932
inc(Gear^.Timer);
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1933
if Gear^.Timer = 17 then
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1934
	Gear^.Timer:= 0
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1935
else
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1936
	exit;
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1937
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1938
if cWaterLine > 0 then
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1939
	begin
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1940
	dec(cWaterLine);
1760
55a1edd97911 Fix nemo's large land patch
unc0rr
parents: 1753
diff changeset
  1941
	for i:= 0 to LAND_WIDTH - 1 do
1298
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1942
		Land[cWaterLine, i]:= 0;
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1943
	SetAllToActive
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1944
	end;
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1945
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1946
inc(Gear^.Tag);
1343
7a47a80b20ad Fix water rising too fast
unc0rr
parents: 1298
diff changeset
  1947
if (Gear^.Tag = 47) or (cWaterLine = 0) then
1298
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1948
	DeleteGear(Gear)
18fdc25fe65d - Fix water rise
unc0rr
parents: 1297
diff changeset
  1949
end;
1573
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1950
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1951
////////////////////////////////////////////////////////////////////////////////
1590
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1952
procedure doStepDrillDrilling(Gear: PGear);
1633
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  1953
var t: PGearArray;
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  1954
	ox, oy: hwFloat;
1573
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1955
begin
1590
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1956
AllInactive:= false;
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1957
1633
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  1958
if (Gear^.Timer > 0) and ((Gear^.Timer mod 10) = 0) then
1590
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1959
	begin
1573
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1960
	ox:= Gear^.X;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1961
	oy:= Gear^.Y;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1962
	Gear^.X:= Gear^.X + Gear^.dX;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1963
	Gear^.Y:= Gear^.Y + Gear^.dY;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1964
	DrawTunnel(oX, oY, Gear^.dX, Gear^.dY, 2, 6);
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1965
	CheckGearDrowning(Gear);
1590
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1966
	end;
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1967
1633
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  1968
t:= CheckGearsCollision(Gear); //fixes drill not exploding when touching HH bug
1590
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1969
if (Gear^.Timer = 0)
1633
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  1970
or (t^.Count <> 0)
1590
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1971
or (not TestCollisionYWithGear(Gear, hwSign(Gear^.dY))
1784
dfe9bafb4590 Apply nemo's patch polished by me:
unc0rr
parents: 1781
diff changeset
  1972
and not TestCollisionXWithGear(Gear, hwSign(Gear^.dX)))
dfe9bafb4590 Apply nemo's patch polished by me:
unc0rr
parents: 1781
diff changeset
  1973
or (Land[hwRound(Gear^.Y), hwRound(Gear^.X)] = COLOR_INDESTRUCTIBLE) then
1590
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1974
	begin //out of time or exited ground
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1975
	doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1976
	DeleteGear(Gear);
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1977
	exit
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1978
	end;
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1979
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1980
dec(Gear^.Timer);
1573
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1981
end;
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1982
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1983
procedure doStepDrill(Gear: PGear);
1590
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1984
var t: PGearArray;
1633
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  1985
	oldDx, oldDy: hwFloat;
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  1986
	t2: hwFloat;
1573
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1987
begin
1590
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1988
AllInactive:= false;
1573
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1989
1590
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1990
Gear^.dX:= Gear^.dX + cWindSpeed;
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1991
oldDx:= Gear^.dX;
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1992
oldDy:= Gear^.dY;
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1993
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1994
doStepFallingGear(Gear);
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1995
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1996
if (GameTicks and $3F) = 0 then
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  1997
	AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0);
1573
cf88e0ace609 Drill rocket
unc0rr
parents: 1555
diff changeset
  1998
1633
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  1999
if ((Gear^.State and gstCollision) <> 0) then begin //hit
1590
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  2000
	Gear^.dX:= oldDx;
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  2001
	Gear^.dY:= oldDy;
1633
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  2002
1590
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  2003
	t:= CheckGearsCollision(Gear);
1633
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  2004
	if (t^.Count = 0) then begin //hit the ground not the HH
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  2005
		t2 := _0_5 / Distance(Gear^.dX, Gear^.dY);
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  2006
		Gear^.dX:= Gear^.dX * t2;
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  2007
		Gear^.dY:= Gear^.dY * t2;
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  2008
	end else begin //explode right on contact with HH
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  2009
		doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound);
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  2010
		DeleteGear(Gear);
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  2011
		exit;
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  2012
		end;
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  2013
	
1590
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  2014
	Gear^.doStep:= @doStepDrillDrilling;
1633
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  2015
	dec(Gear^.Timer)
1590
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  2016
	end
646d56eacb8f - Refactor drill rocket
unc0rr
parents: 1586
diff changeset
  2017
end;
1601
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2018
1633
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  2019
////////////////////////////////////////////////////////////////////////////////
1601
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2020
procedure doStepBallgunWork(Gear: PGear);
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2021
var HHGear: PGear;
1630
513a2c089160 Some debug stuff for ballgun bug
unc0rr
parents: 1624
diff changeset
  2022
	rx, ry: hwFloat;
1601
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2023
begin
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2024
	AllInactive:= false;
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2025
	dec(Gear^.Timer);
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2026
	HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2027
	HedgehogChAngle(HHGear);
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2028
	if (Gear^.Timer mod 100) = 0 then
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2029
		begin
1630
513a2c089160 Some debug stuff for ballgun bug
unc0rr
parents: 1624
diff changeset
  2030
		rx:= rndSign(getRandom * _0_1);
513a2c089160 Some debug stuff for ballgun bug
unc0rr
parents: 1624
diff changeset
  2031
		ry:= rndSign(getRandom * _0_1);
1631
6e313b3818ef Remove debug stuff, ballgun 64but incompatibility fixed in previous revision
unc0rr
parents: 1630
diff changeset
  2032
		
1630
513a2c089160 Some debug stuff for ballgun bug
unc0rr
parents: 1624
diff changeset
  2033
		AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtBall, 0,
513a2c089160 Some debug stuff for ballgun bug
unc0rr
parents: 1624
diff changeset
  2034
				SignAs(AngleSin(HHGear^.Angle) * _0_8, HHGear^.dX) + rx,
513a2c089160 Some debug stuff for ballgun bug
unc0rr
parents: 1624
diff changeset
  2035
				AngleCos(HHGear^.Angle) * ( - _0_8) + ry,
513a2c089160 Some debug stuff for ballgun bug
unc0rr
parents: 1624
diff changeset
  2036
				0);
1601
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2037
		
1669
b709e061577e Mostly fix voicepack usage
unc0rr
parents: 1652
diff changeset
  2038
		PlaySound(sndGun, false, nil);
1601
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2039
		end;
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2040
1643
434e28245dc0 Fix yet another ballgun bug
unc0rr
parents: 1635
diff changeset
  2041
	if (Gear^.Timer = 0) or (HHGear^.Damage <> 0) then
1601
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2042
		begin
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2043
		DeleteGear(Gear);
1643
434e28245dc0 Fix yet another ballgun bug
unc0rr
parents: 1635
diff changeset
  2044
		AfterAttack
434e28245dc0 Fix yet another ballgun bug
unc0rr
parents: 1635
diff changeset
  2045
		end
1601
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2046
end;
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2047
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2048
procedure doStepBallgun(Gear: PGear);
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2049
var HHGear: PGear;
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2050
begin
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2051
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2052
HHGear^.Message:= HHGear^.Message and not (gm_Up or gm_Down);
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2053
HHGear^.State:= HHGear^.State or gstNotKickable;
0cff69c8c4cf Ballsgun
unc0rr
parents: 1590
diff changeset
  2054
Gear^.doStep:= @doStepBallgunWork
1633
c1de4078b0fd Drill rocket patch
unc0rr
parents: 1631
diff changeset
  2055
end;
1689
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2056
1696
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2057
////////////////////////////////////////////////////////////////////////////////
1689
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2058
procedure doStepRCPlaneWork(Gear: PGear);
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2059
const cAngleSpeed = 3;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2060
var HHGear: PGear;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2061
	i: LongInt;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2062
	dX, dY: hwFloat;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2063
	fChanged: boolean;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2064
	trueAngle: Longword;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2065
	t: PGear;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2066
begin
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2067
AllInactive:= false;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2068
1696
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2069
if Gear^.Timer > 0 then dec(Gear^.Timer);
1689
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2070
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2071
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2072
FollowGear:= Gear;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2073
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2074
fChanged:= false;
1696
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2075
if ((HHGear^.State and gstHHDriven) = 0) or (Gear^.Timer = 0) then
1689
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2076
	begin
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2077
	fChanged:= true;
1696
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2078
	if Gear^.Angle > 2048 then dec(Gear^.Angle) else
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2079
		if Gear^.Angle < 2048 then inc(Gear^.Angle) else fChanged:= false
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2080
	end
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2081
else
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2082
	begin
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2083
	if ((Gear^.Message and gm_Left) <> 0) then
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2084
		begin
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2085
		fChanged:= true;
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2086
		Gear^.Angle:= (Gear^.Angle + (4096 - cAngleSpeed)) mod 4096
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2087
		end;
1689
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2088
1696
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2089
	if ((Gear^.Message and gm_Right) <> 0) then
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2090
		begin
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2091
		fChanged:= true;
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2092
		Gear^.Angle:= (Gear^.Angle + cAngleSpeed) mod 4096
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2093
		end
1689
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2094
	end;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2095
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2096
if fChanged then
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2097
	begin
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2098
	Gear^.dX.isNegative:= (Gear^.Angle > 2048);
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2099
	if Gear^.dX.isNegative then
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2100
		trueAngle:= 4096 - Gear^.Angle
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2101
	else
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2102
		trueAngle:= Gear^.Angle;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2103
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2104
	Gear^.dX:= SignAs(AngleSin(trueAngle), Gear^.dX) * _0_25;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2105
	Gear^.dY:= AngleCos(trueAngle) * -_0_25;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2106
	end;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2107
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2108
Gear^.X:= Gear^.X + Gear^.dX;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2109
Gear^.Y:= Gear^.Y + Gear^.dY;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2110
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2111
if (GameTicks and $FF) = 0 then
1698
993c42413387 Fallback to no hat when hat couldn't be loaded
unc0rr
parents: 1697
diff changeset
  2112
	if Gear^.Timer < 3500 then
1696
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2113
		AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtEvilTrace, 0, _0, _0, 0)
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2114
	else
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2115
		AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0);
1689
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2116
1696
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2117
if ((HHGear^.Message and gm_Attack) <> 0) and (Gear^.Health <> 0) then
1689
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2118
	begin
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2119
	HHGear^.Message := HHGear^.Message and not gm_Attack;
1708
62e1d9af1dd9 More predictable bombs trajectory with rc plane
unc0rr
parents: 1698
diff changeset
  2120
	AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtAirBomb, 0, Gear^.dX * _0_5, Gear^.dY * _0_5, 0);
1689
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2121
	dec(Gear^.Health)
1712
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2122
    end;
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2123
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2124
if ((HHGear^.Message and gm_LJump) <> 0)
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2125
	and ((Gear^.State and gsttmpFlag) = 0) then
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2126
    begin
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2127
    Gear^.State:= Gear^.State or gsttmpFlag;
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2128
    PauseMusic;
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2129
    playSound(sndRideOfTheValkyries, false, nil);
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2130
    end;
1689
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2131
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2132
// pickup bonuses
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2133
t:= CheckGearNear(Gear, gtCase, 36, 36);
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2134
if t <> nil then
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2135
	PickUp(HHGear, t);
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2136
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2137
CheckCollision(Gear);
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2138
1712
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2139
if ((Gear^.State and gstCollision) <> 0)
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2140
	or CheckGearDrowning(Gear) then
1689
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2141
	begin
1712
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2142
	StopSound(sndRCPlane);
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2143
	StopSound(sndRideOfTheValkyries);
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2144
	ResumeMusic;
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2145
	
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2146
	if ((Gear^.State and gstCollision) <> 0) then
1689
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2147
		begin
1712
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2148
		doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, EXPLAutoSound);
1714
10de2dcaa34f Fix rc plane fire spread
unc0rr
parents: 1713
diff changeset
  2149
		for i:= 0 to 32 do
1712
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2150
			begin
1714
10de2dcaa34f Fix rc plane fire spread
unc0rr
parents: 1713
diff changeset
  2151
			dX:= AngleCos(i * 64) * _0_5 * (GetRandom + _1);
10de2dcaa34f Fix rc plane fire spread
unc0rr
parents: 1713
diff changeset
  2152
			dY:= AngleSin(i * 64) * _0_5 * (GetRandom + _1);
1712
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2153
			AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtFlame, 0, dX, dY, 0);
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2154
			AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtFlame, 0, dX, -dY, 0);
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2155
			end;
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2156
		DeleteGear(Gear)
1689
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2157
		end;
1713
194ed95f9e8d Hedgehog is also sad when rcplane is drawning
unc0rr
parents: 1712
diff changeset
  2158
1689
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2159
	AfterAttack;
1713
194ed95f9e8d Hedgehog is also sad when rcplane is drawning
unc0rr
parents: 1712
diff changeset
  2160
	CurAmmoGear:= nil;
1697
ea3eddd73f2c Play sad animation on rc plane crash
unc0rr
parents: 1696
diff changeset
  2161
	TurnTimeLeft:= 14 * 125;
1712
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2162
	HHGear^.Message:= 0;
1697
ea3eddd73f2c Play sad animation on rc plane crash
unc0rr
parents: 1696
diff changeset
  2163
	ParseCommand('/taunt '#1, true)
ea3eddd73f2c Play sad animation on rc plane crash
unc0rr
parents: 1696
diff changeset
  2164
	end
1689
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2165
end;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2166
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2167
procedure doStepRCPlane(Gear: PGear);
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2168
var HHGear: PGear;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2169
begin
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2170
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2171
HHGear^.Message:= 0;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2172
HHGear^.State:= HHGear^.State or gstNotKickable;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2173
Gear^.Angle:= HHGear^.Angle;
1696
bb1e305320a1 rc plane falls down when looses control
unc0rr
parents: 1689
diff changeset
  2174
Gear^.Tag:= hwSign(HHGear^.dX);
1689
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2175
if HHGear^.dX.isNegative then Gear^.Angle:= 4096 - Gear^.Angle;
3d0eee01f734 RC Plane
unc0rr
parents: 1669
diff changeset
  2176
Gear^.doStep:= @doStepRCPlaneWork
1712
f5b916de40f0 Patch by nemo (polished by me)
unc0rr
parents: 1708
diff changeset
  2177
end;