hedgewars/uGearsUtils.pas
author nemo
Tue, 19 Nov 2013 22:15:40 -0500
changeset 9706 5178d2263521
parent 9685 7d925e82e572
child 9809 1e32628eb167
permissions -rw-r--r--
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     1
(*
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     2
 * Hedgewars, a free turn based strategy game
9080
9b42757d7e71 bump copyright year for Andrey entries
unc0rr
parents: 9071
diff changeset
     3
 * Copyright (c) 2004-2013 Andrey Korotaev <unC0Rr@gmail.com>
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     4
 *
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     8
 *
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    12
 * GNU General Public License for more details.
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    13
 *
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    14
 * You should have received a copy of the GNU General Public License
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    15
 * along with this program; if not, write to the Free Software
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    17
 *)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    18
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    19
{$INCLUDE "options.inc"}
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    20
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    21
unit uGearsUtils;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    22
interface
9285
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    23
uses uTypes, uFloat;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    24
6986
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6888
diff changeset
    25
procedure doMakeExplosion(X, Y, Radius: LongInt; AttackingHog: PHedgehog; Mask: Longword); inline;
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6888
diff changeset
    26
procedure doMakeExplosion(X, Y, Radius: LongInt; AttackingHog: PHedgehog; Mask: Longword; const Tint: LongWord); 
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6888
diff changeset
    27
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    28
function  ModifyDamage(dmg: Longword; Gear: PGear): Longword;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    29
procedure ApplyDamage(Gear: PGear; AttackerHog: PHedgehog; Damage: Longword; Source: TDamageSource);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    30
procedure spawnHealthTagForHH(HHGear: PGear; dmg: Longword);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    31
procedure HHHurt(Hedgehog: PHedgehog; Source: TDamageSource);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    32
procedure CheckHHDamage(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    33
procedure CalcRotationDirAngle(Gear: PGear);
8947
e906ebd59612 CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents: 8763
diff changeset
    34
procedure ResurrectHedgehog(var gear: PGear);
6986
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6888
diff changeset
    35
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6888
diff changeset
    36
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); inline;
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6888
diff changeset
    37
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt; skipProximity: boolean);
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6888
diff changeset
    38
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    39
function  CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear;
8947
e906ebd59612 CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents: 8763
diff changeset
    40
function  CheckGearDrowning(var Gear: PGear): boolean;
7592
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7509
diff changeset
    41
procedure CheckCollision(Gear: PGear); inline;
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7509
diff changeset
    42
procedure CheckCollisionWithLand(Gear: PGear); inline;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    43
9285
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    44
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    45
function  GearsNear(X, Y: hwFloat; Kind: TGearType; r: LongInt): PGearArrayS;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    46
procedure SpawnBoxOfSmth;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    47
procedure ShotgunShot(Gear: PGear);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    48
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    49
procedure SetAllToActive;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    50
procedure SetAllHHToActive; inline;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    51
procedure SetAllHHToActive(Ice: boolean);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    52
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    53
function  GetAmmo(Hedgehog: PHedgehog): TAmmoType;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    54
function  GetUtility(Hedgehog: PHedgehog): TAmmoType;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    55
9473
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
    56
function WorldWrap(var Gear: PGear): boolean;
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
    57
9285
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    58
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    59
7719
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
    60
function MakeHedgehogsStep(Gear: PGear) : boolean;
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
    61
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    62
var doStepHandlers: array[TGearType] of TGearStepProcedure;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    63
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    64
implementation
9285
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    65
uses uSound, uCollisions, uUtils, uConsts, uVisualGears, uAIMisc,
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    66
    uVariables, uLandGraphics, uScript, uStats, uCaptions, uTeams, uStore,
9285
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    67
    uLocale, uTextures, uRenderUtils, uRandom, SDLh, uDebug, 
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    68
    uGearsList, Math, uVisualGearsList, uGearsHandlersMess,
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    69
    uGearsHedgehog;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    70
6986
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6888
diff changeset
    71
procedure doMakeExplosion(X, Y, Radius: LongInt; AttackingHog: PHedgehog; Mask: Longword); inline;
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6888
diff changeset
    72
begin
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6888
diff changeset
    73
    doMakeExplosion(X, Y, Radius, AttackingHog, Mask, $FFFFFFFF);
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6888
diff changeset
    74
end;
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6888
diff changeset
    75
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    76
procedure doMakeExplosion(X, Y, Radius: LongInt; AttackingHog: PHedgehog; Mask: Longword; const Tint: LongWord);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    77
var Gear: PGear;
6769
44ad49a3a126 Add drowning to grenade too, try some little optimisations
nemo
parents: 6765
diff changeset
    78
    dmg, dmgBase: LongInt;
