share/hedgewars/Data/Scripts/Multiplayer/Construction_Mode.lua
author Wuzzy <Wuzzy2@mail.ru>
Sat, 10 Feb 2018 09:32:28 +0100
changeset 12951 37b81c20358b
parent 12950 a260d233cef3
child 12952 eafaada79157
permissions -rw-r--r--
Refactor Construction Mode to NOT use localized strings as identifiers Yes, it actually used strings returned by loc() as identifiers. Crazy!
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
     1
--[[-----------------------------------------------------
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
     2
-- CONSTRUCTION MODE --
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
     3
---------------------------------------------------------
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
     4
A Hedgewars gameplay mode by mikade.
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
     5
Special thanks to all who helped test and offered suggestions.
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
     6
Additional thanks to sheepluva/nemo for adding some extra hooks.
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
     7
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
     8
---------------------
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
     9
-- STRUCTURES LIST --
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    10
---------------------
11720
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
    11
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    12
* Healing Station: Heals hogs to 150 health
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    13
* Teleportation Node: Allows teleporting to any other teleporter nodes
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    14
* Bio-filter: Explodes enemy hogs
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    15
* Respawner: If you have one of these, any slain hogs are resurrected here
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    16
* Generator: Generates power (used to buy stuff)
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    17
* Support Station: Allows purchasing crates
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    18
* Construction Station: Allows purchasing girders, rubber, mines, sticky mines, barrels
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    19
* Reflector Shield: Reflect projectiles
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    20
* Weapon Filter: Removes all equipement of enemy hogs passing through this area
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
    21
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    22
---------------------------------------------------------
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    23
-- SCRIPT PARAMETER
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    24
---------------------------------------------------------
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    25
The script parameter can be used to configure the energy
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    26
of the game. It is a comma-seperated list of key=value pairs, where each
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    27
key is a word and each value is an integer between 0 and 4294967295.
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
    28
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    29
Possible keys:
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    30
* initialenergy:  Amount of energy that each team starts with (default: 550)
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    31
                  Note: Must be smaller than or equal to maxenergy
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    32
* energyperround: Amount of energy that each team gets per round (default: 50)
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    33
* maxenergy:      Maximum amount of energy each team can hold (default: 1000)
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    34
* cratesperround: Maximum number of crates you can place per round (default: 5)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
    35
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    36
For the previous 2 keys, you can use the value “inf” for an unlimited amount.
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
    37
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    38
Example: “initialenergy=750, maxenergy=2000” starts thee game with 750 energy
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    39
         and sets the maximum energy to 2000.
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    40
Example: “craterperround=inf” disables the crate placement limit.
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
    41
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    42
---------------------------------------------------------
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    43
-- Ideas list --
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    44
---------------------------------------------------------
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
    45
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    46
* To make the weapon filter more attractive, make it vaporize flying saucers
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    47
  and also rope, and maybe incoming gears
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
    48
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    49
* Make healing thing also cure poison?
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    50
* Maybe make poison more virulent and dangerous
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
    51
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
    52
]]
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
    53
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
    54
HedgewarsScriptLoad("/Scripts/Locale.lua")
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
    55
HedgewarsScriptLoad("/Scripts/Tracker.lua")
11720
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
    56
HedgewarsScriptLoad("/Scripts/Params.lua")
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
    57
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
    58
-- Structures stuff
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    59
local strucID = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    60
local strucGear = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    61
local strucClan = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    62
local strucType = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    63
local strucCost = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    64
local strucHealth = {}
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
    65
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    66
local strucCirc = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    67
local strucCircCol = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    68
local strucCircRadius = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    69
local strucCircType = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    70
local strucAltDisplay = {}
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
    71
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
    72
-- Clan stuff
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
    73
local clanPower = {} -- current power for each clan. Used to build stuff
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
    74
local clanPowerTag = nil -- visual gear ID of displayed clan power
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
    75
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
    76
local clanUsedExtraTime = {} -- has used extra time in this round?
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
    77
local clanCratesSpawned = {} -- number of crates spawned in this round
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
    78
local clanFirstTurn = {}
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
    79
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    80
local clanBoundsSX = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    81
local clanBoundsSY = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    82
local clanBoundsEX = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    83
local clanBoundsEY = {}
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
    84
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
    85
-- For tracking previous mode selection per-team
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    86
local teamLStructIndex = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    87
local teamLObjectMode = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    88
local teamLCrateMode = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    89
local teamLMineIndex = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    90
local teamLWeapIndex = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    91
local teamLUtilIndex = {}
12944
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
    92
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
    93
-- Wall stuff
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    94
local wallsVisible = false
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    95
local wX = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    96
local wY = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    97
local wWidth = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    98
local wHeight = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
    99
local wCol = {}
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   100
local wMargin = 20
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   101
local borderEffectTimer = 0 -- timer for border clan sparkles
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   102
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   103
-- Other stuff
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   104
local placedExpense = 0 -- Cost of current selected thing
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   105
local curWep = amNothing -- current weapon, used to reduce # of calls to GetCurAmmoType()
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   106
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   107
local fortMode = false -- is using a fort map?
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   108
local tempID_CheckProximity = nil -- temporary structure variable for CheckProximity
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   109
local cGear = nil -- detects placement of girders and objects (using airattack)
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   110
local uniqueStructureID = 0 -- Counter and ID for structures. Is incremented each time a structure spawns
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   111
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   112
--[[ Hacky workaround for object placer: Since this thing is
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   113
based on the drill strike, it allows the 5 timer keys to be
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   114
pressed, causing the announcer to show up.
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   115
This variable counts the number of ticks to count down until
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   116
to overwrite this anouncer message.
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   117
-1 means “do nothing”. ]]
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   118
local checkForSpecialWeaponsIn = -1
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   119
local lastWep = amNothing -- helper variable to track the previous hack
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   120
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   121
-- Colors
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   122
local colorRed = 0xff0000ff
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   123
local colorGreen = 0x00ff00ff
11717
f35139700d22 Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents: 11716
diff changeset
   124
12941
ffbd31afed96 HedgeEditor, Construction Mode: Refactor code by adding fake ammo type variables
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   125
-- Fake ammo types, for the overwritten weapons in Construction Mode
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   126
local amCMStructurePlacer = amAirAttack
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   127
local amCMCratePlacer = amNapalm
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   128
local amCMObjectPlacer = amDrillStrike
12941
ffbd31afed96 HedgeEditor, Construction Mode: Refactor code by adding fake ammo type variables
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   129
11720
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
   130
