hedgewars/uStats.pas
author unC0Rr
Fri, 19 Apr 2024 17:45:05 +0200
changeset 16011 52b51d92e88d
parent 15824 681db3039ad7
permissions -rw-r--r--
Fix build
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
     1
(*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 1058
diff changeset
     2
 * Hedgewars, a free turn based strategy game
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 10127
diff changeset
     3
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
     4
 *
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
     8
 *
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    12
 * GNU General Public License for more details.
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    13
 *
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
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
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    17
 *)
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    18
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2619
diff changeset
    19
{$INCLUDE "options.inc"}
079ef82eac75 revamped file access and debug display
koda
parents: 2619
diff changeset
    20
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    21
unit uStats;
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    22
interface
4370
unc0rr
parents: 4365
diff changeset
    23
uses uConsts, uTypes;
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    24
13651
56a925256039 Add separate TotalRounds var for Lua to count the *actual* number of rounds that have been played
Wuzzy <Wuzzy2@mail.ru>
parents: 13642
diff changeset
    25
var TotalRoundsPre: LongInt; // Helper variable for calculating start of Sudden Death and more. Starts at -1 and is incremented on the turn BEFORE the turn which marks the start of the next round. Always -1 while in hog placing phase
56a925256039 Add separate TotalRounds var for Lua to count the *actual* number of rounds that have been played
Wuzzy <Wuzzy2@mail.ru>
parents: 13642
diff changeset
    26
    TotalRoundsReal: LongInt; // Total number of rounds played (-1 if not started or in hog placing phase). Exported to Lua as 'TotalRounds'
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
    27
    FinishedTurnsTotal: LongInt;
14595
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    28
    // Variables to disable certain portions of game stats (set by Lua)
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
    29
    SendGameResultOn : boolean = true;
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
    30
    SendRankingStatsOn : boolean = true;
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
    31
    SendAchievementsStatsOn : boolean = true;
9180
d19c09670ec8 changed variable and function name
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9174
diff changeset
    32
    SendHealthStatsOn : boolean = true;
14595
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    33
    // Clan death log, used for game stats
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
    34
    ClanDeathLog : PClanDeathLogEntry;
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9521
diff changeset
    35
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
    36
procedure initModule;
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
    37
procedure freeModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
    38
829
1209eb768acf Use 'first blood' sound
unc0rr
parents: 815
diff changeset
    39
procedure AmmoUsed(am: TAmmoType);
12176
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    40
procedure HedgehogPoisoned(Gear: PGear; Attacker: PHedgehog);
12292
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
    41
procedure HedgehogSacrificed(Hedgehog: PHedgehog);
5202
45a16280d68d Some improvements on stats subsystem
unc0rr
parents: 5142
diff changeset
    42
procedure HedgehogDamaged(Gear: PGear; Attacker: PHedgehog; Damage: Longword; killed: boolean);
12568
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
    43
procedure TargetHit;
871
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
    44
procedure Skipped;
14963
2d5f1dc637da Fix sndBoring being placed if ending turn during multi-shoot via skip command
Wuzzy <Wuzzy2@mail.ru>
parents: 14886
diff changeset
    45
function  getIsTurnSkipped: boolean;
13755
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
    46
procedure TurnStats;
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    47
procedure TurnReaction;
13761
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
    48
procedure TurnStatsReset;
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    49
procedure SendStats;
6014
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
    50
procedure hedgehogFlight(Gear: PGear; time: Longword);
9409
6564baf7dedf Store TrophyRace records in database
unc0rr
parents: 9405
diff changeset
    51
procedure declareAchievement(id, teamname, location: shortstring; value: LongInt);
11569
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
    52
procedure startGhostPoints(n: LongInt);
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
    53
procedure dumpPoint(x, y: LongInt);
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    54
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    55
implementation
11532
bf86c6cb9341 Bye-bye TryDo
unc0rr
parents: 11046
diff changeset
    56
uses uSound, uLocale, uVariables, uUtils, uIO, uCaptions, uMisc, uConsole, uScript;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents: 4357
diff changeset
    57
14595
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    58
var DamageClan  : Longword = 0;         // Damage of own clan in turn
14886
3054b85963ef Play sndFirstBlood after first damage/kill/poisoning of enemy (instead of ANY damage)
Wuzzy <Wuzzy2@mail.ru>
parents: 14885
diff changeset
    59
    DamageTeam  : Longword = 0;         // Damage of own team in turn
14595
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    60
    DamageTotal : Longword = 0;         // Total damage dealt in game
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    61
    DamageTurn  : Longword = 0;         // Damage in turn
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    62
    PoisonTurn  : Longword = 0;         // Poisoned enemies in turn
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    63
    PoisonClan  : Longword = 0;         // Poisoned own clan members in turn
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    64
    PoisonTeam  : Longword = 0;         // Poisoned own team members in turn
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    65
    PoisonTotal : Longword = 0;         // Poisoned hogs in whole round
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    66
    KillsClan   : LongWord = 0;         // Own clan members killed in turn
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    67
    KillsTeam   : LongWord = 0;         // Own team members killed in turn
14596
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
    68
    KillsSD     : LongWord = 0;         // Killed hedgehogs in turn that died by Sudden Death water rise
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
    69
    Kills       : LongWord = 0;         // Killed hedgehogs in turn (including those that died by Sudden Death water rise)
14595
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    70
    KillsTotal  : LongWord = 0;         // Total killed hedgehogs in game
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    71
    HitTargets  : LongWord = 0;         // Target (gtTarget) hits in turn
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    72
    AmmoUsedCount : Longword = 0;       // Number of times an ammo has been used this turn
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    73
    AmmoDamagingUsed : boolean = false; // true if damaging ammo was used in turn
15470
846b5f879408 Remove unicode chars in *.pas files
Wuzzy <Wuzzy2@mail.ru>
parents: 15220
diff changeset
    74
    FirstBlood  : boolean = false;      // true if the "First blood" taunt has been used in this game
846b5f879408 Remove unicode chars in *.pas files
Wuzzy <Wuzzy2@mail.ru>
parents: 15220
diff changeset
    75
    StepFirstBlood : boolean = false;   // true if the "First blood" taunt is to be used this turn
846b5f879408 Remove unicode chars in *.pas files
Wuzzy <Wuzzy2@mail.ru>
parents: 15220
diff changeset
    76
    LeaveMeAlone : boolean = false;     // true if the "Leave me alone" taunt is to be used this turn
14595
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    77
    SkippedTurns: LongWord = 0;         // number of skipped turns in game
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    78
    isTurnSkipped: boolean = false;     // true if this turn was skipped
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    79
    vpHurtSameClan: PVoicepack = nil;   // voicepack of current clan (used for taunts)
fa908241798f Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents: 14545
diff changeset
    80
    vpHurtEnemy: PVoicepack = nil;      // voicepack of enemy (used for taunts)
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    81
12176
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    82
procedure HedgehogPoisoned(Gear: PGear; Attacker: PHedgehog);
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    83
begin
14038
1ac129df8e5b Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
    84
    if Attacker^.Team^.Clan = Gear^.Hedgehog^.Team^.Clan then
