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