Module:Damage: Difference between revisions
From Space Station 14 Wiki
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
local damage_types_json = mw.loadJsonData("Module:Damage/damage types.json") | local damage_types_json = mw.loadJsonData("Module:Damage/damage types.json") | ||
local damage_groups_json = mw.loadJsonData("Module:Damage/damage groups.json") | |||
-- ========================= | |||
local function assert_not_nil(value, error_message) | local function assert_not_nil(value, error_message) | ||
Line 12: | Line 15: | ||
end | end | ||
end | end | ||
end | |||
local function numeric_table_length(t) | |||
local count = 0 | |||
for _ in ipairs(t) do count = count + 1 end | |||
return count | |||
end | end | ||
-- ========================= | -- ========================= | ||
-- | -- Lookup a field in a json table by key. | ||
local function | -- Json tables are assumed to be tables with lowercase keys. The `key` is automatically lowercased for the lookup. | ||
local result = | -- If a value is a string, it's treated as an alias (another key), triggering a new lookup. | ||
-- | |||
-- Returns the value by the specified key, or by aliased key if the value was an alias. | |||
-- If value doesn't exist, returns `nil`. | |||
local function lookup_json_table(t, key) | |||
local result = t[string.lower(key)] | |||
if type(result) == "string" then | if type(result) == "string" then | ||
-- alias. lookup actual definition. | -- alias. lookup actual definition. | ||
return | return t[result] | ||
else | else | ||
return result | return result | ||
Line 27: | Line 41: | ||
end | end | ||
-- | -- ====================== | ||
-- Generates a label element. | |||
-- @param class Wrapper element class. | |||
-- @param label Label. | |||
-- @param amount [Optional] Amount. | |||
-- @param color [Optional] Text color. | |||
-- @param outline_color [Optional] Text outline color. | |||
local function generate_label_element(class, label, amount, color, outline_color) | |||
local label_wrapper_el = mw.html.create('span') | local label_wrapper_el = mw.html.create('span') | ||
:addClass( | :addClass(class) | ||
local label_el = mw.html.create('span') | local label_el = mw.html.create('span') | ||
:addClass("label") | :addClass("label") | ||
:wikitext("<b>" .. | :wikitext("<b>" .. label .. "</b>") | ||
local amount_el = mw.html.create('span') | local amount_el = mw.html.create('span') | ||
Line 74: | Line 74: | ||
return label_wrapper_el:allDone() | return label_wrapper_el:allDone() | ||
end | |||
-- Generate a damage type element. | |||
-- @param damage_type Damage type. | |||
-- @param damage_type_lookup Lookup result for the damage type. | |||
-- @param amount [Optional] Optional amount. | |||
local function generate_damage_type(damage_type, damage_type_lookup, amount) | |||
local display = damage_type_lookup.display | |||
local color = damage_type_lookup.color | |||
local outline_color = damage_type_lookup["outline color"] | |||
if not display then | |||
error("failed to generate a damage type: damage type '" .. damage_type .. "' is defined, but it does not have a 'display' property") | |||
end | |||
return generate_label_element("damage-type", display, amount, color, outline_color) | |||
end | |||
local function generate_damage_group(damage_group, damage_group_lookup, amount) | |||
local display = damage_group_lookup.display | |||
local damage_types = damage_group_lookup["damage types"] | |||
local color = damage_group_lookup.color | |||
local outline_color = damage_group_lookup["outline color"] | |||
if not display then | |||
error("failed to generate a damage group: damage group '" .. damage_group .. "' is defined, but it does not have a 'display' property") | |||
elseif not damage_types then | |||
error("failed to generate a damage group: damage group '" .. damage_group .. "' is defined, but it does not have a 'damage types' property") | |||
end | |||
local wrapper_el = mw.html.create('span') | |||
:addClass("damage-group-wrapper") | |||
local damage_group_el = generate_label_element("damage-group", display, amount, color, outline_color) | |||
wrapper_el:node(damage_group_el) | |||
wrapper_el:wikitext(" (") | |||
local damage_types_count = numeric_table_length(damage_types) | |||
for i, damage_type in ipairs(damage_types) do | |||
wrapper_el:node( | |||
generate_damage_type(damage_type, lookup_json_table(damage_types_json, damage_type), amount) | |||
) | |||
-- add delim after all but last el | |||
if i ~= damage_types_count then | |||
wrapper_el:wikitext(", ") | |||
end | |||
end | |||
wrapper_el:wikitext(")") | |||
return wrapper_el:allDone() | |||
end | |||
-- Generates a term element with a tooltip and/or a link. | |||
function p.main(frame) | |||
local args = getArgs(frame) | |||
local damage_type_or_group = args[1] | |||
assert_not_nil(damage_type_or_group, "failed to generate a damage label: damage type/group not provided") | |||
local amount = args[2] | |||
-- ================== | |||
-- if damage group, format as follows: <group> (<type 1>, <type 2>, <type 3>) | |||
-- if damage type, format as follows: <amount> <type> | |||
local damage_group_lookup = lookup_json_table(damage_groups_json, damage_type_or_group); | |||
if damage_group_lookup then | |||
return generate_damage_group(damage_type_or_group, damage_group_lookup, amount) | |||
end | |||
local damage_type_lookup = lookup_json_table(damage_types_json, damage_type_or_group); | |||
if damage_type_lookup then | |||
return generate_damage_type(damage_type_or_group, damage_type_lookup, amount) | |||
end | |||
error("failed to generate a damage label: unknown damage type/group '" .. damage_type_or_group .. "'") | |||
end | end | ||
return p | return p |
Revision as of 13:33, 26 March 2025
Module documentation
|
---|
View or edit this documentation • (about module documentation) |
Uses JSON data
This module uses JSON data pages:
Implements {{Damage}}.
local p = {}
local getArgs = require('Module:Arguments').getArgs
local damage_types_json = mw.loadJsonData("Module:Damage/damage types.json")
local damage_groups_json = mw.loadJsonData("Module:Damage/damage groups.json")
-- =========================
local function assert_not_nil(value, error_message)
if value == nil then
if error_message == nil then
error("value is nil")
else
error(error_message)
end
end
end
local function numeric_table_length(t)
local count = 0
for _ in ipairs(t) do count = count + 1 end
return count
end
-- =========================
-- Lookup a field in a json table by key.
-- Json tables are assumed to be tables with lowercase keys. The `key` is automatically lowercased for the lookup.
-- If a value is a string, it's treated as an alias (another key), triggering a new lookup.
--
-- Returns the value by the specified key, or by aliased key if the value was an alias.
-- If value doesn't exist, returns `nil`.
local function lookup_json_table(t, key)
local result = t[string.lower(key)]
if type(result) == "string" then
-- alias. lookup actual definition.
return t[result]
else
return result
end
end
-- ======================
-- Generates a label element.
-- @param class Wrapper element class.
-- @param label Label.
-- @param amount [Optional] Amount.
-- @param color [Optional] Text color.
-- @param outline_color [Optional] Text outline color.
local function generate_label_element(class, label, amount, color, outline_color)
local label_wrapper_el = mw.html.create('span')
:addClass(class)
local label_el = mw.html.create('span')
:addClass("label")
:wikitext("<b>" .. label .. "</b>")
local amount_el = mw.html.create('span')
:addClass("amount")
:wikitext(amount and amount .. " " or "")
label_wrapper_el:node(amount_el)
label_wrapper_el:node(label_el)
if color then
label_el:css("color", color);
end
if outline_color then
label_el:css("--shadow-col", outline_color);
label_el:css("text-shadow", "-1px -1px 0 var(--shadow-col), 1px -1px 0 var(--shadow-col), -1px 1px 0 var(--shadow-col), 1px 1px 0 var(--shadow-col)");
end
return label_wrapper_el:allDone()
end
-- Generate a damage type element.
-- @param damage_type Damage type.
-- @param damage_type_lookup Lookup result for the damage type.
-- @param amount [Optional] Optional amount.
local function generate_damage_type(damage_type, damage_type_lookup, amount)
local display = damage_type_lookup.display
local color = damage_type_lookup.color
local outline_color = damage_type_lookup["outline color"]
if not display then
error("failed to generate a damage type: damage type '" .. damage_type .. "' is defined, but it does not have a 'display' property")
end
return generate_label_element("damage-type", display, amount, color, outline_color)
end
local function generate_damage_group(damage_group, damage_group_lookup, amount)
local display = damage_group_lookup.display
local damage_types = damage_group_lookup["damage types"]
local color = damage_group_lookup.color
local outline_color = damage_group_lookup["outline color"]
if not display then
error("failed to generate a damage group: damage group '" .. damage_group .. "' is defined, but it does not have a 'display' property")
elseif not damage_types then
error("failed to generate a damage group: damage group '" .. damage_group .. "' is defined, but it does not have a 'damage types' property")
end
local wrapper_el = mw.html.create('span')
:addClass("damage-group-wrapper")
local damage_group_el = generate_label_element("damage-group", display, amount, color, outline_color)
wrapper_el:node(damage_group_el)
wrapper_el:wikitext(" (")
local damage_types_count = numeric_table_length(damage_types)
for i, damage_type in ipairs(damage_types) do
wrapper_el:node(
generate_damage_type(damage_type, lookup_json_table(damage_types_json, damage_type), amount)
)
-- add delim after all but last el
if i ~= damage_types_count then
wrapper_el:wikitext(", ")
end
end
wrapper_el:wikitext(")")
return wrapper_el:allDone()
end
-- Generates a term element with a tooltip and/or a link.
function p.main(frame)
local args = getArgs(frame)
local damage_type_or_group = args[1]
assert_not_nil(damage_type_or_group, "failed to generate a damage label: damage type/group not provided")
local amount = args[2]
-- ==================
-- if damage group, format as follows: <group> (<type 1>, <type 2>, <type 3>)
-- if damage type, format as follows: <amount> <type>
local damage_group_lookup = lookup_json_table(damage_groups_json, damage_type_or_group);
if damage_group_lookup then
return generate_damage_group(damage_type_or_group, damage_group_lookup, amount)
end
local damage_type_lookup = lookup_json_table(damage_types_json, damage_type_or_group);
if damage_type_lookup then
return generate_damage_type(damage_type_or_group, damage_type_lookup, amount)
end
error("failed to generate a damage label: unknown damage type/group '" .. damage_type_or_group .. "'")
end
return p