Module:Transcript list
Module documentation
This documentation is transcluded from Module:Transcript list/doc. [edit] [history] [purge]
Module:Transcript list's function main is invoked by Template:Transcript list.
Module:Transcript list is invoked by Template:Transcript list.
Generates a list of links to NPC pages for use on quest and event transcripts.
-- <pre>
local p = {}
function p.main(frame)
local args = frame:getParent().args
-- return tag
local ret = mw.html.create('div')
:addClass('seealso')
local params = {}
local ttl = 0
-- noplayer
local hasplayer = true
-- collect and count arguments
for _, v in ipairs(args) do
if string.lower(v) == 'noplayer' then
hasplayer = false
elseif string.lower(v) ~= 'player' then
ttl = ttl + 1
table.insert(params,v)
end
end
-- increase count if player
if hasplayer then
ttl = ttl + 1
end
-- main return text
ret:wikitext('This transcript involves dialogue with ')
-- for all arguments
for i, v in ipairs(params) do
-- add links
if i < ttl and ttl > 1 then
ret:wikitext('[['..v..']]')
-- if last link
elseif i == ttl then
-- if only link
if ttl == 1 then
ret:wikitext('[['..v..']]')
-- if final link
else
ret:wikitext(' and [['..v..']]')
end
end
-- if more to come, add commas
if i < ttl and ttl > 2 then
ret:wikitext(', ')
end
end
-- add player
if hasplayer then
if ttl == 1 then
ret:wikitext('[[Player character|the player]]')
else
ret:wikitext(' and [[Player character|the player]]')
end
end
-- period
ret:wikitext('.')
-- transcript npcs property
if mw.title.getCurrentTitle().namespace == 120 then
smw = {}
for _, v in ipairs(params) do
table.insert(smw,string.match(v, "[^\|]+"))
end
-- if hasplayer then
-- table.insert(smw,'Player character')
-- end
mw.smw.set({['Transcript NPCs']=smw})
end
return ret
end
return p