share/hedgewars/Data/Scripts/Multiplayer/Racer.lua
author sheepluva
Tue, 21 Jan 2014 18:02:37 +0100
changeset 10036 3be36d2fdca6
parent 10022 eb981a03de90
permissions -rw-r--r--
use new API for changing GameFlags
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9083
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
     1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
     2
------------------------------------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
     3
-- RACER 0.6
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
     4
-- map-independant racing script
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
     5
-- by mikade
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
     6
-----------------------------------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
     7
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
     8
-----------------------------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
     9
--0.1: took all the code from crazy racer and scrapped most of it
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    10
-----------------------------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    11
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    12
-- Removed tumbler system
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    13
-- Removed extra adds like boosters etc
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    14
-- Added experimental waypoint placement system
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    15
-- More user feedback
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    16
-- Reduced race complexity limit to 5 waypoints
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    17
-- stop placement at complexity limit reached and end turn
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    18
-- guys dont keep racing after dying
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    19
-- invulnerable feasibility
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    20
-- reverted time keeping method
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    21
-- reduced feedback display time
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    22
-- colour-coded addcaptions
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    23
-- cleaned up code
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    24
-- support for more players properly added
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    25
-- tardis fix
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    26
-- remove airstrikes
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    27
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    28
-- i think the remainder 0 .456 sec of the tracktime isnt getting reset on newturn
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    29
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    30
-- update feedback
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    31
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    32
-------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    33
-- 0.2
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    34
-------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    35
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    36
-- allow gameflags
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    37
-- extend time to 90s
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    38
-- remove other air-attack based weps
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    39
-- turn off water rise for sd
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    40
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    41
-------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    42
-- 0.3
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    43
-------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    44
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    45
-- prevent WP being placed in land
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    46
-- prevent waypoints being placed outside border
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    47
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    48
-------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    49
-- 0.4
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    50
-------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    51
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    52
-- update user feedback
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    53
-- add more sounds
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    54
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    55
-------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    56
-- 0.5
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    57
-------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    58
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    59
-- fix ghost disappearing if hog falls in water or somehow dies
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    60
-- lengthen ghost tracking interval to improve performance on slower machines
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    61
-- increase waypoint limit to 8
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    62
-- allow for persistent showmission information
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    63
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    64
-------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    65
-- 0.6
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    66
-------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    67
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    68
-- remove hogs from racing area as per request
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    69
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    70
-----------------------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    71
-- SCRIPT BEGINS
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    72
-----------------------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    73
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    74
HedgewarsScriptLoad("/Scripts/Locale.lua")
10022
eb981a03de90 - Make Racer report achievements
unc0rr
parents: 9483
diff changeset
    75
HedgewarsScriptLoad("/Scripts/OfficialChallenges.lua")
9083
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    76
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    77
------------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    78
-- Got Variables?
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    79
------------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    80
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    81
local fMod = 1000000 -- 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    82
local roundLimit = 3
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    83
local roundNumber = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    84
local firstClan = 10
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    85
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    86
local fastX = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    87
local fastY = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    88
local fastCount = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    89
local fastIndex = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    90
local fastColour
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    91
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    92
local currX = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    93
local currY = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    94
local currCount = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    95
9483
14ad1ac00ac9 Modify Racer script so it could work with special points
unc0rr
parents: 9472
diff changeset
    96
local specialPointsX = {}
14ad1ac00ac9 Modify Racer script so it could work with special points
unc0rr
parents: 9472
diff changeset
    97
local specialPointsY = {}
14ad1ac00ac9 Modify Racer script so it could work with special points
unc0rr
parents: 9472
diff changeset
    98
local specialPointsCount = 0
14ad1ac00ac9 Modify Racer script so it could work with special points
unc0rr
parents: 9472
diff changeset
    99