12176
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    85
        begin
14038
1ac129df8e5b Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
    86
        vpHurtSameClan:= Gear^.Hedgehog^.Team^.voicepack;
1ac129df8e5b Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
    87
        inc(PoisonClan);
1ac129df8e5b Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
    88
        if Attacker^.Team = Gear^.Hedgehog^.Team then
1ac129df8e5b Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
    89
            inc(PoisonTeam);
12176
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    90
        end
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    91
    else
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    92
        begin
14886
3054b85963ef Play sndFirstBlood after first damage/kill/poisoning of enemy (instead of ANY damage)
Wuzzy <Wuzzy2@mail.ru>
parents: 14885
diff changeset
    93
        if not FirstBlood then
3054b85963ef Play sndFirstBlood after first damage/kill/poisoning of enemy (instead of ANY damage)
Wuzzy <Wuzzy2@mail.ru>
parents: 14885
diff changeset
    94
            StepFirstBlood:= true;
12176
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    95
        vpHurtEnemy:= Gear^.Hedgehog^.Team^.voicepack;
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    96
        inc(PoisonTurn)
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    97
        end;
12290
4ce7cb441c75 Call hedgehogs stupid for poisoning themselves
Wuzzy <almikes@aol.com>
parents: 12176
diff changeset
    98
    Gear^.Hedgehog^.stats.StepPoisoned:= true;
12176
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    99
    inc(PoisonTotal)
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
   100
end;
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
   101
12292
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   102
procedure HedgehogSacrificed(Hedgehog: PHedgehog);
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   103
begin
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   104
    Hedgehog^.stats.Sacrificed:= true
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   105
end;
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   106
5202
45a16280d68d Some improvements on stats subsystem
unc0rr
parents: 5142
diff changeset
   107
procedure HedgehogDamaged(Gear: PGear; Attacker: PHedgehog; Damage: Longword; killed: boolean);
15824
681db3039ad7 remove owner from wild sentries
alfadur
parents: 15470
diff changeset
   108
var sameClan: Boolean;
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   109
begin
15824
681db3039ad7 remove owner from wild sentries
alfadur
parents: 15470
diff changeset
   110
sameClan := false;
681db3039ad7 remove owner from wild sentries
alfadur
parents: 15470
diff changeset
   111
if Attacker <> nil then
681db3039ad7 remove owner from wild sentries
alfadur
parents: 15470
diff changeset
   112
    sameClan := Attacker^.Team^.Clan = Gear^.Hedgehog^.Team^.Clan;
681db3039ad7 remove owner from wild sentries
alfadur
parents: 15470
diff changeset
   113
681db3039ad7 remove owner from wild sentries
alfadur
parents: 15470
diff changeset
   114
if sameClan then
14038
1ac129df8e5b Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
   115
    vpHurtSameClan:= Gear^.Hedgehog^.Team^.voicepack
1678
c8deca7b1e3c Fix voicepacks
unc0rr
parents: 1669
diff changeset
   116
else
14034
f9281c294a4c Add revenge taunt
Wuzzy <Wuzzy2@mail.ru>
parents: 14023
diff changeset
   117
    begin
14886
3054b85963ef Play sndFirstBlood after first damage/kill/poisoning of enemy (instead of ANY damage)
Wuzzy <Wuzzy2@mail.ru>
parents: 14885
diff changeset
   118
    if not FirstBlood then
3054b85963ef Play sndFirstBlood after first damage/kill/poisoning of enemy (instead of ANY damage)
Wuzzy <Wuzzy2@mail.ru>
parents: 14885
diff changeset
   119
        StepFirstBlood:= true;
4365
4f2b1a152979 Remove ugly PHedgehog(Gear^.Hedgehog) cast
unc0rr
parents: 4361
diff changeset
   120
    vpHurtEnemy:= Gear^.Hedgehog^.Team^.voicepack;
15824
681db3039ad7 remove owner from wild sentries
alfadur
parents: 15470
diff changeset
   121
    if (Attacker <> nil) and (not killed) and (not bDuringWaterRise) then
14034
f9281c294a4c Add revenge taunt
Wuzzy <Wuzzy2@mail.ru>
parents: 14023
diff changeset
   122
        begin
14035
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   123
        // Check if victim got attacked by RevengeHog again
14885
0ec83cc2365e Don't play "LeaveMeAlone" taunt if attacker hits same hog multiple times in same turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14617
diff changeset
   124
        if (Gear^.Hedgehog^.RevengeHog <> nil) and (Gear^.Hedgehog^.RevengeHog = Attacker) and (Gear^.Hedgehog^.stats.StepRevenge = false) then
14035
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   125
            LeaveMeAlone:= true;
14034
f9281c294a4c Add revenge taunt
Wuzzy <Wuzzy2@mail.ru>
parents: 14023
diff changeset
   126
        // Check if attacker got revenge
f9281c294a4c Add revenge taunt
Wuzzy <Wuzzy2@mail.ru>
parents: 14023
diff changeset
   127
        if (Attacker^.RevengeHog <> nil) and (Attacker^.RevengeHog = Gear^.Hedgehog) then
f9281c294a4c Add revenge taunt
Wuzzy <Wuzzy2@mail.ru>
parents: 14023
diff changeset
   128
            begin
f9281c294a4c Add revenge taunt
Wuzzy <Wuzzy2@mail.ru>
parents: 14023
diff changeset
   129
            Attacker^.stats.GotRevenge:= true;
14035
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   130
            // Also reset the "in-row" counter to restore LeaveMeAlone/CutItOut taunts
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   131
            Attacker^.stats.StepDamageRecvInRow:= 0;
14034
f9281c294a4c Add revenge taunt
Wuzzy <Wuzzy2@mail.ru>
parents: 14023
diff changeset
   132
            Attacker^.RevengeHog:= nil;
f9281c294a4c Add revenge taunt
Wuzzy <Wuzzy2@mail.ru>
parents: 14023
diff changeset
   133
            end
f9281c294a4c Add revenge taunt
Wuzzy <Wuzzy2@mail.ru>
parents: 14023
diff changeset
   134
        // If not, victim remembers their attacker to plan *their* revenge
f9281c294a4c Add revenge taunt
Wuzzy <Wuzzy2@mail.ru>
parents: 14023
diff changeset
   135
        else
14885
0ec83cc2365e Don't play "LeaveMeAlone" taunt if attacker hits same hog multiple times in same turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14617
diff changeset
   136
            begin
14034
f9281c294a4c Add revenge taunt
Wuzzy <Wuzzy2@mail.ru>
parents: 14023
diff changeset
   137
            Gear^.Hedgehog^.RevengeHog:= Attacker;
14885
0ec83cc2365e Don't play "LeaveMeAlone" taunt if attacker hits same hog multiple times in same turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14617
diff changeset
   138
            // To prevent "LeaveMeAlone" being activated if same hog is hit by attacker
0ec83cc2365e Don't play "LeaveMeAlone" taunt if attacker hits same hog multiple times in same turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14617
diff changeset
   139
            // multiple times in the same turn.
