Editing Module:WeaponData

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 3: Line 3:
 
local weaponData = mw.loadData('Module:WeaponData/data')
 
local weaponData = mw.loadData('Module:WeaponData/data')
  
local function addCustomLabel(templateArgs, key, value, index)
+
local function writeTemplateLine(key, value)
 +
if not key or not value then
 +
return ""
 +
end
 +
local str = ""
 +
str = str .. "| " .. key .. " = " .. value
 +
return str
 +
end
 +
 
 +
-- args: key in a key-value pair (nil if not a pair); value to display; number of extra rows used in the infobox thus far; infobox string thus far
 +
-- return values: appended string, number of rows (now incremented by one), infobox string with new text appended
 +
local function writeCustomDataLine(key, value, count, currentStr)
 +
currentStr = currentStr or ''
 +
count = count + 1
 +
local append = ""
 +
 
if key then
 
if key then
templateArgs["customlabel"..index] = key
+
append = writeTemplateLine("customlabel"..count, key) .. writeTemplateLine("customdata"..count, value)
templateArgs["customdata"..index] = value
 
 
else
 
else
templateArgs["special"..index] = value
+
append = writeTemplateLine("special"..count, value)
 
end
 
end
index = index + 1
+
currentStr = currentStr .. append
return index
+
return append, count, currentStr
 
end
 
end
  
 
function weapon.getData(frame)
 
function weapon.getData(frame)
 
if not frame then return '' end
 
if not frame then return '' end
local weaponDefName = frame.args.defname or frame.args[1] or "<no name specified>"
+
local weaponDefName = frame.args[1]
 
local wd = weaponData[weaponDefName]
 
local wd = weaponData[weaponDefName]
 
if not (wd) then return 'weapondef ' .. weaponDefName .. ' not found' end
 
if not (wd) then return 'weapondef ' .. weaponDefName .. ' not found' end
local property = (frame.args.defname == nil) and frame.args[2] or frame.args[1]
+
local property = frame.args[2]
 
local result = wd[property]
 
local result = wd[property]
 
if not result then result = '' end
 
if not result then result = '' end
Line 25: Line 39:
 
end
 
end
  
local function addSpecialDataToTemplate(templateArgs, wd)
+
function weapon.getInfoboxTemplate(frame)
local num = 1
+
local args = frame.args
for index, entry in ipairs(wd.extraData or {}) do
+
local tbl = {title = "Infobox zkweapon", args = {}}
 +
local w = tbl.args
 +
local wd = weaponData[args.defname]
 +
if not (wd) then return 'weapondef ' .. weaponDefName .. ' not found' end
 +
 +
for key, value in pairs(args) do
 +
w[key] = value or wd[key]
 +
end
 +
return tbl
 +
end
 +
 
 +
function weapon.printInfobox(frame)
 +
return frame:expandTemplate(weapon.getInfoboxTemplate(frame))
 +
end
 +
 
 +
function weapon.printInfoboxCustomRows(frame)
 +
local weaponDefName = frame.args[1]
 +
local expanded = frame.args[2]
 +
local wd = weaponData[weaponDefName]
 +
if not wd then return 'weapondef ' .. weaponDefName .. ' not found' end
 +
if not wd.extraData then return '' end
 +
 +
local str = ''
 +
local count = 0
 +
for index, entry in ipairs(wd.extraData) do
 +
local append = ''
 
if type(entry) == 'table' then
 
if type(entry) == 'table' then
 
if entry.type == 'shielddrain' then
 
if entry.type == 'shielddrain' then
num = addCustomLabel(templateArgs, "Shield drain (HP/shot)", entry.drain, num)
+
append, count, str = writeCustomDataLine("Shield drain (HP/shot)", entry.drain, count, str)
 
elseif entry.type == 'needs_link' then
 
elseif entry.type == 'needs_link' then
num = addCustomLabel(templateArgs, "Grid needed", entry.power, num)
+
append, count, str = writeCustomDataLine("Grid needed", entry.power, count, str)
 
elseif entry.type == 'spawn' then
 
elseif entry.type == 'spawn' then
num = addCustomLabel(templateArgs, "Spawns Unit", "[[" .. entry.name .. "]]", num)
+
append, count, str = writeCustomDataLine("Spawns Unit", "[[" .. entry.name .. "]]", count, str)
num = addCustomLabel(templateArgs, "Spawn Life (s)", entry.expire, num)
+
append, count, str = writeCustomDataLine("Spawn Life (s)", entry.expire, count, str)
 
elseif entry.type == 'areadamage' then
 
elseif entry.type == 'areadamage' then
 
local typeName = entry.grav and "Gravity Well" or "Ground Burn"
 
local typeName = entry.grav and "Gravity Well" or "Ground Burn"
 
if not grav then
 
if not grav then
num = addCustomLabel(templateArgs, typeName .. " DPS", entry.dps, num)
+
append, count, str = writeCustomDataLine(typeName .. " DPS", entry.dps, count, str)
 
end
 
end
num = addCustomLabel(templateArgs, typeName .. " radius (elmo)", entry.radius, num)
+
append, count, str = writeCustomDataLine(typeName .. " radius (elmo)", entry.radius, count, str)
num = addCustomLabel(templateArgs, typeName .. " duration (s)", entry.duration, num)
+
append, count, str = writeCustomDataLine(typeName .. " duration (s)", entry.duration, count, str)
  
 
elseif entry.type == 'stockpile' then
 
elseif entry.type == 'stockpile' then
num = addCustomLabel(templateArgs, "Stockpile time (s)", entry.time, num)
+
append, count, str = writeCustomDataLine("Stockpile time (s)", entry.time, count, str)
 
