hedgewars/uStats.pas
author Wuzzy <Wuzzy2@mail.ru>
Fri, 27 Oct 2017 05:03:58 +0200
changeset 12782 389453e1e09e
parent 12568 494d3e1c4810
child 12918 6deb29364723
permissions -rw-r--r--
ACF7: Fix possible Lua error spam in intro sequence This was caused by a race of onGearDelete vs AnimationSetup. If AnimationSetup came first, it uses old values from the natives table. The solution is to force the code to guarantee that AnimationSetup always coms after deleting gears in the natives table.
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
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
    25
var TotalRounds: LongInt;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
    26
    FinishedTurnsTotal: LongInt;
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
    27
    SendGameResultOn : boolean = true;
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
    28
    SendRankingStatsOn : boolean = true;
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
    29
    SendAchievementsStatsOn : boolean = true;
9180
d19c09670ec8 changed variable and function name
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9174
diff changeset
    30
    SendHealthStatsOn : boolean = true;
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9521
diff changeset
    31
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
    32
procedure initModule;
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
    33
procedure freeModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
    34
829
1209eb768acf Use 'first blood' sound
unc0rr
parents: 815
diff changeset
    35
procedure AmmoUsed(am: TAmmoType);
12176
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    36
procedure HedgehogPoisoned(Gear: PGear; Attacker: PHedgehog);
12292
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
    37
procedure HedgehogSacrificed(Hedgehog: PHedgehog);
5202
45a16280d68d Some improvements on stats subsystem
unc0rr
parents: 5142
diff changeset
    38
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
    39
procedure TargetHit;
871
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
    40
procedure Skipped;
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    41
procedure TurnReaction;
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    42
procedure SendStats;
6014
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
    43
procedure hedgehogFlight(Gear: PGear; time: Longword);
9409
6564baf7dedf Store TrophyRace records in database
unc0rr
parents: 9405
diff changeset
    44
procedure declareAchievement(id, teamname, location: shortstring; value: LongInt);
11569
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
    45
procedure startGhostPoints(n: LongInt);
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
    46
procedure dumpPoint(x, y: LongInt);
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    47
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    48
implementation
11532
bf86c6cb9341 Bye-bye TryDo
unc0rr
parents: 11046
diff changeset
    49
uses uSound, uLocale, uVariables, uUtils, uIO, uCaptions, uMisc, uConsole, uScript;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents: 4357
diff changeset
    50
5203
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
    51
var DamageClan  : Longword = 0;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    52
    DamageTotal : Longword = 0;
8717
6e1ccd678e8a this should ensure those other voices play a bit more often.
nemo
parents: 7932
diff changeset
    53
    DamageTurn  : Longword = 0;
12176
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    54
    PoisonTurn  : Longword = 0; // Poisoned enemies per turn
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    55
    PoisonClan  : Longword = 0; // Poisoned own clan members in turn
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    56
    PoisonTotal : Longword = 0; // Poisoned hogs in whole round
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    57
    KillsClan   : LongWord = 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    58
    Kills       : LongWord = 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    59
    KillsTotal  : LongWord = 0;
12568
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
    60
    HitTargets  : LongWord = 0; // Target (gtTarget) hits per turn
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    61
    AmmoUsedCount : Longword = 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    62
    AmmoDamagingUsed : boolean = false;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    63
    SkippedTurns: LongWord = 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    64
    isTurnSkipped: boolean = false;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    65
    vpHurtSameClan: PVoicepack = nil;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    66
    vpHurtEnemy: PVoicepack = nil;
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    67
12176
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    68
procedure HedgehogPoisoned(Gear: PGear; Attacker: PHedgehog);
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    69
begin
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    70
    if Attacker^.Team^.Clan = Gear^.HEdgehog^.Team^.Clan then
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    71
        begin
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    72
        vpHurtSameClan:= CurrentHedgehog^.Team^.voicepack;
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    73
        inc(PoisonClan)
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    74
        end
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    75
    else
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    76
        begin
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    77
        vpHurtEnemy:= Gear^.Hedgehog^.Team^.voicepack;
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    78
        inc(PoisonTurn)
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    79
        end;
