hedgewars/uGearsHedgehog.pas
author nemo
Sun, 03 Mar 2013 14:58:58 -0500
changeset 8631 796ed875aa95
parent 8616 c4536e98c712
child 8632 b5ed76d2a1f9
permissions -rw-r--r--
Call act as if attack ended on last shot if switching while in mid multi-shoot. Thanks to AI for discovering this.
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
6700
e04da46ee43c the most important commit of the year
koda
parents: 6581
diff changeset
     3
 * Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com>
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     4
 *
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     8
 *
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    12
 * GNU General Public License for more details.
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    13
 *
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    14
 * You should have received a copy of the GNU General Public License
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    15
 * along with this program; if not, write to the Free Software
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    17
 *)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    18
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    19
{$INCLUDE "options.inc"}
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    20
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    21
unit uGearsHedgehog;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    22
interface
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    23
uses uTypes;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    24
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    25
procedure doStepHedgehog(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    26
procedure AfterAttack; 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    27
procedure HedgehogStep(Gear: PGear); 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    28
procedure doStepHedgehogMoving(Gear: PGear); 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    29
procedure HedgehogChAngle(HHGear: PGear); 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    30
procedure PickUp(HH, Gear: PGear);
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: 7375
diff changeset
    31
procedure AddPickup(HH: THedgehog; ammo: TAmmoType; cnt, X, Y: LongWord);
8574
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
    32
procedure CheckIce(Gear: PGear); inline;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    33
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    34
implementation
6992
b8f3d8991e92 marked a couple of functions as inline
koda
parents: 6982
diff changeset
    35
uses uConsts, uVariables, uFloat, uAmmos, uSound, uCaptions, 
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    36
    uCommands, uLocale, uUtils, uVisualGears, uStats, uIO, uScript,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    37
    uGearsList, uGears, uCollisions, uRandom, uStore, uTeams, 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    38
    uGearsUtils;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    39
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
    40
var GHStepTicks: LongWord = 0;
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
    41
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    42
// Shouldn't more of this ammo switching stuff be moved to uAmmos ?
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    43
function ChangeAmmo(HHGear: PGear): boolean;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    44
var slot, i: Longword;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    45
    ammoidx: LongInt;
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7738
diff changeset
    46
    prevAmmo: TAmmoType;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    47
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    48
ChangeAmmo:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    49
slot:= HHGear^.MsgParam;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    50
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    51
with HHGear^.Hedgehog^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    52
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    53
    HHGear^.Message:= HHGear^.Message and (not gmSlot);
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7738
diff changeset
    54
    prevAmmo:= CurAmmoType;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    55
    ammoidx:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    56
    if ((HHGear^.State and (gstAttacking or gstAttacked)) <> 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    57
    or ((HHGear^.State and gstHHDriven) = 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    58
        exit;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    59
    ChangeAmmo:= true;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    60
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    61
    while (ammoidx < cMaxSlotAmmoIndex) and (Ammo^[slot, ammoidx].AmmoType <> CurAmmoType) do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    62
        inc(ammoidx);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    63
8553
a8e1cff496d8 Allow switching away from any weapon when during multishoot.
nemo
parents: 8494
diff changeset
    64
    if (MultiShootAttacks > 0) then
a8e1cff496d8 Allow switching away from any weapon when during multishoot.
nemo
parents: 8494
diff changeset
    65
        begin
a8e1cff496d8 Allow switching away from any weapon when during multishoot.
nemo
parents: 8494
diff changeset
    66
        if (CurAmmoType = amSniperRifle) and ((GameFlags and gfArtillery) = 0) then
a8e1cff496d8 Allow switching away from any weapon when during multishoot.
nemo
parents: 8494
diff changeset
    67
            cArtillery := false;
8631
796ed875aa95 Call act as if attack ended on last shot if switching while in mid multi-shoot. Thanks to AI for discovering this.
nemo
parents: 8616
diff changeset
    68
        if (Ammoz[CurAmmoType].Ammo.Propz and ammoprop_NoRoundEnd) = 0 then
796ed875aa95 Call act as if attack ended on last shot if switching while in mid multi-shoot. Thanks to AI for discovering this.
nemo
parents: 8616
diff changeset
    69
            begin
796ed875aa95 Call act as if attack ended on last shot if switching while in mid multi-shoot. Thanks to AI for discovering this.
nemo
parents: 8616
diff changeset
    70
            MultiShootAttacks:= Ammoz[CurAmmoType].Ammo.NumPerTurn;
796ed875aa95 Call act as if attack ended on last shot if switching while in mid multi-shoot. Thanks to AI for discovering this.
nemo
parents: 8616
diff changeset
    71
            AfterAttack
796ed875aa95 Call act as if attack ended on last shot if switching while in mid multi-shoot. Thanks to AI for discovering this.
nemo
parents: 8616
diff changeset
    72
            end
796ed875aa95 Call act as if attack ended on last shot if switching while in mid multi-shoot. Thanks to AI for discovering this.
nemo
parents: 8616
diff changeset
    73
        else OnUsedAmmo(HHGear^.Hedgehog^)
8553
a8e1cff496d8 Allow switching away from any weapon when during multishoot.
nemo
parents: 8494
diff changeset
    74
        end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    75
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    76
    MultiShootAttacks:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    77
    HHGear^.Message:= HHGear^.Message and (not (gmLJump or gmHJump));
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    78
    
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    79
    if Ammoz[CurAmmoType].Slot = slot then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    80
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    81
        i:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    82
        repeat
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    83
        inc(ammoidx);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    84
        if (ammoidx > cMaxSlotAmmoIndex) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    85
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    86
            inc(i);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    87
            CurAmmoType:= amNothing;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    88
            ammoidx:= -1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    89
            //TryDo(i < 2, 'Engine bug: no ammo in current slot', true)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    90
            end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    91
        until (i = 1) or ((Ammo^[slot, ammoidx].Count > 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    92
        and (Team^.Clan^.TurnNumber > Ammoz[Ammo^[slot, ammoidx].AmmoType].SkipTurns))
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    93
        
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    94
        end 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    95
    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    96
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    97
        i:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    98
        // check whether there is ammo in slot
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    99
        while (i <= cMaxSlotAmmoIndex) and ((Ammo^[slot, i].Count = 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   100
        or (Team^.Clan^.TurnNumber <= Ammoz[Ammo^[slot, i].AmmoType].SkipTurns))
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   101
            do inc(i);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   102
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   103
        if i <= cMaxSlotAmmoIndex then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   104
            ammoidx:= i
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   105
        else ammoidx:= -1
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   106
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   107
        if ammoidx >= 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   108
            CurAmmoType:= Ammo^[slot, ammoidx].AmmoType;
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7738
diff changeset
   109
    if (prevAmmo <> CurAmmoType) then
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7738
diff changeset
   110
        begin
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7738
diff changeset
   111
        if CurAmmoType = amKnife then
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7738
diff changeset
   112
            LoadHedgehogHat(HHGear^.Hedgehog^, 'Reserved/chef')
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7738
diff changeset
   113
        else if prevAmmo = amKnife then
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7738
diff changeset
   114
            LoadHedgehogHat(HHGear^.Hedgehog^, Hat);
8051
f26422ef0333 oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents: 8030
diff changeset
   115
        end;
f26422ef0333 oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents: 8030
diff changeset
   116
    // Try again in the next slot
f26422ef0333 oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents: 8030
diff changeset
   117
    if CurAmmoType = prevAmmo then 
f26422ef0333 oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents: 8030
diff changeset
   118
        begin
f26422ef0333 oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents: 8030
diff changeset
   119
        if slot >= cMaxSlotIndex then slot:= 0 else inc(slot);
f26422ef0333 oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents: 8030
diff changeset
   120
        HHGear^.MsgParam:= slot;
f26422ef0333 oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents: 8030
diff changeset
   121
        ChangeAmmo(HHGear)
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7738
diff changeset
   122
        end
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   123
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   124
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   125
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   126
procedure HHSetWeapon(HHGear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   127
var t: LongInt;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   128
    weap: TAmmoType;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   129
    Hedgehog: PHedgehog;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   130
    s: boolean;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   131
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   132
s:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   133
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   134
weap:= TAmmoType(HHGear^.MsgParam);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   135
Hedgehog:= HHGear^.Hedgehog;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   136
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   137
if Hedgehog^.Team^.Clan^.TurnNumber <= Ammoz[weap].SkipTurns then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   138
    exit; // weapon is not activated yet
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   139
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   140
HHGear^.MsgParam:= Ammoz[weap].Slot;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   141
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   142
t:= cMaxSlotAmmoIndex;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   143
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   144
HHGear^.Message:= HHGear^.Message and (not gmWeapon);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   145
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   146
with Hedgehog^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   147
    while (CurAmmoType <> weap) and (t >= 0) do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   148
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   149
        s:= ChangeAmmo(HHGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   150
        dec(t)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   151
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   152
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   153
if s then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   154
    ApplyAmmoChanges(HHGear^.Hedgehog^)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   155
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   156
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   157
procedure HHSetTimer(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   158
var CurWeapon: PAmmo;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   159
    color: LongWord;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   160
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   161
Gear^.Message:= Gear^.Message and (not gmTimer);
6924
57b66ee3bff3 Get rid of overloaded functions in uAmmo
unc0rr
parents: 6700
diff changeset
   162
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   163
with Gear^.Hedgehog^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   164
    if ((Gear^.Message and gmPrecise) <> 0) and ((CurWeapon^.Propz and ammoprop_SetBounce) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   165
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   166
        color:= Gear^.Hedgehog^.Team^.Clan^.Color;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   167
        case Gear^.MsgParam of
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   168
            1: begin
7069
bcf9d8e64e92 pas2c stuff again
unc0rr
parents: 7067
diff changeset
   169
               AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce1]), color, capgrpAmmostate);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   170
               CurWeapon^.Bounciness:= 350;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   171
               end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   172
            2: begin
7069
bcf9d8e64e92 pas2c stuff again
unc0rr
parents: 7067
diff changeset
   173
               AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce2]), color, capgrpAmmostate);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   174
               CurWeapon^.Bounciness:= 700;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   175
               end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   176
            3: begin
7069
bcf9d8e64e92 pas2c stuff again
unc0rr
parents: 7067
diff changeset
   177
               AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce3]), color, capgrpAmmostate);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   178
               CurWeapon^.Bounciness:= 1000;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   179
               end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   180
            4: begin