0ec83cc2365e Don't play "LeaveMeAlone" taunt if attacker hits same hog multiple times in same turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14617
diff changeset
   140
            Gear^.Hedgehog^.stats.StepRevenge:= true;
0ec83cc2365e Don't play "LeaveMeAlone" taunt if attacker hits same hog multiple times in same turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14617
diff changeset
   141
            end;
14034
f9281c294a4c Add revenge taunt
Wuzzy <Wuzzy2@mail.ru>
parents: 14023
diff changeset
   142
        end
f9281c294a4c Add revenge taunt
Wuzzy <Wuzzy2@mail.ru>
parents: 14023
diff changeset
   143
    end;
1678
c8deca7b1e3c Fix voicepacks
unc0rr
parents: 1669
diff changeset
   144
c8deca7b1e3c Fix voicepacks
unc0rr
parents: 1669
diff changeset
   145
//////////////////////////
c8deca7b1e3c Fix voicepacks
unc0rr
parents: 1669
diff changeset
   146
14597
6d2954037e57 Make hog kill stat stuff consistent WRT SD water rise
Wuzzy <Wuzzy2@mail.ru>
parents: 14596
diff changeset
   147
if (not bDuringWaterRise) then
6d2954037e57 Make hog kill stat stuff consistent WRT SD water rise
Wuzzy <Wuzzy2@mail.ru>
parents: 14596
diff changeset
   148
    begin
15824
681db3039ad7 remove owner from wild sentries
alfadur
parents: 15470
diff changeset
   149
    if Attacker <> nil then
681db3039ad7 remove owner from wild sentries
alfadur
parents: 15470
diff changeset
   150
        inc(Attacker^.stats.StepDamageGiven, Damage);
14597
6d2954037e57 Make hog kill stat stuff consistent WRT SD water rise
Wuzzy <Wuzzy2@mail.ru>
parents: 14596
diff changeset
   151
    inc(Gear^.Hedgehog^.stats.StepDamageRecv, Damage);
6d2954037e57 Make hog kill stat stuff consistent WRT SD water rise
Wuzzy <Wuzzy2@mail.ru>
parents: 14596
diff changeset
   152
    end;
815
82ff416301bd Use sounds 'stupid' and 'missed'
unc0rr
parents: 814
diff changeset
   153
5202
45a16280d68d Some improvements on stats subsystem
unc0rr
parents: 5142
diff changeset
   154
if CurrentHedgehog^.Team^.Clan = Gear^.Hedgehog^.Team^.Clan then inc(DamageClan, Damage);
14038
1ac129df8e5b Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
   155
if CurrentHedgehog^.Team = Gear^.Hedgehog^.Team then inc(DamageTeam, Damage);
815
82ff416301bd Use sounds 'stupid' and 'missed'
unc0rr
parents: 814
diff changeset
   156
5202
45a16280d68d Some improvements on stats subsystem
unc0rr
parents: 5142
diff changeset
   157
if killed then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   158
    begin
12343
6ff01dc1ffe2 Fix Traitor taunt being played when hog w/ heResurrectable drowns w/o damage
Wuzzy <almikes@aol.com>
parents: 12332
diff changeset
   159
    Gear^.Hedgehog^.stats.StepDied:= true;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   160
    inc(Kills);
14596
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   161
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   162
    inc(KillsTotal);
14596
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   163
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   164
    if bDuringWaterRise then
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   165
        inc(KillsSD)
15824
681db3039ad7 remove owner from wild sentries
alfadur
parents: 15470
diff changeset
   166
    else if Attacker <> nil then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   167
        begin
14597
6d2954037e57 Make hog kill stat stuff consistent WRT SD water rise
Wuzzy <Wuzzy2@mail.ru>
parents: 14596
diff changeset
   168
        inc(Attacker^.stats.StepKills);
14596
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   169
        inc(Attacker^.Team^.stats.Kills);
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   170
        if (Attacker^.Team^.TeamName = Gear^.Hedgehog^.Team^.TeamName) then
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   171
            begin
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   172
            inc(Attacker^.Team^.stats.TeamKills);
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   173
            inc(Attacker^.Team^.stats.TeamDamage, Gear^.Damage);
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   174
        end;
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   175
        if Gear = Attacker^.Gear then
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   176
            inc(Attacker^.Team^.stats.Suicides);
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   177
        if Attacker^.Team^.Clan = Gear^.Hedgehog^.Team^.Clan then
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   178
            begin
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   179
            inc(KillsClan);
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   180
            if Attacker^.Team = Gear^.Hedgehog^.Team then
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   181
                inc(KillsTeam);
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   182
            end;
14038
1ac129df8e5b Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
   183
        end;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   184
    end;
815
82ff416301bd Use sounds 'stupid' and 'missed'
unc0rr
parents: 814
diff changeset
   185
8717
6e1ccd678e8a this should ensure those other voices play a bit more often.
nemo
parents: 7932
diff changeset
   186
inc(DamageTotal, Damage);
6e1ccd678e8a this should ensure those other voices play a bit more often.
nemo
parents: 7932
diff changeset
   187
inc(DamageTurn, Damage)
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   188
end;
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   189
12568
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
   190
procedure TargetHit();
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
   191
begin
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
   192
   inc(HitTargets)
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
   193
end;
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
   194
871
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
   195
procedure Skipped;
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
   196
begin
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
   197
inc(SkippedTurns);
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
   198
isTurnSkipped:= true
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
   199
end;
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
   200
14963
2d5f1dc637da Fix sndBoring being placed if ending turn during multi-shoot via skip command
Wuzzy <Wuzzy2@mail.ru>
parents: 14886
diff changeset
   201
function getIsTurnSkipped: boolean;
2d5f1dc637da Fix sndBoring being placed if ending turn during multi-shoot via skip command
Wuzzy <Wuzzy2@mail.ru>
parents: 14886
diff changeset
   202
begin
2d5f1dc637da Fix sndBoring being placed if ending turn during multi-shoot via skip command
Wuzzy <Wuzzy2@mail.ru>
parents: 14886
diff changeset
   203
getIsTurnSkipped:= isTurnSkipped;
2d5f1dc637da Fix sndBoring being placed if ending turn during multi-shoot via skip command
Wuzzy <Wuzzy2@mail.ru>
parents: 14886
diff changeset
   204
end;
2d5f1dc637da Fix sndBoring being placed if ending turn during multi-shoot via skip command
Wuzzy <Wuzzy2@mail.ru>
parents: 14886
diff changeset
   205
13755
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   206
procedure TurnStats;
874
964c0d5b3604 - Fix warning
unc0rr
parents: 873
diff changeset
   207
var i, t: LongInt;
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   208
    c: Longword;
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   209
    newEntry: PClanDeathLogEntry;
13755
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   210
begin
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   211
inc(FinishedTurnsTotal);
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   212
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   213
for t:= 0 to Pred(TeamsCount) do // send even on zero turn
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   214
    with TeamsArray[t]^ do
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   215
        for i:= 0 to cMaxHHIndex do
14035
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   216
            begin