12290
4ce7cb441c75 Call hedgehogs stupid for poisoning themselves
Wuzzy <almikes@aol.com>
parents: 12176
diff changeset
    80
    Gear^.Hedgehog^.stats.StepPoisoned:= true;
12176
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    81
    inc(PoisonTotal)
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    82
end;
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
    83
12292
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
    84
procedure HedgehogSacrificed(Hedgehog: PHedgehog);
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
    85
begin
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
    86
    Hedgehog^.stats.Sacrificed:= true
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
    87
end;
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
    88
5202
45a16280d68d Some improvements on stats subsystem
unc0rr
parents: 5142
diff changeset
    89
procedure HedgehogDamaged(Gear: PGear; Attacker: PHedgehog; Damage: Longword; killed: boolean);
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    90
begin
4837
2ea0a152c319 Pass PHedgehog instead of PGear to stats. Fixes crash.
unc0rr
parents: 4824
diff changeset
    91
if Attacker^.Team^.Clan = Gear^.Hedgehog^.Team^.Clan then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    92
    vpHurtSameClan:= CurrentHedgehog^.Team^.voicepack
1678
c8deca7b1e3c Fix voicepacks
unc0rr
parents: 1669
diff changeset
    93
else
4365
4f2b1a152979 Remove ugly PHedgehog(Gear^.Hedgehog) cast
unc0rr
parents: 4361
diff changeset
    94
    vpHurtEnemy:= Gear^.Hedgehog^.Team^.voicepack;
1678
c8deca7b1e3c Fix voicepacks
unc0rr
parents: 1669
diff changeset
    95
c8deca7b1e3c Fix voicepacks
unc0rr
parents: 1669
diff changeset
    96
//////////////////////////
c8deca7b1e3c Fix voicepacks
unc0rr
parents: 1669
diff changeset
    97
5203
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
    98
inc(Attacker^.stats.StepDamageGiven, Damage);
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
    99
inc(Attacker^.stats.DamageGiven, Damage);
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
   100
inc(Gear^.Hedgehog^.stats.StepDamageRecv, Damage);
815
82ff416301bd Use sounds 'stupid' and 'missed'
unc0rr
parents: 814
diff changeset
   101
5202
45a16280d68d Some improvements on stats subsystem
unc0rr
parents: 5142
diff changeset
   102
if CurrentHedgehog^.Team^.Clan = Gear^.Hedgehog^.Team^.Clan then inc(DamageClan, Damage);
815
82ff416301bd Use sounds 'stupid' and 'missed'
unc0rr
parents: 814
diff changeset
   103
5202
45a16280d68d Some improvements on stats subsystem
unc0rr
parents: 5142
diff changeset
   104
if killed then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   105
    begin
12343
6ff01dc1ffe2 Fix Traitor taunt being played when hog w/ heResurrectable drowns w/o damage
Wuzzy <almikes@aol.com>
parents: 12332
diff changeset
   106
    Gear^.Hedgehog^.stats.StepDied:= true;
5142
cb822f8d52ff Show winners in console in a special form so this information could be easily parsed
unc0rr
parents: 4976
diff changeset
   107
    inc(Attacker^.stats.StepKills);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   108
    inc(Kills);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   109
    inc(KillsTotal);
5142
cb822f8d52ff Show winners in console in a special form so this information could be easily parsed
unc0rr
parents: 4976
diff changeset
   110
    inc(Attacker^.Team^.stats.Kills);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   111
    if (Attacker^.Team^.TeamName = Gear^.Hedgehog^.Team^.TeamName) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   112
        begin
5142
cb822f8d52ff Show winners in console in a special form so this information could be easily parsed
unc0rr
parents: 4976
diff changeset
   113
        inc(Attacker^.Team^.stats.TeamKills);
cb822f8d52ff Show winners in console in a special form so this information could be easily parsed
unc0rr
parents: 4976
diff changeset
   114
        inc(Attacker^.Team^.stats.TeamDamage, Gear^.Damage);
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   115
    end;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   116
    if Gear = Attacker^.Gear then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   117
        inc(Attacker^.Team^.stats.Suicides);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   118
    if Attacker^.Team^.Clan = Gear^.Hedgehog^.Team^.Clan then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   119
        inc(KillsClan);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   120
    end;