6765
8fcd2508c49f bug #336
nemo
parents: 6700
diff changeset
    79
    fX, fY, tdX, tdY: hwFloat;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    80
    vg: PVisualGear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    81
    i, cnt: LongInt;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    82
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    83
if Radius > 4 then AddFileLog('Explosion: at (' + inttostr(x) + ',' + inttostr(y) + ')');
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    84
if Radius > 25 then KickFlakes(Radius, X, Y);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    85
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    86
if ((Mask and EXPLNoGfx) = 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    87
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    88
    vg:= nil;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    89
    if Radius > 50 then vg:= AddVisualGear(X, Y, vgtBigExplosion)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    90
    else if Radius > 10 then vg:= AddVisualGear(X, Y, vgtExplosion);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    91
    if vg <> nil then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    92
        vg^.Tint:= Tint;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    93
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    94
if (Mask and EXPLAutoSound) <> 0 then PlaySound(sndExplosion);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    95
6765
8fcd2508c49f bug #336
nemo
parents: 6700
diff changeset
    96
(*if (Mask and EXPLAllDamageInRadius) = 0 then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    97
    dmgRadius:= Radius shl 1
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    98
else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    99
    dmgRadius:= Radius;
6765
8fcd2508c49f bug #336
nemo
parents: 6700
diff changeset
   100
dmgBase:= dmgRadius + cHHRadius div 2;*)
8fcd2508c49f bug #336
nemo
parents: 6700
diff changeset
   101
dmgBase:= Radius shl 1 + cHHRadius div 2;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   102
fX:= int2hwFloat(X);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   103
fY:= int2hwFloat(Y);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   104
Gear:= GearsList;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   105
while Gear <> nil do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   106
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   107
    dmg:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   108
    //dmg:= dmgRadius  + cHHRadius div 2 - hwRound(Distance(Gear^.X - int2hwFloat(X), Gear^.Y - int2hwFloat(Y)));
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   109
    //if (dmg > 1) and
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   110
    if (Gear^.State and gstNoDamage) = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   111
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   112
        case Gear^.Kind of
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   113
            gtHedgehog,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   114
                gtMine,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   115
                gtBall,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   116
                gtMelonPiece,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   117
                gtGrenade,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   118
                gtClusterBomb,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   119
            //    gtCluster, too game breaking I think
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   120
                gtSMine,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   121
                gtCase,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   122
                gtTarget,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   123
                gtFlame,
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7721
diff changeset
   124
                gtKnife,
8161
0b8beacff8a5 GCI2012: Remove Structure Weapon Code
deepdog
parents: 8007
diff changeset
   125
                gtExplosives: begin //,
0b8beacff8a5 GCI2012: Remove Structure Weapon Code
deepdog
parents: 8007
diff changeset
   126
                //gtStructure: begin
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   127
// Run the calcs only once we know we have a type that will need damage
6765
8fcd2508c49f bug #336
nemo
parents: 6700
diff changeset
   128
                        tdX:= Gear^.X-fX;
8fcd2508c49f bug #336
nemo
parents: 6700
diff changeset
   129
                        tdY:= Gear^.Y-fY;
7721
2b1ad418ba39 - Fix warnings and hints
unc0rr
parents: 7719
diff changeset
   130
                        if LongInt(tdX.Round + tdY.Round + 2) < dmgBase then
7272
71df899c4163 Second part of the change. Make collision check use the new mask bit.
nemo
parents: 7190
diff changeset
   131
                            dmg:= dmgBase - hwRound(Distance(tdX, tdY));
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   132
                        if dmg > 1 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   133
                            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   134
                            dmg:= ModifyDamage(min(dmg div 2, Radius), Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   135
                            //AddFileLog('Damage: ' + inttostr(dmg));
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   136
                            if (Mask and EXPLNoDamage) = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   137
                                begin
9685
7d925e82e572 Tweak trophyrace to work better w/ skip (probably, needs testing), drop Invulnerable in favour of effects - heInvulnerable is already in effects,
nemo
parents: 9561
diff changeset
   138
                                if Gear^.Hedgehog^.Effects[heInvulnerable] = 0 then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   139
                                    ApplyDamage(Gear, AttackingHog, dmg, dsExplosion)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   140
                                else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   141
                                    Gear^.State:= Gear^.State or gstWinner;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   142
                                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   143
                            if ((Mask and EXPLDoNotTouchAny) = 0) and (((Mask and EXPLDoNotTouchHH) = 0) or (Gear^.Kind <> gtHedgehog)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   144
                                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   145
                                DeleteCI(Gear);
6765
8fcd2508c49f bug #336
nemo
parents: 6700
diff changeset
   146
                                Gear^.dX:= Gear^.dX + SignAs(_0_005 * dmg + cHHKick, tdX)/(Gear^.Density/_3);
8fcd2508c49f bug #336
nemo
parents: 6700
diff changeset
   147
                                Gear^.dY:= Gear^.dY + SignAs(_0_005 * dmg + cHHKick, tdY)/(Gear^.Density/_3);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   148
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   149
                                Gear^.State:= (Gear^.State or gstMoving) and (not gstLoser);
7767
d1ea9b3f543e damn nots
nemo
parents: 7754
diff changeset
   150
                                if Gear^.Kind = gtKnife then Gear^.State:= Gear^.State and (not gstCollision);
9685
7d925e82e572 Tweak trophyrace to work better w/ skip (probably, needs testing), drop Invulnerable in favour of effects - heInvulnerable is already in effects,
nemo
parents: 9561
diff changeset
   151
                                if Gear^.Hedgehog^.Effects[heInvulnerable] = 0 then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   152
                                    Gear^.State:= (Gear^.State or gstMoving) and (not gstWinner);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   153
                                Gear^.Active:= true;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   154
                                if Gear^.Kind <> gtFlame then FollowGear:= Gear
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   155
                                end;
9685
7d925e82e572 Tweak trophyrace to work better w/ skip (probably, needs testing), drop Invulnerable in favour of effects - heInvulnerable is already in effects,
nemo
parents: 9561
diff changeset
   156
                            if ((Mask and EXPLPoisoned) <> 0) and (Gear^.Kind = gtHedgehog) and (Gear^.Hedgehog^.Effects[heInvulnerable] = 0) and (Gear^.State and gstHHDeath = 0) then
7010
10a0a31804f3 Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents: 6990
diff changeset
   157
                                Gear^.Hedgehog^.Effects[hePoisoned] := 1;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   158
                            end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   159
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   160
                        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   161
                gtGrave: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   162
// Run the calcs only once we know we have a type that will need damage
6765
8fcd2508c49f bug #336
nemo
parents: 6700
diff changeset
   163
                        tdX:= Gear^.X-fX;
8fcd2508c49f bug #336
nemo
parents: 6700
diff changeset
   164
                        tdY:= Gear^.Y-fY;
7721
2b1ad418ba39 - Fix warnings and hints
unc0rr
parents: 7719
diff changeset
   165
                        if LongInt(tdX.Round + tdY.Round + 2) < dmgBase then
6765
8fcd2508c49f bug #336
nemo
parents: 6700
diff changeset
   166
                            dmg:= dmgBase - hwRound(Distance(tdX, tdY));
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   167
                        if dmg > 1 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   168
                            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   169
                            dmg:= ModifyDamage(min(dmg div 2, Radius), Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   170
                            Gear^.dY:= - _0_004 * dmg;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   171
                            Gear^.Active:= true
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   172
                            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   173
                        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   174
            end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   175
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   176
    Gear:= Gear^.NextGear
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   177
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   178
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   179
if (Mask and EXPLDontDraw) = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   180
    if (GameFlags and gfSolidLand) = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   181
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   182
        cnt:= DrawExplosion(X, Y, Radius) div 1608; // approx 2 16x16 circles to erase per chunk
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   183
        if (cnt > 0) and (SpritesData[sprChunk].Texture <> nil) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   184
            for i:= 0 to cnt do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   185
                AddVisualGear(X, Y, vgtChunk)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   186
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   187
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   188
uAIMisc.AwareOfExplosion(0, 0, 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   189
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   190
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   191
function ModifyDamage(dmg: Longword; Gear: PGear): Longword;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   192
var i: hwFloat;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   193
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   194
(* Invulnerability cannot be placed in here due to still needing kicks
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   195
   Not without a new damage machine.
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   196
   King check should be in here instead of ApplyDamage since Tiy wants them kicked less
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   197
*)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   198
i:= _1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   199
if (CurrentHedgehog <> nil) and CurrentHedgehog^.King then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   200
    i:= _1_5;
8632
b5ed76d2a1f9 Make hogs thaw only on enemy turns, make timebox counter decrement only on your turn, adjust knock for frozen hogs, increase damage on frozen hogs, make freezer fuel only reduce when not adjusting angle.
nemo
parents: 8560
diff changeset
   201
if (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.King or (Gear^.Hedgehog^.Effects[heFrozen] > 0)) then
9148
78c699d8fdfd move 0.01 to the end to avoid increase damage fail on small values like fire. thanks to hedgewars wiki for noting this for fire damage.
nemo
parents: 9080
diff changeset
   202
    ModifyDamage:= hwRound(cDamageModifier * dmg * i * cDamagePercent * _0_5 * _0_01)
9149
6790f1938cd9 update changelog
sheepluva
parents: 9148
diff changeset
   203
else
9148
78c699d8fdfd move 0.01 to the end to avoid increase damage fail on small values like fire. thanks to hedgewars wiki for noting this for fire damage.
nemo
parents: 9080
diff changeset
   204
    ModifyDamage:= hwRound(cDamageModifier * dmg * i * cDamagePercent * _0_01)
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   205
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   206
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   207
procedure ApplyDamage(Gear: PGear; AttackerHog: PHedgehog; Damage: Longword; Source: TDamageSource);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   208
var s: shortstring;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   209
    vampDmg, tmpDmg, i: Longword;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   210
    vg: PVisualGear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   211
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   212
    if Damage = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   213
        exit; // nothing to apply
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   214
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   215
    if (Gear^.Kind = gtHedgehog) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   216
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   217
        Gear^.LastDamage := AttackerHog;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   218
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   219
        Gear^.Hedgehog^.Team^.Clan^.Flawless:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   220
        HHHurt(Gear^.Hedgehog, Source);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   221
        AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), Damage, Gear^.Hedgehog^.Team^.Clan^.Color);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   222
        tmpDmg:= min(Damage, max(0,Gear^.Health-Gear^.Damage));
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   223
        if (Gear <> CurrentHedgehog^.Gear) and (CurrentHedgehog^.Gear <> nil) and (tmpDmg >= 1) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   224
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   225
            if cVampiric then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   226
                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   227
                vampDmg:= hwRound(int2hwFloat(tmpDmg)*_0_8);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   228
                if vampDmg >= 1 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   229
                    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   230
                    // was considering pulsing on attack, Tiy thinks it should be permanent while in play
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   231
                    //CurrentHedgehog^.Gear^.State:= CurrentHedgehog^.Gear^.State or gstVampiric;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   232
                    inc(CurrentHedgehog^.Gear^.Health,vampDmg);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   233
                    str(vampDmg, s);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   234
                    s:= '+' + s;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   235
                    AddCaption(s, CurrentHedgehog^.Team^.Clan^.Color, capgrpAmmoinfo);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   236
                    RenderHealth(CurrentHedgehog^);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   237
                    RecountTeamHealth(CurrentHedgehog^.Team);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   238
                    i:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   239
                    while i < vampDmg do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   240
                        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   241
                        vg:= AddVisualGear(hwRound(CurrentHedgehog^.Gear^.X), hwRound(CurrentHedgehog^.Gear^.Y), vgtStraightShot);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   242
                        if vg <> nil then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   243
                            with vg^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   244
                                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   245
                                Tint:= $FF0000FF;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   246
                                State:= ord(sprHealth)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   247
                                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   248
                        inc(i, 5);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   249
                        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   250
                    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   251
                end;
9685
7d925e82e572 Tweak trophyrace to work better w/ skip (probably, needs testing), drop Invulnerable in favour of effects - heInvulnerable is already in effects,
nemo
parents: 9561
diff changeset
   252
        if (GameFlags and gfKarma <> 0) and (GameFlags and gfInvulnerable = 0) and 
7d925e82e572 Tweak trophyrace to work better w/ skip (probably, needs testing), drop Invulnerable in favour of effects - heInvulnerable is already in effects,
nemo
parents: 9561
diff changeset
   253
           (CurrentHedgehog^.Effects[heInvulnerable] = 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   254
            begin // this cannot just use Damage or it interrupts shotgun and gets you called stupid
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   255
            inc(CurrentHedgehog^.Gear^.Karma, tmpDmg);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   256
            CurrentHedgehog^.Gear^.LastDamage := CurrentHedgehog;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   257
            spawnHealthTagForHH(CurrentHedgehog^.Gear, tmpDmg);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   258
            end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   259
        uStats.HedgehogDamaged(Gear, AttackerHog, Damage, false);    
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   260
        end;
8199
886ed135665b Fix crashes and wtf behaviour introduced in r0b8beacff8a5
unc0rr
parents: 8161
diff changeset
   261
    end else
8161
0b8beacff8a5 GCI2012: Remove Structure Weapon Code
deepdog
parents: 8007
diff changeset
   262
    //else if Gear^.Kind <> gtStructure then // not gtHedgehog nor gtStructure
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   263
        Gear^.Hedgehog:= AttackerHog;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   264
    inc(Gear^.Damage, Damage);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   265
    
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   266
    ScriptCall('onGearDamage', Gear^.UID, Damage);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   267
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   268
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   269
procedure spawnHealthTagForHH(HHGear: PGear; dmg: Longword);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   270
var tag: PVisualGear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   271
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   272
tag:= AddVisualGear(hwRound(HHGear^.X), hwRound(HHGear^.Y), vgtHealthTag, dmg);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   273
if (tag <> nil) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   274
    tag^.Hedgehog:= HHGear^.Hedgehog; // the tag needs the tag to determine the text color
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   275
AllInactive:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   276
HHGear^.Active:= true;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   277
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   278
    
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   279
procedure HHHurt(Hedgehog: PHedgehog; Source: TDamageSource);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   280
begin
9071
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   281
if Hedgehog^.Effects[heFrozen] <> 0 then exit;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   282
if (Source = dsFall) or (Source = dsExplosion) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   283
    case random(3) of
7053
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7010
diff changeset
   284
        0: PlaySoundV(sndOoff1, Hedgehog^.Team^.voicepack);
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7010
diff changeset
   285
        1: PlaySoundV(sndOoff2, Hedgehog^.Team^.voicepack);
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7010
diff changeset
   286
        2: PlaySoundV(sndOoff3, Hedgehog^.Team^.voicepack);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   287
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   288
else if (Source = dsPoison) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   289
    case random(2) of
7053
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7010
diff changeset
   290
        0: PlaySoundV(sndPoisonCough, Hedgehog^.Team^.voicepack);
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7010
diff changeset
   291
        1: PlaySoundV(sndPoisonMoan, Hedgehog^.Team^.voicepack);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   292
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   293
else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   294
    case random(4) of
7053
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7010
diff changeset
   295
        0: PlaySoundV(sndOw1, Hedgehog^.Team^.voicepack);
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7010
diff changeset
   296
        1: PlaySoundV(sndOw2, Hedgehog^.Team^.voicepack);
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7010
diff changeset
   297
        2: PlaySoundV(sndOw3, Hedgehog^.Team^.voicepack);
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7010
diff changeset
   298
        3: PlaySoundV(sndOw4, Hedgehog^.Team^.voicepack);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   299
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   300
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   301
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   302
procedure CheckHHDamage(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   303
var 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   304
    dmg: Longword;
8003
7d8bce524daf LongInt Land width/height, mouse coords
nemo
parents: 7825
diff changeset
   305
    i: LongWord;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   306
    particle: PVisualGear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   307
begin
9071
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   308
if _0_4 < Gear^.dY then
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   309
    begin
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   310
    dmg := ModifyDamage(1 + hwRound((Gear^.dY - _0_4) * 70), Gear);
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   311
    if Gear^.Hedgehog^.Effects[heFrozen] = 0 then
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   312
         PlaySound(sndBump)
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   313
    else PlaySound(sndFrozenHogImpact);
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   314
    if dmg < 1 then
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   315
        exit;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   316
9071
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   317
    for i:= min(12, (3 + dmg div 10)) downto 0 do
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   318
        begin
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   319
        particle := AddVisualGear(hwRound(Gear^.X) - 5 + Random(10), hwRound(Gear^.Y) + 12, vgtDust);
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   320
        if particle <> nil then
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   321
            particle^.dX := particle^.dX + (Gear^.dX.QWordValue / 21474836480);
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   322
        end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   323
9685
7d925e82e572 Tweak trophyrace to work better w/ skip (probably, needs testing), drop Invulnerable in favour of effects - heInvulnerable is already in effects,
nemo
parents: 9561
diff changeset
   324
    if ((Gear^.Hedgehog^.Effects[heInvulnerable] <> 0)) then
9071
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   325
        exit;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   326
9071
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   327
    //if _0_6 < Gear^.dY then
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   328
    //    PlaySound(sndOw4, Gear^.Hedgehog^.Team^.voicepack)
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   329
    //else
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   330
    //    PlaySound(sndOw1, Gear^.Hedgehog^.Team^.voicepack);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   331
9071
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   332
    if Gear^.LastDamage <> nil then
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   333
        ApplyDamage(Gear, Gear^.LastDamage, dmg, dsFall)
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   334
    else
df85fad2c7f7 frozen hog impact. koda says he'll add the beam
nemo
parents: 8992
diff changeset
   335
        ApplyDamage(Gear, CurrentHedgehog, dmg, dsFall);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   336
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   337
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   338
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   339
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   340
procedure CalcRotationDirAngle(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   341
var 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   342
    dAngle: real;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   343
begin
7825
1b96361a7ef4 issue #445 spin math
nemo
parents: 7767
diff changeset
   344
    // Frac/Round to be kind to JS as of 2012-08-27 where there is yet no int64/uint64
1b96361a7ef4 issue #445 spin math
nemo
parents: 7767
diff changeset
   345
    //dAngle := (Gear^.dX.QWordValue + Gear^.dY.QWordValue) / $80000000;
1b96361a7ef4 issue #445 spin math
nemo
parents: 7767
diff changeset
   346
    dAngle := (Gear^.dX.Round + Gear^.dY.Round) / 2 + (Gear^.dX.Frac/$100000000+Gear^.dY.Frac/$100000000);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   347
    if not Gear^.dX.isNegative then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   348
        Gear^.DirAngle := Gear^.DirAngle + dAngle
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   349
    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   350
        Gear^.DirAngle := Gear^.DirAngle - dAngle;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   351
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   352
    if Gear^.DirAngle < 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   353
        Gear^.DirAngle := Gear^.DirAngle + 360
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   354
    else if 360 < Gear^.DirAngle then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   355
        Gear^.DirAngle := Gear^.DirAngle - 360
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   356
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   357
8947
e906ebd59612 CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents: 8763
diff changeset
   358
function CheckGearDrowning(var Gear: PGear): boolean;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   359
var 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   360
    skipSpeed, skipAngle, skipDecay: hwFloat;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   361
    i, maxDrops, X, Y: LongInt;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   362
    vdX, vdY: real;
6803
0e70f3ea3bf8 bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents: 6769
diff changeset
   363
    particle, splash: PVisualGear;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   364
    isSubmersible: boolean;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   365
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   366
    // probably needs tweaking. might need to be in a case statement based upon gear type
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   367
    Y:= hwRound(Gear^.Y);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   368
    if cWaterLine < Y + Gear^.Radius then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   369
        begin
7389
15c3fb4882df Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents: 7372
diff changeset
   370
        if Gear^.State and gstInvisible <> 0 then
15c3fb4882df Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents: 7372
diff changeset
   371
            begin
7406
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7389
diff changeset
   372
            if Gear^.Kind = gtGenericFaller then
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7389
diff changeset
   373
                begin
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7389
diff changeset
   374
                Gear^.X:= int2hwFloat(GetRandom(rightX-leftX)+leftX);
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7389
diff changeset
   375
                Gear^.Y:= int2hwFloat(GetRandom(LAND_HEIGHT-topY)+topY);
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7389
diff changeset
   376
                Gear^.dX:= _90-(GetRandomf*_360);
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7389
diff changeset
   377
                Gear^.dY:= _90-(GetRandomf*_360)
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7389
diff changeset
   378
                end
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7389
diff changeset
   379
            else DeleteGear(Gear);
7389
15c3fb4882df Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents: 7372
diff changeset
   380
            exit
15c3fb4882df Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents: 7372
diff changeset
   381
            end;
8992
5b0be812dcdb Rename submersible state, increase getaway time for attack underwater, slow down gear dx/dy underwater to simulate water resistance
nemo
parents: 8991
diff changeset
   382
        isSubmersible:= ((Gear = CurrentHedgehog^.Gear) and (CurAmmoGear <> nil) and (CurAmmoGear^.State and gstSubmersible <> 0)) or (Gear^.State and gstSubmersible <> 0);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   383
        skipSpeed := _0_25;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   384
        skipAngle := _1_9;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   385
        skipDecay := _0_87;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   386
        X:= hwRound(Gear^.X);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   387
        vdX:= hwFloat2Float(Gear^.dX);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   388
        vdY:= hwFloat2Float(Gear^.dY);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   389
        // this could perhaps be a tiny bit higher.
8990
e64a1a851b69 more drowning fixes
nemo
parents: 8989
diff changeset
   390
        if  (cWaterLine + 64 + Gear^.Radius > Y) and (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) > skipSpeed) 
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   391
        and (hwAbs(Gear^.dX) > skipAngle * hwAbs(Gear^.dY)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   392
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   393
            Gear^.dY.isNegative := true;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   394
            Gear^.dY := Gear^.dY * skipDecay;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   395
            Gear^.dX := Gear^.dX * skipDecay;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   396
            CheckGearDrowning := false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   397
            PlaySound(sndSkip)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   398
            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   399
        else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   400
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   401
            if not isSubmersible then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   402
                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   403
                CheckGearDrowning := true;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   404
                Gear^.State := gstDrowning;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   405
                Gear^.RenderTimer := false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   406
                if (Gear^.Kind <> gtSniperRifleShot) and (Gear^.Kind <> gtShotgunShot)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   407
                and (Gear^.Kind <> gtDEagleShot) and (Gear^.Kind <> gtSineGunShot) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   408
                    if Gear^.Kind = gtHedgehog then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   409
                        begin
7010
10a0a31804f3 Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents: 6990
diff changeset
   410
                        if Gear^.Hedgehog^.Effects[heResurrectable] <> 0 then
8947
e906ebd59612 CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents: 8763
diff changeset
   411
                            begin
e906ebd59612 CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents: 8763
diff changeset
   412
                            // Gear could become nil after this, just exit to skip splashes
e906ebd59612 CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents: 8763
diff changeset
   413
                            ResurrectHedgehog(Gear);
e906ebd59612 CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents: 8763
diff changeset
   414
                            exit
e906ebd59612 CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents: 8763
diff changeset
   415
                            end
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   416
                        else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   417
                            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   418
                            Gear^.doStep := @doStepDrowningGear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   419
                            Gear^.State := Gear^.State and (not gstHHDriven);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   420
                            AddCaption(Format(GetEventString(eidDrowned), Gear^.Hedgehog^.Name), cWhiteColor, capgrpMessage);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   421
                            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   422
                        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   423
                    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   424
                        Gear^.doStep := @doStepDrowningGear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   425
                        if Gear^.Kind = gtFlake then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   426
                            exit // skip splashes 
8990
e64a1a851b69 more drowning fixes
nemo
parents: 8989
diff changeset
   427
                end
8991
82e3a6e5d51b Actually, let's use *4 since could be fired from lower down
nemo
parents: 8990
diff changeset
   428
            else if (Y > cWaterLine + cVisibleWater*4) and 
8992
5b0be812dcdb Rename submersible state, increase getaway time for attack underwater, slow down gear dx/dy underwater to simulate water resistance
nemo
parents: 8991
diff changeset
   429
                    ((Gear <> CurrentHedgehog^.Gear) or (CurAmmoGear = nil) or (CurAmmoGear^.State and gstSubmersible = 0)) then
8990
e64a1a851b69 more drowning fixes
nemo
parents: 8989
diff changeset
   430
                Gear^.doStep:= @doStepDrowningGear;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   431
            if ((not isSubmersible) and (Y < cWaterLine + 64 + Gear^.Radius))
8989
ae97ab6dcc70 check for gear being current ammo
nemo
parents: 8987
diff changeset
   432
            or (isSubmersible and (Y < cWaterLine + 2 + Gear^.Radius) and (Gear = CurAmmoGear) and ((CurAmmoGear^.Pos = 0)
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   433
            and (CurAmmoGear^.dY < _0_01))) then
6804
06bedc419d04 Try different splash sounds too
nemo
parents: 6803
diff changeset
   434
                if Gear^.Density * Gear^.dY > _1 then
06bedc419d04 Try different splash sounds too
nemo
parents: 6803
diff changeset
   435
                    PlaySound(sndSplash)
06bedc419d04 Try different splash sounds too
nemo
parents: 6803
diff changeset
   436
                else if Gear^.Density * Gear^.dY > _0_5 then 
06bedc419d04 Try different splash sounds too
nemo
parents: 6803
diff changeset
   437
                    PlaySound(sndSkip)
06bedc419d04 Try different splash sounds too
nemo
parents: 6803
diff changeset
   438
                else
06bedc419d04 Try different splash sounds too
nemo
parents: 6803
diff changeset
   439
                    PlaySound(sndDroplet2);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   440
            end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   441
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   442
        if ((cReducedQuality and rqPlainSplash) = 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   443
        and (((not isSubmersible) and (Y < cWaterLine + 64 + Gear^.Radius))
8989
ae97ab6dcc70 check for gear being current ammo
nemo
parents: 8987
diff changeset
   444
        or (isSubmersible and (Y < cWaterLine + 2 + Gear^.Radius) and (Gear = CurAmmoGear) and ((CurAmmoGear^.Pos = 0)
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   445
        and (CurAmmoGear^.dY < _0_01)))) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   446
            begin
6803
0e70f3ea3bf8 bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents: 6769
diff changeset
   447
            splash:= AddVisualGear(X, cWaterLine, vgtSplash);
0e70f3ea3bf8 bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents: 6769
diff changeset
   448
            if splash <> nil then 
7372
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   449
                with splash^ do
6803
0e70f3ea3bf8 bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents: 6769
diff changeset
   450
                begin
7372
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   451
                Scale:= hwFloat2Float(Gear^.Density / _3 * Gear^.dY);
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   452
                if Scale > 1 then Scale:= power(Scale,0.3333)
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   453
                else Scale:= Scale + ((1-Scale) / 2);
7420
77567b03cc28 Fix bee crasher, tweak splash values
nemo
parents: 7406
diff changeset
   454
                if Scale > 1 then Timer:= round(min(Scale*0.0005/cGravityf,4))
7372
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   455
                else Timer:= 1;
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   456
                // Low Gravity
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   457
                FrameTicks:= FrameTicks*Timer;
6803
0e70f3ea3bf8 bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents: 6769
diff changeset
   458
                end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   459
6803
0e70f3ea3bf8 bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents: 6769
diff changeset
   460
            maxDrops := (hwRound(Gear^.Density) * 3) div 2 + round(vdX * hwRound(Gear^.Density) * 6) + round(vdY * hwRound(Gear^.Density) * 6);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   461
            for i:= max(maxDrops div 3, min(32, Random(maxDrops))) downto 0 do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   462
                begin
7372
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   463
                particle := AddVisualGear(X - 3 + Random(7), cWaterLine, vgtDroplet);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   464
                if particle <> nil then
7372
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   465
                    with particle^ do
6803
0e70f3ea3bf8 bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents: 6769
diff changeset
   466
                        begin
7372
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   467
                        dX := dX - vdX / 10;
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   468
                        dY := dY - vdY / 5;
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   469
                        if splash <> nil then
6803
0e70f3ea3bf8 bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents: 6769
diff changeset
   470
                            begin
7372
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   471
                            if splash^.Scale > 1 then 
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   472
                                begin
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   473
                                dX:= dX * power(splash^.Scale,0.3333); // tone down the droplet height further
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   474
                                dY:= dY * power(splash^.Scale, 0.3333)
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   475
                                end
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   476
                            else 
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   477
                                begin
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   478
                                dX:= dX * splash^.Scale;
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   479
                                dY:= dY * splash^.Scale
fcc002658832 Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents: 7357
diff changeset
   480
                                end
6803
0e70f3ea3bf8 bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents: 6769
diff changeset
   481
                            end
0e70f3ea3bf8 bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents: 6769
diff changeset
   482
                        end
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   483
                end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   484
            end;
8989
ae97ab6dcc70 check for gear being current ammo
nemo
parents: 8987
diff changeset
   485
        if isSubmersible and (Gear = CurAmmoGear) and (CurAmmoGear^.Pos = 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   486
            CurAmmoGear^.Pos := 1000
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   487
        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   488
    else
9473
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
   489
        begin
9479
167dea42d7d7 move border back a bit from left/right bounds, bee tweak
nemo
parents: 9477
diff changeset
   490
        if not (Gear^.Kind in [gtJetpack, gtBee]) then Gear^.State:= Gear^.State and not gstSubmersible;  // making it temporary for most gears is more attractive I think
9473
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
   491
        CheckGearDrowning := false
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
   492
        end
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   493
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   494
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   495
8947
e906ebd59612 CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents: 8763
diff changeset
   496
procedure ResurrectHedgehog(var gear: PGear);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   497
var tempTeam : PTeam;
7092
c9ca770fd7fc Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents: 7066
diff changeset
   498
    sparkles: PVisualGear;
c9ca770fd7fc Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents: 7066
diff changeset
   499
    gX, gY: LongInt;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   500
begin
7357
06454899d0d2 Score AI resurrection as a kill. These values will not be the same as the in-game scoring, since in-game scoring doesn't count friendlies.
nemo
parents: 7272
diff changeset
   501
    if (Gear^.LastDamage <> nil) then
06454899d0d2 Score AI resurrection as a kill. These values will not be the same as the in-game scoring, since in-game scoring doesn't count friendlies.
nemo
parents: 7272
diff changeset
   502
        uStats.HedgehogDamaged(Gear, Gear^.LastDamage, 0, true)
06454899d0d2 Score AI resurrection as a kill. These values will not be the same as the in-game scoring, since in-game scoring doesn't count friendlies.
nemo
parents: 7272
diff changeset
   503
    else
06454899d0d2 Score AI resurrection as a kill. These values will not be the same as the in-game scoring, since in-game scoring doesn't count friendlies.
nemo
parents: 7272
diff changeset
   504
        uStats.HedgehogDamaged(Gear, CurrentHedgehog, 0, true);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   505
    AttackBar:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   506
    gear^.dX := _0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   507
    gear^.dY := _0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   508
    gear^.Damage := 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   509
    gear^.Health := gear^.Hedgehog^.InitialHealth;
7010
10a0a31804f3 Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents: 6990
diff changeset
   510
    gear^.Hedgehog^.Effects[hePoisoned] := 0;
7176
fb4b0c6dfdbd Make watching AI v AI on ai survival a bit more entertaining
nemo
parents: 7168
diff changeset
   511
    if (CurrentHedgehog^.Effects[heResurrectable] = 0) or ((CurrentHedgehog^.Effects[heResurrectable] <> 0)
fb4b0c6dfdbd Make watching AI v AI on ai survival a bit more entertaining
nemo
parents: 7168
diff changeset
   512
          and (Gear^.Hedgehog^.Team^.Clan <> CurrentHedgehog^.Team^.Clan)) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   513
        with CurrentHedgehog^ do 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   514
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   515
            inc(Team^.stats.AIKills);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   516
            FreeTexture(Team^.AIKillsTex);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   517
            Team^.AIKillsTex := RenderStringTex(inttostr(Team^.stats.AIKills), Team^.Clan^.Color, fnt16);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   518
            end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   519
    tempTeam := gear^.Hedgehog^.Team;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   520
    DeleteCI(gear);
7092
c9ca770fd7fc Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents: 7066
diff changeset
   521
    gX := hwRound(gear^.X);
c9ca770fd7fc Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents: 7066
diff changeset
   522
    gY := hwRound(gear^.Y);
c9ca770fd7fc Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents: 7066
diff changeset
   523
    // might need more sparkles for a column
c9ca770fd7fc Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents: 7066
diff changeset
   524
    sparkles:= AddVisualGear(gX, gY, vgtDust, 1);
c9ca770fd7fc Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents: 7066
diff changeset
   525
    if sparkles <> nil then
c9ca770fd7fc Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents: 7066
diff changeset
   526
        begin
c9ca770fd7fc Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents: 7066
diff changeset
   527
        sparkles^.Tint:= tempTeam^.Clan^.Color shl 8 or $FF;
c9ca770fd7fc Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents: 7066
diff changeset
   528
        //sparkles^.Angle:= random(360);
c9ca770fd7fc Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents: 7066
diff changeset
   529
        end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   530
    FindPlace(gear, false, 0, LAND_WIDTH, true); 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   531
    if gear <> nil then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   532
        begin
7092
c9ca770fd7fc Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents: 7066
diff changeset
   533
        AddVisualGear(hwRound(gear^.X), hwRound(gear^.Y), vgtExplosion);
7168
8defaabce92e warp sound when AI survival hog respawns. attempt at a bit of a crate spawn animation (moar sparkles and a quick fadein)
nemo
parents: 7092
diff changeset
   534
        PlaySound(sndWarp);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   535
        RenderHealth(gear^.Hedgehog^);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   536
        ScriptCall('onGearResurrect', gear^.uid);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   537
        gear^.State := gstWait;
8947
e906ebd59612 CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents: 8763
diff changeset
   538
        end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   539
    RecountTeamHealth(tempTeam);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   540
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   541
7190
aa8d68817c32 Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents: 7176
diff changeset
   542
function CountNonZeroz(x, y, r, c: LongInt; mask: LongWord): LongInt;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   543
var i: LongInt;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   544
    count: LongInt = 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   545
begin
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   546
    if (y and LAND_HEIGHT_MASK) = 0 then
7509
76e3a3fc17cd revert 3188794b9d87. does not do what I'd like.
nemo
parents: 7492
diff changeset
   547
        for i:= max(x - r, 0) to min(x + r, LAND_WIDTH - 4) do
7190
aa8d68817c32 Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents: 7176
diff changeset
   548
            if Land[y, i] and mask <> 0 then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   549
            begin
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   550
                inc(count);
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   551
                if count = c then
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   552
                begin
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   553
                    CountNonZeroz:= count;
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   554
                    exit
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   555
                end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   556
            end;
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   557
    CountNonZeroz:= count;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   558
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   559
6888
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   560
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   561
function NoGearsToAvoid(mX, mY: LongInt; rX, rY: LongInt): boolean;
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   562
var t: PGear;
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   563
begin
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   564
NoGearsToAvoid:= false;
6888
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   565
t:= GearsList;
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   566
rX:= sqr(rX);
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   567
rY:= sqr(rY);
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   568
while t <> nil do
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   569
    begin
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   570
    if t^.Kind <= gtExplosives then
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   571
        if not (hwSqr(int2hwFloat(mX) - t^.X) / rX + hwSqr(int2hwFloat(mY) - t^.Y) / rY > _1) then
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   572
            exit;
6888
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   573
    t:= t^.NextGear
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   574
    end;
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   575
NoGearsToAvoid:= true
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   576
end;
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   577
6986
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6888
diff changeset
   578
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); inline;
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6888
diff changeset
   579
begin
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6888
diff changeset
   580
    FindPlace(Gear, withFall, Left, Right, false);
409dd3851309 add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents: 6888
diff changeset
   581
end;
6888
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   582
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   583
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt; skipProximity: boolean);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   584
var x: LongInt;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   585
    y, sy: LongInt;
8007
b07ce9dfc6bb Make FindPlace more flexible on large maps.
nemo
parents: 8003
diff changeset
   586
    ar: array[0..1023] of TPoint;
b07ce9dfc6bb Make FindPlace more flexible on large maps.
nemo
parents: 8003
diff changeset
   587
    ar2: array[0..2047] of TPoint;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   588
    cnt, cnt2: Longword;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   589
    delta: LongInt;
7190
aa8d68817c32 Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents: 7176
diff changeset
   590
    ignoreNearObjects, ignoreOverlap, tryAgain: boolean;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   591
begin
7190
aa8d68817c32 Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents: 7176
diff changeset
   592
ignoreNearObjects:= false; // try not skipping proximity at first
aa8d68817c32 Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents: 7176
diff changeset
   593
ignoreOverlap:= false; // this not only skips proximity, but allows overlapping objects (barrels, mines, hogs, crates).  Saving it for a 3rd pass.  With this active, winning AI Survival goes back to virtual impossibility
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   594
tryAgain:= true;
9477
0463f747e839 Make a few more gears honour world edge checks
nemo
parents: 9473
diff changeset
   595
if WorldEdge <> weNone then 
0463f747e839 Make a few more gears honour world edge checks
nemo
parents: 9473
diff changeset
   596
    begin
0463f747e839 Make a few more gears honour world edge checks
nemo
parents: 9473
diff changeset
   597
    Left:= max(Left,leftX+Gear^.Radius);
0463f747e839 Make a few more gears honour world edge checks
nemo
parents: 9473
diff changeset
   598
    Right:= min(Right,rightX-Gear^.Radius)
0463f747e839 Make a few more gears honour world edge checks
nemo
parents: 9473
diff changeset
   599
    end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   600
while tryAgain do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   601
    begin
8007
b07ce9dfc6bb Make FindPlace more flexible on large maps.
nemo
parents: 8003
diff changeset
   602
    delta:= LAND_WIDTH div 16;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   603
    cnt2:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   604
    repeat
8007
b07ce9dfc6bb Make FindPlace more flexible on large maps.
nemo
parents: 8003
diff changeset
   605
        x:= Left + max(LAND_WIDTH div 2048, LongInt(GetRandom(Delta)));
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   606
        repeat
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   607
            inc(x, Delta);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   608
            cnt:= 0;
7603
e9c3c67b5dfd reducing this value is sufficient to ensure crates drop just below top border or a girder
nemo
parents: 7599
diff changeset
   609
            y:= min(1024, topY) - 2 * Gear^.Radius;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   610
            while y < cWaterLine do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   611
                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   612
                repeat
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   613
                    inc(y, 2);
7190
aa8d68817c32 Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents: 7176
diff changeset
   614
                until (y >= cWaterLine) or
aa8d68817c32 Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents: 7176
diff changeset
   615
                        (not ignoreOverlap and (CountNonZeroz(x, y, Gear^.Radius - 1, 1, $FFFF) = 0)) or 
8751
4609823efc94 More flagging of Land values. Also use less than for tests of non-terrain, instead of "and $FF00 = 0". Saves a couple of ops, which actually matters a small amount in a few places.
nemo
parents: 8632
diff changeset
   616
                        (ignoreOverlap and (CountNonZeroz(x, y, Gear^.Radius - 1, 1, lfLandMask) = 0));
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   617
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   618
                sy:= y;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   619
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   620
                repeat
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   621
                    inc(y);
7190
aa8d68817c32 Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents: 7176
diff changeset
   622
                until (y >= cWaterLine) or
aa8d68817c32 Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents: 7176
diff changeset
   623
                        (not ignoreOverlap and (CountNonZeroz(x, y, Gear^.Radius - 1, 1, $FFFF) <> 0)) or 
8751
4609823efc94 More flagging of Land values. Also use less than for tests of non-terrain, instead of "and $FF00 = 0". Saves a couple of ops, which actually matters a small amount in a few places.
nemo
parents: 8632
diff changeset
   624
                        (ignoreOverlap and (CountNonZeroz(x, y, Gear^.Radius - 1, 1, lfLandMask) <> 0)); 
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   625
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   626
                if (y - sy > Gear^.Radius * 2)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   627
                    and (((Gear^.Kind = gtExplosives)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   628
                    and (y < cWaterLine)
7190
aa8d68817c32 Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents: 7176
diff changeset
   629
                    and (ignoreNearObjects or NoGearsToAvoid(x, y - Gear^.Radius, 60, 60))
aa8d68817c32 Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents: 7176
diff changeset
   630
                    and (CountNonZeroz(x, y+1, Gear^.Radius - 1, Gear^.Radius+1, $FFFF) > Gear^.Radius))
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   631
                or
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   632
                    ((Gear^.Kind <> gtExplosives)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   633
                    and (y < cWaterLine)
7190
aa8d68817c32 Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents: 7176
diff changeset
   634
                    and (ignoreNearObjects or NoGearsToAvoid(x, y - Gear^.Radius, 110, 110))
6888
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   635
                    )) then
32a54322d262 Get rid of TGearsType to simplify pas2c
unc0rr
parents: 6804
diff changeset
   636
                    begin
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   637
                    ar[cnt].X:= x;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   638
                    if withFall then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   639
                        ar[cnt].Y:= sy + Gear^.Radius
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   640
                    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   641
                        ar[cnt].Y:= y - Gear^.Radius;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   642
                    inc(cnt)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   643
                    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   644
7603
e9c3c67b5dfd reducing this value is sufficient to ensure crates drop just below top border or a girder
nemo
parents: 7599
diff changeset
   645
                inc(y, 10)
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   646
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   647
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   648
            if cnt > 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   649
                with ar[GetRandom(cnt)] do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   650
                    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   651
                    ar2[cnt2].x:= x;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   652
                    ar2[cnt2].y:= y;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   653
                    inc(cnt2)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   654
                    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   655
        until (x + Delta > Right);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   656
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   657
        dec(Delta, 60)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   658
    until (cnt2 > 0) or (Delta < 70);
7190
aa8d68817c32 Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents: 7176
diff changeset
   659
    // if either of these has not been tried, do another pass
aa8d68817c32 Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents: 7176
diff changeset
   660
    if (cnt2 = 0) and skipProximity and (not ignoreOverlap) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   661
        tryAgain:= true
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   662
    else tryAgain:= false;
7190
aa8d68817c32 Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents: 7176
diff changeset
   663
    if ignoreNearObjects then ignoreOverlap:= true;
aa8d68817c32 Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents: 7176
diff changeset
   664
    ignoreNearObjects:= true;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   665
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   666
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   667
if cnt2 > 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   668
    with ar2[GetRandom(cnt2)] do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   669
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   670
        Gear^.X:= int2hwFloat(x);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   671
        Gear^.Y:= int2hwFloat(y);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   672
        AddFileLog('Assigned Gear coordinates (' + inttostr(x) + ',' + inttostr(y) + ')');
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   673
        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   674
    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   675
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   676
    OutError('Can''t find place for Gear', false);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   677
    if Gear^.Kind = gtHedgehog then
7010
10a0a31804f3 Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents: 6990
diff changeset
   678
        Gear^.Hedgehog^.Effects[heResurrectable] := 0;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   679
    DeleteGear(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   680
    Gear:= nil
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   681
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   682
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   683
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   684
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   685
var t: PGear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   686
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   687
t:= GearsList;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   688
rX:= sqr(rX);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   689
rY:= sqr(rY);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   690
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   691
while t <> nil do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   692
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   693
    if (t <> Gear) and (t^.Kind = Kind) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   694
        if not((hwSqr(Gear^.X - t^.X) / rX + hwSqr(Gear^.Y - t^.Y) / rY) > _1) then
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   695
        begin
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   696
            CheckGearNear:= t;
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   697
            exit;
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6986
diff changeset
   698
        end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   699
    t:= t^.NextGear
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   700
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   701
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   702
CheckGearNear:= nil
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   703
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   704
7592
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7509
diff changeset
   705
procedure CheckCollision(Gear: PGear); inline;
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7509
diff changeset
   706
begin
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   707
    if (TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) <> 0)
7592
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7509
diff changeset
   708
    or (TestCollisionYwithGear(Gear, hwSign(Gear^.dY)) <> 0) then
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7509
diff changeset
   709
        Gear^.State := Gear^.State or gstCollision
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7509
diff changeset
   710
    else
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7509
diff changeset
   711
        Gear^.State := Gear^.State and (not gstCollision)
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7509
diff changeset
   712
end;
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7509
diff changeset
   713
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7509
diff changeset
   714
procedure CheckCollisionWithLand(Gear: PGear); inline;
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7509
diff changeset
   715
begin
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   716
    if (TestCollisionX(Gear, hwSign(Gear^.dX)) <> 0)
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   717
    or (TestCollisionY(Gear, hwSign(Gear^.dY)) <> 0) then
7592
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7509
diff changeset
   718
        Gear^.State := Gear^.State or gstCollision
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7509
diff changeset
   719
    else 
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7509
diff changeset
   720
        Gear^.State := Gear^.State and (not gstCollision)
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7509
diff changeset
   721
end;
cf67e58313ea Move rope code to separate unit
unc0rr
parents: 7509
diff changeset
   722
7719
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   723
function MakeHedgehogsStep(Gear: PGear) : boolean;
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   724
begin
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   725
    if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) <> 0 then if (TestCollisionYwithGear(Gear, -1) = 0) then
7719
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   726
        begin
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   727
        Gear^.Y:= Gear^.Y - _1;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   728
    if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) <> 0 then if (TestCollisionYwithGear(Gear, -1) = 0) then
7719
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   729
        begin
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   730
        Gear^.Y:= Gear^.Y - _1;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   731
    if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) <> 0 then if (TestCollisionYwithGear(Gear, -1) = 0) then
7719
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   732
        begin
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   733
        Gear^.Y:= Gear^.Y - _1;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   734
    if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) <> 0 then if (TestCollisionYwithGear(Gear, -1) = 0) then
7719
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   735
        begin
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   736
        Gear^.Y:= Gear^.Y - _1;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   737
    if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) <> 0 then if (TestCollisionYwithGear(Gear, -1) = 0) then
7719
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   738
        begin
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   739
        Gear^.Y:= Gear^.Y - _1;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   740
    if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) <> 0 then if (TestCollisionYwithGear(Gear, -1) = 0) then