13755
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   217
            with Hedgehogs[i].stats do
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   218
                begin
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   219
                inc(DamageRecv, StepDamageRecv);
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   220
                inc(DamageGiven, StepDamageGiven);
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   221
                if StepDamageRecv > MaxStepDamageRecv then
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   222
                    MaxStepDamageRecv:= StepDamageRecv;
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   223
                if StepDamageGiven > MaxStepDamageGiven then
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   224
                    MaxStepDamageGiven:= StepDamageGiven;
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   225
                if StepKills > MaxStepKills then
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   226
                    MaxStepKills:= StepKills;
14035
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   227
                if (Hedgehogs[i].Team <> nil) and (Hedgehogs[i].Team^.Clan^.ClanIndex <> CurrentHedgehog^.Team^.Clan^.ClanIndex) then
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   228
                    begin
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   229
                    if StepDamageRecv > 0 then
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   230
                        inc(StepDamageRecvInRow)
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   231
                    else
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   232
                        StepDamageRecvInRow:= 0;
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   233
                    if StepDamageRecvInRow >= 3 then
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   234
                        LeaveMeAlone:= true;
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   235
                    end;
13755
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   236
                end;
14035
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   237
            end;
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   238
13755
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   239
13758
b1177e9c9ee9 Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents: 13757
diff changeset
   240
// Write into the death log which clans died in this turn,
b1177e9c9ee9 Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents: 13757
diff changeset
   241
// important for final rankings.
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   242
c:= 0;
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   243
newEntry:= nil;
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   244
for t:= 0 to Pred(ClansCount) do
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   245
    with ClansArray[t]^ do
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   246
        begin
13758
b1177e9c9ee9 Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents: 13757
diff changeset
   247
        if (ClanHealth = 0) and (ClansArray[t]^.DeathLogged = false) then
13755
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   248
            begin
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   249
            if c = 0 then
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   250
                begin
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   251
                new(newEntry);
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   252
                newEntry^.Turn := FinishedTurnsTotal;
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   253
                newEntry^.NextEntry := nil;
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   254
                end;
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   255
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   256
            newEntry^.KilledClans[c]:= ClansArray[t];
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   257
            inc(c);
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   258
            newEntry^.KilledClansCount := c;
13758
b1177e9c9ee9 Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents: 13757
diff changeset
   259
            ClansArray[t]^.DeathLogged:= true;
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   260
            end;
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   261
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   262
        if SendHealthStatsOn then
13755
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   263
            SendStat(siClanHealth, IntToStr(Color) + ' ' + IntToStr(ClanHealth));
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   264
        end;
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   265
if newEntry <> nil then
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   266
    begin
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   267
    if ClanDeathLog <> nil then
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   268
        begin
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   269
        newEntry^.NextEntry:= ClanDeathLog;
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   270
        end;
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   271
    ClanDeathLog:= newEntry;
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   272
    end;
13755
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   273
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   274
end;
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   275
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   276
procedure TurnReaction;
6908d1e65cdc Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents: 13651
diff changeset
   277
var killsCheck: LongInt;
10127
7f29a65aa1e4 It compiles \o/
unc0rr
parents: 10116
diff changeset
   278
    s: ansistring;
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   279
begin
11532
bf86c6cb9341 Bye-bye TryDo
unc0rr
parents: 11046
diff changeset
   280
//TryDo(not bBetweenTurns, 'Engine bug: TurnReaction between turns', true);
1054
80225c6af656 - Prepare for sudden death implementation
unc0rr
parents: 874
diff changeset
   281
1625
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1070
diff changeset
   282
if FinishedTurnsTotal <> 0 then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   283
    begin
10127
7f29a65aa1e4 It compiles \o/
unc0rr
parents: 10116
diff changeset
   284
    s:= ansistring(CurrentHedgehog^.Name);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   285
    inc(CurrentHedgehog^.stats.FinishedTurns);
14596
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   286
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   287
    // killsCheck is used to take deaths into account that were not a traditional "kill"
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   288
    // Hogs that died during SD water rise do not count as "kills" for taunts
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   289
    killsCheck:= KillsSD;
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   290
    // If the hog sacrificed (=kamikaze/piano) itself, this needs to be taken into account for the reactions later
12292
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   291
    if (CurrentHedgehog^.stats.Sacrificed) then
14596
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   292
        inc(killsCheck);
870
dd418d9c18c5 Use more sounds
unc0rr
parents: 869
diff changeset
   293
14886
3054b85963ef Play sndFirstBlood after first damage/kill/poisoning of enemy (instead of ANY damage)
Wuzzy <Wuzzy2@mail.ru>
parents: 14885
diff changeset
   294
    // First blood (first damage, poison or kill of enemy)
3054b85963ef Play sndFirstBlood after first damage/kill/poisoning of enemy (instead of ANY damage)
Wuzzy <Wuzzy2@mail.ru>
parents: 14885
diff changeset
   295
    if (StepFirstBlood) and (not FirstBlood) and (ClansCount > 1) and ((DamageTotal > 0) or (KillsTotal > 0) or (PoisonTotal > 0)) then
14404
9561bf634b21 Fix "first blood" taunt being repeated if same hog got hurt again
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   296
        begin
9561bf634b21 Fix "first blood" taunt being repeated if same hog got hurt again
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   297
        FirstBlood:= true;
9561bf634b21 Fix "first blood" taunt being repeated if same hog got hurt again
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   298
        AddVoice(sndFirstBlood, CurrentTeam^.voicepack);
9561bf634b21 Fix "first blood" taunt being repeated if same hog got hurt again
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   299
        end
815
82ff416301bd Use sounds 'stupid' and 'missed'
unc0rr
parents: 814
diff changeset
   300
12292
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   301
    // Hog hurts, poisons or kills itself (except sacrifice)
12343
6ff01dc1ffe2 Fix Traitor taunt being played when hog w/ heResurrectable drowns w/o damage
Wuzzy <almikes@aol.com>
parents: 12332
diff changeset
   302
    else if (CurrentHedgehog^.stats.Sacrificed = false) and ((CurrentHedgehog^.stats.StepDamageRecv > 0) or (CurrentHedgehog^.stats.StepPoisoned) or (CurrentHedgehog^.stats.StepDied)) then
14020
bc61809bfb1e Don't play sndDrat or sndBugger on self-kill
Wuzzy <Wuzzy2@mail.ru>
parents: 14015
diff changeset
   303
        // Hurt itself only (without dying)
bc61809bfb1e Don't play sndDrat or sndBugger on self-kill
Wuzzy <Wuzzy2@mail.ru>
parents: 14015
diff changeset
   304
        if (CurrentHedgehog^.stats.StepDamageGiven = CurrentHedgehog^.stats.StepDamageRecv) and (CurrentHedgehog^.stats.StepDamageRecv >= 1) and (not CurrentHedgehog^.stats.StepDied) then
14014
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 14012
diff changeset
   305
            begin
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 14012
diff changeset
   306
            // Announcer message + random taunt
13642
3d14950641a4 Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents: 12918
diff changeset
   307
            AddCaption(FormatA(GetEventString(eidHurtSelf), s), capcolDefault, capgrpMessage);
