Module:Video game release
require('Module:No globals')
local getArgs = require('Module:Arguments').getArgs local cd = require('Module:CountryData') local p = {}
local labels = {
['NA'] = "NA", ['EU'] = "EU", ['EUR'] = "EU", ['AU'] = "AU", ['AUS'] = "AU", ['PAL'] = "PAL", ['INT'] = "INT", ['SEA'] = "SEA", ['AS'] = "AS", ['SA'] = "SA", ['OC'] = "OC", ['WW'] = "WW", ['?'] = "?"
}
local function getLocalLabel(alias) local label = labels[string.upper(alias)]
return label end
local countryData = {}; -- Used to store country data to avoid the need of repeated calls to Module:CountryData. This saves a little time if the same abbreviation appears multiple times in the template.
local function getCountryData(frame, alias) local ualias = string.upper(alias)
if(countryData[ualias] == nil) then local cdtable = cd.gettable(frame,alias,{}) countryData[ualias] = cdtable['alias'] end
return countryData[ualias] end
function p.main(frame) local args = getArgs(frame)
local out = "
- "
-- Old syntax "Two parameter region" use case, where param 1 is an article, param 2 is a label, and param 3 is the date. We assume this case if argument 4 is nil.
if(args[3] ~= nil and args[4] == nil) then
out = out .. "
- [[" if(args[1] ~= nil) then out = out .. args[1] end out = out .. "|" if(args[2] ~= nil) then out = out .. args[2] end out = out .. "]]: " .. args[3] .. " " -- Old syntax "Blank region" use case, where param 1 is empty, and param 2 is the date. elseif(args[1] == nil and args[2] ~= nil) then out = out .. "
- " .. args[2] .. " " -- Normal use cases, region/date pairs in 1/2, 3/4, 5/6, etc. else local i = 1 local j = 2 while(args[i] and args[j]) do local label = getLocalLabel(args[i]); -- Didn't find a local label? Check for country data. if(label == nil) then label = getCountryData(frame, args[i]) -- Found something? Build a sitelink with it. if(label ~= nil) then label = "" .. args[i] .. "" else label = args[i] end end out = out .. "
- " .. label .. ": " .. args[j] .. " " i = i + 2 j = j + 2 end end out = out .. "
"
-- Check for named parameters
local parameterMsg = "" if(frame:preprocess( "3077" ) == "") then -- Preview?
parameterMsg = "
"
end for k, v in pairs(args) do if(type(k) ~= 'number') then local msg = parameterMsg:gsub('_VALUE_', k) out = out .. msg end end
return out
end
return p