share/hedgewars/Data/Scripts/Multiplayer/Mutant.lua
author Wuzzy <Wuzzy@disroot.org>
Wed, 28 Jun 2023 23:41:38 +0200
changeset 15970 a803428704fd
parent 15537 bbb98e22a303
permissions -rw-r--r--
Make use of GetEngineString in Lua scripts
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
     1
--[[                  ___                   ___
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
     2
                    (   )                 (   )
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
     3
___ .-. .-. ___  ___ | |_    .---. ___ .-. | |_
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
     4
(   )   '   (   )(   (   __) / .-, (   )   (   __)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
     5
|  .-.  .-. | |  | | | |   (__) ; ||  .-. .| |
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
     6
| |  | |  | | |  | | | | ___ .'`  || |  | || | ___
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
     7
| |  | |  | | |  | | | |(   / .'| || |  | || |(   )
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
     8
| |  | |  | | |  | | | | | | /  | || |  | || | | |
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
     9
| |  | |  | | |  ; ' | ' | ; |  ; || |  | || ' | |
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    10
| |  | |  | ' `-'  / ' `-' ' `-'  || |  | |' `-' ;
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    11
(___)(___)(___'.__.'   `.__.`.__.'_(___)(___)`.__.
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    12
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    13
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    14
----  Recommended settings:
14269
47af42f7ca8b Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents: 14266
diff changeset
    15
----    * one hedgehog per team (forced by game)
47af42f7ca8b Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents: 14266
diff changeset
    16
----    * one team per clan
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    17
----    * 'Small' one-island map
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    18
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    19
--]]
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    20
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    21
HedgewarsScriptLoad("/Scripts/Locale.lua")
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    22
HedgewarsScriptLoad("/Scripts/Tracker.lua")
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    23
HedgewarsScriptLoad("/Scripts/Params.lua")
15970
a803428704fd Make use of GetEngineString in Lua scripts
Wuzzy <Wuzzy@disroot.org>
parents: 15537
diff changeset
    24
HedgewarsScriptLoad("/Scripts/Utils.lua")
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    25
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    26
--[[
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    27
    MUTANT SCRIPT
14269
47af42f7ca8b Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents: 14266
diff changeset
    28
]]
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    29
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    30
local hhs = {}
14264
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
    31
local crates = {}
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    32
local numhhs = 0
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    33
local meh = false
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    34
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    35
local gameOver=false
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    36
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    37
local mutant = nil
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    38
local mutant_base_health = 200
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    39
local mutant_base_disease = 25
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    40
local disease_timer = 2000
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    41
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    42
local kill_reward = nil
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    43
local mt_hurt=false
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    44
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    45
local killsCounter = 0
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    46
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    47
local team_fire_punishment = 3
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    48
local mutant_kill_reward = 2
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    49
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    50
local hh_weapons = { amBazooka, amGrenade, amShotgun, amMine}
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    51
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    52
local mt_weapons = {amWatermelon, amHellishBomb, amBallgun, amRCPlane, amTeleport}
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    53
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    54
local disease=0
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    55
local timer=0
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    56
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    57
local winScore = 15
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    58
local hogsLimit = 1
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    59
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
    60
local teamsDead = {}
15269
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
    61
local teamsDeleted = {}
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
    62
local hogLimitHit = false
15458
19e987301674 Mutant: Add message for excess teams
Wuzzy <Wuzzy2@mail.ru>
parents: 15269
diff changeset
    63
local teamLimitHit = false
15269
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
    64
local cnthhs
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    65
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    66
local circles = {}
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    67
local circleFrame = -1
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    68
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    69
-- Variables for custom achievements
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    70
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    71
-- Most kills in 1 turn
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    72
local recordKills = 0
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    73
local recordKillsHogName = nil
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    74
local recordKillsTeamName = nil
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    75
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    76
-- Most suicides
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    77
local recordSuicides = 0
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    78
local recordSuicidesHogName = nil
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    79
local recordSuicidesTeamName = nil
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    80
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    81
-- Most skips
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    82
local recordSkips = 0
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    83
local recordSkipsHogName = nil
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    84
local recordSkipsTeamName = nil
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
    85
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
    86
-- Most crates collected
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    87
local recordCrates = 0
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    88
local recordCratesHogName = nil
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    89
local recordCratesTeamName = nil
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    90
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    91
-- Most deaths
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    92
local recordDeaths = 0
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    93
local recordDeathsHogName = nil
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    94
local recordDeathsTeamName = nil
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    95
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    96
-- Total killed hedgehogs
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    97
local totalKills = 0
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    98
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
    99
-- Total damage
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   100
local totalDamage = 0
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   101
12988
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   102
local mutantHat = "WhySoSerious"
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   103
local feederHat = "poke_slowpoke"
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   104
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   105
function rules()
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   106
14269
47af42f7ca8b Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents: 14266
diff changeset
   107
    local mineStr
47af42f7ca8b Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents: 14266
diff changeset
   108
    if MinesTime < 0 then
47af42f7ca8b Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents: 14266
diff changeset
   109
        mineStr = loc("Mines time: 0s-5s")
47af42f7ca8b Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents: 14266
diff changeset
   110
    else
47af42f7ca8b Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents: 14266
diff changeset
   111
        mineStr = string.format(loc("Mines explode after %d s."), div(MinesTime, 1000))
47af42f7ca8b Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents: 14266
diff changeset
   112
    end
14264
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   113
    local ruleSet = loc("Hedgehogs will be revived after their death.") .. "|" ..
14269
47af42f7ca8b Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents: 14266
diff changeset
   114
    mineStr .. "|" ..
14264
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   115
    loc("The first hedgehog to kill someone becomes the Mutant.") .. "|" ..
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   116
    loc("The Mutant has super weapons and a lot of health.") .. "|" ..
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   117
    loc("The Mutant loses health quickly, but gains health by killing.") .. "|" ..
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   118
    " |" ..
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   119
    loc("Score points by killing other hedgehogs.") .. "|" ..
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   120
    loc("The hedgehog with least points (or most deaths) becomes the Bottom Feeder.") .. "|" ..
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   121
    loc("The score and deaths are shown next to the team bar.") .. "|" ..
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   122
    string.format(loc("Goal: Score %d points or more to win!"), winScore) .. "|" ..
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   123
        " |" ..
14264
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   124
    loc("Scoring: ") .. "|" ..
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   125
    loc("+2 for becoming the Mutant") .. "|" ..
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   126
    loc("+1 to the Mutant for killing anyone") .. "|" ..
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   127
    loc("+1 to the Bottom Feeder for killing anyone") .. "|" ..
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   128
    loc("-1 to anyone for a suicide")
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   129
14264
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   130
    return ruleSet
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   131
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   132
end
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   133
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   134
function showStartingInfo()
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   135
15069
e16f906224fd Change mission panel icons for a couple of game styles
Wuzzy <Wuzzy2@mail.ru>
parents: 14989
diff changeset
   136
    ShowMission(loc("Mutant"), loc("A Hedgewars tag game"), rules(), -amWatermelon, 5000)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   137
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   138
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   139
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   140
function onGameInit()
14269
47af42f7ca8b Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents: 14266
diff changeset
   141
    -- Sudden Death would be weird
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   142
    WaterRise = 0
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   143
    HealthDecrease = 0
14269
47af42f7ca8b Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents: 14266
diff changeset
   144
    -- Weapons must be reset for the Mutant mechanic to work
47af42f7ca8b Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents: 14266
diff changeset
   145
    EnableGameFlags(gfResetWeps)
47af42f7ca8b Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents: 14266
diff changeset
   146
    -- King Mode messes with game too much
47af42f7ca8b Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents: 14266
diff changeset
   147
    DisableGameFlags(gfKing)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   148
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   149
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   150
15269
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   151
function limitHogsTeam(gear)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   152
    cnthhs = cnthhs + 1
13108
f3f8d017f994 Mutant: Faster excess hog removal
Wuzzy <Wuzzy2@mail.ru>
parents: 13105
diff changeset
   153
    if cnthhs > 1 then
f3f8d017f994 Mutant: Faster excess hog removal
Wuzzy <Wuzzy2@mail.ru>
parents: 13105
diff changeset
   154
        hogLimitHit = true
f3f8d017f994 Mutant: Faster excess hog removal
Wuzzy <Wuzzy2@mail.ru>
parents: 13105
diff changeset
   155
        SetEffect(gear, heResurrectable, 0)
f3f8d017f994 Mutant: Faster excess hog removal
Wuzzy <Wuzzy2@mail.ru>
parents: 13105
diff changeset
   156
        setGearValue(gear, "excess", true)
f3f8d017f994 Mutant: Faster excess hog removal
Wuzzy <Wuzzy2@mail.ru>
parents: 13105
diff changeset
   157
        DeleteGear(gear)
f3f8d017f994 Mutant: Faster excess hog removal
Wuzzy <Wuzzy2@mail.ru>
parents: 13105
diff changeset
   158
    end
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   159
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   160
15269
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   161
function limitHogsClan(gear)
15458
19e987301674 Mutant: Add message for excess teams
Wuzzy <Wuzzy2@mail.ru>
parents: 15269
diff changeset
   162
    teamLimitHit = true
15269
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   163
    SetEffect(gear, heResurrectable, 0)
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   164
    setGearValue(gear, "excess", true)
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   165
    DeleteGear(gear)
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   166
end
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   167
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   168
function onGameStart()
13769
e874bfe563c7 Make sure scripts don't break w/ only 1 clan
Wuzzy <Wuzzy2@mail.ru>
parents: 13685
diff changeset
   169
    if ClansCount >= 2 then
e874bfe563c7 Make sure scripts don't break w/ only 1 clan
Wuzzy <Wuzzy2@mail.ru>
parents: 13685
diff changeset
   170
        SendHealthStatsOff()
e874bfe563c7 Make sure scripts don't break w/ only 1 clan
Wuzzy <Wuzzy2@mail.ru>
parents: 13685
diff changeset
   171
        SendAchievementsStatsOff()
e874bfe563c7 Make sure scripts don't break w/ only 1 clan
Wuzzy <Wuzzy2@mail.ru>
parents: 13685
diff changeset
   172
    end
12335
8f693d25be2f Show traditional winning animation in Mutant again
Wuzzy <almikes@aol.com>
parents: 12288
diff changeset
   173
    SendRankingStatsOff()
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   174
    trackTeams()
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   175
    teamScan()
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   176
    runOnHogs(saveStuff)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   177
15269
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   178
    -- Enforce team and hog limits
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   179
    hogLimitHit = false
15269
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   180
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   181
    -- Rule 1: One team per clan
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   182
    if TeamsCount > ClansCount then
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   183
        local usedClans = {}
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   184
        for i=0, TeamsCount - 1 do
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   185
            local teamName = GetTeamName(i)
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   186
            local clanNumber = GetTeamClan(teamName)
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   187
            if not usedClans[clanNumber] then
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   188
                usedClans[clanNumber] = true
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   189
            else
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   190
                runOnHogsInTeam(limitHogsClan, teamName)
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   191
                teamsDeleted[teamName] = true
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   192
                setTeamValue(teamName, "Score", getTeamValue(teamName, "Score") -99999)
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   193
            end
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   194
        end
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   195
    end
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   196
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   197
    -- Rule 2: One hog per team
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   198
    for i=0 , TeamsCount - 1 do
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   199
        cnthhs = 0
15269
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   200
        runOnHogsInTeam(limitHogsTeam, GetTeamName(i))
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   201
    end
15458
19e987301674 Mutant: Add message for excess teams
Wuzzy <Wuzzy2@mail.ru>
parents: 15269
diff changeset
   202
    if teamLimitHit then
19e987301674 Mutant: Add message for excess teams
Wuzzy <Wuzzy2@mail.ru>
parents: 15269
diff changeset
   203
        WriteLnToChat(loc("Only one team per clan allowed! Excess teams will be removed."))
19e987301674 Mutant: Add message for excess teams
Wuzzy <Wuzzy2@mail.ru>
parents: 15269
diff changeset
   204
    end
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   205
    if hogLimitHit then
13108
f3f8d017f994 Mutant: Faster excess hog removal
Wuzzy <Wuzzy2@mail.ru>
parents: 13105
diff changeset
   206
        WriteLnToChat(loc("Only one hog per team allowed! Excess hogs will be removed."))
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   207
    end
15269
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   208
    trackTeams()
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   209
    showStartingInfo()
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   210
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   211
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   212
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   213
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   214
function giveWeapons(gear)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   215
    if gear == mutant then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   216
        AddAmmo(gear, amRope)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   217
        for i=1, #mt_weapons do
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   218
            AddAmmo(gear, mt_weapons[i])
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   219
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   220
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   221
    else
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   222
        for i=1, #hh_weapons do
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   223
            AddAmmo(gear,hh_weapons[i])
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   224
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   225
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   226
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   227
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   228
function onAmmoStoreInit()
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   229
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   230
    SetAmmo(amSkip, 9, 0, 0, 0)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   231
    SetAmmo(amRope,0,1,0,5)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   232
    SetAmmo(amSnowball,0,1,0,1)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   233
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   234
    for i=1, #hh_weapons do
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   235
        SetAmmo(hh_weapons[i], 0, 0, 0, 1)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   236
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   237
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   238
    for i=1, #mt_weapons do
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   239
        SetAmmo(mt_weapons[i], 0, 3, 0, 1)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   240
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   241
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   242
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   243
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   244
function drawCircles()
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   245
    for i = 0, #hhs do
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   246
        if circles[hhs[i]] ~= nil then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   247
            DeleteVisualGear(circles[hhs[i]])
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   248
            circles[hhs[i]] = nil
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   249
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   250
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   251
        if hhs[i] ~= CurrentHedgehog then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   252
            if mutant == nil then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   253
                circles[hhs[i]] = AddVisualGear(0, 0, vgtCircle, 0, false)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   254
                SetVisualGearValues(circles[hhs[i]], 0, 0, 0, 0, 0, 0, 0, 22, 5, 0xff000080)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   255
            elseif CurrentHedgehog == mutant then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   256
                circles[hhs[i]] = AddVisualGear(0, 0, vgtCircle, 0, false)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   257
                SetVisualGearValues(circles[hhs[i]], 0, 0, 0, 0, 0, 0, 0, 22, 3, 0xaa000070)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   258
            elseif getGearValue(CurrentHedgehog, "Feeder") and hhs[i] ~= mutant then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   259
                circles[hhs[i]] = AddVisualGear(0, 0, vgtCircle, 0, false)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   260
                SetVisualGearValues(circles[hhs[i]], 0, 0, 0, 0, 0, 0, 0, 22, 3, 0xaa000070)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   261
            elseif hhs[i] == mutant then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   262
                circles[hhs[i]] = AddVisualGear(0, 0, vgtCircle, 0, false)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   263
                SetVisualGearValues(circles[hhs[i]], 0, 0, 0, 0, 0, 0, 0, 22, 5, 0xff000080)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   264
            end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   265
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   266
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   267
    circleFrame = 0
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   268
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   269
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   270
function onNewTurn()
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   271
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   272
    killsCounter = 0
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   273
14269
47af42f7ca8b Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents: 14266
diff changeset
   274
    if mutant == nil and TotalRounds >= 0 then
13643
690cc84e9fd6 Use capcolDefault in Lua scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 13220
diff changeset
   275
        AddCaption( loc("First killer will mutate"), capcolDefault, capgrpGameState )
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   276
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   277
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   278
    checkScore()
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   279
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   280
    for i=0, TeamsCount-1 do
15269
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   281
        local teamName = GetTeamName(i)
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   282
        if not teamsDeleted[teamName] then
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   283
            SendStat(siClanHealth, getTeamValue(teamName, "Score"), teamName)
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   284
        end
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   285
    end
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   286
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   287
    giveWeapons(CurrentHedgehog)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   288
    drawCircles()
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   289
    setAIHints()
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   290
    kill_reward= numhhs*10
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   291
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   292
    if CurrentHedgehog == mutant then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   293
        mt_hurt=true
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   294
        disease= mutant_base_disease - numhhs
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   295
    else
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   296
        mt_hurt=false
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   297
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   298
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   299
    setGearValue(CurrentHedgehog, "Alive", true)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   300
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   301
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   302
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   303
function countBodies()
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   304
        if killsCounter == 2 then
13643
690cc84e9fd6 Use capcolDefault in Lua scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 13220
diff changeset
   305
            AddCaption(loc("Double kill!"), capcolDefault, capgrpGameState )
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   306
        elseif killsCounter == 3 then
13643
690cc84e9fd6 Use capcolDefault in Lua scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 13220
diff changeset
   307
            AddCaption(loc("Mega kill!"), capcolDefault, capgrpGameState )
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   308
            PlaySound(sndRegret)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   309
        elseif killsCounter == 4 then
13643
690cc84e9fd6 Use capcolDefault in Lua scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 13220
diff changeset
   310
            AddCaption(loc("Ultra kill!"), capcolDefault, capgrpGameState )
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   311
        elseif killsCounter == 5 then
13643
690cc84e9fd6 Use capcolDefault in Lua scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 13220
diff changeset
   312
            AddCaption(loc("Monster kill!"), capcolDefault, capgrpGameState )
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   313
            PlaySound(sndIllGetYou)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   314
        elseif killsCounter == 6 then
13643
690cc84e9fd6 Use capcolDefault in Lua scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 13220
diff changeset
   315
            AddCaption(loc("Ludicrous kill!"), capcolDefault, capgrpGameState )
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   316
            PlaySound(sndNutter)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   317
        elseif killsCounter == 7 then
13643
690cc84e9fd6 Use capcolDefault in Lua scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 13220
diff changeset
   318
            AddCaption(loc("Holy shit!"), capcolDefault, capgrpGameState )
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   319
            PlaySound(sndLaugh)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   320
        elseif killsCounter > 8 then
13643
690cc84e9fd6 Use capcolDefault in Lua scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 13220
diff changeset
   321
            AddCaption(loc("Insanity!"), capcolDefault, capgrpGameState )
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   322
        end
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   323
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   324
        if killsCounter > recordKills then
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   325
            recordKills = killsCounter
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   326
            recordKillsHogName = getGearValue(CurrentHedgehog, "Name")
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   327
            recordKillsTeamName = GetHogTeamName(CurrentHedgehog)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   328
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   329
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   330
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   331
function onGameTick()
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   332
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   333
    if circleFrame > -1 then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   334
        for i = 0, #hhs do
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   335
            if circles[hhs[i]] ~= nil and hhs[i]~= nil then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   336
                hhx, hhy = GetGearPosition(hhs[i])
13685
09ea1faf97ca Remove calls to GetVisualGearValues where it's not needed
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
   337
                SetVisualGearValues(circles[hhs[i]], hhx + 1, hhy - 3, 0, 0, 0, 0, 0, 40 - (circleFrame % 25))
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   338
            end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   339
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   340
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   341
        circleFrame = circleFrame + 0.06
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   342
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   343
        if circleFrame >= 25 then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   344
            for i = 0, #hhs do
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   345
                if circles[hhs[i]] ~= nil then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   346
                    DeleteVisualGear(circles[hhs[i]])
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   347
                    circles[hhs[i]] = nil
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   348
                end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   349
            end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   350
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   351
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   352
14325
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   353
    if (TurnTimeLeft==0 or band(GetState(mutant), gstHHDriven) == 0) and mt_hurt then
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   354
        mt_hurt = false
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   355
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   356
14325
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   357
    -- Mutant's disease
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   358
    -- Hurt Mutant during its turn time
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   359
    -- Mutant's health is safe in ready phase
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   360
    if mt_hurt and mutant~=nil and ReadyTimeLeft == 0 then
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   361
        timer = timer + 1
14325
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   362
        if timer > disease_timer then
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   363
            timer = 0
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   364
            local h = GetHealth(mutant)-disease
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   365
            SetHealth(mutant, h)
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   366
            -- Low health warning
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   367
            if h <= 75 then
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   368
                PlaySound(sndPoisonMoan, mutant)
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   369
            elseif h <= 150 then
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   370
                PlaySound(sndPoisonCough, mutant)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   371
            end
14325
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   372
            local tag = AddVisualGear(GetX(mutant), GetY(mutant)-5, vgtHealthTag, disease, true)
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   373
            SetVisualGearValues(tag, nil, nil, nil, nil, nil, nil, nil, nil, nil, GetClanColor(GetHogClan(mutant)))
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   374
            if GetHealth(mutant)<=0 then
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   375
                SetHealth(mutant,0)
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   376
                mt_hurt= false
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   377
                setGearValue(mutant,"SelfDestruct",true)
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   378
                EndTurn()
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   379
            end
bd2bbd607f5e Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents: 14269
diff changeset
   380
        end
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   381
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   382
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   383
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   384
12988
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   385
--[[
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   386
Forces the special mutant/feeder names and hats only to be
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   387
taken by those who deserved it.
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   388
Names and hats will be changed (and ridiculed) if neccesary.
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   389
]]
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   390
function exposeIdentityTheft(gear)
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   391
    local lon = string.lower(GetHogName(gear)) -- lowercase origina name
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   392
    local name, hat
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   393
    -- Change name if hog uses a reserved one
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   394
    if lon == "mutant" or lon == string.lower(loc("Mutant")) then
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   395
       SetHogName(gear, loc("Identity Thief"))
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   396
       SetHogHat(gear, "Disguise")
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   397
    elseif lon == "bottom feeder" or lon == string.lower(loc("Bottom Feeder")) then
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   398
       -- Word play on "Bottom Feeder". Someone who is low on cotton. :D
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   399
       -- Either translate literally or make up your ow word play
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   400
       SetHogName(gear, loc("Cotton Needer"))
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   401
       SetHogHat(gear, "StrawHat")
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   402
    end
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   403
    -- Strip hog off its special hat
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   404
    if GetHogHat(gear) == mutantHat or GetHogHat(gear) == feederHat then
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   405
       SetHogHat(gear, "NoHat")
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   406
    end
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   407
end
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   408
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   409
function saveStuff(gear)
12988
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   410
    exposeIdentityTheft(gear)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   411
    setGearValue(gear,"Name",GetHogName(gear))
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   412
    setGearValue(gear,"Hat",GetHogHat(gear))
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   413
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   414
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   415
function armageddon(gear)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   416
    SetState(gear, gstLoser)
13108
f3f8d017f994 Mutant: Faster excess hog removal
Wuzzy <Wuzzy2@mail.ru>
parents: 13105
diff changeset
   417
    SetEffect(gear, heResurrectable, 0)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   418
    SetHealth(gear, 0)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   419
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   420
13019
880662cf41ee Add team score next to team bars for CTF_Blizard, Control, CTF, Mutant, Space Invasion
Wuzzy <Wuzzy2@mail.ru>
parents: 12988
diff changeset
   421
function renderScores()
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   422
    for i=0, TeamsCount-1 do
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   423
        local name = GetTeamName(i)
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   424
        SetTeamLabel(name, string.format(loc("%d | %d"), getTeamValue(name, "Score"), getTeamValue(name, "DeadHogs")))
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   425
    end
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   426
end
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   427
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   428
function createEndGameStats()
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   429
    SendStat(siGraphTitle, loc("Score graph"))
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   430
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   431
    local teamsSorted = {}
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   432
    for i=0, TeamsCount-1, 1 do
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   433
        teamsSorted[i+1] = GetTeamName(i)
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   434
    end
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   435
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   436
    -- Achievements stuff
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   437
    local achievements = 0
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   438
    --- Most kills per turn
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   439
    if recordKills >= 3 then
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   440
        SendStat(siMaxStepKills, string.format("%d %s (%s)", recordKills, recordKillsHogName, recordKillsTeamName))
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   441
        achievements = achievements + 1
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   442
    end
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   443
    --- Most crates collected
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   444
    if recordCrates >= 5 then
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   445
        SendStat(siCustomAchievement, string.format(loc("%s (%s) was the greediest hedgehog and collected %d crates."), recordCratesHogName, recordCratesTeamName, recordCrates))
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   446
        achievements = achievements + 1
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   447
    end
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   448
    --- Most suicides
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   449
    if recordSuicides >= 5 then
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   450
        SendStat(siCustomAchievement, string.format(loc("%s (%s) hate life and suicided %d times."), recordSuicidesHogName, recordSuicidesTeamName, recordSuicides))
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   451
        achievements = achievements + 1
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   452
    end
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   453
    --- Most deaths
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   454
    if recordDeaths >= 5 then
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   455
        SendStat(siCustomAchievement, string.format(loc("Poor %s (%s) died %d times."), recordDeathsHogName, recordDeathsTeamName, recordDeaths))
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   456
        achievements = achievements + 1
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   457
    end
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   458
    --- Most skips
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   459
    if recordSkips >= 3 then
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   460
        SendStat(siMaxTurnSkips, string.format("%d %s (%s)", recordSkips, recordSkipsHogName, recordSkipsTeamName))
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   461
        achievements = achievements + 1
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   462
    end
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   463
    --- Total damage
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   464
    if totalDamage >= 900 then
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   465
        SendStat(siCustomAchievement, string.format(loc("%d damage was dealt in this game."), totalDamage))
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   466
        achievements = achievements + 1
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   467
    end
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   468
    --- Total kills
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   469
    if totalKills >= 20 or (achievements <= 0 and totalKills >= 1) then
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   470
        SendStat(siKilledHHs, tostring(totalKills))
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   471
        achievements = achievements + 1
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   472
    end
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   473
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   474
    -- Score and stats stuff
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   475
    local showScore = ""
14989
5188ecbf726f Rank tied teams properly in Control, CTF and Mutant
Wuzzy <Wuzzy2@mail.ru>
parents: 14578
diff changeset
   476
    local rank = 0
5188ecbf726f Rank tied teams properly in Control, CTF and Mutant
Wuzzy <Wuzzy2@mail.ru>
parents: 14578
diff changeset
   477
    local rankPlus = 1
5188ecbf726f Rank tied teams properly in Control, CTF and Mutant
Wuzzy <Wuzzy2@mail.ru>
parents: 14578
diff changeset
   478
    local prevScore
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   479
    table.sort(teamsSorted, function(team1, team2) return getTeamValue(team1, "Score") > getTeamValue(team2, "Score") end)
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   480
    for i=1, TeamsCount do
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   481
        local score = getTeamValue(teamsSorted[i], "Score")
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   482
        local deaths = getTeamValue(teamsSorted[i], "DeadHogs")
14989
5188ecbf726f Rank tied teams properly in Control, CTF and Mutant
Wuzzy <Wuzzy2@mail.ru>
parents: 14578
diff changeset
   483
        if i == 1 or score < prevScore then
5188ecbf726f Rank tied teams properly in Control, CTF and Mutant
Wuzzy <Wuzzy2@mail.ru>
parents: 14578
diff changeset
   484
            rank = rank + rankPlus
5188ecbf726f Rank tied teams properly in Control, CTF and Mutant
Wuzzy <Wuzzy2@mail.ru>
parents: 14578
diff changeset
   485
            rankPlus = 1
5188ecbf726f Rank tied teams properly in Control, CTF and Mutant
Wuzzy <Wuzzy2@mail.ru>
parents: 14578
diff changeset
   486
            prevScore = score
5188ecbf726f Rank tied teams properly in Control, CTF and Mutant
Wuzzy <Wuzzy2@mail.ru>
parents: 14578
diff changeset
   487
        else
5188ecbf726f Rank tied teams properly in Control, CTF and Mutant
Wuzzy <Wuzzy2@mail.ru>
parents: 14578
diff changeset
   488
            rankPlus = rankPlus + 1
5188ecbf726f Rank tied teams properly in Control, CTF and Mutant
Wuzzy <Wuzzy2@mail.ru>
parents: 14578
diff changeset
   489
        end
5188ecbf726f Rank tied teams properly in Control, CTF and Mutant
Wuzzy <Wuzzy2@mail.ru>
parents: 14578
diff changeset
   490
        SendStat(siPointType, "!POINTS")
5188ecbf726f Rank tied teams properly in Control, CTF and Mutant
Wuzzy <Wuzzy2@mail.ru>
parents: 14578
diff changeset
   491
        SendStat(siTeamRank, rank)
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   492
        SendStat(siPlayerKills, score, teamsSorted[i])
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   493
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   494
        showScore = showScore .. string.format(loc("%s: %d (deaths: %d)"), teamsSorted[i], score, deaths) .. "|"
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   495
    end
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   496
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   497
    if getTeamValue(teamsSorted[1], "Score") == getTeamValue(teamsSorted[2], "Score") then
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   498
        -- The first two teams have the same score! Round is drawn.
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   499
        return nil
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   500
    else
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   501
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   502
    ShowMission(loc("Mutant"),
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   503
        loc("Final result"),
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   504
        string.format(loc("Winner: %s"), teamsSorted[1]) .. "| |" .. loc("Scores:") .. " |" ..
15069
e16f906224fd Change mission panel icons for a couple of game styles
Wuzzy <Wuzzy2@mail.ru>
parents: 14989
diff changeset
   505
        showScore, 4, 15000)
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   506
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   507
        -- return winning team
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   508
        return teamsSorted[1]
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   509
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   510
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   511
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   512
function checkScore()
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   513
local lowest_score_team = nil
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   514
local min_score=nil
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   515
local winTeam = nil
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   516
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   517
local only_low_score = true
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   518
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   519
    for i=0, TeamsCount-1 do
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   520
        local teamName = GetTeamName(i)
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   521
        if not teamsDead[teamName] then
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   522
            local curr_score = getTeamValue(teamName, "Score")
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   523
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   524
            runOnHogsInTeam(removeFeeder, teamName)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   525
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   526
            if curr_score >= winScore then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   527
                gameOver = true
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   528
                winTeam = teamName
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   529
            end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   530
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   531
            if min_score==nil then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   532
                min_score= curr_score
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   533
                lowest_score_team = teamName
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   534
            else
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   535
                if curr_score <= min_score then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   536
                    if curr_score == min_score then
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   537
                        if getTeamValue(teamName, "DeadHogs") == getTeamValue(lowest_score_team, "DeadHogs") then
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   538
                            only_low_score = false
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   539
                        else
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   540
                            if getTeamValue(teamName, "DeadHogs") > getTeamValue(lowest_score_team, "DeadHogs") then
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   541
                                lowest_score_team = teamName
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   542
                            end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   543
                            only_low_score = true
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   544
                        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   545
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   546
                    else
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   547
                        min_score= curr_score
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   548
                        lowest_score_team = teamName
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   549
                        only_low_score = true
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   550
                    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   551
                end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   552
            end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   553
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   554
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   555
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   556
    if gameOver then
12341
c73521104fac Mutant: Fix “Boring” taunt being played when becoming the mutant
Wuzzy <almikes@aol.com>
parents: 12335
diff changeset
   557
        EndTurn(true)
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   558
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   559
        for i=0, TeamsCount-1 do
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   560
            local teamName = GetTeamName(i)
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   561
            if teamName~=winTeam then
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   562
                runOnHogsInTeam(armageddon, teamName)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   563
            end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   564
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   565
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   566
        createEndGameStats()
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   567
    else
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   568
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   569
    if only_low_score then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   570
        runOnHogsInTeam(setFeeder, lowest_score_team)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   571
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   572
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   573
    if meh == false then
14264
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   574
        meh = true
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   575
    end
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   576
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   577
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   578
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   579
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   580
function backToNormal(gear)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   581
    SetHogName(gear, getGearValue(gear,"Name"))
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   582
    SetHogHat(gear, 'NoHat')
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   583
    SetHogHat(gear, getGearValue(gear,"Hat"))
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   584
    setGearValue(mutant,"SelfDestruct",false)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   585
    mt_hurt=false
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   586
    mutant=nil
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   587
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   588
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   589
function setAIHints()
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   590
    for i = 0, #hhs do
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   591
        if mutant == nil or hhs[i] == mutant or CurrentHedgehog == mutant or getGearValue(CurrentHedgehog, "Feeder") then
13036
434bcdd9562c Fix inconsistent name of SetGearAIHints
Wuzzy <Wuzzy2@mail.ru>
parents: 13019
diff changeset
   592
            SetGearAIHints(hhs[i], aihUsualProcessing)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   593
        else
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   594
            SetGearAIHints(hhs[i], aihDoesntMatter)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   595
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   596
    end
14266
9b5a8147386f I think this is correct way to use iterate over it as a hashmap. don't have much lua practice
nemo
parents: 14265
diff changeset
   597
    for k,v in pairs(crates) do
9b5a8147386f I think this is correct way to use iterate over it as a hashmap. don't have much lua practice
nemo
parents: 14265
diff changeset
   598
        if CurrentHedgehog == mutant and v ~= nil  then
9b5a8147386f I think this is correct way to use iterate over it as a hashmap. don't have much lua practice
nemo
parents: 14265
diff changeset
   599
            SetGearAIHints(v, aihDoesntMatter)
14264
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   600
        else
14266
9b5a8147386f I think this is correct way to use iterate over it as a hashmap. don't have much lua practice
nemo
parents: 14265
diff changeset
   601
            SetGearAIHints(v, aihUsualProcessing)
14264
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   602
        end
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   603
    end
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   604
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   605
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   606
function removeFeeder(gear)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   607
    if gear~=nil then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   608
        setGearValue(gear,"Feeder",false)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   609
        if gear~= mutant then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   610
            SetHogName(gear, getGearValue(gear,"Name") )
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   611
            SetHogHat(gear, 'NoHat')
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   612
            SetHogHat(gear, getGearValue(gear,"Hat"))
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   613
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   614
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   615
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   616
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   617
function setFeeder(gear)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   618
    if gear~= mutant and gear~= nil then
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   619
        SetHogName(gear, loc("Bottom Feeder"))
12988
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   620
        SetHogHat(gear, feederHat)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   621
        setGearValue(gear,"Feeder", true)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   622
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   623
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   624
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   625
function setMutantStuff(gear)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   626
    mutant = gear
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   627
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   628
    SetHogName(gear, loc("Mutant"))
12988
a15413d896c3 Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   629
    SetHogHat(gear, mutantHat)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   630
    SetHealth(gear, ( mutant_base_health + numhhs*25) )
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   631
    SetEffect(gear, hePoisoned, 1)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   632
    setGearValue(mutant,"SelfDestruct",false)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   633
    setGearValue(gear, "Feeder", false)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   634
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   635
    AddCaption(string.format(loc("%s has mutated! +2 points"), getGearValue(gear, "Name")), GetClanColor(GetHogClan(gear)), capgrpMessage)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   636
12430
c461a224ec09 Mutant: Fix turn skip of next hog after mutating when TurnTimeLeft = 0
Wuzzy <almikes@aol.com>
parents: 12341
diff changeset
   637
    if TurnTimeLeft > 0 then
c461a224ec09 Mutant: Fix turn skip of next hog after mutating when TurnTimeLeft = 0
Wuzzy <almikes@aol.com>
parents: 12341
diff changeset
   638
        EndTurn(true)
c461a224ec09 Mutant: Fix turn skip of next hog after mutating when TurnTimeLeft = 0
Wuzzy <almikes@aol.com>
parents: 12341
diff changeset
   639
    end
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   640
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   641
    AddVisualGear(GetX(gear), GetY(gear), vgtSmokeRing, 0, false)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   642
    AddVisualGear(GetX(gear), GetY(gear), vgtSmokeRing, 0, false)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   643
    AddVisualGear(GetX(gear), GetY(gear), vgtSmokeRing, 0, false)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   644
    AddVisualGear(GetX(gear), GetY(gear), vgtSmokeRing, 0, false)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   645
    AddVisualGear(GetX(gear), GetY(gear), vgtSmokeRing, 0, false)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   646
    PlaySound(sndSuddenDeath)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   647
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   648
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   649
function teamScan()
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   650
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   651
        for j=0, TeamsCount-1 do
15269
96fbf9bb960a Mutant: Remove excess teams if a clan has more than one team
Wuzzy <Wuzzy2@mail.ru>
parents: 15069
diff changeset
   652
            local teamName = GetTeamName(j)
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   653
            teamsDead[teamName] = false
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   654
            setTeamValue(teamName, "Score",0)
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   655
            setTeamValue(teamName, "Suicides",0)
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   656
            setTeamValue(teamName, "Skips",0)
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   657
            setTeamValue(teamName, "Crates",0)
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   658
            setTeamValue(teamName, "DeadHogs",0)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   659
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   660
13019
880662cf41ee Add team score next to team bars for CTF_Blizard, Control, CTF, Mutant, Space Invasion
Wuzzy <Wuzzy2@mail.ru>
parents: 12988
diff changeset
   661
        renderScores()
880662cf41ee Add team score next to team bars for CTF_Blizard, Control, CTF, Mutant, Space Invasion
Wuzzy <Wuzzy2@mail.ru>
parents: 12988
diff changeset
   662
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   663
        ---***---
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   664
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   665
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   666
function set_Mutant_and_Score(gear)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   667
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   668
local curr_team = GetHogTeamName(CurrentHedgehog)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   669
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   670
    if gear == CurrentHedgehog then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   671
        if CurrentHedgehog == mutant then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   672
            PlaySound(sndHomerun)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   673
            if getGearValue(gear, "SelfDestruct")==false then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   674
                decreaseTeamValue(curr_team,"Score")
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   675
            end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   676
            backToNormal(gear)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   677
        else
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   678
            decreaseTeamValue(curr_team,"Score")
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   679
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   680
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   681
    else
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   682
            if gear == mutant then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   683
                    backToNormal(mutant)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   684
                    if curr_team ~=GetHogTeamName(gear) then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   685
                            if  getGearValue(CurrentHedgehog, "Alive") then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   686
                            setMutantStuff(CurrentHedgehog)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   687
                            setTeamValue(curr_team,"Score",(getTeamValue(curr_team,"Score") + mutant_kill_reward))
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   688
                            end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   689
                    else
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   690
                        setTeamValue(curr_team,"Score",(getTeamValue(curr_team,"Score") - team_fire_punishment))
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   691
                        increaseTeamValue(curr_team,"Suicides")
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   692
                        if(getTeamValue(curr_team, "Suicides") > recordSuicides) then
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   693
                            recordSuicides = getTeamValue(curr_team, "Suicides")
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   694
                            recordSuicidesHogName = getGearValue(CurrentHedgehog, "Name")
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   695
                            recordSuicidesTeamName = curr_team
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   696
                        end
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   697
                        AddCaption(loc("-1 point"), GetClanColor(GetHogClan(CurrentHedgehog)), capgrpMessage)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   698
                    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   699
            else
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   700
                if mutant==nil then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   701
                        if curr_team ~=GetHogTeamName(gear) then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   702
                            if getGearValue(CurrentHedgehog, "Alive") then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   703
                                    setMutantStuff(CurrentHedgehog)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   704
                                    setTeamValue(curr_team,"Score",(getTeamValue(curr_team,"Score") + mutant_kill_reward))
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   705
                            else
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   706
                                increaseTeamValue(curr_team,"Score")
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   707
                            end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   708
                        else
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   709
                            setTeamValue(curr_team,"Score",(getTeamValue(curr_team,"Score") - team_fire_punishment))
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   710
                            increaseTeamValue(curr_team,"Suicides")
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   711
                            if(getTeamValue(curr_team, "Suicides") > recordSuicides) then
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   712
                                recordSuicides = getTeamValue(curr_team, "Suicides")
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   713
                                recordSuicidesHogName = getGearValue(CurrentHedgehog, "Name")
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   714
                                recordSuicidesTeamName = curr_team
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   715
                            end
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   716
                            AddCaption(loc("-1 point"), GetClanColor(GetHogClan(CurrentHedgehog)), capgrpMessage)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   717
                        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   718
                else
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   719
                    if curr_team ~=GetHogTeamName(gear) then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   720
                        if CurrentHedgehog==mutant and getGearValue(mutant,"SelfDestruct")==false then
12940
39b7b3ed619e Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 12430
diff changeset
   721
                            HealHog(CurrentHedgehog, kill_reward)
12288
a5a7d0c6d3f3 Fix incorrect Mutant score message color
Wuzzy <almikes@aol.com>
parents: 11909
diff changeset
   722
                            AddCaption(loc("+1 point"), GetClanColor(GetHogClan(CurrentHedgehog)), capgrpMessage)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   723
                            increaseTeamValue(curr_team,"Score")
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   724
                        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   725
                        if getGearValue(CurrentHedgehog,"Feeder") then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   726
                            increaseTeamValue(curr_team,"Score")
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   727
                            AddCaption(loc("+1 point"), GetClanColor(GetHogClan(CurrentHedgehog)), capgrpMessage)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   728
                        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   729
                    else
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   730
                        setTeamValue(curr_team,"Score",(getTeamValue(curr_team,"Score") - team_fire_punishment))
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   731
                        AddCaption(loc("+1 point"), GetClanColor(GetHogClan(CurrentHedgehog)), capgrpMessage)
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   732
                    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   733
                end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   734
            end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   735
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   736
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   737
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   738
function onGearResurrect(gear)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   739
if not gameOver then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   740
    if GetGearType(gear) == gtHedgehog then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   741
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   742
        increaseTeamValue(GetHogTeamName(gear), "DeadHogs")
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   743
        totalKills = totalKills + 1
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   744
        if(getTeamValue(GetHogTeamName(gear), "DeadHogs") > recordDeaths) then
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   745
            recordDeaths = getTeamValue(GetHogTeamName(gear), "DeadHogs")
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   746
            recordDeathsHogName = getGearValue(gear, "Name")
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   747
            recordDeathsTeamName = GetHogTeamName(gear)
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   748
        end
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   749
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   750
        if gear==CurrentHedgehog then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   751
            setGearValue(CurrentHedgehog, "Alive", false)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   752
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   753
        set_Mutant_and_Score(gear)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   754
        if gear~=CurrentHedgehog then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   755
            killsCounter = killsCounter + 1
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   756
            countBodies()
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   757
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   758
        AddVisualGear(GetX(gear), GetY(gear), vgtSmokeRing, 0, false)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   759
        PlaySound(sndWhack)
13019
880662cf41ee Add team score next to team bars for CTF_Blizard, Control, CTF, Mutant, Space Invasion
Wuzzy <Wuzzy2@mail.ru>
parents: 12988
diff changeset
   760
        renderScores()
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   761
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   762
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   763
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   764
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   765
function onGearDamage(gear, damage)
14264
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   766
    if not gameOver and GetGearType(gear) == gtHedgehog then
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   767
        totalDamage = totalDamage + damage
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   768
    end
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   769
end
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   770
13172
159004144897 Use onSkipTurn in scripts to detect turn skips
Wuzzy <Wuzzy2@mail.ru>
parents: 13108
diff changeset
   771
function onSkipTurn()
14264
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   772
    -- Record skips for achievement
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   773
    local team = GetHogTeamName(CurrentHedgehog)
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   774
    increaseTeamValue(team, "Skips")
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   775
    if(getTeamValue(team, "Skips") > recordSkips) then
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   776
        recordSkips = getTeamValue(team, "Skips")
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   777
        recordSkipsHogName = getGearValue(CurrentHedgehog, "Name")
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   778
        recordSkipsTeamName = team
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   779
    end
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   780
end
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   781
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   782
function onGearAdd(gear)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   783
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   784
    -- Catch hedgehogs for the tracker
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   785
    if GetGearType(gear) == gtHedgehog then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   786
        trackGear(gear)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   787
        hhs[numhhs] = gear
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   788
        numhhs = numhhs + 1
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   789
        SetEffect(gear, heResurrectable, 1)
14264
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   790
    elseif GetGearType(gear) == gtCase then
14266
9b5a8147386f I think this is correct way to use iterate over it as a hashmap. don't have much lua practice
nemo
parents: 14265
diff changeset
   791
        crates[gear] = gear
13219
b229b3259a76 Mutant: Fix graph title on game draw
Wuzzy <Wuzzy2@mail.ru>
parents: 13172
diff changeset
   792
    elseif GetGearType(gear) == gtATFinishGame then
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   793
        if not gameOver then
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   794
            local winner = createEndGameStats()
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   795
            if winner then
15970
a803428704fd Make use of GetEngineString in Lua scripts
Wuzzy <Wuzzy@disroot.org>
parents: 15537
diff changeset
   796
                local winText = formatEngineString(GetEngineString("TMsgStrId", sidWinner), winner)
a803428704fd Make use of GetEngineString in Lua scripts
Wuzzy <Wuzzy@disroot.org>
parents: 15537
diff changeset
   797
                SendStat(siGameResult, winText)
a803428704fd Make use of GetEngineString in Lua scripts
Wuzzy <Wuzzy@disroot.org>
parents: 15537
diff changeset
   798
                AddCaption(winText, capcolDefault, capgrpGameState)
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   799
            end
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   800
            gameOver = true
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   801
        end
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   802
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   803
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   804
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   805
function checkEmptyTeam (teamName)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   806
    for i=0 , #hhs do
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   807
        if hhs[i]~=nil then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   808
            if teamName == GetHogTeamName(hhs[i]) then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   809
                return false
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   810
            end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   811
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   812
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   813
    return true
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   814
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   815
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   816
function onGearDelete(gear)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   817
    -- Remove hogs that are gone
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   818
    if GetGearType(gear) == gtHedgehog then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   819
        numhhs = numhhs - 1
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   820
15537
bbb98e22a303 Fix impossible to become mutant after mutant gear got deleted (bug 804)
Wuzzy <Wuzzy2@mail.ru>
parents: 15458
diff changeset
   821
        if (not gameOver) and (gear == mutant) then
bbb98e22a303 Fix impossible to become mutant after mutant gear got deleted (bug 804)
Wuzzy <Wuzzy2@mail.ru>
parents: 15458
diff changeset
   822
            mutant = nil
bbb98e22a303 Fix impossible to become mutant after mutant gear got deleted (bug 804)
Wuzzy <Wuzzy2@mail.ru>
parents: 15458
diff changeset
   823
            mt_hurt = false
bbb98e22a303 Fix impossible to become mutant after mutant gear got deleted (bug 804)
Wuzzy <Wuzzy2@mail.ru>
parents: 15458
diff changeset
   824
        end
bbb98e22a303 Fix impossible to become mutant after mutant gear got deleted (bug 804)
Wuzzy <Wuzzy2@mail.ru>
parents: 15458
diff changeset
   825
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   826
        local found
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   827
        for i=0, #hhs do
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   828
            if hhs[i] == gear then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   829
                found = i
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   830
                break
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   831
            end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   832
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   833
        for i = found, #hhs - 1 do
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   834
            hhs[i] = hhs[i + 1]
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   835
        end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   836
        hhs[#hhs] = nil
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   837
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   838
        local t_name = GetHogTeamName(gear)
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   839
        if checkEmptyTeam(t_name) then
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   840
            for i = 0, TeamsCount - 1 do
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   841
                if GetTeamName(i) == t_name then
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   842
                    found = i
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   843
                    teamsDead[t_name] = true
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   844
                    break
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   845
                end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   846
            end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   847
        end
13220
1c390781f72f Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents: 13219
diff changeset
   848
        if getGearValue(gear, "excess") ~= true and band(GetState(gear), gstDrowning) == 0 then
13108
f3f8d017f994 Mutant: Faster excess hog removal
Wuzzy <Wuzzy2@mail.ru>
parents: 13105
diff changeset
   849
            AddVisualGear(GetX(gear), GetY(gear), vgtBigExplosion, 0, false)
f3f8d017f994 Mutant: Faster excess hog removal
Wuzzy <Wuzzy2@mail.ru>
parents: 13105
diff changeset
   850
        end
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   851
        trackDeletion(gear)
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   852
    elseif GetGearType(gear) == gtCase then
14264
6f3f59266c4c flag crates since waste of time for mutant.
nemo
parents: 13769
diff changeset
   853
        crates[gear] = nil
11909
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   854
        -- Check if a crate has been collected
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   855
        if band(GetGearMessage(gear), gmDestroy) ~= 0 and CurrentHedgehog ~= nil then
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   856
            -- Update crate collection achievement
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   857
            increaseTeamValue(GetHogTeamName(CurrentHedgehog), "Crates")
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   858
            if(getTeamValue(GetHogTeamName(CurrentHedgehog), "Crates") > recordCrates) then
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   859
                recordCrates = getTeamValue(GetHogTeamName(CurrentHedgehog), "Crates")
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   860
                recordCratesHogName = getGearValue(CurrentHedgehog, "Name")
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   861
                recordCratesTeamName = GetHogTeamName(CurrentHedgehog)
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   862
            end
1d2e89be3eb6 Update Mutant script
Wuzzy <almikes@aol.com>
parents: 11237
diff changeset
   863
        end
11015
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   864
    end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   865
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   866
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   867
function onParameters()
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   868
    parseParams()
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   869
    winScore = tonumber(params["winscore"]) or winScore
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   870
end
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   871
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   872
--[[
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   873
S T A R R I N G
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   874
    prof - Coding, implementing and evangelism
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   875
    vos  - Initial idea and script improvements
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   876
    mikade - Moving the `how to play` into the game so that people know `how to play`, and whitespace :D
7a905f0070ce CRLF purge
nemo
parents: 10872
diff changeset
   877
--]]