815
82ff416301bd Use sounds 'stupid' and 'missed'
unc0rr
parents: 814
diff changeset
   121
8717
6e1ccd678e8a this should ensure those other voices play a bit more often.
nemo
parents: 7932
diff changeset
   122
inc(DamageTotal, Damage);
6e1ccd678e8a this should ensure those other voices play a bit more often.
nemo
parents: 7932
diff changeset
   123
inc(DamageTurn, Damage)
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   124
end;
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   125
12568
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
   126
procedure TargetHit();
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
   127
begin
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
   128
   inc(HitTargets)
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
   129
end;
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
   130
871
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
   131
procedure Skipped;
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
   132
begin
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
   133
inc(SkippedTurns);
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
   134
isTurnSkipped:= true
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
   135
end;
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
   136
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   137
procedure TurnReaction;
874
964c0d5b3604 - Fix warning
unc0rr
parents: 873
diff changeset
   138
var i, t: LongInt;
12292
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   139
    killsCheck: LongInt;
10127
7f29a65aa1e4 It compiles \o/
unc0rr
parents: 10116
diff changeset
   140
    s: ansistring;
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   141
begin
11532
bf86c6cb9341 Bye-bye TryDo
unc0rr
parents: 11046
diff changeset
   142
//TryDo(not bBetweenTurns, 'Engine bug: TurnReaction between turns', true);
1054
80225c6af656 - Prepare for sudden death implementation
unc0rr
parents: 874
diff changeset
   143
870
dd418d9c18c5 Use more sounds
unc0rr
parents: 869
diff changeset
   144
inc(FinishedTurnsTotal);
1625
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1070
diff changeset
   145
if FinishedTurnsTotal <> 0 then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   146
    begin
10127
7f29a65aa1e4 It compiles \o/
unc0rr
parents: 10116
diff changeset
   147
    s:= ansistring(CurrentHedgehog^.Name);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   148
    inc(CurrentHedgehog^.stats.FinishedTurns);
12292
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   149
    // If the hog sacrificed (=kamikaze/piano) itself, this needs to be taken into accounts for the reactions later
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   150
    if (CurrentHedgehog^.stats.Sacrificed) then
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   151
        killsCheck:= 1
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   152
    else
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   153
        killsCheck:= 0;
870
dd418d9c18c5 Use more sounds
unc0rr
parents: 869
diff changeset
   154
12176
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
   155
    // First blood (first damage, poison or kill)
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
   156
    if ((DamageTotal > 0) or (KillsTotal > 0) or (PoisonTotal > 0)) and ((CurrentHedgehog^.stats.DamageGiven = DamageTotal) and (CurrentHedgehog^.stats.StepKills = KillsTotal) and (PoisonTotal = PoisonTurn + PoisonClan)) then
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   157
        AddVoice(sndFirstBlood, CurrentTeam^.voicepack)
815
82ff416301bd Use sounds 'stupid' and 'missed'
unc0rr
parents: 814
diff changeset
   158
12292
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   159
    // 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
   160
    else if (CurrentHedgehog^.stats.Sacrificed = false) and ((CurrentHedgehog^.stats.StepDamageRecv > 0) or (CurrentHedgehog^.stats.StepPoisoned) or (CurrentHedgehog^.stats.StepDied)) then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   161
        begin
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   162
        AddVoice(sndStupid, PreviousTeam^.voicepack);
12291
e2b30aba00e1 Call hog stupid for selfkilling
Wuzzy <almikes@aol.com>
parents: 12290
diff changeset
   163
        // Message for hurting itself only (not drowning)
e2b30aba00e1 Call hog stupid for selfkilling
Wuzzy <almikes@aol.com>
parents: 12290
diff changeset
   164
        if (CurrentHedgehog^.stats.DamageGiven = CurrentHedgehog^.stats.StepDamageRecv) and (CurrentHedgehog^.stats.StepDamageRecv >= 1) then
10127
7f29a65aa1e4 It compiles \o/
unc0rr
parents: 10116
diff changeset
   165
            AddCaption(FormatA(GetEventString(eidHurtSelf), s), cWhiteColor, capgrpMessage);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   166
        end
5203
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
   167
