Module:Infobox NPC: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(4 intermediate revisions by the same user not shown) | |||
Line 72: | Line 72: | ||
:pad(20) | :pad(20) | ||
if ret:paramDefined('release') then | |||
ret:addRow{ | ret:addRow{ | ||
{ tag = 'th', content = 'Released', colspan = '8' }, | { tag = 'th', content = 'Released', colspan = '8' }, | ||
{ tag = 'argd', content = 'release', colspan = '12' } | { tag = 'argd', content = 'release', colspan = '12' } | ||
} | } | ||
end | |||
if ret:paramDefined('removal') then | if ret:paramDefined('removal') then | ||
Line 82: | Line 85: | ||
{ tag = 'argd', content = 'removal', colspan = '12' } | { tag = 'argd', content = 'removal', colspan = '12' } | ||
} | } | ||
end | |||
if ret:paramDefined('aka') then | if ret:paramDefined('aka') then | ||
Line 89: | Line 92: | ||
{ tag = 'argd', content = 'aka', colspan = '12' } | { tag = 'argd', content = 'aka', colspan = '12' } | ||
} | } | ||
end | |||
if ret:paramDefined('level') then | if ret:paramDefined('level') then | ||
ret:addRow{ | ret:addRow{ | ||
{ tag = 'th', content = ' | { tag = 'th', content = 'Combat level', colspan = '8' }, | ||
{ tag = 'argd', content = 'level', colspan = '12' } | { tag = 'argd', content = 'level', colspan = '12' } | ||
} | } | ||
Line 106: | Line 109: | ||
if ret:paramDefined('race') then | if ret:paramDefined('race') then | ||
ret:addRow{ | ret:addRow{ | ||
{ tag = 'th', content = ' | { tag = 'th', content = 'Race', colspan = '8' }, | ||
{ tag = 'argd', content = 'race', colspan = '12' } | { tag = 'argd', content = 'race', colspan = '12' } | ||
} | } | ||
Line 113: | Line 116: | ||
if ret:paramDefined('quest') then | if ret:paramDefined('quest') then | ||
ret:addRow{ | ret:addRow{ | ||
{ tag = 'th', content = ' | { tag = 'th', content = 'Quest', colspan = '8' }, | ||
{ tag = 'argd', content = 'quest', colspan = '12' } | { tag = 'argd', content = 'quest', colspan = '12' } | ||
} | } | ||
Line 119: | Line 122: | ||
ret:addRow{ | ret:addRow{ | ||
{ tag = 'th', content = ' | { tag = 'th', content = 'Location', colspan = '8' }, | ||
{ tag = 'argd', content = 'location', colspan = '12' } | { tag = 'argd', content = 'location', colspan = '12' } | ||
} | } | ||
Line 126: | Line 129: | ||
if ret:paramDefined('shop') then | if ret:paramDefined('shop') then | ||
ret:addRow{ | ret:addRow{ | ||
{ tag = 'th', content = ' | { tag = 'th', content = 'Shop', colspan = '8' }, | ||
{ tag = 'argd', content = 'shop', colspan = '12' } | { tag = 'argd', content = 'shop', colspan = '12' } | ||
} | } | ||
Line 133: | Line 136: | ||
if ret:paramDefined('gender') then | if ret:paramDefined('gender') then | ||
ret:addRow{ | ret:addRow{ | ||
{ tag = 'th', content = ' | { tag = 'th', content = 'Gender', colspan = '8' }, | ||
{ tag = 'argd', content = 'gender', colspan = '12' } | { tag = 'argd', content = 'gender', colspan = '12' } | ||
} | } | ||
Line 140: | Line 143: | ||
if ret:paramDefined('options') then | if ret:paramDefined('options') then | ||
ret:addRow{ | ret:addRow{ | ||
{ tag = 'th', content = ' | { tag = 'th', content = 'Options', colspan = '8' }, | ||
{ tag = 'argd', content = 'options', colspan = '12' } | { tag = 'argd', content = 'options', colspan = '12' } | ||
} | } | ||
Line 146: | Line 149: | ||
ret:addRow{ | ret:addRow{ | ||
{ tag = 'th', content = ' | { tag = 'th', content = 'Examine', colspan = '8' }, | ||
{ tag = 'argd', content = 'examine', colspan = '12' } | { tag = 'argd', content = 'examine', colspan = '12' } | ||
} | } | ||
Line 216: | Line 219: | ||
function addcategories(args, catargs) | function addcategories(args, catargs) | ||
local ret = { ' | local ret = { '' } | ||
-- Add the associated category if the parameter has content | -- Add the associated category if the parameter has content | ||
local defined_args = { | local defined_args = { | ||
aka = ' | aka = '', | ||
shop = ' | shop = '', | ||
quest = ' | quest = '' | ||
} | } | ||
for n, v in pairs(defined_args) do | for n, v in pairs(defined_args) do | ||
Line 232: | Line 235: | ||
-- Add the associated category if the parameter doesn't have content | -- Add the associated category if the parameter doesn't have content | ||
local notdefined_args = { | local notdefined_args = { | ||
image = ' | image = 'e', | ||
donator = ' | donator = '', | ||
release = ' | release = '', | ||
examine = ' | examine = '', | ||
update = ' | update = '', | ||
id = ' | id = '', | ||
map = ' | map = '', | ||
options = ' | options = '', | ||
} | } | ||
for n, v in pairs(notdefined_args) do | for n, v in pairs(notdefined_args) do |
Latest revision as of 17:12, 10 May 2024
Documentation for this module may be created at Module:Infobox NPC/doc
--------------------------
-- Module for [[Template:Infobox NPC]]
------------------------
local p = {}
local onmain = require('Module:Mainonly').on_main
local paramtest = require('Module:Paramtest')
local infobox = require('Module:Infobox')
function p.main(frame)
local args = frame:getParent().args
local ret = infobox.new(args)
ret:defineParams{
{ name = 'name', func = 'name' },
{ name = 'image', func = 'image' },
{ name = 'image_smw', func = { name = image_smw, params = { 'image' }, flag = 'p' } },
{ name = 'release', func = 'release' },
{ name = 'removal', func = 'removal' },
{ name = 'aka', func = 'has_content' },
{ name = 'level', func = 'has_content' },
{ name = 'donator', func = 'has_content' },
{ name = 'race', func = 'has_content' },
{ name = 'quest', func = 'has_content' },
{ name = 'location', func = 'has_content' },
{ name = 'shop', func = 'has_content' },
{ name = 'gender', func = 'has_content' },
{ name = 'options', func = 'has_content' },
{ name = 'examine', func = 'has_content' },
{ name = 'map', func = maparg },
{ name = 'usesinfobox', func = { name = tostring, params = { 'NPC' }, flag = 'r' } },
{ name = 'id', func = 'has_content' },
{ name = 'id_smw', func = { name = idsmw, params = { 'id' }, flag = 'p' } },
}
ret:defineLinks({ hide = true })
local smw_mapping = {
release = 'Release date',
image_smw = 'Image',
id_smw = 'NPC ID',
examine = 'Examine',
donator = 'Is donators only',
location = 'NPC location',
usesinfobox = 'Uses infobox',
}
local smw_all_mapping = {}
for param, property_name in pairs(smw_mapping) do
smw_all_mapping[param] = 'All '..property_name
end
ret:useSMWSubobject(smw_mapping)
ret:useSMWOne(smw_all_mapping)
ret:create()
ret:cleanParams()
ret:customButtonPlacement(true)
ret:addButtonsCaption()
ret:defineName('Infobox NPC')
ret:addClass('infobox-npc')
ret:addRow{
{ tag = 'argh', content = 'name', class='infobox-header', colspan = '20' }
}
:pad(20)
:addRow{
{ tag = 'argd', content = 'image', colspan = '20', class = 'infobox-full-width-content' }
}
:pad(20)
if ret:paramDefined('release') then
ret:addRow{
{ tag = 'th', content = 'Released', colspan = '8' },
{ tag = 'argd', content = 'release', colspan = '12' }
}
end
if ret:paramDefined('removal') then
ret:addRow{
{ tag = 'th', content = 'Removal', colspan = '8' },
{ tag = 'argd', content = 'removal', colspan = '12' }
}
end
if ret:paramDefined('aka') then
ret:addRow{
{ tag = 'th', content = 'Also called', colspan = '8' },
{ tag = 'argd', content = 'aka', colspan = '12' }
}
end
if ret:paramDefined('level') then
ret:addRow{
{ tag = 'th', content = 'Combat level', colspan = '8' },
{ tag = 'argd', content = 'level', colspan = '12' }
}
end
if ret:paramDefined('donator') then
ret:addRow{
{ tag = 'th', content = 'Donator', colspan = '8' },
{ tag = 'argd', content = 'donator', colspan = '12' }
}
if ret:paramDefined('race') then
ret:addRow{
{ tag = 'th', content = 'Race', colspan = '8' },
{ tag = 'argd', content = 'race', colspan = '12' }
}
end
if ret:paramDefined('quest') then
ret:addRow{
{ tag = 'th', content = 'Quest', colspan = '8' },
{ tag = 'argd', content = 'quest', colspan = '12' }
}
end
ret:addRow{
{ tag = 'th', content = 'Location', colspan = '8' },
{ tag = 'argd', content = 'location', colspan = '12' }
}
end
if ret:paramDefined('shop') then
ret:addRow{
{ tag = 'th', content = 'Shop', colspan = '8' },
{ tag = 'argd', content = 'shop', colspan = '12' }
}
end
if ret:paramDefined('gender') then
ret:addRow{
{ tag = 'th', content = 'Gender', colspan = '8' },
{ tag = 'argd', content = 'gender', colspan = '12' }
}
end
if ret:paramDefined('options') then
ret:addRow{
{ tag = 'th', content = 'Options', colspan = '8' },
{ tag = 'argd', content = 'options', colspan = '12' }
}
end
ret:addRow{
{ tag = 'th', content = 'Examine', colspan = '8' },
{ tag = 'argd', content = 'examine', colspan = '12' }
}
ret:pad(20)
local map_defined = ret:paramGrep('map', function(x) return (x or 'N/A') ~= 'N/A' end)
if map_defined then
ret:addRow{
{ tag = 'th', content = 'Map', class = 'infobox-subheader', colspan = '20' }
}
:addRow{
{ tag = 'argd', content = 'map', colspan = '20', class = 'infobox-full-width-content infobox-image' }
}
end
ret:addRow{
{ tag = 'th', content = 'Advanced data', class = 'infobox-subheader', colspan = '20' },
meta = {addClass = 'advanced-data'}
}
:pad(20, 'advanced-data')
:addRow{
{ tag = 'th', content = 'NPC ID', colspan = '8' },
{ tag = 'argd', content = 'id', colspan = '12' },
meta = {addClass = 'advanced-data'}
}
:pad(20, 'advanced-data')
if onmain() then
local a1 = ret:param('all')
local a2 = ret:categoryData()
ret:wikitext(addcategories(a1, a2))
end
return ret:tostring()
end
function maparg(arg)
if not infobox.isDefined(arg) then
return nil
end
if string.lower(arg) == 'no' then
return 'N/A'
end
return arg
end
function image_smw(arg)
local _img = string.match(arg, "File:.-%.png")
return _img
end
local idsmw_nil_ids = {
removed = true,
no = true
}
function idsmw(id)
if infobox.isDefined(id) then
if idsmw_nil_ids[string.lower(tostring(id))] then
return nil
end
local r = string.gsub(id, ',', '&&SPLITPOINT&&')
return r
end
return nil
end
function addcategories(args, catargs)
local ret = { '' }
-- Add the associated category if the parameter has content
local defined_args = {
aka = '',
shop = '',
quest = ''
}
for n, v in pairs(defined_args) do
if catargs[n] and catargs[n].one_defined then
table.insert(ret, v)
end
end
-- Add the associated category if the parameter doesn't have content
local notdefined_args = {
image = 'e',
donator = '',
release = '',
examine = '',
update = '',
id = '',
map = '',
options = '',
}
for n, v in pairs(notdefined_args) do
if catargs[n] and catargs[n].all_defined == false then
table.insert(ret, v)
end
end
local cat_map = {
-- Parameters that have text
-- map a category to a value
matches = {
donator = { yes = 'Donators\' NPCs', no = 'Free-to-play NPCs' },
}
}
-- searches
for n, v in pairs(cat_map.matches) do
for m, w in pairs(v) do
if args[n] then
if string.lower(tostring(args[n].d) or '') == m then
table.insert(ret, w)
end
if args[n].switches then
for _, x in ipairs(args[n].switches) do
if string.lower(tostring(x)) == m then
table.insert(ret, w)
end
end
end
end
end
end
-- combine table and format category wikicode
for i, v in ipairs(ret) do
if (v ~= '') then
ret[i] = string.format('[[Category:%s]]', v)
end
end
return table.concat(ret, '')
end
return p