14014
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 14012
diff changeset
   308
            if (CurrentHedgehog^.stats.StepDamageGiven <= CurrentHedgehog^.stats.StepDamageRecv) and (CurrentHedgehog^.stats.StepDamageRecv >= 1) then
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 14012
diff changeset
   309
                case random(3) of
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 14012
diff changeset
   310
                0: AddVoice(sndStupid, PreviousTeam^.voicepack);
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 14012
diff changeset
   311
                1: AddVoice(sndBugger, CurrentTeam^.voicepack);
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 14012
diff changeset
   312
                2: AddVoice(sndDrat, CurrentTeam^.voicepack);
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 14012
diff changeset
   313
                end;
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 14012
diff changeset
   314
            end
14020
bc61809bfb1e Don't play sndDrat or sndBugger on self-kill
Wuzzy <Wuzzy2@mail.ru>
parents: 14015
diff changeset
   315
        // Hurt itself and others, or died
14014
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 14012
diff changeset
   316
        else
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 14012
diff changeset
   317
            AddVoice(sndStupid, PreviousTeam^.voicepack)
5203
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
   318
12292
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   319
    // Hog hurts, poisons or kills own team/clan member. Sacrifice is taken into account
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   320
    else if (DamageClan <> 0) or (KillsClan > killsCheck) or (PoisonClan <> 0) then
14596
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   321
        if (DamageTurn > DamageClan) or ((Kills-KillsSD) > KillsClan) then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   322
            if random(2) = 0 then
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   323
                AddVoice(sndNutter, CurrentTeam^.voicepack)
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   324
            else
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   325
                AddVoice(sndWatchIt, vpHurtSameClan)
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   326
        else
14038
1ac129df8e5b Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
   327
            // Attacked same team
1ac129df8e5b Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
   328
            if (random(2) = 0) and ((DamageTeam <> 0) or (KillsTeam > killsCheck) or (PoisonTeam <> 0)) then
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   329
                AddVoice(sndSameTeam, vpHurtSameClan)
14038
1ac129df8e5b Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
   330
            // Attacked same team or a clan member
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   331
            else
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   332
                AddVoice(sndTraitor, vpHurtSameClan)
5203
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
   333
12176
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
   334
    // Hog hurts, kills or poisons enemy
12292
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   335
    else if (CurrentHedgehog^.stats.StepDamageGiven <> 0) or (CurrentHedgehog^.stats.StepKills > killsCheck) or (PoisonTurn <> 0) then
14015
544b32038664 Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents: 14014
diff changeset
   336
        // 3 kills or more
544b32038664 Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents: 14014
diff changeset
   337
        if Kills > killsCheck + 2 then
544b32038664 Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents: 14014
diff changeset
   338
            AddVoice(sndAmazing, CurrentTeam^.voicepack)
544b32038664 Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents: 14014
diff changeset
   339
        // 2 kills
544b32038664 Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents: 14014
diff changeset
   340
        else if Kills = (killsCheck + 2) then
544b32038664 Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents: 14014
diff changeset
   341
            if random(2) = 0 then
544b32038664 Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents: 14014
diff changeset
   342
                AddVoice(sndBrilliant, CurrentTeam^.voicepack)
544b32038664 Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents: 14014
diff changeset
   343
            else
544b32038664 Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents: 14014
diff changeset
   344
                AddVoice(sndExcellent, CurrentTeam^.voicepack)
544b32038664 Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents: 14014
diff changeset
   345
        // 1 kill
544b32038664 Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents: 14014
diff changeset
   346
        else if Kills = (killsCheck + 1) then
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   347
            AddVoice(sndEnemyDown, CurrentTeam^.voicepack)
14015
544b32038664 Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents: 14014
diff changeset
   348
        // 0 kills, only damage or poison
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   349
        else
14035
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   350
            // possible reactions of victim, in the order of preference:
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   351
            // 1. claiming revenge
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   352
            // 2. complaining about getting attacked too often
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   353
            // 3. threatening enemy with retaliation
14034
f9281c294a4c Add revenge taunt
Wuzzy <Wuzzy2@mail.ru>
parents: 14023
diff changeset
   354
            if CurrentHedgehog^.stats.GotRevenge then
14037
bf8b7c166b3c Play another voice as fallback if sndRevenge could not be found
Wuzzy <Wuzzy2@mail.ru>
parents: 14035
diff changeset
   355
                begin
bf8b7c166b3c Play another voice as fallback if sndRevenge could not be found
Wuzzy <Wuzzy2@mail.ru>
parents: 14035
diff changeset
   356
                AddVoice(sndRevenge, CurrentHedgehog^.Team^.voicepack);
bf8b7c166b3c Play another voice as fallback if sndRevenge could not be found
Wuzzy <Wuzzy2@mail.ru>
parents: 14035
diff changeset
   357
                // If revenge taunt was added, one of the following voices is
bf8b7c166b3c Play another voice as fallback if sndRevenge could not be found
Wuzzy <Wuzzy2@mail.ru>
parents: 14035
diff changeset
   358
                // added as fallback (4th param), in case of a missing Revenge sound file.
14042
006f97a6f6a7 Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents: 14038
diff changeset
   359
                case random(4) of
006f97a6f6a7 Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents: 14038
diff changeset
   360
                    0: AddVoice(sndRegret, vpHurtEnemy, false, true);
006f97a6f6a7 Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents: 14038
diff changeset
   361
                    1: AddVoice(sndGonnaGetYou, vpHurtEnemy, false, true);
006f97a6f6a7 Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents: 14038
diff changeset
   362
                    2: AddVoice(sndIllGetYou, vpHurtEnemy, false, true);
006f97a6f6a7 Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents: 14038
diff changeset
   363
                    3: AddVoice(sndJustYouWait, vpHurtEnemy, false, true);
006f97a6f6a7 Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents: 14038
diff changeset
   364
                    end;
14037
bf8b7c166b3c Play another voice as fallback if sndRevenge could not be found
Wuzzy <Wuzzy2@mail.ru>
parents: 14035
diff changeset
   365
                end
14014
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 14012
diff changeset
   366
            else
14035
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   367
                if LeaveMeAlone then
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   368
                    if random(2) = 0 then
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   369
                        AddVoice(sndCutItOut, vpHurtEnemy)
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   370
                    else
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   371
                        AddVoice(sndLeaveMeAlone, vpHurtEnemy)
14034
f9281c294a4c Add revenge taunt
Wuzzy <Wuzzy2@mail.ru>
parents: 14023
diff changeset
   372
                else
14042
006f97a6f6a7 Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents: 14038
diff changeset
   373
                    case random(4) of
006f97a6f6a7 Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents: 14038
diff changeset
   374
                        0: AddVoice(sndRegret, vpHurtEnemy);
006f97a6f6a7 Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents: 14038
diff changeset
   375
                        1: AddVoice(sndGonnaGetYou, vpHurtEnemy);
006f97a6f6a7 Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents: 14038
diff changeset
   376
                        2: AddVoice(sndIllGetYou, vpHurtEnemy);
006f97a6f6a7 Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents: 14038
diff changeset
   377
                        3: AddVoice(sndJustYouWait, vpHurtEnemy);
006f97a6f6a7 Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents: 14038
diff changeset
   378
                    end