12292
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   168
    // 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
   169
    else if (DamageClan <> 0) or (KillsClan > killsCheck) or (PoisonClan <> 0) then
12157
e837912ba85d Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents: 12095
diff changeset
   170
        if (DamageTurn > DamageClan) or (Kills > KillsClan) then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   171
            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
   172
                AddVoice(sndNutter, CurrentTeam^.voicepack)
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   173
            else
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   174
                AddVoice(sndWatchIt, vpHurtSameClan)
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   175
        else
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   176
            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
   177
                AddVoice(sndSameTeam, vpHurtSameClan)
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   178
            else
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   179
                AddVoice(sndTraitor, vpHurtSameClan)
5203
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
   180
12176
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
   181
    // Hog hurts, kills or poisons enemy
12292
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   182
    else if (CurrentHedgehog^.stats.StepDamageGiven <> 0) or (CurrentHedgehog^.stats.StepKills > killsCheck) or (PoisonTurn <> 0) then
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   183
        if Kills > killsCheck then
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   184
            AddVoice(sndEnemyDown, CurrentTeam^.voicepack)
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   185
        else
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   186
            AddVoice(sndRegret, vpHurtEnemy)
1625
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1070
diff changeset
   187
12157
e837912ba85d Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents: 12095
diff changeset
   188
    // Missed shot
12568
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
   189
    // 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
   190
    else if AmmoDamagingUsed and (Kills <= killsCheck) and (PoisonTurn = 0) and (PoisonClan = 0) and (DamageTurn = 0) and (HitTargets = 0) then
12292
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   191
        // Chance to call hedgehog stupid if sacrificed for nothing
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   192
        if CurrentHedgehog^.stats.Sacrificed then
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   193
            if random(2) = 0 then
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   194
                AddVoice(sndMissed, PreviousTeam^.voicepack)
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   195
            else
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   196
                AddVoice(sndStupid, PreviousTeam^.voicepack)
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   197
        else
93434ab299a0 Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents: 12291
diff changeset
   198
            AddVoice(sndMissed, PreviousTeam^.voicepack)
12157
e837912ba85d Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents: 12095
diff changeset
   199
e837912ba85d Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents: 12095
diff changeset
   200
    // Timeout
6290
c6245ed6cbc0 Some improvements to the parser
unc0rr
parents: 6014
diff changeset
   201
    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
   202
        begin end// nothing ?
12157
e837912ba85d Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents: 12095
diff changeset
   203
e837912ba85d Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents: 12095
diff changeset
   204
    // Turn skipped
12095
e1bca1ebbad9 fix problem with pas2c build. please don't use "and not xyz", use "and (not xyz)"
sheepluva
parents: 11914
diff changeset
   205
    else if isTurnSkipped and (not PlacingHogs) then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   206
        begin
11914
c9bad8a01185 Play countdown sounds for 4-1 remaining seconds and “boring” voice on timeout
Wuzzy <almikes@aol.com>
parents: 11569
diff changeset
   207
        AddVoice(sndCoward, PreviousTeam^.voicepack);
10127
7f29a65aa1e4 It compiles \o/
unc0rr
parents: 10116
diff changeset
   208
        AddCaption(FormatA(GetEventString(eidTurnSkipped), s), cWhiteColor, capgrpMessage);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   209
        end
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   210
    end;
870
dd418d9c18c5 Use more sounds
unc0rr
parents: 869
diff changeset
   211
815
82ff416301bd Use sounds 'stupid' and 'missed'
unc0rr
parents: 814
diff changeset
   212
1625
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1070
diff changeset
   213
for t:= 0 to Pred(TeamsCount) do // send even on zero turn
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   214
    with TeamsArray[t]^ do
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   215
        for i:= 0 to cMaxHHIndex do
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   216
            with Hedgehogs[i].stats do
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   217
                begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   218
                inc(DamageRecv, StepDamageRecv);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   219
                inc(DamageGiven, StepDamageGiven);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   220
                if StepDamageRecv > MaxStepDamageRecv then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   221
                    MaxStepDamageRecv:= StepDamageRecv;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   222
                if StepDamageGiven > MaxStepDamageGiven then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   223
                    MaxStepDamageGiven:= StepDamageGiven;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   224
                if StepKills > MaxStepKills then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   225
                    MaxStepKills:= StepKills;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   226
                StepKills:= 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   227
                StepDamageRecv:= 0;
