Module:沙盒/盐棋/Sandbox

来自Arcaea中文维基
< Module:沙盒
盐棋讨论 | 贡献2024年2月18日 (日) 09:26的版本 (version support)

可在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)) - 1
	local dates = versions.date
	local l, r = 1, #dates
	while l < r do
		local m = math.floor((l + r) / 2)
		if dates[m] < dDate then
			l = m + 1
		else
			r = m
		end
	end
	return versions.name[l]
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) or '?'
				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, '%s') 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