share/hedgewars/Data/Scripts/Multiplayer/Racer.lua
author mikade <redgrinner@gmail.com>
Thu, 30 May 2013 19:34:39 +0900
changeset 9083 6d2efdca5da2
parent 8043 da083f8d95e6
child 9472 265e5997580e
permissions -rw-r--r--
Add how to play description to Mutant Fix issue #277
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")
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    75
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
-- Got Variables?
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    78
------------------
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
local fMod = 1000000 -- 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    81
local roundLimit = 3
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    82
local roundNumber = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    83
local firstClan = 10
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    84
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    85
local fastX = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    86
local fastY = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    87
local fastCount = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    88
local fastIndex = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    89
local fastColour
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    90
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    91
local currX = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    92
local currY = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    93
local currCount = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    94
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    95
--------------------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    96
-- hog and team tracking variales
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    97
--------------------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    98
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
    99
local numhhs = 0 -- store number of hedgehogs
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   100
local hhs = {} -- store hedgehog gears
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   101
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   102
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
   103
local teamNameArr = {}  -- store the list of teams
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   104
local teamClan = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   105
local teamSize = {}     -- store how many hogs per team
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   106
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
   107
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   108
local teamComment = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   109
local teamScore = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   110
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   111
-------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   112
-- racer vars
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   113
--------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   114
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   115
local cGear = nil
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
local bestClan = nil
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   118
local bestTime = nil
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 gameBegun = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   121
local gameOver = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   122
local racerActive = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   123
local trackTime = 0
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 wpCirc = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   126
local wpX = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   127
local wpY = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   128
local wpCol = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   129
local wpActive = {}
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   130
local wpRad = 450 --75
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   131
local wpCount = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   132
local wpLimit = 8
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   133
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   134
local roundN
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   135
local lastRound
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   136
local RoundHasChanged
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   137
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
-- general methods
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   140
-------------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   141
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   142
function RebuildTeamInfo()
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
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   145
        -- make a list of individual team names
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   146
        for i = 0, (TeamsCount-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   147
                teamNameArr[i] = " " -- = i
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   148
                teamSize[i] = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   149
                teamIndex[i] = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   150
                teamScore[i] = 100000
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   151
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   152
        numTeams = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   153
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   154
        for i = 0, (numhhs-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   155
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   156
                z = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   157
                unfinished = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   158
                while(unfinished == true) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   159
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   160
                        newTeam = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   161
                        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
   162
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   163
                        if tempHogTeamName == teamNameArr[z] then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   164
                                newTeam = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   165
                                unfinished = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   166
                        end
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
                        z = z + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   169
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   170
                        if z == TeamsCount then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   171
                                unfinished = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   172
                                if newTeam == true then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   173
                                        teamNameArr[numTeams] = tempHogTeamName
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   174
                                        numTeams = numTeams + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   175
                                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   176
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   177
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   178
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   179
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
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   182
        -- 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
   183
        for i = 0, (numTeams-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   184
                for z = 0, (numhhs-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   185
                        if GetHogTeamName(hhs[z]) == teamNameArr[i] then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   186
                                teamClan[i] = GetHogClan(hhs[z])
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   187
                                if teamSize[i] == 0 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   188
                                        teamIndex[i] = z -- should give starting index
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   189
                                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   190
                                teamSize[i] = teamSize[i] + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   191
                                --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
   192
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   193
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   194
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   195
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   196
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
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
-----------------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   201
-- RACER METHODS
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   202
-----------------
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
function CheckWaypoints()
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
        trackFinished = true
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
        for i = 0, (wpCount-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   209
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   210
                g1X, g1Y = GetGearPosition(CurrentHedgehog)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   211
                g2X, g2Y = wpX[i], wpY[i]
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
                g1X = g1X - g2X
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   214
                g1Y = g1Y - g2Y
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   215
                dist = (g1X*g1X) + (g1Y*g1Y)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   216
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   217
                --if i == 0 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   218
                --      AddCaption(dist .. "/" .. (wpRad*wpRad) )
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   219
                --end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   220
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   221
                NR = (48/100*wpRad)/2
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   222
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   223
                if dist < (NR*NR) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   224
                --if dist < (wpRad*wpRad) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   225
                        --AddCaption("howdy")
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   226
                        wpActive[i] = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   227
                        wpCol[i] = GetClanColor(GetHogClan(CurrentHedgehog)) -- new                             --GetClanColor(1)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   228
                        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
   229
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   230
                        wpRem = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   231
                        for k = 0, (wpCount-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   232
                                if wpActive[k] == false then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   233
                                        wpRem = wpRem + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   234
                                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   235
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   236
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   237
                        AddCaption(loc("Way-Points Remaining") .. ": " .. wpRem,0xffba00ff,capgrpAmmoinfo)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   238
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
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   241
                if wpActive[i] == false then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   242
                        trackFinished = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   243
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   244
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   245
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   246
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   247
        return(trackFinished)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   248
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   249
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   250
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   251
function AdjustScores()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   252
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   253
        if bestTime == nil then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   254
                bestTime = 100000
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   255
                bestClan = 10
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   256
                bestTimeComment = "N/A"
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   257
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   258
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   259
        newScore = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   260
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   261
        -- 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
   262
        for i = 0, (numTeams-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   263
                if teamClan[i] == GetHogClan(CurrentHedgehog) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   264
                        if trackTime < teamScore[i] then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   265
                                teamScore[i] = trackTime
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   266
                                newScore = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   267
                        else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   268
                                newScore = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   269
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   270
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   271
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   272
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   273
        --bestTime = 100000
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   274
        --bestClan = 10
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   275
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   276
        -- 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
   277
        for i = 0, (numTeams-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   278
                if teamScore[i] < bestTime then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   279
                        bestTime = teamScore[i]
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   280
                        bestClan = teamClan[i]
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   281
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   282
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   283
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   284
        if bestTime ~= 100000 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   285
                bestTimeComment = (bestTime/1000) ..loc("s")
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
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   288
        if newScore == true then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   289
                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
   290
                        ShowMission(loc("RACER"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   291
                        loc("TRACK COMPLETED"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   292
                        loc("NEW RACE RECORD: ") .. (trackTime/1000) ..loc("s") .. "|" ..
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   293
                        loc("WINNING TIME: ") .. bestTimeComment, 0, 4000)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   294
                        PlaySound(sndHomerun)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   295
                else    -- best time for the clan
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   296
                        ShowMission(loc("RACER"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   297
                        loc("TRACK COMPLETED"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   298
                        loc("NEW CLAN RECORD: ") .. (trackTime/1000) ..loc("s") .. "|" ..
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   299
                        loc("WINNING TIME: ") .. bestTimeComment, 4, 4000)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   300
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   301
        else -- not any kind of new score
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   302
                ShowMission(loc("RACER"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   303
                loc("TRACK COMPLETED"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   304
                loc("TIME: ") .. (trackTime/1000) ..loc("s") .. "|" ..
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   305
                loc("WINNING TIME: ") .. bestTimeComment, -amSkip, 4000)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   306
                PlaySound(sndHellish)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   307
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   308
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   309
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   310
        --------
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   311
        --new
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   312
        --------
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
        if bestTime == trackTime then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   315
                --AddCaption("wooooooooooooooooooooooooooooo")
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   316
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   317
                fastColour = GetClanColor(GetHogClan(CurrentHedgehog))
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
                for i = 0, (currCount-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   320
                        fastX[i] = currX[i]
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   321
                        fastY[i] = currY[i]
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   322
                end
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
                fastCount = currCount
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   325
                fastIndex = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   326
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   327
                --currCount = 0 -- is this needed?
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
        else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   330
                currCount = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   331
                fastIndex = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   332
        end
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
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   335
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   336
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   337
function onNewRound()
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
        roundNumber = roundNumber + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   340
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   341
        totalComment = ""
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   342
        for i = 0, (TeamsCount-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   343
                        if teamNameArr[i] ~= " " then                           -- teamScore[teamClan[i]]
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   344
                                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
   345
                                totalComment = totalComment .. teamComment[i]
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   346
                        elseif teamNameArr[i] == " " then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   347
                                teamComment[i] = "|"
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   348
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   349
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   350
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   351
        ShowMission(    loc("RACER"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   352
                                        loc("STATUS UPDATE"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   353
                                        loc("Rounds Complete: ") .. roundNumber .. "/" .. roundLimit .. "|" .. " " .. "|" ..
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   354
                                        loc("Best Team Times: ") .. "|" .. totalComment, 0, 4000)
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
        -- end game if its at round limit
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   357
        if roundNumber == roundLimit then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   358
                for i = 0, (numhhs-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   359
                        if GetHogClan(hhs[i]) ~= bestClan then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   360
                                SetEffect(hhs[i], heResurrectable, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   361
                                SetHealth(hhs[i],0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   362
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   363
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   364
                gameOver = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   365
                TurnTimeLeft = 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   366
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   367
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
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   370
function CheckForNewRound()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   371
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
        ------ new
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
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   376
        --[[turnN = turnN + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   377
        if gameBegun == false then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   378
                if turnN == 2 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   379
                        for i = 0, (numhhs-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   380
                                if hhs[i] ~= nil then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   381
                                        SetEffect(hhs[i], heResurrectable, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   382
                                        SetHealth(hhs[i],0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   383
                                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   384
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   385
                        gameOver = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   386
                        TurnTimeLeft = 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   387
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   388
        else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   389
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   390
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   391
        end]]
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   392
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   393
        --[[if roundBegun == true then
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
                if RoundHasChanged == true then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   396
                        roundN = roundN + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   397
                        RoundHasChanged = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   398
                        onNewRound()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   399
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   400
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   401
                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
   402
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   403
                        if RoundHasChanged == false then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   404
                                RoundHasChanged = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   405
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   406
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   407
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   408
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   409
                AddCaption("RoundN:" .. roundN .. "; " .. "TR: " .. TotalRounds)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   410
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   411
                lastRound = TotalRounds
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   412
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   413
        end]]
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   414
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
        ----- old
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
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   419
        if GetHogClan(CurrentHedgehog) == firstClan then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   420
                onNewRound()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   421
        end
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
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   424
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   425
function DisableTumbler()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   426
        currCount = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   427
        fastIndex = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   428
        TurnTimeLeft = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   429
        racerActive = false -- newadd
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   430
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   431
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   432
function HandleGhost()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   433
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   434
        -- 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
   435
        currX[currCount] = GetX(CurrentHedgehog)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   436
        currY[currCount] = GetY(CurrentHedgehog)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   437
        currCount = currCount + 1
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
        -- 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
   440
        if (fastCount ~= 0) and (fastIndex < fastCount) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   441
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   442
                fastIndex = fastIndex + 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
                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
   445
                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
   446
                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
   447
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   448
                --AddCaption("fC: " .. fastIndex .. " / " .. fastCount)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   449
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   450
        else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   451
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   452
                --AddCaption("excep fC: " .. fastIndex .. " / " .. fastCount)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   453
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   454
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   455
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
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   458
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   459
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   460
function TryRepositionHogs()
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
	if MapHasBorder() == true then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   463
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   464
		for i = 0, (numhhs-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   465
			if hhs[i] ~= nil then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   466
				SetGearPosition(hhs[i],GetX(hhs[i]), TopY-10)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   467
			end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   468
		end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   469
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   470
	end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   471
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
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
-- GAME METHODS / EVENT HANDLERS
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
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   478
function onGameInit()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   479
        GameFlags = bor(GameFlags,gfInfAttack + gfInvulnerable)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   480
        CaseFreq = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   481
        TurnTime = 90000
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   482
        WaterRise = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   483
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   484
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   485
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   486
function onGameStart()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   487
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   488
        roundN = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   489
        lastRound = TotalRounds
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   490
        RoundHasChanged = false -- true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   491
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   492
        RebuildTeamInfo()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   493
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   494
        ShowMission     (
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   495
                                loc("RACER"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   496
                                loc("a Hedgewars mini-game"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   497
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   498
                                loc("Build a track and race.") .. "|" ..
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   499
                                loc("Round Limit:") .. " " .. roundLimit .. "|" ..
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   500
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   501
                                "", 4, 4000
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
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   504
	TryRepositionHogs()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   505
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   506
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   507
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   508
function PlaceWayPoint(x,y)
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
        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
   511
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   512
                wpX[wpCount] = x
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   513
                wpY[wpCount] = y
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   514
                wpCol[wpCount] = 0xffffffff
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   515
                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
   516
                                                                                                                                                --100
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   517
                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
   518
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   519
                wpCount = wpCount + 1
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
                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
   522
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   523
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   524
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   525
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   526
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   527
function onNewTurn()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   528
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   529
        CheckForNewRound()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   530
	TryRepositionHogs()
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
        racerActive = false
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
        trackTime = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   535
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   536
        currCount = 0 -- hopefully this solves problem
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   537
        AddAmmo(CurrentHedgehog, amAirAttack, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   538
        gTimer = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   539
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   540
        -- Set the waypoints to unactive on new round
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   541
        for i = 0,(wpCount-1) do
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   542
                wpActive[i] = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   543
                wpCol[i] = 0xffffffff
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   544
                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
   545
        end
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
        -- Handle Starting Stage of Game
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   548
        if (gameOver == false) and (gameBegun == false) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   549
                if wpCount >= 3 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   550
                        gameBegun = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   551
                        roundNumber = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   552
                        firstClan = GetHogClan(CurrentHedgehog)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   553
                        ShowMission(loc("RACER"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   554
                        loc("GAME BEGUN!!!"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   555
                        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
   556
                else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   557
                        ShowMission(loc("RACER"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   558
                        loc("NOT ENOUGH WAYPOINTS"),
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   559
                        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
   560
                        AddAmmo(CurrentHedgehog, amAirAttack, 4000)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   561
            ParseCommand("setweap " .. string.char(amAirAttack))
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   562
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   563
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   564
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   565
        if gameOver == true then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   566
                gameBegun = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   567
                racerActive = false -- newadd
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   568
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   569
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   570
        AddAmmo(CurrentHedgehog, amTardis, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   571
        AddAmmo(CurrentHedgehog, amDrillStrike, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   572
        AddAmmo(CurrentHedgehog, amMineStrike, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   573
        AddAmmo(CurrentHedgehog, amNapalm, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   574
        AddAmmo(CurrentHedgehog, amPiano, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   575
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   576
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   577
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   578
function onGameTick20()
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
        -- 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
   581
        if cGear ~= nil then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   582
                x,y = GetGearPosition(cGear)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   583
        if x > -9000 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   584
            x,y = GetGearTarget(cGear)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   585
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   586
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   587
            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
   588
                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
   589
                PlaySound(sndDenied)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   590
            elseif (y > WaterLine-50) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   591
                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
   592
                PlaySound(sndDenied)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   593
            else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   594
                PlaceWayPoint(x, y)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   595
                if wpCount == wpLimit then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   596
                    AddCaption(loc("Race complexity limit reached."))
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   597
                    DisableTumbler()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   598
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   599
            end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   600
        else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   601
            DeleteGear(cGear)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   602
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   603
        SetGearPosition(cGear, -10000, 0)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   604
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   605
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   606
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   607
        -- 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
   608
        if racerActive == false then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   609
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   610
                if (TurnTimeLeft > 0) and (TurnTimeLeft ~= TurnTime) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   611
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   612
                        -- 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
   613
                        --waypoint that was placed
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   614
                        if gameBegun == true then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   615
                                AddCaption(loc("Good to go!"))
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   616
                                racerActive = true
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   617
                                trackTime = 0
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   618
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   619
                                SetGearPosition(CurrentHedgehog, wpX[0], wpY[0])
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   620
                                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
   621
                                FollowGear(CurrentHedgehog)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   622
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   623
                                HideMission()
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
                        else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   626
                                -- still in placement mode
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   627
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   628
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   629
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   630
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   631
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   632
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
        -- has the player started his tumbling spree?
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   635
        if (CurrentHedgehog ~= nil) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   636
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   637
                --airstrike conversion used to be here
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   638
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   639
                -- 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
   640
                if (racerActive == true) and (gameBegun == true) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   641
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   642
                        --ghost
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   643
                        if GameTime%40 == 0 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   644
                                HandleGhost()
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
                        trackTime = trackTime + 20
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
                        if GameTime%100 == 0 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   650
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   651
                if trackTime%1000 == 0 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   652
                    AddCaption((trackTime/1000)..'.0',GetClanColor(GetHogClan(CurrentHedgehog)),capgrpMessage2)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   653
                else
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   654
                    AddCaption(trackTime/1000,GetClanColor(GetHogClan(CurrentHedgehog)),capgrpMessage2)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   655
                end
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
                                if (CheckWaypoints() == true) then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   658
                                        AdjustScores()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   659
                                        racerActive = false
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   660
                                        DisableTumbler()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   661
                                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   662
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   663
                        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   664
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   665
                end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   666
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   667
                -- 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
   668
                if TurnTimeLeft <= 20 then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   669
                        DisableTumbler()
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
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   673
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   674
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   675
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   676
function onGearResurrect(gear)
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
        AddVisualGear(GetX(gear), GetY(gear), vgtBigExplosion, 0, false)
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
        if gear == CurrentHedgehog then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   681
                DisableTumbler()
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   682
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   683
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   684
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   685
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   686
function onGearAdd(gear)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   687
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   688
        if GetGearType(gear) == gtHedgehog then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   689
                hhs[numhhs] = gear
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   690
                numhhs = numhhs + 1
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   691
                SetEffect(gear, heResurrectable, 1)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   692
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   693
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   694
        if GetGearType(gear) == gtAirAttack then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   695
                cGear = gear
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   696
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   697
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   698
end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   699
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   700
function onGearDelete(gear)
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   701
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   702
        if GetGearType(gear) == gtAirAttack then
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   703
                cGear = nil
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   704
        end
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   705
6d2efdca5da2 Add how to play description to Mutant
mikade <redgrinner@gmail.com>
parents: 8043
diff changeset
   706
end