9083
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   100
--------------------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   101
-- hog and team tracking variales
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   102
--------------------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   103
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   104
local numhhs = 0 -- store number of hedgehogs
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   105
local hhs = {} -- store hedgehog gears
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   106
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   107
local numTeams --  store the number of teams in the game
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   108
local teamNameArr = {}  -- store the list of teams
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   109
local teamClan = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   110
local teamSize = {}     -- store how many hogs per team
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   111
local teamIndex = {} -- at what point in the hhs{} does each team begin
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   112
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   113
local teamComment = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   114
local teamScore = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   115
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   116
-------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   117
-- racer vars
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   118
--------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   119
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   120
local cGear = nil
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   121
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   122
local bestClan = nil
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   123
local bestTime = nil
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   124
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   125
local gameBegun = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   126
local gameOver = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   127
local racerActive = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   128
local trackTime = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   129
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   130
local wpCirc = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   131
local wpX = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   132
local wpY = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   133
local wpCol = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   134
local wpActive = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   135
local wpRad = 450 --75
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   136
local wpCount = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   137
local wpLimit = 8
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   138
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   139
local roundN
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   140
local lastRound
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   141
local RoundHasChanged
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   142
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   143
-------------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   144
-- general methods
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   145
-------------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   146
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   147
function RebuildTeamInfo()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   148
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   149
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   150
        -- make a list of individual team names
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   151
        for i = 0, (TeamsCount-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   152
                teamNameArr[i] = " " -- = i
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   153
                teamSize[i] = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   154
                teamIndex[i] = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   155
                teamScore[i] = 100000
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   156
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   157
        numTeams = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   158
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   159
        for i = 0, (numhhs-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   160
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   161
                z = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   162
                unfinished = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   163
                while(unfinished == true) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   164
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   165
                        newTeam = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   166
                        tempHogTeamName = GetHogTeamName(hhs[i]) -- this is the new name
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   167
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   168
                        if tempHogTeamName == teamNameArr[z] then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   169
                                newTeam = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   170
                                unfinished = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   171
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   172
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   173
                        z = z + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   174
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   175
                        if z == TeamsCount then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   176
                                unfinished = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   177
                                if newTeam == true then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   178
                                        teamNameArr[numTeams] = tempHogTeamName
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   179
                                        numTeams = numTeams + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   180
                                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   181
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   182
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   183
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   184
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   185
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   186
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   187
        -- find out how many hogs per team, and the index of the first hog in hhs
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   188
        for i = 0, (numTeams-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   189
                for z = 0, (numhhs-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   190
                        if GetHogTeamName(hhs[z]) == teamNameArr[i] then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   191
                                teamClan[i] = GetHogClan(hhs[z])
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   192
                                if teamSize[i] == 0 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   193
                                        teamIndex[i] = z -- should give starting index
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   194
                                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   195
                                teamSize[i] = teamSize[i] + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   196
                                --add a pointer so this hog appears at i in hhs
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   197
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   198
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   199
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   200
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   201
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   202
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   203
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   204
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   205
-----------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   206
-- RACER METHODS
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   207
-----------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   208
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   209
function CheckWaypoints()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   210
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   211
        trackFinished = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   212
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   213
        for i = 0, (wpCount-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   214
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   215
                g1X, g1Y = GetGearPosition(CurrentHedgehog)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   216
                g2X, g2Y = wpX[i], wpY[i]
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   217
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   218
                g1X = g1X - g2X
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   219
                g1Y = g1Y - g2Y
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   220
                dist = (g1X*g1X) + (g1Y*g1Y)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   221
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   222
                --if i == 0 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   223
                --      AddCaption(dist .. "/" .. (wpRad*wpRad) )
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   224
                --end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   225
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   226
                NR = (48/100*wpRad)/2
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   227
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   228
                if dist < (NR*NR) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   229
                --if dist < (wpRad*wpRad) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   230
                        --AddCaption("howdy")
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   231
                        wpActive[i] = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   232
                        wpCol[i] = GetClanColor(GetHogClan(CurrentHedgehog)) -- new                             --GetClanColor(1)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   233
                        SetVisualGearValues(wpCirc[i], wpX[i], wpY[i], 20, 100, 1, 10, 0, wpRad, 5, wpCol[i])
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   234
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   235
                        wpRem = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   236
                        for k = 0, (wpCount-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   237
                                if wpActive[k] == false then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   238
                                        wpRem = wpRem + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   239
                                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   240
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   241
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   242
                        AddCaption(loc("Way-Points Remaining") .. ": " .. wpRem,0xffba00ff,capgrpAmmoinfo)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   243
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   244
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   245
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   246
                if wpActive[i] == false then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   247
                        trackFinished = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   248
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   249
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   250
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   251
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   252
        return(trackFinished)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   253
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   254
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   255
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   256
function AdjustScores()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   257
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   258
        if bestTime == nil then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   259
                bestTime = 100000
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   260
                bestClan = 10
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   261
                bestTimeComment = "N/A"
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   262
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   263
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   264
        newScore = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   265
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   266
        -- update this clan's time if the new track is better
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   267
        for i = 0, (numTeams-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   268
                if teamClan[i] == GetHogClan(CurrentHedgehog) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   269
                        if trackTime < teamScore[i] then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   270
                                teamScore[i] = trackTime
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   271
                                newScore = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   272
                        else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   273
                                newScore = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   274
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   275
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   276
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   277
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   278
        --bestTime = 100000
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   279
        --bestClan = 10
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   280
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   281
        -- find the best time out of those so far
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   282
        for i = 0, (numTeams-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   283
                if teamScore[i] < bestTime then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   284
                        bestTime = teamScore[i]
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   285
                        bestClan = teamClan[i]
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   286
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   287
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   288
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   289
        if bestTime ~= 100000 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   290
                bestTimeComment = (bestTime/1000) ..loc("s")
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   291
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   292
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   293
        if newScore == true then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   294
                if trackTime == bestTime then -- best time of the race
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   295
                        ShowMission(loc("RACER"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   296
                        loc("TRACK COMPLETED"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   297
                        loc("NEW RACE RECORD: ") .. (trackTime/1000) ..loc("s") .. "|" ..
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   298
                        loc("WINNING TIME: ") .. bestTimeComment, 0, 4000)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   299
                        PlaySound(sndHomerun)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   300
                else    -- best time for the clan
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   301
                        ShowMission(loc("RACER"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   302
                        loc("TRACK COMPLETED"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   303
                        loc("NEW CLAN RECORD: ") .. (trackTime/1000) ..loc("s") .. "|" ..
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   304
                        loc("WINNING TIME: ") .. bestTimeComment, 4, 4000)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   305
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   306
        else -- not any kind of new score
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   307
                ShowMission(loc("RACER"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   308
                loc("TRACK COMPLETED"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   309
                loc("TIME: ") .. (trackTime/1000) ..loc("s") .. "|" ..
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   310
                loc("WINNING TIME: ") .. bestTimeComment, -amSkip, 4000)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   311
                PlaySound(sndHellish)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   312
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   313
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   314
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   315
        --------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   316
        --new
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   317
        --------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   318
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   319
        if bestTime == trackTime then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   320
                --AddCaption("wooooooooooooooooooooooooooooo")
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   321
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   322
                fastColour = GetClanColor(GetHogClan(CurrentHedgehog))
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   323
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   324
                for i = 0, (currCount-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   325
                        fastX[i] = currX[i]
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   326
                        fastY[i] = currY[i]
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   327
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   328
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   329
                fastCount = currCount
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   330
                fastIndex = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   331
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   332
                --currCount = 0 -- is this needed?
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   333
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   334
        else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   335
                currCount = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   336
                fastIndex = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   337
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   338
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   339
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   340
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   341
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   342
function onNewRound()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   343
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   344
        roundNumber = roundNumber + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   345
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   346
        totalComment = ""
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   347
        for i = 0, (TeamsCount-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   348
                        if teamNameArr[i] ~= " " then                           -- teamScore[teamClan[i]]
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   349
                                teamComment[i] = teamNameArr[i] .. ": " .. (teamScore[i]/1000) .. loc("s|")
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   350
                                totalComment = totalComment .. teamComment[i]
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   351
                        elseif teamNameArr[i] == " " then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   352
                                teamComment[i] = "|"
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   353
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   354
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   355
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   356
        ShowMission(    loc("RACER"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   357
                                        loc("STATUS UPDATE"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   358
                                        loc("Rounds Complete: ") .. roundNumber .. "/" .. roundLimit .. "|" .. " " .. "|" ..
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   359
                                        loc("Best Team Times: ") .. "|" .. totalComment, 0, 4000)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   360
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   361
        -- end game if its at round limit
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   362
        if roundNumber == roundLimit then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   363
                for i = 0, (numhhs-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   364
                        if GetHogClan(hhs[i]) ~= bestClan then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   365
                                SetEffect(hhs[i], heResurrectable, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   366
                                SetHealth(hhs[i],0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   367
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   368
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   369
                gameOver = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   370
                TurnTimeLeft = 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   371
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   372
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   373
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   374
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   375
function CheckForNewRound()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   376
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   377
        -------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   378
        ------ new
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   379
        -------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   380
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   381
        --[[turnN = turnN + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   382
        if gameBegun == false then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   383
                if turnN == 2 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   384
                        for i = 0, (numhhs-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   385
                                if hhs[i] ~= nil then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   386
                                        SetEffect(hhs[i], heResurrectable, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   387
                                        SetHealth(hhs[i],0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   388
                                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   389
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   390
                        gameOver = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   391
                        TurnTimeLeft = 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   392
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   393
        else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   394
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   395
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   396
        end]]
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   397
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   398
        --[[if roundBegun == true then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   399
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   400
                if RoundHasChanged == true then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   401
                        roundN = roundN + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   402
                        RoundHasChanged = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   403
                        onNewRound()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   404
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   405
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   406
                if lastRound ~= TotalRounds then -- new round, but not really
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   407
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   408
                        if RoundHasChanged == false then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   409
                                RoundHasChanged = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   410
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   411
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   412
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   413
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   414
                AddCaption("RoundN:" .. roundN .. "; " .. "TR: " .. TotalRounds)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   415
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   416
                lastRound = TotalRounds
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   417
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   418
        end]]
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   419
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   420
        ------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   421
        ----- old
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   422
        ------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   423
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   424
        if GetHogClan(CurrentHedgehog) == firstClan then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   425
                onNewRound()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   426
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   427
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   428
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   429
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   430
function DisableTumbler()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   431
        currCount = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   432
        fastIndex = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   433
        TurnTimeLeft = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   434
        racerActive = false -- newadd
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   435
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   436
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   437
function HandleGhost()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   438
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   439
        -- get the current xy of the racer at this point
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   440
        currX[currCount] = GetX(CurrentHedgehog)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   441
        currY[currCount] = GetY(CurrentHedgehog)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   442
        currCount = currCount + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   443
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   444
        -- draw a ping of smoke where the fastest player was at this point
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   445
        if (fastCount ~= 0) and (fastIndex < fastCount) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   446
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   447
                fastIndex = fastIndex + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   448
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   449
                tempE = AddVisualGear(fastX[fastIndex], fastY[fastIndex], vgtSmoke, 0, false)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   450
                g1, g2, g3, g4, g5, g6, g7, g8, g9, g10 = GetVisualGearValues(tempE)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   451
                SetVisualGearValues(tempE, g1, g2, g3, g4, g5, g6, g7, g8, g9, fastColour )
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   452
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   453
                --AddCaption("fC: " .. fastIndex .. " / " .. fastCount)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   454
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   455
        else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   456
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   457
                --AddCaption("excep fC: " .. fastIndex .. " / " .. fastCount)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   458
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   459
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   460
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   461
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   462
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   463
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   464
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   465
function TryRepositionHogs()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   466
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   467
	if MapHasBorder() == true then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   468
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   469
		for i = 0, (numhhs-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   470
			if hhs[i] ~= nil then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   471
				SetGearPosition(hhs[i],GetX(hhs[i]), TopY-10)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   472
			end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   473
		end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   474
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   475
	end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   476
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   477
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   478
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   479
----------------------------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   480
-- GAME METHODS / EVENT HANDLERS
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   481
----------------------------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   482
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   483
function onGameInit()
10036
3be36d2fdca6 use new API for changing GameFlags
sheepluva
parents: 10022
diff changeset
   484
        EnableGameFlags(gfInfAttack, gfInvulnerable)
9083
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   485
        CaseFreq = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   486
        TurnTime = 90000
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   487
        WaterRise = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   488
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   489
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   490
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   491
function onGameStart()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   492
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   493
        roundN = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   494
        lastRound = TotalRounds
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   495
        RoundHasChanged = false -- true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   496
9483
14ad1ac00ac9 Modify Racer script so it could work with special points
unc0rr
parents: 9472
diff changeset
   497
        for i = 0, (specialPointsCount-1) do
14ad1ac00ac9 Modify Racer script so it could work with special points
unc0rr
parents: 9472
diff changeset
   498
                PlaceWayPoint(specialPointsX[i], specialPointsY[i])
14ad1ac00ac9 Modify Racer script so it could work with special points
unc0rr
parents: 9472
diff changeset
   499
        end
14ad1ac00ac9 Modify Racer script so it could work with special points
unc0rr
parents: 9472
diff changeset
   500
9083
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   501
        RebuildTeamInfo()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   502
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   503
        ShowMission     (
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   504
                                loc("RACER"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   505
                                loc("a Hedgewars mini-game"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   506
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   507
                                loc("Build a track and race.") .. "|" ..
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   508
                                loc("Round Limit:") .. " " .. roundLimit .. "|" ..
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   509
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   510
                                "", 4, 4000
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   511
                                )
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   512
9483
14ad1ac00ac9 Modify Racer script so it could work with special points
unc0rr
parents: 9472
diff changeset
   513
        TryRepositionHogs()
9083
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   514
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   515
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   516
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   517
function PlaceWayPoint(x,y)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   518
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   519
        if (wpCount < wpLimit) then -- seems to not work with a hedgehog nil chek
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   520
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   521
                wpX[wpCount] = x
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   522
                wpY[wpCount] = y
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   523
                wpCol[wpCount] = 0xffffffff
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   524
                wpCirc[wpCount] = AddVisualGear(wpX[wpCount],wpY[wpCount],vgtCircle,0,true)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   525
                                                                                                                                                --100
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   526
                SetVisualGearValues(wpCirc[wpCount], wpX[wpCount], wpY[wpCount], 20, 100, 1, 10, 0, wpRad, 5, wpCol[wpCount])
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   527
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   528
                wpCount = wpCount + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   529
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   530
                AddCaption(loc("Waypoint placed.") .. " " .. loc("Available points remaining: ") .. (wpLimit-wpCount))
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   531
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   532
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   533
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   534
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   535
9472
265e5997580e Incomplete implementation of 'special points' in drawn maps (crashes engine)
unc0rr
parents: 9083
diff changeset
   536
function onSpecialPoint(x,y,flag)
9483
14ad1ac00ac9 Modify Racer script so it could work with special points
unc0rr
parents: 9472
diff changeset
   537
    specialPointsX[specialPointsCount] = x
14ad1ac00ac9 Modify Racer script so it could work with special points
unc0rr
parents: 9472
diff changeset
   538
    specialPointsY[specialPointsCount] = y
14ad1ac00ac9 Modify Racer script so it could work with special points
unc0rr
parents: 9472
diff changeset
   539
    specialPointsCount = specialPointsCount + 1
9472
265e5997580e Incomplete implementation of 'special points' in drawn maps (crashes engine)
unc0rr
parents: 9083
diff changeset
   540
end
265e5997580e Incomplete implementation of 'special points' in drawn maps (crashes engine)
unc0rr
parents: 9083
diff changeset
   541
9083
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   542
function onNewTurn()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   543
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   544
        CheckForNewRound()
9483
14ad1ac00ac9 Modify Racer script so it could work with special points
unc0rr
parents: 9472
diff changeset
   545
        TryRepositionHogs()
9083
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   546
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   547
        racerActive = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   548
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   549
        trackTime = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   550
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   551
        currCount = 0 -- hopefully this solves problem
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   552
        AddAmmo(CurrentHedgehog, amAirAttack, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   553
        gTimer = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   554
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   555
        -- Set the waypoints to unactive on new round
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   556
        for i = 0,(wpCount-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   557
                wpActive[i] = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   558
                wpCol[i] = 0xffffffff
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   559
                SetVisualGearValues(wpCirc[i], wpX[i], wpY[i], 20, 100, 1, 10, 0, wpRad, 5, wpCol[i])
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   560
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   561
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   562
        -- Handle Starting Stage of Game
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   563
        if (gameOver == false) and (gameBegun == false) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   564
                if wpCount >= 3 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   565
                        gameBegun = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   566
                        roundNumber = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   567
                        firstClan = GetHogClan(CurrentHedgehog)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   568
                        ShowMission(loc("RACER"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   569
                        loc("GAME BEGUN!!!"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   570
                        loc("Complete the track as fast as you can!"), 2, 4000)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   571
                else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   572
                        ShowMission(loc("RACER"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   573
                        loc("NOT ENOUGH WAYPOINTS"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   574
                        loc("Place more waypoints using the 'Air Attack' weapon."), 2, 4000)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   575
                        AddAmmo(CurrentHedgehog, amAirAttack, 4000)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   576
            ParseCommand("setweap " .. string.char(amAirAttack))
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   577
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   578
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   579
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   580
        if gameOver == true then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   581
                gameBegun = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   582
                racerActive = false -- newadd
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   583
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   584
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   585
        AddAmmo(CurrentHedgehog, amTardis, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   586
        AddAmmo(CurrentHedgehog, amDrillStrike, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   587
        AddAmmo(CurrentHedgehog, amMineStrike, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   588
        AddAmmo(CurrentHedgehog, amNapalm, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   589
        AddAmmo(CurrentHedgehog, amPiano, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   590
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   591
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   592
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   593
function onGameTick20()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   594
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   595
        -- airstrike detected, convert this into a potential waypoint spot
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   596
        if cGear ~= nil then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   597
                x,y = GetGearPosition(cGear)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   598
        if x > -9000 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   599
            x,y = GetGearTarget(cGear)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   600
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   601
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   602
            if TestRectForObstacle(x-20, y-20, x+20, y+20, true) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   603
                AddCaption(loc("Please place the way-point in the open, within the map boundaries."))
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   604
                PlaySound(sndDenied)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   605
            elseif (y > WaterLine-50) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   606
                AddCaption(loc("Please place the way-point further from the waterline."))
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   607
                PlaySound(sndDenied)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   608
            else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   609
                PlaceWayPoint(x, y)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   610
                if wpCount == wpLimit then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   611
                    AddCaption(loc("Race complexity limit reached."))
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   612
                    DisableTumbler()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   613
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   614
            end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   615
        else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   616
            DeleteGear(cGear)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   617
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   618
        SetGearPosition(cGear, -10000, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   619
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   620
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   621
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   622
        -- start the player tumbling with a boom once their turn has actually begun
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   623
        if racerActive == false then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   624
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   625
                if (TurnTimeLeft > 0) and (TurnTimeLeft ~= TurnTime) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   626
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   627
                        -- if the gamehas started put the player in the middle of the first
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   628
                        --waypoint that was placed
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   629
                        if gameBegun == true then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   630
                                AddCaption(loc("Good to go!"))
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   631
                                racerActive = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   632
                                trackTime = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   633
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   634
                                SetGearPosition(CurrentHedgehog, wpX[0], wpY[0])
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   635
                                AddGear(GetX(CurrentHedgehog), GetY(CurrentHedgehog), gtGrenade, 0, 0, 0, 1)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   636
                                FollowGear(CurrentHedgehog)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   637
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   638
                                HideMission()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   639
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   640
                        else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   641
                                -- still in placement mode
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   642
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   643
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   644
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   645
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   646
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   647
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   648
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   649
        -- has the player started his tumbling spree?
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   650
        if (CurrentHedgehog ~= nil) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   651
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   652
                --airstrike conversion used to be here
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   653
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   654
                -- if the RACE has started, show tracktimes and keep tabs on waypoints
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   655
                if (racerActive == true) and (gameBegun == true) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   656
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   657
                        --ghost
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   658
                        if GameTime%40 == 0 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   659
                                HandleGhost()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   660
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   661
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   662
                        trackTime = trackTime + 20
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   663
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   664
                        if GameTime%100 == 0 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   665
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   666
                if trackTime%1000 == 0 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   667
                    AddCaption((trackTime/1000)..'.0',GetClanColor(GetHogClan(CurrentHedgehog)),capgrpMessage2)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   668
                else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   669
                    AddCaption(trackTime/1000,GetClanColor(GetHogClan(CurrentHedgehog)),capgrpMessage2)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   670
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   671
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   672
                                if (CheckWaypoints() == true) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   673
                                        AdjustScores()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   674
                                        racerActive = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   675
                                        DisableTumbler()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   676
                                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   677
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   678
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   679
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   680
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   681
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   682
                -- if the player has expended his tunbling time, stop him tumbling
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   683
                if TurnTimeLeft <= 20 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   684
                        DisableTumbler()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   685
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   686
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   687
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   688
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   689
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   690
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   691
function onGearResurrect(gear)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   692
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   693
        AddVisualGear(GetX(gear), GetY(gear), vgtBigExplosion, 0, false)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   694
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   695
        if gear == CurrentHedgehog then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   696
                DisableTumbler()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   697
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   698
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   699
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   700
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   701
function onGearAdd(gear)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   702
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   703
        if GetGearType(gear) == gtHedgehog then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   704
                hhs[numhhs] = gear
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   705
                numhhs = numhhs + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   706
                SetEffect(gear, heResurrectable, 1)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   707
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   708
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   709
        if GetGearType(gear) == gtAirAttack then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   710
                cGear = gear
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   711
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   712
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   713
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   714
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   715
function onGearDelete(gear)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   716
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   717
        if GetGearType(gear) == gtAirAttack then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   718
                cGear = nil
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   719
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   720
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   721
end
10022
eb981a03de90 - Make Racer report achievements
unc0rr
parents: 9483
diff changeset
   722
eb981a03de90 - Make Racer report achievements
unc0rr
parents: 9483
diff changeset
   723
eb981a03de90 - Make Racer report achievements
unc0rr
parents: 9483
diff changeset
   724
function onAchievementsDeclaration()
eb981a03de90 - Make Racer report achievements
unc0rr
parents: 9483
diff changeset
   725
    map = detectMap()
eb981a03de90 - Make Racer report achievements
unc0rr
parents: 9483
diff changeset
   726
    
eb981a03de90 - Make Racer report achievements
unc0rr
parents: 9483
diff changeset
   727
    for i = 0, (numTeams-1) do
eb981a03de90 - Make Racer report achievements
unc0rr
parents: 9483
diff changeset
   728
        if teamScore[i] < 100000 then
eb981a03de90 - Make Racer report achievements
unc0rr
parents: 9483
diff changeset
   729
            DeclareAchievement("rope race", teamNameArr[i], map, teamScore[i])
eb981a03de90 - Make Racer report achievements
unc0rr
parents: 9483
diff changeset
   730
        end
eb981a03de90 - Make Racer report achievements
unc0rr
parents: 9483
diff changeset
   731
    end
eb981a03de90 - Make Racer report achievements
unc0rr
parents: 9483
diff changeset
   732
end