- Welcome to the Kancolle Wiki!
- If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord
Difference between revisions of "Module:Quotes"
Jump to navigation
Jump to search
m |
|||
Line 4: | Line 4: | ||
local templates = { | local templates = { | ||
header = [[{| class="wikitable typography-xl-optout" style="width:100%;" | header = [[{| class="wikitable typography-xl-optout" style="width:100%;" | ||
− | !Event | + | | style="width:10%;" !Event |
!Japanese | !Japanese | ||
!English | !English | ||
Line 10: | Line 10: | ||
footer = "|}", | footer = "|}", | ||
audio_file = "${ship}${suffix}-${line}.ogg", | audio_file = "${ship}${suffix}-${line}.ogg", | ||
+ | audio_button = [=[<span class="audio_button">[[Media:${audio_file}|Play]]</span>]=], | ||
first_row_style = [[style="border-top: 2px solid #aaa;"]], | first_row_style = [[style="border-top: 2px solid #aaa;"]], | ||
row = [=[|- ${style} | row = [=[|- ${style} | ||
− | | nowrap="nowrap" | | + | | nowrap="nowrap" |${audio_button}${line} |
| colspan="${ja_colspan}" | <span lang="ja" style="font-family: sans-serif;">${ja}</span> | | colspan="${ja_colspan}" | <span lang="ja" style="font-family: sans-serif;">${ja}</span> | ||
${en_cell}| ${note}]=], | ${en_cell}| ${note}]=], | ||
Line 32: | Line 33: | ||
templates.row, | templates.row, | ||
style = remodel == 0 and templates.first_row_style or "", | style = remodel == 0 and templates.first_row_style or "", | ||
− | audio_file = format{templates.audio_file, ship = args.ship, suffix = ({[0] = "", [1] = "Kai", [2] = "Kai2"})[remodel], line = line}, | + | audio_button = args.no_audio and "" or format{ |
+ | templates.audio_button, | ||
+ | audio_file = format{ | ||
+ | templates.audio_file, | ||
+ | ship = args.ship, | ||
+ | suffix = ({[0] = "", [1] = "Kai", [2] = "Kai2"})[remodel], | ||
+ | line = line | ||
+ | }, | ||
+ | }, | ||
line = line, | line = line, | ||
ja = ja or "", | ja = ja or "", |
Revision as of 01:39, 22 February 2016
Documentation for this module may be created at Module:Quotes/doc
local format = require('Module:StringInterpolation').format
local getArgs = require('Module:GetArgs')
local templates = {
header = [[{| class="wikitable typography-xl-optout" style="width:100%;"
| style="width:10%;" !Event
!Japanese
!English
!Note]],
footer = "|}",
audio_file = "${ship}${suffix}-${line}.ogg",
audio_button = [=[<span class="audio_button">[[Media:${audio_file}|Play]]</span>]=],
first_row_style = [[style="border-top: 2px solid #aaa;"]],
row = [=[|- ${style}
| nowrap="nowrap" |${audio_button}${line}
| colspan="${ja_colspan}" | <span lang="ja" style="font-family: sans-serif;">${ja}</span>
${en_cell}| ${note}]=],
}
local lines = {
"Introduction", "Library", "Secretary 1", "Secretary 2", "Secretary 3", "Idle", "Secretary Married", "Wedding",
"Looking At Scores", "Joining A Fleet", "Equipment 1", "Equipment 2", "Equipment 3", "Supply",
"Docking Minor", "Docking Major", "Docking Complete", "Construction",
"Returning From Sortie", "Starting A Sortie", "Battle Start", "Attack", "Night Battle", "Night Attack", "MVP",
"Minor Damage 1", "Minor Damage 2", "Major Damage", "Sunk",
}
function insertRow(result, remodel, args, line)
local remodel_string = remodel == 0 and "" or "/" .. remodel
local ja, en, note = args[line .. remodel_string], args[line .. remodel_string .. "/En"], args[line .. remodel_string .. "/Note"]
if remodel == 0 or ja or en or note then
table.insert(result, format{
templates.row,
style = remodel == 0 and templates.first_row_style or "",
audio_button = args.no_audio and "" or format{
templates.audio_button,
audio_file = format{
templates.audio_file,
ship = args.ship,
suffix = ({[0] = "", [1] = "Kai", [2] = "Kai2"})[remodel],
line = line
},
},
line = line,
ja = ja or "",
ja_colspan = ja and not en and "2" or "1",
en_cell = ja and not en and "" or "|" .. (en or "") .. "\n",
note = note or "",
})
end
end
local Quotes = {}
function Quotes.ShipQuotes(frame, args)
args = args or getArgs{frame = frame:getParent()}
local result = {}
table.insert(result, templates.header)
for _, line in pairs(lines) do
insertRow(result, 0, args, line)
insertRow(result, 1, args, line)
insertRow(result, 2, args, line)
end
table.insert(result, templates.footer)
return table.concat(result, "\n")
end
return Quotes