Module:沙盒/盐棋/Sandbox:修订间差异
小 (模板试验) |
小 (version support) |
||
第6行: | 第6行: | ||
local function opt(format, value, default) | local function opt(format, value, default) | ||
return value and format:format(tostring(value)) or default | return value and format:format(tostring(value)) or default | ||
end | |||
local versions = {date = {}, name = {}} | |||
local function verQuery(mDate) | |||
local dDate = tonumber(lang:formatDate('Ynj', '@' .. mDate)) | |||
local dates = versions.date | |||
local l, r = 1, #dates | |||
while l <= r do | |||
local index = math.floor((l + r) / 2) | |||
if dDate == dates[index] then | |||
return versions.name[index] | |||
elseif dDate < dates[index] then | |||
r = index - 1 | |||
else | |||
l = index + 1 | |||
end | |||
end | |||
return '?' | |||
end | end | ||
第13行: | 第31行: | ||
local function main(plat, frame) | local function main(plat, frame) | ||
local lSong = mad.listOf('songs', plat) | local lSong = mad.listOf('songs', plat) | ||
local mid = {} | local mid = {} | ||
for _, song in ipairs(lSong) do | for _, song in ipairs(lSong) do | ||
local id = song.id | local id = song.id | ||
local function input(...) return frame.args[ | local function input(...) return frame.args[table.concat({id, ...}, '.')] end | ||
if id ~= 'lasteternity' then | if id ~= 'lasteternity' then | ||
local query = mad.songQueryWrap(song) | local query = mad.songQueryWrap(song) | ||
第38行: | 第53行: | ||
end | end | ||
table.insert(row, title) | table.insert(row, title) | ||
table.insert(row, input '音乐家' or mw.ustring.gsub(song.artist, '[一-龠ぁ-ゔァ-ヴー々〆〤ヶ]+', function(v) | table.insert(row, input '音乐家' or mw.ustring.gsub(song.artist, '[一-龠ぁ-ゔァ-ヴー々〆〤ヶ]+', function(v) return langJa:format(v) end)) | ||
table.insert(row, input '所属曲包' or packItem['name']) | table.insert(row, input '所属曲包' or packItem['name']) | ||
local bpm = input 'BPM' or song.bpm_base | local bpm = input 'BPM' or song.bpm_base | ||
第46行: | 第59行: | ||
table.insert(row, input '时长' or ' - ') | table.insert(row, input '时长' or ' - ') | ||
if plat ~= 'ns' then | if plat ~= 'ns' then | ||
table.insert(row, song.version .. '.') | local version = input '收录版本' or verQuery(song.date) | ||
table.insert(row, song.version .. '.' .. version) | |||
end | end | ||
for idx, key in ipairs {'PST', 'PRS', 'FTR', 'BYD'} do | for idx, key in ipairs {'PST', 'PRS', 'FTR', 'BYD'} do | ||
第73行: | 第87行: | ||
end | end | ||
function p.mobile(frame) return main('mobile', frame:getParent()) end | function p.mobile(frame) | ||
for record in mw.text.gsplit(frame.args.versions) do | |||
local date, name = record:match '(%d+):(.*)' | |||
table.insert(versions.date, tonumber(date)) | |||
table.insert(versions.name, name) | |||
end | |||
return main('mobile', frame:getParent()) | |||
end | |||
function p.ns(frame) return main('ns', frame:getParent()) end | function p.ns(frame) return main('ns', frame:getParent()) end | ||
return p | return p |
2024年2月17日 (六) 22:38的版本
可在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 versions = {date = {}, name = {}}
local function verQuery(mDate)
local dDate = tonumber(lang:formatDate('Ynj', '@' .. mDate))
local dates = versions.date
local l, r = 1, #dates
while l <= r do
local index = math.floor((l + r) / 2)
if dDate == dates[index] then
return versions.name[index]
elseif dDate < dates[index] then
r = index - 1
else
l = index + 1
end
end
return '?'
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)
local mid = {}
for _, song in ipairs(lSong) do
local id = song.id
local function input(...) return frame.args[table.concat({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
local version = input '收录版本' or verQuery(song.date)
table.insert(row, song.version .. '.' .. 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)
for record in mw.text.gsplit(frame.args.versions) do
local date, name = record:match '(%d+):(.*)'
table.insert(versions.date, tonumber(date))
table.insert(versions.name, name)
end
return main('mobile', frame:getParent())
end
function p.ns(frame) return main('ns', frame:getParent()) end
return p