hedgewars/uGearsHedgehog.pas
author unc0rr
Thu, 17 Jun 2021 19:32:26 +0200
changeset 15794 7598960819a1
parent 15650 85d2afe34116
child 15900 128ace913837
permissions -rw-r--r--
Add sample ubot plugin written in haskell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     1
(*
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     2
 * Hedgewars, a free turn based strategy game
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 10970
diff changeset
     3
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     4
 *
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     8
 *
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    12
 * GNU General Public License for more details.
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    13
 *
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    14
 * You should have received a copy of the GNU General Public License
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    15
 * along with this program; if not, write to the Free Software
10108
c68cf030eded update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents: 10105
diff changeset
    16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    17
 *)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    18
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    19
{$INCLUDE "options.inc"}
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    20
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    21
unit uGearsHedgehog;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    22
interface
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9954
diff changeset
    23
uses uTypes, uGearsHandlersMess;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    24
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    25
procedure doStepHedgehog(Gear: PGear);
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
    26
procedure AfterAttack;
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
    27
procedure HedgehogStep(Gear: PGear);
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
    28
procedure doStepHedgehogMoving(Gear: PGear);
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
    29
procedure HedgehogChAngle(HHGear: PGear);
6581
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;
12815
92218a06c9ff Don't send taunt message for automatically happening taunt animation
unc0rr
parents: 12649
diff changeset
    33
procedure PlayTaunt(taunt: Longword);
13533
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
    34
function HHGetTimer(Gear: PGear): LongWord;
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
    35
function HHGetTimerMsg(Gear: PGear): LongWord;
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
    36
function HHGetBounciness(Gear: PGear): LongWord;
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
    37
function HHGetBouncinessMsg(Gear: PGear): LongWord;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    38
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    39
implementation
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
    40
uses uConsts, uVariables, uFloat, uAmmos, uSound, uCaptions,
9285
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    41
    uCommands, uLocale, uUtils, uStats, uIO, uScript,
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    42
    uGearsList, uCollisions, uRandom, uStore, uTeams,
9670
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
    43
    uGearsUtils, uVisualGearsList, uChat;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    44
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
    45
var GHStepTicks: LongWord = 0;
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
    46
9670
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
    47
procedure AFKSkip;
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
    48
var
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
    49
    t: byte;
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
    50
begin
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
    51
    t:= 0;
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
    52
    while (TeamsArray[t] <> CurrentTeam) do inc(t);
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
    53
13876
aa321e51da14 make explicit for pas2c some string casts that fpc was probably doing automatically
nemo
parents: 13868
diff changeset
    54
    AddChatString(#2 + Format(shortstring(trmsg[sidAutoSkip]), CurrentTeam^.TeamName));
9670
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
    55
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
    56
    ParseCommand('/skip', true)
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
    57
end;
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
    58
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    59
// Shouldn't more of this ammo switching stuff be moved to uAmmos ?
12304
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
    60
function ChangeAmmo(HHGear: PGear): boolean;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    61
var slot, i: Longword;
12304
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
    62
    ammoidx: LongInt;
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7738
diff changeset
    63
    prevAmmo: TAmmoType;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    64
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    65
ChangeAmmo:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    66
slot:= HHGear^.MsgParam;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    67
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    68
with HHGear^.Hedgehog^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    69
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    70
    HHGear^.Message:= HHGear^.Message and (not gmSlot);
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7738
diff changeset
    71
    prevAmmo:= CurAmmoType;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    72
    ammoidx:= 0;
9732
a13afa6c5d21 don't abort changeammo on attacking/attacked in infattack mode, keep scrolling through slot after setweap even if a multishoot was aborted triggering gstattacked, to ensure proper ammo gets set for next turn
nemo
parents: 9731
diff changeset
    73
    if (((HHGear^.State and (gstAttacking or gstAttacked)) <> 0) and (GameFlags and gfInfAttack = 0))
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    74
    or ((HHGear^.State and gstHHDriven) = 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    75
        exit;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    76
    ChangeAmmo:= true;
12304
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
    77
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
    78
    while (ammoidx < cMaxSlotAmmoIndex) and (Ammo^[slot, ammoidx].AmmoType <> CurAmmoType) do
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
    79
        inc(ammoidx);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    80
8553
a8e1cff496d8 Allow switching away from any weapon when during multishoot.
nemo
parents: 8494
diff changeset
    81
    if (MultiShootAttacks > 0) then
a8e1cff496d8 Allow switching away from any weapon when during multishoot.
nemo
parents: 8494
diff changeset
    82
        begin
13096
d78e65c66573 Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12996
diff changeset
    83
        if (Effects[heArtillery] = 2) then
d78e65c66573 Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12996
diff changeset
    84
            Effects[heArtillery]:= 0;
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
    85
        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
    86
            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
    87
            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
    88
            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
    89
            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
    90
        else OnUsedAmmo(HHGear^.Hedgehog^)
8553
a8e1cff496d8 Allow switching away from any weapon when during multishoot.
nemo
parents: 8494
diff changeset
    91
        end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    92
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    93
    MultiShootAttacks:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    94
    HHGear^.Message:= HHGear^.Message and (not (gmLJump or gmHJump));
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
    95
12304
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
    96
    if Ammoz[CurAmmoType].Slot = slot then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    97
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    98
        i:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
    99
        repeat
12304
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
   100
        inc(ammoidx);
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
   101
        if (ammoidx > cMaxSlotAmmoIndex) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   102
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   103
            inc(i);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   104
            CurAmmoType:= amNothing;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   105
            ammoidx:= -1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   106
            //TryDo(i < 2, 'Engine bug: no ammo in current slot', true)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   107
            end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   108
        until (i = 1) or ((Ammo^[slot, ammoidx].Count > 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   109
        and (Team^.Clan^.TurnNumber > Ammoz[Ammo^[slot, ammoidx].AmmoType].SkipTurns))
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   110
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   111
        end
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   112
    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   113
        begin
12304
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
   114
        i:= 0;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   115
        // check whether there is ammo in slot
12304
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
   116
        while (i <= cMaxSlotAmmoIndex) and ((Ammo^[slot, i].Count = 0)
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
   117
        or (Team^.Clan^.TurnNumber <= Ammoz[Ammo^[slot, i].AmmoType].SkipTurns))
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
   118
            do inc(i);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   119
12304
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
   120
        if i <= cMaxSlotAmmoIndex then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   121
            ammoidx:= i
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   122
        else ammoidx:= -1
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   123
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   124
        if ammoidx >= 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   125
            CurAmmoType:= Ammo^[slot, ammoidx].AmmoType;
12304
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
   126
    // Try again in the next slot
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
   127
    if (CurAmmoType = prevAmmo) and (slot < cMaxSlotIndex) then
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
   128
        begin
12304
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
   129
        inc(slot);
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
   130
        HHGear^.MsgParam:= slot;
12304
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
   131
        ChangeAmmo(HHGear)
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7738
diff changeset
   132
        end
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   133
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   134
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   135
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   136
procedure HHSetWeapon(HHGear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   137
var t: LongInt;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   138
    weap: TAmmoType;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   139
    Hedgehog: PHedgehog;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   140
    s: boolean;
9732
a13afa6c5d21 don't abort changeammo on attacking/attacked in infattack mode, keep scrolling through slot after setweap even if a multishoot was aborted triggering gstattacked, to ensure proper ammo gets set for next turn
nemo
parents: 9731
diff changeset
   141
    prevState, newState: LongWord;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   142
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   143
s:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   144
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   145
weap:= TAmmoType(HHGear^.MsgParam);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   146
Hedgehog:= HHGear^.Hedgehog;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   147
12912
a840fd55caa6 Calling SetWeapon with amNothing now unselects weapon
Wuzzy <Wuzzy2@mail.ru>
parents: 12898
diff changeset
   148
HHGear^.Message:= HHGear^.Message and (not gmWeapon);
a840fd55caa6 Calling SetWeapon with amNothing now unselects weapon
Wuzzy <Wuzzy2@mail.ru>
parents: 12898
diff changeset
   149
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   150
if Hedgehog^.Team^.Clan^.TurnNumber <= Ammoz[weap].SkipTurns then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   151
    exit; // weapon is not activated yet
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   152
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   153
HHGear^.MsgParam:= Ammoz[weap].Slot;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   154
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   155
t:= cMaxSlotAmmoIndex;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   156
9732
a13afa6c5d21 don't abort changeammo on attacking/attacked in infattack mode, keep scrolling through slot after setweap even if a multishoot was aborted triggering gstattacked, to ensure proper ammo gets set for next turn
nemo
parents: 9731
diff changeset
   157
prevState:= HHGear^.State;
a13afa6c5d21 don't abort changeammo on attacking/attacked in infattack mode, keep scrolling through slot after setweap even if a multishoot was aborted triggering gstattacked, to ensure proper ammo gets set for next turn
nemo
parents: 9731
diff changeset
   158
newState:= prevState;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   159
with Hedgehog^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   160
    while (CurAmmoType <> weap) and (t >= 0) do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   161
        begin
12304
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
   162
        s:= ChangeAmmo(HHGear);
9732
a13afa6c5d21 don't abort changeammo on attacking/attacked in infattack mode, keep scrolling through slot after setweap even if a multishoot was aborted triggering gstattacked, to ensure proper ammo gets set for next turn
nemo
parents: 9731
diff changeset
   163
        if HHGear^.State <> prevState then // so we can keep gstAttacked out of consideration when looping
a13afa6c5d21 don't abort changeammo on attacking/attacked in infattack mode, keep scrolling through slot after setweap even if a multishoot was aborted triggering gstattacked, to ensure proper ammo gets set for next turn
nemo
parents: 9731
diff changeset
   164
            newState:= HHGear^.State;
a13afa6c5d21 don't abort changeammo on attacking/attacked in infattack mode, keep scrolling through slot after setweap even if a multishoot was aborted triggering gstattacked, to ensure proper ammo gets set for next turn
nemo
parents: 9731
diff changeset
   165
        HHGear^.State:= prevState;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   166
        dec(t)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   167
        end;
9732
a13afa6c5d21 don't abort changeammo on attacking/attacked in infattack mode, keep scrolling through slot after setweap even if a multishoot was aborted triggering gstattacked, to ensure proper ammo gets set for next turn
nemo
parents: 9731
diff changeset
   168
HHGear^.State:= newState;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   169
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   170
if s then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   171
    ApplyAmmoChanges(HHGear^.Hedgehog^)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   172
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   173
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   174
procedure HHSetTimer(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   175
var CurWeapon: PAmmo;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   176
    color: LongWord;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   177
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   178
Gear^.Message:= Gear^.Message and (not gmTimer);
6924
57b66ee3bff3 Get rid of overloaded functions in uAmmo
unc0rr
parents: 6700
diff changeset
   179
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   180
with Gear^.Hedgehog^ do
13792
5d46b4fae757 Ignore gmTimer after attack or hog is no longer controlled
Wuzzy <Wuzzy2@mail.ru>
parents: 13766
diff changeset
   181
    if (((Gear^.State and gstAttacked) <> 0) and (GameFlags and gfInfAttack = 0))
5d46b4fae757 Ignore gmTimer after attack or hog is no longer controlled
Wuzzy <Wuzzy2@mail.ru>
parents: 13766
diff changeset
   182
    or ((Gear^.State and gstHHDriven) = 0) then
5d46b4fae757 Ignore gmTimer after attack or hog is no longer controlled
Wuzzy <Wuzzy2@mail.ru>
parents: 13766
diff changeset
   183
        exit;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   184
    if ((Gear^.Message and gmPrecise) <> 0) and ((CurWeapon^.Propz and ammoprop_SetBounce) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   185
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   186
        color:= Gear^.Hedgehog^.Team^.Clan^.Color;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
   187
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   188
        case Gear^.MsgParam of
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   189
            1: begin
10116
dd27562b6f21 rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents: 10108
diff changeset
   190
               AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce1]), color, capgrpAmmostate);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   191
               end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   192
            2: begin
10116
dd27562b6f21 rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents: 10108
diff changeset
   193
               AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce2]), color, capgrpAmmostate);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   194
               end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   195
            3: begin
10116
dd27562b6f21 rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents: 10108
diff changeset
   196
               AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce3]), color, capgrpAmmostate);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   197
               end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   198
            4: begin
10116
dd27562b6f21 rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents: 10108
diff changeset
   199
               AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce4]), color, capgrpAmmostate);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   200
               end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   201
            5: begin
10116
dd27562b6f21 rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents: 10108
diff changeset
   202
               AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce5]), color, capgrpAmmostate);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   203
               end
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
   204
            end;
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
   205
        CurWeapon^.Bounciness:= bouncinessLevels[Gear^.MsgParam - 1];
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   206
        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   207
    else if (CurWeapon^.Propz and ammoprop_Timerable) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   208
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   209
        CurWeapon^.Timer:= 1000 * Gear^.MsgParam;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   210
        with CurrentTeam^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   211
            ApplyAmmoChanges(Hedgehogs[CurrHedgehog]);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   212
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   213
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   214
13533
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   215
// Return timer (in ticks) of hogs current ammo or MSGPARAM_INVALID
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   216
// if not timerable
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   217
function HHGetTimer(Gear: PGear): LongWord;
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   218
var CurWeapon: PAmmo;
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   219
begin
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   220
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^);
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   221
with Gear^.Hedgehog^ do
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   222
    if ((CurWeapon^.Propz and ammoprop_Timerable) <> 0) then
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   223
        HHGetTimer:= CurWeapon^.Timer
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   224
    else
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   225
        HHGetTimer:= MSGPARAM_INVALID;
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   226
end;
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   227
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   228
// Returns timer as a corresponding msgParam for /timer command
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   229
function HHGetTimerMsg(Gear: PGear): LongWord;
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   230
var timer: LongInt;
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   231
begin
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   232
timer:= HHGetTimer(Gear);
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   233
if timer > -1 then
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   234
    HHGetTimerMsg:= timer div 1000
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   235
else
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   236
    HHGetTimerMsg:= MSGPARAM_INVALID
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   237
end;
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   238
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   239
// Returns the selected bounciness value for the hog gear's current ammo
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   240
// or MSGPARAM_INVALID if current ammo has no settable bounciness
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   241
function HHGetBounciness(Gear: PGear): LongWord;
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   242
var CurWeapon: PAmmo;
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   243
begin
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   244
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^);
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   245
with Gear^.Hedgehog^ do
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   246
    if ((CurWeapon^.Propz and ammoprop_SetBounce) <> 0) then
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   247
        HHGetBounciness:= CurWeapon^.Bounciness
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   248
    else
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   249
        HHGetBounciness:= MSGPARAM_INVALID
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   250
end;
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   251
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   252
// Returns bounciness as a corresponding msgParam for /timer command
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   253
function HHGetBouncinessMsg(Gear: PGear): LongWord;
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   254
var bounciness, i: LongInt;
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   255
begin
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   256
    bounciness:= HHGetBounciness(Gear);
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   257
    if bounciness > -1 then
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   258
        for i:=0 to High(bouncinessLevels) do
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   259
            if bounciness = bouncinessLevels[i] then
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   260
                begin
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   261
                HHGetBouncinessMsg:= i+1;
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   262
                exit
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   263
                end;
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   264
    HHGetBouncinessMsg:= MSGPARAM_INVALID