12290
4ce7cb441c75 Call hedgehogs stupid for poisoning themselves
Wuzzy <almikes@aol.com>
parents: 12176
diff changeset
   228
                StepDamageGiven:= 0;
4ce7cb441c75 Call hedgehogs stupid for poisoning themselves
Wuzzy <almikes@aol.com>
parents: 12176
diff changeset
   229
                StepPoisoned:= false;
12343
6ff01dc1ffe2 Fix Traitor taunt being played when hog w/ heResurrectable drowns w/o damage
Wuzzy <almikes@aol.com>
parents: 12332
diff changeset
   230
                StepDied:= false;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   231
                end;
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9521
diff changeset
   232
9180
d19c09670ec8 changed variable and function name
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9174
diff changeset
   233
if SendHealthStatsOn then
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   234
    for t:= 0 to Pred(ClansCount) do
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   235
        with ClansArray[t]^ do
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   236
            begin
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   237
            SendStat(siClanHealth, IntToStr(Color) + ' ' + IntToStr(ClanHealth));
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   238
            end;
1625
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1070
diff changeset
   239
867
dc7901b1120e - Use more sounds
unc0rr
parents: 866
diff changeset
   240
Kills:= 0;
dc7901b1120e - Use more sounds
unc0rr
parents: 866
diff changeset
   241
KillsClan:= 0;
830
f07267032194 - Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents: 829
diff changeset
   242
DamageClan:= 0;
8717
6e1ccd678e8a this should ensure those other voices play a bit more often.
nemo
parents: 7932
diff changeset
   243
DamageTurn:= 0;
12568
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
   244
HitTargets:= 0;
12176
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
   245
PoisonClan:= 0;
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
   246
PoisonTurn:= 0;
830
f07267032194 - Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents: 829
diff changeset
   247
AmmoUsedCount:= 0;
871
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
   248
AmmoDamagingUsed:= false;
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
   249
isTurnSkipped:= false
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   250
end;
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   251
829
1209eb768acf Use 'first blood' sound
unc0rr
parents: 815
diff changeset
   252
procedure AmmoUsed(am: TAmmoType);
1209eb768acf Use 'first blood' sound
unc0rr
parents: 815
diff changeset
   253
begin
830
f07267032194 - Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents: 829
diff changeset
   254
inc(AmmoUsedCount);
f07267032194 - Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents: 829
diff changeset
   255
AmmoDamagingUsed:= AmmoDamagingUsed or Ammoz[am].isDamaging
829
1209eb768acf Use 'first blood' sound
unc0rr
parents: 815
diff changeset
   256
end;
1209eb768acf Use 'first blood' sound
unc0rr
parents: 815
diff changeset
   257
6014
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   258
procedure hedgehogFlight(Gear: PGear; time: Longword);
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   259
begin
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   260
if time > 4000 then
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   261
    begin
7932
ebe1d112e439 remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents: 7857
diff changeset
   262
    WriteLnToConsole('FLIGHT');
ebe1d112e439 remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents: 7857
diff changeset
   263
    WriteLnToConsole(Gear^.Hedgehog^.Team^.TeamName);
ebe1d112e439 remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents: 7857
diff changeset
   264
    WriteLnToConsole(inttostr(time));
ebe1d112e439 remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents: 7857
diff changeset
   265
    WriteLnToConsole( '');
6014
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   266
    end
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   267
end;
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   268
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   269
procedure SendStats;
858
5005a485f103 Repair round statistics
unc0rr
parents: 831
diff changeset
   270
var i, t: LongInt;
869
daddcd31ef34 - New statistics
unc0rr
parents: 867
diff changeset
   271
    msd, msk: Longword; msdhh, mskhh: PHedgehog;
daddcd31ef34 - New statistics
unc0rr
parents: 867
diff changeset
   272
    mskcnt: Longword;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   273
    maxTeamKills : Longword;
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   274
    maxTeamKillsName : shortstring;
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   275
    maxTurnSkips : Longword;
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   276
    maxTurnSkipsName : shortstring;
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   277
    maxTeamDamage : Longword;
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   278
    maxTeamDamageName : shortstring;
