Difference between revisions of "Module:UnitData"
(Start working on ability infoboxes; try removing the preprocess calls) |
(Ability infoboxes) |
||
| Line 2: | Line 2: | ||
local unit = {} | local unit = {} | ||
local unitData = mw.loadData('Module:UnitData/data') | local unitData = mw.loadData('Module:UnitData/data') | ||
| + | |||
| + | local function toPercent(amount) | ||
| + | -- amount is a string when ToSI is used before calling this function | ||
| + | if type(amount) == "string" then | ||
| + | amount = tonumber(amount) | ||
| + | end | ||
| + | |||
| + | return string.format("%.0f", amount * 100) .. "%" | ||
| + | end | ||
function unit.getData(frame) | function unit.getData(frame) | ||
| Line 19: | Line 28: | ||
function unit.printAbilityInfoboxes(frame) | function unit.printAbilityInfoboxes(frame) | ||
| − | |||
if not frame then return '' end | if not frame then return '' end | ||
local unitDefName = frame.args[1] | local unitDefName = frame.args[1] | ||
| Line 29: | Line 37: | ||
result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("construction", {buildpower = ud.buildSpeed})) | result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("construction", {buildpower = ud.buildSpeed})) | ||
end | end | ||
| + | if ud.transportCapacity then | ||
| + | local light = ud.transportLightSpeed | ||
| + | local medium = cp.transportMediumSpeed | ||
| + | local heavy = cp.transportHeavySpeed | ||
| + | local args = {} | ||
| + | if light then args.light = toPercent(light) end | ||
| + | if medium then args.medium = toPercent(medium) end | ||
| + | if heavy then args.heavy = toPercent(heavy) end | ||
| + | result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("transport", args)) | ||
| + | end | ||
| + | if ud.cloakCost or ud.idleCloak then | ||
| + | local args = {} | ||
| + | if (ud.cloakCost or 0) > 0 then | ||
| + | args.upkeepidle = ud.cloakCost | ||
| + | args.upkeepmobile = ud.cloakCostMoving | ||
| + | elseif ud.idle_cloak then | ||
| + | args.customdata1 = "Only when idle" | ||
| + | args.customdata2 = "Free and automated" | ||
| + | end | ||
| + | args.decloakradius = ud.decloakDistance | ||
| + | if ud.decloakOnFire == false then | ||
| + | args.customdata3 = "No decloak while shooting" | ||
| + | end | ||
| + | result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("cloak", args)) | ||
| + | end | ||
| + | if ud.areaCloakUpkeep then | ||
| + | local args = {name = "Area Cloak", radius = ud.areaCloakRadius, upkeep = ud.areaCloakUpkeep} | ||
| + | result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("cloak", args)) | ||
| + | end | ||
| + | if ud.shieldIDs then | ||
| + | local weaponData = mw.loadData('Module:WeaponData/data') | ||
| + | for index, shieldID in pairs(ud.shieldIDs or {}) do | ||
| + | local args = {} | ||
| + | local shieldDef = weaponData[shieldID] | ||
| + | args.name = shieldDef.name | ||
| + | args.strength = shieldDef.strength | ||
| + | args.regen = shieldDef.regen | ||
| + | args.regencost = shieldDef.regencost | ||
| + | args.radius = shieldDef.radius | ||
| + | result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("shield", args)) | ||
| + | end | ||
| + | end | ||
| + | if ud.radarDistance or ud.jammerDistance then | ||
| + | local args = {} | ||
| + | if unitDef.radardistancejam then | ||
| + | if not unitDef.radardistance then | ||
| + | args.name = "Radar Jammer" | ||
| + | end | ||
| + | args.jam = ud.jammerDistance | ||
| + | end | ||
| + | if unitDef.radardistance then | ||
| + | args.radar = ud.radarDistance | ||
| + | end | ||
| + | result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("intel", args)) | ||
| + | end | ||
| + | if ud.jumpRange then | ||
| + | local args = {range = ud.jumpRange, reload = ud.jumpReload, speed = ud.jumpSpeed, midairjump = ud.midairJump} | ||
| + | result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("jump", args)) | ||
| + | end | ||
| + | if ud.idleRegen or ud.combatRegen or ud.waterRegen or ud.armoredRegen then | ||
| + | local args = {} | ||
| + | if ud.idleRegenTime then | ||
| + | if unitDef.idletime > 0 then | ||
| + | args.idleregen = ud.idleRegen | ||
| + | args.timetoenable = ud.idleRegenTime | ||
| + | else | ||
| + | args.combatregen = ud.combatRegen | ||
| + | end | ||
| + | end | ||
| + | if ud.waterRegen then | ||
| + | args.waterregen = ud.waterRegen | ||
| + | args.atdepth = ud.waterRegenDepth | ||
| + | end | ||
| + | if ud.armoredRegen then | ||
| + | args.customlabel1 = "Closed regen (HP/s)" | ||
| + | args.customdata1 = ud.armoredRegen | ||
| + | end | ||
| + | result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("regen", args)) | ||
| + | end | ||
| + | if ud.morphTo then | ||
| + | local args = {to = "[[" .. ud.morphTo .. "]]", cost = ud.morphCost, time = ud.morphTime, disabled = ud.combatMorph and "No" or "Yes"} | ||
| + | result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("morph", args)) | ||
| + | end | ||
| + | if ud.armorDamageReduction then | ||
| + | local args = {reduction = ud.armorDamageReduction .. '%'} | ||
| + | abilities = abilities .. "\n\t" .. writeHeaderLine("Infobox zkability armored") | ||
| + | if ud.armorForceClose then | ||
| + | args.special1 = "Forced for " .. ud.armorForceClose .. "s on damage" | ||
| + | end | ||
| + | result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("armored", args)) | ||
| + | end | ||
| + | |||
| + | |||
| + | local args = {} | ||
| + | local num = 1 | ||
| + | do | ||
| + | if ud.isMex then | ||
| + | args["customdata".. num] = "Extracts metal" | ||
| + | num = num + 1 | ||
| + | end | ||
| + | if ud.stealth then | ||
| + | args["customdata".. num] = "Invisible to radar" | ||
| + | num = num + 1 | ||
| + | end | ||
| + | if ud.fireproof then | ||
| + | args["customdata".. num] = "Immunity to afterburn" | ||
| + | num = num + 1 | ||
| + | end | ||
| + | if ud.dontFireAtRadar then | ||
| + | args["customdata".. num] = "Can ignore unidentified targets" | ||
| + | num = num + 1 | ||
| + | end | ||
| + | if ud.instaSelfDestruct then | ||
| + | args["customdata".. num] = "Instant self-destruction" | ||
| + | num = num + 1 | ||
| + | end | ||
| + | end | ||
| + | if num > 1 then | ||
| + | result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("line", args)) | ||
| + | end | ||
| + | |||
| + | return result | ||
end | end | ||
Revision as of 18:54, 11 May 2024
This module is used to autogenerate unit infoboxes by drawing data from Module:UnitData/data. The intent is to ease updating of unit infoboxes on the wiki; ideally, only the one data page needing to be changed every release. The concept is taken from e.g. the Combat Card Data module on the Library of Ruina Wiki.
This module is currently used with Template:Autoinfobox zkunit as follows:
{{Autoinfobox zkunit
|defname=striderdetriment
|name=Name override
}}
The module can also be invoked directly to generate an infobox (note that output may not be identical in some cases; observed with automatic detection of buildpic on Reef):
{{#invoke:UnitData|printInfobox|defname=striderdetriment|name=Name override}}
When invoking from module, defname may be passed as an anonymous parameter instead.
See also Module:WeaponData, which is used to generate the weapon infoboxes within the unit infoboxes.
Data page
Module:UnitData/data is a central store of data used by Module:UnitData to automatically populate unit infoboxes.
The page is a Lua table written to the local file temp/unitStats.lua by the Wiki Data Export (dbg_wiki_export.lua) widget in Zero-K. This widget should be run once each update and the data page on the wiki replaced accordingly. It should not be necessary to edit the data manually.
local getArgs = require('Module:Arguments').getArgs
local unit = {}
local unitData = mw.loadData('Module:UnitData/data')
local function toPercent(amount)
-- amount is a string when ToSI is used before calling this function
if type(amount) == "string" then
amount = tonumber(amount)
end
return string.format("%.0f", amount * 100) .. "%"
end
function unit.getData(frame)
if not frame then return '' end
local unitDefName = frame.args[1]
local ud = unitData[unitDefName]
if not (ud) then return 'unitdef ' .. unitDefName .. ' not found' end
local property = frame.args[2]
local result = ud[property]
return result or ''
end
function unit.getAbilityInfoboxTemplate(abType, args)
local tbl = {title = "Infobox zkability " .. abType, args}
return tbl
end
function unit.printAbilityInfoboxes(frame)
if not frame then return '' end
local unitDefName = frame.args[1]
local ud = unitData[unitDefName]
if not (ud) then return 'unitdef ' .. unitDefName .. ' not found' end
local result = ''
if ud.buildSpeed then
result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("construction", {buildpower = ud.buildSpeed}))
end
if ud.transportCapacity then
local light = ud.transportLightSpeed
local medium = cp.transportMediumSpeed
local heavy = cp.transportHeavySpeed
local args = {}
if light then args.light = toPercent(light) end
if medium then args.medium = toPercent(medium) end
if heavy then args.heavy = toPercent(heavy) end
result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("transport", args))
end
if ud.cloakCost or ud.idleCloak then
local args = {}
if (ud.cloakCost or 0) > 0 then
args.upkeepidle = ud.cloakCost
args.upkeepmobile = ud.cloakCostMoving
elseif ud.idle_cloak then
args.customdata1 = "Only when idle"
args.customdata2 = "Free and automated"
end
args.decloakradius = ud.decloakDistance
if ud.decloakOnFire == false then
args.customdata3 = "No decloak while shooting"
end
result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("cloak", args))
end
if ud.areaCloakUpkeep then
local args = {name = "Area Cloak", radius = ud.areaCloakRadius, upkeep = ud.areaCloakUpkeep}
result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("cloak", args))
end
if ud.shieldIDs then
local weaponData = mw.loadData('Module:WeaponData/data')
for index, shieldID in pairs(ud.shieldIDs or {}) do
local args = {}
local shieldDef = weaponData[shieldID]
args.name = shieldDef.name
args.strength = shieldDef.strength
args.regen = shieldDef.regen
args.regencost = shieldDef.regencost
args.radius = shieldDef.radius
result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("shield", args))
end
end
if ud.radarDistance or ud.jammerDistance then
local args = {}
if unitDef.radardistancejam then
if not unitDef.radardistance then
args.name = "Radar Jammer"
end
args.jam = ud.jammerDistance
end
if unitDef.radardistance then
args.radar = ud.radarDistance
end
result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("intel", args))
end
if ud.jumpRange then
local args = {range = ud.jumpRange, reload = ud.jumpReload, speed = ud.jumpSpeed, midairjump = ud.midairJump}
result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("jump", args))
end
if ud.idleRegen or ud.combatRegen or ud.waterRegen or ud.armoredRegen then
local args = {}
if ud.idleRegenTime then
if unitDef.idletime > 0 then
args.idleregen = ud.idleRegen
args.timetoenable = ud.idleRegenTime
else
args.combatregen = ud.combatRegen
end
end
if ud.waterRegen then
args.waterregen = ud.waterRegen
args.atdepth = ud.waterRegenDepth
end
if ud.armoredRegen then
args.customlabel1 = "Closed regen (HP/s)"
args.customdata1 = ud.armoredRegen
end
result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("regen", args))
end
if ud.morphTo then
local args = {to = "[[" .. ud.morphTo .. "]]", cost = ud.morphCost, time = ud.morphTime, disabled = ud.combatMorph and "No" or "Yes"}
result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("morph", args))
end
if ud.armorDamageReduction then
local args = {reduction = ud.armorDamageReduction .. '%'}
abilities = abilities .. "\n\t" .. writeHeaderLine("Infobox zkability armored")
if ud.armorForceClose then
args.special1 = "Forced for " .. ud.armorForceClose .. "s on damage"
end
result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("armored", args))
end
local args = {}
local num = 1
do
if ud.isMex then
args["customdata".. num] = "Extracts metal"
num = num + 1
end
if ud.stealth then
args["customdata".. num] = "Invisible to radar"
num = num + 1
end
if ud.fireproof then
args["customdata".. num] = "Immunity to afterburn"
num = num + 1
end
if ud.dontFireAtRadar then
args["customdata".. num] = "Can ignore unidentified targets"
num = num + 1
end
if ud.instaSelfDestruct then
args["customdata".. num] = "Instant self-destruction"
num = num + 1
end
end
if num > 1 then
result = result .. frame:expandTemplate(unit.getAbilityInfoboxTemplate("line", args))
end
return result
end
function unit.printWeaponInfoboxes(frame)
if not frame then return '' end
local unitDefName = frame.args[1]
local ud = unitData[unitDefName]
if not (ud) then return 'unitdef ' .. unitDefName .. ' not found' end
local result = ''
local weaponModule = require('Module:WeaponData')
for index,weaponID in ipairs(ud.weaponIDs or {}) do
local tempFrame = mw.getCurrentFrame():newChild{title="Module:WeaponData",args={defname=weaponID}}
result = result .. weaponModule.printInfobox(tempFrame)
end
return result or ''
end
return unit