1625
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1070
diff changeset
   379
12157
e837912ba85d Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents: 12095
diff changeset
   380
    // Missed shot
12568
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
   381
    // A miss is defined as a shot with a damaging weapon with 0 kills, 0 damage, 0 hogs poisoned and 0 targets hit
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
   382
    else if AmmoDamagingUsed and (Kills <= killsCheck) and (PoisonTurn = 0) and (PoisonClan = 0) and (DamageTurn = 0) and (HitTargets = 0) then
14023
bbecf663d599 Chance to play sndNutter if player sacrifices hog and misses
Wuzzy <Wuzzy2@mail.ru>
parents: 14020
diff changeset
   383
        // Chance to call hedgehog stupid or nutter if sacrificed for nothing
12292
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   384
        if CurrentHedgehog^.stats.Sacrificed then
14023
bbecf663d599 Chance to play sndNutter if player sacrifices hog and misses
Wuzzy <Wuzzy2@mail.ru>
parents: 14020
diff changeset
   385
            case random(3) of
bbecf663d599 Chance to play sndNutter if player sacrifices hog and misses
Wuzzy <Wuzzy2@mail.ru>
parents: 14020
diff changeset
   386
            0: AddVoice(sndMissed, PreviousTeam^.voicepack);
bbecf663d599 Chance to play sndNutter if player sacrifices hog and misses
Wuzzy <Wuzzy2@mail.ru>
parents: 14020
diff changeset
   387
            1: AddVoice(sndStupid, PreviousTeam^.voicepack);
bbecf663d599 Chance to play sndNutter if player sacrifices hog and misses
Wuzzy <Wuzzy2@mail.ru>
parents: 14020
diff changeset
   388
            2: AddVoice(sndNutter, PreviousTeam^.voicepack);
bbecf663d599 Chance to play sndNutter if player sacrifices hog and misses
Wuzzy <Wuzzy2@mail.ru>
parents: 14020
diff changeset
   389
            end
12292
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   390
        else
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   391
            AddVoice(sndMissed, PreviousTeam^.voicepack)
12157
e837912ba85d Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents: 12095
diff changeset
   392
e837912ba85d Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents: 12095
diff changeset
   393
    // Timeout
6290
c6245ed6cbc0 Some improvements to the parser
unc0rr
parents: 6014
diff changeset
   394
    else if (AmmoUsedCount > 0) and (not isTurnSkipped) then
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6290
diff changeset
   395
        begin end// nothing ?
12157
e837912ba85d Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents: 12095
diff changeset
   396
e837912ba85d Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents: 12095
diff changeset
   397
    // Turn skipped
15220
ceb289e8a582 King Mode: Fix king placement phase not working correctly with multiple teams in a clan
Wuzzy <Wuzzy2@mail.ru>
parents: 14963
diff changeset
   398
    else if isTurnSkipped and (not PlacingHogs) and (not PlacingKings) then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   399
        begin
11914
c9bad8a01185 Play countdown sounds for 4-1 remaining seconds and “boring” voice on timeout
Wuzzy <almikes@aol.com>
parents: 11569
diff changeset
   400
        AddVoice(sndCoward, PreviousTeam^.voicepack);
13642
3d14950641a4 Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents: 12918
diff changeset
   401
        AddCaption(FormatA(GetEventString(eidTurnSkipped), s), capcolDefault, capgrpMessage);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   402
        end
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   403
    end;
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   404
end;
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   405
13761
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   406
procedure TurnStatsReset;
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   407
var t, i: LongInt;
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   408
begin
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   409
for t:= 0 to Pred(TeamsCount) do // send even on zero turn
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   410
    with TeamsArray[t]^ do
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   411
        for i:= 0 to cMaxHHIndex do
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   412
            with Hedgehogs[i].stats do
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   413
                begin
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   414
                StepKills:= 0;
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   415
                StepDamageRecv:= 0;
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   416
                StepDamageGiven:= 0;
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   417
                StepPoisoned:= false;
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   418
                StepDied:= false;
14034
f9281c294a4c Add revenge taunt
Wuzzy <Wuzzy2@mail.ru>
parents: 14023
diff changeset
   419
                GotRevenge:= false;
14885
0ec83cc2365e Don't play "LeaveMeAlone" taunt if attacker hits same hog multiple times in same turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14617
diff changeset
   420
                StepRevenge:= false;
13761
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   421
                end;
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   422
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   423
Kills:= 0;
14596
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   424
KillsSD:= 0;
13761
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   425
KillsClan:= 0;
14038
1ac129df8e5b Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
   426
KillsTeam:= 0;
13761
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   427
DamageClan:= 0;
14038
1ac129df8e5b Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
   428
DamageTeam:= 0;
13761
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   429
DamageTurn:= 0;
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   430
HitTargets:= 0;
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   431
PoisonClan:= 0;
14038
1ac129df8e5b Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
   432
PoisonTeam:= 0;
13761
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   433
PoisonTurn:= 0;
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   434
AmmoUsedCount:= 0;
14035
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   435
LeaveMeAlone:= false;
13761
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   436
AmmoDamagingUsed:= false;
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   437
isTurnSkipped:= false;
14886
3054b85963ef Play sndFirstBlood after first damage/kill/poisoning of enemy (instead of ANY damage)
Wuzzy <Wuzzy2@mail.ru>
parents: 14885
diff changeset
   438
StepFirstBlood:= false;
13761
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   439
end;
6fd56a26e8b8 Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   440
829
1209eb768acf Use 'first blood' sound
unc0rr
parents: 815
diff changeset
   441
procedure AmmoUsed(am: TAmmoType);
1209eb768acf Use 'first blood' sound
unc0rr
parents: 815
diff changeset
   442
begin
830
f07267032194 - Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents: 829
diff changeset
   443
inc(AmmoUsedCount);
f07267032194 - Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents: 829
diff changeset
   444
AmmoDamagingUsed:= AmmoDamagingUsed or Ammoz[am].isDamaging
829
1209eb768acf Use 'first blood' sound
unc0rr
parents: 815
diff changeset
   445
end;
1209eb768acf Use 'first blood' sound
unc0rr
parents: 815
diff changeset
   446
6014
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   447
procedure hedgehogFlight(Gear: PGear; time: Longword);
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   448
begin
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   449
if time > 4000 then
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   450
    begin
7932
ebe1d112e439 remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents: 7857
diff changeset
   451
    WriteLnToConsole('FLIGHT');
ebe1d112e439 remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents: 7857
diff changeset
   452
    WriteLnToConsole(Gear^.Hedgehog^.Team^.TeamName);
ebe1d112e439 remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents: 7857
diff changeset
   453
    WriteLnToConsole(inttostr(time));
ebe1d112e439 remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents: 7857
diff changeset
   454
    WriteLnToConsole( '');
6014
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   455
    end
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   456
end;
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   457
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   458
procedure SendStats;
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   459
var i, t, c: LongInt;
869
daddcd31ef34 - New statistics
unc0rr
parents: 867
diff changeset
   460
    msd, msk: Longword; msdhh, mskhh: PHedgehog;
