hedgewars/uStats.pas
author Periklis Ntanasis <pntanasis@gmail.com>
Thu, 06 Jun 2013 03:52:32 +0300
changeset 9174 d328fe17b195
parent 9080 9b42757d7e71
child 9180 d19c09670ec8
permissions -rw-r--r--
made lua scripts able to turn off automatic game stats
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
9080
9b42757d7e71 bump copyright year for Andrey entries
unc0rr
parents: 8717
diff changeset
     3
 * Copyright (c) 2004-2013 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
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
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;
9174
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
    27
    SendStatsOn : boolean = true;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
    28
    
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
    29
procedure initModule;
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
    30
procedure freeModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
    31
829
1209eb768acf Use 'first blood' sound
unc0rr
parents: 815
diff changeset
    32
procedure AmmoUsed(am: TAmmoType);
5202
45a16280d68d Some improvements on stats subsystem
unc0rr
parents: 5142
diff changeset
    33
procedure HedgehogDamaged(Gear: PGear; Attacker: PHedgehog; Damage: Longword; killed: boolean);
871
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
    34
procedure Skipped;
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    35
procedure TurnReaction;
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    36
procedure SendStats;
6014
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
    37
procedure hedgehogFlight(Gear: PGear; time: Longword);
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    38
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    39
implementation
7932
ebe1d112e439 remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents: 7857
diff changeset
    40
uses uSound, uLocale, uVariables, uUtils, uIO, uCaptions, uDebug, uMisc, uConsole;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents: 4357
diff changeset
    41
5203
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
    42
var DamageClan  : Longword = 0;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    43
    DamageTotal : Longword = 0;
8717
6e1ccd678e8a this should ensure those other voices play a bit more often.
nemo
parents: 7932
diff changeset
    44
    DamageTurn  : Longword = 0;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    45
    KillsClan   : LongWord = 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    46
    Kills       : LongWord = 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    47
    KillsTotal  : LongWord = 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    48
    AmmoUsedCount : Longword = 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    49
    AmmoDamagingUsed : boolean = false;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    50
    SkippedTurns: LongWord = 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    51
    isTurnSkipped: boolean = false;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    52
    vpHurtSameClan: PVoicepack = nil;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    53
    vpHurtEnemy: PVoicepack = nil;
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    54
5202
45a16280d68d Some improvements on stats subsystem
unc0rr
parents: 5142
diff changeset
    55
procedure HedgehogDamaged(Gear: PGear; Attacker: PHedgehog; Damage: Longword; killed: boolean);
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    56
begin
4837
2ea0a152c319 Pass PHedgehog instead of PGear to stats. Fixes crash.
unc0rr
parents: 4824
diff changeset
    57
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
    58
    vpHurtSameClan:= CurrentHedgehog^.Team^.voicepack
1678
c8deca7b1e3c Fix voicepacks
unc0rr
parents: 1669
diff changeset
    59
else
4365
4f2b1a152979 Remove ugly PHedgehog(Gear^.Hedgehog) cast
unc0rr
parents: 4361
diff changeset
    60
    vpHurtEnemy:= Gear^.Hedgehog^.Team^.voicepack;
1678
c8deca7b1e3c Fix voicepacks
unc0rr
parents: 1669
diff changeset
    61
c8deca7b1e3c Fix voicepacks
unc0rr
parents: 1669
diff changeset
    62
//////////////////////////
c8deca7b1e3c Fix voicepacks
unc0rr
parents: 1669
diff changeset
    63
5203
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
    64
inc(Attacker^.stats.StepDamageGiven, Damage);
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
    65
inc(Attacker^.stats.DamageGiven, Damage);
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
    66
inc(Gear^.Hedgehog^.stats.StepDamageRecv, Damage);
815
82ff416301bd Use sounds 'stupid' and 'missed'
unc0rr
parents: 814
diff changeset
    67