7069
bcf9d8e64e92 pas2c stuff again
unc0rr
parents: 7067
diff changeset
   181
               AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce4]), color, capgrpAmmostate);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   182
               CurWeapon^.Bounciness:= 2000;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   183
               end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   184
            5: begin
7069
bcf9d8e64e92 pas2c stuff again
unc0rr
parents: 7067
diff changeset
   185
               AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce5]), color, capgrpAmmostate);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   186
               CurWeapon^.Bounciness:= 4000;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   187
               end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   188
            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   189
        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   190
    else if (CurWeapon^.Propz and ammoprop_Timerable) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   191
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   192
        CurWeapon^.Timer:= 1000 * Gear^.MsgParam;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   193
        with CurrentTeam^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   194
            ApplyAmmoChanges(Hedgehogs[CurrHedgehog]);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   195
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   196
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   197
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   198
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   199
procedure Attack(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   200
var xx, yy, newDx, newDy, lx, ly: hwFloat;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   201
    speech: PVisualGear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   202
    newGear:  PGear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   203
    CurWeapon: PAmmo;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   204
    altUse: boolean;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   205
    elastic: hwFloat;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   206
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   207
newGear:= nil;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   208
bShowFinger:= false;
6924
57b66ee3bff3 Get rid of overloaded functions in uAmmo
unc0rr
parents: 6700
diff changeset
   209
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   210
with Gear^,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   211
    Gear^.Hedgehog^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   212
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   213
        if ((State and gstHHDriven) <> 0) and ((State and (gstAttacked or gstHHChooseTarget)) = 0) and (((State and gstMoving) = 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   214
        or (Power > 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   215
        or (CurAmmoType = amTeleport)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   216
        or 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   217
        // Allow attacks while moving on ammo with AltAttack
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   218
        ((CurAmmoGear <> nil) and ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0))
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   219
        or ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AttackInMove) <> 0))
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   220
        and ((TargetPoint.X <> NoPointX) or ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_NeedTarget) = 0)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   221
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   222
            State:= State or gstAttacking;
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   223
            if (Power = cMaxPower) or ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_Power) = 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   224
                Message:= Message and (not gmAttack)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   225
            else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   226
                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   227
                if Power = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   228
                    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   229
                    AttackBar:= CurrentTeam^.AttackBar;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   230
                    PlaySound(sndThrowPowerUp)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   231
                    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   232
                inc(Power)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   233
                end;
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   234
            if ((Message and gmAttack) <> 0) then
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   235
                exit;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   236
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   237
            if (Ammoz[CurAmmoType].Ammo.Propz and ammoprop_Power) <> 0 then
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   238
                begin
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   239
                StopSound(sndThrowPowerUp);
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   240
                PlaySound(sndThrowRelease);
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   241
                end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   242
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   243
            xx:= SignAs(AngleSin(Angle), dX);
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   244
            yy:= -AngleCos(Angle);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   245
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   246
            lx:= X + int2hwfloat(round(GetLaunchX(CurAmmoType, hwSign(dX), Angle)));
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   247
            ly:= Y + int2hwfloat(round(GetLaunchY(CurAmmoType, Angle)));
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   248
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   249
            if ((Gear^.State and gstHHHJump) <> 0) and (not cArtillery) then
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   250
                xx:= - xx;
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   251
            if Ammoz[CurAmmoType].Ammo.AttackVoice <> sndNone then
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   252
                AddVoice(Ammoz[CurAmmoType].Ammo.AttackVoice, CurrentTeam^.voicepack);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   253
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   254
// Initiating alt attack
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   255
            if  (CurAmmoGear <> nil)
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   256
            and ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0)
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   257
            and ((Gear^.Message and gmLJump) <> 0)
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   258
            and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AltUse) <> 0) then
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   259
                begin
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   260
                newDx:= dX; 
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   261
                newDy:= dY;
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   262
                altUse:= true
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   263
                end
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   264
            else
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   265
                begin
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   266
                newDx:= xx*Power/cPowerDivisor;
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   267
                newDy:= yy*Power/cPowerDivisor;
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   268
                altUse:= false
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   269
                end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   270
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   271
            case CurAmmoType of
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   272
                      amGrenade: newGear:= AddGear(hwRound(lx), hwRound(ly), gtGrenade,         0, newDx, newDy, CurWeapon^.Timer);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   273
                      amMolotov: newGear:= AddGear(hwRound(lx), hwRound(ly), gtMolotov,      0, newDx, newDy, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   274
                  amClusterBomb: newGear:= AddGear(hwRound(lx), hwRound(ly), gtClusterBomb,  0, newDx, newDy, CurWeapon^.Timer);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   275
                      amGasBomb: newGear:= AddGear(hwRound(lx), hwRound(ly), gtGasBomb,      0, newDx, newDy, CurWeapon^.Timer);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   276
                      amBazooka: newGear:= AddGear(hwRound(lx), hwRound(ly), gtShell,        0, newDx, newDy, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   277
                     amSnowball: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSnowball,     0, newDx, newDy, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   278
                          amBee: newGear:= AddGear(hwRound(lx), hwRound(ly), gtBee,          0, newDx, newDy, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   279
                      amShotgun: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   280
                                 PlaySound(sndShotgunReload);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   281
                                 newGear:= AddGear(hwRound(lx), hwRound(ly), gtShotgunShot,  0, xx * _0_5, yy * _0_5, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   282
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   283
                   amPickHammer: newGear:= AddGear(hwRound(lx), hwRound(ly) + cHHRadius, gtPickHammer, 0, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   284
                         amSkip: ParseCommand('/skip', true);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   285
                         amRope: newGear:= AddGear(hwRound(lx), hwRound(ly), gtRope, 0, xx, yy, 0);
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: 7598
diff changeset
   286
                         amMine: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 7, hwRound(ly), gtMine, gstWait, SignAs(_0_02, dX), _0, 3000);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   287
                        amSMine: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSMine,    0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0);
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7738
diff changeset
   288
                        amKnife: begin 
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7738
diff changeset
   289
                                 newGear:= AddGear(hwRound(lx), hwRound(ly), gtKnife,    0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0);
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7738
diff changeset
   290
                                 newGear^.State:= newGear^.State or gstMoving; 
8494
53b91a602955 Cleaver tweaks based on feedback. Nerf damage, shrink radius. This means cleaver will embed into ground quite a bit further.
nemo
parents: 8493
diff changeset
   291
                                 newGear^.Radius:= 4 // temporarily shrink so it doesn't instantly embed in the ground
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7738
diff changeset
   292
                                 end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   293
                       amDEagle: newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtDEagleShot, 0, xx * _0_5, yy * _0_5, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   294
                      amSineGun: newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtSineGunShot, 0, xx * _0_5, yy * _0_5, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   295
                    amPortalGun: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   296
                                 newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtPortal, 0, xx * _0_6, yy * _0_6, 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   297
                                 // set selected color
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   298
                                 CurWeapon^.Pos);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   299
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   300
                  amSniperRifle: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   301
                                 PlaySound(sndSniperReload);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   302
                                 newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtSniperRifleShot, 0, xx * _0_5, yy * _0_5, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   303
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   304
                     amDynamite: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 7, hwRound(ly), gtDynamite, 0, SignAs(_0_03, dX), _0, 5000);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   305
                    amFirePunch: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtFirePunch, 0, xx, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   306
                         amWhip: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   307
                                 newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtWhip, 0, SignAs(_1, dX), - _0_8, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   308
                                 PlaySound(sndWhipCrack)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   309
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   310
                       amHammer: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   311
                                 newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtHammer, 0, SignAs(_1, dX), - _0_8, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   312
                                 PlaySound(sndWhack)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   313
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   314
                  amBaseballBat: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   315
                                 newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtShover, gsttmpFlag, xx * _0_5, yy * _0_5, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   316
                                 PlaySound(sndBaseballBat) // TODO: Only play if something is hit?
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   317
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   318
                    amParachute: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   319
                                 newGear:= AddGear(hwRound(lx), hwRound(ly), gtParachute, 0, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   320
                                 PlaySound(sndParachute)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   321
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   322
                    // we save CurWeapon^.Pos (in this case: cursor direction) by using it as (otherwise irrelevant) X value of the new gear.
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   323
                    amAirAttack: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 0, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   324
                   amMineStrike: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 1, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   325
                  amDrillStrike: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 3, _0, _0, CurWeapon^.Timer);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   326
                       amNapalm: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 2, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   327
                    amBlowTorch: newGear:= AddGear(hwRound(lx), hwRound(ly), gtBlowTorch, 0, SignAs(_0_5, dX), _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   328
                       amGirder: newGear:= AddGear(0, 0, gtGirder, CurWeapon^.Pos, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   329
                     amTeleport: newGear:= AddGear(CurWeapon^.Pos, 0, gtTeleport, 0, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   330
                       amSwitch: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSwitcher, 0, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   331
                       amMortar: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   332
                                 playSound(sndMortar);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   333
                                 newGear:= AddGear(hwRound(lx), hwRound(ly), gtMortar,  0, xx*cMaxPower/cPowerDivisor, yy*cMaxPower/cPowerDivisor, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   334
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   335
                      amRCPlane: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   336
                                 newGear:= AddGear(hwRound(lx), hwRound(ly), gtRCPlane,  0, xx * cMaxPower / cPowerDivisor / 4, yy * cMaxPower / cPowerDivisor / 4, 0);
7053
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7028
diff changeset
   337
                                 newGear^.SoundChannel:= LoopSound(sndRCPlane)
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   338
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   339
                     amKamikaze: newGear:= AddGear(hwRound(lx), hwRound(ly), gtKamikaze, 0, xx * _0_5, yy * _0_5, 0);
7832
0bd39a4b1a65 Fix cake splashing bug (issue 429)
unc0rr
parents: 7786
diff changeset
   340
                         amCake: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 3, hwRound(ly), gtCake, 0, SignAs(cLittle, xx), _0, 0);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   341
                    amSeduction: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSeduction, 0, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   342
                   amWatermelon: newGear:= AddGear(hwRound(lx), hwRound(ly), gtWatermelon,  0, newDx, newDy, CurWeapon^.Timer);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   343
                  amHellishBomb: newGear:= AddGear(hwRound(lx), hwRound(ly), gtHellishBomb,    0, newDx, newDy, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   344
                        amDrill: newGear:= AddGear(hwRound(lx), hwRound(ly), gtDrill, 0, newDx, newDy, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   345
                      amBallgun: newGear:= AddGear(hwRound(X), hwRound(Y), gtBallgun,  0, xx * _0_5, yy * _0_5, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   346
                      amJetpack: newGear:= AddGear(hwRound(lx), hwRound(ly), gtJetpack, 0, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   347
                        amBirdy: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   348
                             PlaySound(sndWhistle);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   349
                             newGear:= AddGear(hwRound(lx), hwRound(ly) - 32, gtBirdy, 0, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   350
                             end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   351
                   amLowGravity: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   352
                                 PlaySound(sndLowGravity);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   353
                                 cGravity:= cMaxWindSpeed;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   354
                                 cGravityf:= 0.00025
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   355
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   356
                  amExtraDamage: begin 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   357
                                 PlaySound(sndHellishImpact4);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   358
                                 cDamageModifier:= _1_5
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   359
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   360
                 amInvulnerable: Invulnerable:= true;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   361
                    amExtraTime: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   362
                                 PlaySound(sndSwitchHog);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   363
                                 TurnTimeLeft:= TurnTimeLeft + 30000
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   364
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   365
                   amLaserSight: cLaserSighting:= true;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   366
                     amVampiric: begin
7053
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7028
diff changeset
   367
                                 PlaySoundV(sndOw1, Team^.voicepack);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   368
                                 cVampiric:= true;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   369
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   370
                        amPiano: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   371
                                 // Tuck the hedgehog away until the piano attack is completed
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   372
                                 Unplaced:= true;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   373
                                 X:= _0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   374
                                 Y:= _0;
8414
c1ac0b64315e Start piano higher (piano on maps that matched land_height was really weird before). Experiment w/ trying to make birdy shrink into distance to avoid odd birdy vanishes if tracking it.
nemo
parents: 8161
diff changeset
   375
                                 newGear:= AddGear(TargetPoint.X, -1024, gtPiano, 0, _0, _0, 0);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   376
                                 PauseMusic
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   377
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   378
                 amFlamethrower: newGear:= AddGear(hwRound(X), hwRound(Y), gtFlamethrower,  0, xx * _0_5, yy * _0_5, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   379
                      amLandGun: newGear:= AddGear(hwRound(X), hwRound(Y), gtLandGun,  0, xx * _0_5, yy * _0_5, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   380
                  amResurrector: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   381
                                 newGear:= AddGear(hwRound(lx), hwRound(ly), gtResurrector, 0, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   382
                                 newGear^.SoundChannel := LoopSound(sndResurrector);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   383
                                 end;
8161
0b8beacff8a5 GCI2012: Remove Structure Weapon Code
deepdog
parents: 8051
diff changeset
   384
                    //amStructure: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 7, hwRound(ly), gtStructure, gstWait, SignAs(_0_02, dX), _0, 3000);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   385
                       amTardis: newGear:= AddGear(hwRound(X), hwRound(Y), gtTardis, 0, _0, _0, 5000);
8557
18330b24b92c Add freezing hogs with icegun
Urbertar@gmail.com
parents: 8494
diff changeset
   386
                       amIceGun: begin
18330b24b92c Add freezing hogs with icegun
Urbertar@gmail.com
parents: 8494
diff changeset
   387
                       newGear:= AddGear(hwRound(X), hwRound(Y), gtIceGun, 0, _0, _0, 0);
18330b24b92c Add freezing hogs with icegun
Urbertar@gmail.com
parents: 8494
diff changeset
   388
                       newGear^.radius := 8;
18330b24b92c Add freezing hogs with icegun
Urbertar@gmail.com
parents: 8494
diff changeset
   389
                       end;
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   390
            end;
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   391
            if altUse and (newGear <> nil) then
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   392
               begin
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   393
               newGear^.dX:= newDx / newGear^.Density;
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   394
               newGear^.dY:= newDY / newGear^.Density
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   395
               end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   396
             
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   397
            case CurAmmoType of
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   398
                     amGrenade, amMolotov, 
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   399
                 amClusterBomb, amGasBomb, 
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   400
                     amBazooka, amSnowball, 
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   401
                         amBee, amSMine,
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   402
                      amMortar, amWatermelon,
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   403
                 amHellishBomb, amDrill: FollowGear:= newGear;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   404
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   405
                     amShotgun, amPickHammer,
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   406
                        amRope, amDEagle,
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   407
                     amSineGun, amSniperRifle,
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   408
                   amFirePunch, amWhip,
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   409
                      amHammer, amBaseballBat,
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   410
                   amParachute, amBlowTorch,
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   411
                      amGirder, amTeleport,
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   412
                      amSwitch, amRCPlane,
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   413
                    amKamikaze, amCake,
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   414
                   amSeduction, amBallgun,
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   415
                     amJetpack, amBirdy,
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   416
                amFlamethrower, amLandGun,
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   417
                 amResurrector, //amStructure,
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   418
                      amTardis, amPiano,
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   419
                      amIceGun: CurAmmoGear:= newGear;
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   420
            end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   421
             
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   422
            if ((CurAmmoType = amMine) or (CurAmmoType = amSMine)) and (GameFlags and gfInfAttack <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   423
                newGear^.FlightTime:= GameTicks + 1000
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   424
            else if CurAmmoType = amDrill then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   425
                newGear^.FlightTime:= GameTicks + 250;
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   426
            if Ammoz[CurAmmoType].Ammo.Propz and ammoprop_NeedTarget <> 0 then
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   427
                begin
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   428
                newGear^.Target.X:= TargetPoint.X;
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   429
                newGear^.Target.Y:= TargetPoint.Y
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   430
                end;
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   431
            if (newGear <> nil) and (newGear^.CollisionMask and $80 <> 0) then newGear^.CollisionMask:= newGear^.CollisionMask and (not $80);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   432
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   433
            // Clear FollowGear if using on a rope/parachute/saucer etc so focus stays with the hog's movement
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   434
            if altUse then
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   435
                FollowGear:= nil;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   436
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   437
            if (newGear <> nil) and ((Ammoz[newGear^.AmmoType].Ammo.Propz and ammoprop_SetBounce) <> 0) then
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   438
                begin
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   439
                elastic:=  int2hwfloat(CurWeapon^.Bounciness) / _1000;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   440
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   441
                if elastic < _1 then
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   442
                    newGear^.Elasticity:= newGear^.Elasticity * elastic
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   443
                else if elastic > _1 then
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   444
                    newGear^.Elasticity:= _1 - ((_1-newGear^.Elasticity) / elastic);
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   445
    (* Experimented with friction modifier. Didn't seem helpful 
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   446
                fric:= int2hwfloat(CurWeapon^.Bounciness) / _250;
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   447
                if fric < _1 then newGear^.Friction:= newGear^.Friction * fric
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   448
                else if fric > _1 then newGear^.Friction:= _1 - ((_1-newGear^.Friction) / fric)*)
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   449
                end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   450
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   451
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   452
            uStats.AmmoUsed(CurAmmoType);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   453
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   454
            if not (SpeechText = '') then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   455
                begin
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   456
                speech:= AddVisualGear(0, 0, vgtSpeechBubble);
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   457
                if speech <> nil then
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   458
                    begin
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   459
                    speech^.Text:= SpeechText;
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   460
                    speech^.Hedgehog:= Gear^.Hedgehog;
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   461
                    speech^.FrameTicks:= SpeechType;
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   462
                    end;
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   463
                SpeechText:= ''
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   464
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   465
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   466
            Power:= 0;
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   467
            if (CurAmmoGear <> nil)
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   468
                and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AltUse) = 0){check for dropping ammo from rope} then
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   469
                begin
8566
d9627d65edf7 This and the "retain freezing" stuff could probably use a flag.
nemo
parents: 8562
diff changeset
   470
                if CurAmmoType in [amRope,amResurrector] then Message:= Message or gmAttack;
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   471
                CurAmmoGear^.Message:= Message
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   472
                end
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   473
            else
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   474
                begin
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   475
                if not CurrentTeam^.ExtDriven
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   476
                and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_Power) <> 0) then
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   477
                    SendIPC(_S'a');
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   478
                AfterAttack;
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   479
                end
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   480
            end
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   481
        else 
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   482
            Message:= Message and (not gmAttack);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   483
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   484
    TargetPoint.X := NoPointX;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   485
    ScriptCall('onHogAttack');
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   486
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   487
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   488
procedure AfterAttack;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   489
var s: shortstring;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   490
    a: TAmmoType;
7459
8511a3f899d3 Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents: 7426
diff changeset
   491
    HHGear: PGear;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   492
begin
7459
8511a3f899d3 Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents: 7426
diff changeset
   493
with CurrentHedgehog^ do
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   494
    begin
7459
8511a3f899d3 Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents: 7426
diff changeset
   495
    HHGear:= Gear;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   496
    a:= CurAmmoType;
7459
8511a3f899d3 Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents: 7426
diff changeset
   497
    if HHGear <> nil then HHGear^.State:= HHGear^.State and (not gstAttacking);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   498
    if (Ammoz[a].Ammo.Propz and ammoprop_Effect) = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   499
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   500
        Inc(MultiShootAttacks);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   501
        
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   502
        if (Ammoz[a].Ammo.NumPerTurn >= MultiShootAttacks) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   503
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   504
            s:= inttostr(Ammoz[a].Ammo.NumPerTurn - MultiShootAttacks + 1);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   505
            AddCaption(format(trmsg[sidRemaining], s), cWhiteColor, capgrpAmmostate);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   506
            end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   507
        
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   508
        if (Ammoz[a].Ammo.NumPerTurn >= MultiShootAttacks)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   509
        or ((GameFlags and gfMultiWeapon) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   510
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   511
            isInMultiShoot:= true
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   512
            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   513
        else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   514
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   515
            OnUsedAmmo(CurrentHedgehog^);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   516
            if ((Ammoz[a].Ammo.Propz and ammoprop_NoRoundEnd) = 0) and (((GameFlags and gfInfAttack) = 0) or PlacingHogs) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   517
                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   518
                if TagTurnTimeLeft = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   519
                    TagTurnTimeLeft:= TurnTimeLeft;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   520
                TurnTimeLeft:=(Ammoz[a].TimeAfterTurn * cGetAwayTime) div 100;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   521
                end;
7459
8511a3f899d3 Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents: 7426
diff changeset
   522
            if ((Ammoz[a].Ammo.Propz and ammoprop_NoRoundEnd) = 0) and (HHGear <> nil) then 
7462
nemo
parents: 7459
diff changeset
   523
                HHGear^.State:= HHGear^.State or gstAttacked;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   524
            if (Ammoz[a].Ammo.Propz and ammoprop_NoRoundEnd) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   525
                ApplyAmmoChanges(CurrentHedgehog^)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   526
            end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   527
        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   528
    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   529
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   530
        OnUsedAmmo(CurrentHedgehog^);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   531
        ApplyAmmoChanges(CurrentHedgehog^);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   532
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   533
    AttackBar:= 0
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   534
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   535
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   536
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   537
////////////////////////////////////////////////////////////////////////////////
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   538
procedure doStepHedgehogDead(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   539
const frametime = 200;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   540
      timertime = frametime * 6;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   541
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   542
if Gear^.Hedgehog^.Unplaced then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   543
    exit;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   544
if Gear^.Timer > 1 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   545
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   546
    AllInactive:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   547
    dec(Gear^.Timer);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   548
    if (Gear^.Timer mod frametime) = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   549
        inc(Gear^.Pos)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   550
    end 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   551
else if Gear^.Timer = 1 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   552
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   553
    Gear^.State:= Gear^.State or gstNoDamage;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   554
    doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, CurrentHedgehog, EXPLAutoSound);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   555
    AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtGrave, 0, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   556
    DeleteGear(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   557
    SetAllToActive
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   558
    end 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   559
else // Gear^.Timer = 0
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   560
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   561
    AllInactive:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   562
    Gear^.Z:= cCurrHHZ;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   563
    RemoveGearFromList(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   564
    InsertGearToList(Gear);
7053
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7028
diff changeset
   565
    PlaySoundV(sndByeBye, Gear^.Hedgehog^.Team^.voicepack);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   566
    Gear^.Pos:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   567
    Gear^.Timer:= timertime
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   568
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   569
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   570
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   571
////////////////////////////////////////////////////////////////////////////////
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   572
procedure doStepHedgehogGone(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   573
const frametime = 65;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   574
      timertime = frametime * 11;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   575
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   576
if Gear^.Hedgehog^.Unplaced then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   577
    exit;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   578
if Gear^.Timer > 1 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   579
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   580
    AllInactive:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   581
    dec(Gear^.Timer);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   582
    if (Gear^.Timer mod frametime) = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   583
        inc(Gear^.Pos)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   584
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   585
else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   586
if Gear^.Timer = 1 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   587
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   588
    DeleteGear(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   589
    SetAllToActive
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   590
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   591
else // Gear^.Timer = 0
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   592
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   593
    AllInactive:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   594
    Gear^.Z:= cCurrHHZ;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   595
    RemoveGearFromList(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   596
    InsertGearToList(Gear);
7053
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7028
diff changeset
   597
    PlaySoundV(sndByeBye, Gear^.Hedgehog^.Team^.voicepack);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   598
    PlaySound(sndWarp);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   599
    Gear^.Pos:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   600
    Gear^.Timer:= timertime
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   601
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   602
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   603
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: 7375
diff changeset
   604
procedure AddPickup(HH: THedgehog; ammo: TAmmoType; cnt, X, Y: LongWord);
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: 7375
diff changeset
   605
var s: shortstring;
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: 7375
diff changeset
   606
    vga: PVisualGear;
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: 7375
diff changeset
   607
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: 7375
diff changeset
   608
    if cnt <> 0 then AddAmmo(HH, ammo, cnt)
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: 7375
diff changeset
   609
    else AddAmmo(HH, ammo);
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: 7375
diff changeset
   610
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: 7375
diff changeset
   611
    if (not (HH.Team^.ExtDriven 
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: 7375
diff changeset
   612
    or (HH.BotLevel > 0)))
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: 7375
diff changeset
   613
    or (HH.Team^.Clan^.ClanIndex = LocalClan)
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: 7375
diff changeset
   614
    or (GameType = gmtDemo)  then
15c3fb4882df Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents: 7375
diff changeset
   615
        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: 7375
diff changeset
   616
        if cnt <> 0 then
15c3fb4882df Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents: 7375
diff changeset
   617
            s:= trammo[Ammoz[ammo].NameId] + ' (+' + IntToStr(cnt) + ')'
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: 7375
diff changeset
   618
        else
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: 7375
diff changeset
   619
            s:= trammo[Ammoz[ammo].NameId] + ' (+' + IntToStr(Ammoz[ammo].NumberInCase) + ')';
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: 7375
diff changeset
   620
        AddCaption(s, HH.Team^.Clan^.Color, capgrpAmmoinfo);
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: 7375
diff changeset
   621
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: 7375
diff changeset
   622
        // show ammo icon
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: 7375
diff changeset
   623
        vga:= AddVisualGear(X, Y, vgtAmmo);
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: 7375
diff changeset
   624
        if vga <> nil then
15c3fb4882df Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents: 7375
diff changeset
   625
            vga^.Frame:= Longword(ammo);
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: 7375
diff changeset
   626
        end;
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: 7375
diff changeset
   627
end;
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: 7375
diff changeset
   628
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   629
////////////////////////////////////////////////////////////////////////////////
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   630
procedure PickUp(HH, Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   631
var s: shortstring;
7406
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   632
    i: LongInt;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   633
    vga: PVisualGear;
7406
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   634
    ag, gi: PGear;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   635
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   636
Gear^.Message:= gmDestroy;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   637
if (Gear^.Pos and posCaseExplode) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   638
    if (Gear^.Pos and posCasePoison) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   639
        doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, HH^.Hedgehog, EXPLAutoSound + EXPLPoisoned)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   640
    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   641
        doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, HH^.Hedgehog, EXPLAutoSound)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   642
else if (Gear^.Pos and posCasePoison) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   643
    doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, HH^.Hedgehog, EXPLAutoSound + EXPLPoisoned + EXPLNoDamage)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   644
else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   645
case Gear^.Pos of
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   646
       posCaseUtility,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   647
       posCaseAmmo: begin
7597
1ef520fea21c make cheating a bit easier (mikade insisted). Also, try flipping dust for a bit more variety.
nemo
parents: 7462
diff changeset
   648
                    PlaySound(sndShotgunReload);
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: 7375
diff changeset
   649
                    if Gear^.AmmoType <> amNothing then 
15c3fb4882df Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents: 7375
diff changeset
   650
                        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: 7375
diff changeset
   651
                        AddPickup(HH^.Hedgehog^, Gear^.AmmoType, Gear^.Power, hwRound(Gear^.X), hwRound(Gear^.Y));
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: 7375
diff changeset
   652
                        end
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   653
                    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   654
                        begin
7389
15c3fb4882df Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents: 7375
diff changeset
   655
// Add spawning here...
7409
fd91aa100ce0 Avoid desync playing back demos
nemo
parents: 7406
diff changeset
   656
                        AddRandomness(GameTicks);
7406
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   657
                        
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   658
                        gi := GearsList;
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   659
                        while gi <> nil do
7391
588eabb4b384 Apparently order of multiple getrandom in params is undefined. Also remove broken and pointless getrandom call.
nemo
parents: 7389
diff changeset
   660
                            begin
8030
165aeaaaf445 Call fallers less often. Should hopefully still be about as effective at the intended purpose. Should help loads quite a bit.
nemo
parents: 8003
diff changeset
   661
                            if (gi^.Kind = gtGenericFaller) and (gi^.State and gstInvisible <> 0) then
7406
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   662
                                begin
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   663
                                gi^.Active:= true;
8030
165aeaaaf445 Call fallers less often. Should hopefully still be about as effective at the intended purpose. Should help loads quite a bit.
nemo
parents: 8003
diff changeset
   664
                                gi^.State:= gi^.State or gstTmpFlag;
7406
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   665
                                gi^.X:= int2hwFloat(GetRandom(rightX-leftX)+leftX);
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   666
                                gi^.Y:= int2hwFloat(GetRandom(LAND_HEIGHT-topY)+topY);
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   667
                                gi^.dX:= _90-(GetRandomf*_360);
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   668
                                gi^.dY:= _90-(GetRandomf*_360)
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   669
                                end;
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   670
                            gi := gi^.NextGear
7391
588eabb4b384 Apparently order of multiple getrandom in params is undefined. Also remove broken and pointless getrandom call.
nemo
parents: 7389
diff changeset
   671
                            end;
7598
f06d8603097c let's see if mikade will still accept this at least
nemo
parents: 7597
diff changeset
   672
                        ag:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtAddAmmo, gstInvisible, _0, _0, GetRandom(125)+25);
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: 7375
diff changeset
   673
                        ag^.Pos:= Gear^.Pos;
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: 7375
diff changeset
   674
                        ag^.Power:= Gear^.Power
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   675
                        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   676
                    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   677
     posCaseHealth: begin
7389
15c3fb4882df Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents: 7375
diff changeset
   678
                    PlaySound(sndShotgunReload);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   679
                    inc(HH^.Health, Gear^.Health);
7010
10a0a31804f3 Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents: 6992
diff changeset
   680
                    HH^.Hedgehog^.Effects[hePoisoned] := 0;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   681
                    str(Gear^.Health, s);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   682
                    s:= '+' + s;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   683
                    AddCaption(s, HH^.Hedgehog^.Team^.Clan^.Color, capgrpAmmoinfo);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   684
                    RenderHealth(HH^.Hedgehog^);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   685
                    RecountTeamHealth(HH^.Hedgehog^.Team);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   686
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   687
                    i:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   688
                    while i < Gear^.Health do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   689
                        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   690
                        vga:= AddVisualGear(hwRound(HH^.X), hwRound(HH^.Y), vgtStraightShot);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   691
                        if vga <> nil then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   692
                            with vga^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   693
                                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   694
                                Tint:= $00FF00FF;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   695
                                State:= ord(sprHealth)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   696
                                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   697
                        inc(i, 5);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   698
                        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   699
                    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   700
     end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   701
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   702
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   703
procedure HedgehogStep(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   704
var PrevdX: LongInt;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   705
    CurWeapon: PAmmo;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   706
begin
6924
57b66ee3bff3 Get rid of overloaded functions in uAmmo
unc0rr
parents: 6700
diff changeset
   707
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   708
if ((Gear^.State and (gstAttacking or gstMoving)) = 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   709
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   710
    if isCursorVisible then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   711
        with Gear^.Hedgehog^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   712
            with CurWeapon^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   713
                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   714
                if (Gear^.Message and gmLeft  ) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   715
                    Pos:= (Pos - 1 + Ammoz[AmmoType].PosCount) mod Ammoz[AmmoType].PosCount
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   716
                else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   717
                    if (Gear^.Message and gmRight ) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   718
                        Pos:= (Pos + 1) mod Ammoz[AmmoType].PosCount
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   719
    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   720
        exit;
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
   721
    GHStepTicks:= 200;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   722
    exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   723
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   724
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   725
    if ((Gear^.Message and gmAnimate) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   726
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   727
        Gear^.Message:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   728
        Gear^.State:= Gear^.State or gstAnimation;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   729
        Gear^.Tag:= Gear^.MsgParam;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   730
        Gear^.Timer:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   731
        Gear^.Pos:= 0
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   732
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   733
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   734
    if ((Gear^.Message and gmLJump ) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   735
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   736
        Gear^.Message:= Gear^.Message and (not gmLJump);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   737
        DeleteCI(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   738
        if TestCollisionYwithGear(Gear, -1) = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   739
            if not TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   740
                Gear^.Y:= Gear^.Y - _2
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   741
            else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   742
                if not TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   743
                    Gear^.Y:= Gear^.Y - _1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   744
            if not (TestCollisionXwithGear(Gear, hwSign(Gear^.dX))
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   745
            or   (TestCollisionYwithGear(Gear, -1) <> 0)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   746
                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   747
                Gear^.dY:= -_0_15;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   748
                if not cArtillery then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   749
                    Gear^.dX:= SignAs(_0_15, Gear^.dX);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   750
                Gear^.State:= Gear^.State or gstMoving or gstHHJumping;
7053
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7028
diff changeset
   751
                PlaySoundV(sndJump1, Gear^.Hedgehog^.Team^.voicepack);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   752
        exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   753
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   754
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   755
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   756
    if ((Gear^.Message and gmHJump ) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   757
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   758
        DeleteCI(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   759
        Gear^.Message:= Gear^.Message and (not gmHJump);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   760
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   761
        Gear^.dY:= -_0_2;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   762
        SetLittle(Gear^.dX);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   763
        Gear^.State:= Gear^.State or gstMoving or gstHHJumping;
7053
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7028
diff changeset
   764
        PlaySoundV(sndJump3, Gear^.Hedgehog^.Team^.voicepack);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   765
        exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   766
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   767
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   768
    PrevdX:= hwSign(Gear^.dX);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   769
    if (Gear^.Message and gmLeft  )<>0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   770
        Gear^.dX:= -cLittle else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   771
    if (Gear^.Message and gmRight )<>0 then
7187
aff30d80bd7b - Allow camera movement while current hedgehog is falling
unc0rr
parents: 7164
diff changeset
   772
        Gear^.dX:=  cLittle 
aff30d80bd7b - Allow camera movement while current hedgehog is falling
unc0rr
parents: 7164
diff changeset
   773
        else exit;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   774
7187
aff30d80bd7b - Allow camera movement while current hedgehog is falling
unc0rr
parents: 7164
diff changeset
   775
    StepSoundTimer:= cHHStepTicks;
7719
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7671
diff changeset
   776
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
   777
    GHStepTicks:= cHHStepTicks;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   778
    if PrevdX <> hwSign(Gear^.dX) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   779
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   780
        FollowGear:= Gear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   781
        exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   782
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   783
    DeleteCI(Gear); // must be after exit!! (see previous line)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   784
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   785
    Gear^.Hedgehog^.visStepPos:= (Gear^.Hedgehog^.visStepPos + 1) and 7;
7164
fad64b97947e Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents: 7069
diff changeset
   786
7719
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7671
diff changeset
   787
    if (not cArtillery) and ((Gear^.Message and gmPrecise) = 0) then
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7671
diff changeset
   788
        MakeHedgehogsStep(Gear);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   789
8576
286ebfcb3d97 workaround for frequent AllHH active call in hedgehog step
nemo
parents: 8574
diff changeset
   790
    SetAllHHToActive(false);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   791
    AddGearCI(Gear)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   792
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   793
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   794
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   795
procedure HedgehogChAngle(HHGear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   796
var da: LongWord;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   797
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   798
with HHGear^.Hedgehog^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   799
    if ((CurAmmoType = amRope) and ((HHGear^.State and (gstMoving or gstHHJumping)) = gstMoving))
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   800
    or ((CurAmmoType = amPortalGun) and ((HHGear^.State and gstMoving) <> 0)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   801
        da:= 2
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   802
    else da:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   803
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   804
if (((HHGear^.Message and gmPrecise) = 0) or ((GameTicks mod 5) = 1)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   805
    if ((HHGear^.Message and gmUp) <> 0) and (HHGear^.Angle >= CurMinAngle + da) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   806
        dec(HHGear^.Angle, da)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   807
    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   808
        if ((HHGear^.Message and gmDown) <> 0) and (HHGear^.Angle + da <= CurMaxAngle) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   809
            inc(HHGear^.Angle, da)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   810
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   811
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   812
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   813
////////////////////////////////////////////////////////////////////////////////
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   814
procedure doStepHedgehogMoving(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   815
var isFalling, isUnderwater: boolean;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   816
    land: Word;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   817
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   818
land:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   819
isUnderwater:= cWaterLine < hwRound(Gear^.Y) + Gear^.Radius;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   820
if Gear^.dX.QWordValue > 8160437862 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   821
    Gear^.dX.QWordValue:= 8160437862;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   822
if Gear^.dY.QWordValue > 8160437862 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   823
    Gear^.dY.QWordValue:= 8160437862;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   824
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   825
if Gear^.Hedgehog^.Unplaced then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   826
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   827
    Gear^.dY:= _0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   828
    Gear^.dX:= _0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   829
    Gear^.State:= Gear^.State and (not gstMoving);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   830
    exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   831
    end;
7426
55b49cc1f33a Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents: 7409
diff changeset
   832
isFalling:= (Gear^.dY.isNegative) or (not TestCollisionYKick(Gear, 1));
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   833
if isFalling then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   834
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   835
    if (Gear^.dY.isNegative) and TestCollisionYKick(Gear, -1) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   836
        Gear^.dY:= _0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   837
    Gear^.State:= Gear^.State or gstMoving;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   838
    if (CurrentHedgehog^.Gear = Gear)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   839
        and (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) > _0_003) then 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   840
        begin
7187
aff30d80bd7b - Allow camera movement while current hedgehog is falling
unc0rr
parents: 7164
diff changeset
   841
        // TODO: why so aggressive at setting FollowGear when falling?
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   842
        FollowGear:= Gear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   843
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   844
    if isUnderwater then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   845
       Gear^.dY:= Gear^.dY + cGravity / _2
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   846
    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   847
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   848
        Gear^.dY:= Gear^.dY + cGravity;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   849
// this set of circumstances could be less complex if jumping was more clearly identified
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   850
        if ((GameFlags and gfMoreWind) <> 0) and (((Gear^.Damage <> 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   851
        or ((CurAmmoGear <> nil) and ((CurAmmoGear^.AmmoType = amJetpack) or (CurAmmoGear^.AmmoType = amBirdy)))
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   852
        or ((Gear^.dY.QWordValue + Gear^.dX.QWordValue) > _0_55.QWordValue))) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   853
            Gear^.dX := Gear^.dX + cWindSpeed / Gear^.Density
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   854
        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   855
    end 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   856
else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   857
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   858
    land:= TestCollisionYwithGear(Gear, 1);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   859
    if ((Gear^.dX.QWordValue + Gear^.dY.QWordValue) < _0_55.QWordValue) and ((land and lfIce) = 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   860
    and ((Gear^.State and gstHHJumping) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   861
        SetLittle(Gear^.dX);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   862
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   863
    if not Gear^.dY.isNegative then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   864
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   865
        CheckHHDamage(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   866
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   867
        if ((Gear^.State and gstHHHJump) <> 0) and (not cArtillery)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   868
        and (Gear^.dX.QWordValue < _0_02.QWordValue) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   869
            Gear^.dX.isNegative:= not Gear^.dX.isNegative; // landing after high jump
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   870
        Gear^.State:= Gear^.State and (not (gstHHJumping or gstHHHJump));
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   871
        Gear^.dY:= _0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   872
        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   873
    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   874
        Gear^.dY:= Gear^.dY + cGravity;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   875
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   876
    if ((Gear^.State and gstMoving) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   877
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   878
        if land and lfIce <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   879
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   880
            Gear^.dX:= Gear^.dX * (_1 - (_1 - Gear^.Friction) / _2)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   881
            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   882
        else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   883
            Gear^.dX:= Gear^.dX * Gear^.Friction;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   884
        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   885
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   886
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   887
if (Gear^.State <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   888
    DeleteCI(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   889
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   890
if isUnderwater then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   891
   begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   892
   Gear^.dY:= Gear^.dY * _0_999;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   893
   Gear^.dX:= Gear^.dX * _0_999;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   894
   end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   895
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   896
if (Gear^.State and gstMoving) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   897
    if TestCollisionXKick(Gear, hwSign(Gear^.dX)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   898
        if not isFalling then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   899
            if hwAbs(Gear^.dX) > _0_01 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   900
                if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -1, hwSign(Gear^.dX)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   901
                    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   902
                    Gear^.X:= Gear^.X + Gear^.dX;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   903
                    Gear^.dX:= Gear^.dX * _0_96;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   904
                    Gear^.Y:= Gear^.Y - _1
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   905
                    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   906
                else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   907
                    if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -2, hwSign(Gear^.dX)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   908
                        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   909
                        Gear^.X:= Gear^.X + Gear^.dX;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   910
                        Gear^.dX:= Gear^.dX * _0_93;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   911
                        Gear^.Y:= Gear^.Y - _2
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   912
                        end 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   913
                    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   914
                        if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -3, hwSign(Gear^.dX)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   915
                        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   916
                        Gear^.X:= Gear^.X + Gear^.dX;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   917
                        Gear^.dX:= Gear^.dX * _0_9 ;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   918
                        Gear^.Y:= Gear^.Y - _3
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   919
                        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   920
                    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   921
                        if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -4, hwSign(Gear^.dX)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   922
                            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   923
                            Gear^.X:= Gear^.X + Gear^.dX;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   924
                            Gear^.dX:= Gear^.dX * _0_87;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   925
                            Gear^.Y:= Gear^.Y - _4
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   926
                            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   927
                    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   928
                        if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -5, hwSign(Gear^.dX)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   929
                            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   930
                            Gear^.X:= Gear^.X + Gear^.dX;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   931
                            Gear^.dX:= Gear^.dX * _0_84;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   932
                            Gear^.Y:= Gear^.Y - _5
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   933
                            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   934
                    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   935
                        if hwAbs(Gear^.dX) > _0_02 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   936
                            Gear^.dX:= -Gear^.Elasticity * Gear^.dX
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   937
                        else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   938
                            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   939
                            Gear^.State:= Gear^.State and (not gstMoving);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   940
                            while TestCollisionYWithGear(Gear,1) = 0 do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   941
                                Gear^.Y:= Gear^.Y+_1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   942
                            SetLittle(Gear^.dX)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   943
                            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   944
            else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   945
                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   946
                Gear^.State:= Gear^.State and (not gstMoving);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   947
                while TestCollisionYWithGear(Gear,1) = 0 do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   948
                    Gear^.Y:= Gear^.Y+_1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   949
                SetLittle(Gear^.dX)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   950
                end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   951
        else if (hwAbs(Gear^.dX) > cLittle)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   952
        and ((Gear^.State and gstHHJumping) = 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   953
            Gear^.dX:= -Gear^.Elasticity * Gear^.dX
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   954
        else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   955
            SetLittle(Gear^.dX);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   956
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   957
if (not isFalling)
7362
53bcfc714cb3 Fix rare condition when hog's gear stucks in an infinite loop which adds 1 to its Y coordinate not checking for drowning
unc0rr
parents: 7339
diff changeset
   958
  and (hwAbs(Gear^.dX) + hwAbs(Gear^.dY) < _0_03) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   959
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   960
    Gear^.State:= Gear^.State and (not gstWinner);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   961
    Gear^.State:= Gear^.State and (not gstMoving);
7426
55b49cc1f33a Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents: 7409
diff changeset
   962
    while (TestCollisionYWithGear(Gear,1) = 0) and (not CheckGearDrowning(Gear)) do
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   963
        Gear^.Y:= Gear^.Y+_1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   964
    SetLittle(Gear^.dX);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   965
    Gear^.dY:= _0
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   966
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   967
else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   968
    Gear^.State:= Gear^.State or gstMoving;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   969
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   970
if (Gear^.State and gstMoving) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   971
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   972
    Gear^.State:= Gear^.State and (not gstAnimation);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   973
// ARTILLERY but not being moved by explosions
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   974
    Gear^.X:= Gear^.X + Gear^.dX;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   975
    Gear^.Y:= Gear^.Y + Gear^.dY;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   976
    if (not Gear^.dY.isNegative) and (not TestCollisionYKick(Gear, 1)) 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   977
    and TestCollisionYwithXYShift(Gear, 0, 1, 1) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   978
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   979
        CheckHHDamage(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   980
        Gear^.dY:= _0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   981
        Gear^.Y:= Gear^.Y + _1
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   982
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   983
    CheckGearDrowning(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   984
    // hide target cursor if current hog is drowning
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   985
    if (Gear^.State and gstDrowning) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   986
        if (CurrentHedgehog^.Gear = Gear) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   987
            isCursorVisible:= false
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   988
    end;
7623
addc5b262617 isZero appears to be never used. Use it in a few obvious cases and add web variant.
nemo
parents: 7615
diff changeset
   989
if (not isZero(Gear^.dY)) and (Gear^.FlightTime > 0) and ((GameFlags and gfLowGravity) = 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   990
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   991
    inc(Gear^.FlightTime);
8003
7d8bce524daf LongInt Land width/height, mouse coords
nemo
parents: 7956
diff changeset
   992
    if (Gear^.FlightTime > 1500) and ((hwRound(Gear^.X) < LongInt(leftX)-250) or (hwRound(Gear^.X) > LongInt(rightX)+250))  then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   993
        begin
7763
6ab7307fcec3 I like this condition for home run better
nemo
parents: 7754
diff changeset
   994
        Gear^.FlightTime:= 0;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   995
        AddCaption(GetEventString(eidHomerun), cWhiteColor, capgrpMessage);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   996
        PlaySound(sndHomerun)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   997
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   998
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   999
else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1000
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1001
    uStats.hedgehogFlight(Gear, Gear^.FlightTime);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1002
    Gear^.FlightTime:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1003
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1004
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1005
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1006
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1007
procedure doStepHedgehogDriven(HHGear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1008
var t: PGear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1009
    wasJumping: boolean;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1010
    Hedgehog: PHedgehog;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1011
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1012
Hedgehog:= HHGear^.Hedgehog;
8562
d9d1cb650ff8 Restore freezing hedgehog for shotgun, sniper rifle and deagle to make unc0rr happy. You'll still be able to get away after throwing cleaver and sticky bomb tho.
nemo
parents: 8553
diff changeset
  1013
//if isInMultiShoot and not AllInactive and (Hedgehog^.CurAmmoType in [amShotgun, amDEagle, amSniperRifle]) then HHGear^.Message:= HHGear^.Message and not gmAttack;
d9d1cb650ff8 Restore freezing hedgehog for shotgun, sniper rifle and deagle to make unc0rr happy. You'll still be able to get away after throwing cleaver and sticky bomb tho.
nemo
parents: 8553
diff changeset
  1014
if isInMultiShoot and (Hedgehog^.CurAmmoType in [amShotgun, amDEagle, amSniperRifle]) then
d9d1cb650ff8 Restore freezing hedgehog for shotgun, sniper rifle and deagle to make unc0rr happy. You'll still be able to get away after throwing cleaver and sticky bomb tho.
nemo
parents: 8553
diff changeset
  1015
    begin
d9d1cb650ff8 Restore freezing hedgehog for shotgun, sniper rifle and deagle to make unc0rr happy. You'll still be able to get away after throwing cleaver and sticky bomb tho.
nemo
parents: 8553
diff changeset
  1016
    AllInactive:= true;
d9d1cb650ff8 Restore freezing hedgehog for shotgun, sniper rifle and deagle to make unc0rr happy. You'll still be able to get away after throwing cleaver and sticky bomb tho.
nemo
parents: 8553
diff changeset
  1017
    HHGear^.Message:= 0
d9d1cb650ff8 Restore freezing hedgehog for shotgun, sniper rifle and deagle to make unc0rr happy. You'll still be able to get away after throwing cleaver and sticky bomb tho.
nemo
parents: 8553
diff changeset
  1018
    end
d9d1cb650ff8 Restore freezing hedgehog for shotgun, sniper rifle and deagle to make unc0rr happy. You'll still be able to get away after throwing cleaver and sticky bomb tho.
nemo
parents: 8553
diff changeset
  1019
else AllInactive:= false;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1020
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1021
if (TurnTimeLeft = 0) or (HHGear^.Damage > 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1022
    begin
8494
53b91a602955 Cleaver tweaks based on feedback. Nerf damage, shrink radius. This means cleaver will embed into ground quite a bit further.
nemo
parents: 8493
diff changeset
  1023
    if (Hedgehog^.CurAmmoType = amKnife) then
53b91a602955 Cleaver tweaks based on feedback. Nerf damage, shrink radius. This means cleaver will embed into ground quite a bit further.
nemo
parents: 8493
diff changeset
  1024
       LoadHedgehogHat(Hedgehog^, Hedgehog^.Hat);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1025
    if TagTurnTimeLeft = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1026
        TagTurnTimeLeft:= TurnTimeLeft;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1027
    TurnTimeLeft:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1028
    isCursorVisible:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1029
    HHGear^.State:= HHGear^.State and (not (gstHHDriven or gstAnimation or gstAttacking));
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1030
    AttackBar:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1031
    if HHGear^.Damage > 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1032
        HHGear^.State:= HHGear^.State and (not (gstHHJumping or gstHHHJump));
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1033
    exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1034
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1035
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1036
if (HHGear^.State and gstAnimation) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1037
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1038
    HHGear^.Message:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1039
    if (HHGear^.Pos = Wavez[TWave(HHGear^.Tag)].VoiceDelay) and (HHGear^.Timer = 0) then
7053
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7028
diff changeset
  1040
        PlaySoundV(Wavez[TWave(HHGear^.Tag)].Voice, Hedgehog^.Team^.voicepack);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1041
    inc(HHGear^.Timer);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1042
    if HHGear^.Timer = Wavez[TWave(HHGear^.Tag)].Interval then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1043
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1044
        HHGear^.Timer:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1045
        inc(HHGear^.Pos);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1046
        if HHGear^.Pos = Wavez[TWave(HHGear^.Tag)].FramesCount then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1047
            HHGear^.State:= HHGear^.State and (not gstAnimation)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1048
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1049
    exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1050
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1051
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1052
if ((HHGear^.State and gstMoving) <> 0)
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
  1053
or (GHStepTicks = cHHStepTicks)
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1054
or (CurAmmoGear <> nil) then // we are moving
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1055
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1056
    with Hedgehog^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1057
        if (CurAmmoGear = nil)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1058
        and (HHGear^.dY > _0_39)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1059
        and (CurAmmoType = amParachute) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1060
            HHGear^.Message:= HHGear^.Message or gmAttack;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1061
    // check for case with ammo
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1062
    t:= CheckGearNear(HHGear, gtCase, 36, 36);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1063
    if t <> nil then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1064
        PickUp(HHGear, t)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1065
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1066
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1067
if (CurAmmoGear = nil) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1068
    if (((HHGear^.Message and gmAttack) <> 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1069
    or ((HHGear^.State and gstAttacking) <> 0)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1070
        Attack(HHGear) // should be before others to avoid desync with '/put' msg and changing weapon msgs
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1071
    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1072
else 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1073
    with Hedgehog^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1074
        if ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1075
        and ((HHGear^.Message and gmLJump) <> 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1076
        and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AltUse) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1077
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1078
            Attack(HHGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1079
            HHGear^.Message:= HHGear^.Message and (not gmLJump)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1080
            end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1081
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1082
if (CurAmmoGear = nil)
7956
61da79e83330 Causes AI fail. Needs testing 'cause at some point, I thought this was needed for portal, I don't remember *why*
nemo
parents: 7832
diff changeset
  1083
or ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0)  then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1084
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1085
    if ((HHGear^.Message and gmSlot) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1086
        if ChangeAmmo(HHGear) then ApplyAmmoChanges(Hedgehog^);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1087
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1088
    if ((HHGear^.Message and gmWeapon) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1089
        HHSetWeapon(HHGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1090
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1091
    if ((HHGear^.Message and gmTimer) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1092
        HHSetTimer(HHGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1093
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1094
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1095
if CurAmmoGear <> nil then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1096
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1097
    CurAmmoGear^.Message:= HHGear^.Message;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1098
    exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1099
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1100
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1101
    HedgehogChAngle(HHGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1102
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1103
if (HHGear^.State and gstMoving) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1104
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1105
    wasJumping:= ((HHGear^.State and gstHHJumping) <> 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1106
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1107
    if ((HHGear^.Message and gmHJump) <> 0) and wasJumping and ((HHGear^.State and gstHHHJump) = 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1108
        if (not (hwAbs(HHGear^.dX) > cLittle)) and (HHGear^.dY < -_0_02) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1109
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1110
            HHGear^.State:= HHGear^.State or gstHHHJump;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1111
            HHGear^.dY:= -_0_25;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1112
            if not cArtillery then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1113
                HHGear^.dX:= -SignAs(_0_02, HHGear^.dX);
7053
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7028
diff changeset
  1114
            PlaySoundV(sndJump2, Hedgehog^.Team^.voicepack)
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1115
            end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1116
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1117
    HHGear^.Message:= HHGear^.Message and (not (gmLJump or gmHJump));
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1118
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1119
    if (not cArtillery) and wasJumping and TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1120
        SetLittle(HHGear^.dX);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1121
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1122
    if Hedgehog^.Gear <> nil then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1123
        doStepHedgehogMoving(HHGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1124
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1125
    if ((HHGear^.State and (gstMoving or gstDrowning)) = 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1126
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1127
        AddGearCI(HHGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1128
        if wasJumping then
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
  1129
            GHStepTicks:= 410
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1130
        else
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
  1131
            GHStepTicks:= 95
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1132
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1133
    exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1134
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1135
8562
d9d1cb650ff8 Restore freezing hedgehog for shotgun, sniper rifle and deagle to make unc0rr happy. You'll still be able to get away after throwing cleaver and sticky bomb tho.
nemo
parents: 8553
diff changeset
  1136
    if not(isInMultiShoot and (Hedgehog^.CurAmmoType in [amShotgun, amDEagle, amSniperRifle])) and (Hedgehog^.Gear <> nil) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1137
        begin
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
  1138
        if GHStepTicks > 0 then
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
  1139
            dec(GHStepTicks);
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
  1140
        if (GHStepTicks = 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1141
            HedgehogStep(HHGear)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1142
        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1143
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1144
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1145
////////////////////////////////////////////////////////////////////////////////
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1146
procedure doStepHedgehogFree(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1147
var prevState: Longword;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1148
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1149
prevState:= Gear^.State;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1150
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1151
doStepHedgehogMoving(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1152
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1153
if (Gear^.State and (gstMoving or gstDrowning)) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1154
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1155
    if Gear^.Damage > 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1156
        CalcRotationDirAngle(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1157
    AllInactive:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1158
    exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1159
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1160
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1161
if (Gear^.Health = 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1162
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1163
    if PrvInactive or ((GameFlags and gfInfAttack) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1164
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1165
        Gear^.Timer:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1166
        FollowGear:= Gear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1167
        PrvInactive:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1168
        AllInactive:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1169
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1170
        if (Gear^.State and gstHHGone) = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1171
            begin
7010
10a0a31804f3 Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents: 6992
diff changeset
  1172
            Gear^.Hedgehog^.Effects[hePoisoned] := 0;
10a0a31804f3 Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents: 6992
diff changeset
  1173
            if Gear^.Hedgehog^.Effects[heResurrectable] <> 0 then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1174
                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1175
                ResurrectHedgehog(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1176
                end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1177
            else 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1178
                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1179
                Gear^.State:= (Gear^.State or gstHHDeath) and (not gstAnimation);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1180
                Gear^.doStep:= @doStepHedgehogDead;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1181
                // Death message
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1182
                AddCaption(Format(GetEventString(eidDied), Gear^.Hedgehog^.Name), cWhiteColor, capgrpMessage);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1183
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1184
            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1185
        else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1186
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1187
            Gear^.State:= Gear^.State and (not gstAnimation);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1188
            Gear^.doStep:= @doStepHedgehogGone;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1189
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1190
            // Gone message
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1191
            AddCaption(Format(GetEventString(eidGone), Gear^.Hedgehog^.Name), cWhiteColor, capgrpMessage);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1192
            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1193
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1194
    exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1195
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1196
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1197
if ((Gear^.State and gstWait) = 0) and
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1198
    (prevState <> Gear^.State) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1199
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1200
    Gear^.State:= Gear^.State or gstWait;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1201
    Gear^.Timer:= 150
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1202
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1203
else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1204
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1205
    if Gear^.Timer = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1206
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1207
        Gear^.State:= Gear^.State and (not (gstWait or gstLoser or gstWinner or gstAttacked or gstNotKickable or gstHHChooseTarget));
8563
4d9d8287e601 Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents: 8560
diff changeset
  1208
        if Gear^.Hedgehog^.Effects[heFrozen] = 0 then Gear^.Active:= false;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1209
        AddGearCI(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1210
        exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1211
        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1212
    else dec(Gear^.Timer)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1213
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1214
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1215
AllInactive:= false
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1216
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1217
8574
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1218
procedure CheckIce(Gear: PGear); inline;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1219
(*
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1220
var x,y,tx,ty: LongInt;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1221
    tdX, tdY, slope: hwFloat; 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1222
    land: Word; *)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1223
var slope: hwFloat; 
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1224
begin
8574
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1225
    if (Gear^.Message and (gmAllStoppable or gmLJump or gmHJump) = 0)
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1226
    and (Gear^.State and (gstHHJumping or gstHHHJump or gstAttacking) = 0)
8616
c4536e98c712 Safety check. The main place this can be a problem is on a mild bowl w/ multiple hogs. Could possibly add a hog collision check in here.
nemo
parents: 8589
diff changeset
  1227
    and (not Gear^.dY.isNegative) and (TurnTimeLeft > 0) and (TestCollisionYwithGear(Gear, 1) and lfIce <> 0) then
8574
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1228
        begin
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1229
        slope:= CalcSlopeBelowGear(Gear);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1230
        if slope.QWordValue > 730144440 then // ignore mild slopes
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1231
            begin
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1232
            Gear^.dX:=Gear^.dX+slope*cGravity*_256;
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1233
            Gear^.State:= Gear^.State or gstMoving
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1234
            end
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1235
        end;
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1236
(*
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1237
    x:= hwRound(Gear^.X);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1238
    y:= hwRound(Gear^.Y);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1239
    AddVisualGear(x, y, vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1240
    AddVisualGear(x - hwRound(_5*slope), y + hwRound(_5*slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1241
    AddVisualGear(x + hwRound(_5*slope), y - hwRound(_5*slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1242
    AddVisualGear(x - hwRound(_20 * slope), y + hwRound(_20 * slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1243
    AddVisualGear(x + hwRound(_20 * slope), y - hwRound(_20 * slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1244
    AddVisualGear(x - hwRound(_30 * slope), y + hwRound(_30 * slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1245
    AddVisualGear(x + hwRound(_30 * slope), y - hwRound(_30 * slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1246
    AddVisualGear(x - hwRound(_40 * slope), y + hwRound(_40 * slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1247
    AddVisualGear(x + hwRound(_40 * slope), y - hwRound(_40 * slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1248
    AddVisualGear(x - hwRound(_50 * slope), y + hwRound(_50 * slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1249
    AddVisualGear(x + hwRound(_50 * slope), y - hwRound(_50 * slope), vgtSmokeTrace); *)
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1250
end;
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1251
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1252
////////////////////////////////////////////////////////////////////////////////
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1253
procedure doStepHedgehog(Gear: PGear);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1254
begin
7389
15c3fb4882df Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents: 7375
diff changeset
  1255
CheckSum:= CheckSum xor Gear^.Hedgehog^.BotLevel;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1256
if (Gear^.Message and gmDestroy) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1257
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1258
    DeleteGear(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1259
    exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1260
    end;
8576
286ebfcb3d97 workaround for frequent AllHH active call in hedgehog step
nemo
parents: 8574
diff changeset
  1261
if GameTicks mod 100 = 0 then CheckIce(Gear);
8563
4d9d8287e601 Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents: 8560
diff changeset
  1262
if Gear^.Hedgehog^.Effects[heFrozen] > 0 then 
4d9d8287e601 Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents: 8560
diff changeset
  1263
    begin
4d9d8287e601 Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents: 8560
diff changeset
  1264
    if Gear^.Hedgehog^.Effects[heFrozen] > 256 then
4d9d8287e601 Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents: 8560
diff changeset
  1265
        dec(Gear^.Hedgehog^.Effects[heFrozen])
4d9d8287e601 Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents: 8560
diff changeset
  1266
    else if GameTicks mod 10 = 0 then
4d9d8287e601 Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents: 8560
diff changeset
  1267
        dec(Gear^.Hedgehog^.Effects[heFrozen])
4d9d8287e601 Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents: 8560
diff changeset
  1268
    end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1269
if (Gear^.State and gstHHDriven) = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1270
    doStepHedgehogFree(Gear)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1271
else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1272
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1273
    with Gear^.Hedgehog^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1274
        if Team^.hasGone then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1275
            TeamGoneEffect(Team^)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1276
        else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1277
            doStepHedgehogDriven(Gear)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1278
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1279
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1280
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1281
end.