7719
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   741
        begin
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   742
        Gear^.Y:= Gear^.Y - _1;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   743
        if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) <> 0 then
7719
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   744
            Gear^.Y:= Gear^.Y + _6
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   745
        end else Gear^.Y:= Gear^.Y + _5 else
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   746
        end else Gear^.Y:= Gear^.Y + _4 else
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   747
        end else Gear^.Y:= Gear^.Y + _3 else
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   748
        end else Gear^.Y:= Gear^.Y + _2 else
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   749
        end else Gear^.Y:= Gear^.Y + _1
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   750
        end;
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   751
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   752
    if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) = 0 then
7719
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   753
        begin
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   754
        Gear^.X:= Gear^.X + SignAs(_1, Gear^.dX);
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   755
        MakeHedgehogsStep:= true
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   756
        end else
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   757
        MakeHedgehogsStep:= false;
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   758
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   759
    if TestCollisionYwithGear(Gear, 1) = 0 then
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   760
        begin
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   761
        Gear^.Y:= Gear^.Y + _1;
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   762
    if TestCollisionYwithGear(Gear, 1) = 0 then
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   763
        begin
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   764
        Gear^.Y:= Gear^.Y + _1;
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   765
    if TestCollisionYwithGear(Gear, 1) = 0 then
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   766
        begin
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   767
        Gear^.Y:= Gear^.Y + _1;
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   768
    if TestCollisionYwithGear(Gear, 1) = 0 then
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   769
        begin
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   770
        Gear^.Y:= Gear^.Y + _1;
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   771
    if TestCollisionYwithGear(Gear, 1) = 0 then
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   772
        begin
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   773
        Gear^.Y:= Gear^.Y + _1;
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   774
    if TestCollisionYwithGear(Gear, 1) = 0 then
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   775
        begin
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   776
        Gear^.Y:= Gear^.Y + _1;
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   777
    if TestCollisionYwithGear(Gear, 1) = 0 then
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   778
        begin
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   779
        Gear^.Y:= Gear^.Y - _6;
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   780
        Gear^.dY:= _0;
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   781
        Gear^.State:= Gear^.State or gstMoving;
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   782
        exit
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   783
        end;
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   784
        end
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   785
        end
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   786
        end
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   787
        end
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   788
        end
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   789
        end;
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   790
end;
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7627
diff changeset
   791