daddcd31ef34 - New statistics
unc0rr
parents: 867
diff changeset
   461
    mskcnt: Longword;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   462
    maxTeamKills : Longword;
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   463
    maxTeamKillsName : shortstring;
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   464
    maxTurnSkips : Longword;
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   465
    maxTurnSkipsName : shortstring;
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   466
    maxTeamDamage : Longword;
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   467
    maxTeamDamageName : shortstring;
5142
cb822f8d52ff Show winners in console in a special form so this information could be easily parsed
unc0rr
parents: 4976
diff changeset
   468
    winnersClan : PClan;
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   469
    deathEntry : PClanDeathLogEntry;
13757
f0cb47f0bfaf Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents: 13756
diff changeset
   470
    currentRank: Longword;
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   471
begin
9180
d19c09670ec8 changed variable and function name
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9174
diff changeset
   472
if SendHealthStatsOn then
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   473
    msd:= 0; msdhh:= nil;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   474
    msk:= 0; mskhh:= nil;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   475
    mskcnt:= 0;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   476
    maxTeamKills := 0;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   477
    maxTurnSkips := 0;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   478
    maxTeamDamage := 0;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   479
    winnersClan:= nil;
13757
f0cb47f0bfaf Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents: 13756
diff changeset
   480
    currentRank:= 0;
869
daddcd31ef34 - New statistics
unc0rr
parents: 867
diff changeset
   481
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   482
    for t:= 0 to Pred(TeamsCount) do
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   483
        with TeamsArray[t]^ do
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   484
        begin
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   485
            if (not ExtDriven) and SendRankingStatsOn then
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   486
                SendStat(siTeamStats, GetTeamStatString(TeamsArray[t]));
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   487
            for i:= 0 to cMaxHHIndex do
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   488
                begin
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   489
                if Hedgehogs[i].stats.MaxStepDamageGiven > msd then
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   490
                    begin
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   491
                    msdhh:= @Hedgehogs[i];
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   492
                    msd:= Hedgehogs[i].stats.MaxStepDamageGiven
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   493
                    end;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   494
                if Hedgehogs[i].stats.MaxStepKills >= msk then
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   495
                    if Hedgehogs[i].stats.MaxStepKills = msk then
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   496
                        inc(mskcnt)
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   497
                    else
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   498
                        begin
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   499
                        mskcnt:= 1;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   500
                        mskhh:= @Hedgehogs[i];
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   501
                        msk:= Hedgehogs[i].stats.MaxStepKills
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   502
                        end;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   503
            end;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   504
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   505
            { Send player stats for winner clans/teams.
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   506
            The clan that survived is ranked 1st. }
14617
244699a97734 Make passive teams no longer mess with game stats
Wuzzy <Wuzzy2@mail.ru>
parents: 14611
diff changeset
   507
            if (Clan^.ClanHealth > 0) then
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   508
                begin
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   509
                winnersClan:= Clan;
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   510
                if SendRankingStatsOn then
13757
f0cb47f0bfaf Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents: 13756
diff changeset
   511
                    begin
f0cb47f0bfaf Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents: 13756
diff changeset
   512
                    currentRank:= 1;
13878
0ce8aad17c24 IFDEF out missing function with FIXME, revert pas2c change in 0ecf77e203c0 as suggested by unc0rr, another string annotation
nemo
parents: 13765
diff changeset
   513
                    SendStat(siTeamRank, _S'1');
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   514
                    SendStat(siPlayerKills, IntToStr(Clan^.Color) + ' ' +
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   515
                        IntToStr(stats.Kills) + ' ' + TeamName);
13757
f0cb47f0bfaf Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents: 13756
diff changeset
   516
                    end;
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   517
            end;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   518
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   519
            { determine maximum values of TeamKills, TurnSkips, TeamDamage }
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   520
            if stats.TeamKills > maxTeamKills then
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   521
                begin
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   522
                maxTeamKills := stats.TeamKills;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   523
                maxTeamKillsName := TeamName;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   524
            end;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   525
            if stats.TurnSkips > maxTurnSkips then
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   526
                begin
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   527
                maxTurnSkips := stats.TurnSkips;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   528
                maxTurnSkipsName := TeamName;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   529
            end;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   530
            if stats.TeamDamage > maxTeamDamage then
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   531
                begin
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   532
                maxTeamDamage := stats.TeamDamage;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   533
                maxTeamDamageName := TeamName;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   534
            end;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   535
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   536
        end;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   537
13757
f0cb47f0bfaf Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents: 13756
diff changeset
   538
    inc(currentRank);
f0cb47f0bfaf Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents: 13756
diff changeset
   539
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   540
    { Now send player stats for loser teams/clans.
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   541
    The losing clans are ranked in the reverse order they died.
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   542
    The clan that died last is ranked 2nd,
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   543
    the clan that died second to last is ranked 3rd,
13758
b1177e9c9ee9 Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents: 13757
diff changeset
   544
    and so on.
b1177e9c9ee9 Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents: 13757
diff changeset
   545
    Clans that died in the same turn share their rank.
b1177e9c9ee9 Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents: 13757
diff changeset
   546
    If a clan died multiple times in the match
b1177e9c9ee9 Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents: 13757
diff changeset
   547
    (e.g. due to resurrection), only the *latest* death of
b1177e9c9ee9 Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents: 13757
diff changeset
   548
    that clan counts (handled in gtResurrector).
b1177e9c9ee9 Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents: 13757
diff changeset
   549
    }
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   550
    deathEntry := ClanDeathLog;
13757
f0cb47f0bfaf Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents: 13756
diff changeset
   551
    i:= 0;
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   552
    if SendRankingStatsOn then
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   553
        while (deathEntry <> nil) do
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   554
            begin
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   555
            for c:= 0 to Pred(deathEntry^.KilledClansCount) do
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   556
                if ((deathEntry^.KilledClans[c]^.ClanHealth) = 0) and (not deathEntry^.KilledClans[c]^.StatsHandled) then
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   557
                    begin
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   558
                    for t:= 0 to Pred(TeamsCount) do
14617
244699a97734 Make passive teams no longer mess with game stats
Wuzzy <Wuzzy2@mail.ru>
parents: 14611
diff changeset
   559
                        if (TeamsArray[t]^.Clan^.ClanIndex = deathEntry^.KilledClans[c]^.ClanIndex) then
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   560
                            begin
13757
f0cb47f0bfaf Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents: 13756
diff changeset
   561
                            SendStat(siTeamRank, IntToStr(currentRank));
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   562
                            SendStat(siPlayerKills, IntToStr(deathEntry^.killedClans[c]^.Color) + ' ' +
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   563
                                IntToStr(TeamsArray[t]^.stats.Kills) + ' ' + TeamsArray[t]^.TeamName);
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   564
                            end;
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   565
                    deathEntry^.KilledClans[c]^.StatsHandled:= true;
13765
3d2a7c563d8e Fix clan ranking counter advancing per-team instaed of per-clan in case of a tie
Wuzzy <Wuzzy2@mail.ru>
parents: 13761
diff changeset
   566
                    inc(i);
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   567
                    end;