5142
cb822f8d52ff Show winners in console in a special form so this information could be easily parsed
unc0rr
parents: 4976
diff changeset
   279
    winnersClan : PClan;
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   280
begin
9180
d19c09670ec8 changed variable and function name
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9174
diff changeset
   281
if SendHealthStatsOn then
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   282
    msd:= 0; msdhh:= nil;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   283
    msk:= 0; mskhh:= nil;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   284
    mskcnt:= 0;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   285
    maxTeamKills := 0;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   286
    maxTurnSkips := 0;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   287
    maxTeamDamage := 0;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   288
    winnersClan:= nil;
869
daddcd31ef34 - New statistics
unc0rr
parents: 867
diff changeset
   289
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   290
    for t:= 0 to Pred(TeamsCount) do
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   291
        with TeamsArray[t]^ do
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   292
        begin
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   293
            if (not ExtDriven) and SendRankingStatsOn then
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   294
                SendStat(siTeamStats, GetTeamStatString(TeamsArray[t]));
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   295
            for i:= 0 to cMaxHHIndex do
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   296
                begin
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   297
                if Hedgehogs[i].stats.MaxStepDamageGiven > msd then
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   298
                    begin
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   299
                    msdhh:= @Hedgehogs[i];
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   300
                    msd:= Hedgehogs[i].stats.MaxStepDamageGiven
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   301
                    end;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   302
                if Hedgehogs[i].stats.MaxStepKills >= msk then
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   303
                    if Hedgehogs[i].stats.MaxStepKills = msk then
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   304
                        inc(mskcnt)
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   305
                    else
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   306
                        begin
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   307
                        mskcnt:= 1;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   308
                        mskhh:= @Hedgehogs[i];
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   309
                        msk:= Hedgehogs[i].stats.MaxStepKills
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   310
                        end;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   311
            end;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   312
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   313
            { send player stats for winner teams }
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   314
            if Clan^.ClanHealth > 0 then
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   315
                begin
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   316
                winnersClan:= Clan;
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   317
                if SendRankingStatsOn then
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   318
                    SendStat(siPlayerKills, IntToStr(Clan^.Color) + ' ' +
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   319
                        IntToStr(stats.Kills) + ' ' + TeamName);
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   320
            end;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   321
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   322
            { determine maximum values of TeamKills, TurnSkips, TeamDamage }
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   323
            if stats.TeamKills > maxTeamKills then
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   324
                begin
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   325
                maxTeamKills := stats.TeamKills;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   326
                maxTeamKillsName := TeamName;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   327
            end;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   328
            if stats.TurnSkips > maxTurnSkips then
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   329
                begin
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   330
                maxTurnSkips := stats.TurnSkips;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   331
                maxTurnSkipsName := TeamName;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   332
            end;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   333
            if stats.TeamDamage > maxTeamDamage then
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   334
                begin
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   335
                maxTeamDamage := stats.TeamDamage;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   336
                maxTeamDamageName := TeamName;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   337
            end;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   338
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   339
        end;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   340
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   341
    { now send player stats for loser teams }
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   342
    if SendRankingStatsOn then
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   343
        for t:= 0 to Pred(TeamsCount) do
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   344
            begin
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   345
            with TeamsArray[t]^ do
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   346
                begin
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   347
                if Clan^.ClanHealth = 0 then
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   348
                    begin
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   349
                    SendStat(siPlayerKills, IntToStr(Clan^.Color) + ' ' +
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   350
                        IntToStr(stats.Kills) + ' ' + TeamName);
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   351
                end;
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   352
            end;
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   353
        end;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   354
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   355
    // “Achievements” / Details part of stats screen
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   356
    if SendAchievementsStatsOn then
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   357
        begin
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   358
        if msdhh <> nil then
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   359
            SendStat(siMaxStepDamage, IntToStr(msd) + ' ' + msdhh^.Name + ' (' + msdhh^.Team^.TeamName + ')');
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   360
        if mskcnt = 1 then
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   361
            SendStat(siMaxStepKills, IntToStr(msk) + ' ' + mskhh^.Name + ' (' + mskhh^.Team^.TeamName + ')');