9285
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   792
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   793
procedure ShotgunShot(Gear: PGear);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   794
var t: PGear;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   795
    dmg, r, dist: LongInt;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   796
    dx, dy: hwFloat;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   797
begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   798
Gear^.Radius:= cShotgunRadius;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   799
t:= GearsList;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   800
while t <> nil do
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   801
    begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   802
    case t^.Kind of
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   803
        gtHedgehog,
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   804
            gtMine,
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   805
            gtSMine,
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   806
            gtKnife,
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   807
            gtCase,
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   808
            gtTarget,
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   809
            gtExplosives: begin//,
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   810
//            gtStructure: begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   811
//addFileLog('ShotgunShot radius: ' + inttostr(Gear^.Radius) + ', t^.Radius = ' + inttostr(t^.Radius) + ', distance = ' + inttostr(dist) + ', dmg = ' + inttostr(dmg));
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   812
                    dmg:= 0;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   813
                    r:= Gear^.Radius + t^.Radius;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   814
                    dx:= Gear^.X-t^.X;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   815
                    dx.isNegative:= false;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   816
                    dy:= Gear^.Y-t^.Y;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   817
                    dy.isNegative:= false;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   818
                    if r-hwRound(dx+dy) > 0 then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   819
                        begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   820
                        dist:= hwRound(Distance(dx, dy));
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   821
                        dmg:= ModifyDamage(min(r - dist, 25), t);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   822
                        end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   823
                    if dmg > 0 then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   824
                        begin
