hedgewars/uGearsList.pas
author alfadur
Sat, 11 Jul 2020 02:12:02 +0300
changeset 15715 e0cdb6ae88ab
parent 15711 4a8a1dd9528a
child 15820 b6379a7ed674
permissions -rw-r--r--
add sentry deployment step
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
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 11043
diff changeset
     3
 * Copyright (c) 2004-2015 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
10108
c68cf030eded update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents: 10040
diff changeset
    16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
6581
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
unit uGearsList;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    21
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    22
interface
10032
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
    23
uses uFloat, uTypes, SDLh;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    24
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    25
function  AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear;
11203
2f4d0a387a02 Pass overridden uid into AddGear instead
nemo
parents: 11171
diff changeset
    26
function  AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer, newUid: LongWord): PGear;
10646
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
    27
procedure DeleteGear(Gear: PGear);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    28
procedure InsertGearToList(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    29
procedure RemoveGearFromList(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    30
7395
d0d38cd0d27c - Check for harmful gear deletions
unc0rr
parents: 7394
diff changeset
    31
var curHandledGear: PGear;
d0d38cd0d27c - Check for harmful gear deletions
unc0rr
parents: 7394
diff changeset
    32
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    33
implementation
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    34
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    35
uses uRandom, uUtils, uConsts, uVariables, uAmmos, uTeams, uStats,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    36
    uTextures, uScript, uRenderUtils, uAI, uCollisions,
7395
d0d38cd0d27c - Check for harmful gear deletions
unc0rr
parents: 7394
diff changeset
    37
    uGearsRender, uGearsUtils, uDebug;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    38
8145
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    39
const
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
    40
    GearKindAmmoTypeMap : array [TGearType] of TAmmoType = (
8145
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    41
(*          gtFlame *)   amNothing
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    42
(*       gtHedgehog *) , amNothing
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    43
(*           gtMine *) , amMine
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    44
(*           gtCase *) , amNothing
10829
158b5dd6b3c9 avoid airmines too when spawning
nemo
parents: 10828
diff changeset
    45
(*        gtAirMine *) , amAirMine
8145
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    46
(*     gtExplosives *) , amNothing
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    47
(*        gtGrenade *) , amGrenade
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    48
(*          gtShell *) , amBazooka
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    49
(*          gtGrave *) , amNothing
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    50
(*            gtBee *) , amBee
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    51
(*    gtShotgunShot *) , amShotgun
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    52
(*     gtPickHammer *) , amPickHammer
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    53
(*           gtRope *) , amRope
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    54
(*     gtDEagleShot *) , amDEagle
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    55
(*       gtDynamite *) , amDynamite
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    56
(*    gtClusterBomb *) , amClusterBomb
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    57
(*        gtCluster *) , amClusterBomb
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    58
(*         gtShover *) , amBaseballBat  // Shover is only used for baseball bat right now
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    59
(*      gtFirePunch *) , amFirePunch
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    60
(*    gtATStartGame *) , amNothing
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    61
(*   gtATFinishGame *) , amNothing
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    62
(*      gtParachute *) , amParachute
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    63
(*      gtAirAttack *) , amAirAttack
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    64
(*        gtAirBomb *) , amAirAttack
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    65
(*      gtBlowTorch *) , amBlowTorch
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    66
(*         gtGirder *) , amGirder
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    67
(*       gtTeleport *) , amTeleport
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    68
(*       gtSwitcher *) , amSwitch
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    69
(*         gtTarget *) , amNothing
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    70
(*         gtMortar *) , amMortar
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    71
(*           gtWhip *) , amWhip
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    72
(*       gtKamikaze *) , amKamikaze
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    73
(*           gtCake *) , amCake
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    74
(*      gtSeduction *) , amSeduction
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    75
(*     gtWatermelon *) , amWatermelon
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    76
(*     gtMelonPiece *) , amWatermelon
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    77
(*    gtHellishBomb *) , amHellishBomb
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    78
(*        gtWaterUp *) , amNothing
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    79
(*          gtDrill *) , amDrill
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    80
(*        gtBallGun *) , amBallgun
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    81
(*           gtBall *) , amBallgun
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    82
(*        gtRCPlane *) , amRCPlane
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    83
(*gtSniperRifleShot *) , amSniperRifle
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    84
(*        gtJetpack *) , amJetpack
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    85
(*        gtMolotov *) , amMolotov
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    86
(*          gtBirdy *) , amBirdy
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    87
(*            gtEgg *) , amBirdy
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    88
(*         gtPortal *) , amPortalGun
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    89
(*          gtPiano *) , amPiano
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    90
(*        gtGasBomb *) , amGasBomb
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    91
(*    gtSineGunShot *) , amSineGun
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    92
(*   gtFlamethrower *) , amFlamethrower
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    93
(*          gtSMine *) , amSMine
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    94
(*    gtPoisonCloud *) , amNothing
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    95
(*         gtHammer *) , amHammer
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    96
(*      gtHammerHit *) , amHammer
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    97
(*    gtResurrector *) , amResurrector
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    98
(*    gtPoisonCloud *) , amNothing
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
    99
(*       gtSnowball *) , amSnowball
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
   100
(*          gtFlake *) , amNothing
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
   101
(*        gtLandGun *) , amLandGun
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
   102
(*         gtTardis *) , amTardis
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
   103
(*         gtIceGun *) , amIceGun
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
   104
(*        gtAddAmmo *) , amNothing
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
   105
(*  gtGenericFaller *) , amNothing
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
   106
(*          gtKnife *) , amKnife
13851
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13850
diff changeset
   107
(*        gtCreeper *) , amCreeper
12898
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12828
diff changeset
   108
(*        gtMinigun *) , amMinigun
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12828
diff changeset
   109
(*  gtMinigunBullet *) , amMinigun
15639
afeffdb4a712 add sentry 🤖 stub
alfadur
parents: 15587
diff changeset
   110
(*         gtSentry *) , amSentry
8145
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
   111
    );
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
   112
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
   113
7093
2d7f1fb73335 Bit more freezer.
nemo
parents: 7077
diff changeset
   114
var GCounter: LongWord = 0; // this does not get re-initialized, but should be harmless
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
   115
8145
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
   116
const
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
   117
    cUsualZ = 500;
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
   118
    cOnHHZ = 2000;
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 7754
diff changeset
   119
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   120
procedure InsertGearToList(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   121
var tmp, ptmp: PGear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   122
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   123
    tmp:= GearsList;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   124
    ptmp:= GearsList;
7366
e5a0856708dc Insert at front of same Z, not end. Saves a little time on insertion and lua lookup of recent adds.
nemo
parents: 7364
diff changeset
   125
    while (tmp <> nil) and (tmp^.Z < Gear^.Z) do
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   126
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   127
        ptmp:= tmp;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   128
        tmp:= tmp^.NextGear
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   129
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   130
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   131
    if ptmp <> tmp then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   132
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   133
        Gear^.NextGear:= ptmp^.NextGear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   134
        Gear^.PrevGear:= ptmp;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   135
        if ptmp^.NextGear <> nil then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   136
            ptmp^.NextGear^.PrevGear:= Gear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   137
        ptmp^.NextGear:= Gear
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   138
        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   139
    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   140
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   141
        Gear^.NextGear:= GearsList;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   142
        if Gear^.NextGear <> nil then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   143
            Gear^.NextGear^.PrevGear:= Gear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   144
        GearsList:= Gear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   145
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   146
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   147
7395
d0d38cd0d27c - Check for harmful gear deletions
unc0rr
parents: 7394
diff changeset
   148
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   149
procedure RemoveGearFromList(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   150
begin
10634
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10625
diff changeset
   151
if (Gear <> GearsList) and (Gear <> nil) and (Gear^.NextGear = nil) and (Gear^.PrevGear = nil) then
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10625
diff changeset
   152
    begin
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10625
diff changeset
   153
    AddFileLog('Attempted to remove Gear #'+inttostr(Gear^.uid)+' from the list twice.');
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10625
diff changeset
   154
    exit
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10625
diff changeset
   155
    end;
11539
c22d292e7266 Fix possible crashes/hangs due to recent changes
unC0Rr
parents: 11532
diff changeset
   156
    
c22d292e7266 Fix possible crashes/hangs due to recent changes
unC0Rr
parents: 11532
diff changeset
   157
checkFails((Gear = nil) or (curHandledGear = nil) or (Gear = curHandledGear), 'You''re doing it wrong', true);
7395
d0d38cd0d27c - Check for harmful gear deletions
unc0rr
parents: 7394
diff changeset
   158
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   159
if Gear^.NextGear <> nil then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   160
    Gear^.NextGear^.PrevGear:= Gear^.PrevGear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   161
if Gear^.PrevGear <> nil then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   162
    Gear^.PrevGear^.NextGear:= Gear^.NextGear
11043
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   163
else
10634
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10625
diff changeset
   164
    GearsList:= Gear^.NextGear;
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10625
diff changeset
   165
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10625
diff changeset
   166
Gear^.NextGear:= nil;
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10625
diff changeset
   167
Gear^.PrevGear:= nil
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   168
end;
7395
d0d38cd0d27c - Check for harmful gear deletions
unc0rr
parents: 7394
diff changeset
   169
d0d38cd0d27c - Check for harmful gear deletions
unc0rr
parents: 7394
diff changeset
   170
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   171
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear;
11203
2f4d0a387a02 Pass overridden uid into AddGear instead
nemo
parents: 11171
diff changeset
   172
begin
2f4d0a387a02 Pass overridden uid into AddGear instead
nemo
parents: 11171
diff changeset
   173
AddGear:= AddGear(X, Y, Kind, State, dX, dY, Timer, 0);
2f4d0a387a02 Pass overridden uid into AddGear instead
nemo
parents: 11171
diff changeset
   174
end;
2f4d0a387a02 Pass overridden uid into AddGear instead
nemo
parents: 11171
diff changeset
   175
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer, newUid: LongWord): PGear;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   176
var gear: PGear;
10518
dbbe2f6c0a96 make gear ability to speak somewhat less ironic
sheepluva
parents: 10495
diff changeset
   177
    //c: byte;
10874
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10848
diff changeset
   178
    cakeData: PCakeData;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   179
begin
11203
2f4d0a387a02 Pass overridden uid into AddGear instead
nemo
parents: 11171
diff changeset
   180
if newUid = 0 then
2f4d0a387a02 Pass overridden uid into AddGear instead
nemo
parents: 11171
diff changeset
   181
    inc(GCounter);
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7754
diff changeset
   182
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
   183
AddFileLog('AddGear: #' + inttostr(GCounter) + ' (' + inttostr(x) + ',' + inttostr(y) + '), d(' + floattostr(dX) + ',' + floattostr(dY) + ') type = ' + EnumToStr(Kind));
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   184
8330
aaefa587e277 update branch with default
koda
parents: 8026 8161
diff changeset
   185
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   186
New(gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   187
FillChar(gear^, sizeof(TGear), 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   188
gear^.X:= int2hwFloat(X);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   189
gear^.Y:= int2hwFloat(Y);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   190
gear^.Target.X:= NoPointX;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   191
gear^.Kind := Kind;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   192
gear^.State:= State;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   193
gear^.Active:= true;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   194
gear^.dX:= dX;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   195
gear^.dY:= dY;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   196
gear^.doStep:= doStepHandlers[Kind];
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   197
gear^.CollisionIndex:= -1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   198
gear^.Timer:= Timer;
11203
2f4d0a387a02 Pass overridden uid into AddGear instead
nemo
parents: 11171
diff changeset
   199
if newUid = 0 then
2f4d0a387a02 Pass overridden uid into AddGear instead
nemo
parents: 11171
diff changeset
   200
     gear^.uid:= GCounter
2f4d0a387a02 Pass overridden uid into AddGear instead
nemo
parents: 11171
diff changeset
   201
else gear^.uid:= newUid;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   202
gear^.SoundChannel:= -1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   203
gear^.ImpactSound:= sndNone;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   204
gear^.Density:= _1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   205
// Define ammo association, if any.
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   206
gear^.AmmoType:= GearKindAmmoTypeMap[Kind];
13464
7b4643ff60ea Refactor collision mask checks, remove hardcoded numbers
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
   207
gear^.CollisionMask:= lfAll;
10032
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
   208
gear^.Tint:= $FFFFFFFF;
10874
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10848
diff changeset
   209
gear^.Data:= nil;
13610
f1b6070a6e14 Fix projectiles reacing incorrectly with land just behind the wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 13605
diff changeset
   210
gear^.Sticky:= false;
7272
71df899c4163 Second part of the change. Make collision check use the new mask bit.
nemo
parents: 7176
diff changeset
   211
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   212
if CurrentHedgehog <> nil then
7726
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
   213
    begin
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
   214
    gear^.Hedgehog:= CurrentHedgehog;
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
   215
    if (CurrentHedgehog^.Gear <> nil) and (hwRound(CurrentHedgehog^.Gear^.X) = X) and (hwRound(CurrentHedgehog^.Gear^.Y) = Y) then
13463
f1d349a52bc7 Refactor: lfCurrentHog→lfCurHogCrate, lfNotCurrentMask→lfNotCurHogCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 13399
diff changeset
   216
        gear^.CollisionMask:= lfNotCurHogCrate
7730
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7726
diff changeset
   217
    end;
7272
71df899c4163 Second part of the change. Make collision check use the new mask bit.
nemo
parents: 7176
diff changeset
   218
7364
ee87ad50e18d Draw bombs behind plane
nemo
parents: 7337
diff changeset
   219
if (Ammoz[Gear^.AmmoType].Ammo.Propz and ammoprop_NeedTarget <> 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   220
    gear^.Z:= cHHZ+1
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   221
else gear^.Z:= cUsualZ;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   222
15223
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   223
// set gstInBounceEdge if gear spawned inside the bounce world edge
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   224
if WorldEdge = weBounce then
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   225
    if (hwRound(gear^.X) - Gear^.Radius < leftX) or (hwRound(gear^.X) + Gear^.Radius > rightX) then
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   226
        case gear^.Kind of
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   227
            // list all gears here that could collide with the bounce world edge
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   228
            gtHedgehog,
15225
ebbc2f04b863 Make flames collide with bounce world edge again, properly this time
Wuzzy <Wuzzy2@mail.ru>
parents: 15223
diff changeset
   229
            gtFlame,
15223
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   230
            gtMine,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   231
            gtAirBomb,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   232
            gtDrill,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   233
            gtNapalmBomb,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   234
            gtCase,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   235
            gtAirMine,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   236
            gtExplosives,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   237
            gtGrenade,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   238
            gtShell,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   239
            gtBee,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   240
            gtDynamite,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   241
            gtClusterBomb,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   242
            gtMelonPiece,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   243
            gtCluster,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   244
            gtMortar,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   245
            gtKamikaze,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   246
            gtCake,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   247
            gtWatermelon,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   248
            gtGasBomb,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   249
            gtHellishBomb,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   250
            gtBall,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   251
            gtRCPlane,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   252
            gtSniperRifleShot,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   253
            gtShotgunShot,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   254
            gtDEagleShot,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   255
            gtSineGunShot,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   256
            gtMinigunBullet,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   257
            gtEgg,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   258
            gtPiano,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   259
            gtSMine,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   260
            gtSnowball,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   261
            gtKnife,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   262
            gtCreeper,
15639
afeffdb4a712 add sentry 🤖 stub
alfadur
parents: 15587
diff changeset
   263
            gtSentry,
15223
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   264
            gtMolotov,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   265
            gtFlake,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   266
            gtGrave,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   267
            gtPortal,
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   268
            gtTarget:
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   269
            gear^.State := gear^.State or gstInBounceEdge;
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   270
        end;
32678e65b25e Bounce world edge: Fix buggy gear behaviour if gear spawned inside bounce edge area
Wuzzy <Wuzzy2@mail.ru>
parents: 15222
diff changeset
   271
11468
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   272
case Kind of
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   273
          gtFlame: Gear^.Boom := 2;  // some additional expl in there are x3, x4 this
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   274
       gtHedgehog: Gear^.Boom := 30;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   275
           gtMine: Gear^.Boom := 50;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   276
           gtCase: Gear^.Boom := 25;
13399
3d6aae2ae698 Allow freezing airmines because whyyy not
nemo
parents: 13357
diff changeset
   277
        gtAirMine: Gear^.Boom := 30;
11468
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   278
     gtExplosives: Gear^.Boom := 75;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   279
        gtGrenade: Gear^.Boom := 50;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   280
          gtShell: Gear^.Boom := 50;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   281
            gtBee: Gear^.Boom := 50;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   282
    gtShotgunShot: Gear^.Boom := 25;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   283
     gtPickHammer: Gear^.Boom := 6;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   284
//           gtRope: Gear^.Boom := 2; could be funny to have rope attaching to hog deal small amount of dmg?
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   285
     gtDEagleShot: Gear^.Boom := 7;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   286
       gtDynamite: Gear^.Boom := 75;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   287
    gtClusterBomb: Gear^.Boom := 20;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   288
     gtMelonPiece,
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   289
        gtCluster: Gear^.Boom := Timer;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   290
         gtShover: Gear^.Boom := 30;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   291
      gtFirePunch: Gear^.Boom := 30;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   292
        gtAirBomb: Gear^.Boom := 30;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   293
      gtBlowTorch: Gear^.Boom := 2;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   294
         gtMortar: Gear^.Boom := 20;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   295
           gtWhip: Gear^.Boom := 30;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   296
       gtKamikaze: Gear^.Boom := 30; // both shove and explosion
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   297
           gtCake: Gear^.Boom := cakeDmg; // why is cake damage a global constant
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   298
     gtWatermelon: Gear^.Boom := 75;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   299
    gtHellishBomb: Gear^.Boom := 90;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   300
          gtDrill: if Gear^.State and gsttmpFlag = 0 then
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   301
                        Gear^.Boom := 50
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   302
                   else Gear^.Boom := 30;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   303
           gtBall: Gear^.Boom := 40;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   304
        gtRCPlane: Gear^.Boom := 25;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   305
// sniper rifle is distance linked, this Boom is just an arbitrary scaling factor applied to timer-based-damage
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   306
// because, eh, why not..
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   307
gtSniperRifleShot: Gear^.Boom := 100000;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   308
            gtEgg: Gear^.Boom := 10;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   309
          gtPiano: Gear^.Boom := 80;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   310
        gtGasBomb: Gear^.Boom := 20;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   311
    gtSineGunShot: Gear^.Boom := 35;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   312
          gtSMine: Gear^.Boom := 30;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   313
    gtSnowball: Gear^.Boom := 200000; // arbitrary scaling for the shove
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   314
         gtHammer: if cDamageModifier > _1 then // scale it based on cDamageModifier?
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   315
                         Gear^.Boom := 2
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   316
                    else Gear^.Boom := 3;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   317
    gtPoisonCloud: Gear^.Boom := 20;
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   318
          gtKnife: Gear^.Boom := 40000; // arbitrary scaling factor since impact-based
13851
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13850
diff changeset
   319
        gtCreeper: Gear^.Boom := 100;
15639
afeffdb4a712 add sentry 🤖 stub
alfadur
parents: 15587
diff changeset
   320
  gtMinigunBullet: Gear^.Boom := 2;
15710
7383256f8535 allow damaging sentries
alfadur
parents: 15656
diff changeset
   321
         gtSentry: Gear^.Boom := 40;
11468
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11203
diff changeset
   322
    end;
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   323
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   324
case Kind of
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   325
     gtGrenade,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   326
     gtClusterBomb,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   327
     gtGasBomb: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   328
                gear^.ImpactSound:= sndGrenadeImpact;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   329
                gear^.nImpactSounds:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   330
                gear^.AdvBounce:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   331
                gear^.Radius:= 5;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   332
                gear^.Elasticity:= _0_8;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   333
                gear^.Friction:= _0_8;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   334
                gear^.Density:= _1_5;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   335
                gear^.RenderTimer:= true;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   336
                if gear^.Timer = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   337
                    gear^.Timer:= 3000
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   338
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   339
  gtWatermelon: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   340
                gear^.ImpactSound:= sndMelonImpact;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   341
                gear^.nImpactSounds:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   342
                gear^.AdvBounce:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   343
                gear^.Radius:= 6;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   344
                gear^.Elasticity:= _0_8;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   345
                gear^.Friction:= _0_995;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   346
                gear^.Density:= _2;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   347
                gear^.RenderTimer:= true;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   348
                if gear^.Timer = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   349
                    gear^.Timer:= 3000
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   350
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   351
  gtMelonPiece: begin
9825
de0da12b7d0e more advbounce flagging
nemo
parents: 9824
diff changeset
   352
                gear^.AdvBounce:= 1;
10889
f7200e614295 give melon pieces a radius. is why they weren't bouncing.
nemo
parents: 10875
diff changeset
   353
                gear^.Density:= _2;
11036
6e866be63b1d oops. melon pieces need friction and elasticity to bounce right.
nemo
parents: 11002
diff changeset
   354
                gear^.Elasticity:= _0_8;
6e866be63b1d oops. melon pieces need friction and elasticity to bounce right.
nemo
parents: 11002
diff changeset
   355
                gear^.Friction:= _0_995;
10889
f7200e614295 give melon pieces a radius. is why they weren't bouncing.
nemo
parents: 10875
diff changeset
   356
                gear^.Radius:= 4
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   357
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   358
    gtHedgehog: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   359
                gear^.AdvBounce:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   360
                gear^.Radius:= cHHRadius;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   361
                gear^.Elasticity:= _0_35;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   362
                gear^.Friction:= _0_999;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   363
                gear^.Angle:= cMaxAngle div 2;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   364
                gear^.Density:= _3;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   365
                gear^.Z:= cHHZ;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   366
                if (GameFlags and gfAISurvival) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   367
                    if gear^.Hedgehog^.BotLevel > 0 then
7077
nemo
parents: 7069
diff changeset
   368
                        gear^.Hedgehog^.Effects[heResurrectable] := 1;
13096
d78e65c66573 Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12898
diff changeset
   369
                if (GameFlags and gfArtillery) <> 0 then
d78e65c66573 Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12898
diff changeset
   370
                    gear^.Hedgehog^.Effects[heArtillery] := 1;
10032
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
   371
                // this would presumably be set in the frontend
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
   372
                // if we weren't going to do that yet, would need to reinit GetRandom
10040
koda
parents: 10015 10032
diff changeset
   373
                // oh, and, randomising slightly R and B might be nice too.
10032
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
   374
                //gear^.Tint:= $fa00efff or ((random(80)+128) shl 16)
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
   375
                //gear^.Tint:= $faa4efff
10040
koda
parents: 10015 10032
diff changeset
   376
                //gear^.Tint:= (($e0+random(32)) shl 24) or
10032
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
   377
                //             ((random(80)+128) shl 16) or
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
   378
                //             (($d5+random(32)) shl 8) or $ff
10495
6d61b44a5652 - Comment out getrandom in addgear for hedgehog, causes preview-game desync
unc0rr
parents: 10494
diff changeset
   379
                {c:= GetRandom(32);
10040
koda
parents: 10015 10032
diff changeset
   380
                gear^.Tint:= (($e0+c) shl 24) or
10494
0eb97cf4c78e Fix warnings given by 32-bit fpc
unC0Rr
parents: 10490
diff changeset
   381
                             ((GetRandom(90)+128) shl 16) or
10495
6d61b44a5652 - Comment out getrandom in addgear for hedgehog, causes preview-game desync
unc0rr
parents: 10494
diff changeset
   382
                             (($d5+c) shl 8) or $ff}
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   383
                end;
15146
6b7d92fa4912 Keep hog facing direction while on parachute
Wuzzy <Wuzzy2@mail.ru>
parents: 15108
diff changeset
   384
   gtParachute: begin
6b7d92fa4912 Keep hog facing direction while on parachute
Wuzzy <Wuzzy2@mail.ru>
parents: 15108
diff changeset
   385
                gear^.Tag:= 1; // hog face dir. 1 = right, -1 = left
6b7d92fa4912 Keep hog facing direction while on parachute
Wuzzy <Wuzzy2@mail.ru>
parents: 15108
diff changeset
   386
                gear^.Z:= cCurrHHZ;
6b7d92fa4912 Keep hog facing direction while on parachute
Wuzzy <Wuzzy2@mail.ru>
parents: 15108
diff changeset
   387
                end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   388
       gtShell: begin
9721
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   389
                gear^.Elasticity:= _0_8;
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   390
                gear^.Friction:= _0_8;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   391
                gear^.Radius:= 4;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   392
                gear^.Density:= _1;
9721
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   393
                gear^.AdvBounce:= 1;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   394
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   395
       gtSnowball: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   396
                gear^.ImpactSound:= sndMudballImpact;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   397
                gear^.nImpactSounds:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   398
                gear^.Radius:= 4;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   399
                gear^.Density:= _0_5;
9721
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   400
                gear^.AdvBounce:= 1;
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   401
                gear^.Elasticity:= _0_8;
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   402
                gear^.Friction:= _0_8;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   403
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   404
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   405
     gtFlake: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   406
                with Gear^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   407
                    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   408
                    Pos:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   409
                    Radius:= 1;
7069
bcf9d8e64e92 pas2c stuff again
unc0rr
parents: 7028
diff changeset
   410
                    DirAngle:= random(360);
13610
f1b6070a6e14 Fix projectiles reacing incorrectly with land just behind the wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 13605
diff changeset
   411
                    Sticky:= true;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   412
                    if State and gstTmpFlag = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   413
                        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   414
                        dx.isNegative:= GetRandom(2) = 0;
9809
1e32628eb167 Fix warnings
unC0Rr
parents: 9721
diff changeset
   415
                        dx.QWordValue:= QWord($40DA) * GetRandom(10000) * 8;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   416
                        dy.isNegative:= false;
9809
1e32628eb167 Fix warnings
unC0Rr
parents: 9721
diff changeset
   417
                        dy.QWordValue:= QWord($3AD3) * GetRandom(7000) * 8;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   418
                        if GetRandom(2) = 0 then
10645
b8c73bacb31e Fix in-flight colouring of land spray, make it use tint when added to land too (lua might find that handy), tweak climbhome cake delay slightly
nemo
parents: 10643
diff changeset
   419
                            dx := -dx;
b8c73bacb31e Fix in-flight colouring of land spray, make it use tint when added to land too (lua might find that handy), tweak climbhome cake delay slightly
nemo
parents: 10643
diff changeset
   420
                        Tint:= $FFFFFFFF
b8c73bacb31e Fix in-flight colouring of land spray, make it use tint when added to land too (lua might find that handy), tweak climbhome cake delay slightly
nemo
parents: 10643
diff changeset
   421
                        end
b8c73bacb31e Fix in-flight colouring of land spray, make it use tint when added to land too (lua might find that handy), tweak climbhome cake delay slightly
nemo
parents: 10643
diff changeset
   422
                    else
b8c73bacb31e Fix in-flight colouring of land spray, make it use tint when added to land too (lua might find that handy), tweak climbhome cake delay slightly
nemo
parents: 10643
diff changeset
   423
                        Tint:= (ExplosionBorderColor shr RShift and $FF shl 24) or
b8c73bacb31e Fix in-flight colouring of land spray, make it use tint when added to land too (lua might find that handy), tweak climbhome cake delay slightly
nemo
parents: 10643
diff changeset
   424
                               (ExplosionBorderColor shr GShift and $FF shl 16) or
b8c73bacb31e Fix in-flight colouring of land spray, make it use tint when added to land too (lua might find that handy), tweak climbhome cake delay slightly
nemo
parents: 10643
diff changeset
   425
                               (ExplosionBorderColor shr BShift and $FF shl 8) or $FF;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   426
                    State:= State or gstInvisible;
10625
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10589
diff changeset
   427
                    // use health field to store current frameticks
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10589
diff changeset
   428
                    if vobFrameTicks > 0 then
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10589
diff changeset
   429
                        Health:= random(vobFrameTicks)
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10589
diff changeset
   430
                    else
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10589
diff changeset
   431
                        Health:= 0;
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10589
diff changeset
   432
                    // use timer to store currently displayed frame index
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   433
                    if gear^.Timer = 0 then Timer:= random(vobFramesCount);
10645
b8c73bacb31e Fix in-flight colouring of land spray, make it use tint when added to land too (lua might find that handy), tweak climbhome cake delay slightly
nemo
parents: 10643
diff changeset
   434
                    Damage:= (random(2) * 2 - 1) * (vobVelocity + random(vobVelocity)) * 8
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   435
                    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   436
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   437
       gtGrave: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   438
                gear^.ImpactSound:= sndGraveImpact;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   439
                gear^.nImpactSounds:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   440
                gear^.Radius:= 10;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   441
                gear^.Elasticity:= _0_6;
11541
34a0181d5be5 Put graves behind other stuff.
nemo
parents: 11539
diff changeset
   442
                gear^.Z:= 1;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   443
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   444
         gtBee: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   445
                gear^.Radius:= 5;
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   446
                if gear^.Timer = 0 then gear^.Timer:= 500;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   447
                gear^.RenderTimer:= true;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   448
                gear^.Elasticity:= _0_9;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   449
                gear^.Tag:= 0;
9479
167dea42d7d7 move border back a bit from left/right bounds, bee tweak
nemo
parents: 9195
diff changeset
   450
                gear^.State:= Gear^.State or gstSubmersible
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   451
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   452
   gtSeduction: begin
15096
eff1a080cf40 Move resurrector and seduction distance to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 15038
diff changeset
   453
                gear^.Radius:= cSeductionDist;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   454
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   455
 gtShotgunShot: begin
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   456
                if gear^.Timer = 0 then gear^.Timer:= 900;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   457
                gear^.Radius:= 2
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   458
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   459
  gtPickHammer: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   460
                gear^.Radius:= 10;
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   461
                if gear^.Timer = 0 then gear^.Timer:= 4000
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   462
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   463
   gtHammerHit: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   464
                gear^.Radius:= 8;
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   465
                if gear^.Timer = 0 then gear^.Timer:= 125
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   466
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   467
        gtRope: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   468
                gear^.Radius:= 3;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   469
                gear^.Friction:= _450 * _0_01 * cRopePercent;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   470
                RopePoints.Count:= 0;
10848
231d3e3d3267 Allow rope tinting
nemo
parents: 10829
diff changeset
   471
                gear^.Tint:= $D8D8D8FF;
231d3e3d3267 Allow rope tinting
nemo
parents: 10829
diff changeset
   472
                gear^.Tag:= 0; // normal rope render
13463
f1d349a52bc7 Refactor: lfCurrentHog→lfCurHogCrate, lfNotCurrentMask→lfNotCurHogCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 13399
diff changeset
   473
                gear^.CollisionMask:= lfNotCurHogCrate //lfNotObjMask or lfNotHHObjMask;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   474
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   475
        gtMine: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   476
                gear^.ImpactSound:= sndMineImpact;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   477
                gear^.nImpactSounds:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   478
                gear^.Health:= 10;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   479
                gear^.State:= gear^.State or gstMoving;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   480
                gear^.Radius:= 2;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   481
                gear^.Elasticity:= _0_55;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   482
                gear^.Friction:= _0_995;
7602
a620319d377e Fix throwing things off rope, also make throwing things a bit more generic and gear density dependent (so you can throw mines further, and also throw dynamite a little).
nemo
parents: 7395
diff changeset
   483
                gear^.Density:= _1;
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   484
                if gear^.Timer = 0 then
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   485
                    begin
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   486
                    if cMinesTime < 0 then
14752
56098968df90 Don't explose mine timer in game if random (using Karma value)
Wuzzy <Wuzzy2@mail.ru>
parents: 14750
diff changeset
   487
                        begin
56098968df90 Don't explose mine timer in game if random (using Karma value)
Wuzzy <Wuzzy2@mail.ru>
parents: 14750
diff changeset
   488
                        gear^.Timer:= getrandom(51)*100;
56098968df90 Don't explose mine timer in game if random (using Karma value)
Wuzzy <Wuzzy2@mail.ru>
parents: 14750
diff changeset
   489
                        gear^.Karma:= 1;
56098968df90 Don't explose mine timer in game if random (using Karma value)
Wuzzy <Wuzzy2@mail.ru>
parents: 14750
diff changeset
   490
                        end
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   491
                    else
14752
56098968df90 Don't explose mine timer in game if random (using Karma value)
Wuzzy <Wuzzy2@mail.ru>
parents: 14750
diff changeset
   492
                        gear^.Timer:= cMinesTime;
14750
ab7bf5036314 Render mine timer if gear info is active
Wuzzy <Wuzzy2@mail.ru>
parents: 14749
diff changeset
   493
                    end;
ab7bf5036314 Render mine timer if gear info is active
Wuzzy <Wuzzy2@mail.ru>
parents: 14749
diff changeset
   494
                gear^.RenderTimer:= true;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   495
                end;
10789
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10663
diff changeset
   496
     gtAirMine: begin
13347
e7b89e87a1b3 Airmines should have been set for 45° bounce - the only reason they weren't I guess is they were a clone of some mine values - and mines use traditional behaviour.
nemo
parents: 13154
diff changeset
   497
                gear^.AdvBounce:= 1;
11765
10860d4bca22 Add sound effects for: cleaver impact, air mine impact, using extra time
Wuzzy <almikes@aol.com>
parents: 11589
diff changeset
   498
                gear^.ImpactSound:= sndAirMineImpact;
10789
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10663
diff changeset
   499
                gear^.nImpactSounds:= 1;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10663
diff changeset
   500
                gear^.Health:= 30;
10827
2b717f687c72 make mines submersible
nemo
parents: 10805
diff changeset
   501
                gear^.State:= gear^.State or gstMoving or gstNoGravity or gstSubmersible;
10802
089e43d01f74 Use the larger scaled airmine sprite originally intended, add some antidickery measures.
nemo
parents: 10800
diff changeset
   502
                gear^.Radius:= 8;
10789
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10663
diff changeset
   503
                gear^.Elasticity:= _0_55;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10663
diff changeset
   504
                gear^.Friction:= _0_995;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10663
diff changeset
   505
                gear^.Density:= _1;
10791
0311c9fa7498 tweak a few params. still something wtf going on when on rope
nemo
parents: 10789
diff changeset
   506
                gear^.Angle:= 175; // Radius at which air bombs will start "seeking". $FFFFFFFF = unlimited. check is skipped.
10800
3c71e5158519 more tweakery
nemo
parents: 10794
diff changeset
   507
                gear^.Power:= cMaxWindSpeed.QWordValue div 2; // hwFloat converted. 1/2 g default. defines the "seek" speed when a gear is in range.
10828
9867dd60a66a bit more friction. remove gstSubmersible clearing. was for the old "sea" thing that is totally gone now. As a general attribute, better to let other stuff clear it as needed.
nemo
parents: 10827
diff changeset
   508
                gear^.Pos:= cMaxWindSpeed.QWordValue * 3 div 2; // air friction. slows it down when not hitting stuff
14200
1bdce164eb72 stun airmines on shove
alfadur
parents: 14196
diff changeset
   509
                gear^.Tag:= 0;
10805
a96a69841653 inherit mines time div 4
nemo
parents: 10802
diff changeset
   510
                if gear^.Timer = 0 then
a96a69841653 inherit mines time div 4
nemo
parents: 10802
diff changeset
   511
                    begin
a96a69841653 inherit mines time div 4
nemo
parents: 10802
diff changeset
   512
                    if cMinesTime < 0 then
14752
56098968df90 Don't explose mine timer in game if random (using Karma value)
Wuzzy <Wuzzy2@mail.ru>
parents: 14750
diff changeset
   513
                        begin
56098968df90 Don't explose mine timer in game if random (using Karma value)
Wuzzy <Wuzzy2@mail.ru>
parents: 14750
diff changeset
   514
                        gear^.Timer:= getrandom(13)*100;
56098968df90 Don't explose mine timer in game if random (using Karma value)
Wuzzy <Wuzzy2@mail.ru>
parents: 14750
diff changeset
   515
                        gear^.Karma:= 1;
56098968df90 Don't explose mine timer in game if random (using Karma value)
Wuzzy <Wuzzy2@mail.ru>
parents: 14750
diff changeset
   516
                        end
10805
a96a69841653 inherit mines time div 4
nemo
parents: 10802
diff changeset
   517
                    else
14752
56098968df90 Don't explose mine timer in game if random (using Karma value)
Wuzzy <Wuzzy2@mail.ru>
parents: 14750
diff changeset
   518
                        gear^.Timer:= cMinesTime div 4;
10805
a96a69841653 inherit mines time div 4
nemo
parents: 10802
diff changeset
   519
                    end;
14752
56098968df90 Don't explose mine timer in game if random (using Karma value)
Wuzzy <Wuzzy2@mail.ru>
parents: 14750
diff changeset
   520
                gear^.RenderTimer:= true;
10805
a96a69841653 inherit mines time div 4
nemo
parents: 10802
diff changeset
   521
                gear^.WDTimer:= gear^.Timer
10789
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10663
diff changeset
   522
                end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   523
       gtSMine: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   524
                gear^.Health:= 10;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   525
                gear^.State:= gear^.State or gstMoving;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   526
                gear^.Radius:= 2;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   527
                gear^.Elasticity:= _0_55;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   528
                gear^.Friction:= _0_995;
7602
a620319d377e Fix throwing things off rope, also make throwing things a bit more generic and gear density dependent (so you can throw mines further, and also throw dynamite a little).
nemo
parents: 7395
diff changeset
   529
                gear^.Density:= _1_6;
9721
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   530
                gear^.AdvBounce:= 1;
13610
f1b6070a6e14 Fix projectiles reacing incorrectly with land just behind the wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 13605
diff changeset
   531
                gear^.Sticky:= true;
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   532
                if gear^.Timer = 0 then gear^.Timer:= 500;
14750
ab7bf5036314 Render mine timer if gear info is active
Wuzzy <Wuzzy2@mail.ru>
parents: 14749
diff changeset
   533
                gear^.RenderTimer:= true;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   534
                end;
7733
a1476c09403f Knife is still broken, but so koda can fix it...
nemo
parents: 7730
diff changeset
   535
       gtKnife: begin
11765
10860d4bca22 Add sound effects for: cleaver impact, air mine impact, using extra time
Wuzzy <almikes@aol.com>
parents: 11589
diff changeset
   536
                gear^.ImpactSound:= sndKnifeImpact;
9721
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   537
                gear^.AdvBounce:= 1;
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   538
                gear^.Elasticity:= _0_8;
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   539
                gear^.Friction:= _0_8;
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7733
diff changeset
   540
                gear^.Density:= _4;
13610
f1b6070a6e14 Fix projectiles reacing incorrectly with land just behind the wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 13605
diff changeset
   541
                gear^.Radius:= 7;
f1b6070a6e14 Fix projectiles reacing incorrectly with land just behind the wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 13605
diff changeset
   542
                gear^.Sticky:= true;
7733
a1476c09403f Knife is still broken, but so koda can fix it...
nemo
parents: 7730
diff changeset
   543
                end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   544
        gtCase: begin
13988
c28a4f76d37d Add separate sound symbols for case impact and extra damage
Wuzzy <Wuzzy2@mail.ru>
parents: 13984
diff changeset
   545
                gear^.ImpactSound:= sndCaseImpact;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   546
                gear^.nImpactSounds:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   547
                gear^.Radius:= 16;
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: 7093
diff changeset
   548
                gear^.Elasticity:= _0_3;
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   549
                if gear^.Timer = 0 then gear^.Timer:= 500
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   550
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   551
  gtExplosives: begin
9721
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   552
                gear^.AdvBounce:= 1;
14753
168be33c099a Don't render barrel health after loading savegame
Wuzzy <Wuzzy2@mail.ru>
parents: 14752
diff changeset
   553
                if GameType in [gmtDemo, gmtRecord] then
14749
533ac9774279 Add key to display extra gear info tags
Wuzzy <Wuzzy2@mail.ru>
parents: 14734
diff changeset
   554
                    gear^.RenderHealth:= true;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   555
                gear^.ImpactSound:= sndGrenadeImpact;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   556
                gear^.nImpactSounds:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   557
                gear^.Radius:= 16;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   558
                gear^.Elasticity:= _0_4;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   559
                gear^.Friction:= _0_995;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   560
                gear^.Density:= _6;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   561
                gear^.Health:= cBarrelHealth;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   562
                gear^.Z:= cHHZ-1
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   563
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   564
  gtDEagleShot: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   565
                gear^.Radius:= 1;
15641
8e93ce81e850 add current 🦔 targeting to sentry
alfadur
parents: 15640
diff changeset
   566
                gear^.Health:= 50;
8e93ce81e850 add current 🦔 targeting to sentry
alfadur
parents: 15640
diff changeset
   567
                gear^.Data:= nil;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   568
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   569
  gtSniperRifleShot: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   570
                gear^.Radius:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   571
                gear^.Health:= 50
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   572
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   573
    gtDynamite: begin
15587
61f2ffcd5652 Add dynamite impact sound
Wuzzy <Wuzzy2@mail.ru>
parents: 15486
diff changeset
   574
                gear^.ImpactSound:= sndDynamiteImpact;
61f2ffcd5652 Add dynamite impact sound
Wuzzy <Wuzzy2@mail.ru>
parents: 15486
diff changeset
   575
                gear^.nImpactSounds:= 1;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   576
                gear^.Radius:= 3;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   577
                gear^.Elasticity:= _0_55;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   578
                gear^.Friction:= _0_03;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   579
                gear^.Density:= _2;
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   580
                if gear^.Timer = 0 then gear^.Timer:= 5000;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   581
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   582
     gtCluster: begin
9721
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   583
                gear^.AdvBounce:= 1;
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   584
                gear^.Elasticity:= _0_8;
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   585
                gear^.Friction:= _0_8;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   586
                gear^.Radius:= 2;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   587
                gear^.Density:= _1_5;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   588
                gear^.RenderTimer:= true
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   589
                end;
12119
3374e0f67f39 code changes to make the new bat animation work
alfadur
parents: 12094
diff changeset
   590
      gtShover: begin
3374e0f67f39 code changes to make the new bat animation work
alfadur
parents: 12094
diff changeset
   591
                gear^.Radius:= 20;
3374e0f67f39 code changes to make the new bat animation work
alfadur
parents: 12094
diff changeset
   592
                gear^.Tag:= 0;
12828
948eae885eac animation tweak
alfadur
parents: 12664
diff changeset
   593
                gear^.Timer:= 50;
12119
3374e0f67f39 code changes to make the new bat animation work
alfadur
parents: 12094
diff changeset
   594
                end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   595
       gtFlame: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   596
                gear^.Tag:= GetRandom(32);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   597
                gear^.Radius:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   598
                gear^.Health:= 5;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   599
                gear^.Density:= _1;
10589
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10518
diff changeset
   600
                gear^.FlightTime:= 9999999; // determines whether in-air flames do damage. disabled by default
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   601
                if (gear^.dY.QWordValue = 0) and (gear^.dX.QWordValue = 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   602
                    begin
7001
89488f5b99ca GetRandom -> GetRandomf
unc0rr
parents: 6982
diff changeset
   603
                    gear^.dY:= (getrandomf - _0_8) * _0_03;
89488f5b99ca GetRandom -> GetRandomf
unc0rr
parents: 6982
diff changeset
   604
                    gear^.dX:= (getrandomf - _0_5) * _0_4
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   605
                    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   606
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   607
   gtFirePunch: begin
9824
136e0708eda2 make punch usable with no gravity lua
nemo
parents: 9809
diff changeset
   608
                if gear^.Timer = 0 then gear^.Timer:= 3000;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   609
                gear^.Radius:= 15;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   610
                gear^.Tag:= Y
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   611
                end;
10032
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
   612
   gtAirAttack: begin
11171
546e75fdb879 Oups. 6, not 12 - was testing
nemo
parents: 11170
diff changeset
   613
                gear^.Health:= 6;
11170
22d8835beb4d Allow for arbitrary number of airstrike bombs and spacing.
nemo
parents: 11169
diff changeset
   614
                gear^.Damage:= 30;
10032
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
   615
                gear^.Z:= cHHZ+2;
15230
4576e41c0692 Add air plane underwater sound and add water splashes
Wuzzy <Wuzzy2@mail.ru>
parents: 15225
diff changeset
   616
                gear^.Karma:= 0; // for sound effect: 0 = normal, 1 = underwater
4576e41c0692 Add air plane underwater sound and add water splashes
Wuzzy <Wuzzy2@mail.ru>
parents: 15225
diff changeset
   617
                gear^.Radius:= 150;
15233
b189d6a2ecda Cleanup gtAirAttack behaviour in weWrap
Wuzzy <Wuzzy2@mail.ru>
parents: 15230
diff changeset
   618
                gear^.FlightTime:= 0; // for timeout in weWrap
b189d6a2ecda Cleanup gtAirAttack behaviour in weWrap
Wuzzy <Wuzzy2@mail.ru>
parents: 15230
diff changeset
   619
                gear^.Power:= 0; // count number of wraps in weWrap
b189d6a2ecda Cleanup gtAirAttack behaviour in weWrap
Wuzzy <Wuzzy2@mail.ru>
parents: 15230
diff changeset
   620
                gear^.WDTimer:= 0; // number of required wraps
15230
4576e41c0692 Add air plane underwater sound and add water splashes
Wuzzy <Wuzzy2@mail.ru>
parents: 15225
diff changeset
   621
                gear^.Density:= _19;
10032
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
   622
                gear^.Tint:= gear^.Hedgehog^.Team^.Clan^.Color shl 8 or $FF
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
   623
                end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   624
     gtAirBomb: begin
10891
a4c454ef80a6 enable bounce on rubber for air bombs. give them the missing elasticity they needed for the code there to work properly.
nemo
parents: 10889
diff changeset
   625
                gear^.AdvBounce:= 1;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   626
                gear^.Radius:= 5;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   627
                gear^.Density:= _2;
10891
a4c454ef80a6 enable bounce on rubber for air bombs. give them the missing elasticity they needed for the code there to work properly.
nemo
parents: 10889
diff changeset
   628
                gear^.Elasticity:= _0_55;
a4c454ef80a6 enable bounce on rubber for air bombs. give them the missing elasticity they needed for the code there to work properly.
nemo
parents: 10889
diff changeset
   629
                gear^.Friction:= _0_995
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   630
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   631
   gtBlowTorch: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   632
                gear^.Radius:= cHHRadius + cBlowTorchC;
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   633
                if gear^.Timer = 0 then gear^.Timer:= 7500
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   634
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   635
    gtSwitcher: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   636
                gear^.Z:= cCurrHHZ
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   637
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   638
      gtTarget: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   639
                gear^.ImpactSound:= sndGrenadeImpact;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   640
                gear^.nImpactSounds:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   641
                gear^.Radius:= 10;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   642
                gear^.Elasticity:= _0_3;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   643
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   644
      gtTardis: begin
15222
deaa316af414 TimeBox: Fix buggy behaviour if hog took damage or died before time box arrived
Wuzzy <Wuzzy2@mail.ru>
parents: 15210
diff changeset
   645
                gear^.Pos:= 1; // tardis phase
deaa316af414 TimeBox: Fix buggy behaviour if hog took damage or died before time box arrived
Wuzzy <Wuzzy2@mail.ru>
parents: 15210
diff changeset
   646
                gear^.Tag:= 0; // 1 = hedgehog died, disappeared, took damage or moved
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   647
                gear^.Z:= cCurrHHZ+1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   648
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   649
      gtMortar: begin
9721
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   650
                gear^.AdvBounce:= 1;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   651
                gear^.Radius:= 4;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   652
                gear^.Elasticity:= _0_2;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   653
                gear^.Friction:= _0_08;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   654
                gear^.Density:= _1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   655
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   656
        gtWhip: gear^.Radius:= 20;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   657
      gtHammer: gear^.Radius:= 20;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   658
    gtKamikaze: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   659
                gear^.Health:= 2048;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   660
                gear^.Radius:= 20
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   661
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   662
        gtCake: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   663
                gear^.Health:= 2048;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   664
                gear^.Radius:= 7;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   665
                gear^.Z:= cOnHHZ;
10875
67b92a09cded only display cake timer if it is low
sheepluva
parents: 10874
diff changeset
   666
                gear^.RenderTimer:= false;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   667
                gear^.DirAngle:= -90 * hwSign(Gear^.dX);
12641
f30b70976577 Fix cake taking >200s to explode when it's completely stuck and can't move (bug 194)
Wuzzy <almikes@aol.com>
parents: 12203
diff changeset
   668
                gear^.FlightTime:= 100; // (roughly) ticks spent dropping, used to skip getting up anim when stuck.
f30b70976577 Fix cake taking >200s to explode when it's completely stuck and can't move (bug 194)
Wuzzy <almikes@aol.com>
parents: 12203
diff changeset
   669
                                        // Initially set to a high value so cake has at least one getting up anim.
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   670
                if not dX.isNegative then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   671
                    gear^.Angle:= 1
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   672
                else
10874
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10848
diff changeset
   673
                    gear^.Angle:= 3;
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10848
diff changeset
   674
                New(cakeData);
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10848
diff changeset
   675
                gear^.Data:= Pointer(cakeData);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   676
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   677
 gtHellishBomb: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   678
                gear^.ImpactSound:= sndHellishImpact1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   679
                gear^.nImpactSounds:= 4;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   680
                gear^.AdvBounce:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   681
                gear^.Radius:= 4;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   682
                gear^.Elasticity:= _0_5;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   683
                gear^.Friction:= _0_96;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   684
                gear^.Density:= _1_5;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   685
                gear^.RenderTimer:= true;
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   686
                if gear^.Timer = 0 then gear^.Timer:= 5000
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   687
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   688
       gtDrill: begin
9721
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   689
                gear^.AdvBounce:= 1;
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   690
                gear^.Elasticity:= _0_8;
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   691
                gear^.Friction:= _0_8;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   692
                if gear^.Timer = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   693
                    gear^.Timer:= 5000;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   694
                // Tag for drill strike. if 1 then first impact occured already
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   695
                gear^.Tag := 0;
15038
01bb1d7ca14f Add drill rocket animation
Wuzzy <Wuzzy2@mail.ru>
parents: 14969
diff changeset
   696
                // Pos for state. If 1, drill is drilling
01bb1d7ca14f Add drill rocket animation
Wuzzy <Wuzzy2@mail.ru>
parents: 14969
diff changeset
   697
                gear^.Pos := 0;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   698
                gear^.Radius:= 4;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   699
                gear^.Density:= _1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   700
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   701
        gtBall: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   702
                gear^.ImpactSound:= sndGrenadeImpact;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   703
                gear^.nImpactSounds:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   704
                gear^.AdvBounce:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   705
                gear^.Radius:= 5;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   706
                gear^.Tag:= random(8);
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   707
                if gear^.Timer = 0 then gear^.Timer:= 5000;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   708
                gear^.Elasticity:= _0_7;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   709
                gear^.Friction:= _0_995;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   710
                gear^.Density:= _1_5;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   711
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   712
     gtBallgun: begin
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   713
                if gear^.Timer = 0 then gear^.Timer:= 5001;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   714
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   715
     gtRCPlane: begin
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   716
                if gear^.Timer = 0 then gear^.Timer:= 15000;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   717
                gear^.Health:= 3;
10032
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
   718
                gear^.Radius:= 8;
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
   719
                gear^.Tint:= gear^.Hedgehog^.Team^.Clan^.Color shl 8 or $FF
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   720
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   721
     gtJetpack: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   722
                gear^.Health:= 2000;
8987
47cf32305d99 some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents: 8795
diff changeset
   723
                gear^.Damage:= 100;
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   724
                gear^.State:= Gear^.State or gstSubmersible
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   725
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   726
     gtMolotov: begin
9825
de0da12b7d0e more advbounce flagging
nemo
parents: 9824
diff changeset
   727
                gear^.AdvBounce:= 1;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   728
                gear^.Radius:= 6;
12664
943b258d5443 Fix molotov cocktails bouncing off vertically off rubber
Wuzzy <almikes@aol.com>
parents: 12641
diff changeset
   729
                gear^.Elasticity:= _0_8;
943b258d5443 Fix molotov cocktails bouncing off vertically off rubber
Wuzzy <almikes@aol.com>
parents: 12641
diff changeset
   730
                gear^.Friction:= _0_8;
9825
de0da12b7d0e more advbounce flagging
nemo
parents: 9824
diff changeset
   731
                gear^.Density:= _2
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   732
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   733
       gtBirdy: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   734
                gear^.Radius:= 16; // todo: check
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   735
                gear^.Health := 2000;
14920
06af4f0a92bd Fix Birdy being drawn behind hogs and other gears (bug 453)
Wuzzy <Wuzzy2@mail.ru>
parents: 14765
diff changeset
   736
                gear^.FlightTime := 2;
14969
65be598c64b9 Fix Birdy stopping turn after dropping 1st egg
Wuzzy <Wuzzy2@mail.ru>
parents: 14920
diff changeset
   737
                gear^.Z:= cCurrHHZ;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   738
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   739
         gtEgg: begin
9721
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   740
                gear^.AdvBounce:= 1;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   741
                gear^.Radius:= 4;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   742
                gear^.Elasticity:= _0_6;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   743
                gear^.Friction:= _0_96;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   744
                gear^.Density:= _1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   745
                if gear^.Timer = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   746
                    gear^.Timer:= 3000
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   747
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   748
      gtPortal: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   749
                gear^.ImpactSound:= sndMelonImpact;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   750
                gear^.nImpactSounds:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   751
                gear^.Radius:= 17;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   752
                // set color
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   753
                gear^.Tag:= 2 * gear^.Timer;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   754
                gear^.Timer:= 15000;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   755
                gear^.RenderTimer:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   756
                gear^.Health:= 100;
13610
f1b6070a6e14 Fix projectiles reacing incorrectly with land just behind the wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 13605
diff changeset
   757
                gear^.Sticky:= true;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   758
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   759
       gtPiano: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   760
                gear^.Radius:= 32;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   761
                gear^.Density:= _50;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   762
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   763
 gtSineGunShot: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   764
                gear^.Radius:= 5;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   765
                gear^.Health:= 6000;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   766
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   767
gtFlamethrower: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   768
                gear^.Tag:= 10;
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   769
                if gear^.Timer = 0 then gear^.Timer:= 10;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   770
                gear^.Health:= 500;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   771
                gear^.Damage:= 100;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   772
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   773
     gtLandGun: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   774
                gear^.Tag:= 10;
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   775
                if gear^.Timer = 0 then gear^.Timer:= 10;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   776
                gear^.Health:= 1000;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   777
                gear^.Damage:= 100;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   778
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   779
 gtPoisonCloud: begin
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   780
                if gear^.Timer = 0 then gear^.Timer:= 5000;
15486
d668fcb9307e Add support for proper rendering of gtPoisonCloud with Timer > 5000
Wuzzy <Wuzzy2@mail.ru>
parents: 15233
diff changeset
   781
                gear^.WDTimer:= gear^.Timer; // initial timer
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   782
                gear^.dY:= int2hwfloat(-4 + longint(getRandom(8))) / 1000;
10032
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
   783
                gear^.Tint:= $C0C000C0
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   784
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   785
 gtResurrector: begin
15096
eff1a080cf40 Move resurrector and seduction distance to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 15038
diff changeset
   786
                gear^.Radius := cResurrectorDist;
10032
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
   787
                gear^.Tag := 0;
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
   788
                gear^.Tint:= $F5DB35FF
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   789
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   790
     gtWaterUp: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   791
                gear^.Tag := 47;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   792
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   793
  gtNapalmBomb: begin
9721
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   794
                gear^.Elasticity:= _0_8;
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9479
diff changeset
   795
                gear^.Friction:= _0_8;
9195
e653e96b0ec3 Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents: 9080
diff changeset
   796
                if gear^.Timer = 0 then gear^.Timer:= 1000;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   797
                gear^.Radius:= 5;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   798
                gear^.Density:= _1_5;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   799
                end;
8774
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8751
diff changeset
   800
      gtIceGun: begin
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8751
diff changeset
   801
                gear^.Health:= 1000;
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8751
diff changeset
   802
                gear^.Radius:= 8;
13572
a71e6856ffab Fix freeze ray not working through wrap world edge; add DrawLineWrapped
Wuzzy <Wuzzy2@mail.ru>
parents: 13464
diff changeset
   803
                gear^.Density:= _0;
13984
817dc8b67b0d Add ice beam idle sound
Wuzzy <Wuzzy2@mail.ru>
parents: 13851
diff changeset
   804
                gear^.Tag:= 0; // sound state: 0 = no sound, 1 = ice beam sound, 2 = idle sound
8774
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8751
diff changeset
   805
                end;
13851
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13850
diff changeset
   806
     gtCreeper: begin
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13850
diff changeset
   807
                // TODO: Finish creeper initialization implementation
13605
422d6062620a hijack the duck for an attempted resurrection of the creeper. initial pass.
nemo
parents: 13572
diff changeset
   808
                gear^.Radius:= cHHRadius;
422d6062620a hijack the duck for an attempted resurrection of the creeper. initial pass.
nemo
parents: 13572
diff changeset
   809
                gear^.Elasticity:= _0_35;
422d6062620a hijack the duck for an attempted resurrection of the creeper. initial pass.
nemo
parents: 13572
diff changeset
   810
                gear^.Friction:= _0_93;
422d6062620a hijack the duck for an attempted resurrection of the creeper. initial pass.
nemo
parents: 13572
diff changeset
   811
                gear^.Density:= _5;
422d6062620a hijack the duck for an attempted resurrection of the creeper. initial pass.
nemo
parents: 13572
diff changeset
   812
422d6062620a hijack the duck for an attempted resurrection of the creeper. initial pass.
nemo
parents: 13572
diff changeset
   813
                gear^.AdvBounce:= 1;
422d6062620a hijack the duck for an attempted resurrection of the creeper. initial pass.
nemo
parents: 13572
diff changeset
   814
                gear^.ImpactSound:= sndAirMineImpact;
422d6062620a hijack the duck for an attempted resurrection of the creeper. initial pass.
nemo
parents: 13572
diff changeset
   815
                gear^.nImpactSounds:= 1;
422d6062620a hijack the duck for an attempted resurrection of the creeper. initial pass.
nemo
parents: 13572
diff changeset
   816
                gear^.Health:= 30;
422d6062620a hijack the duck for an attempted resurrection of the creeper. initial pass.
nemo
parents: 13572
diff changeset
   817
                gear^.Radius:= 8;
13851
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13850
diff changeset
   818
                gear^.Angle:= 175; // Radius at which it will start "seeking". $FFFFFFFF = unlimited. check is skipped.
13605
422d6062620a hijack the duck for an attempted resurrection of the creeper. initial pass.
nemo
parents: 13572
diff changeset
   819
                gear^.Power:= cMaxWindSpeed.QWordValue div 2; // hwFloat converted. 1/2 g default. defines the "seek" speed when a gear is in range.
422d6062620a hijack the duck for an attempted resurrection of the creeper. initial pass.
nemo
parents: 13572
diff changeset
   820
                gear^.Pos:= cMaxWindSpeed.QWordValue * 3 div 2; // air friction. slows it down when not hitting stuff
422d6062620a hijack the duck for an attempted resurrection of the creeper. initial pass.
nemo
parents: 13572
diff changeset
   821
                if gear^.Timer = 0 then
422d6062620a hijack the duck for an attempted resurrection of the creeper. initial pass.
nemo
parents: 13572
diff changeset
   822
                    gear^.Timer:= 5000;
422d6062620a hijack the duck for an attempted resurrection of the creeper. initial pass.
nemo
parents: 13572
diff changeset
   823
                gear^.WDTimer:= gear^.Timer
12192
de9144250c37 Add gear gtDuck: rubber duck
Wuzzy <almikes@aol.com>
parents: 12169
diff changeset
   824
                end;
13154
44351ea57b71 Minigun: Move attack timer to Karma to make gear type more Lua-friendly
Wuzzy <Wuzzy2@mail.ru>
parents: 13096
diff changeset
   825
     gtMinigun: begin
44351ea57b71 Minigun: Move attack timer to Karma to make gear type more Lua-friendly
Wuzzy <Wuzzy2@mail.ru>
parents: 13096
diff changeset
   826
                // Timer. First, it's the timer before shooting. Then it will become the shooting timer and is set to Karma
44351ea57b71 Minigun: Move attack timer to Karma to make gear type more Lua-friendly
Wuzzy <Wuzzy2@mail.ru>
parents: 13096
diff changeset
   827
                if gear^.Timer = 0 then
44351ea57b71 Minigun: Move attack timer to Karma to make gear type more Lua-friendly
Wuzzy <Wuzzy2@mail.ru>
parents: 13096
diff changeset
   828
                    gear^.Timer:= 601;
44351ea57b71 Minigun: Move attack timer to Karma to make gear type more Lua-friendly
Wuzzy <Wuzzy2@mail.ru>
parents: 13096
diff changeset
   829
                // minigun shooting time. 1 bullet is fired every 50ms
44351ea57b71 Minigun: Move attack timer to Karma to make gear type more Lua-friendly
Wuzzy <Wuzzy2@mail.ru>
parents: 13096
diff changeset
   830
                gear^.Karma:= 3451;
12898
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12828
diff changeset
   831
                end;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12828
diff changeset
   832
 gtMinigunBullet: begin
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12828
diff changeset
   833
                gear^.Radius:= 1;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12828
diff changeset
   834
                gear^.Health:= 2;
15656
c34cad72cd85 downgrade sentries to miniguns
alfadur
parents: 15641
diff changeset
   835
                gear^.Karma:= 5; //impact radius
c34cad72cd85 downgrade sentries to miniguns
alfadur
parents: 15641
diff changeset
   836
                gear^.Pos:= 0; //uses non-global hit order
c34cad72cd85 downgrade sentries to miniguns
alfadur
parents: 15641
diff changeset
   837
                gear^.Data:= nil;
12898
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12828
diff changeset
   838
                end;
15639
afeffdb4a712 add sentry 🤖 stub
alfadur
parents: 15587
diff changeset
   839
        gtSentry: begin
afeffdb4a712 add sentry 🤖 stub
alfadur
parents: 15587
diff changeset
   840
                gear^.Radius:= cHHRadius;
15711
4a8a1dd9528a add smoking to damaged sentries
alfadur
parents: 15710
diff changeset
   841
                gear^.Health:= cSentryHealth;
15640
8416b08ffdbb add sentry walking cycle
alfadur
parents: 15639
diff changeset
   842
                gear^.Friction:= _0_93;
15710
7383256f8535 allow damaging sentries
alfadur
parents: 15656
diff changeset
   843
                gear^.Elasticity:= _0_05;
15640
8416b08ffdbb add sentry walking cycle
alfadur
parents: 15639
diff changeset
   844
                gear^.Tag:= 0;
15715
e0cdb6ae88ab add sentry deployment step
alfadur
parents: 15711
diff changeset
   845
                gear^.Timer:= 1000;
15641
8e93ce81e850 add current 🦔 targeting to sentry
alfadur
parents: 15640
diff changeset
   846
                gear^.WDTimer:= 0;
15639
afeffdb4a712 add sentry 🤖 stub
alfadur
parents: 15587
diff changeset
   847
                end;
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: 7366
diff changeset
   848
gtGenericFaller:begin
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: 7366
diff changeset
   849
                gear^.AdvBounce:= 1;
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: 7366
diff changeset
   850
                gear^.Radius:= 1;
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: 7366
diff changeset
   851
                gear^.Elasticity:= _0_9;
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: 7366
diff changeset
   852
                gear^.Friction:= _0_995;
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: 7366
diff changeset
   853
                gear^.Density:= _1;
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: 7366
diff changeset
   854
                end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   855
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   856
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   857
InsertGearToList(gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   858
AddGear:= gear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   859
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   860
ScriptCall('onGearAdd', gear^.uid);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   861
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   862
10646
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   863
procedure DeleteGear(Gear: PGear);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   864
var team: PTeam;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   865
    t,i: Longword;
10874
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10848
diff changeset
   866
    cakeData: PCakeData;
11043
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   867
    iterator: PGear;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   868
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   869
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   870
ScriptCall('onGearDelete', gear^.uid);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   871
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   872
DeleteCI(Gear);
14006
105793e575d6 make firepunch hit moving gears (airmines are not amused)
alfadur
parents: 13988
diff changeset
   873
RemoveFromProximityCache(Gear);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   874
10634
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10625
diff changeset
   875
FreeAndNilTexture(Gear^.Tex);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   876
11043
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   877
// remove potential links to this gear
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   878
// currently relevant to: gears linked by hammer
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   879
if (Gear^.Kind = gtHedgehog) or (Gear^.Kind = gtMine) or (Gear^.Kind = gtExplosives) then
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   880
    begin
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   881
    // check all gears for stuff to port through
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   882
    iterator := nil;
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   883
    while true do
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   884
        begin
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   885
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   886
        // iterate through GearsList
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   887
        if iterator = nil then
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   888
            iterator := GearsList
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   889
        else
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   890
            iterator := iterator^.NextGear;
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   891
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   892
        // end of list?
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   893
        if iterator = nil then
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   894
            break;
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   895
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   896
        if iterator^.LinkedGear = Gear then
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   897
            iterator^.LinkedGear:= nil;
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   898
        end;
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   899
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   900
    end;
79a77bef4c61 Hammer had been accessing dangling pointers under particular circumstances (e.g. when hitting a mine/barrel right when it exploded)
sheepluva
parents: 11036
diff changeset
   901
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   902
// make sure that portals have their link removed before deletion
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   903
if (Gear^.Kind = gtPortal) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   904
    begin
7272
71df899c4163 Second part of the change. Make collision check use the new mask bit.
nemo
parents: 7176
diff changeset
   905
    if (Gear^.LinkedGear <> nil) then
71df899c4163 Second part of the change. Make collision check use the new mask bit.
nemo
parents: 7176
diff changeset
   906
        if (Gear^.LinkedGear^.LinkedGear = Gear) then
71df899c4163 Second part of the change. Make collision check use the new mask bit.
nemo
parents: 7176
diff changeset
   907
            Gear^.LinkedGear^.LinkedGear:= nil;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   908
    end
10874
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10848
diff changeset
   909
else if Gear^.Kind = gtCake then
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10848
diff changeset
   910
    begin
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10848
diff changeset
   911
        cakeData:= PCakeData(Gear^.Data);
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10848
diff changeset
   912
        Dispose(cakeData);
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10848
diff changeset
   913
        cakeData:= nil;
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10848
diff changeset
   914
    end
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   915
else if Gear^.Kind = gtHedgehog then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   916
    (*
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   917
    This behaviour dates back to revision 4, and I accidentally encountered it with TARDIS.  I don't think it must apply to any modern weapon, since if it was actually hit, the best the gear could do would be to destroy itself immediately, and you'd still end up with two graves.  I believe it should be removed
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   918
     if (CurAmmoGear <> nil) and (CurrentHedgehog^.Gear = Gear) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   919
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   920
        AttackBar:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   921
        Gear^.Message:= gmDestroy;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   922
        CurAmmoGear^.Message:= gmDestroy;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   923
        exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   924
        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   925
    else*)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   926
        begin
10646
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   927
        if ((CurrentHedgehog = nil) or (Gear <> CurrentHedgehog^.Gear)) or (CurAmmoGear = nil) or (CurAmmoGear^.Kind <> gtKamikaze) then
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   928
            Gear^.Hedgehog^.Team^.Clan^.Flawless:= false;
10663
9bbb29d2bd68 remove a not that somehow magically appeared in a prior commit.
nemo
parents: 10646
diff changeset
   929
        if CheckCoordInWater(hwRound(Gear^.X), hwRound(Gear^.Y)) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   930
            begin
10646
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   931
            t:= max(Gear^.Damage, Gear^.Health);
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   932
            Gear^.Damage:= t;
13737
bbea77a8dff9 Fix damage not being displayed if hog drowns in water with 100% opacity (like in Compost theme)
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   933
            // Display hedgehog damage in water
bbea77a8dff9 Fix damage not being displayed if hog drowns in water with 100% opacity (like in Compost theme)
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   934
            spawnHealthTagForHH(Gear, t);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   935
            end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   936
10646
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   937
        team:= Gear^.Hedgehog^.Team;
10636
aba9ae27ead0 meh. will persevere. DeleteGear can't call that much stuff...
nemo
parents: 10634
diff changeset
   938
        if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Gear = Gear) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   939
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   940
            AttackBar:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   941
            FreeActionsList; // to avoid ThinkThread on drawned gear
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   942
            if ((Ammoz[CurrentHedgehog^.CurAmmoType].Ammo.Propz and ammoprop_NoRoundEnd) <> 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   943
            and (CurrentHedgehog^.MultiShootAttacks > 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   944
                OnUsedAmmo(CurrentHedgehog^);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   945
            end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   946
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   947
        Gear^.Hedgehog^.Gear:= nil;
10646
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   948
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   949
        if Gear^.Hedgehog^.King then
15210
f783f5d55717 King Mode: Fix whole clan being killed when king died
Wuzzy <Wuzzy2@mail.ru>
parents: 15146
diff changeset
   950
            // If king died, kill the rest of the team
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   951
            begin
15210
f783f5d55717 King Mode: Fix whole clan being killed when king died
Wuzzy <Wuzzy2@mail.ru>
parents: 15146
diff changeset
   952
            with Gear^.Hedgehog^.Team^ do
f783f5d55717 King Mode: Fix whole clan being killed when king died
Wuzzy <Wuzzy2@mail.ru>
parents: 15146
diff changeset
   953
                begin
f783f5d55717 King Mode: Fix whole clan being killed when king died
Wuzzy <Wuzzy2@mail.ru>
parents: 15146
diff changeset
   954
                Gear^.Hedgehog^.Team^.hasKing:= false;
f783f5d55717 King Mode: Fix whole clan being killed when king died
Wuzzy <Wuzzy2@mail.ru>
parents: 15146
diff changeset
   955
                for t:= 0 to cMaxHHIndex do
f783f5d55717 King Mode: Fix whole clan being killed when king died
Wuzzy <Wuzzy2@mail.ru>
parents: 15146
diff changeset
   956
                    if Hedgehogs[t].Gear <> nil then
f783f5d55717 King Mode: Fix whole clan being killed when king died
Wuzzy <Wuzzy2@mail.ru>
parents: 15146
diff changeset
   957
                        Hedgehogs[t].Gear^.Health:= 0
f783f5d55717 King Mode: Fix whole clan being killed when king died
Wuzzy <Wuzzy2@mail.ru>
parents: 15146
diff changeset
   958
                    else if (Hedgehogs[t].GearHidden <> nil) then
f783f5d55717 King Mode: Fix whole clan being killed when king died
Wuzzy <Wuzzy2@mail.ru>
parents: 15146
diff changeset
   959
                        Hedgehogs[t].GearHidden^.Health:= 0  // Hog is still hidden. If tardis should return though, Lua, eh ...
f783f5d55717 King Mode: Fix whole clan being killed when king died
Wuzzy <Wuzzy2@mail.ru>
parents: 15146
diff changeset
   960
                end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   961
            end;
10646
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   962
14616
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   963
        // Update passive status of clan
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   964
        if (not Gear^.Hedgehog^.Team^.Clan^.Passive) then
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   965
            begin
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   966
            Gear^.Hedgehog^.Team^.Clan^.Passive:= true;
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   967
            for i:= 0 to Pred(team^.Clan^.TeamsNumber) do
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   968
                begin
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   969
                with team^.Clan^.Teams[i]^ do
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   970
                    if (not Passive) then
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   971
                        for t:= 0 to cMaxHHIndex do
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   972
                            if (Hedgehogs[t].Gear <> nil) or (Hedgehogs[t].GearHidden <> nil) then
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   973
                                begin
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   974
                                Gear^.Hedgehog^.Team^.Clan^.Passive:= false;
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   975
                                break;
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   976
                                end;
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   977
                if (not Gear^.Hedgehog^.Team^.Clan^.Passive) then
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   978
                    break;
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   979
                end;
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   980
            end;
4638aa2ea8f2 Update clan passive status when team died / got resurrected
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   981
10646
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   982
        // should be not CurrentHedgehog, but hedgehog of the last gear which caused damage to this hog
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   983
        // same stand for CheckHHDamage
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   984
        if (Gear^.LastDamage <> nil) and (CurrentHedgehog <> nil) then
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   985
            uStats.HedgehogDamaged(Gear, Gear^.LastDamage, 0, true)
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   986
        else if CurrentHedgehog <> nil then
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   987
            uStats.HedgehogDamaged(Gear, CurrentHedgehog, 0, true);
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   988
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   989
        inc(KilledHHs);
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   990
        RecountTeamHealth(team);
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   991
        if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Effects[heResurrectable] <> 0)  and
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   992
        //(Gear^.Hedgehog^.Effects[heResurrectable] = 0) then
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   993
        (Gear^.Hedgehog^.Team^.Clan <> CurrentHedgehog^.Team^.Clan) then
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   994
            with CurrentHedgehog^ do
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   995
                begin
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   996
                inc(Team^.stats.AIKills);
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   997
                FreeAndNilTexture(Team^.AIKillsTex);
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   998
                Team^.AIKillsTex := RenderStringTex(ansistring(inttostr(Team^.stats.AIKills)), Team^.Clan^.Color, fnt16);
0be6442946b1 put back the old uteams cleanup, leaks and all, to worry about post-release since my attempt to use DeleteGear was running into the fact that that procedure does way more than just delete a gear. might need an explicit cleanup routine for both to call.
nemo
parents: 10645
diff changeset
   999
                end
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1000
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1001
with Gear^ do
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: 7366
diff changeset
  1002
    begin
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1003
    AddFileLog('Delete: #' + inttostr(uid) + ' (' + inttostr(hwRound(x)) + ',' + inttostr(hwRound(y)) + '), d(' + floattostr(dX) + ',' + floattostr(dY) + ') type = ' + EnumToStr(Kind));
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: 7366
diff changeset
  1004
    AddRandomness(X.round xor X.frac xor dX.round xor dX.frac xor Y.round xor Y.frac xor dY.round xor dY.frac)
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: 7366
diff changeset
  1005
    end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1006
if CurAmmoGear = Gear then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1007
    CurAmmoGear:= nil;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1008
if FollowGear = Gear then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1009
    FollowGear:= nil;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1010
if lastGearByUID = Gear then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1011
    lastGearByUID := nil;
10638
99975e1860d2 oh, probably need nil checks here too
nemo
parents: 10636
diff changeset
  1012
if (Gear^.Hedgehog = nil) or (Gear^.Hedgehog^.GearHidden <> Gear) then // hidden hedgehogs shouldn't be in the list
10639
992863acb2b7 sheepluva is right
nemo
parents: 10638
diff changeset
  1013
     RemoveGearFromList(Gear)
992863acb2b7 sheepluva is right
nemo
parents: 10638
diff changeset
  1014
else Gear^.Hedgehog^.GearHidden:= nil;
10638
99975e1860d2 oh, probably need nil checks here too
nemo
parents: 10636
diff changeset
  1015
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1016
Dispose(Gear)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1017
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1018
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1019
end.