869
daddcd31ef34 - New statistics
unc0rr
parents: 867
diff changeset
   362
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   363
        if maxTeamKills > 1 then
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   364
            SendStat(siMaxTeamKills, IntToStr(maxTeamKills) + ' ' + maxTeamKillsName);
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   365
        if maxTurnSkips > 2 then
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   366
            SendStat(siMaxTurnSkips, IntToStr(maxTurnSkips) + ' ' + maxTurnSkipsName);
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   367
        if maxTeamDamage > 30 then
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   368
            SendStat(siMaxTeamDamage, IntToStr(maxTeamDamage) + ' ' + maxTeamDamageName);
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   369
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   370
        if KilledHHs > 0 then
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   371
            SendStat(siKilledHHs, IntToStr(KilledHHs));
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12292
diff changeset
   372
        end;
5142
cb822f8d52ff Show winners in console in a special form so this information could be easily parsed
unc0rr
parents: 4976
diff changeset
   373
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   374
    // now to console
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9521
diff changeset
   375
    if winnersClan <> nil then
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   376
        begin
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   377
        WriteLnToConsole('WINNERS');
9397
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9180
diff changeset
   378
        WriteLnToConsole(inttostr(winnersClan^.TeamsNumber));
9405
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   379
        for t:= 0 to winnersClan^.TeamsNumber - 1 do
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   380
            WriteLnToConsole(winnersClan^.Teams[t]^.TeamName);
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   381
        end
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   382
    else
efc5409a141d Fix indentation
unc0rr
parents: 9397
diff changeset
   383
        WriteLnToConsole('DRAW');
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9521
diff changeset
   384
9397
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9180
diff changeset
   385
    ScriptCall('onAchievementsDeclaration');
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9180
diff changeset
   386
end;
6014
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   387
9409
6564baf7dedf Store TrophyRace records in database
unc0rr
parents: 9405
diff changeset
   388
procedure declareAchievement(id, teamname, location: shortstring; value: LongInt);
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9521
diff changeset
   389
begin
9411
d95ac9992529 Fix script flaw in detection of best team when sending achievement info
unc0rr
parents: 9409
diff changeset
   390
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
   391
    WriteLnToConsole('ACHIEVEMENT');
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9180
diff changeset
   392
    WriteLnToConsole(id);
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9180
diff changeset
   393
    WriteLnToConsole(teamname);
9409
6564baf7dedf Store TrophyRace records in database
unc0rr
parents: 9405
diff changeset
   394
    WriteLnToConsole(location);
9397
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9180
diff changeset
   395
    WriteLnToConsole(inttostr(value));
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   396
end;
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   397
11569
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   398
procedure startGhostPoints(n: LongInt);
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   399
begin
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   400
    WriteLnToConsole('GHOST_POINTS');
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   401
    WriteLnToConsole(inttostr(n));
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   402
end;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   403
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   404
procedure dumpPoint(x, y: LongInt);
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   405
begin
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   406
    WriteLnToConsole(inttostr(x));
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   407
    WriteLnToConsole(inttostr(y));
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   408
end;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   409
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   410
procedure initModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
   411
begin
11569
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   412
    DamageClan  := 0;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   413
    DamageTotal := 0;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   414
    DamageTurn  := 0;
12176
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
   415
    PoisonClan  := 0;
29f1ea94488b Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents: 12157
diff changeset
   416
    PoisonTurn  := 0;
11569
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   417
    KillsClan   := 0;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   418
    Kills       := 0;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   419
    KillsTotal  := 0;
12568
494d3e1c4810 Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents: 12359
diff changeset
   420
    HitTargets  := 0;
11569
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   421
    AmmoUsedCount := 0;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   422
    AmmoDamagingUsed := false;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   423
    SkippedTurns:= 0;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   424
    isTurnSkipped:= false;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   425
    vpHurtSameClan:= nil;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11532
diff changeset
   426
    vpHurtEnemy:= nil;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   427
    TotalRounds:= -1;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   428
    FinishedTurnsTotal:= -1;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
   429
end;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3381
diff changeset
   430
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   431
procedure freeModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
   432
begin
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
   433
end;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
   434
2619
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2143
diff changeset
   435
end.