Module:沙盒/盐棋/Sandbox
可在Module:沙盒/盐棋/Sandbox/doc创建此模块的帮助文档
--- module: Another Data
local mad = require 'Module:沙盒/盐棋/Sandbox1'
local lang = mw.language.getContentLanguage()
local p = {}
local function opt(format, value, default)
return value and format:format(tostring(value)) or default
end
local sectionCode = {unknown = 0, free = 1, archive = 2, mainstory = 3, sidestory = 4, collab = 5, single = 6}
local langJa = '<span lang="ja">-{%s}-</span>'
-- 不对song的id、title_localized、artist、date、set、version、difficulties存在性做检验
local function main(plat, frame)
local lSong = mad.listOf('songs', plat)
-- pack index
-- duration
-- version
local mid = {}
for _, song in ipairs(lSong) do
local id = song.id
local function input(...) return frame.args[mw.text.listToText({id, ...}, '.', '.')] end
if id ~= 'lasteternity' then
local query = mad.songQueryWrap(song)
local packItem = mad.packQueryWrap(song.set, plat)
local row = {sort = {sectionCode[packItem['section']], packItem['numero'], song.date}}
table.insert(mid, row)
table.insert(row, id)
local title = input '标题'
if not title then
local baseTitle = {query.titleName}
table.insert(baseTitle, query.title)
local titles = {'[[' .. table.concat(baseTitle, '|') .. ']]'}
table.insert(titles, opt(langJa, song.title_localized.ja))
table.insert(titles, song.title_localized['zh-Hans'])
table.insert(titles, opt('%s <span style=color:#822328>[Beyond]</span>', query['.difficulties.4?title_localized?en']))
title = table.concat(titles, '<br />')
end
table.insert(row, title)
table.insert(row, input '音乐家' or mw.ustring.gsub(song.artist, '[一-龠ぁ-ゔァ-ヴー々〆〤ヶ]+', function(v)
return langJa:format(v)
end))
table.insert(row, input '所属曲包' or packItem['name'])
local bpm = input 'BPM' or song.bpm_base
table.insert(row, (tonumber(song.bpm) ~= bpm and ('data-sort-value=%s|'):format(bpm) or '') .. song.bpm)
table.insert(row, input '时长' or ' - ')
if plat ~= 'ns' then
table.insert(row, song.version .. '.')
end
for idx, key in ipairs {'PST', 'PRS', 'FTR', 'BYD'} do
local rating = input('等级', key)
if not rating then
local difficulty = song.difficulties[idx]
rating = difficulty and difficulty.rating .. (difficulty.ratingPlus and '+' or '') or '/'
end
table.insert(row, rating)
end
end
end
table.sort(mid, function(a, b)
for i = 1, 3 do
local d = a.sort[i] - b.sort[i]
if d ~= 0 then return d < 0 end
end
return false
end)
local res = {}
local template = '|-\n|[[文件:Songs %s.jpg|75px]]' .. ('||%s'):rep(plat == 'ns' and 9 or 10)
for idx, value in ipairs(mid) do
res[idx] = template:format(unpack(value))
end
return table.concat(res, '\n')
end
function p.mobile(frame) return main('mobile', frame:getParent()) end
function p.ns(frame) return main('ns', frame:getParent()) end
return p