Module:CosmeticInfo
From MCC Island Wiki
More actions
This module uses info gathered from the API and stored in the data page to:
- greatly simplify creating pages for cosmetics via Template:Cosmetic
- generate the bulk of the Tradeable Cosmetics page
- output lists of cosmetics based on particular field values
It is also invoked by other modules, such as Module:CosmeticMachine and Module:CosmeticCrates.
local getArgs = require('Module:Arguments').getArgs
local cosmeticData = mw.loadData('Module:CosmeticInfo/Data')
if not cosmeticData then
return "Error: Unable to load data"
end
local typeData = mw.loadData("Module:CosmeticInfo/Type/Data")
local p = {}
local function getCosmetic(args)
return cosmeticData["cosmetics"][args.name]
end
local function formatGlyphs(description)
local glyphs = {
["<glyph:\"mcc:icon.tooltips.veteran\"> "] = "<br />[[File:Icon-Veteran.png|16px]] <span style=\"color: #52C8FF; font-weight: bold\">",
["<glyph:\"mcc:icon.tooltips.squidtek\"> "] = "<br />[[File:Icon-Squidtek.png|16px]] <span style=\"color: #52C8FF; font-weight: bold\">",
["<glyph:\"mcc:icon.info_blue\"> "] = "<br />[[File:Icon-Info-Blue.png|16px]] <span style=\"color: #55FF55; font-weight: bold\">",
}
local openSpan = false
for key, val in pairs(glyphs) do
if description:find(key) then
description = description:gsub(key, (openSpan and val or "</span>" .. val))
openSpan = true
end
end
return openSpan and (description .. "</span>") or description
end
local function getSimpleField(field)
return function(frame)
local args = getArgs(frame)
local cosmetic = getCosmetic(args)
return cosmetic and cosmetic[field]
end
end
local function isInAllowedCollection(allowedCollections)
return function(frame)
local args = getArgs(frame)
local cosmetic = getCosmetic(args)
return cosmetic and allowedCollections[cosmetic.collection]
end
end
function p.getDescription(frame)
local args = getArgs(frame)
local cosmetic = getCosmetic(args)
if not cosmetic then return "No data found" end
return formatGlyphs(cosmetic.description)
end
p.getCategory = getSimpleField("category")
p.getCollection = getSimpleField("collection")
p.getRarity = getSimpleField("rarity")
p.isColorable = getSimpleField("colorable")
p.getTrophiesAwarded = getSimpleField("trophies")
p.isBonusTrophies = getSimpleField("isBonusTrophies")
p.canBeDonated = getSimpleField("canBeDonated")
p.getGlobalNumberOwned = getSimpleField("globalNumberOwned")
function p.getType(frame)
local args = getArgs(frame)
return typeData[args.name]
end
p.isInCrateCollection = isInAllowedCollection({
["Oceanic"] = true,
["Mechanical"] = true,
["Natural"] = true,
["Magical"] = true
})
p.isInGamePassCollection = isInAllowedCollection({
["Battle Box"] = true,
["Dynaball"] = true,
["HITW"] = true,
["Parkour Warrior"] = true,
["Sky Battle"] = true,
["TGTTOS"] = true
})
function p.getLastUpdatedDate()
local lang = mw.language.getContentLanguage()
return lang:formatDate( 'd F Y, h:i a', '@' .. cosmeticData['last_updated'], false ) .. ' UTC'
end
function p.lastUpdatedIcon()
return string.format(
'<sup><abbr title="Last updated: %s" tabindex="0">ⓘ</abbr></sup>',
p.getLastUpdatedDate()
)
end
local function getOwnedNumber(raw)
raw = tostring(raw or "0"):gsub(",", ""):gsub("%+", "")
return tonumber(raw) or 0
end
local function sortCosmetics(list, order)
table.sort(list, function(a, b)
return order == "desc" and a.owned > b.owned or a.owned < b.owned
end)
end
local function formatCosmeticList(cosmetics)
local result = {}
for _, c in ipairs(cosmetics) do
table.insert(result, string.format("* %s (%s)", c.name, c.display or c.owned))
end
return table.concat(result, "\n")
end
p.sortListByNumberOwned = function(frame)
local args = getArgs(frame)
local names = mw.text.split(args.names or "", ",%s*")
local order = args.order or "asc"
local cosmetics = {}
for _, name in ipairs(names) do
local data = cosmeticData["cosmetics"][name]
if data and data.globalNumberOwned then
table.insert(cosmetics, {
name = name,
owned = getOwnedNumber(data.globalNumberOwned),
display = data.globalNumberOwned
})
end
end
sortCosmetics(cosmetics, order)
return formatCosmeticList(cosmetics)
end
p.getNumberOwnedListByFieldValue = function(frame)
local args = getArgs(frame)
local field = args.field
local target = args.value
local order = args.order or "asc"
local filterValue = ({
["true"] = true,
["false"] = false
})[target] or target
local filtered = {}
for name, data in pairs(cosmeticData["cosmetics"]) do
if data[field] == filterValue and data.globalNumberOwned then
table.insert(filtered, {
name = name,
owned = getOwnedNumber(data.globalNumberOwned),
display = data.globalNumberOwned
})
end
end
sortCosmetics(filtered, order)
return formatCosmeticList(filtered)
end
return p