-- Config variables (script parameter)
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   131
local conf_initialEnergy = 550
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   132
local conf_energyPerRound = 50
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   133
local conf_maxEnergy = 1000
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   134
local conf_cratesPerRound = 5
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   135
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   136
-----------------------
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   137
-- CRATE DEFINITIONS --
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   138
-----------------------
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   139
-- format:
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   140
-- { ammoType, cost }
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   141
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   142
local costFactor = 20
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   143
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   144
-- WEAPON CRATES
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   145
-- Weapons which shouldn't be aded:
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   146
-- Air attack, napalm, drillstrike: Overwritten weapons for the Construction Mode tools
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   147
local atkArray = {
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   148
	{amBazooka,	 2*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   149
	--{amBee,	 4*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   150
	{amMortar,	 1*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   151
	{amDrill,	 3*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   152
	{amSnowball,	 3*costFactor},
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   153
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   154
	{amGrenade,	 2*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   155
	{amClusterBomb,	 3*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   156
	{amWatermelon,	25*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   157
	{amHellishBomb,	25*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   158
	{amMolotov,	 3*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   159
	{amGasBomb,	 3*costFactor},
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   160
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   161
	{amShotgun,	 2*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   162
	{amDEagle,	 2*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   163
	{amSniperRifle,	 3*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   164
	--{amSineGun,	 6*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   165
	{amFlamethrower, 4*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   166
	{amIceGun,	15*costFactor},
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   167
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   168
	{amFirePunch,	 3*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   169
	{amWhip,	 1*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   170
	{amBaseballBat,	 7*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   171
	--{amKamikaze,	 1*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   172
	{amSeduction,	 1*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   173
	{amHammer,	 1*costFactor},
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   174
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   175
	{amMine,	 1*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   176
	{amDynamite,	 9*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   177
	{amCake,	25*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   178
	{amBallgun,	40*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   179
	--{amRCPlane,	25*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   180
	{amSMine,	 5*costFactor},
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   181
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   182
	--{amMineStrike,15*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   183
	--{amPiano,	40*costFactor},
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   184
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   185
	{amPickHammer,	 2*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   186
	{amBlowTorch,	 4*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   187
	{amKnife,	 2*costFactor},
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   188
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   189
	{amBirdy,	 7*costFactor},
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   190
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   191
	{amDuck,	 2*costFactor}
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   192
}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   193
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   194
-- UTILITY CRATES --
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   195
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   196
-- Utilities which shouldn't be added:
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   197
-- * Teleport: We have teleportation node
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   198
-- * Switch: Always infinite
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   199
-- * Girder, rubber: Requires construction station
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   200
-- * Resurrector: We have the resurrector structure for this
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   201
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   202
-- Utilities which might be weird for this mode:
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   203
-- * Tardis: Randomly teleports hog, maybe even into enemy clan's area
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   204
local utilArray = {
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   205
 	{amLandGun,	 5*costFactor},
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   206
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   207
	{amRope,	 7*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   208
	{amParachute,	 2*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   209
	{amJetpack,	 8*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   210
	{amPortalGun,	 15*costFactor},
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   211
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   212
	{amInvulnerable, 5*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   213
	{amLaserSight,	 2*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   214
	{amVampiric,	 6*costFactor},
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   215
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   216
	{amLowGravity,	 4*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   217
	{amExtraDamage,	 6*costFactor},
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   218
	{amExtraTime,	 8*costFactor}
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   219
}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   220
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   221
----------------------------
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   222
-- Placement stuff
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   223
----------------------------
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   224
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   225
-- primary placement categories
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   226
local cIndex = 1 -- category index
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   227
local cat = {
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   228
	loc_noop("Girder Placement Mode"),
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   229
	loc_noop("Rubber Placement Mode"),
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   230
	loc_noop("Mine Placement Mode"),
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   231
	loc_noop("Sticky Mine Placement Mode"),
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   232
	loc_noop("Barrel Placement Mode"),
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   233
	loc_noop("Weapon Crate Placement Mode"),
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   234
	loc_noop("Utility Crate Placement Mode"),
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   235
	loc_noop("Health Crate Placement Mode"),
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   236
	loc_noop("Structure Placement Mode"),
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   237
}
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   238
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   239
local catReverse = {}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   240
for c=1, #cat do
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   241
	catReverse[cat[c]] = c
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   242
end
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   243
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   244
-- Track girders in proximity of CurrentHedgehog
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   245
local sProx = {
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   246
	["Girder Placement Mode"] = false,
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   247
	["Rubber Placement Mode"] = false,
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   248
	["Mine Placement Mode"] = false,
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   249
	["Sticky Mine Placement Mode"] = false,
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   250
	["Barrel Placement Mode"] = false,
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   251
	["Weapon Crate Placement Mode"] = false,
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   252
	["Utility Crate Placement Mode"] = false,
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   253
	["Health Crate Placement Mode"] = false,
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   254
	["Structure Placement Mode"] = false,
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   255
	["Teleportation Mode"] = false,
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   256
}
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   257
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   258
local pMode = {}	-- pMode contains custom subsets of the main categories
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   259
local pIndex = 1
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   260
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   261
local currentGirderRotation = 1 -- current girder rotation, we actually need this as HW remembers what rotation you last used
11720
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
   262
12836
8610462e3d33 Remove 2 unused number tags in Construction Mode GUI
Wuzzy <Wuzzy2@mail.ru>
parents: 12682
diff changeset
   263
function DrawClanPowerTag()
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   264
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   265
	local zoomL = 1.1
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   266
	local xOffset = 45
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   267
	local yOffset = 70
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   268
	local tValue = clanPower[GetHogClan(CurrentHedgehog)]
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   269
	local tCol = 0x00ff00ff
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   270
12836
8610462e3d33 Remove 2 unused number tags in Construction Mode GUI
Wuzzy <Wuzzy2@mail.ru>
parents: 12682
diff changeset
   271
	DeleteVisualGear(clanPowerTag)
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   272
	clanPowerTag = AddVisualGear(-div(ScreenWidth, 2) + xOffset, ScreenHeight - yOffset, vgtHealthTag, tValue, false)
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   273
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   274
	SetVisualGearValues(
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   275
		clanPowerTag, 	-- id
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   276
		nil,		-- x offset (set above)
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   277
		nil,		-- y offset (set above)
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   278
		0, 		-- dx
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   279
		0, 		-- dy
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   280
		zoomL, 		-- zoom
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   281
		1, 		-- ~= 0 means align to screen
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   282
		nil, 		-- frameticks
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   283
		nil, 		-- value (set above)
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   284
		240000, 	-- timer
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   285
		tCol		-- color.   -- GetClanColor( GetHogClan(CurrentHedgehog) )
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   286
	)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   287
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   288
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   289
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   290
function XYisInRect(px, py, psx, psy, pex, pey)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   291
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   292
	if (px > psx) and (px < pex) and (py > psy) and (py < pey) then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   293
		return(true)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   294
	else
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   295
		return(false)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   296
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   297
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   298
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   299
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   300
function AddWall(zXMin, zYMin, zWidth, zHeight, zCol)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   301
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   302
	table.insert(wX, zXMin)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   303
	table.insert(wY, zYMin)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   304
	table.insert(wWidth, zWidth)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   305
	table.insert(wHeight, zHeight)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   306
	table.insert(wCol, zCol)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   307
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   308
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   309
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   310
function BorderSpark(zXMin,zYMin, zWidth, zHeight, bCol)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   311
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   312
	local eX = zXMin + GetRandom(zWidth+10)
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   313
	local eY = zYMin + GetRandom(zHeight+10)
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   314
	local tempE = AddVisualGear(eX, eY, vgtDust, 0, false)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   315
	if tempE ~= 0 then
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   316
		SetVisualGearValues(tempE, eX, eY, nil, nil, nil, nil, nil, 1, nil, bCol)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   317
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   318
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   319
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   320
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   321
function HandleBorderEffects()
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   322
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   323
	borderEffectTimer = borderEffectTimer + 1
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   324
	if borderEffectTimer > 15 then
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   325
		borderEffectTimer = 1
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   326
		for i = 1, #wX do
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   327
			BorderSpark(wX[i],wY[i],wWidth[i],wHeight[i], wCol[i])
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   328
		end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   329
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   330
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   331
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   332
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   333
----
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   334
-- old reflecting stuff from like 3 years ago lol
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   335
---
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   336
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   337
function gearCanBeDeflected(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   338
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   339
	if 	(GetGearType(gear) == gtShell) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   340
		(GetGearType(gear) == gtGrenade) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   341
		(GetGearType(gear) == gtAirBomb) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   342
		(GetGearType(gear) == gtClusterBomb) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   343
		(GetGearType(gear) == gtCluster) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   344
		(GetGearType(gear) == gtGasBomb) or
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   345
		(GetGearType(gear) == gtMine) or
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   346
		(GetGearType(gear) == gtMortar) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   347
		(GetGearType(gear) == gtHellishBomb) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   348
		(GetGearType(gear) == gtWatermelon) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   349
		(GetGearType(gear) == gtMelonPiece)	or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   350
		(GetGearType(gear) == gtEgg) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   351
		(GetGearType(gear) == gtDrill) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   352
		(GetGearType(gear) == gtBall) or
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   353
		(GetGearType(gear) == gtExplosives) or
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
   354
		(GetGearType(gear) == gtFlame) or
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
   355
		(GetGearType(gear) == gtPortal) or
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
   356
		(GetGearType(gear) == gtDynamite) or
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
   357
		(GetGearType(gear) == gtSMine) or
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   358
		(GetGearType(gear) == gtKnife) or
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
   359
		(GetGearType(gear) == gtJetpack) or
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
   360
		(GetGearType(gear) == gtBirdy) or
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   361
		(GetGearType(gear) == gtSnowball) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   362
		(GetGearType(gear) == gtMolotov)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   363
	then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   364
		return(true)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   365
	else
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   366
		return(false)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   367
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   368
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   369
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   370
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   371
function getThreatDamage(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   372
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   373
	local dmg
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   374
	--- damage amounts for weapons
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   375
	if 	(GetGearType(gear) == gtGrenade) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   376
		(GetGearType(gear) == gtClusterBomb) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   377
		(GetGearType(gear) == gtGasBomb) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   378
		(GetGearType(gear) == gtKnife) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   379
		(GetGearType(gear) == gtEgg) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   380
		(GetGearType(gear) == gtMolotov) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   381
		(GetGearType(gear) == gtHellishBomb) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   382
		(GetGearType(gear) == gtWatermelon) or
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   383
		(GetGearType(gear) == gtSMine) then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   384
		dmg = 30
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   385
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   386
	elseif (GetGearType(gear) == gtMelonPiece) then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   387
		dmg = 40
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   388
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   389
	elseif (GetGearType(gear) == gtAirBomb) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   390
			(GetGearType(gear) == gtDrill) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   391
			(GetGearType(gear) == gtMine) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   392
			(GetGearType(gear) == gtCluster) then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   393
		dmg = 20
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   394
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   395
	elseif (GetGearType(gear) == gtFlame) or
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   396
			(GetGearType(gear) == gtPortal) or
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   397
			(GetGearType(gear) == gtDynamite) then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   398
		dmg = 0
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   399
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   400
	elseif (GetGearType(gear) == gtBall) then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   401
		dmg = 1
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   402
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   403
	else	-- normal shell, snowball etc
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   404
		dmg = 65
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   405
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   406
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   407
	return(dmg)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   408
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   409
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   410
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   411
function setGearReflectionValues(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   412
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   413
	local dmg = getThreatDamage(gear)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   414
	setGearValue(gear,"damage",dmg)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   415
	setGearValue(gear,"deflects",0)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   416
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   417
	if (CurrentHedgehog ~= nil) then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   418
		setGearValue(gear,"owner",GetHogClan(CurrentHedgehog)) -- NEW NEEDS CHANGE?
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   419
	else
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   420
		setGearValue(gear,"owner",10)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   421
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   422
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   423
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   424
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
   425
function isATrackedGear(gear)
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
   426
	if 	(GetGearType(gear) == gtHedgehog) or
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
   427
		(GetGearType(gear) == gtTarget) or
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
   428
		(GetGearType(gear) == gtCase)
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
   429
	then
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
   430
		return(true)
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
   431
	else
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
   432
		return(false)
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
   433
	end
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
   434
end
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
   435
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   436
function AddStruc(pX,pY, pType, pClan)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   437
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   438
	uniqueStructureID = uniqueStructureID + 1
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   439
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   440
	local tempG = AddGear(0, 0, gtTarget, 0, 0, 0, 0)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   441
	SetGearPosition(tempG, pX, pY)
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   442
	setGearValue(tempG, "uniqueStructureID", uniqueStructureID)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   443
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   444
	local tempCirc = AddVisualGear(0,0,vgtCircle,0,true)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   445
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   446
	SetVisualGearValues(tempCirc, 0, 0, 100, 255, 1, 100, 0, 500, 1, 0xFFFFFF00)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   447
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   448
	table.insert(strucID, uniqueStructureID)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   449
	table.insert(strucType, pType)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   450
	table.insert(strucGear,tempG)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   451
	table.insert(strucClan,pClan)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   452
	table.insert(strucCost,2)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   453
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   454
	local frameID = 0
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   455
	local visualSprite = sprTarget
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   456
	local madness = AddVisualGear(GetX(tempG), GetY(tempG), vgtStraightShot, 1, true,1)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   457
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   458
	if pType == "Reflector Shield" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   459
		table.insert(strucHealth,255)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   460
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   461
	else
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   462
		table.insert(strucHealth,1)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   463
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   464
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   465
	table.insert(strucCirc,tempCirc)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   466
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   467
	table.insert(strucCircType, 1)
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   468
	if pType == "Bio-Filter" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   469
		table.insert(strucCircCol,colorRed)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   470
		table.insert(strucCircRadius,1000)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   471
		frameID = 7
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   472
	elseif pType == "Healing Station" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   473
		table.insert(strucCircCol,0xFF00FF00)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   474
		table.insert(strucCircRadius,500)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   475
		frameID = 3
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   476
	elseif pType == "Respawner" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   477
		table.insert(strucCircCol,0xFF00FF00)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   478
		table.insert(strucCircRadius,75)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   479
		runOnHogs(EnableHogResurrectionForThisClan)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   480
		frameID = 1
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   481
	elseif pType == "Teleportation Node" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   482
		table.insert(strucCircCol,0x0000FFFF)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   483
		table.insert(strucCircRadius,350)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   484
		frameID = 6
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   485
	elseif pType == "Generator" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   486
		table.insert(strucCircCol,0xFFFF00FF)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   487
		table.insert(strucCircRadius,75)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   488
		setGearValue(tempG, "power", 0)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   489
		frameID = 2
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   490
	elseif pType == "Support Station" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   491
		table.insert(strucCircCol,0xFFFF00FF)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   492
		table.insert(strucCircRadius,500)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   493
		frameID = 4
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   494
	elseif pType == "Construction Station" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   495
		table.insert(strucCircCol,0xFFFFFFFF)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   496
		table.insert(strucCircRadius,500)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   497
		frameID = 8
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   498
	elseif pType == "Reflector Shield" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   499
		table.insert(strucCircCol,0xffae00ff)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   500
		table.insert(strucCircRadius,750)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   501
		frameID = 9
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   502
	elseif pType == "Weapon Filter" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   503
		table.insert(strucCircCol,0xa800ffff)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   504
		table.insert(strucCircRadius,750)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   505
		frameID = 5
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   506
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   507
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   508
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   509
	SetVisualGearValues(madness, nil, nil, 0, 0, nil, frameID, nil, visualSprite, nil, nil)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   510
	SetState(tempG, bor(GetState(tempG),gstInvisible) )
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   511
	table.insert(strucAltDisplay, madness)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   512
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   513
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   514
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   515
-- this is basically onStructureDelete
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   516
-- we may need to expand it for non-gear structures later
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   517
function CheckGearForStructureLink(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   518
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   519
	local respawnerDestroyed = false
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   520
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   521
	for i = 1, #strucID do
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   522
		if strucID[i] == getGearValue(gear,"uniqueStructureID") then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   523
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   524
			if strucType[i] == "Respawner" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   525
				respawnerDestroyed = true
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   526
			end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   527
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   528
			table.remove(strucID,i)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   529
			table.remove(strucGear,i)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   530
			table.remove(strucClan,i)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   531
			table.remove(strucType,i)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   532
			table.remove(strucCost,i)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   533
			table.remove(strucHealth,i)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   534
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   535
			DeleteVisualGear(strucCirc[i])
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   536
			table.remove(strucCirc,i)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   537
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   538
			table.remove(strucCircCol,i)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   539
			table.remove(strucCircRadius,i)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   540
			table.remove(strucCircType,i)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   541
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   542
			if strucAltDisplay[i] ~= 1 then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   543
				DeleteVisualGear(strucAltDisplay[i])
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   544
			end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   545
			table.remove(strucAltDisplay,i)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   546
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   547
		end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   548
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   549
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   550
	if respawnerDestroyed == true then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   551
		runOnHogs(RecalibrateRespawn)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   552
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   553
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   554
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   555
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   556
-- called when we add a new respawner
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   557
function EnableHogResurrectionForThisClan(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   558
	if GetHogClan(gear) == GetHogClan(CurrentHedgehog) then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   559
		SetEffect(gear, heResurrectable, 1)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   560
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   561
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   562
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   563
-- this is called when a respawner blows up
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   564
function RecalibrateRespawn(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   565
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   566
	local respawnerList = {}
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   567
	for i = 1, #strucID do
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   568
		if (strucType[i] == "Respawner") and (strucClan[i] == GetHogClan(gear)) then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   569
			table.insert(respawnerList, i)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   570
		end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   571
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   572
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   573
	if #respawnerList >= 1 then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   574
		SetEffect(gear, heResurrectable, 1)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   575
	else
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   576
		SetEffect(gear, heResurrectable, 0)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   577
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   578
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   579
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   580
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   581
--resposition dead hogs at a respawner if they own one
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   582
function FindRespawner(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   583
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   584
	local respawnerList = {}
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   585
	for i = 1, #strucID do
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   586
		if (strucType[i] == "Respawner") and (strucClan[i] == GetHogClan(gear)) then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   587
			table.insert(respawnerList, i)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   588
		end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   589
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   590
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   591
	if #respawnerList >= 1 then
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   592
		local i = GetRandom(#respawnerList)+1
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   593
		SetGearPosition(gear,GetX(strucGear[respawnerList[i]]),GetY(strucGear[respawnerList[i]])-25)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   594
		AddVisualGear(GetX(gear), GetY(gear), vgtExplosion, 0, false)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   595
	else	-- (this should never happen, but just in case)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   596
		SetEffect(gear, heResurrectable, 0)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   597
		DeleteGear(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   598
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   599
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   600
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   601
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   602
function CheckTeleport(gear, tX, tY)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   603
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   604
	local teleportOriginSuccessful = false
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   605
	local teleportDestinationSuccessful = false
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   606
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   607
	for i = 1, #strucID do
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   608
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   609
		if (strucType[i] == "Teleportation Node") and (strucClan[i] == GetHogClan(CurrentHedgehog)) then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   610
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   611
			local dist = GetDistFromGearToXY(CurrentHedgehog,GetX(strucGear[i]), GetY(strucGear[i]))
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   612
			local NR
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   613
			if strucCircType[i] == 0 then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   614
				NR = strucCircRadius[i]
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   615
			else
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   616
				NR = (48/100*strucCircRadius[i])/2
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   617
			end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   618
			if dist <= NR*NR then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   619
				teleportOriginSuccessful = true
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   620
			end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   621
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   622
			dist = GetDistFromXYtoXY(tX,tY,GetX(strucGear[i]), GetY(strucGear[i]))
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   623
			if strucCircType[i] == 0 then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   624
				NR = strucCircRadius[i]
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   625
			else
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   626
				NR = (48/100*strucCircRadius[i])/2
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   627
			end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   628
			if dist <= NR*NR then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   629
				teleportDestinationSuccessful = true
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   630
			end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   631
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   632
		end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   633
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   634
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   635
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   636
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   637
	if ((teleportDestinationSuccessful == false) or (teleportOriginSuccessful == false)) then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   638
		AddCaption(loc("Teleport Unsuccessful. Please teleport within a clan teleporter's sphere of influence."))
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   639
		SetGearTarget(gear, GetX(CurrentHedgehog), GetY(CurrentHedgehog))
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   640
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   641
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   642
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   643
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   644
--Check for proximity of gears to structures, and make structures behave accordingly
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   645
function CheckProximity(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   646
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   647
	local sID = tempID_CheckProximity
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   648
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   649
	local dist = GetDistFromGearToXY(gear, GetX(strucGear[sID]), GetY(strucGear[sID]))
12682
b7fd7ab8ddf9 Construction Mode: Fix Lua error spam when using time box with filters on map
Wuzzy <almikes@aol.com>
parents: 12397
diff changeset
   650
	if not dist then
b7fd7ab8ddf9 Construction Mode: Fix Lua error spam when using time box with filters on map
Wuzzy <almikes@aol.com>
parents: 12397
diff changeset
   651
		return
b7fd7ab8ddf9 Construction Mode: Fix Lua error spam when using time box with filters on map
Wuzzy <almikes@aol.com>
parents: 12397
diff changeset
   652
	end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   653
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   654
	-- calculate my real radius if I am an aura
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   655
	local NR
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   656
	if strucCircType[sID] == 0 then
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   657
		NR = strucCircRadius[sID]
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   658
	else
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   659
		NR = (48/100*strucCircRadius[sID])/2
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   660
	end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   661
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   662
	-- we're in business
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   663
	if dist <= NR*NR then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   664
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   665
		-- heal clan hogs
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   666
		if strucType[sID] == "Healing Station" then
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   667
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   668
			if GetGearType(gear) == gtHedgehog then
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   669
				if GetHogClan(gear) == strucClan[sID] then
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   670
12940
39b7b3ed619e Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 12836
diff changeset
   671
					local hogLife = GetHealth(gear)
39b7b3ed619e Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 12836
diff changeset
   672
					-- Heal hog by 1 HP, up to 150 HP total
39b7b3ed619e Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 12836
diff changeset
   673
					if hogLife < 150 then
39b7b3ed619e Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 12836
diff changeset
   674
						if ((hogLife + 1) % 5) == 0 then
39b7b3ed619e Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 12836
diff changeset
   675
							-- Health anim every 5 HP
39b7b3ed619e Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 12836
diff changeset
   676
							HealHog(gear, 1, false)
39b7b3ed619e Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 12836
diff changeset
   677
						else
39b7b3ed619e Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 12836
diff changeset
   678
							SetHealth(gear, hogLife+1)
39b7b3ed619e Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 12836
diff changeset
   679
						end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   680
					end
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   681
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   682
					-- change this to the med kit sprite health ++++s later
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   683
					local tempE = AddVisualGear(GetX(strucGear[sID]), GetY(strucGear[sID]), vgtSmoke, 0, true)
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   684
					SetVisualGearValues(tempE, nil, nil, nil, nil, nil, nil, nil, nil, nil, colorGreen)
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   685
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   686
				end
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   687
			end
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   688
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   689
		-- explode enemy clan hogs
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   690
		elseif strucType[sID] == "Bio-Filter" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   691
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   692
			if GetGearType(gear) == gtHedgehog then
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   693
				if (GetHogClan(gear) ~= strucClan[sID]) and (GetHealth(gear) > 0) then
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   694
					AddGear(GetX(gear), GetY(gear), gtGrenade, 0, 0, 0, 1)
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   695
				end
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   696
			end
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   697
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   698
		-- were those weapons in your pocket, or were you just happy to see me?
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   699
		elseif strucType[sID] == "Weapon Filter" then
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   700
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   701
			if GetGearType(gear) == gtHedgehog then
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   702
				if (GetHogClan(gear) ~= strucClan[sID]) then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   703
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   704
					for wpnIndex = 1, #atkArray do
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   705
						AddAmmo(gear, atkArray[wpnIndex][1], 0)
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   706
					end
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   707
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   708
					for wpnIndex = 1, #utilArray do
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   709
						AddAmmo(gear, utilArray[wpnIndex][1], 0)
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   710
					end
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   711
12941
ffbd31afed96 HedgeEditor, Construction Mode: Refactor code by adding fake ammo type variables
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   712
					AddAmmo(gear, amCMStructurePlacer, 100)
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   713
					AddAmmo(gear, amSwitch, 100)
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   714
					AddAmmo(gear, amSkip, 100)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   715
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   716
				end
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   717
			end
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   719
		-- BOUNCE! POGO! POGO! POGO! POGO!
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   720
		elseif strucType[sID] == "Reflector Shield" then
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   721
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   722
			-- add check for whose projectile it is
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   723
			if gearCanBeDeflected(gear) == true then
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   724
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   725
				local gOwner = getGearValue(gear,"owner")
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   726
				local gDeflects = getGearValue(gear,"deflects")
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   727
				local gDmg = getGearValue(gear,"damage")
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   728
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   729
				if gDeflects >= 3 then
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   730
					DeleteGear(gear)
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   731
					AddVisualGear(GetX(gear), GetY(gear), vgtSmoke, 0, false)
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   732
					PlaySound(sndVaporize)
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   733
				elseif gOwner ~= strucClan[sID] then
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   734
					--whether to vaporize gears or bounce them
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   735
					if gDmg ~= 0 then
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   736
						local dx, dy = GetGearVelocity(gear)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   737
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   738
						if (dx == 0) and (dy == 0) then
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   739
							-- static mine, explosive, etc encountered
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   740
							-- do nothing
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   741
							else
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   742
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   743
							--let's bounce something!
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   744
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   745
							dx = dx*(-1)
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   746
							dy = dy*(-1)
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   747
							SetGearVelocity(gear,dx,dy)
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   748
							setGearValue(gear,"deflects",(gDeflects+1))
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   749
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   750
							AddVisualGear(GetX(gear), GetY(gear), vgtExplosion, 0, false)
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   751
							PlaySound(sndExplosion)
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   752
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   753
							strucHealth[sID] = strucHealth[sID] - gDmg
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   754
							strucCircCol[sID] = strucCircCol[sID] - gDmg
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   755
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   756
							if strucHealth[sID] <= 0 then
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   757
								AddVisualGear(GetX(strucGear[sID]), GetY(strucGear[sID]), vgtExplosion, 0, false)
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   758
								DeleteGear(strucGear[sID])
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   759
								PlaySound(sndExplosion)
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   760
							end
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   761
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   762
						end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   763
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   764
					else
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   765
						DeleteGear(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   766
						AddVisualGear(GetX(gear), GetY(gear), vgtSmoke, 0, false)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   767
						PlaySound(sndVaporize)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   768
					end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   769
				end
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   770
			end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   771
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   772
		--mark as within range of a teleporter node
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   773
		elseif strucType[sID] == "Teleportation Node" then
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   774
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   775
			if GetGearType(gear) == gtHedgehog then
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   776
				if GetHogClan(gear) == strucClan[sID] then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   777
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   778
					sProx["Teleportation Mode"] = true
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   779
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   780
				end
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   781
			end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   782
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   783
		-- mark as within range of construction station
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   784
		-- and thus allow menu access to placement modes
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   785
		-- for girders, mines, sticky mines and barrels
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   786
		elseif strucType[sID] == "Construction Station" then
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   787
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   788
			if GetGearType(gear) == gtHedgehog then
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   789
				if GetHogClan(gear) == strucClan[sID] then
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   790
					AddVisualGear(GetX(strucGear[sID]), GetY(strucGear[sID]), vgtSmoke, 0, true)
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   791
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   792
					sProx["Girder Placement Mode"] = true
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   793
					sProx["Rubber Placement Mode"] = true
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   794
					sProx["Mine Placement Mode"] = true
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   795
					sProx["Sticky Mine Placement Mode"] = true
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   796
					sProx["Barrel Placement Mode"] = true
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   797
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   798
				end
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   799
			end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   800
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   801
		-- mark as within stupport station range
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   802
		-- and thus allow menu access to placement modes
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   803
		-- for weapon, utility, and med crates
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   804
		elseif strucType[sID] == "Support Station" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   805
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   806
			if GetGearType(gear) == gtHedgehog then
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   807
				if GetHogClan(gear) == strucClan[sID] then
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   808
					AddVisualGear(GetX(strucGear[sID]), GetY(strucGear[sID]), vgtSmoke, 0, true)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   809
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   810
					sProx["Health Crate Placement Mode"] = true
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   811
					sProx["Weapon Crate Placement Mode"] = true
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   812
					sProx["Utility Crate Placement Mode"] = true
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   813
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   814
				end
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   815
			end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   816
		end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   817
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
   818
	end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   819
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   820
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   821
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   822
-- used to check if we need to run through all hogs or just currenthedgehog
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   823
function isAStructureThatAppliesToMultipleGears(pID)
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   824
	if 	strucType[pID] == "Healing Station" or
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   825
		strucType[pID] == "Reflector Shield" or
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   826
		strucType[pID] == "Weapon Filter" or
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   827
		strucType[pID] == "Bio-Filter"
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   828
	then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   829
		return(true)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   830
	else
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   831
		return(false)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   832
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   833
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   834
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   835
function HandleStructures()
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   836
11724
cf4d61123440 Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents: 11723
diff changeset
   837
	if GameTime % 100 == 0 then
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   838
		for k, _ in pairs(sProx) do
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   839
			if k ~= "Structure Placement Mode" then
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   840
				sProx[k] = false
11724
cf4d61123440 Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents: 11723
diff changeset
   841
			end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   842
		end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   843
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   844
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   845
	for i = 1, #strucID do
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   846
11723
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   847
		SetVisualGearValues(strucCirc[i], GetX(strucGear[i]), GetY(strucGear[i]), nil, nil, nil, nil, nil, strucCircRadius[i], nil, strucCircCol[i])
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   848
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   849
		tempID_CheckProximity = i
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   850
11723
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   851
		SetVisualGearValues(strucAltDisplay[i], GetX(strucGear[i]), GetY(strucGear[i]), 0, 0, nil, nil, 800000, sprTarget)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   852
11723
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   853
		if GameTime % 100 == 0 then
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   854
			-- Check For proximity of stuff to our structures
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   855
			if isAStructureThatAppliesToMultipleGears(i) then
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   856
				runOnGears(CheckProximity)
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   857
			else -- only check prox on CurrentHedgehog
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   858
				if CurrentHedgehog ~= nil then
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   859
					CheckProximity(CurrentHedgehog)
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   860
				end
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   861
			end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   862
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   863
			if strucType[i] == "Generator" then
11732
e28b534188d3 update construction mode in-file version info
sheepluva
parents: 11730
diff changeset
   864
11723
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   865
				for z = 0, ClansCount-1 do
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   866
					if z == strucClan[i] then
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   867
						increaseGearValue(strucGear[i],"power")
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   868
						if getGearValue(strucGear[i],"power") == 10 then
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   869
							setGearValue(strucGear[i],"power",0)
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   870
							clanPower[z] = clanPower[z] + 1
11728
373150be0356 Construction Mode: Sanity-check numbers from script parameter
Wuzzy <almikes@aol.com>
parents: 11727
diff changeset
   871
							if conf_maxEnergy ~= "inf" and clanPower[z] > conf_maxEnergy then
11723
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   872
								clanPower[z] = conf_maxEnergy
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
   873
							end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   874
						end
11732
e28b534188d3 update construction mode in-file version info
sheepluva
parents: 11730
diff changeset
   875
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   876
					end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   877
				end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   878
			end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   879
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   880
		end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   881
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   882
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   883
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   884
	-- Add and remove ammo based on structure proximity
11727
1c09b8d050ce Construction Mode: Fix timer issues
Wuzzy <almikes@aol.com>
parents: 11726
diff changeset
   885
	if GameTime % 100 == 0 and CurrentHedgehog ~= nil then
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   886
		if sProx["Girder Placement Mode"] then
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   887
			AddAmmo(CurrentHedgehog, amGirder, 100)
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   888
		else
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   889
			AddAmmo(CurrentHedgehog, amGirder, 0)
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   890
		end
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   891
		if sProx["Rubber Placement Mode"] then
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   892
			AddAmmo(CurrentHedgehog, amRubber, 100)
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   893
		else
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   894
			AddAmmo(CurrentHedgehog, amRubber, 0)
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   895
		end
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   896
		if sProx["Mine Placement Mode"] or sProx["Sticky Mine Placement Mode"] or sProx["Barrel Placement Mode"] then
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   897
			AddAmmo(CurrentHedgehog, amCMObjectPlacer, 100)
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   898
		else
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   899
			AddAmmo(CurrentHedgehog, amCMObjectPlacer, 0)
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   900
		end
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   901
		if sProx["Teleportation Mode"] then
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   902
			AddAmmo(CurrentHedgehog, amTeleport, 100)
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   903
		else
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   904
			AddAmmo(CurrentHedgehog, amTeleport, 0)
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   905
		end
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   906
		if sProx["Weapon Crate Placement Mode"] or sProx["Utility Crate Placement Mode"] or sProx["Health Crate Placement Mode"] then
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   907
			AddAmmo(CurrentHedgehog, amCMCratePlacer, 100)
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   908
		else
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
   909
			AddAmmo(CurrentHedgehog, amCMCratePlacer, 0)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   910
		end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   911
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   912
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   913
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   914
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   915
function checkForSpecialWeapons()
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   916
12941
ffbd31afed96 HedgeEditor, Construction Mode: Refactor code by adding fake ammo type variables
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
   917
	if (GetCurAmmoType() == amCMObjectPlacer) then
11942
abdb24f0c2d9 Change descriptions for special Construction Mode tools
Wuzzy <almikes@aol.com>
parents: 11881
diff changeset
   918
		AddCaption(loc("Object Placer"),GetClanColor(GetHogClan(CurrentHedgehog)),capgrpAmmoinfo)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   919
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   920
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   921
	lastWep = GetCurAmmoType()
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   922
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   923
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   924
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   925
------------------------
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   926
-- SOME GENERAL METHODS
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   927
------------------------
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   928
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   929
function GetDistFromGearToXY(gear, g2X, g2Y)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   930
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   931
	local g1X, g1Y = GetGearPosition(gear)
12682
b7fd7ab8ddf9 Construction Mode: Fix Lua error spam when using time box with filters on map
Wuzzy <almikes@aol.com>
parents: 12397
diff changeset
   932
	if not g1X then
b7fd7ab8ddf9 Construction Mode: Fix Lua error spam when using time box with filters on map
Wuzzy <almikes@aol.com>
parents: 12397
diff changeset
   933
		return nil
b7fd7ab8ddf9 Construction Mode: Fix Lua error spam when using time box with filters on map
Wuzzy <almikes@aol.com>
parents: 12397
diff changeset
   934
	end
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   935
	local q = g1X - g2X
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   936
	local w = g1Y - g2Y
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   937
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   938
	return ( (q*q) + (w*w) )
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   939
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   940
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   941
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   942
function GetDistFromXYtoXY(a, b, c, d)
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   943
	local q = a - c
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   944
	local w = b - d
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   945
	return ( (q*q) + (w*w) )
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   946
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   947
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   948
-- essentially called when user clicks the mouse
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   949
-- with girders or an airattack
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   950
function PlaceObject(x,y)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   951
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   952
	if (clanUsedExtraTime[GetHogClan(CurrentHedgehog)] == true) and (cat[cIndex] == "Utility Crate Placement Mode") and (utilArray[pIndex][1] == amExtraTime) then
12092
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
   953
		AddCaption(loc("You may only place 1 Extra Time crate per turn."),0xffba00ff,capgrpVolume)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   954
		PlaySound(sndDenied)
12092
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
   955
	elseif (conf_cratesPerRound ~= "inf" and clanCratesSpawned[GetHogClan(CurrentHedgehog)] >= conf_cratesPerRound) and ( (cat[cIndex] == "Health Crate Placement Mode") or (cat[cIndex] == "Utility Crate Placement Mode") or (cat[cIndex] == "Weapon Crate Placement Mode")  )  then
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
   956
		AddCaption(string.format(loc("You may only place %d crates per round."), conf_cratesPerRound),0xffba00ff,capgrpVolume)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   957
		PlaySound(sndDenied)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   958
	elseif (XYisInRect(x,y, clanBoundsSX[GetHogClan(CurrentHedgehog)],clanBoundsSY[GetHogClan(CurrentHedgehog)],clanBoundsEX[GetHogClan(CurrentHedgehog)],clanBoundsEY[GetHogClan(CurrentHedgehog)]) == true)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   959
	and (clanPower[GetHogClan(CurrentHedgehog)] >= placedExpense)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   960
	then
12091
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   961
		-- For checking if the actual placement succeeded
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   962
		local placed = false
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
   963
		local gear
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   964
		if cat[cIndex] == "Girder Placement Mode" then
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   965
			placed = PlaceGirder(x, y, currentGirderRotation)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   966
		elseif cat[cIndex] == "Rubber Placement Mode" then
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
   967
			placed = PlaceRubber(x, y, currentGirderRotation)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   968
		elseif cat[cIndex] == "Health Crate Placement Mode" then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   969
			gear = SpawnHealthCrate(x,y)
12091
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   970
			if gear ~= nil then
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   971
				placed = true
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   972
				SetHealth(gear, pMode[pIndex])
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   973
				clanCratesSpawned[GetHogClan(CurrentHedgehog)] = clanCratesSpawned[GetHogClan(CurrentHedgehog)] +1
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   974
			end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   975
		elseif cat[cIndex] == "Weapon Crate Placement Mode" then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   976
			gear = SpawnAmmoCrate(x, y, atkArray[pIndex][1])
12091
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   977
			if gear ~= nil then
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   978
				placed = true
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   979
				clanCratesSpawned[GetHogClan(CurrentHedgehog)] = clanCratesSpawned[GetHogClan(CurrentHedgehog)] +1
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   980
			end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   981
		elseif cat[cIndex] == "Utility Crate Placement Mode" then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   982
			gear = SpawnUtilityCrate(x, y, utilArray[pIndex][1])
12091
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   983
			if gear ~= nil then
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   984
				placed = true
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   985
				if utilArray[pIndex][1] == amExtraTime then
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   986
					clanUsedExtraTime[GetHogClan(CurrentHedgehog)] = true
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   987
				end
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   988
				clanCratesSpawned[GetHogClan(CurrentHedgehog)] = clanCratesSpawned[GetHogClan(CurrentHedgehog)] +1
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   989
			end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   990
		elseif cat[cIndex] == "Barrel Placement Mode" then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   991
			gear = AddGear(x, y, gtExplosives, 0, 0, 0, 0)
12091
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   992
			if gear ~= nil then
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   993
				placed = true
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   994
				SetHealth(gear, pMode[pIndex])
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   995
			end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   996
		elseif cat[cIndex] == "Mine Placement Mode" then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
   997
			gear = AddGear(x, y, gtMine, 0, 0, 0, 0)
12091
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   998
			if gear ~= nil then
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
   999
				placed = true
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
  1000
				SetTimer(gear, pMode[pIndex])
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
  1001
			end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1002
		elseif cat[cIndex] == "Sticky Mine Placement Mode" then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1003
			gear = AddGear(x, y, gtSMine, 0, 0, 0, 0)
12091
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
  1004
			placed = gear ~= nil
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1005
		elseif cat[cIndex] == "Structure Placement Mode" then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1006
			AddStruc(x,y, pMode[pIndex],GetHogClan(CurrentHedgehog))
12091
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
  1007
			placed = true
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1008
		end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1009
12091
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
  1010
		if placed then
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
  1011
			clanPower[GetHogClan(CurrentHedgehog)] = clanPower[GetHogClan(CurrentHedgehog)] - placedExpense
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
  1012
		else
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
  1013
			AddCaption(loc("Invalid Placement"),0xffba00ff,capgrpVolume)
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
  1014
			PlaySound(sndDenied)
db5e12d623cc Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents: 11982
diff changeset
  1015
		end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1016
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1017
	else
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1018
		if (clanPower[GetHogClan(CurrentHedgehog)] >= placedExpense) then
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1019
			AddCaption(loc("Invalid Placement"),0xffba00ff,capgrpVolume)
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1020
		else
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1021
			AddCaption(loc("Insufficient Power"),0xffba00ff,capgrpVolume)
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1022
		end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1023
		PlaySound(sndDenied)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1024
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1025
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1026
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1027
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1028
-- called when user changes primary selection
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1029
-- either via up/down keys
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1030
-- or selecting girder/airattack
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1031
function RedefineSubset()
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1032
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1033
	pIndex = 1
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1034
	pMode = {}
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1035
	placedExpense = 1
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1036
12945
0e698562d76d More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents: 12944
diff changeset
  1037
	if (CurrentHedgehog == nil or band(GetState(CurrentHedgehog), gstHHDriven) == 0) then
12944
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1038
		return false
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1039
	end
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1040
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1041
	local team = GetHogTeamName(CurrentHedgehog)
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1042
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1043
	if cat[cIndex] == "Girder Placement Mode" then
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
  1044
		pIndex = currentGirderRotation
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1045
		pMode = {amGirder}
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1046
	elseif cat[cIndex] == "Rubber Placement Mode" then
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
  1047
		pIndex = currentGirderRotation
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1048
		pMode = {amRubber}
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1049
		placedExpense = 3
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1050
	elseif cat[cIndex] == "Barrel Placement Mode" then
11713
106112bbacfa Tweak barrel and mine defaults in Construction Mode
Wuzzy <almikes@aol.com>
parents: 11712
diff changeset
  1051
		pMode = {60}
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1052
		placedExpense = 10
12944
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1053
		teamLObjectMode[team] = cat[cIndex]
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1054
	elseif cat[cIndex] == "Health Crate Placement Mode" then
11726
4addfad422ab Construction Mode: Recognize health case amount from game scheme
Wuzzy <almikes@aol.com>
parents: 11725
diff changeset
  1055
		pMode = {HealthCaseAmount}
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1056
		placedExpense = 5
12944
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1057
		teamLCrateMode[team] = cat[cIndex]
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1058
	elseif cat[cIndex] == "Weapon Crate Placement Mode" then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1059
		for i = 1, #atkArray do
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1060
			pMode[i] = atkArray[i][1]
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1061
		end
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1062
		placedExpense = atkArray[pIndex][2]
12944
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1063
		teamLCrateMode[team] = cat[cIndex]
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1064
		pIndex = teamLWeapIndex[team]
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1065
	elseif cat[cIndex] == "Utility Crate Placement Mode" then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1066
		for i = 1, #utilArray do
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1067
			pMode[i] = utilArray[i][1]
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1068
		end
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1069
		placedExpense = utilArray[pIndex][2]
12944
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1070
		teamLCrateMode[team] = cat[cIndex]
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1071
		pIndex = teamLUtilIndex[team]
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1072
	elseif cat[cIndex] == "Mine Placement Mode" then
11713
106112bbacfa Tweak barrel and mine defaults in Construction Mode
Wuzzy <almikes@aol.com>
parents: 11712
diff changeset
  1073
		pMode = {0,1000,2000,3000,4000,5000}
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1074
		placedExpense = 15
12944
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1075
		teamLObjectMode[team] = cat[cIndex]
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1076
		pIndex = teamLMineIndex[team]
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1077
	elseif cat[cIndex] == "Sticky Mine Placement Mode" then
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1078
		pMode = {amSMine}
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1079
		placedExpense = 20
12944
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1080
		teamLObjectMode[team] = cat[cIndex]
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1081
	elseif cat[cIndex] == "Structure Placement Mode" then
12943
3feab46234dd Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents: 12942
diff changeset
  1082
		pMode = {
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1083
			loc_noop("Support Station"),
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1084
			loc_noop("Construction Station"),
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1085
			loc_noop("Healing Station"),
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1086
			loc_noop("Teleportation Node"),
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1087
			loc_noop("Weapon Filter"),
12943
3feab46234dd Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents: 12942
diff changeset
  1088
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1089
			loc_noop("Bio-Filter"),
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1090
			loc_noop("Reflector Shield"),
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1091
			loc_noop("Respawner"),
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1092
			loc_noop("Generator"),
12943
3feab46234dd Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents: 12942
diff changeset
  1093
		}
12944
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1094
		pIndex = teamLStructIndex[team]
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1095
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1096
12944
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1097
	return true
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1098
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1099
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1100
-- Updates the handling of the main construction mode tools:
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1101
-- Structure Placer, Crate Placer, Object Placer.
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1102
-- This handles the internal category state,
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1103
-- the HUD display and the clans outline.
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1104
function HandleConstructionModeTools()
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1105
	-- Update display selection criteria
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1106
	if (CurrentHedgehog ~= nil and band(GetState(CurrentHedgehog), gstHHDriven) ~= 0) then
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1107
		curWep = GetCurAmmoType()
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1108
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1109
		local updated = false
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1110
		local team = GetHogTeamName(CurrentHedgehog)
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1111
		if (curWep == amGirder) then
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1112
			cIndex = 1
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1113
			RedefineSubset()
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1114
			updated = true
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1115
		elseif (curWep == amRubber) then
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1116
			cIndex = 2
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1117
			RedefineSubset()
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1118
			updated = true
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1119
		elseif (curWep == amCMStructurePlacer) then
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1120
			cIndex = 9
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1121
			RedefineSubset()
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1122
			updateCost()
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1123
			updated = true
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1124
		elseif (curWep == amCMCratePlacer) then
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1125
			cIndex = catReverse[teamLCrateMode[team]]
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1126
			RedefineSubset()
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1127
			updateCost()
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1128
			updated = true
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1129
		elseif (curWep == amCMObjectPlacer) then
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1130
			cIndex = catReverse[teamLObjectMode[team]]
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1131
			RedefineSubset()
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1132
			updateCost()
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1133
			updated = true
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1134
		end
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1135
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1136
		if updated then
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1137
			AddCaption(loc(cat[cIndex]), 0xffba00ff, capgrpMessage)
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1138
			showModeMessage()
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1139
			wallsVisible = true
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1140
		else
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1141
			wallsVisible = false
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1142
		end
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1143
	else
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1144
		curWep = amNothing
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1145
		wallsVisible = false
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1146
	end
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1147
end
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1148
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1149
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1150
-- called in onGameTick()
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1151
function HandleConstructionMode()
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1152
11723
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
  1153
	HandleStructures()
456f4e9f9dce Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents: 11722
diff changeset
  1154
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1155
	if CurrentHedgehog ~= nil then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1156
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1157
		if wallsVisible == true then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1158
			HandleBorderEffects()
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1159
		end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1160
12945
0e698562d76d More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents: 12944
diff changeset
  1161
		if (TurnTimeLeft ~= TurnTime) then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1162
			if (lastWep ~= GetCurAmmoType()) then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1163
				checkForSpecialWeapons()
11717
f35139700d22 Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents: 11716
diff changeset
  1164
			elseif checkForSpecialWeaponsIn == 0 then
f35139700d22 Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents: 11716
diff changeset
  1165
				checkForSpecialWeapons()
f35139700d22 Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents: 11716
diff changeset
  1166
				checkForSpecialWeaponsIn = -1
f35139700d22 Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents: 11716
diff changeset
  1167
			else
f35139700d22 Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents: 11716
diff changeset
  1168
				checkForSpecialWeaponsIn = checkForSpecialWeaponsIn - 1
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1169
			end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1170
		end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1171
11727
1c09b8d050ce Construction Mode: Fix timer issues
Wuzzy <almikes@aol.com>
parents: 11726
diff changeset
  1172
		if GameTime % 100 == 0 then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1173
12836
8610462e3d33 Remove 2 unused number tags in Construction Mode GUI
Wuzzy <Wuzzy2@mail.ru>
parents: 12682
diff changeset
  1174
			DrawClanPowerTag()
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1175
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1176
			-- Force-update the construction mode tools every 100ms.
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1177
			-- This makes sure the announcer messages don't disappear
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1178
			-- while the tool is selected.
12945
0e698562d76d More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents: 12944
diff changeset
  1179
			if (band(GetState(CurrentHedgehog), gstHHDriven) ~= 0) then
0e698562d76d More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents: 12944
diff changeset
  1180
				curWep = GetCurAmmoType()
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1181
				HandleConstructionModeTools()
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1182
			else
12945
0e698562d76d More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents: 12944
diff changeset
  1183
				curWep = amNothing
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1184
			end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1185
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1186
		end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1187
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1188
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1189
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1190
	-- some kind of target detected, tell me your story
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1191
	if cGear ~= nil then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1192
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
  1193
		local x,y = GetGearTarget(cGear)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1194
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1195
		if GetGearType(cGear) == gtAirAttack then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1196
			DeleteGear(cGear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1197
			PlaceObject(x, y)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1198
		elseif GetGearType(cGear) == gtTeleport then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1199
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1200
				CheckTeleport(cGear, x, y)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1201
				cGear = nil
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1202
		elseif GetGearType(cGear) == gtGirder then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1203
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
  1204
			currentGirderRotation = GetState(cGear)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1205
11718
f699978eae19 Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents: 11717
diff changeset
  1206
			PlaceObject(x, y)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1207
		end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1208
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1209
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1210
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1211
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1212
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1213
---------------------------------------------------------------
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1214
-- Cycle through selection subsets (by changing pIndex, pMode)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1215
-- i.e 	health of barrels, medikits,
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1216
--		timer of mines
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1217
--		contents of crates
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1218
--		gears to reposition etc.
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1219
---------------------------------------------------------------
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1220
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1221
function updateCost()
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1222
11760
001994046892 Construction Mode: Don't update ticker for cursor keys when hedgehog is not under control anymore
Wuzzy <almikes@aol.com>
parents: 11759
diff changeset
  1223
	if CurrentHedgehog == nil or band(GetState(CurrentHedgehog), gstHHDriven) == 0 then return end
001994046892 Construction Mode: Don't update ticker for cursor keys when hedgehog is not under control anymore
Wuzzy <almikes@aol.com>
parents: 11759
diff changeset
  1224
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1225
	if pMode[pIndex] == "Healing Station" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1226
		placedExpense = 50
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1227
	elseif pMode[pIndex] == "Weapon Filter" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1228
		placedExpense = 50
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1229
	elseif pMode[pIndex] == "Bio-Filter" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1230
		placedExpense = 100
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1231
	elseif pMode[pIndex] == "Respawner" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1232
		placedExpense = 300
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1233
	elseif pMode[pIndex] == "Teleportation Node" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1234
		placedExpense = 30
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1235
	elseif pMode[pIndex] == "Support Station" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1236
		placedExpense = 50
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1237
	elseif pMode[pIndex] == "Construction Station" then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1238
		placedExpense = 50
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1239
	elseif pMode[pIndex] == "Generator" then
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1240
		placedExpense = 300
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1241
	elseif pMode[pIndex] == "Reflector Shield" then
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1242
		placedExpense = 200
11708
d5d798172875 Fix crate costs in Construction Mode being all the same (fixes #15)
Wuzzy <almikes@aol.com>
parents: 11301
diff changeset
  1243
	elseif cat[cIndex] == "Weapon Crate Placement Mode" then
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1244
		placedExpense = atkArray[pIndex][2]
11708
d5d798172875 Fix crate costs in Construction Mode being all the same (fixes #15)
Wuzzy <almikes@aol.com>
parents: 11301
diff changeset
  1245
	elseif cat[cIndex] == "Utility Crate Placement Mode" then
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1246
		placedExpense = utilArray[pIndex][2]
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1247
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1248
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1249
	AddCaption(string.format(loc("Cost: %d"), placedExpense), 0xffba00ff, capgrpAmmostate)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1250
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1251
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1252
12944
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1253
-- Should be called when the index of the mode was changed by the player.
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1254
-- E.g. new weapon crate contents or structure type
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1255
function updateIndex()
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1256
	if (curWep == amGirder) or (curWep == amRubber) or (curWep == amCMStructurePlacer) or (curWep == amCMCratePlacer) or (curWep == amCMObjectPlacer) then
11714
8575b8b76373 Construction Mode: Show mine timer in seconds
Wuzzy <almikes@aol.com>
parents: 11713
diff changeset
  1257
		showModeMessage()
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1258
		updateCost()
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1259
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1260
12944
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1261
	-- Update team variables so the previous state can be restored later
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1262
	if CurrentHedgehog == nil or band(GetState(CurrentHedgehog), gstHHDriven) == 0 then return end
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1263
	local val = pMode[pIndex]
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1264
	local team = GetHogTeamName(CurrentHedgehog)
12945
0e698562d76d More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents: 12944
diff changeset
  1265
	if cat[cIndex] == "Structure Placement Mode" then
0e698562d76d More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents: 12944
diff changeset
  1266
		teamLStructIndex[team] = pIndex
0e698562d76d More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents: 12944
diff changeset
  1267
	elseif cat[cIndex] == "Mine Placement Mode" then
12944
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1268
		teamLMineIndex[team] = pIndex
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1269
	elseif cat[cIndex] == "Weapon Crate Placement Mode" then
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1270
		teamLWeapIndex[team] = pIndex
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1271
	elseif cat[cIndex] == "Utility Crate Placement Mode" then
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1272
		teamLUtilIndex[team] = pIndex
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1273
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1274
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1275
11730
8cc9c8a43dcc Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents: 11729
diff changeset
  1276
function showModeMessage()
11760
001994046892 Construction Mode: Don't update ticker for cursor keys when hedgehog is not under control anymore
Wuzzy <almikes@aol.com>
parents: 11759
diff changeset
  1277
	if CurrentHedgehog == nil or band(GetState(CurrentHedgehog), gstHHDriven) == 0 then return end
11730
8cc9c8a43dcc Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents: 11729
diff changeset
  1278
	local val = pMode[pIndex]
8cc9c8a43dcc Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents: 11729
diff changeset
  1279
	local str
8cc9c8a43dcc Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents: 11729
diff changeset
  1280
	if cat[cIndex] == "Mine Placement Mode" then
8cc9c8a43dcc Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents: 11729
diff changeset
  1281
		-- timer in seconds
8cc9c8a43dcc Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents: 11729
diff changeset
  1282
		str = string.format(loc("%d sec"), div(val, 1000))
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1283
	elseif cat[cIndex] == "Structure Placement Mode" then
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1284
		str = loc(val)
11730
8cc9c8a43dcc Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents: 11729
diff changeset
  1285
	elseif cat[cIndex] == "Girder Placement Mode" then
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1286
		str = GetAmmoName(amGirder)
11730
8cc9c8a43dcc Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents: 11729
diff changeset
  1287
	elseif cat[cIndex] == "Rubber Placement Mode" then
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1288
		str = GetAmmoName(amRubber)
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1289
	elseif cat[cIndex] == "Weapon Crate Placement Mode"
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1290
	or cat[cIndex] == "Utility Crate Placement Mode"
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1291
	or cat[cIndex] == "Sticky Mine Placement Mode" then
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1292
		str = GetAmmoName(val)
11730
8cc9c8a43dcc Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents: 11729
diff changeset
  1293
	else
8cc9c8a43dcc Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents: 11729
diff changeset
  1294
		str = tostring(val)
8cc9c8a43dcc Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents: 11729
diff changeset
  1295
	end
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1296
	AddCaption(str, 0xffba00ff, capgrpMessage2)
11730
8cc9c8a43dcc Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents: 11729
diff changeset
  1297
end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1298
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1299
function rotateMode(pDir)
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1300
	curWep = GetCurAmmoType()
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1301
	local foundMatch = false
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1302
	while(foundMatch == false) do
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1303
		cIndex = cIndex + pDir
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1304
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1305
		if (cIndex == 1) or (cIndex == 2) then -- we no longer hit girder by normal means
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1306
			cIndex = #cat
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1307
		elseif cIndex > #cat then
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1308
			cIndex = 3       -- we no longer hit girder by normal means
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1309
		end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1310
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1311
		if (GetCurAmmoType() == amCMCratePlacer) then
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1312
			if (cat[cIndex] == "Health Crate Placement Mode") or
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1313
				(cat[cIndex] == "Weapon Crate Placement Mode") or
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1314
				(cat[cIndex] == "Utility Crate Placement Mode") then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1315
					foundMatch = true
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1316
			end
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1317
		elseif (GetCurAmmoType() == amCMObjectPlacer) then
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1318
			if (cat[cIndex] == "Mine Placement Mode") or
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1319
				(cat[cIndex] == "Sticky Mine Placement Mode") or
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1320
				(cat[cIndex] == "Barrel Placement Mode") then
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1321
				foundMatch = true
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1322
			end
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1323
		elseif (GetCurAmmoType() == amCMStructurePlacer) then
12951
37b81c20358b Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents: 12950
diff changeset
  1324
			if cat[cIndex] == "Structure Placement Mode" then
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1325
				foundMatch = true
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1326
			end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1327
		end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1328
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1329
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1330
	if foundMatch == true then
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1331
		RedefineSubset()
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1332
		--updateCost()
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1333
		HandleConstructionModeTools()
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1334
	end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1335
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1336
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1337
---------------------
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1338
-- PLAYER CONTROLS --
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1339
---------------------
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1340
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1341
-- [Timer X]: Used as shortcut key for faster selection of stuff
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1342
function onTimer(key)
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1343
	curWep = GetCurAmmoType()
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1344
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1345
	if (curWep == amCMStructurePlacer) then
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1346
		-- Select structure directly in structure placer
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1347
		-- [Timer X] selects structures 1-5
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1348
		-- [Precise]+[Timer X] selects structures 6-10
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1349
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1350
		local structureID = key
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1351
		local precise = band(GetGearMessage(CurrentHedgehog), gmPrecise) ~= 0
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1352
		if precise then
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1353
			structureID = structureID + 5
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1354
		end
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1355
		-- Check for valid pIndex
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1356
		if structureID <= #pMode then
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1357
			pIndex = structureID
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1358
			updateIndex()
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1359
		end
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1360
	elseif (curWep == amCMObjectPlacer) then
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1361
		-- [Timer X]: Set mine time 1-5
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1362
		if cat[cIndex] == "Mine Placement Mode" then
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1363
			local index = key + 1
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1364
			if key <= #pMode then
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1365
				pIndex = index
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1366
				updateIndex()
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1367
			end
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1368
		end
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1369
	end
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1370
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1371
	checkForSpecialWeaponsIn = 1
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1372
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1373
end
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1374
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1375
-- [Switch]: Set mine time to 0 (only in mine placement mode)
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1376
function onSwitch()
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1377
	curWep = GetCurAmmoType()
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1378
	if (curWep == amCMObjectPlacer) then
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1379
		pIndex = 1
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1380
		updateIndex()
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1381
	end
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1382
end
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1383
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1384
-- [Left]/[Right]: Change submode (e.g. structure type) of any Construction Mode tool or rotate girder/rubber
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1385
function onLeft()
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1386
	curWep = GetCurAmmoType()
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1387
	if (curWep == amGirder) or (curWep == amRubber) or (curWep == amCMStructurePlacer) or (curWep == amCMCratePlacer) or (curWep == amCMObjectPlacer) then
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1388
		pIndex = pIndex - 1
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1389
		if pIndex == 0 then
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1390
			pIndex = #pMode
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1391
		end
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1392
		updateIndex()
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1393
	end
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1394
end
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1395
function onRight()
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1396
	curWep = GetCurAmmoType()
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1397
	if (curWep == amGirder) or (curWep == amRubber) or (curWep == amCMStructurePlacer) or (curWep == amCMCratePlacer) or (curWep == amCMObjectPlacer) then
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1398
		pIndex = pIndex + 1
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1399
		if pIndex > #pMode then
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1400
			pIndex = 1
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1401
		end
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1402
		updateIndex()
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1403
	end
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1404
end
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1405
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1406
-- [Up]/[Down]
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1407
-- Cycle through the primary categories
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1408
-- (by changing cIndex) i.e. mine, sticky mine,
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1409
-- barrels, health/weapon/utility crate.
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1410
function onUp()
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1411
	curWep = GetCurAmmoType()
12941
ffbd31afed96 HedgeEditor, Construction Mode: Refactor code by adding fake ammo type variables
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
  1412
	if ( (curWep == amCMCratePlacer) or (curWep == amCMObjectPlacer) ) then
12945
0e698562d76d More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents: 12944
diff changeset
  1413
		if CurrentHedgehog ~= nil and band(GetState(CurrentHedgehog), gstHHDriven) ~= 0 then
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1414
			rotateMode(-1)
11760
001994046892 Construction Mode: Don't update ticker for cursor keys when hedgehog is not under control anymore
Wuzzy <almikes@aol.com>
parents: 11759
diff changeset
  1415
		end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1416
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1417
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1418
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1419
function onDown()
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1420
	curWep = GetCurAmmoType()
12941
ffbd31afed96 HedgeEditor, Construction Mode: Refactor code by adding fake ammo type variables
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
  1421
	if ( (curWep == amCMCratePlacer) or (curWep == amCMObjectPlacer) ) then
12945
0e698562d76d More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents: 12944
diff changeset
  1422
		if CurrentHedgehog ~= nil and band(GetState(CurrentHedgehog), gstHHDriven) ~= 0 then
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1423
			rotateMode(1)
11760
001994046892 Construction Mode: Don't update ticker for cursor keys when hedgehog is not under control anymore
Wuzzy <almikes@aol.com>
parents: 11759
diff changeset
  1424
		end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1425
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1426
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1427
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1428
-- [Set weapon]/[Slot X]: Just update internal stuff
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1429
onSetWeapon = HandleConstructionModeTools()
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1430
onSlot = onSetWeapon
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1431
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1432
----------------------------
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1433
-- standard event handlers
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1434
----------------------------
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1435
11720
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1436
-- Parses a positive integer
12092
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
  1437
function parseInt(str, default, infinityPermitted)
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
  1438
	if str == "inf" and infinityPermitted then
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
  1439
		return "inf"
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
  1440
	end
11720
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1441
	if str == nil then return default end
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1442
	local s = string.match(str, "(%d*)")
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1443
	if s ~= nil then
11728
373150be0356 Construction Mode: Sanity-check numbers from script parameter
Wuzzy <almikes@aol.com>
parents: 11727
diff changeset
  1444
		return math.min(4294967295, math.max(0, tonumber(s)))
11720
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1445
	else
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1446
		return nil
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1447
	end
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1448
end
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1449
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1450
-- Parse parameters
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1451
function onParameters()
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1452
	parseParams()
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1453
	conf_initialEnergy = parseInt(params["initialenergy"], conf_initialEnergy)
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1454
	conf_energyPerRound = parseInt(params["energyperround"], conf_energyPerRound)
12092
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
  1455
	conf_maxEnergy = parseInt(params["maxenergy"], conf_maxEnergy, true)
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
  1456
	conf_cratesPerRound = parseInt(params["cratesperround"], conf_cratesPerRound, true)
11720
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1457
end
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1458
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1459
function onGameInit()
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1460
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1461
	Explosives = 0
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1462
	MinesNum = 0
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1463
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1464
	EnableGameFlags(gfInfAttack)
12093
0d6e0ed36c9e Construction Mode: Fix free girder/rubber placement near hog
Wuzzy <almikes@aol.com>
parents: 12092
diff changeset
  1465
	-- This is a hack to make sure all girder/rubber placement is handled by Construction Mode to overwrite the default behaviour
0d6e0ed36c9e Construction Mode: Fix free girder/rubber placement near hog
Wuzzy <almikes@aol.com>
parents: 12092
diff changeset
  1466
	SetMaxBuildDistance(1)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1467
11881
34ede05e4d4f Remove old Fort Mode from frontend
Wuzzy <almikes@aol.com>
parents: 11762
diff changeset
  1468
	fortMode = MapGen == mgForts
11733
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1469
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1470
	-- if there are forts, let engine place the hogs on them
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1471
	if fortMode then
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1472
		EnableGameFlags(gfDivideTeams)
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1473
	end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1474
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1475
	RedefineSubset()
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1476
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1477
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1478
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1479
function initialSetup(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1480
11733
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1481
	-- engine already placed hogs in fort mode
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1482
	if not fortMode then
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1483
		FindPlace(gear, false, clanBoundsSX[GetHogClan(gear)], clanBoundsEX[GetHogClan(gear)],true)
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1484
	end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1485
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1486
	-- for now, everyone should have this stuff
12941
ffbd31afed96 HedgeEditor, Construction Mode: Refactor code by adding fake ammo type variables
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
  1487
	AddAmmo(gear, amCMStructurePlacer, 100)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1488
	AddAmmo(gear, amSwitch, 100)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1489
	AddAmmo(gear, amSkip, 100)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1490
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1491
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1492
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1493
function onGameStart()
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1494
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1495
	trackTeams()
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1496
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1497
	ShowMission	(
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1498
				loc("CONSTRUCTION MODE"),
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1499
				loc("a Hedgewars mini-game"),
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1500
				loc("Build a fortress and destroy your enemy.") .. "|" ..
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1501
				loc("There are a variety of structures available to aid you.") .. "|" ..
11942
abdb24f0c2d9 Change descriptions for special Construction Mode tools
Wuzzy <almikes@aol.com>
parents: 11881
diff changeset
  1502
				loc("Use the structure placer to place structures.")
11725
3444792e8ebe Construction Mode: Remove 2 useless blank lines in mission panel
Wuzzy <almikes@aol.com>
parents: 11724
diff changeset
  1503
				, 4, 5000
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1504
				)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1505
12941
ffbd31afed96 HedgeEditor, Construction Mode: Refactor code by adding fake ammo type variables
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
  1506
	SetAmmoTexts(amCMStructurePlacer, loc("Structure Placer"), loc("Construction Mode tool"), loc("Build one of multiple different structures|to aid you in victory, at the cost of energy.") .. "| |" ..
12943
3feab46234dd Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents: 12942
diff changeset
  1507
	loc("Support Station: Allows placement of crates.") .. "|"..
3feab46234dd Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents: 12942
diff changeset
  1508
	loc("Construction Station: Allows placement of|    girders, rubber, mines, sticky mines|    and barrels.")  .. "|" ..
11942
abdb24f0c2d9 Change descriptions for special Construction Mode tools
Wuzzy <almikes@aol.com>
parents: 11881
diff changeset
  1509
	loc("Healing Station: Heals nearby hogs.")  .. "|" ..
12943
3feab46234dd Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents: 12942
diff changeset
  1510
	loc("Teleportation Node: Allows teleportation|    between other nodes.")  .. "|" ..
3feab46234dd Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents: 12942
diff changeset
  1511
	loc("Weapon Filter: Dematerializes all ammo|    carried by enemies entering it.")  .. "|" ..
11942
abdb24f0c2d9 Change descriptions for special Construction Mode tools
Wuzzy <almikes@aol.com>
parents: 11881
diff changeset
  1512
	loc("Bio-Filter: Aggressively removes enemies.")  .. "|" ..
abdb24f0c2d9 Change descriptions for special Construction Mode tools
Wuzzy <almikes@aol.com>
parents: 11881
diff changeset
  1513
	loc("Reflector Shield: Reflects enemy projectiles.")  .. "|" ..
abdb24f0c2d9 Change descriptions for special Construction Mode tools
Wuzzy <almikes@aol.com>
parents: 11881
diff changeset
  1514
	loc("Respawner: Resurrects dead hogs.")  .. "|" ..
12942
ca23981ec219 Add a few key shortcuts in Costruction Mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12941
diff changeset
  1515
	loc("Generator: Generates energy.")  .. "|" ..
12943
3feab46234dd Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents: 12942
diff changeset
  1516
	" |" ..
11942
abdb24f0c2d9 Change descriptions for special Construction Mode tools
Wuzzy <almikes@aol.com>
parents: 11881
diff changeset
  1517
12942
ca23981ec219 Add a few key shortcuts in Costruction Mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12941
diff changeset
  1518
	loc("Left/right: Choose structure type").."|"..
ca23981ec219 Add a few key shortcuts in Costruction Mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12941
diff changeset
  1519
	loc("1-5, Precise + 1-4: Choose structure type").."|"..
ca23981ec219 Add a few key shortcuts in Costruction Mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12941
diff changeset
  1520
	loc("Cursor: Build structure"))
11942
abdb24f0c2d9 Change descriptions for special Construction Mode tools
Wuzzy <almikes@aol.com>
parents: 11881
diff changeset
  1521
12092
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
  1522
	local txt_crateLimit = ""
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
  1523
	if conf_cratesPerRound ~= "inf" then
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
  1524
		txt_crateLimit = string.format(loc("You may only place %d crates per round."), conf_cratesPerRound) .. "|"
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
  1525
	end
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
  1526
12941
ffbd31afed96 HedgeEditor, Construction Mode: Refactor code by adding fake ammo type variables
Wuzzy <Wuzzy2@mail.ru>
parents: 12940
diff changeset
  1527
	SetAmmoTexts(amCMCratePlacer, loc("Crate Placer"), loc("Construction Mode tool"),
12092
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
  1528
		loc("This allows you to create a crate anywhere|within your clan's area of influence,|at the cost of energy.") .. "|" ..
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
  1529
		txt_crateLimit ..
12943
3feab46234dd Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents: 12942
diff changeset
  1530
		loc("Up/down: Choose crate type") .. "|" ..
12092
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
  1531
		loc("Left/right: Choose crate contents") .. "|" ..
9fe7eb1f7df2 Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents: 12091
diff changeset
  1532
		loc("|Cursor: Place crate"))
12942
ca23981ec219 Add a few key shortcuts in Costruction Mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12941
diff changeset
  1533
	SetAmmoTexts(amCMObjectPlacer, loc("Object Placer"), loc("Construction Mode tool"),
ca23981ec219 Add a few key shortcuts in Costruction Mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12941
diff changeset
  1534
		loc("This allows you to create and place mines,|sticky mines and barrels anywhere within your|clan's area of influence at the cost of energy.").."|"..
ca23981ec219 Add a few key shortcuts in Costruction Mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12941
diff changeset
  1535
		loc("Up/down: Choose object type|1-5/Switch/Left/Right: Choose mine timer|Cursor: Place object")
ca23981ec219 Add a few key shortcuts in Costruction Mode
Wuzzy <Wuzzy2@mail.ru>
parents: 12941
diff changeset
  1536
	)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1537
12336
fbc268170015 Construction Mode: Mention teleportation restriction in tooltip
Wuzzy <almikes@aol.com>
parents: 12214
diff changeset
  1538
	SetAmmoDescriptionAppendix(amTeleport, loc("It only works in teleportation nodes of your own clan."))
fbc268170015 Construction Mode: Mention teleportation restriction in tooltip
Wuzzy <almikes@aol.com>
parents: 12214
diff changeset
  1539
	
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
  1540
	local sCirc = AddVisualGear(0,0,vgtCircle,0,true)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1541
	SetVisualGearValues(sCirc, 0, 0, 100, 255, 1, 10, 0, 40, 3, 0x00000000)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1542
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1543
	for i = 0, ClansCount-1 do
11982
6f4b96669f9d Fix Construction Mode screwing up when initialenergy > maxenergy
Wuzzy <almikes@aol.com>
parents: 11981
diff changeset
  1544
		clanPower[i] = math.min(conf_initialEnergy, conf_maxEnergy)
12944
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1545
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1546
		clanUsedExtraTime[i] = false
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1547
		clanCratesSpawned[i] = 0
11721
8c1a30d4cbc8 Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents: 11720
diff changeset
  1548
		clanFirstTurn[i] = true
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1549
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1550
	end
12944
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1551
	for i = 0, TeamsCount-1 do
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1552
		local team = GetTeamName(i)
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1553
		teamLStructIndex[team] = 1
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1554
		teamLObjectMode[team] = "Mine Placement Mode"
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1555
		teamLCrateMode[team] = "Weapon Crate Placement Mode"
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1556
		teamLMineIndex[team] = 1
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1557
		teamLWeapIndex[team] = 1
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1558
		teamLUtilIndex[team] = 1
712ae7ff8c3d Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents: 12943
diff changeset
  1559
	end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1560
12949
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
  1561
	local tMapWidth = RightX - LeftX
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
  1562
	local tMapHeight = WaterLine - TopY
4fa79a6a1883 Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents: 12948
diff changeset
  1563
	local clanInterval = div(tMapWidth,ClansCount)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1564
11733
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1565
	-- define construction areas for each clan
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1566
	-- if there are forts-based spawn locations, adjust areas around them
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1567
	for i = 0, ClansCount-1 do
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1568
		local slot
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1569
		if fortMode then
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1570
			slot = div(GetX(getFirstHogOfClan(i))-LeftX,clanInterval)
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1571
		else
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1572
			slot = i
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1573
		end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1574
11733
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1575
		local color = GetClanColor(i)
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1576
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1577
		clanBoundsSX[i] = LeftX+(clanInterval*slot)+20
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1578
		clanBoundsSY[i] = TopY
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1579
		clanBoundsEX[i] = LeftX+(clanInterval*slot)+clanInterval-20
67049c8dedd1 make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents: 11732
diff changeset
  1580
		clanBoundsEY[i] = WaterLine
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1581
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1582
		--top and bottom
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
  1583
		AddWall(LeftX+(clanInterval*slot),TopY,clanInterval,wMargin,color)
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
  1584
		AddWall(LeftX+(clanInterval*slot),WaterLine-25,clanInterval,wMargin,color)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1585
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1586
		--add a wall to the left and right
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
  1587
		AddWall(LeftX+(clanInterval*slot)+20,TopY,wMargin,WaterLine,color)
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
  1588
		AddWall(LeftX+(clanInterval*slot)+clanInterval-20,TopY,wMargin,WaterLine,color)
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1589
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1590
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1591
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1592
	runOnHogs(initialSetup)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1593
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1594
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1595
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1596
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1597
function onNewTurn()
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1598
12945
0e698562d76d More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents: 12944
diff changeset
  1599
	curWep = GetCurAmmoType()
0e698562d76d More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents: 12944
diff changeset
  1600
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1601
	HandleConstructionModeTools()
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1602
11720
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1603
	local clan = GetHogClan(CurrentHedgehog)
11721
8c1a30d4cbc8 Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents: 11720
diff changeset
  1604
	if clanFirstTurn[clan] then
8c1a30d4cbc8 Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents: 11720
diff changeset
  1605
		clanFirstTurn[clan] = false
8c1a30d4cbc8 Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents: 11720
diff changeset
  1606
	else
8c1a30d4cbc8 Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents: 11720
diff changeset
  1607
		clanPower[clan] = clanPower[clan] + conf_energyPerRound
11728
373150be0356 Construction Mode: Sanity-check numbers from script parameter
Wuzzy <almikes@aol.com>
parents: 11727
diff changeset
  1608
		if conf_maxEnergy ~= "inf" and clanPower[clan] > conf_maxEnergy then
11721
8c1a30d4cbc8 Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents: 11720
diff changeset
  1609
			clanPower[clan] = conf_maxEnergy
8c1a30d4cbc8 Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents: 11720
diff changeset
  1610
		end
11720
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1611
	end
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1612
	clanUsedExtraTime[clan] = false
5cb2f245ee2f Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents: 11719
diff changeset
  1613
	clanCratesSpawned[clan] = 0
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1614
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1615
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1616
function onEndTurn()
12945
0e698562d76d More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents: 12944
diff changeset
  1617
	curWep = amNothing
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1618
	HandleConstructionModeTools()
12945
0e698562d76d More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents: 12944
diff changeset
  1619
end
0e698562d76d More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents: 12944
diff changeset
  1620
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1621
function onGameTick()
12946
1a1a514aef2e Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents: 12945
diff changeset
  1622
	HandleConstructionMode()
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1623
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1624
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1625
function onScreenResize()
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1626
	-- redraw Tags so that their screen locations are updated
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1627
	if (CurrentHedgehog ~= nil) then
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1628
		DrawClanPowerTag()
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1629
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1630
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1631
12948
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1632
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1633
function onGearResurrect(gear)
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1634
	AddVisualGear(GetX(gear), GetY(gear), vgtExplosion, 0, false)
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1635
	FindRespawner(gear)
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1636
end
f85a040d0350 Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents: 12946
diff changeset
  1637
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1638
-- track hedgehogs and placement gears
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1639
function onGearAdd(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1640
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
  1641
	local gt = GetGearType(gear)
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
  1642
	if (gt == gtAirAttack) or (gt == gtTeleport) or (gt == gtGirder) then
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1643
		cGear = gear
12950
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
  1644
	elseif (gt == gtMine) or (gt == gtExplosives) or (gt == gtSMine) then
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
  1645
		curWep = GetCurAmmoType()
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
  1646
		if curWep == amCMObjectPlacer then
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
  1647
			checkForSpecialWeaponsIn = 1
a260d233cef3 Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 12949
diff changeset
  1648
		end
11015
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1649
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1650
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1651
	if isATrackedGear(gear) then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1652
		trackGear(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1653
	elseif gearCanBeDeflected(gear) then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1654
		trackGear(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1655
		setGearReflectionValues(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1656
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1657
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1658
end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1659
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1660
function onGearDelete(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1661
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1662
	if GetGearType(gear) == gtTarget then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1663
		CheckGearForStructureLink(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1664
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1665
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1666
	if (GetGearType(gear) == gtAirAttack) or (GetGearType(gear) == gtTeleport) or (GetGearType(gear) == gtGirder) then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1667
		cGear = nil
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1668
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1669
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1670
	if (isATrackedGear(gear) or gearCanBeDeflected(gear)) then
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1671
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1672
		trackDeletion(gear)
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1673
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1674
	end
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1675
7a905f0070ce CRLF purge
nemo
parents: 10897
diff changeset
  1676
end