author | Wuzzy <Wuzzy2@mail.ru> |
Sat, 27 Oct 2018 15:55:19 +0200 | |
changeset 14019 | f09276eb0c27 |
parent 14017 | 7b66a2e9b368 |
child 14020 | 544b32038664 |
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 |
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
4 |
* |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
5 |
* This program is free software; you can redistribute it and/or modify |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
6 |
* it under the terms of the GNU General Public License as published by |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
7 |
* the Free Software Foundation; version 2 of the License |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
8 |
* |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
9 |
* This program is distributed in the hope that it will be useful, |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
12 |
* GNU General Public License for more details. |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
13 |
* |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
14 |
* You should have received a copy of the GNU General Public License |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
15 |
* along with this program; if not, write to the Free Software |
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
10105
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
17 |
*) |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
18 |
|
2630 | 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 |
|
13656
56a925256039
Add separate TotalRounds var for Lua to count the *actual* number of rounds that have been played
Wuzzy <Wuzzy2@mail.ru>
parents:
13647
diff
changeset
|
25 |
var TotalRoundsPre: LongInt; // Helper variable for calculating start of Sudden Death and more. Starts at -1 and is incremented on the turn BEFORE the turn which marks the start of the next round. Always -1 while in hog placing phase |
56a925256039
Add separate TotalRounds var for Lua to count the *actual* number of rounds that have been played
Wuzzy <Wuzzy2@mail.ru>
parents:
13647
diff
changeset
|
26 |
TotalRoundsReal: LongInt; // Total number of rounds played (-1 if not started or in hog placing phase). Exported to Lua as 'TotalRounds' |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
27 |
FinishedTurnsTotal: LongInt; |
12337
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
28 |
SendGameResultOn : boolean = true; |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
29 |
SendRankingStatsOn : boolean = true; |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
30 |
SendAchievementsStatsOn : boolean = true; |
9180
d19c09670ec8
changed variable and function name
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9174
diff
changeset
|
31 |
SendHealthStatsOn : boolean = true; |
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
32 |
ClanDeathLog : PClanDeathLogEntry; |
10015 | 33 |
|
3038 | 34 |
procedure initModule; |
35 |
procedure freeModule; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
36 |
|
829 | 37 |
procedure AmmoUsed(am: TAmmoType); |
12181
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
38 |
procedure HedgehogPoisoned(Gear: PGear; Attacker: PHedgehog); |
12297
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
39 |
procedure HedgehogSacrificed(Hedgehog: PHedgehog); |
5202 | 40 |
procedure HedgehogDamaged(Gear: PGear; Attacker: PHedgehog; Damage: Longword; killed: boolean); |
12573
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12364
diff
changeset
|
41 |
procedure TargetHit; |
871 | 42 |
procedure Skipped; |
13760
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
43 |
procedure TurnStats; |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
44 |
procedure TurnReaction; |
13766
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
45 |
procedure TurnStatsReset; |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
46 |
procedure SendStats; |
6014 | 47 |
procedure hedgehogFlight(Gear: PGear; time: Longword); |
9409 | 48 |
procedure declareAchievement(id, teamname, location: shortstring; value: LongInt); |
11574 | 49 |
procedure startGhostPoints(n: LongInt); |
50 |
procedure dumpPoint(x, y: LongInt); |
|
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
51 |
|
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
52 |
implementation |
11537 | 53 |
uses uSound, uLocale, uVariables, uUtils, uIO, uCaptions, uMisc, uConsole, uScript; |
4359 | 54 |
|
5203
b77f28facca6
Better tracking of damage source and target when scoring a turn
unc0rr
parents:
5202
diff
changeset
|
55 |
var DamageClan : Longword = 0; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
56 |
DamageTotal : Longword = 0; |
8717
6e1ccd678e8a
this should ensure those other voices play a bit more often.
nemo
parents:
7932
diff
changeset
|
57 |
DamageTurn : Longword = 0; |
12181
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
58 |
PoisonTurn : Longword = 0; // Poisoned enemies per turn |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
59 |
PoisonClan : Longword = 0; // Poisoned own clan members in turn |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
60 |
PoisonTotal : Longword = 0; // Poisoned hogs in whole round |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
61 |
KillsClan : LongWord = 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
62 |
Kills : LongWord = 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
63 |
KillsTotal : LongWord = 0; |
12573
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12364
diff
changeset
|
64 |
HitTargets : LongWord = 0; // Target (gtTarget) hits per turn |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
65 |
AmmoUsedCount : Longword = 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
66 |
AmmoDamagingUsed : boolean = false; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
67 |
SkippedTurns: LongWord = 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
68 |
isTurnSkipped: boolean = false; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
69 |
vpHurtSameClan: PVoicepack = nil; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
70 |
vpHurtEnemy: PVoicepack = nil; |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
71 |
|
12181
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
72 |
procedure HedgehogPoisoned(Gear: PGear; Attacker: PHedgehog); |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
73 |
begin |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
74 |
if Attacker^.Team^.Clan = Gear^.HEdgehog^.Team^.Clan then |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
75 |
begin |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
76 |
vpHurtSameClan:= CurrentHedgehog^.Team^.voicepack; |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
77 |
inc(PoisonClan) |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
78 |
end |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
79 |
else |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
80 |
begin |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
81 |
vpHurtEnemy:= Gear^.Hedgehog^.Team^.voicepack; |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
82 |
inc(PoisonTurn) |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
83 |
end; |
12295
4ce7cb441c75
Call hedgehogs stupid for poisoning themselves
Wuzzy <almikes@aol.com>
parents:
12181
diff
changeset
|
84 |
Gear^.Hedgehog^.stats.StepPoisoned:= true; |
12181
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
85 |
inc(PoisonTotal) |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
86 |
end; |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
87 |
|
12297
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
88 |
procedure HedgehogSacrificed(Hedgehog: PHedgehog); |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
89 |
begin |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
90 |
Hedgehog^.stats.Sacrificed:= true |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
91 |
end; |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
92 |
|
5202 | 93 |
procedure HedgehogDamaged(Gear: PGear; Attacker: PHedgehog; Damage: Longword; killed: boolean); |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
94 |
begin |
4837
2ea0a152c319
Pass PHedgehog instead of PGear to stats. Fixes crash.
unc0rr
parents:
4824
diff
changeset
|
95 |
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
|
96 |
vpHurtSameClan:= CurrentHedgehog^.Team^.voicepack |
1678 | 97 |
else |
4365 | 98 |
vpHurtEnemy:= Gear^.Hedgehog^.Team^.voicepack; |
1678 | 99 |
|
100 |
////////////////////////// |
|
101 |
||
5203
b77f28facca6
Better tracking of damage source and target when scoring a turn
unc0rr
parents:
5202
diff
changeset
|
102 |
inc(Attacker^.stats.StepDamageGiven, Damage); |
b77f28facca6
Better tracking of damage source and target when scoring a turn
unc0rr
parents:
5202
diff
changeset
|
103 |
inc(Gear^.Hedgehog^.stats.StepDamageRecv, Damage); |
815 | 104 |
|
5202 | 105 |
if CurrentHedgehog^.Team^.Clan = Gear^.Hedgehog^.Team^.Clan then inc(DamageClan, Damage); |
815 | 106 |
|
5202 | 107 |
if killed then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
108 |
begin |
12348
6ff01dc1ffe2
Fix Traitor taunt being played when hog w/ heResurrectable drowns w/o damage
Wuzzy <almikes@aol.com>
parents:
12337
diff
changeset
|
109 |
Gear^.Hedgehog^.stats.StepDied:= true; |
5142
cb822f8d52ff
Show winners in console in a special form so this information could be easily parsed
unc0rr
parents:
4976
diff
changeset
|
110 |
inc(Attacker^.stats.StepKills); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
111 |
inc(Kills); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
112 |
inc(KillsTotal); |
5142
cb822f8d52ff
Show winners in console in a special form so this information could be easily parsed
unc0rr
parents:
4976
diff
changeset
|
113 |
inc(Attacker^.Team^.stats.Kills); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
114 |
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
|
115 |
begin |
5142
cb822f8d52ff
Show winners in console in a special form so this information could be easily parsed
unc0rr
parents:
4976
diff
changeset
|
116 |
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
|
117 |
inc(Attacker^.Team^.stats.TeamDamage, Gear^.Damage); |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
118 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
119 |
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
|
120 |
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
|
121 |
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
|
122 |
inc(KillsClan); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
123 |
end; |
815 | 124 |
|
8717
6e1ccd678e8a
this should ensure those other voices play a bit more often.
nemo
parents:
7932
diff
changeset
|
125 |
inc(DamageTotal, Damage); |
6e1ccd678e8a
this should ensure those other voices play a bit more often.
nemo
parents:
7932
diff
changeset
|
126 |
inc(DamageTurn, Damage) |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
127 |
end; |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
128 |
|
12573
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12364
diff
changeset
|
129 |
procedure TargetHit(); |
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12364
diff
changeset
|
130 |
begin |
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12364
diff
changeset
|
131 |
inc(HitTargets) |
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12364
diff
changeset
|
132 |
end; |
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12364
diff
changeset
|
133 |
|
871 | 134 |
procedure Skipped; |
135 |
begin |
|
136 |
inc(SkippedTurns); |
|
137 |
isTurnSkipped:= true |
|
138 |
end; |
|
139 |
||
13760
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
140 |
procedure TurnStats; |
874 | 141 |
var i, t: LongInt; |
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
142 |
c: Longword; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
143 |
newEntry: PClanDeathLogEntry; |
13760
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
144 |
begin |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
145 |
inc(FinishedTurnsTotal); |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
146 |
|
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
147 |
for t:= 0 to Pred(TeamsCount) do // send even on zero turn |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
148 |
with TeamsArray[t]^ do |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
149 |
for i:= 0 to cMaxHHIndex do |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
150 |
with Hedgehogs[i].stats do |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
151 |
begin |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
152 |
inc(DamageRecv, StepDamageRecv); |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
153 |
inc(DamageGiven, StepDamageGiven); |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
154 |
if StepDamageRecv > MaxStepDamageRecv then |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
155 |
MaxStepDamageRecv:= StepDamageRecv; |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
156 |
if StepDamageGiven > MaxStepDamageGiven then |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
157 |
MaxStepDamageGiven:= StepDamageGiven; |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
158 |
if StepKills > MaxStepKills then |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
159 |
MaxStepKills:= StepKills; |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
160 |
end; |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
161 |
|
13763
b1177e9c9ee9
Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents:
13762
diff
changeset
|
162 |
// Write into the death log which clans died in this turn, |
b1177e9c9ee9
Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents:
13762
diff
changeset
|
163 |
// important for final rankings. |
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
164 |
c:= 0; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
165 |
newEntry:= nil; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
166 |
for t:= 0 to Pred(ClansCount) do |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
167 |
with ClansArray[t]^ do |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
168 |
begin |
13763
b1177e9c9ee9
Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents:
13762
diff
changeset
|
169 |
if (ClanHealth = 0) and (ClansArray[t]^.DeathLogged = false) then |
13760
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
170 |
begin |
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
171 |
if c = 0 then |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
172 |
begin |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
173 |
new(newEntry); |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
174 |
newEntry^.Turn := FinishedTurnsTotal; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
175 |
newEntry^.NextEntry := nil; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
176 |
end; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
177 |
|
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
178 |
newEntry^.KilledClans[c]:= ClansArray[t]; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
179 |
inc(c); |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
180 |
newEntry^.KilledClansCount := c; |
13763
b1177e9c9ee9
Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents:
13762
diff
changeset
|
181 |
ClansArray[t]^.DeathLogged:= true; |
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
182 |
end; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
183 |
|
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
184 |
if SendHealthStatsOn then |
13760
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
185 |
SendStat(siClanHealth, IntToStr(Color) + ' ' + IntToStr(ClanHealth)); |
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
186 |
end; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
187 |
if newEntry <> nil then |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
188 |
begin |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
189 |
if ClanDeathLog <> nil then |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
190 |
begin |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
191 |
newEntry^.NextEntry:= ClanDeathLog; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
192 |
end; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
193 |
ClanDeathLog:= newEntry; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
194 |
end; |
13760
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
195 |
|
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
196 |
end; |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
197 |
|
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
198 |
procedure TurnReaction; |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13656
diff
changeset
|
199 |
var killsCheck: LongInt; |
10127 | 200 |
s: ansistring; |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
201 |
begin |
11537 | 202 |
//TryDo(not bBetweenTurns, 'Engine bug: TurnReaction between turns', true); |
1054 | 203 |
|
1625 | 204 |
if FinishedTurnsTotal <> 0 then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
205 |
begin |
10127 | 206 |
s:= ansistring(CurrentHedgehog^.Name); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
207 |
inc(CurrentHedgehog^.stats.FinishedTurns); |
12297
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
208 |
// If the hog sacrificed (=kamikaze/piano) itself, this needs to be taken into accounts for the reactions later |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
209 |
if (CurrentHedgehog^.stats.Sacrificed) then |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
210 |
killsCheck:= 1 |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
211 |
else |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
212 |
killsCheck:= 0; |
870 | 213 |
|
12181
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
214 |
// First blood (first damage, poison or kill) |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
215 |
if ((DamageTotal > 0) or (KillsTotal > 0) or (PoisonTotal > 0)) and ((CurrentHedgehog^.stats.DamageGiven = DamageTotal) and (CurrentHedgehog^.stats.StepKills = KillsTotal) and (PoisonTotal = PoisonTurn + PoisonClan)) then |
5638
e35ba2a400d8
Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents:
5203
diff
changeset
|
216 |
AddVoice(sndFirstBlood, CurrentTeam^.voicepack) |
815 | 217 |
|
12297
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
218 |
// Hog hurts, poisons or kills itself (except sacrifice) |
12348
6ff01dc1ffe2
Fix Traitor taunt being played when hog w/ heResurrectable drowns w/o damage
Wuzzy <almikes@aol.com>
parents:
12337
diff
changeset
|
219 |
else if (CurrentHedgehog^.stats.Sacrificed = false) and ((CurrentHedgehog^.stats.StepDamageRecv > 0) or (CurrentHedgehog^.stats.StepPoisoned) or (CurrentHedgehog^.stats.StepDied)) then |
14019 | 220 |
// Hurting itself only (not drowning) |
14017
7b66a2e9b368
uStats: Fix DamageGiven being counted twice, fix self-damage msg never appearing
Wuzzy <Wuzzy2@mail.ru>
parents:
13883
diff
changeset
|
221 |
if (CurrentHedgehog^.stats.StepDamageGiven = CurrentHedgehog^.stats.StepDamageRecv) and (CurrentHedgehog^.stats.StepDamageRecv >= 1) then |
14019 | 222 |
begin |
223 |
// Announcer message + random taunt |
|
13647
3d14950641a4
Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents:
12923
diff
changeset
|
224 |
AddCaption(FormatA(GetEventString(eidHurtSelf), s), capcolDefault, capgrpMessage); |
14019 | 225 |
if (CurrentHedgehog^.stats.StepDamageGiven <= CurrentHedgehog^.stats.StepDamageRecv) and (CurrentHedgehog^.stats.StepDamageRecv >= 1) then |
226 |
case random(3) of |
|
227 |
0: AddVoice(sndStupid, PreviousTeam^.voicepack); |
|
228 |
1: AddVoice(sndBugger, CurrentTeam^.voicepack); |
|
229 |
2: AddVoice(sndDrat, CurrentTeam^.voicepack); |
|
230 |
end; |
|
231 |
end |
|
232 |
// Hurt itself and others |
|
233 |
else |
|
234 |
AddVoice(sndStupid, PreviousTeam^.voicepack) |
|
5203
b77f28facca6
Better tracking of damage source and target when scoring a turn
unc0rr
parents:
5202
diff
changeset
|
235 |
|
12297
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
236 |
// Hog hurts, poisons or kills own team/clan member. Sacrifice is taken into account |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
237 |
else if (DamageClan <> 0) or (KillsClan > killsCheck) or (PoisonClan <> 0) then |
12162
e837912ba85d
Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents:
12100
diff
changeset
|
238 |
if (DamageTurn > DamageClan) or (Kills > KillsClan) then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
239 |
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
|
240 |
AddVoice(sndNutter, CurrentTeam^.voicepack) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
241 |
else |
5638
e35ba2a400d8
Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents:
5203
diff
changeset
|
242 |
AddVoice(sndWatchIt, vpHurtSameClan) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
243 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
244 |
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
|
245 |
AddVoice(sndSameTeam, vpHurtSameClan) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
246 |
else |
5638
e35ba2a400d8
Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents:
5203
diff
changeset
|
247 |
AddVoice(sndTraitor, vpHurtSameClan) |
5203
b77f28facca6
Better tracking of damage source and target when scoring a turn
unc0rr
parents:
5202
diff
changeset
|
248 |
|
12181
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
249 |
// Hog hurts, kills or poisons enemy |
12297
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
250 |
else if (CurrentHedgehog^.stats.StepDamageGiven <> 0) or (CurrentHedgehog^.stats.StepKills > killsCheck) or (PoisonTurn <> 0) then |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
251 |
if Kills > killsCheck then |
5638
e35ba2a400d8
Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents:
5203
diff
changeset
|
252 |
AddVoice(sndEnemyDown, CurrentTeam^.voicepack) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
253 |
else |
14019 | 254 |
if random(2) = 0 then |
255 |
AddVoice(sndRegret, vpHurtEnemy) |
|
256 |
else |
|
257 |
AddVoice(sndGonnaGetYou, vpHurtEnemy) |
|
1625 | 258 |
|
12162
e837912ba85d
Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents:
12100
diff
changeset
|
259 |
// Missed shot |
12573
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12364
diff
changeset
|
260 |
// A miss is defined as a shot with a damaging weapon with 0 kills, 0 damage, 0 hogs poisoned and 0 targets hit |
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12364
diff
changeset
|
261 |
else if AmmoDamagingUsed and (Kills <= killsCheck) and (PoisonTurn = 0) and (PoisonClan = 0) and (DamageTurn = 0) and (HitTargets = 0) then |
12297
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
262 |
// Chance to call hedgehog stupid if sacrificed for nothing |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
263 |
if CurrentHedgehog^.stats.Sacrificed then |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
264 |
if random(2) = 0 then |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
265 |
AddVoice(sndMissed, PreviousTeam^.voicepack) |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
266 |
else |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
267 |
AddVoice(sndStupid, PreviousTeam^.voicepack) |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
268 |
else |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12296
diff
changeset
|
269 |
AddVoice(sndMissed, PreviousTeam^.voicepack) |
12162
e837912ba85d
Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents:
12100
diff
changeset
|
270 |
|
e837912ba85d
Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents:
12100
diff
changeset
|
271 |
// Timeout |
6290 | 272 |
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
|
273 |
begin end// nothing ? |
12162
e837912ba85d
Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents:
12100
diff
changeset
|
274 |
|
e837912ba85d
Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents:
12100
diff
changeset
|
275 |
// Turn skipped |
12100
e1bca1ebbad9
fix problem with pas2c build. please don't use "and not xyz", use "and (not xyz)"
sheepluva
parents:
11919
diff
changeset
|
276 |
else if isTurnSkipped and (not PlacingHogs) then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
277 |
begin |
11919
c9bad8a01185
Play countdown sounds for 4-1 remaining seconds and “boring” voice on timeout
Wuzzy <almikes@aol.com>
parents:
11574
diff
changeset
|
278 |
AddVoice(sndCoward, PreviousTeam^.voicepack); |
13647
3d14950641a4
Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents:
12923
diff
changeset
|
279 |
AddCaption(FormatA(GetEventString(eidTurnSkipped), s), capcolDefault, capgrpMessage); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
280 |
end |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
281 |
end; |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
282 |
end; |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
283 |
|
13766
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
284 |
procedure TurnStatsReset; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
285 |
var t, i: LongInt; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
286 |
begin |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
287 |
for t:= 0 to Pred(TeamsCount) do // send even on zero turn |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
288 |
with TeamsArray[t]^ do |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
289 |
for i:= 0 to cMaxHHIndex do |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
290 |
with Hedgehogs[i].stats do |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
291 |
begin |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
292 |
StepKills:= 0; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
293 |
StepDamageRecv:= 0; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
294 |
StepDamageGiven:= 0; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
295 |
StepPoisoned:= false; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
296 |
StepDied:= false; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
297 |
end; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
298 |
|
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
299 |
Kills:= 0; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
300 |
KillsClan:= 0; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
301 |
DamageClan:= 0; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
302 |
DamageTurn:= 0; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
303 |
HitTargets:= 0; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
304 |
PoisonClan:= 0; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
305 |
PoisonTurn:= 0; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
306 |
AmmoUsedCount:= 0; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
307 |
AmmoDamagingUsed:= false; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
308 |
isTurnSkipped:= false; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
309 |
end; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
310 |
|
829 | 311 |
procedure AmmoUsed(am: TAmmoType); |
312 |
begin |
|
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
313 |
inc(AmmoUsedCount); |
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
314 |
AmmoDamagingUsed:= AmmoDamagingUsed or Ammoz[am].isDamaging |
829 | 315 |
end; |
316 |
||
6014 | 317 |
procedure hedgehogFlight(Gear: PGear; time: Longword); |
318 |
begin |
|
319 |
if time > 4000 then |
|
320 |
begin |
|
7932
ebe1d112e439
remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents:
7857
diff
changeset
|
321 |
WriteLnToConsole('FLIGHT'); |
ebe1d112e439
remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents:
7857
diff
changeset
|
322 |
WriteLnToConsole(Gear^.Hedgehog^.Team^.TeamName); |
ebe1d112e439
remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents:
7857
diff
changeset
|
323 |
WriteLnToConsole(inttostr(time)); |
ebe1d112e439
remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents:
7857
diff
changeset
|
324 |
WriteLnToConsole( ''); |
6014 | 325 |
end |
326 |
end; |
|
327 |
||
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
328 |
procedure SendStats; |
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
329 |
var i, t, c: LongInt; |
869 | 330 |
msd, msk: Longword; msdhh, mskhh: PHedgehog; |
331 |
mskcnt: Longword; |
|
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
332 |
maxTeamKills : Longword; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
333 |
maxTeamKillsName : shortstring; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
334 |
maxTurnSkips : Longword; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
335 |
maxTurnSkipsName : shortstring; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
336 |
maxTeamDamage : Longword; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
337 |
maxTeamDamageName : shortstring; |
5142
cb822f8d52ff
Show winners in console in a special form so this information could be easily parsed
unc0rr
parents:
4976
diff
changeset
|
338 |
winnersClan : PClan; |
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
339 |
deathEntry : PClanDeathLogEntry; |
13762
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13761
diff
changeset
|
340 |
currentRank: Longword; |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
341 |
begin |
9180
d19c09670ec8
changed variable and function name
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9174
diff
changeset
|
342 |
if SendHealthStatsOn then |
9405 | 343 |
msd:= 0; msdhh:= nil; |
344 |
msk:= 0; mskhh:= nil; |
|
345 |
mskcnt:= 0; |
|
346 |
maxTeamKills := 0; |
|
347 |
maxTurnSkips := 0; |
|
348 |
maxTeamDamage := 0; |
|
349 |
winnersClan:= nil; |
|
13762
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13761
diff
changeset
|
350 |
currentRank:= 0; |
869 | 351 |
|
9405 | 352 |
for t:= 0 to Pred(TeamsCount) do |
353 |
with TeamsArray[t]^ do |
|
354 |
begin |
|
12337
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
355 |
if (not ExtDriven) and SendRankingStatsOn then |
9405 | 356 |
SendStat(siTeamStats, GetTeamStatString(TeamsArray[t])); |
357 |
for i:= 0 to cMaxHHIndex do |
|
358 |
begin |
|
359 |
if Hedgehogs[i].stats.MaxStepDamageGiven > msd then |
|
360 |
begin |
|
361 |
msdhh:= @Hedgehogs[i]; |
|
362 |
msd:= Hedgehogs[i].stats.MaxStepDamageGiven |
|
363 |
end; |
|
364 |
if Hedgehogs[i].stats.MaxStepKills >= msk then |
|
365 |
if Hedgehogs[i].stats.MaxStepKills = msk then |
|
366 |
inc(mskcnt) |
|
367 |
else |
|
368 |
begin |
|
369 |
mskcnt:= 1; |
|
370 |
mskhh:= @Hedgehogs[i]; |
|
371 |
msk:= Hedgehogs[i].stats.MaxStepKills |
|
372 |
end; |
|
373 |
end; |
|
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
374 |
|
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
375 |
{ Send player stats for winner clans/teams. |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
376 |
The clan that survived is ranked 1st. } |
9405 | 377 |
if Clan^.ClanHealth > 0 then |
378 |
begin |
|
379 |
winnersClan:= Clan; |
|
12337
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
380 |
if SendRankingStatsOn then |
13762
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13761
diff
changeset
|
381 |
begin |
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13761
diff
changeset
|
382 |
currentRank:= 1; |
13883
0ce8aad17c24
IFDEF out missing function with FIXME, revert pas2c change in 0ecf77e203c0 as suggested by unc0rr, another string annotation
nemo
parents:
13770
diff
changeset
|
383 |
SendStat(siTeamRank, _S'1'); |
12337
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
384 |
SendStat(siPlayerKills, IntToStr(Clan^.Color) + ' ' + |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
385 |
IntToStr(stats.Kills) + ' ' + TeamName); |
13762
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13761
diff
changeset
|
386 |
end; |
9405 | 387 |
end; |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
388 |
|
9405 | 389 |
{ determine maximum values of TeamKills, TurnSkips, TeamDamage } |
390 |
if stats.TeamKills > maxTeamKills then |
|
391 |
begin |
|
392 |
maxTeamKills := stats.TeamKills; |
|
393 |
maxTeamKillsName := TeamName; |
|
394 |
end; |
|
395 |
if stats.TurnSkips > maxTurnSkips then |
|
396 |
begin |
|
397 |
maxTurnSkips := stats.TurnSkips; |
|
398 |
maxTurnSkipsName := TeamName; |
|
399 |
end; |
|
400 |
if stats.TeamDamage > maxTeamDamage then |
|
401 |
begin |
|
402 |
maxTeamDamage := stats.TeamDamage; |
|
403 |
maxTeamDamageName := TeamName; |
|
404 |
end; |
|
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
405 |
|
9405 | 406 |
end; |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
407 |
|
13762
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13761
diff
changeset
|
408 |
inc(currentRank); |
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13761
diff
changeset
|
409 |
|
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
410 |
{ Now send player stats for loser teams/clans. |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
411 |
The losing clans are ranked in the reverse order they died. |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
412 |
The clan that died last is ranked 2nd, |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
413 |
the clan that died second to last is ranked 3rd, |
13763
b1177e9c9ee9
Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents:
13762
diff
changeset
|
414 |
and so on. |
b1177e9c9ee9
Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents:
13762
diff
changeset
|
415 |
Clans that died in the same turn share their rank. |
b1177e9c9ee9
Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents:
13762
diff
changeset
|
416 |
If a clan died multiple times in the match |
b1177e9c9ee9
Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents:
13762
diff
changeset
|
417 |
(e.g. due to resurrection), only the *latest* death of |
b1177e9c9ee9
Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents:
13762
diff
changeset
|
418 |
that clan counts (handled in gtResurrector). |
b1177e9c9ee9
Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents:
13762
diff
changeset
|
419 |
} |
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
420 |
deathEntry := ClanDeathLog; |
13762
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13761
diff
changeset
|
421 |
i:= 0; |
12337
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
422 |
if SendRankingStatsOn then |
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
423 |
while (deathEntry <> nil) do |
9405 | 424 |
begin |
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
425 |
for c:= 0 to Pred(deathEntry^.KilledClansCount) do |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
426 |
if ((deathEntry^.KilledClans[c]^.ClanHealth) = 0) and (not deathEntry^.KilledClans[c]^.StatsHandled) then |
12337
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
427 |
begin |
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
428 |
for t:= 0 to Pred(TeamsCount) do |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
429 |
if TeamsArray[t]^.Clan^.ClanIndex = deathEntry^.KilledClans[c]^.ClanIndex then |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
430 |
begin |
13762
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13761
diff
changeset
|
431 |
SendStat(siTeamRank, IntToStr(currentRank)); |
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
432 |
SendStat(siPlayerKills, IntToStr(deathEntry^.killedClans[c]^.Color) + ' ' + |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
433 |
IntToStr(TeamsArray[t]^.stats.Kills) + ' ' + TeamsArray[t]^.TeamName); |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
434 |
end; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
435 |
deathEntry^.KilledClans[c]^.StatsHandled:= true; |
13770
3d2a7c563d8e
Fix clan ranking counter advancing per-team instaed of per-clan in case of a tie
Wuzzy <Wuzzy2@mail.ru>
parents:
13766
diff
changeset
|
436 |
inc(i); |
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
437 |
end; |
13762
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13761
diff
changeset
|
438 |
if i > 0 then |
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13761
diff
changeset
|
439 |
inc(currentRank, i); |
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13761
diff
changeset
|
440 |
i:= 0; |
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
441 |
deathEntry:= deathEntry^.NextEntry; |
9405 | 442 |
end; |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
443 |
|
12337
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
444 |
// “Achievements” / Details part of stats screen |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
445 |
if SendAchievementsStatsOn then |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
446 |
begin |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
447 |
if msdhh <> nil then |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
448 |
SendStat(siMaxStepDamage, IntToStr(msd) + ' ' + msdhh^.Name + ' (' + msdhh^.Team^.TeamName + ')'); |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
449 |
if mskcnt = 1 then |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
450 |
SendStat(siMaxStepKills, IntToStr(msk) + ' ' + mskhh^.Name + ' (' + mskhh^.Team^.TeamName + ')'); |
869 | 451 |
|
12337
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
452 |
if maxTeamKills > 1 then |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
453 |
SendStat(siMaxTeamKills, IntToStr(maxTeamKills) + ' ' + maxTeamKillsName); |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
454 |
if maxTurnSkips > 2 then |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
455 |
SendStat(siMaxTurnSkips, IntToStr(maxTurnSkips) + ' ' + maxTurnSkipsName); |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
456 |
if maxTeamDamage > 30 then |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
457 |
SendStat(siMaxTeamDamage, IntToStr(maxTeamDamage) + ' ' + maxTeamDamageName); |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
458 |
|
12337
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
459 |
if KilledHHs > 0 then |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
460 |
SendStat(siKilledHHs, IntToStr(KilledHHs)); |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12297
diff
changeset
|
461 |
end; |
5142
cb822f8d52ff
Show winners in console in a special form so this information could be easily parsed
unc0rr
parents:
4976
diff
changeset
|
462 |
|
9405 | 463 |
// now to console |
10015 | 464 |
if winnersClan <> nil then |
9405 | 465 |
begin |
466 |
WriteLnToConsole('WINNERS'); |
|
9397 | 467 |
WriteLnToConsole(inttostr(winnersClan^.TeamsNumber)); |
9405 | 468 |
for t:= 0 to winnersClan^.TeamsNumber - 1 do |
469 |
WriteLnToConsole(winnersClan^.Teams[t]^.TeamName); |
|
470 |
end |
|
471 |
else |
|
472 |
WriteLnToConsole('DRAW'); |
|
10015 | 473 |
|
9397 | 474 |
ScriptCall('onAchievementsDeclaration'); |
475 |
end; |
|
6014 | 476 |
|
9409 | 477 |
procedure declareAchievement(id, teamname, location: shortstring; value: LongInt); |
10015 | 478 |
begin |
9411
d95ac9992529
Fix script flaw in detection of best team when sending achievement info
unc0rr
parents:
9409
diff
changeset
|
479 |
if (length(id) = 0) or (length(teamname) = 0) or (length(location) = 0) then exit; |
9397 | 480 |
WriteLnToConsole('ACHIEVEMENT'); |
481 |
WriteLnToConsole(id); |
|
482 |
WriteLnToConsole(teamname); |
|
9409 | 483 |
WriteLnToConsole(location); |
9397 | 484 |
WriteLnToConsole(inttostr(value)); |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
485 |
end; |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
486 |
|
11574 | 487 |
procedure startGhostPoints(n: LongInt); |
488 |
begin |
|
489 |
WriteLnToConsole('GHOST_POINTS'); |
|
490 |
WriteLnToConsole(inttostr(n)); |
|
491 |
end; |
|
492 |
||
493 |
procedure dumpPoint(x, y: LongInt); |
|
494 |
begin |
|
495 |
WriteLnToConsole(inttostr(x)); |
|
496 |
WriteLnToConsole(inttostr(y)); |
|
497 |
end; |
|
498 |
||
3038 | 499 |
procedure initModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
500 |
begin |
11574 | 501 |
DamageClan := 0; |
502 |
DamageTotal := 0; |
|
503 |
DamageTurn := 0; |
|
12181
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
504 |
PoisonClan := 0; |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12162
diff
changeset
|
505 |
PoisonTurn := 0; |
11574 | 506 |
KillsClan := 0; |
507 |
Kills := 0; |
|
508 |
KillsTotal := 0; |
|
12573
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12364
diff
changeset
|
509 |
HitTargets := 0; |
11574 | 510 |
AmmoUsedCount := 0; |
511 |
AmmoDamagingUsed := false; |
|
512 |
SkippedTurns:= 0; |
|
513 |
isTurnSkipped:= false; |
|
514 |
vpHurtSameClan:= nil; |
|
515 |
vpHurtEnemy:= nil; |
|
13656
56a925256039
Add separate TotalRounds var for Lua to count the *actual* number of rounds that have been played
Wuzzy <Wuzzy2@mail.ru>
parents:
13647
diff
changeset
|
516 |
TotalRoundsPre:= -1; |
56a925256039
Add separate TotalRounds var for Lua to count the *actual* number of rounds that have been played
Wuzzy <Wuzzy2@mail.ru>
parents:
13647
diff
changeset
|
517 |
TotalRoundsReal:= -1; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
518 |
FinishedTurnsTotal:= -1; |
13761
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
519 |
ClanDeathLog:= nil; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
520 |
end; |
3697 | 521 |
|
3038 | 522 |
procedure freeModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
523 |
begin |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
524 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
525 |
|
2619 | 526 |
end. |