5202
45a16280d68d Some improvements on stats subsystem
unc0rr
parents: 5142
diff changeset
    68
if CurrentHedgehog^.Team^.Clan = Gear^.Hedgehog^.Team^.Clan then inc(DamageClan, Damage);
815
82ff416301bd Use sounds 'stupid' and 'missed'
unc0rr
parents: 814
diff changeset
    69
5202
45a16280d68d Some improvements on stats subsystem
unc0rr
parents: 5142
diff changeset
    70
if killed then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    71
    begin
5142
cb822f8d52ff Show winners in console in a special form so this information could be easily parsed
unc0rr
parents: 4976
diff changeset
    72
    inc(Attacker^.stats.StepKills);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    73
    inc(Kills);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    74
    inc(KillsTotal);
5142
cb822f8d52ff Show winners in console in a special form so this information could be easily parsed
unc0rr
parents: 4976
diff changeset
    75
    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
    76
    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
    77
        begin
5142
cb822f8d52ff Show winners in console in a special form so this information could be easily parsed
unc0rr
parents: 4976
diff changeset
    78
        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
    79
        inc(Attacker^.Team^.stats.TeamDamage, Gear^.Damage);
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
    80
    end;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    81
    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
    82
        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
    83
    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
    84
        inc(KillsClan);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
    85
    end;
815
82ff416301bd Use sounds 'stupid' and 'missed'
unc0rr
parents: 814
diff changeset
    86
8717
6e1ccd678e8a this should ensure those other voices play a bit more often.
nemo
parents: 7932
diff changeset
    87
inc(DamageTotal, Damage);
6e1ccd678e8a this should ensure those other voices play a bit more often.
nemo
parents: 7932
diff changeset
    88
inc(DamageTurn, Damage)
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    89
end;
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    90
871
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
    91
procedure Skipped;
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
    92
begin
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
    93
inc(SkippedTurns);
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
    94
isTurnSkipped:= true
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
    95
end;
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
    96
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    97
procedure TurnReaction;
874
964c0d5b3604 - Fix warning
unc0rr
parents: 873
diff changeset
    98
var i, t: LongInt;
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
    99
begin
1054
80225c6af656 - Prepare for sudden death implementation
unc0rr
parents: 874
diff changeset
   100
TryDo(not bBetweenTurns, 'Engine bug: TurnReaction between turns', true);
80225c6af656 - Prepare for sudden death implementation
unc0rr
parents: 874
diff changeset
   101
870
dd418d9c18c5 Use more sounds
unc0rr
parents: 869
diff changeset
   102
inc(FinishedTurnsTotal);
1625
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1070
diff changeset
   103
if FinishedTurnsTotal <> 0 then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   104
    begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   105
    inc(CurrentHedgehog^.stats.FinishedTurns);
870
dd418d9c18c5 Use more sounds
unc0rr
parents: 869
diff changeset
   106
5203
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
   107
    if (CurrentHedgehog^.stats.DamageGiven = DamageTotal) and (DamageTotal > 0) then
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   108
        AddVoice(sndFirstBlood, CurrentTeam^.voicepack)
815
82ff416301bd Use sounds 'stupid' and 'missed'
unc0rr
parents: 814
diff changeset
   109
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   110
    else if CurrentHedgehog^.stats.StepDamageRecv > 0 then
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   111
        begin
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   112
        AddVoice(sndStupid, PreviousTeam^.voicepack);
5203
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
   113
        if CurrentHedgehog^.stats.DamageGiven = CurrentHedgehog^.stats.StepDamageRecv then 
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
   114
            AddCaption(Format(GetEventString(eidHurtSelf), CurrentHedgehog^.Name), cWhiteColor, capgrpMessage);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   115
        end
5203
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
   116
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   117
    else if DamageClan <> 0 then