0c8001e43fd3 Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents: 13532
diff changeset
   265
end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   266
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   267
procedure Attack(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   268
var xx, yy, newDx, newDy, lx, ly: hwFloat;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   269
    speech: PVisualGear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   270
    newGear:  PGear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   271
    CurWeapon: PAmmo;
10970
7341e0c3f966 LuaAPI: fix OnHogAttack the incorrect AmmoType (amNothing) under certain conditions. Thanks for CheezeMonkey for reporting this
sheepluva
parents: 10942
diff changeset
   272
    usedAmmoType: TAmmoType;
15146
6b7d92fa4912 Keep hog facing direction while on parachute
Wuzzy <Wuzzy2@mail.ru>
parents: 15127
diff changeset
   273
    altUse, faceLeft: boolean;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   274
    elastic: hwFloat;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   275
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   276
newGear:= nil;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   277
bShowFinger:= false;
6924
57b66ee3bff3 Get rid of overloaded functions in uAmmo
unc0rr
parents: 6700
diff changeset
   278
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   279
with Gear^,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   280
    Gear^.Hedgehog^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   281
        begin
10970
7341e0c3f966 LuaAPI: fix OnHogAttack the incorrect AmmoType (amNothing) under certain conditions. Thanks for CheezeMonkey for reporting this
sheepluva
parents: 10942
diff changeset
   282
        usedAmmoType:= CurAmmoType;
10818
f642a28cab0c Add placement of airmines in engine outside of hog proximity. Has a bug, only protecting 1st team. Also fix a spelling error and rename gstHHChooseTarget to gstChooseTarget
nemo
parents: 10789
diff changeset
   283
        if ((State and gstHHDriven) <> 0) and ((State and (gstAttacked or gstChooseTarget)) = 0) and (((State and gstMoving) = 0)
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   284
        or (Power > 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   285
        or (CurAmmoType = amTeleport)
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   286
        or
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   287
        // Allow attacks while moving on ammo with AltAttack
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   288
        ((CurAmmoGear <> nil) and ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0))
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   289
        or ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AttackInMove) <> 0))
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   290
        and ((TargetPoint.X <> NoPointX) or ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_NeedTarget) = 0)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   291
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   292
            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
   293
            if (Power = cMaxPower) or ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_Power) = 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   294
                Message:= Message and (not gmAttack)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   295
            else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   296
                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   297
                if Power = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   298
                    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   299
                    AttackBar:= CurrentTeam^.AttackBar;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   300
                    PlaySound(sndThrowPowerUp)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   301
                    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   302
                inc(Power)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   303
                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
   304
            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
   305
                exit;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   306
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   307
            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
   308
                begin
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   309
                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
   310
                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
   311
                end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   312
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   313
            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
   314
            yy:= -AngleCos(Angle);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   315
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   316
            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
   317
            ly:= Y + int2hwfloat(round(GetLaunchY(CurAmmoType, Angle)));
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   318
13096
d78e65c66573 Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12996
diff changeset
   319
            if ((Gear^.State and gstHHHJump) <> 0) and (Effects[heArtillery] = 0) then
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   320
                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
   321
            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
   322
                AddVoice(Ammoz[CurAmmoType].Ammo.AttackVoice, CurrentTeam^.voicepack);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   323
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   324
// 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
   325
            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
   326
            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
   327
            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
   328
            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
   329
                begin
8987
47cf32305d99 some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents: 8947
diff changeset
   330
                if (CurAmmoGear^.AmmoType = amJetpack) and (Gear^.Message and gmPrecise <> 0) then
47cf32305d99 some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents: 8947
diff changeset
   331
                    begin
8992
5b0be812dcdb Rename submersible state, increase getaway time for attack underwater, slow down gear dx/dy underwater to simulate water resistance
nemo
parents: 8987
diff changeset
   332
                    newDx:= xx*cMaxPower/cPowerDivisor;
5b0be812dcdb Rename submersible state, increase getaway time for attack underwater, slow down gear dx/dy underwater to simulate water resistance
nemo
parents: 8987
diff changeset
   333
                    newDy:= yy*cMaxPower/cPowerDivisor
8987
47cf32305d99 some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents: 8947
diff changeset
   334
                    end
47cf32305d99 some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents: 8947
diff changeset
   335
                else
47cf32305d99 some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents: 8947
diff changeset
   336
                    begin
47cf32305d99 some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents: 8947
diff changeset
   337
                    newDx:= dX;
47cf32305d99 some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents: 8947
diff changeset
   338
                    newDy:= dY
47cf32305d99 some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents: 8947
diff changeset
   339
                    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
   340
                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
   341
                end
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   342
            else
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   343
                begin
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   344
                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
   345
                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
   346
                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
   347
                end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   348
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   349
            case CurAmmoType of
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   350
                      amGrenade: newGear:= AddGear(hwRound(lx), hwRound(ly), gtGrenade,         0, newDx, newDy, CurWeapon^.Timer);
10789
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10714
diff changeset
   351
                      amAirMine: newGear:= AddGear(hwRound(lx), hwRound(ly), gtAirMine,         0, newDx, newDy, 0);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   352
                      amMolotov: newGear:= AddGear(hwRound(lx), hwRound(ly), gtMolotov,      0, newDx, newDy, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   353
                  amClusterBomb: newGear:= AddGear(hwRound(lx), hwRound(ly), gtClusterBomb,  0, newDx, newDy, CurWeapon^.Timer);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   354
                      amGasBomb: newGear:= AddGear(hwRound(lx), hwRound(ly), gtGasBomb,      0, newDx, newDy, CurWeapon^.Timer);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   355
                      amBazooka: newGear:= AddGear(hwRound(lx), hwRound(ly), gtShell,        0, newDx, newDy, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   356
                     amSnowball: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSnowball,     0, newDx, newDy, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   357
                          amBee: newGear:= AddGear(hwRound(lx), hwRound(ly), gtBee,          0, newDx, newDy, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   358
                      amShotgun: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   359
                                 PlaySound(sndShotgunReload);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   360
                                 newGear:= AddGear(hwRound(lx), hwRound(ly), gtShotgunShot,  0, xx * _0_5, yy * _0_5, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   361
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   362
                   amPickHammer: newGear:= AddGear(hwRound(lx), hwRound(ly) + cHHRadius, gtPickHammer, 0, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   363
                         amSkip: ParseCommand('/skip', true);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   364
                         amRope: newGear:= AddGear(hwRound(lx), hwRound(ly), gtRope, 0, xx, yy, 0);
10942
5d7dd938dedc This probably fixes bug #839 - mine time was hardcoded to 3000 in Attack, instead of using the "0 as undefined" input that other places were using. When re653e96b0ec3 started paying attention to the input parameter, this previously ignored value became a problem.
nemo
parents: 10895
diff changeset
   365
                         amMine: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 7, hwRound(ly), gtMine, gstWait, SignAs(_0_02, dX), _0, 0);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   366
                        amSMine: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSMine,    0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0);
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   367
                        amKnife: begin
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7738
diff changeset
   368
                                 newGear:= AddGear(hwRound(lx), hwRound(ly), gtKnife,    0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0);
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   369
                                 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
   370
                                 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
   371
                                 end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   372
                       amDEagle: newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtDEagleShot, 0, xx * _0_5, yy * _0_5, 0);
13161
aa7915ceb69f Add new minigun sound
alfadur
parents: 13156
diff changeset
   373
                      amMinigun: begin
aa7915ceb69f Add new minigun sound
alfadur
parents: 13156
diff changeset
   374
                                 PlaySound(sndMinigun);
aa7915ceb69f Add new minigun sound
alfadur
parents: 13156
diff changeset
   375
                                 newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtMinigun, 0, xx * _0_5, yy * _0_5, 0);
aa7915ceb69f Add new minigun sound
alfadur
parents: 13156
diff changeset
   376
                                 end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   377
                      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
   378
                    amPortalGun: begin
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   379
                                 newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtPortal, 0, xx * _0_6, yy * _0_6,
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   380
                                 // set selected color
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   381
                                 CurWeapon^.Pos);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   382
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   383
                  amSniperRifle: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   384
                                 PlaySound(sndSniperReload);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   385
                                 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
   386
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   387
                     amDynamite: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 7, hwRound(ly), gtDynamite, 0, SignAs(_0_03, dX), _0, 5000);
13851
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13832
diff changeset
   388
                      amCreeper: begin
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13832
diff changeset
   389
                                 // TODO: Implement proper creeper spawning code. This is still the old rubber duck code.
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13832
diff changeset
   390
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13832
diff changeset
   391
                                 // Does it spawn inside water?
12204
0a7d7256d3d8 Don't play duck drop sound when duck spawns in water
Wuzzy <almikes@aol.com>
parents: 12194
diff changeset
   392
                                 if (LeftX > hwRound(Gear^.X) - Gear^.Karma) or (RightX < hwRound(Gear^.X) + Gear^.Karma) or (cWaterLine < hwRound(Gear^.Y) + Gear^.Karma) then
0a7d7256d3d8 Don't play duck drop sound when duck spawns in water
Wuzzy <almikes@aol.com>
parents: 12194
diff changeset
   393
                                     PlaySound(sndDroplet2)
0a7d7256d3d8 Don't play duck drop sound when duck spawns in water
Wuzzy <almikes@aol.com>
parents: 12194
diff changeset
   394
                                 else
13851
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13832
diff changeset
   395
                                     // spawned in air, normal drop sound
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13832
diff changeset
   396
                                     PlaySound(sndCreeperDrop);
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13832
diff changeset
   397
                                 newGear:= AddGear(hwRound(lx) + hwSign(dX) * 7, hwRound(ly), gtCreeper, 0, SignAs(_0_03, dX), _0, 0);
12193
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12184
diff changeset
   398
                                 if not ((not dX.isNegative) xor ((State and gstHHHJump) <> 0)) then
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12184
diff changeset
   399
                                     newGear^.Tag:= -1
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12184
diff changeset
   400
                                 else
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12184
diff changeset
   401
                                     newGear^.Tag:= 1;
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12184
diff changeset
   402
                                 end;
15639
afeffdb4a712 add sentry 🤖 stub
alfadur
parents: 15627
diff changeset
   403
                    amSentry: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 7, hwRound(ly), gtSentry, 0, SignAs(_0_03, dX), _0, 0);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   404
                    amFirePunch: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtFirePunch, 0, xx, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   405
                         amWhip: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   406
                                 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
   407
                                 PlaySound(sndWhipCrack)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   408
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   409
                       amHammer: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   410
                                 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
   411
                                 PlaySound(sndWhack)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   412
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   413
                  amBaseballBat: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   414
                                 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
   415
                                 PlaySound(sndBaseballBat) // TODO: Only play if something is hit?
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   416
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   417
                    amParachute: begin
15146
6b7d92fa4912 Keep hog facing direction while on parachute
Wuzzy <Wuzzy2@mail.ru>
parents: 15127
diff changeset
   418
                                 faceLeft:= IsHogFacingLeft(Gear);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   419
                                 newGear:= AddGear(hwRound(lx), hwRound(ly), gtParachute, 0, _0, _0, 0);
15146
6b7d92fa4912 Keep hog facing direction while on parachute
Wuzzy <Wuzzy2@mail.ru>
parents: 15127
diff changeset
   420
                                 if faceLeft then
