author | belphegorr <szabibibi@gmail.com> |
Sun, 19 Aug 2012 23:20:43 +0300 | |
changeset 7506 | e2632a18bb4c |
parent 7151 | ec15d9e1a7e3 |
child 7576 | 65d29988fd3d |
child 7850 | fcbb024090a4 |
permissions | -rw-r--r-- |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
6700 | 3 |
* Copyright (c) 2004-2012 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 | 19 |
{$INCLUDE "options.inc"} |
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 | 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; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
27 |
|
3038 | 28 |
procedure initModule; |
29 |
procedure freeModule; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
30 |
|
829 | 31 |
procedure AmmoUsed(am: TAmmoType); |
5202 | 32 |
procedure HedgehogDamaged(Gear: PGear; Attacker: PHedgehog; Damage: Longword; killed: boolean); |
871 | 33 |
procedure Skipped; |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
34 |
procedure TurnReaction; |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
35 |
procedure SendStats; |
6014 | 36 |
procedure hedgehogFlight(Gear: PGear; time: Longword); |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
37 |
|
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
38 |
implementation |
4413 | 39 |
uses uSound, uLocale, uVariables, uUtils, uIO, uCaptions, uDebug, uMisc; |
4359 | 40 |
|
5203
b77f28facca6
Better tracking of damage source and target when scoring a turn
unc0rr
parents:
5202
diff
changeset
|
41 |
var DamageClan : Longword = 0; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
42 |
DamageTotal : Longword = 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
43 |
KillsClan : LongWord = 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
44 |
Kills : LongWord = 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
45 |
KillsTotal : LongWord = 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
46 |
AmmoUsedCount : Longword = 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
47 |
AmmoDamagingUsed : boolean = false; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
48 |
SkippedTurns: LongWord = 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
49 |
isTurnSkipped: boolean = false; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
50 |
vpHurtSameClan: PVoicepack = nil; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
51 |
vpHurtEnemy: PVoicepack = nil; |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
52 |
|
5202 | 53 |
procedure HedgehogDamaged(Gear: PGear; Attacker: PHedgehog; Damage: Longword; killed: boolean); |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
54 |
begin |
4837
2ea0a152c319
Pass PHedgehog instead of PGear to stats. Fixes crash.
unc0rr
parents:
4824
diff
changeset
|
55 |
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
|
56 |
vpHurtSameClan:= CurrentHedgehog^.Team^.voicepack |
1678 | 57 |
else |
4365 | 58 |
vpHurtEnemy:= Gear^.Hedgehog^.Team^.voicepack; |
1678 | 59 |
|
60 |
////////////////////////// |
|
61 |
||
5203
b77f28facca6
Better tracking of damage source and target when scoring a turn
unc0rr
parents:
5202
diff
changeset
|
62 |
inc(Attacker^.stats.StepDamageGiven, Damage); |
b77f28facca6
Better tracking of damage source and target when scoring a turn
unc0rr
parents:
5202
diff
changeset
|
63 |
inc(Attacker^.stats.DamageGiven, Damage); |
b77f28facca6
Better tracking of damage source and target when scoring a turn
unc0rr
parents:
5202
diff
changeset
|
64 |
inc(Gear^.Hedgehog^.stats.StepDamageRecv, Damage); |
815 | 65 |
|
5202 | 66 |
if CurrentHedgehog^.Team^.Clan = Gear^.Hedgehog^.Team^.Clan then inc(DamageClan, Damage); |
815 | 67 |
|
5202 | 68 |
if killed then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
69 |
begin |
5142
cb822f8d52ff
Show winners in console in a special form so this information could be easily parsed
unc0rr
parents:
4976
diff
changeset
|
70 |
inc(Attacker^.stats.StepKills); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
71 |
inc(Kills); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
72 |
inc(KillsTotal); |
5142
cb822f8d52ff
Show winners in console in a special form so this information could be easily parsed
unc0rr
parents:
4976
diff
changeset
|
73 |
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
|
74 |
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
|
75 |
begin |
5142
cb822f8d52ff
Show winners in console in a special form so this information could be easily parsed
unc0rr
parents:
4976
diff
changeset
|
76 |
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
|
77 |
inc(Attacker^.Team^.stats.TeamDamage, Gear^.Damage); |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
78 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
79 |
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
|
80 |
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
|
81 |
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
|
82 |
inc(KillsClan); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
83 |
end; |
815 | 84 |
|
5202 | 85 |
inc(DamageTotal, Damage) |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
86 |
end; |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
87 |
|
871 | 88 |
procedure Skipped; |
89 |
begin |
|
90 |
inc(SkippedTurns); |
|
91 |
isTurnSkipped:= true |
|
92 |
end; |
|
93 |
||
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
94 |
procedure TurnReaction; |
874 | 95 |
var i, t: LongInt; |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
96 |
begin |
1054 | 97 |
TryDo(not bBetweenTurns, 'Engine bug: TurnReaction between turns', true); |
98 |
||
870 | 99 |
inc(FinishedTurnsTotal); |
1625 | 100 |
if FinishedTurnsTotal <> 0 then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
101 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
102 |
inc(CurrentHedgehog^.stats.FinishedTurns); |
870 | 103 |
|
5203
b77f28facca6
Better tracking of damage source and target when scoring a turn
unc0rr
parents:
5202
diff
changeset
|
104 |
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
|
105 |
AddVoice(sndFirstBlood, CurrentTeam^.voicepack) |
815 | 106 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
107 |
else if CurrentHedgehog^.stats.StepDamageRecv > 0 then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
108 |
begin |
5638
e35ba2a400d8
Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents:
5203
diff
changeset
|
109 |
AddVoice(sndStupid, PreviousTeam^.voicepack); |
5203
b77f28facca6
Better tracking of damage source and target when scoring a turn
unc0rr
parents:
5202
diff
changeset
|
110 |
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
|
111 |
AddCaption(Format(GetEventString(eidHurtSelf), CurrentHedgehog^.Name), cWhiteColor, capgrpMessage); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
112 |
end |
5203
b77f28facca6
Better tracking of damage source and target when scoring a turn
unc0rr
parents:
5202
diff
changeset
|
113 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
114 |
else if DamageClan <> 0 then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
115 |
if DamageTotal > DamageClan then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
116 |
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
|
117 |
AddVoice(sndNutter, CurrentTeam^.voicepack) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
118 |
else |
5638
e35ba2a400d8
Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents:
5203
diff
changeset
|
119 |
AddVoice(sndWatchIt, vpHurtSameClan) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
120 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
121 |
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
|
122 |
AddVoice(sndSameTeam, vpHurtSameClan) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
123 |
else |
5638
e35ba2a400d8
Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents:
5203
diff
changeset
|
124 |
AddVoice(sndTraitor, vpHurtSameClan) |
5203
b77f28facca6
Better tracking of damage source and target when scoring a turn
unc0rr
parents:
5202
diff
changeset
|
125 |
|
b77f28facca6
Better tracking of damage source and target when scoring a turn
unc0rr
parents:
5202
diff
changeset
|
126 |
else if CurrentHedgehog^.stats.StepDamageGiven <> 0 then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
127 |
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
|
128 |
AddVoice(sndEnemyDown, CurrentTeam^.voicepack) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
129 |
else |
5638
e35ba2a400d8
Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents:
5203
diff
changeset
|
130 |
AddVoice(sndRegret, vpHurtEnemy) |
1625 | 131 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
132 |
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
|
133 |
AddVoice(sndMissed, PreviousTeam^.voicepack) |
6290 | 134 |
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
|
135 |
begin end// nothing ? |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
136 |
else if isTurnSkipped then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
137 |
begin |
5638
e35ba2a400d8
Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents:
5203
diff
changeset
|
138 |
AddVoice(sndBoring, PreviousTeam^.voicepack); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
139 |
AddCaption(Format(GetEventString(eidTurnSkipped), CurrentHedgehog^.Name), cWhiteColor, capgrpMessage); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
140 |
end |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
141 |
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
|
142 |
AddVoice(sndCoward, PreviousTeam^.voicepack); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
143 |
end; |
870 | 144 |
|
815 | 145 |
|
1625 | 146 |
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
|
147 |
with TeamsArray[t]^ do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
148 |
for i:= 0 to cMaxHHIndex do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
149 |
with Hedgehogs[i].stats do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
150 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
151 |
inc(DamageRecv, StepDamageRecv); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
152 |
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
|
153 |
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
|
154 |
MaxStepDamageRecv:= StepDamageRecv; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
155 |
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
|
156 |
MaxStepDamageGiven:= StepDamageGiven; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
157 |
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
|
158 |
MaxStepKills:= StepKills; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
159 |
StepKills:= 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
160 |
StepDamageRecv:= 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
161 |
StepDamageGiven:= 0 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
162 |
end; |
815 | 163 |
|
1625 | 164 |
for t:= 0 to Pred(ClansCount) do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
165 |
with ClansArray[t]^ do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
166 |
begin |
4374 | 167 |
SendStat(siClanHealth, IntToStr(Color) + ' ' + IntToStr(ClanHealth)); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
168 |
end; |
1625 | 169 |
|
867 | 170 |
Kills:= 0; |
171 |
KillsClan:= 0; |
|
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
172 |
DamageClan:= 0; |
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
173 |
AmmoUsedCount:= 0; |
871 | 174 |
AmmoDamagingUsed:= false; |
175 |
isTurnSkipped:= false |
|
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
176 |
end; |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
177 |
|
829 | 178 |
procedure AmmoUsed(am: TAmmoType); |
179 |
begin |
|
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
180 |
inc(AmmoUsedCount); |
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
181 |
AmmoDamagingUsed:= AmmoDamagingUsed or Ammoz[am].isDamaging |
829 | 182 |
end; |
183 |
||
6014 | 184 |
procedure hedgehogFlight(Gear: PGear; time: Longword); |
185 |
begin |
|
186 |
if time > 4000 then |
|
187 |
begin |
|
7151 | 188 |
writeln(stdout, 'FLIGHT'); |
189 |
writeln(stdout, Gear^.Hedgehog^.Team^.TeamName); |
|
190 |
writeln(stdout, inttostr(time)); |
|
191 |
writeln(stdout, ''); |
|
6014 | 192 |
end |
193 |
end; |
|
194 |
||
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
195 |
procedure SendStats; |
858 | 196 |
var i, t: LongInt; |
869 | 197 |
msd, msk: Longword; msdhh, mskhh: PHedgehog; |
198 |
mskcnt: Longword; |
|
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
199 |
maxTeamKills : Longword; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
200 |
maxTeamKillsName : shortstring; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
201 |
maxTurnSkips : Longword; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
202 |
maxTurnSkipsName : shortstring; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
203 |
maxTeamDamage : Longword; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
204 |
maxTeamDamageName : shortstring; |
5142
cb822f8d52ff
Show winners in console in a special form so this information could be easily parsed
unc0rr
parents:
4976
diff
changeset
|
205 |
winnersClan : PClan; |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
206 |
begin |
858 | 207 |
msd:= 0; msdhh:= nil; |
869 | 208 |
msk:= 0; mskhh:= nil; |
209 |
mskcnt:= 0; |
|
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
210 |
maxTeamKills := 0; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
211 |
maxTurnSkips := 0; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
212 |
maxTeamDamage := 0; |
5142
cb822f8d52ff
Show winners in console in a special form so this information could be easily parsed
unc0rr
parents:
4976
diff
changeset
|
213 |
winnersClan:= nil; |
869 | 214 |
|
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
215 |
for t:= 0 to Pred(TeamsCount) do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
216 |
with TeamsArray[t]^ do |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
217 |
begin |
3381 | 218 |
if not ExtDriven then |
219 |
SendStat(siTeamStats, GetTeamStatString(TeamsArray[t])); |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
220 |
for i:= 0 to cMaxHHIndex do |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
221 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
222 |
if Hedgehogs[i].stats.MaxStepDamageGiven > msd then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
223 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
224 |
msdhh:= @Hedgehogs[i]; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
225 |
msd:= Hedgehogs[i].stats.MaxStepDamageGiven |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
226 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
227 |
if Hedgehogs[i].stats.MaxStepKills >= msk then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
228 |
if Hedgehogs[i].stats.MaxStepKills = msk then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
229 |
inc(mskcnt) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
230 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
231 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
232 |
mskcnt:= 1; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
233 |
mskhh:= @Hedgehogs[i]; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
234 |
msk:= Hedgehogs[i].stats.MaxStepKills |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
235 |
end; |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
236 |
end; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
237 |
|
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
238 |
{ send player stats for winner teams } |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
239 |
if Clan^.ClanHealth > 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
240 |
begin |
5142
cb822f8d52ff
Show winners in console in a special form so this information could be easily parsed
unc0rr
parents:
4976
diff
changeset
|
241 |
winnersClan:= Clan; |
4374 | 242 |
SendStat(siPlayerKills, IntToStr(Clan^.Color) + ' ' + |
243 |
IntToStr(stats.Kills) + ' ' + TeamName); |
|
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
244 |
end; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
245 |
|
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
246 |
{ determine maximum values of TeamKills, TurnSkips, TeamDamage } |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
247 |
if stats.TeamKills > maxTeamKills then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
248 |
begin |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
249 |
maxTeamKills := stats.TeamKills; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
250 |
maxTeamKillsName := TeamName; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
251 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
252 |
if stats.TurnSkips > maxTurnSkips then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
253 |
begin |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
254 |
maxTurnSkips := stats.TurnSkips; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
255 |
maxTurnSkipsName := TeamName; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
256 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
257 |
if stats.TeamDamage > maxTeamDamage then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
258 |
begin |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
259 |
maxTeamDamage := stats.TeamDamage; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
260 |
maxTeamDamageName := TeamName; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
261 |
end; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
262 |
|
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
263 |
end; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
264 |
|
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
265 |
{ now send player stats for loser teams } |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
266 |
for t:= 0 to Pred(TeamsCount) do |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
267 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
268 |
with TeamsArray[t]^ do |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
269 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
270 |
if Clan^.ClanHealth = 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
271 |
begin |
4374 | 272 |
SendStat(siPlayerKills, IntToStr(Clan^.Color) + ' ' + |
273 |
IntToStr(stats.Kills) + ' ' + TeamName); |
|
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
274 |
end; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
275 |
end; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
276 |
end; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
277 |
|
869 | 278 |
if msdhh <> nil then |
4374 | 279 |
SendStat(siMaxStepDamage, IntToStr(msd) + ' ' + msdhh^.Name + ' (' + msdhh^.Team^.TeamName + ')'); |
869 | 280 |
if mskcnt = 1 then |
4374 | 281 |
SendStat(siMaxStepKills, IntToStr(msk) + ' ' + mskhh^.Name + ' (' + mskhh^.Team^.TeamName + ')'); |
869 | 282 |
|
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
283 |
if maxTeamKills > 1 then |
4374 | 284 |
SendStat(siMaxTeamKills, IntToStr(maxTeamKills) + ' ' + maxTeamKillsName); |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
285 |
if maxTurnSkips > 2 then |
4374 | 286 |
SendStat(siMaxTurnSkips, IntToStr(maxTurnSkips) + ' ' + maxTurnSkipsName); |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
287 |
if maxTeamDamage > 30 then |
4374 | 288 |
SendStat(siMaxTeamDamage, IntToStr(maxTeamDamage) + ' ' + maxTeamDamageName); |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
289 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
290 |
if KilledHHs > 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
291 |
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
|
292 |
|
cb822f8d52ff
Show winners in console in a special form so this information could be easily parsed
unc0rr
parents:
4976
diff
changeset
|
293 |
// now to console |
cb822f8d52ff
Show winners in console in a special form so this information could be easily parsed
unc0rr
parents:
4976
diff
changeset
|
294 |
if winnersClan <> nil then |
cb822f8d52ff
Show winners in console in a special form so this information could be easily parsed
unc0rr
parents:
4976
diff
changeset
|
295 |
begin |
7151 | 296 |
writeln(stdout, 'WINNERS'); |
5142
cb822f8d52ff
Show winners in console in a special form so this information could be easily parsed
unc0rr
parents:
4976
diff
changeset
|
297 |
for t:= 0 to winnersClan^.TeamsNumber - 1 do |
7151 | 298 |
writeln(stdout, winnersClan^.Teams[t]^.TeamName); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
299 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
300 |
else |
7151 | 301 |
writeln(stdout, 'DRAW'); |
6014 | 302 |
|
7151 | 303 |
writeln(stdout, ''); |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
304 |
end; |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
305 |
|
3038 | 306 |
procedure initModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
307 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
308 |
TotalRounds:= -1; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
309 |
FinishedTurnsTotal:= -1; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
310 |
end; |
3697 | 311 |
|
3038 | 312 |
procedure freeModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
313 |
begin |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
314 |
|
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
315 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
316 |
|
2619 | 317 |
end. |