8717
6e1ccd678e8a this should ensure those other voices play a bit more often.
nemo
parents: 7932
diff changeset
   118
        if DamageTurn > DamageClan then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   119
            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
   120
                AddVoice(sndNutter, CurrentTeam^.voicepack)
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   121
            else
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   122
                AddVoice(sndWatchIt, vpHurtSameClan)
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   123
        else
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   124
            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
   125
                AddVoice(sndSameTeam, vpHurtSameClan)
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   126
            else
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   127
                AddVoice(sndTraitor, vpHurtSameClan)
5203
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
   128
b77f28facca6 Better tracking of damage source and target when scoring a turn
unc0rr
parents: 5202
diff changeset
   129
    else if CurrentHedgehog^.stats.StepDamageGiven <> 0 then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   130
        if Kills > 0 then
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   131
            AddVoice(sndEnemyDown, CurrentTeam^.voicepack)
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   132
        else
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   133
            AddVoice(sndRegret, vpHurtEnemy)
1625
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1070
diff changeset
   134
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   135
    else if AmmoDamagingUsed then
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   136
        AddVoice(sndMissed, PreviousTeam^.voicepack)
6290
c6245ed6cbc0 Some improvements to the parser
unc0rr
parents: 6014
diff changeset
   137
    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
   138
        begin end// nothing ?
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   139
    else if isTurnSkipped then
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   140
        begin
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   141
        AddVoice(sndBoring, PreviousTeam^.voicepack);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   142
        AddCaption(Format(GetEventString(eidTurnSkipped), CurrentHedgehog^.Name), cWhiteColor, capgrpMessage);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   143
        end
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   144
    else if not PlacingHogs then
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5203
diff changeset
   145
        AddVoice(sndCoward, PreviousTeam^.voicepack);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   146
    end;
870
dd418d9c18c5 Use more sounds
unc0rr
parents: 869
diff changeset
   147
815
82ff416301bd Use sounds 'stupid' and 'missed'
unc0rr
parents: 814
diff changeset
   148
1625
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1070
diff changeset
   149
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
   150
    with TeamsArray[t]^ do
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   151
        for i:= 0 to cMaxHHIndex do
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   152
            with Hedgehogs[i].stats do
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   153
                begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   154
                inc(DamageRecv, StepDamageRecv);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   155
                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
   156
                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
   157
                    MaxStepDamageRecv:= StepDamageRecv;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   158
                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
   159
                    MaxStepDamageGiven:= StepDamageGiven;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   160
                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
   161
                    MaxStepKills:= StepKills;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   162
                StepKills:= 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   163
                StepDamageRecv:= 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   164
                StepDamageGiven:= 0
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   165
                end;
9174
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   166
                
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   167
if SendStatsOn then
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   168
	for t:= 0 to Pred(ClansCount) do
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   169
		with ClansArray[t]^ do
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   170
			begin
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   171
			SendStat(siClanHealth, IntToStr(Color) + ' ' + IntToStr(ClanHealth));
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   172
			end;
1625
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1070
diff changeset
   173
867
dc7901b1120e - Use more sounds
unc0rr
parents: 866
diff changeset
   174
Kills:= 0;
dc7901b1120e - Use more sounds
unc0rr
parents: 866
diff changeset
   175
KillsClan:= 0;
830
f07267032194 - Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents: 829
diff changeset
   176
DamageClan:= 0;
8717
6e1ccd678e8a this should ensure those other voices play a bit more often.
nemo
parents: 7932
diff changeset
   177
DamageTurn:= 0;
830
f07267032194 - Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents: 829
diff changeset
   178
AmmoUsedCount:= 0;
871
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
   179
AmmoDamagingUsed:= false;
f1bf00b7fd5a - Fix sounds when the turn is skipped
unc0rr
parents: 870
diff changeset
   180
isTurnSkipped:= false
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   181
end;
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   182
829
1209eb768acf Use 'first blood' sound
unc0rr
parents: 815
diff changeset
   183