13757
f0cb47f0bfaf Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents: 13756
diff changeset
   568
            if i > 0 then
f0cb47f0bfaf Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents: 13756
diff changeset
   569
                inc(currentRank, i);
f0cb47f0bfaf Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents: 13756
diff changeset
   570
            i:= 0;
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   571
            deathEntry:= deathEntry^.NextEntry;
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   572
            end;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   573
14366
2ab312c47dc3 make pas2c function without haskell aborting if locale is C
nemo
parents: 14042
diff changeset
   574
    // "Achievements" / Details part of stats screen
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   575
    if SendAchievementsStatsOn then
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   576
        begin
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   577
        if msdhh <> nil then
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   578
            SendStat(siMaxStepDamage, IntToStr(msd) + ' ' + msdhh^.Name + ' (' + msdhh^.Team^.TeamName + ')');
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   579
        if mskcnt = 1 then
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   580
            SendStat(siMaxStepKills, IntToStr(msk) + ' ' + mskhh^.Name + ' (' + mskhh^.Team^.TeamName + ')');
869
daddcd31ef34 - New statistics
unc0rr
parents: 867
diff changeset
   581
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   582
        if maxTeamKills > 1 then
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   583
            SendStat(siMaxTeamKills, IntToStr(maxTeamKills) + ' ' + maxTeamKillsName);
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   584
        if maxTurnSkips > 2 then
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   585
            SendStat(siMaxTurnSkips, IntToStr(maxTurnSkips) + ' ' + maxTurnSkipsName);
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   586
        if maxTeamDamage > 30 then
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   587
            SendStat(siMaxTeamDamage, IntToStr(maxTeamDamage) + ' ' + maxTeamDamageName);
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   588
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   589
        if KilledHHs > 0 then
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   590
            SendStat(siKilledHHs, IntToStr(KilledHHs));
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   591
        end;
5142
cb822f8d52ff Show winners in console in a special form so this information could be easily parsed
unc0rr
parents: 4976
diff changeset
   592
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   593
    // now to console
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9521
diff changeset
   594
    if winnersClan <> nil then
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   595
        begin
14465
ca851d0957cf Add Lua callback: onGameResult
Wuzzy <Wuzzy2@mail.ru>
parents: 14404
diff changeset
   596
        ScriptCall('onGameResult', winnersClan^.ClanIndex);
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   597
        WriteLnToConsole('WINNERS');
9397
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9180
diff changeset
   598
        WriteLnToConsole(inttostr(winnersClan^.TeamsNumber));
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   599
        for t:= 0 to winnersClan^.TeamsNumber - 1 do
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   600
            WriteLnToConsole(winnersClan^.Teams[t]^.TeamName);
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   601
        end
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   602
    else
14465
ca851d0957cf Add Lua callback: onGameResult
Wuzzy <Wuzzy2@mail.ru>
parents: 14404
diff changeset
   603
        begin
ca851d0957cf Add Lua callback: onGameResult
Wuzzy <Wuzzy2@mail.ru>
parents: 14404
diff changeset
   604
        ScriptCall('onGameResult', -1);
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   605
        WriteLnToConsole('DRAW');
14465
ca851d0957cf Add Lua callback: onGameResult
Wuzzy <Wuzzy2@mail.ru>
parents: 14404
diff changeset
   606
        end;
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9521
diff changeset
   607
9397
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9180
diff changeset
   608
    ScriptCall('onAchievementsDeclaration');
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9180
diff changeset
   609
end;
6014
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   610
9409
6564baf7dedf Store TrophyRace records in database
unc0rr
parents: 9405
diff changeset
   611
procedure declareAchievement(id, teamname, location: shortstring; value: LongInt);
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9521
diff changeset
   612
begin
9411
d95ac9992529 Fix script flaw in detection of best team when sending achievement info
unc0rr
parents: 9409
diff changeset
   613
if (length(id) = 0) or (length(teamname) = 0) or (length(location) = 0) then exit;
9397
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9180
diff changeset
   614
    WriteLnToConsole('ACHIEVEMENT');
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9180
diff changeset
   615
    WriteLnToConsole(id);
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9180
diff changeset
   616
    WriteLnToConsole(teamname);
9409
6564baf7dedf Store TrophyRace records in database
unc0rr
parents: 9405
diff changeset
   617
    WriteLnToConsole(location);
9397
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9180
diff changeset
   618
    WriteLnToConsole(inttostr(value));
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   619
end;
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   620
11569
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   621
procedure startGhostPoints(n: LongInt);
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   622
begin
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   623
    WriteLnToConsole('GHOST_POINTS');
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   624
    WriteLnToConsole(inttostr(n));
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   625
end;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   626
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   627
procedure dumpPoint(x, y: LongInt);
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   628
begin
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   629
    WriteLnToConsole(inttostr(x));
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   630
    WriteLnToConsole(inttostr(y));
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   631
end;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   632
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   633
procedure initModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
   634
begin
11569
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   635
    DamageClan  := 0;
14038
1ac129df8e5b Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
   636
    DamageTeam  := 0;
11569
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   637
    DamageTotal := 0;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   638
    DamageTurn  := 0;
12176
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
   639
    PoisonClan  := 0;
14038
1ac129df8e5b Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
   640
    PoisonTeam  := 0;
12176
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
   641
    PoisonTurn  := 0;
11569
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   642
    KillsClan   := 0;
14038
1ac129df8e5b Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
   643
    KillsTeam   := 0;
14596
1c7439c50f4d Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents: 14595
diff changeset
   644
    KillsSD     := 0;
11569
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   645
    Kills       := 0;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   646
    KillsTotal  := 0;
12568
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
   647
    HitTargets  := 0;
11569
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   648
    AmmoUsedCount := 0;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   649
    AmmoDamagingUsed := false;
14404
9561bf634b21 Fix "first blood" taunt being repeated if same hog got hurt again
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   650
    FirstBlood:= false;
14886
3054b85963ef Play sndFirstBlood after first damage/kill/poisoning of enemy (instead of ANY damage)
Wuzzy <Wuzzy2@mail.ru>
parents: 14885
diff changeset
   651
    StepFirstblood:= false;
14035
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   652
    LeaveMeAlone := false;
11569
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   653
    SkippedTurns:= 0;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   654
    isTurnSkipped:= false;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   655
    vpHurtSameClan:= nil;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   656
    vpHurtEnemy:= nil;
13651
56a925256039 Add separate TotalRounds var for Lua to count the *actual* number of rounds that have been played
Wuzzy <Wuzzy2@mail.ru>
parents: 13642
diff changeset
   657
    TotalRoundsPre:= -1;
56a925256039 Add separate TotalRounds var for Lua to count the *actual* number of rounds that have been played
Wuzzy <Wuzzy2@mail.ru>
parents: 13642
diff changeset
   658
    TotalRoundsReal:= -1;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   659
    FinishedTurnsTotal:= -1;
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13755
diff changeset
   660
    ClanDeathLog:= nil;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
   661
end;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3381
diff changeset
   662
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   663
procedure freeModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
   664
begin
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
   665
end;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
   666
2619
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2143
diff changeset
   667
end.