6b7d92fa4912 Keep hog facing direction while on parachute
Wuzzy <Wuzzy2@mail.ru>
parents: 15127
diff changeset
   421
                                     newGear^.Tag:= -1;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   422
                                 PlaySound(sndParachute)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   423
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   424
                    // 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
   425
                    amAirAttack: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 0, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   426
                   amMineStrike: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 1, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   427
                  amDrillStrike: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 3, _0, _0, CurWeapon^.Timer);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   428
                       amNapalm: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 2, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   429
                    amBlowTorch: newGear:= AddGear(hwRound(lx), hwRound(ly), gtBlowTorch, 0, SignAs(_0_5, dX), _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   430
                       amGirder: newGear:= AddGear(0, 0, gtGirder, CurWeapon^.Pos, _0, _0, 0);
9768
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9732
diff changeset
   431
                       amRubber: begin
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9732
diff changeset
   432
                                 newGear:= AddGear(0, 0, gtGirder, CurWeapon^.Pos, _0, _0, 0);
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9732
diff changeset
   433
                                 newGear^.AmmoType:= amRubber
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9732
diff changeset
   434
                                 end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   435
                     amTeleport: newGear:= AddGear(CurWeapon^.Pos, 0, gtTeleport, 0, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   436
                       amSwitch: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSwitcher, 0, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   437
                       amMortar: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   438
                                 playSound(sndMortar);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   439
                                 newGear:= AddGear(hwRound(lx), hwRound(ly), gtMortar,  0, xx*cMaxPower/cPowerDivisor, yy*cMaxPower/cPowerDivisor, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   440
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   441
                      amRCPlane: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   442
                                 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
   443
                                 newGear^.SoundChannel:= LoopSound(sndRCPlane)
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   444
                                 end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   445
                     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
   446
                         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
   447
                    amSeduction: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSeduction, 0, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   448
                   amWatermelon: newGear:= AddGear(hwRound(lx), hwRound(ly), gtWatermelon,  0, newDx, newDy, CurWeapon^.Timer);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   449
                  amHellishBomb: newGear:= AddGear(hwRound(lx), hwRound(ly), gtHellishBomb,    0, newDx, newDy, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   450
                        amDrill: newGear:= AddGear(hwRound(lx), hwRound(ly), gtDrill, 0, newDx, newDy, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   451
                      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
   452
                      amJetpack: newGear:= AddGear(hwRound(lx), hwRound(ly), gtJetpack, 0, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   453
                        amBirdy: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   454
                             PlaySound(sndWhistle);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   455
                             newGear:= AddGear(hwRound(lx), hwRound(ly) - 32, gtBirdy, 0, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   456
                             end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   457
                   amLowGravity: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   458
                                 PlaySound(sndLowGravity);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   459
                                 cGravity:= cMaxWindSpeed;
11887
083c12795632 Show symbols at bottom right while extra damage / low grav. are active
Wuzzy <almikes@aol.com>
parents: 11848
diff changeset
   460
                                 cGravityf:= 0.00025;
083c12795632 Show symbols at bottom right while extra damage / low grav. are active
Wuzzy <almikes@aol.com>
parents: 11848
diff changeset
   461
                                 cLowGravity := true
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   462
                                 end;
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   463
                  amExtraDamage: begin
13988
c28a4f76d37d Add separate sound symbols for case impact and extra damage
Wuzzy <Wuzzy2@mail.ru>
parents: 13876
diff changeset
   464
                                 PlaySound(sndExtraDamage);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   465
                                 cDamageModifier:= _1_5
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   466
                                 end;
11911
6145efcff302 Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents: 11887
diff changeset
   467
                 amInvulnerable: begin
6145efcff302 Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents: 11887
diff changeset
   468
                                 PlaySound(sndInvulnerable);
6145efcff302 Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents: 11887
diff changeset
   469
                                 Effects[heInvulnerable]:= 1
6145efcff302 Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents: 11887
diff changeset
   470
                                 end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   471
                    amExtraTime: begin
11765
10860d4bca22 Add sound effects for: cleaver impact, air mine impact, using extra time
Wuzzy <almikes@aol.com>
parents: 11624
diff changeset
   472
                                 PlaySound(sndExtraTime);
13663
91d48cbae927 Prevent wrapping of turn time when using extra time
Wuzzy <Wuzzy2@mail.ru>
parents: 13642
diff changeset
   473
                                 if TurnTimeLeft <= (cMaxTurnTime - ExtraTime) then
91d48cbae927 Prevent wrapping of turn time when using extra time
Wuzzy <Wuzzy2@mail.ru>
parents: 13642
diff changeset
   474
                                     TurnTimeLeft:= TurnTimeLeft + ExtraTime
91d48cbae927 Prevent wrapping of turn time when using extra time
Wuzzy <Wuzzy2@mail.ru>
parents: 13642
diff changeset
   475
                                 else
91d48cbae927 Prevent wrapping of turn time when using extra time
Wuzzy <Wuzzy2@mail.ru>
parents: 13642
diff changeset
   476
                                     TurnTimeLeft:= cMaxTurnTime;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   477
                                 end;
11911
6145efcff302 Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents: 11887
diff changeset
   478
                   amLaserSight: begin
6145efcff302 Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents: 11887
diff changeset
   479
                                 PlaySound(sndLaserSight);
6145efcff302 Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents: 11887
diff changeset
   480
                                 cLaserSighting:= true
6145efcff302 Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents: 11887
diff changeset
   481
                                 end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   482
                     amVampiric: begin
7053
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7028
diff changeset
   483
                                 PlaySoundV(sndOw1, Team^.voicepack);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   484
                                 cVampiric:= true;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   485
                                 end;
14566
85921db6f7c3 Disallow placement of piano beyond bounce world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 14399
diff changeset
   486
                        amPiano: newGear:= AddGear(TargetPoint.X, -1024, gtPiano, 0, _0, _0, 0);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   487
                 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
   488
                      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
   489
                  amResurrector: begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   490
                                 newGear:= AddGear(hwRound(lx), hwRound(ly), gtResurrector, 0, _0, _0, 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   491
                                 newGear^.SoundChannel := LoopSound(sndResurrector);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   492
                                 end;
9675
295636ec930a cleanup of timer accidentally exposed prob w/ timebox
nemo
parents: 9672
diff changeset
   493
                       amTardis: newGear:= AddGear(hwRound(X), hwRound(Y), gtTardis, 0, _0, _0, 0);
8774
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8753
diff changeset
   494
                       amIceGun: newGear:= AddGear(hwRound(X), hwRound(Y), gtIceGun, 0, _0, _0, 0);
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   495
            end;
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9954
diff changeset
   496
            if altUse and (newGear <> nil) and
8987
47cf32305d99 some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents: 8947
diff changeset
   497
               ((CurAmmoGear = nil) or (CurAmmoGear^.AmmoType <> amJetpack) or (Gear^.Message and gmPrecise = 0)) then
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   498
               begin
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   499
               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
   500
               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
   501
               end;
8987
47cf32305d99 some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents: 8947
diff changeset
   502
            if (CurAmmoGear <> nil) and (CurAmmoGear^.AmmoType = amJetpack) and
10354
56bd029245fc WIP: weSea tweaks, functional and visual
sheepluva
parents: 10178
diff changeset
   503
               (Gear^.Message and gmPrecise <> 0) and CheckCoordInWater(hwRound(X), hwRound(Y)) then
8992
5b0be812dcdb Rename submersible state, increase getaway time for attack underwater, slow down gear dx/dy underwater to simulate water resistance
nemo
parents: 8987
diff changeset
   504
                newGear^.State:= newGear^.State or gstSubmersible;
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   505
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   506
            case CurAmmoType of
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   507
                     amGrenade, amMolotov,
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   508
                 amClusterBomb, amGasBomb,
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   509
                     amBazooka, amSnowball,
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   510
                         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
   511
                      amMortar, amWatermelon,
10789
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10714
diff changeset
   512
                 amHellishBomb, amDrill,
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10714
diff changeset
   513
                     amAirMine: FollowGear:= newGear;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   514
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   515
                     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
   516
                        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
   517
                     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
   518
                   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
   519
                      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
   520
                   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
   521
                      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
   522
                      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
   523
                    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
   524
                   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
   525
                     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
   526
                amFlamethrower, amLandGun,
14196
ab5e710d353d Remove all traces of dead code related to amStructure/gtStructure
Wuzzy <Wuzzy2@mail.ru>
parents: 14014
diff changeset
   527
                 amResurrector, amTardis,
ab5e710d353d Remove all traces of dead code related to amStructure/gtStructure
Wuzzy <Wuzzy2@mail.ru>
parents: 14014
diff changeset
   528
                       amPiano, amIceGun,
14735
2d859d34e6f6 Fix turn end if placing air attack in bouncy world edge map was denied
Wuzzy <Wuzzy2@mail.ru>
parents: 14566
diff changeset
   529
                   amAirAttack, amNapalm,
2d859d34e6f6 Fix turn end if placing air attack in bouncy world edge map was denied
Wuzzy <Wuzzy2@mail.ru>
parents: 14566
diff changeset
   530
                  amMineStrike, amDrillStrike,
14196
ab5e710d353d Remove all traces of dead code related to amStructure/gtStructure
Wuzzy <Wuzzy2@mail.ru>
parents: 14014
diff changeset
   531
                      amRubber, amMinigun: CurAmmoGear:= newGear;
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   532
            end;
15610
d347785fd61c Follow piano gear when it's spawned by hedgehog
Wuzzy <Wuzzy2@mail.ru>
parents: 15394
diff changeset
   533
            if (CurAmmoType = amCake) or (CurAmmoType = amPiano) then
d347785fd61c Follow piano gear when it's spawned by hedgehog
Wuzzy <Wuzzy2@mail.ru>
parents: 15394
diff changeset
   534
                FollowGear:= newGear;
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   535
10789
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10714
diff changeset
   536
            if ((CurAmmoType = amMine) or (CurAmmoType = amSMine) or (CurAmmoType = amAirMine)) and (GameFlags and gfInfAttack <> 0) then
11197
8e0e3b79efa3 Avoid waiting past end of turn for smine.
nemo
parents: 11046
diff changeset
   537
                newGear^.FlightTime:= GameTicks + min(TurnTimeLeft,1000)
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   538
            else if CurAmmoType = amDrill then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   539
                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
   540
            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
   541
                begin
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   542
                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
   543
                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
   544
                end;
13463
f1d349a52bc7 Refactor: lfCurrentHog→lfCurHogCrate, lfNotCurrentMask→lfNotCurHogCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 13399
diff changeset
   545
            if (newGear <> nil) and (newGear^.CollisionMask and lfCurHogCrate <> 0) then newGear^.CollisionMask:= newGear^.CollisionMask and (not lfCurHogCrate);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   546
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   547
            // 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
   548
            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
   549
                FollowGear:= nil;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   550
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   551
            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
   552
                begin
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   553
                elastic:=  int2hwfloat(CurWeapon^.Bounciness) / _1000;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   554
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   555
            if elastic < _1 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   556
                newGear^.Elasticity:= newGear^.Elasticity * elastic
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   557
            else if elastic > _1 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   558
                newGear^.Elasticity:= _1 - ((_1-newGear^.Elasticity) / elastic);
8330
aaefa587e277 update branch with default
koda
parents: 8096 8161
diff changeset
   559
(* Experimented with friction modifier. Didn't seem helpful
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   560
            fric:= int2hwfloat(CurWeapon^.Bounciness) / _250;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   561
            if fric < _1 then newGear^.Friction:= newGear^.Friction * fric
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   562
            else if fric > _1 then newGear^.Friction:= _1 - ((_1-newGear^.Friction) / fric)*)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   563
            end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   564
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   565
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   566
            uStats.AmmoUsed(CurAmmoType);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   567
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   568
            if not (SpeechText = '') then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   569
                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
   570
                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
   571
                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
   572
                    begin
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   573
                    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
   574
                    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
   575
                    speech^.FrameTicks:= SpeechType;
13876
aa321e51da14 make explicit for pas2c some string casts that fpc was probably doing automatically
nemo
parents: 13868
diff changeset
   576
                    AddChatString(#9+Format(shortstring(trmsg[sidChatHog]), Gear^.Hedgehog^.Name, SpeechText));
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   577
                    end;
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   578
                SpeechText:= ''
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   579
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   580
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   581
            Power:= 0;
8833
c13ebed437cb update webgl branch
koda
parents: 8444 8818
diff changeset
   582
            if (CurAmmoGear <> nil) and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AltUse) = 0){check for dropping ammo from rope} then
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   583
                begin
8833
c13ebed437cb update webgl branch
koda
parents: 8444 8818
diff changeset
   584
                if CurAmmoType in [amRope,amResurrector] then
c13ebed437cb update webgl branch
koda
parents: 8444 8818
diff changeset
   585
                    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
   586
                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
   587
                end
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   588
            else
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   589
                begin
8833
c13ebed437cb update webgl branch
koda
parents: 8444 8818
diff changeset
   590
                if (not CurrentTeam^.ExtDriven) and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_Power) <> 0) then
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   591
                    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
   592
                AfterAttack;
13736
2ac3658a2a13 Fix hog attack code always destroying TargetPoint, even if no attack occurred. Fixes bug 265
Wuzzy <Wuzzy2@mail.ru>
parents: 13674
diff changeset
   593
                end;
2ac3658a2a13 Fix hog attack code always destroying TargetPoint, even if no attack occurred. Fixes bug 265
Wuzzy <Wuzzy2@mail.ru>
parents: 13674
diff changeset
   594
            TargetPoint.X := NoPointX;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   595
            end
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   596
        else
8492
67d2ad3b3ce9 Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents: 8414
diff changeset
   597
            Message:= Message and (not gmAttack);
10669
4c78eafe76ac Issue 755: Lua API: Add ammo type parameter for onHogAttack
sheepluva
parents: 10579
diff changeset
   598
10970
7341e0c3f966 LuaAPI: fix OnHogAttack the incorrect AmmoType (amNothing) under certain conditions. Thanks for CheezeMonkey for reporting this
sheepluva
parents: 10942
diff changeset
   599
    ScriptCall('onHogAttack', ord(usedAmmoType));
10669
4c78eafe76ac Issue 755: Lua API: Add ammo type parameter for onHogAttack
sheepluva
parents: 10579
diff changeset
   600
    end; // of with Gear^, Gear^.Hedgehog^ do
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   601
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   602
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   603
procedure AfterAttack;
10124
aabd1b75d5a3 Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents: 10123
diff changeset
   604
var s: ansistring;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   605
    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
   606
    HHGear: PGear;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   607
begin
7459
8511a3f899d3 Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents: 7426
diff changeset
   608
with CurrentHedgehog^ do
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   609
    begin
7459
8511a3f899d3 Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents: 7426
diff changeset
   610
    HHGear:= Gear;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   611
    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
   612
    if HHGear <> nil then HHGear^.State:= HHGear^.State and (not gstAttacking);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   613
    if (Ammoz[a].Ammo.Propz and ammoprop_Effect) = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   614
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   615
        Inc(MultiShootAttacks);
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   616
13995
52e20f8f538a Display "0 remaining" if multi-shoot weapon has been used up
Wuzzy <Wuzzy2@mail.ru>
parents: 13988
diff changeset
   617
        if (Ammoz[a].Ammo.NumPerTurn > 0) and ((GameFlags and gfMultiWeapon) = 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   618
            begin
10124
aabd1b75d5a3 Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents: 10123
diff changeset
   619
            s:= ansistring(inttostr(Ammoz[a].Ammo.NumPerTurn - MultiShootAttacks + 1));
13642
3d14950641a4 Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents: 13619
diff changeset
   620
            AddCaption(formatA(trmsg[sidRemaining], s), capcolDefault, capgrpAmmostate);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   621
            end;
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   622
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   623
        if (Ammoz[a].Ammo.NumPerTurn >= MultiShootAttacks)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   624
        or ((GameFlags and gfMultiWeapon) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   625
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   626
            isInMultiShoot:= true
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   627
            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   628
        else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   629
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   630
            OnUsedAmmo(CurrentHedgehog^);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   631
            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
   632
                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   633
                if TagTurnTimeLeft = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   634
                    TagTurnTimeLeft:= TurnTimeLeft;
13753
885404cdf07a Add missing nil check in AfterAttack (oops!)
Wuzzy <Wuzzy2@mail.ru>
parents: 13747
diff changeset
   635
                if (HHGear <> nil) and ((HHGear^.State and gstHHDriven) <> 0) then
13747
52959f686082 Don't start retreat time if hog has lost control in the meantime
Wuzzy <Wuzzy2@mail.ru>
parents: 13736
diff changeset
   636
                    begin
52959f686082 Don't start retreat time if hog has lost control in the meantime
Wuzzy <Wuzzy2@mail.ru>
parents: 13736
diff changeset
   637
                    if (CurAmmoGear <> nil) and (CurAmmoGear^.State and gstSubmersible <> 0) and CheckCoordInWater(hwRound(CurAmmoGear^.X), hwRound(CurAmmoGear^.Y)) then
52959f686082 Don't start retreat time if hog has lost control in the meantime
Wuzzy <Wuzzy2@mail.ru>
parents: 13736
diff changeset
   638
                         TurnTimeLeft:=(Ammoz[a].TimeAfterTurn * cGetAwayTime) div 25
52959f686082 Don't start retreat time if hog has lost control in the meantime
Wuzzy <Wuzzy2@mail.ru>
parents: 13736
diff changeset
   639
                    else TurnTimeLeft:=(Ammoz[a].TimeAfterTurn * cGetAwayTime) div 100;
52959f686082 Don't start retreat time if hog has lost control in the meantime
Wuzzy <Wuzzy2@mail.ru>
parents: 13736
diff changeset
   640
                    IsGetAwayTime := true;
52959f686082 Don't start retreat time if hog has lost control in the meantime
Wuzzy <Wuzzy2@mail.ru>
parents: 13736
diff changeset
   641
                    end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   642
                end;
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   643
            if ((Ammoz[a].Ammo.Propz and ammoprop_NoRoundEnd) = 0) and (HHGear <> nil) then
7462
nemo
parents: 7459
diff changeset
   644
                HHGear^.State:= HHGear^.State or gstAttacked;
12649
2837dee472cc Show selected weapon again when using it in inf attack mode
Wuzzy <almikes@aol.com>
parents: 12600
diff changeset
   645
            if (a = amNothing) or ((Ammoz[a].Ammo.Propz and ammoprop_NoRoundEnd) <> 0) or
2837dee472cc Show selected weapon again when using it in inf attack mode
Wuzzy <almikes@aol.com>
parents: 12600
diff changeset
   646
               (((GameFlags and gfInfAttack) <> 0) and ((Ammoz[a].Ammo.Propz and ammoprop_ForceTurnEnd) = 0)) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   647
                ApplyAmmoChanges(CurrentHedgehog^)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   648
            end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   649
        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   650
    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   651
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   652
        OnUsedAmmo(CurrentHedgehog^);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   653
        ApplyAmmoChanges(CurrentHedgehog^);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   654
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   655
    AttackBar:= 0
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   656
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   657
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   658
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   659
////////////////////////////////////////////////////////////////////////////////
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   660
procedure doStepHedgehogDead(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   661
const frametime = 200;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   662
      timertime = frametime * 6;
11202
a85b0ef91685 restore uid on resurrection as well
nemo
parents: 11197
diff changeset
   663
var grave:  PGear;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   664
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   665
if Gear^.Hedgehog^.Unplaced then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   666
    exit;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   667
if Gear^.Timer > 1 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   668
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   669
    AllInactive:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   670
    dec(Gear^.Timer);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   671
    if (Gear^.Timer mod frametime) = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   672
        inc(Gear^.Pos)
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   673
    end
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   674
else if Gear^.Timer = 1 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   675
    begin
9064
041d9f5e7b2c don't resurrect frozen
nemo
parents: 9041
diff changeset
   676
    Gear^.Hedgehog^.Effects[heFrozen]:= 0;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   677
    Gear^.State:= Gear^.State or gstNoDamage;
11468
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11267
diff changeset
   678
    doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), Gear^.Boom, CurrentHedgehog, EXPLAutoSound);
11202
a85b0ef91685 restore uid on resurrection as well
nemo
parents: 11197
diff changeset
   679
    grave:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtGrave, 0, _0, _0, 0);
a85b0ef91685 restore uid on resurrection as well
nemo
parents: 11197
diff changeset
   680
    grave^.Hedgehog:= Gear^.Hedgehog;
a85b0ef91685 restore uid on resurrection as well
nemo
parents: 11197
diff changeset
   681
    grave^.Pos:= Gear^.uid;
a85b0ef91685 restore uid on resurrection as well
nemo
parents: 11197
diff changeset
   682
    
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   683
    DeleteGear(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   684
    SetAllToActive
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   685
    end
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   686
else // Gear^.Timer = 0
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   687
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   688
    AllInactive:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   689
    Gear^.Z:= cCurrHHZ;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   690
    RemoveGearFromList(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   691
    InsertGearToList(Gear);
14014
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 13995
diff changeset
   692
    case random(3) of
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 13995
diff changeset
   693
    0: PlaySoundV(sndByeBye, Gear^.Hedgehog^.Team^.voicepack);
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 13995
diff changeset
   694
    1: PlaySoundV(sndSoLong, Gear^.Hedgehog^.Team^.voicepack);
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 13995
diff changeset
   695
    2: PlaySoundV(sndOhDear, Gear^.Hedgehog^.Team^.voicepack);
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 13995
diff changeset
   696
    end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   697
    Gear^.Pos:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   698
    Gear^.Timer:= timertime
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
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   702
////////////////////////////////////////////////////////////////////////////////
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   703
procedure doStepHedgehogGone(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   704
const frametime = 65;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   705
      timertime = frametime * 11;
10178
949b51ca18c6 don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents: 10147
diff changeset
   706
var i: LongInt;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   707
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   708
if Gear^.Hedgehog^.Unplaced then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   709
    exit;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   710
if Gear^.Timer > 1 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   711
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   712
    AllInactive:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   713
    dec(Gear^.Timer);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   714
    if (Gear^.Timer mod frametime) = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   715
        inc(Gear^.Pos)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   716
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   717
else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   718
if Gear^.Timer = 1 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   719
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   720
    DeleteGear(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   721
    SetAllToActive
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   722
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   723
else // Gear^.Timer = 0
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   724
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   725
    AllInactive:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   726
    Gear^.Z:= cCurrHHZ;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   727
    RemoveGearFromList(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   728
    InsertGearToList(Gear);
10178
949b51ca18c6 don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents: 10147
diff changeset
   729
    // only play sound for one alive hedgehog
949b51ca18c6 don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents: 10147
diff changeset
   730
    with Gear^.Hedgehog^.Team^ do
949b51ca18c6 don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents: 10147
diff changeset
   731
        for i:= 0 to cMaxHHIndex do
949b51ca18c6 don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents: 10147
diff changeset
   732
            begin
949b51ca18c6 don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents: 10147
diff changeset
   733
            if (Hedgehogs[i].Gear <> nil) then
949b51ca18c6 don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents: 10147
diff changeset
   734
                begin
949b51ca18c6 don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents: 10147
diff changeset
   735
                if (Hedgehogs[i].Gear = Gear) then
949b51ca18c6 don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents: 10147
diff changeset
   736
                    begin
949b51ca18c6 don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents: 10147
diff changeset
   737
                    PlaySoundV(sndByeBye, Gear^.Hedgehog^.Team^.voicepack);
949b51ca18c6 don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents: 10147
diff changeset
   738
                    PlaySound(sndWarp);
949b51ca18c6 don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents: 10147
diff changeset
   739
                    end;
949b51ca18c6 don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents: 10147
diff changeset
   740
                break;
949b51ca18c6 don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents: 10147
diff changeset
   741
                end;
949b51ca18c6 don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents: 10147
diff changeset
   742
            end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   743
    Gear^.Pos:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   744
    Gear^.Timer:= timertime
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   745
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   746
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   747
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
   748
procedure AddPickup(HH: THedgehog; ammo: TAmmoType; cnt, X, Y: LongWord);
10124
aabd1b75d5a3 Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents: 10123
diff changeset
   749
var s: ansistring;
11939
c7ec309cd685 Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents: 11922
diff changeset
   750
    name: ansistring;
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
   751
    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
   752
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
   753
    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
   754
    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
   755
11848
6a0d6b00dac8 Highlander: give visual and acustic feedback when weapons are collected from a kill, similar to collecting a crate
sheepluva
parents: 11847
diff changeset
   756
    if IsHogLocal(@HH) then
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
   757
        begin
11939
c7ec309cd685 Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents: 11922
diff changeset
   758
        if length(trluaammo[Ammoz[ammo].NameId]) > 0 then
c7ec309cd685 Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents: 11922
diff changeset
   759
            name:= trluaammo[Ammoz[ammo].NameId]
c7ec309cd685 Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents: 11922
diff changeset
   760
        else
c7ec309cd685 Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents: 11922
diff changeset
   761
            name:= trammo[Ammoz[ammo].NameId];
12464
39d780f9bf35 Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents: 12463
diff changeset
   762
39d780f9bf35 Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents: 12463
diff changeset
   763
        if cnt = 0 then
39d780f9bf35 Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents: 12463
diff changeset
   764
            cnt:= Ammoz[ammo].NumberInCase;
39d780f9bf35 Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents: 12463
diff changeset
   765
39d780f9bf35 Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents: 12463
diff changeset
   766
        if (ammo = amNothing) or (cnt = 0) then
12600
ef780eda6e48 pas2c happiness initiative 2017, continued
sheepluva
parents: 12492
diff changeset
   767
            s:= trmsg[sidEmptyCrate]
12464
39d780f9bf35 Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents: 12463
diff changeset
   768
        else if cnt >= AMMO_INFINITE then
14367
40dd8eb60d54 Explain those weird hexcodes in uGearsHedgehog
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   769
            // infinity symbol
14366
2ab312c47dc3 make pas2c function without haskell aborting if locale is C
nemo
parents: 14282
diff changeset
   770
            s:= name + ansistring(' (+' + char($E2) + char($88) + char($9E) +')')
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
   771
        else
12464
39d780f9bf35 Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents: 12463
diff changeset
   772
            s:= name + ansistring(' (+' + IntToStr(cnt) + ')');
39d780f9bf35 Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents: 12463
diff changeset
   773
10116
dd27562b6f21 rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents: 10108
diff changeset
   774
        AddCaption(s, HH.Team^.Clan^.Color, capgrpAmmoinfo);
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
   775
12464
39d780f9bf35 Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents: 12463
diff changeset
   776
        // show ammo icon (if not empty)
39d780f9bf35 Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents: 12463
diff changeset
   777
        if (ammo <> amNothing) and (cnt <> 0) then
39d780f9bf35 Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents: 12463
diff changeset
   778
            begin
39d780f9bf35 Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents: 12463
diff changeset
   779
            vga:= AddVisualGear(X, Y, vgtAmmo);
39d780f9bf35 Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents: 12463
diff changeset
   780
            if vga <> nil then
39d780f9bf35 Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents: 12463
diff changeset
   781
                vga^.Frame:= Longword(ammo);
39d780f9bf35 Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents: 12463
diff changeset
   782
            end
39d780f9bf35 Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents: 12463
diff changeset
   783
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
   784
        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
   785
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
   786
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   787
////////////////////////////////////////////////////////////////////////////////
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   788
procedure PickUp(HH, Gear: PGear);
12937
a84a05719454 Refactor health gain effects and message into util fuction HHHeal
Wuzzy <Wuzzy2@mail.ru>
parents: 12912
diff changeset
   789
var ag, gi: PGear;
13617
a6abc2c1fc1a Show correct health increase when hog health cap is reached
Wuzzy <Wuzzy2@mail.ru>
parents: 13611
diff changeset
   790
    healthBoost: LongInt;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   791
begin
11624
56aa40beedf0 RC planes should not pick up frozen crates
nemo
parents: 11513
diff changeset
   792
if Gear^.State and gstFrozen <> 0 then exit;
15043
35932896ce84 Prevent crates from being collected twice
Wuzzy <Wuzzy2@mail.ru>
parents: 15022
diff changeset
   793
if Gear^.Message and gmDestroy <> 0 then exit;
11624
56aa40beedf0 RC planes should not pick up frozen crates
nemo
parents: 11513
diff changeset
   794
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   795
Gear^.Message:= gmDestroy;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   796
if (Gear^.Pos and posCaseExplode) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   797
    if (Gear^.Pos and posCasePoison) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   798
        doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, HH^.Hedgehog, EXPLAutoSound + EXPLPoisoned)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   799
    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   800
        doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, HH^.Hedgehog, EXPLAutoSound)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   801
else if (Gear^.Pos and posCasePoison) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   802
    doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, HH^.Hedgehog, EXPLAutoSound + EXPLPoisoned + EXPLNoDamage)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   803
else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   804
case Gear^.Pos of
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   805
       posCaseUtility,
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   806
       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
   807
                    PlaySound(sndShotgunReload);
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   808
                    if Gear^.AmmoType <> amNothing then
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
   809
                        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
   810
                        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
   811
                        end
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   812
                    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   813
                        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
   814
// Add spawning here...
7409
fd91aa100ce0 Avoid desync playing back demos
nemo
parents: 7406
diff changeset
   815
                        AddRandomness(GameTicks);
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   816
7406
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   817
                        gi := GearsList;
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   818
                        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
   819
                            begin
13214
9c81e34f1933 gtGenericFaller: Use Tag=1 to allow gtGenericFaller to be displaced randomly. Otherwise it is left alone
Wuzzy <Wuzzy2@mail.ru>
parents: 13161
diff changeset
   820
                            if (gi^.Kind = gtGenericFaller) and (gi^.Tag = 1) then
7406
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   821
                                begin
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   822
                                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
   823
                                gi^.State:= gi^.State or gstTmpFlag;
7406
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   824
                                gi^.X:= int2hwFloat(GetRandom(rightX-leftX)+leftX);
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   825
                                gi^.Y:= int2hwFloat(GetRandom(LAND_HEIGHT-topY)+topY);
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   826
                                gi^.dX:= _90-(GetRandomf*_360);
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   827
                                gi^.dY:= _90-(GetRandomf*_360)
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   828
                                end;
1fe2c821f9bf Try avoiding spamming the log by retaining the gears. untested.
nemo
parents: 7391
diff changeset
   829
                            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
   830
                            end;
7598
f06d8603097c let's see if mikade will still accept this at least
nemo
parents: 7597
diff changeset
   831
                        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
   832
                        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
   833
                        ag^.Power:= Gear^.Power
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   834
                        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   835
                    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   836
     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
   837
                    PlaySound(sndShotgunReload);
13617
a6abc2c1fc1a Show correct health increase when hog health cap is reached
Wuzzy <Wuzzy2@mail.ru>
parents: 13611
diff changeset
   838
                    healthBoost:= IncHogHealth(HH^.Hedgehog, 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
   839
                    HH^.Hedgehog^.Effects[hePoisoned] := 0;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   840
                    RenderHealth(HH^.Hedgehog^);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   841
                    RecountTeamHealth(HH^.Hedgehog^.Team);
13617
a6abc2c1fc1a Show correct health increase when hog health cap is reached
Wuzzy <Wuzzy2@mail.ru>
parents: 13611
diff changeset
   842
                    HHHeal(HH^.Hedgehog, healthBoost, true);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   843
                    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   844
     end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   845
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   846
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   847
procedure HedgehogStep(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   848
var PrevdX: LongInt;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   849
    CurWeapon: PAmmo;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   850
begin
6924
57b66ee3bff3 Get rid of overloaded functions in uAmmo
unc0rr
parents: 6700
diff changeset
   851
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   852
if ((Gear^.State and (gstAttacking or gstMoving)) = 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   853
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   854
    if isCursorVisible then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   855
        with Gear^.Hedgehog^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   856
            with CurWeapon^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   857
                begin
14996
7ff86274114e Refactor PosCount: Use 0 instead of 1 for unused PosSprite
Wuzzy <Wuzzy2@mail.ru>
parents: 14963
diff changeset
   858
                if Ammoz[AmmoType].PosCount < 2 then
7ff86274114e Refactor PosCount: Use 0 instead of 1 for unused PosSprite
Wuzzy <Wuzzy2@mail.ru>
parents: 14963
diff changeset
   859
                    exit
7ff86274114e Refactor PosCount: Use 0 instead of 1 for unused PosSprite
Wuzzy <Wuzzy2@mail.ru>
parents: 14963
diff changeset
   860
                else if (Gear^.Message and gmLeft  ) <> 0 then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   861
                    Pos:= (Pos - 1 + Ammoz[AmmoType].PosCount) mod Ammoz[AmmoType].PosCount
14996
7ff86274114e Refactor PosCount: Use 0 instead of 1 for unused PosSprite
Wuzzy <Wuzzy2@mail.ru>
parents: 14963
diff changeset
   862
                else if (Gear^.Message and gmRight ) <> 0 then
7ff86274114e Refactor PosCount: Use 0 instead of 1 for unused PosSprite
Wuzzy <Wuzzy2@mail.ru>
parents: 14963
diff changeset
   863
                    Pos:= (Pos + 1) mod Ammoz[AmmoType].PosCount
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   864
                else
14996
7ff86274114e Refactor PosCount: Use 0 instead of 1 for unused PosSprite
Wuzzy <Wuzzy2@mail.ru>
parents: 14963
diff changeset
   865
                    exit;
7ff86274114e Refactor PosCount: Use 0 instead of 1 for unused PosSprite
Wuzzy <Wuzzy2@mail.ru>
parents: 14963
diff changeset
   866
                GHStepTicks:= 200;
7ff86274114e Refactor PosCount: Use 0 instead of 1 for unused PosSprite
Wuzzy <Wuzzy2@mail.ru>
parents: 14963
diff changeset
   867
                exit
7ff86274114e Refactor PosCount: Use 0 instead of 1 for unused PosSprite
Wuzzy <Wuzzy2@mail.ru>
parents: 14963
diff changeset
   868
                end;
7ff86274114e Refactor PosCount: Use 0 instead of 1 for unused PosSprite
Wuzzy <Wuzzy2@mail.ru>
parents: 14963
diff changeset
   869
7ff86274114e Refactor PosCount: Use 0 instead of 1 for unused PosSprite
Wuzzy <Wuzzy2@mail.ru>
parents: 14963
diff changeset
   870
    if (Gear^.Hedgehog^.Unplaced) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   871
        exit;
13793
4e5fcfc6f033 Fix hedgehog being able to make walk/jump sounds before it was placed
Wuzzy <Wuzzy2@mail.ru>
parents: 13792
diff changeset
   872
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   873
    if ((Gear^.Message and gmAnimate) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   874
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   875
        Gear^.Message:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   876
        Gear^.State:= Gear^.State or gstAnimation;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   877
        Gear^.Tag:= Gear^.MsgParam;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   878
        Gear^.Timer:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   879
        Gear^.Pos:= 0
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   880
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   881
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   882
    if ((Gear^.Message and gmLJump ) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   883
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   884
        Gear^.Message:= Gear^.Message and (not gmLJump);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   885
        DeleteCI(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   886
        if TestCollisionYwithGear(Gear, -1) = 0 then
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   887
            if TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) = 0 then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   888
                Gear^.Y:= Gear^.Y - _2
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   889
            else
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   890
                if TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) = 0 then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   891
                    Gear^.Y:= Gear^.Y - _1;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   892
            if (TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) = 0) and
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
   893
               (TestCollisionYwithGear(Gear, -1) = 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   894
                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   895
                Gear^.dY:= -_0_15;
13096
d78e65c66573 Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12996
diff changeset
   896
                if Gear^.Hedgehog^.Effects[heArtillery] = 0 then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   897
                    Gear^.dX:= SignAs(_0_15, Gear^.dX);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   898
                Gear^.State:= Gear^.State or gstMoving or gstHHJumping;
7053
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7028
diff changeset
   899
                PlaySoundV(sndJump1, Gear^.Hedgehog^.Team^.voicepack);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   900
        exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   901
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   902
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   903
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   904
    if ((Gear^.Message and gmHJump ) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   905
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   906
        DeleteCI(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   907
        Gear^.Message:= Gear^.Message and (not gmHJump);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   908
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   909
        Gear^.dY:= -_0_2;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   910
        SetLittle(Gear^.dX);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   911
        Gear^.State:= Gear^.State or gstMoving or gstHHJumping;
7053
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7028
diff changeset
   912
        PlaySoundV(sndJump3, Gear^.Hedgehog^.Team^.voicepack);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   913
        exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   914
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   915
13399
3d6aae2ae698 Allow freezing airmines because whyyy not
nemo
parents: 13324
diff changeset
   916
    if (Gear^.Message and (gmLeft or gmRight) <> 0) and (Gear^.State and gstMoving = 0) and 
13766
9fdb13633bcb Fix hog teleporting back and forth when walking on portals on floor. Fixes bug 686
Wuzzy <Wuzzy2@mail.ru>
parents: 13753
diff changeset
   917
		(CheckGearNear(Gear, gtPortal, 26, 26) = nil) then
13399
3d6aae2ae698 Allow freezing airmines because whyyy not
nemo
parents: 13324
diff changeset
   918
		Gear^.PortalCounter:= 0;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   919
    PrevdX:= hwSign(Gear^.dX);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   920
    if (Gear^.Message and gmLeft  )<>0 then
15394
b7e40129dbdb Set dX to zero in hedgehog walk routine to prevent unexpected changes in X coordinate in certain conditions
unc0rr
parents: 15146
diff changeset
   921
        Gear^.dX:= -_0 else
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   922
    if (Gear^.Message and gmRight )<>0 then
15394
b7e40129dbdb Set dX to zero in hedgehog walk routine to prevent unexpected changes in X coordinate in certain conditions
unc0rr
parents: 15146
diff changeset
   923
        Gear^.dX:=  _0
b7e40129dbdb Set dX to zero in hedgehog walk routine to prevent unexpected changes in X coordinate in certain conditions
unc0rr
parents: 15146
diff changeset
   924
    else exit;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   925
7187
aff30d80bd7b - Allow camera movement while current hedgehog is falling
unc0rr
parents: 7164
diff changeset
   926
    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
   927
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
   928
    GHStepTicks:= cHHStepTicks;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   929
    if PrevdX <> hwSign(Gear^.dX) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   930
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   931
        FollowGear:= Gear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   932
        exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   933
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   934
    DeleteCI(Gear); // must be after exit!! (see previous line)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   935
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   936
    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
   937
13096
d78e65c66573 Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12996
diff changeset
   938
    if ((Gear^.Hedgehog^.Effects[heArtillery] = 0) or
10714
70f71fac37a3 fix for issue #894
nemo
parents: 10669
diff changeset
   939
           ((CurAmmoGear <> nil) and (CurAmmoGear^.Kind = gtBlowTorch))) and
70f71fac37a3 fix for issue #894
nemo
parents: 10669
diff changeset
   940
       ((Gear^.Message and gmPrecise) = 0) then
7719
eeae1cb6b6bf Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents: 7671
diff changeset
   941
        MakeHedgehogsStep(Gear);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   942
8576
286ebfcb3d97 workaround for frequent AllHH active call in hedgehog step
nemo
parents: 8574
diff changeset
   943
    SetAllHHToActive(false);
9291
15f7bb217b66 Make add/delete consistent (this has bugged me for so long)
nemo
parents: 9285
diff changeset
   944
    AddCI(Gear)
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   945
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   946
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   947
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   948
procedure HedgehogChAngle(HHGear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   949
var da: LongWord;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   950
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   951
with HHGear^.Hedgehog^ do
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9954
diff changeset
   952
    if (((CurAmmoType = amRope) or ((CurAmmoGear <> nil) and (CurAmmoGear^.AmmoType = amRope))) and
9139
2ae44c4381cd Restore CurAmmoType check as well, that was removed in r8f317ba10675 when trying to fix aiming during alt attack.
nemo
parents: 9080
diff changeset
   953
            ((HHGear^.State and (gstMoving or gstHHJumping)) = gstMoving))
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   954
    or ((CurAmmoType = amPortalGun) and ((HHGear^.State and gstMoving) <> 0)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   955
        da:= 2
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   956
    else da:= 1;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   957
8987
47cf32305d99 some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents: 8947
diff changeset
   958
if ((HHGear^.Message and gmPrecise = 0) or ((CurAmmoGear <> nil) and (CurAmmoGear^.AmmoType = amJetpack))) or (GameTicks mod 5 = 1) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   959
    if ((HHGear^.Message and gmUp) <> 0) and (HHGear^.Angle >= CurMinAngle + da) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   960
        dec(HHGear^.Angle, da)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   961
    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   962
        if ((HHGear^.Message and gmDown) <> 0) and (HHGear^.Angle + da <= CurMaxAngle) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   963
            inc(HHGear^.Angle, da)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   964
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   965
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   966
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
   967
////////////////////////////////////////////////////////////////////////////////
11512
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   968
procedure moveHedgehogOutOfWall(Gear: PGear);
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   969
var
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   970
    hx: hwFloat;
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   971
    colly, collxl, collxr: boolean;
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   972
begin
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   973
colly:= (TestCollisionYwithGear(Gear, 1) <> 0);
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   974
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   975
while colly do
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   976
    begin
11513
d44d2ab7ce4a fix comment; revert unintentional commit of some testing png
sheepluva
parents: 11512
diff changeset
   977
    // don't use TestCollisionXwithXYShift, because it checks for gears
11512
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   978
    // save real x-position
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   979
    hx:= Gear^.X;
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   980
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   981
    Gear^.X:= hx + _1;
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   982
    collxl:= (TestCollisionX(Gear, -1) <> 0);
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   983
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   984
    Gear^.X:= hx - _1;
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   985
    collxr:= (TestCollisionX(Gear,  1) <> 0);
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   986
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   987
    // restore original value
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   988
    Gear^.X:= hx;
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   989
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   990
    // do nothing if trapped between 2 walls
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   991
    if collxl = collxr then
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   992
        break;
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   993
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   994
    // if we in a wall - fix that
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   995
    if collxl then
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   996
        begin
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   997
        // check for obstacle
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   998
        if (TestCollisionX(Gear,  1) <> 0) then
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
   999
            break;
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1000
        Gear^.X:= Gear^.X + _1;
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1001
        end
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1002
    else
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1003
        begin
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1004
        // check for obstacle
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1005
        if (TestCollisionX(Gear, -1) <> 0) then
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1006
            break;
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1007
        Gear^.X:= Gear^.X - _1;
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1008
        end;
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1009
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1010
        colly:= (TestCollisionYwithGear(Gear, 1) <> 0);
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1011
        end;
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1012
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1013
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1014
end;
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1015
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1016
////////////////////////////////////////////////////////////////////////////////
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1017
procedure doStepHedgehogMoving(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1018
var isFalling, isUnderwater: boolean;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1019
    land: Word;
11484
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1020
    cnt: LongWord;
12184
50856782cdc4 Add support for hog name in home run message
Wuzzy <almikes@aol.com>
parents: 12169
diff changeset
  1021
    s: ansistring;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1022
begin
10577
5e075da5e0a4 don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents: 10443
diff changeset
  1023
if Gear^.Hedgehog^.Unplaced then
5e075da5e0a4 don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents: 10443
diff changeset
  1024
    begin
5e075da5e0a4 don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents: 10443
diff changeset
  1025
    Gear^.dY:= _0;
5e075da5e0a4 don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents: 10443
diff changeset
  1026
    Gear^.dX:= _0;
5e075da5e0a4 don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents: 10443
diff changeset
  1027
    Gear^.State:= Gear^.State and (not gstMoving);
5e075da5e0a4 don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents: 10443
diff changeset
  1028
    exit
5e075da5e0a4 don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents: 10443
diff changeset
  1029
    end;
5e075da5e0a4 don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents: 10443
diff changeset
  1030
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1031
land:= 0;
10354
56bd029245fc WIP: weSea tweaks, functional and visual
sheepluva
parents: 10178
diff changeset
  1032
isUnderwater:= CheckCoordInWater(hwRound(Gear^.X), hwRound(Gear^.Y) + Gear^.Radius);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1033
if Gear^.dX.QWordValue > 8160437862 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1034
    Gear^.dX.QWordValue:= 8160437862;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1035
if Gear^.dY.QWordValue > 8160437862 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1036
    Gear^.dY.QWordValue:= 8160437862;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1037
11512
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1038
isFalling:= (Gear^.dY.isNegative);
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1039
if (not isFalling) then
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1040
    begin
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1041
    // make sure we're not just stuck in wall
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1042
    moveHedgehogOutOfWall(Gear);
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1043
    // test for floor/obstacle below
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1044
    isFalling:= (TestCollisionYKick(Gear, 1) = 0);
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1045
    end;
0e305b7153e6 serious anti wall sticking protection for hedgewars
sheepluva
parents: 11510
diff changeset
  1046
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1047
if isFalling then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1048
    begin
9731
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1049
    land:= TestCollisionYKick(Gear, -1);
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1050
    if (Gear^.dY.isNegative) and (land <> 0) then
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1051
        begin
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1052
        if land and lfBouncy <> 0 then
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1053
            begin
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1054
            doStepFallingGear(Gear);
10895
bce67defd804 Make bouncing a bit less wtf for various gears tested (hog, 'zooka, saucer hog, drill strike). Less hacky is another matter.
nemo
parents: 10818
diff changeset
  1055
            Gear^.AdvBounce:= 1;
9731
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1056
            Gear^.dX:= Gear^.dX * _0_8
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1057
            end;
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1058
        if (land and lfBouncy = 0) or (Gear^.State and gstCollision <> 0) then
9795
487e5675061f clear gstCollision from doStepFallingGear once I'm done with it. hog "physics" doesn't use it, and was screwing up labels
nemo
parents: 9776
diff changeset
  1059
            Gear^.dY:= _0;
9954
bf51bc7e2808 - Fix build via pas2c
unc0rr
parents: 9950
diff changeset
  1060
        Gear^.State:= Gear^.State and (not gstCollision)
9731
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1061
        end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1062
    Gear^.State:= Gear^.State or gstMoving;
9971
071902835770 That check was too weird and complicated
unc0rr
parents: 9917
diff changeset
  1063
    if (Gear^.State and gstHHDriven <> 0) and
11267
9621fdcad965 do the same thing for the chute/birdy/saucer block
nemo
parents: 11202
diff changeset
  1064
       (FollowGear <> nil) and
9499
bbc093acb91e make this a tiny bit less aggressive
nemo
parents: 9477
diff changeset
  1065
       (not CurrentTeam^.ExtDriven) and (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) > _0_003) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1066
        begin
7187
aff30d80bd7b - Allow camera movement while current hedgehog is falling
unc0rr
parents: 7164
diff changeset
  1067
        // TODO: why so aggressive at setting FollowGear when falling?
9499
bbc093acb91e make this a tiny bit less aggressive
nemo
parents: 9477
diff changeset
  1068
        // because hog was being yanked out of frame by other stuff when doing a complicated jump/chute/saucer/roping.
bbc093acb91e make this a tiny bit less aggressive
nemo
parents: 9477
diff changeset
  1069
        // added a couple more conditions to make it a bit less aggressive, at cost of possibly spectator failing to follow a maneuver
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1070
        FollowGear:= Gear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1071
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1072
    if isUnderwater then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1073
       Gear^.dY:= Gear^.dY + cGravity / _2
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1074
    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1075
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1076
        Gear^.dY:= Gear^.dY + cGravity;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1077
// this set of circumstances could be less complex if jumping was more clearly identified
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1078
        if ((GameFlags and gfMoreWind) <> 0) and (((Gear^.Damage <> 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1079
        or ((CurAmmoGear <> nil) and ((CurAmmoGear^.AmmoType = amJetpack) or (CurAmmoGear^.AmmoType = amBirdy)))
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1080
        or ((Gear^.dY.QWordValue + Gear^.dX.QWordValue) > _0_55.QWordValue))) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1081
            Gear^.dX := Gear^.dX + cWindSpeed / Gear^.Density
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1082
        end
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
  1083
    end
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1084
else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1085
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1086
    land:= TestCollisionYwithGear(Gear, 1);
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9954
diff changeset
  1087
    if ((Gear^.dX.QWordValue + Gear^.dY.QWordValue) < _0_55.QWordValue) and ((land and lfIce) = 0)
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9954
diff changeset
  1088
    and ((land and lfBouncy = 0) or (Gear^.State and gstCollision <> 0))
11510
64c1ea171204 Damaged hog is not in a jumping state
unc0rr
parents: 11484
diff changeset
  1089
    and (Gear^.Damage = 0)
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1090
    and ((Gear^.State and gstHHJumping) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1091
        SetLittle(Gear^.dX);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1092
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1093
    if not Gear^.dY.isNegative then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1094
        begin
9731
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1095
        if land and lfBouncy <> 0 then
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1096
            begin
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1097
            doStepFallingGear(Gear);
10895
bce67defd804 Make bouncing a bit less wtf for various gears tested (hog, 'zooka, saucer hog, drill strike). Less hacky is another matter.
nemo
parents: 10818
diff changeset
  1098
            Gear^.AdvBounce:= 1;
9731
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1099
            // hogs for some reason have very low friction. slippery little buggers
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1100
            Gear^.dX:= Gear^.dX * _0_8
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1101
            end;
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1102
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1103
        CheckHHDamage(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1104
9731
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1105
        if (land and lfBouncy = 0) or (Gear^.State and gstCollision <> 0) then
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1106
            begin
13096
d78e65c66573 Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12996
diff changeset
  1107
            if ((Gear^.State and gstHHHJump) <> 0) and (Gear^.Hedgehog^.Effects[heArtillery] = 0)
9731
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1108
            and (Gear^.dX.QWordValue < _0_02.QWordValue) then
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1109
                begin
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1110
                if land and lfBouncy <> 0 then
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1111
                    Gear^.dY:= _0;
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1112
                Gear^.dX.isNegative:= not Gear^.dX.isNegative // landing after high jump
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1113
                end;
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1114
            Gear^.State:= Gear^.State and (not (gstHHJumping or gstHHHJump));
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1115
            if (land and lfBouncy = 0) or (Gear^.dX.QWordValue < _0_02.QWordValue) then
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1116
                Gear^.dY:= _0
9795
487e5675061f clear gstCollision from doStepFallingGear once I'm done with it. hog "physics" doesn't use it, and was screwing up labels
nemo
parents: 9776
diff changeset
  1117
            end;
9954
bf51bc7e2808 - Fix build via pas2c
unc0rr
parents: 9950
diff changeset
  1118
        Gear^.State:= Gear^.State and (not gstCollision)
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1119
        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1120
    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1121
        Gear^.dY:= Gear^.dY + cGravity;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1122
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1123
    if ((Gear^.State and gstMoving) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1124
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1125
        if land and lfIce <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1126
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1127
            Gear^.dX:= Gear^.dX * (_1 - (_1 - Gear^.Friction) / _2)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1128
            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1129
        else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1130
            Gear^.dX:= Gear^.dX * Gear^.Friction;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1131
        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1132
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1133
10146
1fb6d8cc4626 Should never use State like this, since some states aren't synced (thinking state for example)
unc0rr
parents: 10124
diff changeset
  1134
if (Gear^.State and (gstMoving or gstHHJumping or gstHHHJump)) <> 0 then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1135
    DeleteCI(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1136
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1137
if isUnderwater then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1138
   begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1139
   Gear^.dY:= Gear^.dY * _0_999;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1140
   Gear^.dX:= Gear^.dX * _0_999;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1141
   end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1142
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1143
if (Gear^.State and gstMoving) <> 0 then
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
  1144
    if TestCollisionXKick(Gear, hwSign(Gear^.dX)) <> 0 then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1145
        if not isFalling then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1146
            if hwAbs(Gear^.dX) > _0_01 then
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
  1147
                if  (TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -1, hwSign(Gear^.dX)) = 0) and
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
  1148
                    (TestCollisionYwithXYShift(Gear, hwSign(Gear^.dX) - hwRound(Gear^.dX), -1, -1) = 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1149
                    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1150
                    Gear^.X:= Gear^.X + Gear^.dX;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1151
                    Gear^.dX:= Gear^.dX * _0_96;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1152
                    Gear^.Y:= Gear^.Y - _1
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1153
                    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1154
                else
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
  1155
                    if  (TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -2, hwSign(Gear^.dX)) = 0) and
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
  1156
                        (TestCollisionYwithXYShift(Gear, hwSign(Gear^.dX) - hwRound(Gear^.dX), -1, -1) = 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1157
                        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1158
                        Gear^.X:= Gear^.X + Gear^.dX;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1159
                        Gear^.dX:= Gear^.dX * _0_93;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1160
                        Gear^.Y:= Gear^.Y - _2
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
  1161
                        end
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1162
                    else
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
  1163
                    if  (TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -3, hwSign(Gear^.dX)) = 0) and
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
  1164
                        (TestCollisionYwithXYShift(Gear, hwSign(Gear^.dX) - hwRound(Gear^.dX), -1, -1) = 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1165
                        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1166
                        Gear^.X:= Gear^.X + Gear^.dX;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1167
                        Gear^.dX:= Gear^.dX * _0_9 ;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1168
                        Gear^.Y:= Gear^.Y - _3
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1169
                        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1170
                    else
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
  1171
                        if (TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -4, hwSign(Gear^.dX)) = 0) and
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
  1172
                           (TestCollisionYwithXYShift(Gear, hwSign(Gear^.dX) - hwRound(Gear^.dX), -1, -1) = 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1173
                            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1174
                            Gear^.X:= Gear^.X + Gear^.dX;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1175
                            Gear^.dX:= Gear^.dX * _0_87;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1176
                            Gear^.Y:= Gear^.Y - _4
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1177
                            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1178
                    else
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
  1179
                        if (TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -5, hwSign(Gear^.dX)) = 0) and
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
  1180
                           (TestCollisionYwithXYShift(Gear, hwSign(Gear^.dX) - hwRound(Gear^.dX), -1, -1) = 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1181
                            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1182
                            Gear^.X:= Gear^.X + Gear^.dX;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1183
                            Gear^.dX:= Gear^.dX * _0_84;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1184
                            Gear^.Y:= Gear^.Y - _5
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1185
                            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1186
                    else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1187
                        if hwAbs(Gear^.dX) > _0_02 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1188
                            Gear^.dX:= -Gear^.Elasticity * Gear^.dX
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1189
                        else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1190
                            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1191
                            Gear^.State:= Gear^.State and (not gstMoving);
11484
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1192
                            cnt:= 0;
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1193
                            while (cnt < 6) and (not CheckGearDrowning(Gear)) and (Gear <> nil) and (TestCollisionYWithGear(Gear,1) = 0) do
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1194
                                begin
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1195
                                Gear^.Y:= Gear^.Y + _1;
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1196
                                inc(cnt)
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1197
                                end;
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1198
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1199
                            SetLittle(Gear^.dX)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1200
                            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1201
            else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1202
                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1203
                Gear^.State:= Gear^.State and (not gstMoving);
11484
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1204
                cnt:= 0;
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1205
                while (cnt < 6) and (not CheckGearDrowning(Gear)) and (Gear <> nil) and (TestCollisionYWithGear(Gear,1) = 0) do
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1206
                    begin
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1207
                    Gear^.Y:= Gear^.Y + _1;
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1208
                    inc(cnt)
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1209
                    end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1210
                SetLittle(Gear^.dX)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1211
                end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1212
        else if (hwAbs(Gear^.dX) > cLittle)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1213
        and ((Gear^.State and gstHHJumping) = 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1214
            Gear^.dX:= -Gear^.Elasticity * Gear^.dX
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1215
        else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1216
            SetLittle(Gear^.dX);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1217
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1218
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
  1219
  and (hwAbs(Gear^.dX) + hwAbs(Gear^.dY) < _0_03) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1220
    begin
14926
60340c8a6fae Don't remove gstWinner after GameOver
Wuzzy <Wuzzy2@mail.ru>
parents: 14748
diff changeset
  1221
    if (not GameOver) then
60340c8a6fae Don't remove gstWinner after GameOver
Wuzzy <Wuzzy2@mail.ru>
parents: 14748
diff changeset
  1222
        Gear^.State:= Gear^.State and (not gstWinner);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1223
    Gear^.State:= Gear^.State and (not gstMoving);
11484
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1224
    cnt:= 0;
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1225
    while (cnt < 6) and (not CheckGearDrowning(Gear)) and (Gear <> nil) and (TestCollisionYWithGear(Gear,1) = 0) do
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1226
        begin
8947
e906ebd59612 CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents: 8818
diff changeset
  1227
        Gear^.Y:= Gear^.Y + _1;
11484
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1228
        inc(cnt)
cb64affd7715 limit Y increment to 6 (saucer/birdy bug)
nemo
parents: 11468
diff changeset
  1229
        end;
8947
e906ebd59612 CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents: 8818
diff changeset
  1230
e906ebd59612 CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents: 8818
diff changeset
  1231
    // could become nil in CheckGearDrowning if ai's hog fails to respawn in ai survival
e906ebd59612 CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents: 8818
diff changeset
  1232
    if Gear = nil then exit;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1233
    SetLittle(Gear^.dX);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1234
    Gear^.dY:= _0
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1235
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1236
else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1237
    Gear^.State:= Gear^.State or gstMoving;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1238
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1239
if (Gear^.State and gstMoving) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1240
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1241
    Gear^.State:= Gear^.State and (not gstAnimation);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1242
// ARTILLERY but not being moved by explosions
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1243
    Gear^.X:= Gear^.X + Gear^.dX;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1244
    Gear^.Y:= Gear^.Y + Gear^.dY;
9731
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1245
    if (not Gear^.dY.isNegative) and (TestCollisionYKick(Gear, 1) = 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1246
        begin
9731
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1247
        land:= TestCollisionYwithXYShift(Gear, 0, 1, 1);
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1248
        if land and lfBouncy <> 0 then
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1249
            doStepFallingGear(Gear);
10895
bce67defd804 Make bouncing a bit less wtf for various gears tested (hog, 'zooka, saucer hog, drill strike). Less hacky is another matter.
nemo
parents: 10818
diff changeset
  1250
            Gear^.AdvBounce:= 1;
9731
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1251
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1252
        if (land <> 0) and ((land and lfBouncy = 0) or (Gear^.State and gstCollision <> 0)) then
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1253
            begin
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1254
            CheckHHDamage(Gear);
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1255
            Gear^.dY:= _0;
953197ac43d8 Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents: 9706
diff changeset
  1256
            Gear^.Y:= Gear^.Y + _1
9795
487e5675061f clear gstCollision from doStepFallingGear once I'm done with it. hog "physics" doesn't use it, and was screwing up labels
nemo
parents: 9776
diff changeset
  1257
            end;
9954
bf51bc7e2808 - Fix build via pas2c
unc0rr
parents: 9950
diff changeset
  1258
        Gear^.State:= Gear^.State and (not gstCollision)
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1259
        end;
8947
e906ebd59612 CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents: 8818
diff changeset
  1260
e906ebd59612 CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents: 8818
diff changeset
  1261
    // could become nil if ai's hog fails to respawn in ai survival
e906ebd59612 CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents: 8818
diff changeset
  1262
    if Gear = nil then exit;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1263
    // hide target cursor if current hog is drowning
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1264
    if (Gear^.State and gstDrowning) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1265
        if (CurrentHedgehog^.Gear = Gear) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1266
            isCursorVisible:= false
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1267
    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
  1268
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
  1269
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1270
    inc(Gear^.FlightTime);
14282
6015b74eea55 overall, using LongInt for leftX/rightX results in fewer casts, since most comparisons are against ints.
nemo
parents: 14196
diff changeset
  1271
    if (Gear^.FlightTime > 1500) and ((hwRound(Gear^.X) < leftX-250) or (hwRound(Gear^.X) > rightX+250))  then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1272
        begin
7763
6ab7307fcec3 I like this condition for home run better
nemo
parents: 7754
diff changeset
  1273
        Gear^.FlightTime:= 0;
12184
50856782cdc4 Add support for hog name in home run message
Wuzzy <almikes@aol.com>
parents: 12169
diff changeset
  1274
        s:= ansistring(CurrentHedgehog^.Name);
15045
9f6e3be10e96 Use capgrpMessage2 for eidHomerun so it doesn't collide with death msgs
Wuzzy <Wuzzy2@mail.ru>
parents: 15043
diff changeset
  1275
        AddCaption(FormatA(GetEventString(eidHomerun), s), capcolDefault, capgrpMessage2);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1276
        PlaySound(sndHomerun)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1277
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1278
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1279
else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1280
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1281
    uStats.hedgehogFlight(Gear, Gear^.FlightTime);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1282
    Gear^.FlightTime:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1283
    end;
15650
85d2afe34116 Enforce camera limits regardless of zoom level
Wuzzy <Wuzzy2@mail.ru>
parents: 15639
diff changeset
  1284
if (WorldEdge = weNone) and (not hasBorder) and (not Gear^.Hedgehog^.FlownOffMap) and (not isZero(Gear^.dX)) and (not isUnderwater) and ((Gear^.State and gstHHDriven) = 0) and (hwRound(Gear^.Y) < cWaterLine-300) and ((hwRound(Gear^.X) < -cCamLimitX) or (hwRound(Gear^.X) > LAND_WIDTH+cCamLimitX)) then
14940
8b848c2939da Add taunt sndFlyAway when hog flies off the map
Wuzzy <Wuzzy2@mail.ru>
parents: 14926
diff changeset
  1285
    begin
8b848c2939da Add taunt sndFlyAway when hog flies off the map
Wuzzy <Wuzzy2@mail.ru>
parents: 14926
diff changeset
  1286
    PlaySoundV(sndFlyAway, Gear^.Hedgehog^.Team^.voicepack);
8b848c2939da Add taunt sndFlyAway when hog flies off the map
Wuzzy <Wuzzy2@mail.ru>
parents: 14926
diff changeset
  1287
    Gear^.Hedgehog^.FlownOffMap:= true;
8b848c2939da Add taunt sndFlyAway when hog flies off the map
Wuzzy <Wuzzy2@mail.ru>
parents: 14926
diff changeset
  1288
    end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1289
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1290
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1291
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1292
procedure doStepHedgehogDriven(HHGear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1293
var t: PGear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1294
    wasJumping: boolean;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1295
    Hedgehog: PHedgehog;
12169
869cf5f34700 More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents: 12048
diff changeset
  1296
    s: ansistring;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1297
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1298
Hedgehog:= HHGear^.Hedgehog;
8658
nemo
parents: 8655
diff changeset
  1299
if not isInMultiShoot then
nemo
parents: 8655
diff changeset
  1300
    AllInactive:= false
nemo
parents: 8655
diff changeset
  1301
else if Hedgehog^.CurAmmoType in [amShotgun, amDEagle, amSniperRifle] then
12431
031af5544333 bug #230 - Precise aiming is disabled after firing first Deagle shot (when held down)
nemo
parents: 12322
diff changeset
  1302
    HHGear^.Message:= HHGear^.Message and gmPrecise;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1303
15065
39067b45d0fc Backed out changeset 96244def1cc0—It was broken
Wuzzy <Wuzzy2@mail.ru>
parents: 15064
diff changeset
  1304
if ((Ammoz[CurrentHedgehog^.CurAmmoType].Ammo.Propz and ammoprop_Utility) <> 0) and isInMultiShoot then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1305
    AllInactive:= true
7786
23a075cf4837 *sigh* revert the multishoot thingy. worked fine in my tests w/ smine and cleaver, screwed up deagle. need to find out why, but sleepy. for later
nemo
parents: 7783
diff changeset
  1306
else if not isInMultiShoot then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1307
    AllInactive:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1308
15127
f3f09c71ff6c End turn immediately when hedgehog health reaches 0
Wuzzy <Wuzzy2@mail.ru>
parents: 15065
diff changeset
  1309
if (TurnTimeLeft = 0) or (HHGear^.Damage > 0) or (HHGear^.Health = 0) or (((GameFlags and gfKing) <> 0) and (not Hedgehog^.Team^.hasKing)) or (LuaEndTurnRequested = true) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1310
    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
  1311
    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
  1312
       LoadHedgehogHat(Hedgehog^, Hedgehog^.Hat);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1313
    if TagTurnTimeLeft = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1314
        TagTurnTimeLeft:= TurnTimeLeft;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1315
    TurnTimeLeft:= 0;
15127
f3f09c71ff6c End turn immediately when hedgehog health reaches 0
Wuzzy <Wuzzy2@mail.ru>
parents: 15065
diff changeset
  1316
    if (GameOver = false) and ((GameFlags and gfInfAttack) = 0) and ((HHGear^.State and gstAttacked) = 0) and (HHGear^.Damage = 0) and (HHGear^.Health > 0) and (LuaNoEndTurnTaunts = false) and (uStats.getIsTurnSkipped() = false) then
12169
869cf5f34700 More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents: 12048
diff changeset
  1317
        begin
11922
d0296b8e60c0 Add “boring” voice to voice queue to avoid voice overlapping
Wuzzy <almikes@aol.com>
parents: 11914
diff changeset
  1318
        AddVoice(sndBoring, Hedgehog^.Team^.voicepack);
12169
869cf5f34700 More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents: 12048
diff changeset
  1319
        if (GameFlags and gfInfAttack = 0) then
869cf5f34700 More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents: 12048
diff changeset
  1320
            begin
869cf5f34700 More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents: 12048
diff changeset
  1321
            s:= Hedgehog^.Name;
13642
3d14950641a4 Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents: 13619
diff changeset
  1322
            AddCaption(FormatA(GetEventString(eidTimeout), s), capcolDefault, capgrpMessage);
12169
869cf5f34700 More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents: 12048
diff changeset
  1323
            end;
869cf5f34700 More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents: 12048
diff changeset
  1324
        end;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1325
    isCursorVisible:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1326
    HHGear^.State:= HHGear^.State and (not (gstHHDriven or gstAnimation or gstAttacking));
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1327
    AttackBar:= 0;
12492
47be9f3e61e9 Fix charging sound continuing to play on hog damage (#236)
Wuzzy <almikes@aol.com>
parents: 12464
diff changeset
  1328
    StopSound(sndThrowPowerUp);
12286
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12204
diff changeset
  1329
    LuaEndTurnRequested:= false;
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12204
diff changeset
  1330
    LuaNoEndTurnTaunts:= false;
15127
f3f09c71ff6c End turn immediately when hedgehog health reaches 0
Wuzzy <Wuzzy2@mail.ru>
parents: 15065
diff changeset
  1331
    if (HHGear^.Damage > 0) or (HHGear^.Health = 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1332
        HHGear^.State:= HHGear^.State and (not (gstHHJumping or gstHHHJump));
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1333
    exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1334
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1335
9670
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
  1336
if isAFK and (not CurrentTeam^.ExtDriven) and (CurrentHedgehog^.BotLevel = 0) then
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
  1337
    begin
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
  1338
    AFKSkip;
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
  1339
    exit
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
  1340
    end;
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
  1341
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1342
if (HHGear^.State and gstAnimation) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1343
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1344
    HHGear^.Message:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1345
    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
  1346
        PlaySoundV(Wavez[TWave(HHGear^.Tag)].Voice, Hedgehog^.Team^.voicepack);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1347
    inc(HHGear^.Timer);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1348
    if HHGear^.Timer = Wavez[TWave(HHGear^.Tag)].Interval then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1349
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1350
        HHGear^.Timer:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1351
        inc(HHGear^.Pos);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1352
        if HHGear^.Pos = Wavez[TWave(HHGear^.Tag)].FramesCount then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1353
            HHGear^.State:= HHGear^.State and (not gstAnimation)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1354
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1355
    exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1356
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1357
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1358
if ((HHGear^.State and gstMoving) <> 0)
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
  1359
or (GHStepTicks = cHHStepTicks)
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1360
or (CurAmmoGear <> nil) then // we are moving
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1361
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1362
    with Hedgehog^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1363
        if (CurAmmoGear = nil)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1364
        and (HHGear^.dY > _0_39)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1365
        and (CurAmmoType = amParachute) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1366
            HHGear^.Message:= HHGear^.Message or gmAttack;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1367
    // check for case with ammo
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1368
    t:= CheckGearNear(HHGear, gtCase, 36, 36);
11624
56aa40beedf0 RC planes should not pick up frozen crates
nemo
parents: 11513
diff changeset
  1369
    if (t <> nil) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1370
        PickUp(HHGear, t)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1371
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1372
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1373
if (CurAmmoGear = nil) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1374
    if (((HHGear^.Message and gmAttack) <> 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1375
    or ((HHGear^.State and gstAttacking) <> 0)) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1376
        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
  1377
    else
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
  1378
else
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1379
    with Hedgehog^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1380
        if ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1381
        and ((HHGear^.Message and gmLJump) <> 0)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1382
        and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AltUse) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1383
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1384
            Attack(HHGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1385
            HHGear^.Message:= HHGear^.Message and (not gmLJump)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1386
            end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1387
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1388
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
  1389
or ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0)  then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1390
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1391
    if ((HHGear^.Message and gmSlot) <> 0) then
12304
95cd64676f73 Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents: 12303
diff changeset
  1392
        if ChangeAmmo(HHGear) then ApplyAmmoChanges(Hedgehog^);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1393
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1394
    if ((HHGear^.Message and gmWeapon) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1395
        HHSetWeapon(HHGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1396
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1397
    if ((HHGear^.Message and gmTimer) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1398
        HHSetTimer(HHGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1399
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1400
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1401
if CurAmmoGear <> nil then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1402
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1403
    CurAmmoGear^.Message:= HHGear^.Message;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1404
    exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1405
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1406
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1407
    HedgehogChAngle(HHGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1408
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1409
if (HHGear^.State and gstMoving) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1410
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1411
    wasJumping:= ((HHGear^.State and gstHHJumping) <> 0);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1412
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1413
    if ((HHGear^.Message and gmHJump) <> 0) and wasJumping and ((HHGear^.State and gstHHHJump) = 0) then
15627
ea189ee9394f extend double jump activation window
alfadur
parents: 15610
diff changeset
  1414
        if (not (hwAbs(HHGear^.dX) > cLittle)) and (HHGear^.dY < _0_05) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1415
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1416
            HHGear^.State:= HHGear^.State or gstHHHJump;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1417
            HHGear^.dY:= -_0_25;
13096
d78e65c66573 Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12996
diff changeset
  1418
            if (Hedgehog^.Effects[heArtillery] = 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1419
                HHGear^.dX:= -SignAs(_0_02, HHGear^.dX);
7053
8c9dcaedc7a8 Make pas2c happier with uSound
unc0rr
parents: 7028
diff changeset
  1420
            PlaySoundV(sndJump2, Hedgehog^.Team^.voicepack)
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1421
            end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1422
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1423
    HHGear^.Message:= HHGear^.Message and (not (gmLJump or gmHJump));
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1424
13096
d78e65c66573 Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12996
diff changeset
  1425
    if (Hedgehog^.Effects[heArtillery] = 0) and wasJumping and (TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) <> 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1426
        SetLittle(HHGear^.dX);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1427
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1428
    if Hedgehog^.Gear <> nil then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1429
        doStepHedgehogMoving(HHGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1430
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1431
    if ((HHGear^.State and (gstMoving or gstDrowning)) = 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1432
        begin
9291
15f7bb217b66 Make add/delete consistent (this has bugged me for so long)
nemo
parents: 9285
diff changeset
  1433
        AddCI(HHGear);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1434
        if wasJumping then
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
  1435
            GHStepTicks:= 410
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1436
        else
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
  1437
            GHStepTicks:= 95
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1438
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1439
    exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1440
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1441
15065
39067b45d0fc Backed out changeset 96244def1cc0—It was broken
Wuzzy <Wuzzy2@mail.ru>
parents: 15064
diff changeset
  1442
    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
  1443
        begin
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
  1444
        if GHStepTicks > 0 then
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
  1445
            dec(GHStepTicks);
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7010
diff changeset
  1446
        if (GHStepTicks = 0) then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1447
            HedgehogStep(HHGear)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1448
        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1449
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1450
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1451
////////////////////////////////////////////////////////////////////////////////
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1452
procedure doStepHedgehogFree(Gear: PGear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1453
var prevState: Longword;
10124
aabd1b75d5a3 Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents: 10123
diff changeset
  1454
    s: ansistring;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1455
begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1456
prevState:= Gear^.State;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1457
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1458
doStepHedgehogMoving(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1459
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1460
if (Gear^.State and (gstMoving or gstDrowning)) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1461
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1462
    if Gear^.Damage > 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1463
        CalcRotationDirAngle(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1464
    AllInactive:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1465
    exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1466
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1467
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1468
if (Gear^.Health = 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1469
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1470
    if PrvInactive or ((GameFlags and gfInfAttack) <> 0) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1471
        begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1472
        Gear^.Timer:= 0;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1473
        FollowGear:= Gear;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1474
        PrvInactive:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1475
        AllInactive:= false;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1476
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1477
        if (Gear^.State and gstHHGone) = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1478
            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
  1479
            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
  1480
            if Gear^.Hedgehog^.Effects[heResurrectable] <> 0 then
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1481
                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1482
                ResurrectHedgehog(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1483
                end
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
  1484
            else
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1485
                begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1486
                Gear^.State:= (Gear^.State or gstHHDeath) and (not gstAnimation);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1487
                Gear^.doStep:= @doStepHedgehogDead;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1488
                // Death message
10124
aabd1b75d5a3 Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents: 10123
diff changeset
  1489
                s:= ansistring(Gear^.Hedgehog^.Name);
12169
869cf5f34700 More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents: 12048
diff changeset
  1490
                if Gear^.Hedgehog^.King then
13642
3d14950641a4 Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents: 13619
diff changeset
  1491
                    AddCaption(FormatA(GetEventString(eidKingDied), s), capcolDefault, capgrpMessage)
12169
869cf5f34700 More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents: 12048
diff changeset
  1492
                else
13642
3d14950641a4 Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents: 13619
diff changeset
  1493
                    AddCaption(FormatA(GetEventString(eidDied), s), capcolDefault, capgrpMessage);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1494
                end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1495
            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1496
        else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1497
            begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1498
            Gear^.State:= Gear^.State and (not gstAnimation);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1499
            Gear^.doStep:= @doStepHedgehogGone;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1500
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1501
            // Gone message
10124
aabd1b75d5a3 Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents: 10123
diff changeset
  1502
            s:= ansistring(Gear^.Hedgehog^.Name);
13642
3d14950641a4 Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents: 13619
diff changeset
  1503
            AddCaption(FormatA(GetEventString(eidGone), s), capcolDefault, capgrpMessage);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1504
            end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1505
        end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1506
    exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1507
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1508
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1509
if ((Gear^.State and gstWait) = 0) and
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1510
    (prevState <> Gear^.State) then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1511
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1512
    Gear^.State:= Gear^.State or gstWait;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1513
    Gear^.Timer:= 150
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1514
    end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1515
else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1516
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1517
    if Gear^.Timer = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1518
        begin
14926
60340c8a6fae Don't remove gstWinner after GameOver
Wuzzy <Wuzzy2@mail.ru>
parents: 14748
diff changeset
  1519
        Gear^.State:= Gear^.State and (not (gstWait or gstLoser or gstAttacked or gstNotKickable or gstChooseTarget));
60340c8a6fae Don't remove gstWinner after GameOver
Wuzzy <Wuzzy2@mail.ru>
parents: 14748
diff changeset
  1520
        if (not GameOver) then
60340c8a6fae Don't remove gstWinner after GameOver
Wuzzy <Wuzzy2@mail.ru>
parents: 14748
diff changeset
  1521
            Gear^.State:= Gear^.State and (not gstWinner);
8563
4d9d8287e601 Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents: 8560
diff changeset
  1522
        if Gear^.Hedgehog^.Effects[heFrozen] = 0 then Gear^.Active:= false;
9291
15f7bb217b66 Make add/delete consistent (this has bugged me for so long)
nemo
parents: 9285
diff changeset
  1523
        AddCI(Gear);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1524
        exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1525
        end
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1526
    else dec(Gear^.Timer)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1527
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1528
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1529
AllInactive:= false
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1530
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1531
8574
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1532
procedure CheckIce(Gear: PGear); inline;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1533
(*
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1534
var x,y,tx,ty: LongInt;
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
  1535
    tdX, tdY, slope: hwFloat;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1536
    land: Word; *)
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
  1537
var slope: hwFloat;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1538
begin
8574
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1539
    if (Gear^.Message and (gmAllStoppable or gmLJump or gmHJump) = 0)
13324
543ab994c9bc wuzzy is a spoilsport
nemo
parents: 13214
diff changeset
  1540
    and (Gear^.State and (gstHHJumping or gstHHHJump or gstAttacking or gstAnimation) = 0)
8633
b9f5adfa81cc keep hogs from sliding while they are being frozen
nemo
parents: 8632
diff changeset
  1541
    and ((Gear^.Hedgehog = nil) or ((Gear^.Hedgehog^.Effects[heFrozen] = 0) or (Gear^.Hedgehog^.Effects[heFrozen] > 255)))
9672
8663d299ba62 this should prevent sliding when game clock isn't running. sorry unc0rr, not going to bother encapsulating. maybe later. short on time right now/lazy
nemo
parents: 9670
diff changeset
  1542
    and (not Gear^.dY.isNegative) and TurnClockActive and (TestCollisionYwithGear(Gear, 1) and lfIce <> 0) then
8574
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1543
        begin
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1544
        slope:= CalcSlopeBelowGear(Gear);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1545
        if slope.QWordValue > 730144440 then // ignore mild slopes
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1546
            begin
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1547
            Gear^.dX:=Gear^.dX+slope*cGravity*_256;
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1548
            Gear^.State:= Gear^.State or gstMoving
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1549
            end
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1550
        end;
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1551
(*
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1552
    x:= hwRound(Gear^.X);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1553
    y:= hwRound(Gear^.Y);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1554
    AddVisualGear(x, y, vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1555
    AddVisualGear(x - hwRound(_5*slope), y + hwRound(_5*slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1556
    AddVisualGear(x + hwRound(_5*slope), y - hwRound(_5*slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1557
    AddVisualGear(x - hwRound(_20 * slope), y + hwRound(_20 * slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1558
    AddVisualGear(x + hwRound(_20 * slope), y - hwRound(_20 * slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1559
    AddVisualGear(x - hwRound(_30 * slope), y + hwRound(_30 * slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1560
    AddVisualGear(x + hwRound(_30 * slope), y - hwRound(_30 * slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1561
    AddVisualGear(x - hwRound(_40 * slope), y + hwRound(_40 * slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1562
    AddVisualGear(x + hwRound(_40 * slope), y - hwRound(_40 * slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1563
    AddVisualGear(x - hwRound(_50 * slope), y + hwRound(_50 * slope), vgtSmokeTrace);
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1564
    AddVisualGear(x + hwRound(_50 * slope), y - hwRound(_50 * slope), vgtSmokeTrace); *)
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1565
end;
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1566
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1567
////////////////////////////////////////////////////////////////////////////////
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1568
procedure doStepHedgehog(Gear: PGear);
9526
2fd51591b260 make wrapping nicer when there's collision
nemo
parents: 9509
diff changeset
  1569
var tX: hwFloat;
8574
684169401a2f More fiddling w/ sliding
nemo
parents: 8563
diff changeset
  1570
begin
10577
5e075da5e0a4 don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents: 10443
diff changeset
  1571
// it might make sense to skip more than just drowning check here
5e075da5e0a4 don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents: 10443
diff changeset
  1572
if (not Gear^.Hedgehog^.Unplaced) then
5e075da5e0a4 don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents: 10443
diff changeset
  1573
    CheckGearDrowning(Gear);
9917
nemo
parents: 9914
diff changeset
  1574
if Gear = nil then exit;
9526
2fd51591b260 make wrapping nicer when there's collision
nemo
parents: 9509
diff changeset
  1575
tX:= Gear^.X;
2fd51591b260 make wrapping nicer when there's collision
nemo
parents: 9509
diff changeset
  1576
if WorldWrap(Gear) then
2fd51591b260 make wrapping nicer when there's collision
nemo
parents: 9509
diff changeset
  1577
    begin
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9954
diff changeset
  1578
    if (WorldEdge <> weBounce) and (Gear = CurrentHedgehog^.Gear) and
9539
ab44d44a6177 don't kill rope if not extended
nemo
parents: 9526
diff changeset
  1579
       (CurAmmoGear <> nil) and (CurAmmoGear^.Kind =gtRope) and (CurAmmoGear^.Elasticity <> _0) then
9526
2fd51591b260 make wrapping nicer when there's collision
nemo
parents: 9509
diff changeset
  1580
       CurAmmoGear^.PortalCounter:= 1;
9706
5178d2263521 return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents: 9685
diff changeset
  1581
    if (WorldEdge = weWrap) and ((TestCollisionXwithGear(Gear, 1) <> 0) or (TestCollisionXwithGear(Gear, -1) <> 0))  then
13610
f1b6070a6e14 Fix projectiles reacing incorrectly with land just behind the wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 13597
diff changeset
  1582
        // Stop hedgehog if it collides with land *just* behind other side of world wrap edge
13611
65a10215ba43 Fix hog turning around when blowtorching through wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 13610
diff changeset
  1583
        if ((Gear^.State and gstNotKickable) = 0) then
65a10215ba43 Fix hog turning around when blowtorching through wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 13610
diff changeset
  1584
            begin
14282
6015b74eea55 overall, using LongInt for leftX/rightX results in fewer casts, since most comparisons are against ints.
nemo
parents: 14196
diff changeset
  1585
            if (hwRound(tX) > leftX + Gear^.Radius * 2) then
13611
65a10215ba43 Fix hog turning around when blowtorching through wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 13610
diff changeset
  1586
                Gear^.X:= int2HwFloat(RightX)
65a10215ba43 Fix hog turning around when blowtorching through wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 13610
diff changeset
  1587
            else
65a10215ba43 Fix hog turning around when blowtorching through wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 13610
diff changeset
  1588
                Gear^.X:= int2HwFloat(LeftX);
65a10215ba43 Fix hog turning around when blowtorching through wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 13610
diff changeset
  1589
            Gear^.dX.QWordValue:= 0;
65a10215ba43 Fix hog turning around when blowtorching through wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 13610
diff changeset
  1590
            Gear^.State := Gear^.State or gstCollision;
65a10215ba43 Fix hog turning around when blowtorching through wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 13610
diff changeset
  1591
            end;
9526
2fd51591b260 make wrapping nicer when there's collision
nemo
parents: 9509
diff changeset
  1592
    end;
9507
821452415337 kill rope on wrap
nemo
parents: 9501
diff changeset
  1593
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
  1594
CheckSum:= CheckSum xor Gear^.Hedgehog^.BotLevel;
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1595
if (Gear^.Message and gmDestroy) <> 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1596
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1597
    DeleteGear(Gear);
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1598
    exit
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1599
    end;
9670
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9664
diff changeset
  1600
if GameTicks mod 128 = 0 then CheckIce(Gear);
8655
9fa380a18a65 At multiple requests, change ice to be turn based. This is a more modest adjustment of existing code, that can be fairly easily flagged or reverted if desired. It also allows scripts to extend freezing, and preserves fire melting.
nemo
parents: 8633
diff changeset
  1601
(*
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
  1602
if Gear^.Hedgehog^.Effects[heFrozen] > 0 then
8563
4d9d8287e601 Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents: 8560
diff changeset
  1603
    begin
8632
b5ed76d2a1f9 Make hogs thaw only on enemy turns, make timebox counter decrement only on your turn, adjust knock for frozen hogs, increase damage on frozen hogs, make freezer fuel only reduce when not adjusting angle.
nemo
parents: 8631
diff changeset
  1604
    if (Gear^.Hedgehog^.Effects[heFrozen] > 256) and (CurrentHedgehog^.Team^.Clan <> Gear^.Hedgehog^.Team^.Clan) then
8563
4d9d8287e601 Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents: 8560
diff changeset
  1605
        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
  1606
    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
  1607
        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
  1608
    end;
8655
9fa380a18a65 At multiple requests, change ice to be turn based. This is a more modest adjustment of existing code, that can be fairly easily flagged or reverted if desired. It also allows scripts to extend freezing, and preserves fire melting.
nemo
parents: 8633
diff changeset
  1609
*)
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
  1610
if (GameTicks mod 10 = 0) and (Gear^.Hedgehog^.Effects[heFrozen] > 0) and (Gear^.Hedgehog^.Effects[heFrozen] < 256) then
8655
9fa380a18a65 At multiple requests, change ice to be turn based. This is a more modest adjustment of existing code, that can be fairly easily flagged or reverted if desired. It also allows scripts to extend freezing, and preserves fire melting.
nemo
parents: 8633
diff changeset
  1611
    dec(Gear^.Hedgehog^.Effects[heFrozen]);
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1612
if (Gear^.State and gstHHDriven) = 0 then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1613
    doStepHedgehogFree(Gear)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1614
else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1615
    begin
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1616
    with Gear^.Hedgehog^ do
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1617
        if Team^.hasGone then
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1618
            TeamGoneEffect(Team^)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1619
        else
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1620
            doStepHedgehogDriven(Gear)
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1621
    end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1622
end;
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1623
12815
92218a06c9ff Don't send taunt message for automatically happening taunt animation
unc0rr
parents: 12649
diff changeset
  1624
procedure PlayTaunt(taunt: Longword);
92218a06c9ff Don't send taunt message for automatically happening taunt animation
unc0rr
parents: 12649
diff changeset
  1625
begin
92218a06c9ff Don't send taunt message for automatically happening taunt animation
unc0rr
parents: 12649
diff changeset
  1626
    if CurrentHedgehog^.Gear <> nil then
92218a06c9ff Don't send taunt message for automatically happening taunt animation
unc0rr
parents: 12649
diff changeset
  1627
        with CurrentHedgehog^.Gear^ do
92218a06c9ff Don't send taunt message for automatically happening taunt animation
unc0rr
parents: 12649
diff changeset
  1628
            begin
92218a06c9ff Don't send taunt message for automatically happening taunt animation
unc0rr
parents: 12649
diff changeset
  1629
            Message:= Message or (gmAnimate and InputMask);
92218a06c9ff Don't send taunt message for automatically happening taunt animation
unc0rr
parents: 12649
diff changeset
  1630
            MsgParam:= taunt;
92218a06c9ff Don't send taunt message for automatically happening taunt animation
unc0rr
parents: 12649
diff changeset
  1631
            ScriptCall('onTaunt', MsgParam);
92218a06c9ff Don't send taunt message for automatically happening taunt animation
unc0rr
parents: 12649
diff changeset
  1632
            end
92218a06c9ff Don't send taunt message for automatically happening taunt animation
unc0rr
parents: 12649
diff changeset
  1633
end;
92218a06c9ff Don't send taunt message for automatically happening taunt animation
unc0rr
parents: 12649
diff changeset
  1634
6581
e510d1245bd7 fix line endings
nemo
parents: 6580
diff changeset
  1635
end.