9685
7d925e82e572 Tweak trophyrace to work better w/ skip (probably, needs testing), drop Invulnerable in favour of effects - heInvulnerable is already in effects,
nemo
parents: 9561
diff changeset
   825
                        if t^.Hedgehog^.Effects[heInvulnerable] = 0 then
9285
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   826
                            ApplyDamage(t, Gear^.Hedgehog, dmg, dsBullet)
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   827
                        else
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   828
                            Gear^.State:= Gear^.State or gstWinner;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   829
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   830
                        DeleteCI(t);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   831
                        t^.dX:= t^.dX + Gear^.dX * dmg * _0_01 + SignAs(cHHKick, Gear^.dX);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   832
                        t^.dY:= t^.dY + Gear^.dY * dmg * _0_01;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   833
                        t^.State:= t^.State or gstMoving;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   834
                        if t^.Kind = gtKnife then t^.State:= t^.State and (not gstCollision);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   835
                        t^.Active:= true;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   836
                        FollowGear:= t
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   837
                        end
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   838
                    end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   839
            gtGrave: begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   840
                    dmg:= 0;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   841
                    r:= Gear^.Radius + t^.Radius;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   842
                    dx:= Gear^.X-t^.X;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   843
                    dx.isNegative:= false;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   844
                    dy:= Gear^.Y-t^.Y;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   845
                    dy.isNegative:= false;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   846
                    if r-hwRound(dx+dy) > 0 then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   847
                        begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   848
                        dist:= hwRound(Distance(dx, dy));
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   849
                        dmg:= ModifyDamage(min(r - dist, 25), t);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   850
                        end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   851
                    if dmg > 0 then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   852
                        begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   853
                        t^.dY:= - _0_1;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   854
                        t^.Active:= true
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   855
                        end
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   856
                    end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   857
        end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   858
    t:= t^.NextGear
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   859
    end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   860