if (entry.cost) then
 
if (entry.cost) then
num = addCustomLabel(templateArgs, "Stockpile cost (M)", entry.cost, num)
+
append, count, str = writeCustomDataLine("Stockpile cost (M)", entry.cost, count, str)
 
end
 
end
 +
else
 +
append, count, str = writeCustomDataLine("Invalid table data", entry.type, count, str)
 
end
 
end
 
else
 
else
 
if entry == 'hitscan' then
 
if entry == 'hitscan' then
num = addCustomLabel(templateArgs, nil, "Instantly hits", num)
+
append, count, str = writeCustomDataLine(nil, "Instantly hits", count, str)
 
elseif entry == 'ignoreshield' then
 
elseif entry == 'ignoreshield' then
num = addCustomLabel(templateArgs, nil, "Ignores shields", num)
+
append, count, str = writeCustomDataLine(nil, "Ignores shields", count, str)
 
elseif entry == 'smoothsground' then
 
elseif entry == 'smoothsground' then
num = addCustomLabel(templateArgs, nil, "Smooths ground", num)
+
append, count, str = writeCustomDataLine(nil, "Smooths ground", count, str)
 
elseif entry == 'hightraj' then
 
elseif entry == 'hightraj' then
num = addCustomLabel(templateArgs, nil, "High trajectory", num)
+
append, count, str = writeCustomDataLine(nil, "High trajectory", count, str)
 
elseif entry == 'trajtoggle' then
 
elseif entry == 'trajtoggle' then
num = addCustomLabel(templateArgs, nil, "Trajectory toggle", num)
+
append, count, str = writeCustomDataLine(nil, "Trajectory toggle", count, str)
 
elseif entry == 'watercapable' then
 
elseif entry == 'watercapable' then
num = addCustomLabel(templateArgs, nil, "Water capable", num)
+
append, count, str = writeCustomDataLine(nil, "Water capable", count, str)
 
elseif entry == 'friendlyfire' then
 
elseif entry == 'friendlyfire' then
num = addCustomLabel(templateArgs, nil, "Potential friendly fire", num)
+
append, count, str = writeCustomDataLine(nil, "Potential friendly fire", count, str)
 
elseif entry == 'nofriendlyfire' then
 
elseif entry == 'nofriendlyfire' then
num = addCustomLabel(templateArgs, nil, "No friendly fire", num)
+
append, count, str = writeCustomDataLine(nil, "No friendly fire", count, str)
 
elseif entry == 'nogroundcollide' then
 
elseif entry == 'nogroundcollide' then
num = addCustomLabel(templateArgs, nil, "Passes through ground", num)
+
append, count, str = writeCustomDataLine(nil, "Passes through ground", count, str)
 
elseif entry == 'piercing' then
 
elseif entry == 'piercing' then
num = addCustomLabel(templateArgs, nil, "Damage increase vs large units", num)
+
append, count, str = writeCustomDataLine(nil, "Damage increase vs large units", count, str)
 
elseif entry == 'damagefalloff' then
 
elseif entry == 'damagefalloff' then
num = addCustomLabel(templateArgs, nil, "Damage falls off with range", num)
+
append, count, str = writeCustomDataLine(nil, "Damage falls off with range", count, str)
 
elseif entry == 'inaccuratevsmoving' then
 
elseif entry == 'inaccuratevsmoving' then
num = addCustomLabel(templateArgs, nil, "Inaccuracy vs moving targets", num)
+
append, count, str = writeCustomDataLine(nil, "Inaccuracy vs moving targets", count, str)
 
elseif entry == 'interceptedbyantinuke' then
 
elseif entry == 'interceptedbyantinuke' then
num = addCustomLabel(templateArgs, nil, "Can be shot down by antinukes", num)
+
append, count, str = writeCustomDataLine(nil, "Can be shot down by antinukes", count, str)
 +
else
 +
append, count, str = writeCustomDataLine("Invalid tag data", entry, count, str)
 
end
 
end
 
end
 
end
 
end
 
end
end
+
return expanded and frame:preprocess(str) or str
 
 
function weapon.getInfoboxTemplate(frame)
 
local args = frame.args
 
local tbl = {title = "Infobox zkweapon", args = {}}
 
local w = tbl.args
 
local defName = args.defname or args[1] or "<no name specified>"
 
local wd = weaponData[defName]
 
if not (wd) then return 'weapondef ' .. defName .. ' not found' end
 
 
addSpecialDataToTemplate(w, wd)
 
 
for key, value in pairs(wd) do
 
w[key] = args[key] or value
 
end
 
w.extraData = nil
 
if (w.count and w.count > 1) then
 
w.name = w.name .. " x " .. w.count
 
end
 
if (w.projectiles and w.projectiles > 1) then
 
local append = " x " ..  w.projectiles
 
if w.damage then w.damage = w.damage .. append end
 
if w.empdamage then w.empdamage = w.empdamage .. append end
 
if w.slowdamage then w.slowdamage = w.slowdamage .. append end
 
if w.disarmdamage then w.disarmdamage = w.disarmdamage .. append end
 
if w.shielddamage then w.shielddamage = w.shielddamage .. append end
 
end
 
 
return tbl
 
end
 
 
 
function weapon.printInfobox(frame)
 
return frame:expandTemplate(weapon.getInfoboxTemplate(frame))
 
 
end
 
end
  
 
return weapon
 
return weapon

Please note that all contributions to Zero-K are considered to be released under the Creative Commons Attribution-ShareAlike (see Zero-K:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)

Templates used on this page: