author | alfadur |
Thu, 07 Feb 2019 22:26:56 +0300 | |
changeset 14717 | 8a45c90f4580 |
parent 14638 | 244699a97734 |
child 14906 | 0ec83cc2365e |
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 |
|
13651
56a925256039
Add separate TotalRounds var for Lua to count the *actual* number of rounds that have been played
Wuzzy <Wuzzy2@mail.ru>
parents:
13642
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:
13642
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; |
14616
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
28 |
// Variables to disable certain portions of game stats (set by Lua) |
12332
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
29 |
SendGameResultOn : boolean = true; |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
30 |
SendRankingStatsOn : boolean = true; |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
31 |
SendAchievementsStatsOn : boolean = true; |
9180
d19c09670ec8
changed variable and function name
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9174
diff
changeset
|
32 |
SendHealthStatsOn : boolean = true; |
14616
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
33 |
// Clan death log, used for game stats |
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
34 |
ClanDeathLog : PClanDeathLogEntry; |
10015 | 35 |
|
3038 | 36 |
procedure initModule; |
37 |
procedure freeModule; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
38 |
|
829 | 39 |
procedure AmmoUsed(am: TAmmoType); |
12176
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12157
diff
changeset
|
40 |
procedure HedgehogPoisoned(Gear: PGear; Attacker: PHedgehog); |
12292
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12291
diff
changeset
|
41 |
procedure HedgehogSacrificed(Hedgehog: PHedgehog); |
5202 | 42 |
procedure HedgehogDamaged(Gear: PGear; Attacker: PHedgehog; Damage: Longword; killed: boolean); |
12568
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12359
diff
changeset
|
43 |
procedure TargetHit; |
871 | 44 |
procedure Skipped; |
13757
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
45 |
procedure TurnStats; |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
46 |
procedure TurnReaction; |
13763
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
47 |
procedure TurnStatsReset; |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
48 |
procedure SendStats; |
6014 | 49 |
procedure hedgehogFlight(Gear: PGear; time: Longword); |
9409 | 50 |
procedure declareAchievement(id, teamname, location: shortstring; value: LongInt); |
11569 | 51 |
procedure startGhostPoints(n: LongInt); |
52 |
procedure dumpPoint(x, y: LongInt); |
|
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
53 |
|
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
54 |
implementation |
11532 | 55 |
uses uSound, uLocale, uVariables, uUtils, uIO, uCaptions, uMisc, uConsole, uScript; |
4359 | 56 |
|
14616
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
57 |
var DamageClan : Longword = 0; // Damage of own clan in turn |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
58 |
DamageTeam : Longword = 0; // Damage of own team tin turn |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
59 |
DamageTotal : Longword = 0; // Total damage dealt in game |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
60 |
DamageTurn : Longword = 0; // Damage in turn |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
61 |
PoisonTurn : Longword = 0; // Poisoned enemies in turn |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
62 |
PoisonClan : Longword = 0; // Poisoned own clan members in turn |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
63 |
PoisonTeam : Longword = 0; // Poisoned own team members in turn |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
64 |
PoisonTotal : Longword = 0; // Poisoned hogs in whole round |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
65 |
KillsClan : LongWord = 0; // Own clan members killed in turn |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
66 |
KillsTeam : LongWord = 0; // Own team members killed in turn |
14617
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
67 |
KillsSD : LongWord = 0; // Killed hedgehogs in turn that died by Sudden Death water rise |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
68 |
Kills : LongWord = 0; // Killed hedgehogs in turn (including those that died by Sudden Death water rise) |
14616
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
69 |
KillsTotal : LongWord = 0; // Total killed hedgehogs in game |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
70 |
HitTargets : LongWord = 0; // Target (gtTarget) hits in turn |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
71 |
AmmoUsedCount : Longword = 0; // Number of times an ammo has been used this turn |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
72 |
AmmoDamagingUsed : boolean = false; // true if damaging ammo was used in turn |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
73 |
FirstBlood : boolean = false; // true if the “First blood” taunt has been used in this game |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
74 |
LeaveMeAlone : boolean = false; // true if the “Leave me alone” taunt is to be used this turn |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
75 |
SkippedTurns: LongWord = 0; // number of skipped turns in game |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
76 |
isTurnSkipped: boolean = false; // true if this turn was skipped |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
77 |
vpHurtSameClan: PVoicepack = nil; // voicepack of current clan (used for taunts) |
fa908241798f
Comment all important variables in uStats
Wuzzy <Wuzzy2@mail.ru>
parents:
14566
diff
changeset
|
78 |
vpHurtEnemy: PVoicepack = nil; // voicepack of enemy (used for taunts) |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
79 |
|
12176
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12157
diff
changeset
|
80 |
procedure HedgehogPoisoned(Gear: PGear; Attacker: PHedgehog); |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12157
diff
changeset
|
81 |
begin |
14059
1ac129df8e5b
Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents:
14058
diff
changeset
|
82 |
if Attacker^.Team^.Clan = Gear^.Hedgehog^.Team^.Clan then |
12176
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12157
diff
changeset
|
83 |
begin |
14059
1ac129df8e5b
Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents:
14058
diff
changeset
|
84 |
vpHurtSameClan:= Gear^.Hedgehog^.Team^.voicepack; |
1ac129df8e5b
Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents:
14058
diff
changeset
|
85 |
inc(PoisonClan); |
1ac129df8e5b
Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents:
14058
diff
changeset
|
86 |
if Attacker^.Team = Gear^.Hedgehog^.Team then |
1ac129df8e5b
Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents:
14058
diff
changeset
|
87 |
inc(PoisonTeam); |
12176
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12157
diff
changeset
|
88 |
end |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12157
diff
changeset
|
89 |
else |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12157
diff
changeset
|
90 |
begin |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12157
diff
changeset
|
91 |
vpHurtEnemy:= Gear^.Hedgehog^.Team^.voicepack; |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12157
diff
changeset
|
92 |
inc(PoisonTurn) |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12157
diff
changeset
|
93 |
end; |
12290
4ce7cb441c75
Call hedgehogs stupid for poisoning themselves
Wuzzy <almikes@aol.com>
parents:
12176
diff
changeset
|
94 |
Gear^.Hedgehog^.stats.StepPoisoned:= true; |
12176
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12157
diff
changeset
|
95 |
inc(PoisonTotal) |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12157
diff
changeset
|
96 |
end; |
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12157
diff
changeset
|
97 |
|
12292
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12291
diff
changeset
|
98 |
procedure HedgehogSacrificed(Hedgehog: PHedgehog); |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12291
diff
changeset
|
99 |
begin |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12291
diff
changeset
|
100 |
Hedgehog^.stats.Sacrificed:= true |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12291
diff
changeset
|
101 |
end; |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12291
diff
changeset
|
102 |
|
5202 | 103 |
procedure HedgehogDamaged(Gear: PGear; Attacker: PHedgehog; Damage: Longword; killed: boolean); |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
104 |
begin |
4837
2ea0a152c319
Pass PHedgehog instead of PGear to stats. Fixes crash.
unc0rr
parents:
4824
diff
changeset
|
105 |
if Attacker^.Team^.Clan = Gear^.Hedgehog^.Team^.Clan then |
14059
1ac129df8e5b
Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents:
14058
diff
changeset
|
106 |
vpHurtSameClan:= Gear^.Hedgehog^.Team^.voicepack |
1678 | 107 |
else |
14055 | 108 |
begin |
4365 | 109 |
vpHurtEnemy:= Gear^.Hedgehog^.Team^.voicepack; |
14618
6d2954037e57
Make hog kill stat stuff consistent WRT SD water rise
Wuzzy <Wuzzy2@mail.ru>
parents:
14617
diff
changeset
|
110 |
if (not killed) and (not bDuringWaterRise) then |
14055 | 111 |
begin |
14056
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
112 |
// Check if victim got attacked by RevengeHog again |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
113 |
if (Gear^.Hedgehog^.RevengeHog <> nil) and (Gear^.Hedgehog^.RevengeHog = Attacker) then |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
114 |
LeaveMeAlone:= true; |
14055 | 115 |
// Check if attacker got revenge |
116 |
if (Attacker^.RevengeHog <> nil) and (Attacker^.RevengeHog = Gear^.Hedgehog) then |
|
117 |
begin |
|
118 |
Attacker^.stats.GotRevenge:= true; |
|
14056
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
119 |
// Also reset the "in-row" counter to restore LeaveMeAlone/CutItOut taunts |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
120 |
Attacker^.stats.StepDamageRecvInRow:= 0; |
14055 | 121 |
Attacker^.RevengeHog:= nil; |
122 |
end |
|
123 |
// If not, victim remembers their attacker to plan *their* revenge |
|
124 |
else |
|
125 |
Gear^.Hedgehog^.RevengeHog:= Attacker; |
|
126 |
end |
|
127 |
end; |
|
1678 | 128 |
|
129 |
////////////////////////// |
|
130 |
||
14618
6d2954037e57
Make hog kill stat stuff consistent WRT SD water rise
Wuzzy <Wuzzy2@mail.ru>
parents:
14617
diff
changeset
|
131 |
if (not bDuringWaterRise) then |
6d2954037e57
Make hog kill stat stuff consistent WRT SD water rise
Wuzzy <Wuzzy2@mail.ru>
parents:
14617
diff
changeset
|
132 |
begin |
6d2954037e57
Make hog kill stat stuff consistent WRT SD water rise
Wuzzy <Wuzzy2@mail.ru>
parents:
14617
diff
changeset
|
133 |
inc(Attacker^.stats.StepDamageGiven, Damage); |
6d2954037e57
Make hog kill stat stuff consistent WRT SD water rise
Wuzzy <Wuzzy2@mail.ru>
parents:
14617
diff
changeset
|
134 |
inc(Gear^.Hedgehog^.stats.StepDamageRecv, Damage); |
6d2954037e57
Make hog kill stat stuff consistent WRT SD water rise
Wuzzy <Wuzzy2@mail.ru>
parents:
14617
diff
changeset
|
135 |
end; |
815 | 136 |
|
5202 | 137 |
if CurrentHedgehog^.Team^.Clan = Gear^.Hedgehog^.Team^.Clan then inc(DamageClan, Damage); |
14059
1ac129df8e5b
Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents:
14058
diff
changeset
|
138 |
if CurrentHedgehog^.Team = Gear^.Hedgehog^.Team then inc(DamageTeam, Damage); |
815 | 139 |
|
5202 | 140 |
if killed then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
141 |
begin |
12343
6ff01dc1ffe2
Fix Traitor taunt being played when hog w/ heResurrectable drowns w/o damage
Wuzzy <almikes@aol.com>
parents:
12332
diff
changeset
|
142 |
Gear^.Hedgehog^.stats.StepDied:= true; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
143 |
inc(Kills); |
14617
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
144 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
145 |
inc(KillsTotal); |
14617
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
146 |
|
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
147 |
if bDuringWaterRise then |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
148 |
inc(KillsSD) |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
149 |
else |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
150 |
begin |
14618
6d2954037e57
Make hog kill stat stuff consistent WRT SD water rise
Wuzzy <Wuzzy2@mail.ru>
parents:
14617
diff
changeset
|
151 |
inc(Attacker^.stats.StepKills); |
14617
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
152 |
inc(Attacker^.Team^.stats.Kills); |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
153 |
if (Attacker^.Team^.TeamName = Gear^.Hedgehog^.Team^.TeamName) then |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
154 |
begin |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
155 |
inc(Attacker^.Team^.stats.TeamKills); |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
156 |
inc(Attacker^.Team^.stats.TeamDamage, Gear^.Damage); |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
157 |
end; |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
158 |
if Gear = Attacker^.Gear then |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
159 |
inc(Attacker^.Team^.stats.Suicides); |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
160 |
if Attacker^.Team^.Clan = Gear^.Hedgehog^.Team^.Clan then |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
161 |
begin |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
162 |
inc(KillsClan); |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
163 |
if Attacker^.Team = Gear^.Hedgehog^.Team then |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
164 |
inc(KillsTeam); |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
165 |
end; |
14059
1ac129df8e5b
Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents:
14058
diff
changeset
|
166 |
end; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
167 |
end; |
815 | 168 |
|
8717
6e1ccd678e8a
this should ensure those other voices play a bit more often.
nemo
parents:
7932
diff
changeset
|
169 |
inc(DamageTotal, Damage); |
6e1ccd678e8a
this should ensure those other voices play a bit more often.
nemo
parents:
7932
diff
changeset
|
170 |
inc(DamageTurn, Damage) |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
171 |
end; |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
172 |
|
12568
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12359
diff
changeset
|
173 |
procedure TargetHit(); |
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12359
diff
changeset
|
174 |
begin |
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12359
diff
changeset
|
175 |
inc(HitTargets) |
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12359
diff
changeset
|
176 |
end; |
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12359
diff
changeset
|
177 |
|
871 | 178 |
procedure Skipped; |
179 |
begin |
|
180 |
inc(SkippedTurns); |
|
181 |
isTurnSkipped:= true |
|
182 |
end; |
|
183 |
||
13757
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
184 |
procedure TurnStats; |
874 | 185 |
var i, t: LongInt; |
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
186 |
c: Longword; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
187 |
newEntry: PClanDeathLogEntry; |
13757
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
188 |
begin |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
189 |
inc(FinishedTurnsTotal); |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
190 |
|
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
191 |
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:
13651
diff
changeset
|
192 |
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:
13651
diff
changeset
|
193 |
for i:= 0 to cMaxHHIndex do |
14056
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
194 |
begin |
13757
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
195 |
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:
13651
diff
changeset
|
196 |
begin |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
197 |
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:
13651
diff
changeset
|
198 |
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:
13651
diff
changeset
|
199 |
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:
13651
diff
changeset
|
200 |
MaxStepDamageRecv:= StepDamageRecv; |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
201 |
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:
13651
diff
changeset
|
202 |
MaxStepDamageGiven:= StepDamageGiven; |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
203 |
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:
13651
diff
changeset
|
204 |
MaxStepKills:= StepKills; |
14056
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
205 |
if (Hedgehogs[i].Team <> nil) and (Hedgehogs[i].Team^.Clan^.ClanIndex <> CurrentHedgehog^.Team^.Clan^.ClanIndex) then |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
206 |
begin |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
207 |
if StepDamageRecv > 0 then |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
208 |
inc(StepDamageRecvInRow) |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
209 |
else |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
210 |
StepDamageRecvInRow:= 0; |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
211 |
if StepDamageRecvInRow >= 3 then |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
212 |
LeaveMeAlone:= true; |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
213 |
end; |
13757
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
214 |
end; |
14056
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
215 |
end; |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
216 |
|
13757
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
217 |
|
13760
b1177e9c9ee9
Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents:
13759
diff
changeset
|
218 |
// 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:
13759
diff
changeset
|
219 |
// important for final rankings. |
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
220 |
c:= 0; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
221 |
newEntry:= nil; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
222 |
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:
13757
diff
changeset
|
223 |
with ClansArray[t]^ do |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
224 |
begin |
13760
b1177e9c9ee9
Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents:
13759
diff
changeset
|
225 |
if (ClanHealth = 0) and (ClansArray[t]^.DeathLogged = false) then |
13757
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
226 |
begin |
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
227 |
if c = 0 then |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
228 |
begin |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
229 |
new(newEntry); |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
230 |
newEntry^.Turn := FinishedTurnsTotal; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
231 |
newEntry^.NextEntry := nil; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
232 |
end; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
233 |
|
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
234 |
newEntry^.KilledClans[c]:= ClansArray[t]; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
235 |
inc(c); |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
236 |
newEntry^.KilledClansCount := c; |
13760
b1177e9c9ee9
Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents:
13759
diff
changeset
|
237 |
ClansArray[t]^.DeathLogged:= true; |
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
238 |
end; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
239 |
|
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
240 |
if SendHealthStatsOn then |
13757
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
241 |
SendStat(siClanHealth, IntToStr(Color) + ' ' + IntToStr(ClanHealth)); |
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
242 |
end; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
243 |
if newEntry <> nil then |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
244 |
begin |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
245 |
if ClanDeathLog <> nil then |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
246 |
begin |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
247 |
newEntry^.NextEntry:= ClanDeathLog; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
248 |
end; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
249 |
ClanDeathLog:= newEntry; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
250 |
end; |
13757
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
251 |
|
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
252 |
end; |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
253 |
|
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
254 |
procedure TurnReaction; |
6908d1e65cdc
Rip out stats code from TurnReaction and put it into new function TurnStats. Fixes buggy stats
Wuzzy <Wuzzy2@mail.ru>
parents:
13651
diff
changeset
|
255 |
var killsCheck: LongInt; |
10127 | 256 |
s: ansistring; |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
257 |
begin |
11532 | 258 |
//TryDo(not bBetweenTurns, 'Engine bug: TurnReaction between turns', true); |
1054 | 259 |
|
1625 | 260 |
if FinishedTurnsTotal <> 0 then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
261 |
begin |
10127 | 262 |
s:= ansistring(CurrentHedgehog^.Name); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
263 |
inc(CurrentHedgehog^.stats.FinishedTurns); |
14617
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
264 |
|
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
265 |
// killsCheck is used to take deaths into account that were not a traditional "kill" |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
266 |
// Hogs that died during SD water rise do not count as "kills" for taunts |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
267 |
killsCheck:= KillsSD; |
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
268 |
// If the hog sacrificed (=kamikaze/piano) itself, this needs to be taken into account for the reactions later |
12292
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12291
diff
changeset
|
269 |
if (CurrentHedgehog^.stats.Sacrificed) then |
14617
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
270 |
inc(killsCheck); |
870 | 271 |
|
12176
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12157
diff
changeset
|
272 |
// First blood (first damage, poison or kill) |
14566
adf3e7d94db0
Don't say "first blood" in games with only 1 clan
Wuzzy <Wuzzy2@mail.ru>
parents:
14486
diff
changeset
|
273 |
if (not FirstBlood) and (ClansCount > 1) and ((DamageTotal > 0) or (KillsTotal > 0) or (PoisonTotal > 0)) and ((CurrentHedgehog^.stats.DamageGiven = DamageTotal) and (CurrentHedgehog^.stats.StepKills = KillsTotal) and (PoisonTotal = PoisonTurn + PoisonClan)) then |
14425
9561bf634b21
Fix "first blood" taunt being repeated if same hog got hurt again
Wuzzy <Wuzzy2@mail.ru>
parents:
14387
diff
changeset
|
274 |
begin |
9561bf634b21
Fix "first blood" taunt being repeated if same hog got hurt again
Wuzzy <Wuzzy2@mail.ru>
parents:
14387
diff
changeset
|
275 |
FirstBlood:= true; |
9561bf634b21
Fix "first blood" taunt being repeated if same hog got hurt again
Wuzzy <Wuzzy2@mail.ru>
parents:
14387
diff
changeset
|
276 |
AddVoice(sndFirstBlood, CurrentTeam^.voicepack); |
9561bf634b21
Fix "first blood" taunt being repeated if same hog got hurt again
Wuzzy <Wuzzy2@mail.ru>
parents:
14387
diff
changeset
|
277 |
end |
815 | 278 |
|
12292
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12291
diff
changeset
|
279 |
// Hog hurts, poisons or kills itself (except sacrifice) |
12343
6ff01dc1ffe2
Fix Traitor taunt being played when hog w/ heResurrectable drowns w/o damage
Wuzzy <almikes@aol.com>
parents:
12332
diff
changeset
|
280 |
else if (CurrentHedgehog^.stats.Sacrificed = false) and ((CurrentHedgehog^.stats.StepDamageRecv > 0) or (CurrentHedgehog^.stats.StepPoisoned) or (CurrentHedgehog^.stats.StepDied)) then |
14041
bc61809bfb1e
Don't play sndDrat or sndBugger on self-kill
Wuzzy <Wuzzy2@mail.ru>
parents:
14036
diff
changeset
|
281 |
// Hurt itself only (without dying) |
bc61809bfb1e
Don't play sndDrat or sndBugger on self-kill
Wuzzy <Wuzzy2@mail.ru>
parents:
14036
diff
changeset
|
282 |
if (CurrentHedgehog^.stats.StepDamageGiven = CurrentHedgehog^.stats.StepDamageRecv) and (CurrentHedgehog^.stats.StepDamageRecv >= 1) and (not CurrentHedgehog^.stats.StepDied) then |
14035 | 283 |
begin |
284 |
// Announcer message + random taunt |
|
13642
3d14950641a4
Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents:
12918
diff
changeset
|
285 |
AddCaption(FormatA(GetEventString(eidHurtSelf), s), capcolDefault, capgrpMessage); |
14035 | 286 |
if (CurrentHedgehog^.stats.StepDamageGiven <= CurrentHedgehog^.stats.StepDamageRecv) and (CurrentHedgehog^.stats.StepDamageRecv >= 1) then |
287 |
case random(3) of |
|
288 |
0: AddVoice(sndStupid, PreviousTeam^.voicepack); |
|
289 |
1: AddVoice(sndBugger, CurrentTeam^.voicepack); |
|
290 |
2: AddVoice(sndDrat, CurrentTeam^.voicepack); |
|
291 |
end; |
|
292 |
end |
|
14041
bc61809bfb1e
Don't play sndDrat or sndBugger on self-kill
Wuzzy <Wuzzy2@mail.ru>
parents:
14036
diff
changeset
|
293 |
// Hurt itself and others, or died |
14035 | 294 |
else |
295 |
AddVoice(sndStupid, PreviousTeam^.voicepack) |
|
5203
b77f28facca6
Better tracking of damage source and target when scoring a turn
unc0rr
parents:
5202
diff
changeset
|
296 |
|
12292
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12291
diff
changeset
|
297 |
// Hog hurts, poisons or kills own team/clan member. Sacrifice is taken into account |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12291
diff
changeset
|
298 |
else if (DamageClan <> 0) or (KillsClan > killsCheck) or (PoisonClan <> 0) then |
14617
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
299 |
if (DamageTurn > DamageClan) or ((Kills-KillsSD) > KillsClan) then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
300 |
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
|
301 |
AddVoice(sndNutter, CurrentTeam^.voicepack) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
302 |
else |
5638
e35ba2a400d8
Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents:
5203
diff
changeset
|
303 |
AddVoice(sndWatchIt, vpHurtSameClan) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
304 |
else |
14059
1ac129df8e5b
Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents:
14058
diff
changeset
|
305 |
// Attacked same team |
1ac129df8e5b
Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents:
14058
diff
changeset
|
306 |
if (random(2) = 0) and ((DamageTeam <> 0) or (KillsTeam > killsCheck) or (PoisonTeam <> 0)) then |
5638
e35ba2a400d8
Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents:
5203
diff
changeset
|
307 |
AddVoice(sndSameTeam, vpHurtSameClan) |
14059
1ac129df8e5b
Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents:
14058
diff
changeset
|
308 |
// Attacked same team or a clan member |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
309 |
else |
5638
e35ba2a400d8
Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents:
5203
diff
changeset
|
310 |
AddVoice(sndTraitor, vpHurtSameClan) |
5203
b77f28facca6
Better tracking of damage source and target when scoring a turn
unc0rr
parents:
5202
diff
changeset
|
311 |
|
12176
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12157
diff
changeset
|
312 |
// Hog hurts, kills or poisons enemy |
12292
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12291
diff
changeset
|
313 |
else if (CurrentHedgehog^.stats.StepDamageGiven <> 0) or (CurrentHedgehog^.stats.StepKills > killsCheck) or (PoisonTurn <> 0) then |
14036
544b32038664
Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents:
14035
diff
changeset
|
314 |
// 3 kills or more |
544b32038664
Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents:
14035
diff
changeset
|
315 |
if Kills > killsCheck + 2 then |
544b32038664
Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents:
14035
diff
changeset
|
316 |
AddVoice(sndAmazing, CurrentTeam^.voicepack) |
544b32038664
Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents:
14035
diff
changeset
|
317 |
// 2 kills |
544b32038664
Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents:
14035
diff
changeset
|
318 |
else if Kills = (killsCheck + 2) then |
544b32038664
Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents:
14035
diff
changeset
|
319 |
if random(2) = 0 then |
544b32038664
Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents:
14035
diff
changeset
|
320 |
AddVoice(sndBrilliant, CurrentTeam^.voicepack) |
544b32038664
Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents:
14035
diff
changeset
|
321 |
else |
544b32038664
Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents:
14035
diff
changeset
|
322 |
AddVoice(sndExcellent, CurrentTeam^.voicepack) |
544b32038664
Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents:
14035
diff
changeset
|
323 |
// 1 kill |
544b32038664
Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents:
14035
diff
changeset
|
324 |
else if Kills = (killsCheck + 1) then |
5638
e35ba2a400d8
Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents:
5203
diff
changeset
|
325 |
AddVoice(sndEnemyDown, CurrentTeam^.voicepack) |
14036
544b32038664
Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents:
14035
diff
changeset
|
326 |
// 0 kills, only damage or poison |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
327 |
else |
14056
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
328 |
// possible reactions of victim, in the order of preference: |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
329 |
// 1. claiming revenge |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
330 |
// 2. complaining about getting attacked too often |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
331 |
// 3. threatening enemy with retaliation |
14055 | 332 |
if CurrentHedgehog^.stats.GotRevenge then |
14058
bf8b7c166b3c
Play another voice as fallback if sndRevenge could not be found
Wuzzy <Wuzzy2@mail.ru>
parents:
14056
diff
changeset
|
333 |
begin |
bf8b7c166b3c
Play another voice as fallback if sndRevenge could not be found
Wuzzy <Wuzzy2@mail.ru>
parents:
14056
diff
changeset
|
334 |
AddVoice(sndRevenge, CurrentHedgehog^.Team^.voicepack); |
bf8b7c166b3c
Play another voice as fallback if sndRevenge could not be found
Wuzzy <Wuzzy2@mail.ru>
parents:
14056
diff
changeset
|
335 |
// If revenge taunt was added, one of the following voices is |
bf8b7c166b3c
Play another voice as fallback if sndRevenge could not be found
Wuzzy <Wuzzy2@mail.ru>
parents:
14056
diff
changeset
|
336 |
// added as fallback (4th param), in case of a missing Revenge sound file. |
14063
006f97a6f6a7
Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents:
14059
diff
changeset
|
337 |
case random(4) of |
006f97a6f6a7
Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents:
14059
diff
changeset
|
338 |
0: AddVoice(sndRegret, vpHurtEnemy, false, true); |
006f97a6f6a7
Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents:
14059
diff
changeset
|
339 |
1: AddVoice(sndGonnaGetYou, vpHurtEnemy, false, true); |
006f97a6f6a7
Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents:
14059
diff
changeset
|
340 |
2: AddVoice(sndIllGetYou, vpHurtEnemy, false, true); |
006f97a6f6a7
Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents:
14059
diff
changeset
|
341 |
3: AddVoice(sndJustYouWait, vpHurtEnemy, false, true); |
006f97a6f6a7
Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents:
14059
diff
changeset
|
342 |
end; |
14058
bf8b7c166b3c
Play another voice as fallback if sndRevenge could not be found
Wuzzy <Wuzzy2@mail.ru>
parents:
14056
diff
changeset
|
343 |
end |
14035 | 344 |
else |
14056
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
345 |
if LeaveMeAlone then |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
346 |
if random(2) = 0 then |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
347 |
AddVoice(sndCutItOut, vpHurtEnemy) |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
348 |
else |
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
349 |
AddVoice(sndLeaveMeAlone, vpHurtEnemy) |
14055 | 350 |
else |
14063
006f97a6f6a7
Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents:
14059
diff
changeset
|
351 |
case random(4) of |
006f97a6f6a7
Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents:
14059
diff
changeset
|
352 |
0: AddVoice(sndRegret, vpHurtEnemy); |
006f97a6f6a7
Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents:
14059
diff
changeset
|
353 |
1: AddVoice(sndGonnaGetYou, vpHurtEnemy); |
006f97a6f6a7
Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents:
14059
diff
changeset
|
354 |
2: AddVoice(sndIllGetYou, vpHurtEnemy); |
006f97a6f6a7
Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents:
14059
diff
changeset
|
355 |
3: AddVoice(sndJustYouWait, vpHurtEnemy); |
006f97a6f6a7
Enemy/AI hogs now say “Hmm” on turn start. Use IllGetYou/JustYouWait for hit after attack
Wuzzy <Wuzzy2@mail.ru>
parents:
14059
diff
changeset
|
356 |
end |
1625 | 357 |
|
12157
e837912ba85d
Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents:
12095
diff
changeset
|
358 |
// Missed shot |
12568
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12359
diff
changeset
|
359 |
// A miss is defined as a shot with a damaging weapon with 0 kills, 0 damage, 0 hogs poisoned and 0 targets hit |
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12359
diff
changeset
|
360 |
else if AmmoDamagingUsed and (Kills <= killsCheck) and (PoisonTurn = 0) and (PoisonClan = 0) and (DamageTurn = 0) and (HitTargets = 0) then |
14044
bbecf663d599
Chance to play sndNutter if player sacrifices hog and misses
Wuzzy <Wuzzy2@mail.ru>
parents:
14041
diff
changeset
|
361 |
// Chance to call hedgehog stupid or nutter if sacrificed for nothing |
12292
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12291
diff
changeset
|
362 |
if CurrentHedgehog^.stats.Sacrificed then |
14044
bbecf663d599
Chance to play sndNutter if player sacrifices hog and misses
Wuzzy <Wuzzy2@mail.ru>
parents:
14041
diff
changeset
|
363 |
case random(3) of |
bbecf663d599
Chance to play sndNutter if player sacrifices hog and misses
Wuzzy <Wuzzy2@mail.ru>
parents:
14041
diff
changeset
|
364 |
0: AddVoice(sndMissed, PreviousTeam^.voicepack); |
bbecf663d599
Chance to play sndNutter if player sacrifices hog and misses
Wuzzy <Wuzzy2@mail.ru>
parents:
14041
diff
changeset
|
365 |
1: AddVoice(sndStupid, PreviousTeam^.voicepack); |
bbecf663d599
Chance to play sndNutter if player sacrifices hog and misses
Wuzzy <Wuzzy2@mail.ru>
parents:
14041
diff
changeset
|
366 |
2: AddVoice(sndNutter, PreviousTeam^.voicepack); |
bbecf663d599
Chance to play sndNutter if player sacrifices hog and misses
Wuzzy <Wuzzy2@mail.ru>
parents:
14041
diff
changeset
|
367 |
end |
12292
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12291
diff
changeset
|
368 |
else |
93434ab299a0
Take sacrifices into account for the “Stupid” taunt
Wuzzy <almikes@aol.com>
parents:
12291
diff
changeset
|
369 |
AddVoice(sndMissed, PreviousTeam^.voicepack) |
12157
e837912ba85d
Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents:
12095
diff
changeset
|
370 |
|
e837912ba85d
Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents:
12095
diff
changeset
|
371 |
// Timeout |
6290 | 372 |
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
|
373 |
begin end// nothing ? |
12157
e837912ba85d
Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents:
12095
diff
changeset
|
374 |
|
e837912ba85d
Fix hedgehogs/ticker ignoring kills without damage (#149)
Wuzzy <almikes@aol.com>
parents:
12095
diff
changeset
|
375 |
// Turn skipped |
12095
e1bca1ebbad9
fix problem with pas2c build. please don't use "and not xyz", use "and (not xyz)"
sheepluva
parents:
11914
diff
changeset
|
376 |
else if isTurnSkipped and (not PlacingHogs) then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
377 |
begin |
11914
c9bad8a01185
Play countdown sounds for 4-1 remaining seconds and “boring” voice on timeout
Wuzzy <almikes@aol.com>
parents:
11569
diff
changeset
|
378 |
AddVoice(sndCoward, PreviousTeam^.voicepack); |
13642
3d14950641a4
Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents:
12918
diff
changeset
|
379 |
AddCaption(FormatA(GetEventString(eidTurnSkipped), s), capcolDefault, capgrpMessage); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
380 |
end |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
381 |
end; |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
382 |
end; |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
383 |
|
13763
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
384 |
procedure TurnStatsReset; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
385 |
var t, i: LongInt; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
386 |
begin |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
387 |
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:
13760
diff
changeset
|
388 |
with TeamsArray[t]^ do |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
389 |
for i:= 0 to cMaxHHIndex do |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
390 |
with Hedgehogs[i].stats do |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
391 |
begin |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
392 |
StepKills:= 0; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
393 |
StepDamageRecv:= 0; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
394 |
StepDamageGiven:= 0; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
395 |
StepPoisoned:= false; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
396 |
StepDied:= false; |
14055 | 397 |
GotRevenge:= false; |
13763
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
398 |
end; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
399 |
|
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
400 |
Kills:= 0; |
14617
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
401 |
KillsSD:= 0; |
13763
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
402 |
KillsClan:= 0; |
14059
1ac129df8e5b
Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents:
14058
diff
changeset
|
403 |
KillsTeam:= 0; |
13763
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
404 |
DamageClan:= 0; |
14059
1ac129df8e5b
Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents:
14058
diff
changeset
|
405 |
DamageTeam:= 0; |
13763
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
406 |
DamageTurn:= 0; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
407 |
HitTargets:= 0; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
408 |
PoisonClan:= 0; |
14059
1ac129df8e5b
Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents:
14058
diff
changeset
|
409 |
PoisonTeam:= 0; |
13763
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
410 |
PoisonTurn:= 0; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
411 |
AmmoUsedCount:= 0; |
14056
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
412 |
LeaveMeAlone:= false; |
13763
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
413 |
AmmoDamagingUsed:= false; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
414 |
isTurnSkipped:= false; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
415 |
end; |
6fd56a26e8b8
Fix turn reaction not working properly after turn
Wuzzy <Wuzzy2@mail.ru>
parents:
13760
diff
changeset
|
416 |
|
829 | 417 |
procedure AmmoUsed(am: TAmmoType); |
418 |
begin |
|
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
419 |
inc(AmmoUsedCount); |
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
420 |
AmmoDamagingUsed:= AmmoDamagingUsed or Ammoz[am].isDamaging |
829 | 421 |
end; |
422 |
||
6014 | 423 |
procedure hedgehogFlight(Gear: PGear; time: Longword); |
424 |
begin |
|
425 |
if time > 4000 then |
|
426 |
begin |
|
7932
ebe1d112e439
remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents:
7857
diff
changeset
|
427 |
WriteLnToConsole('FLIGHT'); |
ebe1d112e439
remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents:
7857
diff
changeset
|
428 |
WriteLnToConsole(Gear^.Hedgehog^.Team^.TeamName); |
ebe1d112e439
remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents:
7857
diff
changeset
|
429 |
WriteLnToConsole(inttostr(time)); |
ebe1d112e439
remove mobile ifdefs, replace writeLn's for WriteLnToConsole
Xeli
parents:
7857
diff
changeset
|
430 |
WriteLnToConsole( ''); |
6014 | 431 |
end |
432 |
end; |
|
433 |
||
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
434 |
procedure SendStats; |
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
435 |
var i, t, c: LongInt; |
869 | 436 |
msd, msk: Longword; msdhh, mskhh: PHedgehog; |
437 |
mskcnt: Longword; |
|
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
438 |
maxTeamKills : Longword; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
439 |
maxTeamKillsName : shortstring; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
440 |
maxTurnSkips : Longword; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
441 |
maxTurnSkipsName : shortstring; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
442 |
maxTeamDamage : Longword; |
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
443 |
maxTeamDamageName : shortstring; |
5142
cb822f8d52ff
Show winners in console in a special form so this information could be easily parsed
unc0rr
parents:
4976
diff
changeset
|
444 |
winnersClan : PClan; |
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
445 |
deathEntry : PClanDeathLogEntry; |
13759
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13758
diff
changeset
|
446 |
currentRank: Longword; |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
447 |
begin |
9180
d19c09670ec8
changed variable and function name
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9174
diff
changeset
|
448 |
if SendHealthStatsOn then |
9405 | 449 |
msd:= 0; msdhh:= nil; |
450 |
msk:= 0; mskhh:= nil; |
|
451 |
mskcnt:= 0; |
|
452 |
maxTeamKills := 0; |
|
453 |
maxTurnSkips := 0; |
|
454 |
maxTeamDamage := 0; |
|
455 |
winnersClan:= nil; |
|
13759
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13758
diff
changeset
|
456 |
currentRank:= 0; |
869 | 457 |
|
9405 | 458 |
for t:= 0 to Pred(TeamsCount) do |
459 |
with TeamsArray[t]^ do |
|
460 |
begin |
|
12332
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
461 |
if (not ExtDriven) and SendRankingStatsOn then |
9405 | 462 |
SendStat(siTeamStats, GetTeamStatString(TeamsArray[t])); |
463 |
for i:= 0 to cMaxHHIndex do |
|
464 |
begin |
|
465 |
if Hedgehogs[i].stats.MaxStepDamageGiven > msd then |
|
466 |
begin |
|
467 |
msdhh:= @Hedgehogs[i]; |
|
468 |
msd:= Hedgehogs[i].stats.MaxStepDamageGiven |
|
469 |
end; |
|
470 |
if Hedgehogs[i].stats.MaxStepKills >= msk then |
|
471 |
if Hedgehogs[i].stats.MaxStepKills = msk then |
|
472 |
inc(mskcnt) |
|
473 |
else |
|
474 |
begin |
|
475 |
mskcnt:= 1; |
|
476 |
mskhh:= @Hedgehogs[i]; |
|
477 |
msk:= Hedgehogs[i].stats.MaxStepKills |
|
478 |
end; |
|
479 |
end; |
|
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
480 |
|
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
481 |
{ 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:
13757
diff
changeset
|
482 |
The clan that survived is ranked 1st. } |
14638
244699a97734
Make passive teams no longer mess with game stats
Wuzzy <Wuzzy2@mail.ru>
parents:
14632
diff
changeset
|
483 |
if (Clan^.ClanHealth > 0) then |
9405 | 484 |
begin |
485 |
winnersClan:= Clan; |
|
12332
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
486 |
if SendRankingStatsOn then |
13759
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13758
diff
changeset
|
487 |
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:
13758
diff
changeset
|
488 |
currentRank:= 1; |
13899
0ce8aad17c24
IFDEF out missing function with FIXME, revert pas2c change in 0ecf77e203c0 as suggested by unc0rr, another string annotation
nemo
parents:
13767
diff
changeset
|
489 |
SendStat(siTeamRank, _S'1'); |
12332
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
490 |
SendStat(siPlayerKills, IntToStr(Clan^.Color) + ' ' + |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
491 |
IntToStr(stats.Kills) + ' ' + TeamName); |
13759
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13758
diff
changeset
|
492 |
end; |
9405 | 493 |
end; |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
494 |
|
9405 | 495 |
{ determine maximum values of TeamKills, TurnSkips, TeamDamage } |
496 |
if stats.TeamKills > maxTeamKills then |
|
497 |
begin |
|
498 |
maxTeamKills := stats.TeamKills; |
|
499 |
maxTeamKillsName := TeamName; |
|
500 |
end; |
|
501 |
if stats.TurnSkips > maxTurnSkips then |
|
502 |
begin |
|
503 |
maxTurnSkips := stats.TurnSkips; |
|
504 |
maxTurnSkipsName := TeamName; |
|
505 |
end; |
|
506 |
if stats.TeamDamage > maxTeamDamage then |
|
507 |
begin |
|
508 |
maxTeamDamage := stats.TeamDamage; |
|
509 |
maxTeamDamageName := TeamName; |
|
510 |
end; |
|
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
511 |
|
9405 | 512 |
end; |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
513 |
|
13759
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13758
diff
changeset
|
514 |
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:
13758
diff
changeset
|
515 |
|
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
516 |
{ 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:
13757
diff
changeset
|
517 |
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:
13757
diff
changeset
|
518 |
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:
13757
diff
changeset
|
519 |
the clan that died second to last is ranked 3rd, |
13760
b1177e9c9ee9
Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents:
13759
diff
changeset
|
520 |
and so on. |
b1177e9c9ee9
Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents:
13759
diff
changeset
|
521 |
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:
13759
diff
changeset
|
522 |
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:
13759
diff
changeset
|
523 |
(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:
13759
diff
changeset
|
524 |
that clan counts (handled in gtResurrector). |
b1177e9c9ee9
Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents:
13759
diff
changeset
|
525 |
} |
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
526 |
deathEntry := ClanDeathLog; |
13759
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13758
diff
changeset
|
527 |
i:= 0; |
12332
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
528 |
if SendRankingStatsOn then |
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
529 |
while (deathEntry <> nil) do |
9405 | 530 |
begin |
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
531 |
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:
13757
diff
changeset
|
532 |
if ((deathEntry^.KilledClans[c]^.ClanHealth) = 0) and (not deathEntry^.KilledClans[c]^.StatsHandled) then |
12332
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
533 |
begin |
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
534 |
for t:= 0 to Pred(TeamsCount) do |
14638
244699a97734
Make passive teams no longer mess with game stats
Wuzzy <Wuzzy2@mail.ru>
parents:
14632
diff
changeset
|
535 |
if (TeamsArray[t]^.Clan^.ClanIndex = deathEntry^.KilledClans[c]^.ClanIndex) then |
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
536 |
begin |
13759
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13758
diff
changeset
|
537 |
SendStat(siTeamRank, IntToStr(currentRank)); |
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
538 |
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:
13757
diff
changeset
|
539 |
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:
13757
diff
changeset
|
540 |
end; |
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
541 |
deathEntry^.KilledClans[c]^.StatsHandled:= true; |
13767
3d2a7c563d8e
Fix clan ranking counter advancing per-team instaed of per-clan in case of a tie
Wuzzy <Wuzzy2@mail.ru>
parents:
13763
diff
changeset
|
542 |
inc(i); |
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
543 |
end; |
13759
f0cb47f0bfaf
Fix player rankings on round draw: Clans that die in the same turn now have the same rank
Wuzzy <Wuzzy2@mail.ru>
parents:
13758
diff
changeset
|
544 |
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:
13758
diff
changeset
|
545 |
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:
13758
diff
changeset
|
546 |
i:= 0; |
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
547 |
deathEntry:= deathEntry^.NextEntry; |
9405 | 548 |
end; |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
549 |
|
14387
2ab312c47dc3
make pas2c function without haskell aborting if locale is C
nemo
parents:
14063
diff
changeset
|
550 |
// "Achievements" / Details part of stats screen |
12332
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
551 |
if SendAchievementsStatsOn then |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
552 |
begin |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
553 |
if msdhh <> nil then |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
554 |
SendStat(siMaxStepDamage, IntToStr(msd) + ' ' + msdhh^.Name + ' (' + msdhh^.Team^.TeamName + ')'); |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
555 |
if mskcnt = 1 then |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
556 |
SendStat(siMaxStepKills, IntToStr(msk) + ' ' + mskhh^.Name + ' (' + mskhh^.Team^.TeamName + ')'); |
869 | 557 |
|
12332
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
558 |
if maxTeamKills > 1 then |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
559 |
SendStat(siMaxTeamKills, IntToStr(maxTeamKills) + ' ' + maxTeamKillsName); |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
560 |
if maxTurnSkips > 2 then |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
561 |
SendStat(siMaxTurnSkips, IntToStr(maxTurnSkips) + ' ' + maxTurnSkipsName); |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
562 |
if maxTeamDamage > 30 then |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
563 |
SendStat(siMaxTeamDamage, IntToStr(maxTeamDamage) + ' ' + maxTeamDamageName); |
3784
75aa91bea32b
Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents:
3770
diff
changeset
|
564 |
|
12332
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
565 |
if KilledHHs > 0 then |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
566 |
SendStat(siKilledHHs, IntToStr(KilledHHs)); |
657a8d63c99d
Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents:
12292
diff
changeset
|
567 |
end; |
5142
cb822f8d52ff
Show winners in console in a special form so this information could be easily parsed
unc0rr
parents:
4976
diff
changeset
|
568 |
|
9405 | 569 |
// now to console |
10015 | 570 |
if winnersClan <> nil then |
9405 | 571 |
begin |
14486 | 572 |
ScriptCall('onGameResult', winnersClan^.ClanIndex); |
9405 | 573 |
WriteLnToConsole('WINNERS'); |
9397 | 574 |
WriteLnToConsole(inttostr(winnersClan^.TeamsNumber)); |
9405 | 575 |
for t:= 0 to winnersClan^.TeamsNumber - 1 do |
576 |
WriteLnToConsole(winnersClan^.Teams[t]^.TeamName); |
|
577 |
end |
|
578 |
else |
|
14486 | 579 |
begin |
580 |
ScriptCall('onGameResult', -1); |
|
9405 | 581 |
WriteLnToConsole('DRAW'); |
14486 | 582 |
end; |
10015 | 583 |
|
9397 | 584 |
ScriptCall('onAchievementsDeclaration'); |
585 |
end; |
|
6014 | 586 |
|
9409 | 587 |
procedure declareAchievement(id, teamname, location: shortstring; value: LongInt); |
10015 | 588 |
begin |
9411
d95ac9992529
Fix script flaw in detection of best team when sending achievement info
unc0rr
parents:
9409
diff
changeset
|
589 |
if (length(id) = 0) or (length(teamname) = 0) or (length(location) = 0) then exit; |
9397 | 590 |
WriteLnToConsole('ACHIEVEMENT'); |
591 |
WriteLnToConsole(id); |
|
592 |
WriteLnToConsole(teamname); |
|
9409 | 593 |
WriteLnToConsole(location); |
9397 | 594 |
WriteLnToConsole(inttostr(value)); |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
595 |
end; |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
diff
changeset
|
596 |
|
11569 | 597 |
procedure startGhostPoints(n: LongInt); |
598 |
begin |
|
599 |
WriteLnToConsole('GHOST_POINTS'); |
|
600 |
WriteLnToConsole(inttostr(n)); |
|
601 |
end; |
|
602 |
||
603 |
procedure dumpPoint(x, y: LongInt); |
|
604 |
begin |
|
605 |
WriteLnToConsole(inttostr(x)); |
|
606 |
WriteLnToConsole(inttostr(y)); |
|
607 |
end; |
|
608 |
||
3038 | 609 |
procedure initModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
610 |
begin |
11569 | 611 |
DamageClan := 0; |
14059
1ac129df8e5b
Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents:
14058
diff
changeset
|
612 |
DamageTeam := 0; |
11569 | 613 |
DamageTotal := 0; |
614 |
DamageTurn := 0; |
|
12176
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12157
diff
changeset
|
615 |
PoisonClan := 0; |
14059
1ac129df8e5b
Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents:
14058
diff
changeset
|
616 |
PoisonTeam := 0; |
12176
29f1ea94488b
Fix enemy saying “Missed” when poisoned w/o damage
Wuzzy <almikes@aol.com>
parents:
12157
diff
changeset
|
617 |
PoisonTurn := 0; |
11569 | 618 |
KillsClan := 0; |
14059
1ac129df8e5b
Attacking same clan (not same team) is no longer enough to trigger sndSameTeam
Wuzzy <Wuzzy2@mail.ru>
parents:
14058
diff
changeset
|
619 |
KillsTeam := 0; |
14617
1c7439c50f4d
Fix hog taunts counting SD water rise drowns as team kills (bug 691)
Wuzzy <Wuzzy2@mail.ru>
parents:
14616
diff
changeset
|
620 |
KillsSD := 0; |
11569 | 621 |
Kills := 0; |
622 |
KillsTotal := 0; |
|
12568
494d3e1c4810
Don't play “missed” taunt if a target has been hit
Wuzzy <almikes@aol.com>
parents:
12359
diff
changeset
|
623 |
HitTargets := 0; |
11569 | 624 |
AmmoUsedCount := 0; |
625 |
AmmoDamagingUsed := false; |
|
14425
9561bf634b21
Fix "first blood" taunt being repeated if same hog got hurt again
Wuzzy <Wuzzy2@mail.ru>
parents:
14387
diff
changeset
|
626 |
FirstBlood:= false; |
14056
ecfd13128100
Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents:
14055
diff
changeset
|
627 |
LeaveMeAlone := false; |
11569 | 628 |
SkippedTurns:= 0; |
629 |
isTurnSkipped:= false; |
|
630 |
vpHurtSameClan:= nil; |
|
631 |
vpHurtEnemy:= nil; |
|
13651
56a925256039
Add separate TotalRounds var for Lua to count the *actual* number of rounds that have been played
Wuzzy <Wuzzy2@mail.ru>
parents:
13642
diff
changeset
|
632 |
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:
13642
diff
changeset
|
633 |
TotalRoundsReal:= -1; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2782
diff
changeset
|
634 |
FinishedTurnsTotal:= -1; |
13758
a0d6404a80a2
Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents:
13757
diff
changeset
|
635 |
ClanDeathLog:= nil; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
636 |
end; |
3697 | 637 |
|
3038 | 638 |
procedure freeModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
639 |
begin |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
640 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2712
diff
changeset
|
641 |
|
2619 | 642 |
end. |