if (GameFlags and gfSolidLand) = 0 then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   861
    DrawExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), cShotgunRadius)
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   862
end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   863
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   864
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   865
var t: PGearArray;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   866
    Gear: PGear;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   867
    i, j, tmpDmg: LongInt;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   868
    VGear: PVisualGear;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   869
begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   870
t:= CheckGearsCollision(Ammo);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   871
// Just to avoid hogs on rope dodging fire.
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   872
if (CurAmmoGear <> nil) and ((CurAmmoGear^.Kind = gtRope) or (CurAmmoGear^.Kind = gtJetpack) or (CurAmmoGear^.Kind = gtBirdy))
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   873
and (CurrentHedgehog^.Gear <> nil) and (CurrentHedgehog^.Gear^.CollisionIndex = -1)
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   874
and (sqr(hwRound(Ammo^.X) - hwRound(CurrentHedgehog^.Gear^.X)) + sqr(hwRound(Ammo^.Y) - hwRound(CurrentHedgehog^.Gear^.Y)) <= sqr(cHHRadius + Ammo^.Radius)) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   875
    begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   876
    t^.ar[t^.Count]:= CurrentHedgehog^.Gear;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   877
    inc(t^.Count)
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   878
    end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   879
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   880
i:= t^.Count;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   881
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   882
if (Ammo^.Kind = gtFlame) and (i > 0) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   883
    Ammo^.Health:= 0;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   884