procedure AmmoUsed(am: TAmmoType);
1209eb768acf Use 'first blood' sound
unc0rr
parents: 815
diff changeset
   184
begin
830
f07267032194 - Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents: 829
diff changeset
   185
inc(AmmoUsedCount);
f07267032194 - Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents: 829
diff changeset
   186
AmmoDamagingUsed:= AmmoDamagingUsed or Ammoz[am].isDamaging
829
1209eb768acf Use 'first blood' sound
unc0rr
parents: 815
diff changeset
   187
end;
1209eb768acf Use 'first blood' sound
unc0rr
parents: 815
diff changeset
   188
6014
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   189
procedure hedgehogFlight(Gear: PGear; time: Longword);
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   190
begin
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   191
if time > 4000 then
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   192
    begin
7932
ebe1d112e439 remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents: 7857
diff changeset
   193
    WriteLnToConsole('FLIGHT');
ebe1d112e439 remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents: 7857
diff changeset
   194
    WriteLnToConsole(Gear^.Hedgehog^.Team^.TeamName);
ebe1d112e439 remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents: 7857
diff changeset
   195
    WriteLnToConsole(inttostr(time));
ebe1d112e439 remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents: 7857
diff changeset
   196
    WriteLnToConsole( '');
6014
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   197
    end
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   198
end;
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   199
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   200
procedure SendStats;
858
5005a485f103 Repair round statistics
unc0rr
parents: 831
diff changeset
   201
var i, t: LongInt;
869
daddcd31ef34 - New statistics
unc0rr
parents: 867
diff changeset
   202
    msd, msk: Longword; msdhh, mskhh: PHedgehog;
daddcd31ef34 - New statistics
unc0rr
parents: 867
diff changeset
   203
    mskcnt: Longword;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   204
    maxTeamKills : Longword;
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   205
    maxTeamKillsName : shortstring;
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   206
    maxTurnSkips : Longword;
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   207
    maxTurnSkipsName : shortstring;
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   208
    maxTeamDamage : Longword;
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   209
    maxTeamDamageName : shortstring;
5142
cb822f8d52ff Show winners in console in a special form so this information could be easily parsed
unc0rr
parents: 4976
diff changeset
   210
    winnersClan : PClan;
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   211
begin
9174
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   212
if SendStatsOn then
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   213
	msd:= 0; msdhh:= nil;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   214
	msk:= 0; mskhh:= nil;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   215
	mskcnt:= 0;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   216
	maxTeamKills := 0;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   217
	maxTurnSkips := 0;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   218
	maxTeamDamage := 0;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   219
	winnersClan:= nil;
869
daddcd31ef34 - New statistics
unc0rr
parents: 867
diff changeset
   220
9174
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   221
	for t:= 0 to Pred(TeamsCount) do
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   222
		with TeamsArray[t]^ do
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   223
		begin
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   224
			if not ExtDriven then
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   225
				SendStat(siTeamStats, GetTeamStatString(TeamsArray[t]));
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   226
			for i:= 0 to cMaxHHIndex do
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   227
				begin
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   228
				if Hedgehogs[i].stats.MaxStepDamageGiven > msd then
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   229
					begin
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   230
					msdhh:= @Hedgehogs[i];
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   231
					msd:= Hedgehogs[i].stats.MaxStepDamageGiven
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   232
					end;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   233
				if Hedgehogs[i].stats.MaxStepKills >= msk then
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   234
					if Hedgehogs[i].stats.MaxStepKills = msk then
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   235
						inc(mskcnt)
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   236
					else
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   237
						begin
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   238
						mskcnt:= 1;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   239
						mskhh:= @Hedgehogs[i];
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   240
						msk:= Hedgehogs[i].stats.MaxStepKills
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   241
						end;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   242
			end;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   243