while i > 0 do
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   885
    begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   886
    dec(i);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   887
    Gear:= t^.ar[i];
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   888
    if ((Ammo^.Kind = gtFlame) or (Ammo^.Kind = gtBlowTorch)) and 
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   889
       (Gear^.Kind = gtHedgehog) and (Gear^.Hedgehog^.Effects[heFrozen] > 255) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   890
        Gear^.Hedgehog^.Effects[heFrozen]:= max(255,Gear^.Hedgehog^.Effects[heFrozen]-10000);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   891
    tmpDmg:= ModifyDamage(Damage, Gear);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   892
    if (Gear^.State and gstNoDamage) = 0 then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   893
        begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   894
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   895
        if (Ammo^.Kind = gtDEagleShot) or (Ammo^.Kind = gtSniperRifleShot) then 
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   896
            begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   897
            VGear := AddVisualGear(hwround(Ammo^.X), hwround(Ammo^.Y), vgtBulletHit);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   898
            if VGear <> nil then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   899
                VGear^.Angle := DxDy2Angle(-Ammo^.dX, Ammo^.dY);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   900
            end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   901
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   902
        if (Gear^.Kind = gtHedgehog) and (Ammo^.State and gsttmpFlag <> 0) and (Ammo^.Kind = gtShover) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   903
            Gear^.FlightTime:= 1;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   904
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   905
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   906
        case Gear^.Kind of
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   907
            gtHedgehog,
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   908
            gtMine,
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   909
            gtSMine,
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   910
            gtKnife,
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   911
            gtTarget,
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   912
            gtCase,
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   913
            gtExplosives: //,
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   914
            //gtStructure:
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   915
            begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   916
            if (Ammo^.Kind = gtDrill) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   917
                begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   918
                Ammo^.Timer:= 0;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   919
                exit;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   920
                end;
9685
7d925e82e572 Tweak trophyrace to work better w/ skip (probably, needs testing), drop Invulnerable in favour of effects - heInvulnerable is already in effects,
nemo
parents: 9561
diff changeset
   921
            if Gear^.Hedgehog^.Effects[heInvulnerable] = 0 then
9285
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   922
                begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   923
                if (Ammo^.Kind = gtKnife) and (tmpDmg > 0) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   924
                    for j:= 1 to max(1,min(3,tmpDmg div 5)) do
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   925
                        begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   926
                        VGear:= AddVisualGear(hwRound(Ammo^.X-((Ammo^.X-Gear^.X)/_2)), hwRound(Ammo^.Y-((Ammo^.Y-Gear^.Y)/_2)), vgtStraightShot);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   927
                        if VGear <> nil then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   928
                            with VGear^ do
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   929
                                begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   930
                                Tint:= $FFCC00FF;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   931
                                Angle:= random(360);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   932
                                dx:= 0.0005 * (random(100));
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   933
                                dy:= 0.0005 * (random(100));
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   934
                                if random(2) = 0 then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   935
                                    dx := -dx;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   936
                                if random(2) = 0 then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   937
                                    dy := -dy;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   938
                                FrameTicks:= 600+random(200);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   939
                                State:= ord(sprStar)
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   940
                                end
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   941
                        end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   942
                ApplyDamage(Gear, Ammo^.Hedgehog, tmpDmg, dsShove)
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   943
                end
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   944
            else
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   945
                Gear^.State:= Gear^.State or gstWinner;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   946
            if (Gear^.Kind = gtExplosives) and (Ammo^.Kind = gtBlowtorch) then 
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   947
                begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   948
                if (Ammo^.Hedgehog^.Gear <> nil) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   949
                    Ammo^.Hedgehog^.Gear^.State:= Ammo^.Hedgehog^.Gear^.State and (not gstNotKickable);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   950
                ApplyDamage(Gear, Ammo^.Hedgehog, tmpDmg * 100, dsUnknown); // crank up damage for explosives + blowtorch
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   951
                end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   952
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   953
            if (Gear^.Kind = gtHedgehog) and (Gear^.Hedgehog^.King or (Gear^.Hedgehog^.Effects[heFrozen] > 0)) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   954
                begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   955
                Gear^.dX:= Ammo^.dX * Power * _0_005;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   956
                Gear^.dY:= Ammo^.dY * Power * _0_005
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   957
                end
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   958
            else if ((Ammo^.Kind <> gtFlame) or (Gear^.Kind = gtHedgehog)) and (Power <> 0) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   959
                begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   960
                Gear^.dX:= Ammo^.dX * Power * _0_01;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   961
                Gear^.dY:= Ammo^.dY * Power * _0_01
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   962
                end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   963
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   964
            if (not isZero(Gear^.dX)) or (not isZero(Gear^.dY)) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   965
                begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   966
                Gear^.Active:= true;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   967
                DeleteCI(Gear);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   968
                Gear^.State:= Gear^.State or gstMoving;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   969
                if Gear^.Kind = gtKnife then Gear^.State:= Gear^.State and (not gstCollision);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   970
                // move the gear upwards a bit to throw it over tiny obstacles at start
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   971
                if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) <> 0 then
9285
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   972
                    begin
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   973
                    if (TestCollisionXwithXYShift(Gear, _0, -3, hwSign(Gear^.dX)) = 0) and
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   974
                       (TestCollisionYwithGear(Gear, -1) = 0) then
9285
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   975
                        Gear^.Y:= Gear^.Y - _1;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   976
                    if (TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) = 0) and
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   977
                       (TestCollisionYwithGear(Gear, -1) = 0) then
9285
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   978
                        Gear^.Y:= Gear^.Y - _1;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   979
                    if (TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) = 0) and
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   980
                       (TestCollisionYwithGear(Gear, -1) = 0) then
9285
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   981
                        Gear^.Y:= Gear^.Y - _1;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   982
                    end
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   983
                end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   984
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   985
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   986
            if (Ammo^.Kind <> gtFlame) or ((Ammo^.State and gsttmpFlag) = 0) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   987
                FollowGear:= Gear
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   988
            end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   989
        end
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   990
        end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   991
    end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   992
if i <> 0 then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   993
    SetAllToActive
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   994
end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   995
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   996
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   997
function CountGears(Kind: TGearType): Longword;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   998
var t: PGear;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
   999
    count: Longword = 0;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1000
begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1001
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1002
t:= GearsList;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1003
while t <> nil do
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1004
    begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1005
    if t^.Kind = Kind then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1006
        inc(count);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1007
    t:= t^.NextGear
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1008
    end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1009
CountGears:= count;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1010
end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1011
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1012
procedure SetAllToActive;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1013
var t: PGear;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1014
begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1015
AllInactive:= false;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1016
t:= GearsList;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1017
while t <> nil do
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1018
    begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1019
    t^.Active:= true;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1020
    t:= t^.NextGear
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1021
    end
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1022
end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1023
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1024
procedure SetAllHHToActive; inline;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1025
begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1026
SetAllHHToActive(true)
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1027
end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1028
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1029
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1030
procedure SetAllHHToActive(Ice: boolean);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1031
var t: PGear;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1032
begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1033
AllInactive:= false;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1034
t:= GearsList;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1035
while t <> nil do
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1036
    begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1037
    if (t^.Kind = gtHedgehog) or (t^.Kind = gtExplosives) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1038
        begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1039
        if (t^.Kind = gtHedgehog) and Ice then CheckIce(t);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1040
        t^.Active:= true
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1041
        end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1042
    t:= t^.NextGear
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1043
    end
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1044
end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1045
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1046
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1047
var GearsNearArray : TPGearArray;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1048
function GearsNear(X, Y: hwFloat; Kind: TGearType; r: LongInt): PGearArrayS;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1049
var
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1050
    t: PGear;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1051
    s: Longword;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1052
begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1053
    r:= r*r;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1054
    s:= 0;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1055
    SetLength(GearsNearArray, s);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1056
    t := GearsList;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1057
    while t <> nil do 
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1058
        begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1059
        if (t^.Kind = Kind) 
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1060
            and ((X - t^.X)*(X - t^.X) + (Y - t^.Y)*(Y-t^.Y) < int2hwFloat(r)) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1061
            begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1062
            inc(s);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1063
            SetLength(GearsNearArray, s);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1064
            GearsNearArray[s - 1] := t;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1065
            end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1066
        t := t^.NextGear;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1067
    end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1068
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1069
    GearsNear.size:= s;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1070
    GearsNear.ar:= @GearsNearArray
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1071
end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1072
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1073
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1074
procedure SpawnBoxOfSmth;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1075
var t, aTot, uTot, a, h: LongInt;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1076
    i: TAmmoType;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1077
begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1078
if (PlacingHogs) or
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1079
    (cCaseFactor = 0)
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1080
    or (CountGears(gtCase) >= 5)
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1081
    or (GetRandom(cCaseFactor) <> 0) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1082
       exit;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1083
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1084
FollowGear:= nil;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1085
aTot:= 0;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1086
uTot:= 0;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1087
for i:= Low(TAmmoType) to High(TAmmoType) do
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1088
    if (Ammoz[i].Ammo.Propz and ammoprop_Utility) = 0 then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1089
        inc(aTot, Ammoz[i].Probability)
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1090
    else
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1091
        inc(uTot, Ammoz[i].Probability);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1092
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1093
t:=0;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1094
a:=aTot;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1095
h:= 1;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1096
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1097
if (aTot+uTot) <> 0 then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1098
    if ((GameFlags and gfInvulnerable) = 0) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1099
        begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1100
        h:= cHealthCaseProb * 100;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1101
        t:= GetRandom(10000);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1102
        a:= (10000-h)*aTot div (aTot+uTot)
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1103
        end
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1104
    else
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1105
        begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1106
        t:= GetRandom(aTot+uTot);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1107
        h:= 0
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1108
        end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1109
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1110
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1111
if t<h then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1112
    begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1113
    FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1114
    FollowGear^.Health:= cHealthCaseAmount;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1115
    FollowGear^.Pos:= posCaseHealth;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1116
    AddCaption(GetEventString(eidNewHealthPack), cWhiteColor, capgrpAmmoInfo);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1117
    end
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1118
else if (t<a+h) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1119
    begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1120
    t:= aTot;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1121
    if (t > 0) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1122
        begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1123
        FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1124
        t:= GetRandom(t);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1125
        i:= Low(TAmmoType);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1126
        FollowGear^.Pos:= posCaseAmmo;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1127
        FollowGear^.AmmoType:= i;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1128
        AddCaption(GetEventString(eidNewAmmoPack), cWhiteColor, capgrpAmmoInfo);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1129
        end
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1130
    end
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1131
else
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1132
    begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1133
    t:= uTot;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1134
    if (t > 0) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1135
        begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1136
        FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1137
        t:= GetRandom(t);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1138
        i:= Low(TAmmoType);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1139
        FollowGear^.Pos:= posCaseUtility;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1140
        FollowGear^.AmmoType:= i;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1141
        AddCaption(GetEventString(eidNewUtilityPack), cWhiteColor, capgrpAmmoInfo);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1142
        end
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1143
    end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1144
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1145
// handles case of no ammo or utility crates - considered also placing booleans in uAmmos and altering probabilities
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1146
if (FollowGear <> nil) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1147
    begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1148
    FindPlace(FollowGear, true, 0, LAND_WIDTH);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1149
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1150
    if (FollowGear <> nil) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1151
        AddVoice(sndReinforce, CurrentTeam^.voicepack)
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1152
    end
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1153
end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1154
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1155
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1156
function GetAmmo(Hedgehog: PHedgehog): TAmmoType;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1157
var t, aTot: LongInt;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1158
    i: TAmmoType;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1159
begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1160
Hedgehog:= Hedgehog; // avoid hint
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1161
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1162
aTot:= 0;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1163
for i:= Low(TAmmoType) to High(TAmmoType) do
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1164
    if (Ammoz[i].Ammo.Propz and ammoprop_Utility) = 0 then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1165
        inc(aTot, Ammoz[i].Probability);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1166
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1167
t:= aTot;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1168
i:= Low(TAmmoType);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1169
if (t > 0) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1170
    begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1171
    t:= GetRandom(t);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1172
    while t >= 0 do
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1173
        begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1174
        inc(i);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1175
        if (Ammoz[i].Ammo.Propz and ammoprop_Utility) = 0 then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1176
            dec(t, Ammoz[i].Probability)
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1177
        end
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1178
    end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1179
GetAmmo:= i
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1180
end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1181
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1182
function GetUtility(Hedgehog: PHedgehog): TAmmoType;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1183
var t, uTot: LongInt;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1184
    i: TAmmoType;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1185
begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1186
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1187
uTot:= 0;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1188
for i:= Low(TAmmoType) to High(TAmmoType) do
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1189
    if ((Ammoz[i].Ammo.Propz and ammoprop_Utility) <> 0)
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1190
    and ((Hedgehog^.Team^.HedgehogsNumber > 1) or (Ammoz[i].Ammo.AmmoType <> amSwitch)) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1191
        inc(uTot, Ammoz[i].Probability);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1192
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1193
t:= uTot;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1194
i:= Low(TAmmoType);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1195
if (t > 0) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1196
    begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1197
    t:= GetRandom(t);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1198
    while t >= 0 do
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1199
        begin
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1200
        inc(i);
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1201
        if ((Ammoz[i].Ammo.Propz and ammoprop_Utility) <> 0) and ((Hedgehog^.Team^.HedgehogsNumber > 1)
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1202
        or (Ammoz[i].Ammo.AmmoType <> amSwitch)) then
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1203
            dec(t, Ammoz[i].Probability)
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1204
        end
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1205
    end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1206
GetUtility:= i
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1207
end;
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1208
9473
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1209
(*
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1210
Intended to check Gear X/Y against the map left/right edges and apply one of the world modes
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1211
* Normal - infinite world, do nothing
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1212
* Wrap (entering left edge exits at same height on right edge)
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1213
* Bounce (striking edge is treated as a 100% elasticity bounce)
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1214
* From the depths (same as from sky, but from sea, with submersible flag set)
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1215
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1216
Trying to make the checks a little broader than on first pass to catch things that don't move normally.
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1217
*)
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1218
function WorldWrap(var Gear: PGear): boolean;
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1219
var tdx: hwFloat;
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1220
begin
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1221
WorldWrap:= false;
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1222
if WorldEdge = weNone then exit(false);
9485
3dee8a3b0406 add shotgun wrap, revert 100px offset. Problematic w/ things that rely on Land.
nemo
parents: 9479
diff changeset
  1223
if (hwRound(Gear^.X)-Gear^.Radius < leftX) or
3dee8a3b0406 add shotgun wrap, revert 100px offset. Problematic w/ things that rely on Land.
nemo
parents: 9479
diff changeset
  1224
   (hwRound(Gear^.X)+Gear^.Radius > rightX) then
9473
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1225
    begin
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1226
    if WorldEdge = weWrap then
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1227
        begin
9485
3dee8a3b0406 add shotgun wrap, revert 100px offset. Problematic w/ things that rely on Land.
nemo
parents: 9479
diff changeset
  1228
        if (hwRound(Gear^.X)-Gear^.Radius < leftX) then
3dee8a3b0406 add shotgun wrap, revert 100px offset. Problematic w/ things that rely on Land.
nemo
parents: 9479
diff changeset
  1229
             Gear^.X:= int2hwfloat(rightX-Gear^.Radius)
9557
a5005b7ca305 differentiate borders a bit
nemo
parents: 9522
diff changeset
  1230
        else Gear^.X:= int2hwfloat(leftX+Gear^.Radius);
a5005b7ca305 differentiate borders a bit
nemo
parents: 9522
diff changeset
  1231
        LeftImpactTimer:= 150;
a5005b7ca305 differentiate borders a bit
nemo
parents: 9522
diff changeset
  1232
        RightImpactTimer:= 150
9473
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1233
        end
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1234
    else if WorldEdge = weBounce then
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1235
        begin
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1236
        if (hwRound(Gear^.X)-Gear^.Radius < leftX) then
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1237
            begin
9557
a5005b7ca305 differentiate borders a bit
nemo
parents: 9522
diff changeset
  1238
            LeftImpactTimer:= 333;
9473
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1239
            Gear^.dX.isNegative:= false;
9485
3dee8a3b0406 add shotgun wrap, revert 100px offset. Problematic w/ things that rely on Land.
nemo
parents: 9479
diff changeset
  1240
            Gear^.X:= int2hwfloat(leftX+Gear^.Radius)
9473
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1241
            end
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1242
        else 
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1243
            begin
9557
a5005b7ca305 differentiate borders a bit
nemo
parents: 9522
diff changeset
  1244
            RightImpactTimer:= 333;
9473
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1245
            Gear^.dX.isNegative:= true;
9485
3dee8a3b0406 add shotgun wrap, revert 100px offset. Problematic w/ things that rely on Land.
nemo
parents: 9479
diff changeset
  1246
            Gear^.X:= int2hwfloat(rightX-Gear^.Radius)
9557
a5005b7ca305 differentiate borders a bit
nemo
parents: 9522
diff changeset
  1247
            end;
9561
aab34634a17b call bounce sound less often
nemo
parents: 9557
diff changeset
  1248
        if (Gear^.Radius > 2) and (Gear^.dX.QWordValue > _0_001.QWordValue) then
aab34634a17b call bounce sound less often
nemo
parents: 9557
diff changeset
  1249
            PlaySound(sndMelonImpact)
9473
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1250
        end
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1251
    else if WorldEdge = weSea then
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1252
        begin
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1253
        if (hwRound(Gear^.Y) > cWaterLine) and (Gear^.State and gstSubmersible <> 0) then
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1254
            Gear^.State:= Gear^.State and not gstSubmersible
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1255
        else
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1256
            begin
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1257
            Gear^.State:= Gear^.State or gstSubmersible;
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1258
            Gear^.X:= int2hwFloat(PlayWidth)*int2hwFloat(min(max(0,hwRound(Gear^.Y)),PlayHeight))/PlayHeight;
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1259
            Gear^.Y:= int2hwFloat(cWaterLine+cVisibleWater+Gear^.Radius*2);
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1260
            tdx:= Gear^.dX;
9522
a386e1cdc468 tiny tweak to silly mode
nemo
parents: 9489
diff changeset
  1261
            Gear^.dX:= -Gear^.dY;
9473
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1262
            Gear^.dY:= tdx;
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1263
            Gear^.dY.isNegative:= true
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1264
            end
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1265
        end;
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1266
(*
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1267
* Window in the sky (Gear moved high into the sky, Y is used to determine X) [unfortunately, not a safe thing to do. shame, I thought aerial bombardment would be kinda neat
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1268
This one would be really easy to freeze game unless it was flagged unfortunately.
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1269
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1270
    else 
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1271
        begin
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1272
        Gear^.X:= int2hwFloat(PlayWidth)*int2hwFloat(min(max(0,hwRound(Gear^.Y)),PlayHeight))/PlayHeight;
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1273
        Gear^.Y:= -_2048-_256-_256;
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1274
        tdx:= Gear^.dX;
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1275
        Gear^.dX:= Gear^.dY;
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1276
        Gear^.dY:= tdx;
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1277
        Gear^.dY.isNegative:= false
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1278
        end
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1279
*)
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1280
    WorldWrap:= true
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1281
    end;
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9285
diff changeset
  1282
end;
9285
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
  1283
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1284
end.