9174
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   244
			{ send player stats for winner teams }
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   245
			if Clan^.ClanHealth > 0 then
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   246
				begin
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   247
				winnersClan:= Clan;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   248
				SendStat(siPlayerKills, IntToStr(Clan^.Color) + ' ' +
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   249
					IntToStr(stats.Kills) + ' ' + TeamName);
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   250
			end;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   251
9174
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   252
			{ determine maximum values of TeamKills, TurnSkips, TeamDamage }
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   253
			if stats.TeamKills > maxTeamKills then
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   254
				begin
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   255
				maxTeamKills := stats.TeamKills;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   256
				maxTeamKillsName := TeamName;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   257
			end;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   258
			if stats.TurnSkips > maxTurnSkips then
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   259
				begin
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   260
				maxTurnSkips := stats.TurnSkips;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   261
				maxTurnSkipsName := TeamName;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   262
			end;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   263
			if stats.TeamDamage > maxTeamDamage then
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   264
				begin
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   265
				maxTeamDamage := stats.TeamDamage;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   266
				maxTeamDamageName := TeamName;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   267
			end;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   268
9174
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   269
		end;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   270
9174
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   271
	{ now send player stats for loser teams }
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   272
	for t:= 0 to Pred(TeamsCount) do
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   273
		begin
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   274
		with TeamsArray[t]^ do
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   275
			begin
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   276
			if Clan^.ClanHealth = 0 then
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   277
				begin
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   278
				SendStat(siPlayerKills, IntToStr(Clan^.Color) + ' ' +
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   279
					IntToStr(stats.Kills) + ' ' + TeamName);
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   280
			end;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   281
		end;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   282
	end;
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   283
9174
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   284
	if msdhh <> nil then
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   285
		SendStat(siMaxStepDamage, IntToStr(msd) + ' ' + msdhh^.Name + ' (' + msdhh^.Team^.TeamName + ')');
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   286
	if mskcnt = 1 then
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   287
		SendStat(siMaxStepKills, IntToStr(msk) + ' ' + mskhh^.Name + ' (' + mskhh^.Team^.TeamName + ')');
869
daddcd31ef34 - New statistics
unc0rr
parents: 867
diff changeset
   288
9174
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   289
	if maxTeamKills > 1 then
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   290
		SendStat(siMaxTeamKills, IntToStr(maxTeamKills) + ' ' + maxTeamKillsName);
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   291
	if maxTurnSkips > 2 then
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   292
		SendStat(siMaxTurnSkips, IntToStr(maxTurnSkips) + ' ' + maxTurnSkipsName);
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   293
	if maxTeamDamage > 30 then
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   294
		SendStat(siMaxTeamDamage, IntToStr(maxTeamDamage) + ' ' + maxTeamDamageName);
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3770
diff changeset
   295
9174
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   296
	if KilledHHs > 0 then
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   297
		SendStat(siKilledHHs, IntToStr(KilledHHs));
5142
cb822f8d52ff Show winners in console in a special form so this information could be easily parsed
unc0rr
parents: 4976
diff changeset
   298
9174
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   299
	// now to console
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   300
	if winnersClan <> nil then 
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   301
		begin
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   302
		WriteLnToConsole('WINNERS');
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   303
		for t:= 0 to winnersClan^.TeamsNumber - 1 do
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   304
			WriteLnToConsole(winnersClan^.Teams[t]^.TeamName);
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   305
		end
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   306
	else
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   307
		WriteLnToConsole('DRAW');
6014
b432c4b9cc9b Report long flight archievement
unc0rr
parents: 5638
diff changeset
   308
9174
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
   309
	WriteLnToConsole('');
814
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   310
end;
7fb4417b7bc1 Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff changeset
   311
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   312
procedure initModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
   313
begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   314
    TotalRounds:= -1;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2782
diff changeset
   315
    FinishedTurnsTotal:= -1;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
   316
end;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3381
diff changeset
   317
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   318
procedure freeModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
   319
begin
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
   320
end;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2712
diff changeset
   321
2619
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2143
diff changeset
   322
end.