Module:沙盒/Economy666/SongCollectionMulti

来自Arcaea中文维基

可在Module:沙盒/Economy666/SongCollectionMulti/doc创建此模块的帮助文档

local mad = require 'Module:AnotherData'
local lang = mw.language.getContentLanguage()
local frame = mw.getCurrentFrame()
local p = {}

local dates, versionNames = {}, {}
local function verQuery(sec)
	local date = tonumber(lang:formatDate('ymd', '@' .. sec)) - 1
	if date > dates[#dates] then return '@' end
	local l, r = 1, #dates
	while l < r do
		local m = math.floor((l + r) / 2)
		if dates[m] < date then
			l = m + 1
		else
			r = m
		end
	end
	return versionNames[l]
end

local function otherTitles(song)
	local res = {}
	local titleJa = song.title_localized.ja
	if titleJa then table.insert(res, ('<span lang="ja">-{%s}-</span>'):format(titleJa)) end
	table.insert(res, song.title_localized['zh-Hans'])
	for _, diff in ipairs(song.difficulties) do
		if diff.title_localized then
			table.insert(res, diff.title_localized.en .. ' ' .. mad.color {
				rc = diff.ratingClass,
				txt = ('[%s]'):format(({[3] = 'Beyond'})[diff.ratingClass])
			})
		end
	end
	return res
end

local function artistLink(artist)
	
end

local sectionCode = {unknown = 0, free = 1, archive = 2, mainstory = 3, sidestory = 4, collab = 5, single = 6}
local function main(args, durArgs)
	local view = {}
	-- local plat = 'mobile'
	-- 不对song下述提及的字段存在性做检验
	
	local multi_song={}
	local ns_song={}
	local multi_id={}
	local mobile_id={}
	local ns_id={}
	for _, song in ipairs(mad.listOf('songs', 'mobile')) do
		mobile_id[song.id] = 1
		multi_id[song.id] = 1
		multi_song[song.id] = song
	end
	for _, song in ipairs(mad.listOf('songs', 'ns')) do
		ns_id[song.id] = 1
		ns_song[song.id] = song
		if not multi_id[song.id] then
			multi_id[song.id] = 1
			multi_song[song.id] = song
		end
	end
	
	for _, song in pairs(multi_song) do
		local id = song.id
		local packItem = mad.packQueryWrap(song.set, 'mobile')
		local data = setmetatable({}, {__index = table})
		local function input(...) return args[table.concat({id, ...}, '.')] end
		if id ~= 'lasteternity' then
			table.insert(view, {
				data = data,
				sort = {sectionCode[packItem['section']], packItem['numero'], song.date}
			})
		end
		
		local display_plat = ''
		if mobile_id[song.id] then
		    display_plat = display_plat .. '[[文件:Icon Smartphone.png|16px|link=曲目列表 (移动版)]]'
		end
		if ns_id[song.id] then
		    display_plat = display_plat .. '[[文件:Icon Nintendo switch.png|16px|link=曲目列表 (Nintendo Switch版)]]'
		end
		if display_plat == '' then
		    display_plat = '无'
		end
		data:insert(display_plat)
		
		data:insert(id)
		-- otherTitles
		data:insert(input '标题' or table.concat({'[[' .. mad.linkTitle(song) .. ']]', unpack(otherTitles(song))}, '<br>'))
		
		local cal = mw.loadJsonData 'User:Economy666/ComplexArtistsList.json'
		local artist = cal[string.gsub(song.artist, ' ' , '') ]
		if not artist then
			artist = mw.ustring.gsub(
				song.artist, '[一-龠ぁ-ゔァ-ヴー々〆〤ヶ]+',
				function(v) return ('<span lang="ja">-{%s}-</span>'):format(v) end
			)
			artist = '[[曲师列表#'..song.artist..'|'..artist..']]'
		end
		data:insert(input '音乐家' or artist)
		
		local pack_main = packItem['name']
		local function link(v) return '[['.. v ..']]' end
		local onlyMobile = frame:expandTemplate{title = '仅', args = {'移动版', '', '图片角标'}}
		local onlyNS = frame:expandTemplate{title = '仅', args = {'NS版', '', '图片角标'}}
		
		if mobile_id and ns_id then
			packItem_ns = mad.packQueryWrap(song.set, 'ns')
			local pack_ns = packItem_ns['name']
			if pack_ns == pack_main then
				pack = link(pack_main)
			else
				pack = link(pack_main) --.. onlyMobile .. '\n' ..pack_ns .. onlyNS
			end
		elseif mobile_id then
			pack = link(pack_main) .. onlyMobile
		else 
			pack = link(pack_main) .. onlyNS
		end

		if ns_id then
			packItem_ns = mad.packQueryWrap(song.set, 'ns')
			local pack_n = packItem_ns['name']
		end
		data:insert(input '所属曲包' or pack)
		
		local bpm = tonumber(input 'BPM') or song.bpm_base
		data:insert((tonumber(song.bpm) ~= bpm and ('data-sort-value=%s|'):format(bpm) or '') .. song.bpm)
		data:insert(durArgs[id] or ' @ ')
		data:insert(song.version .. '.' .. (input '收录版本' or verQuery(song.date)))
		-- diffs
		for i = 1, 4 do
			diff = song.difficulties[i]
			data:insert(input('等级', i) or (diff and diff.rating .. (diff.ratingPlus and '+' or '')) or '/')
		end
	end
	table.sort(view, 
		function(a, b)
			a, b = a.sort, b.sort
			for i = 1, 3 do
				local d = a[i] - b[i]
				if d ~= 0 then return d < 0 end
			end
			return false
		end)

	local res = {}
	local template = '|-\n|%s' .. '||[[文件:Songs %s.jpg|75px]]' .. ('||%s'):rep(10)
	for idx, value in ipairs(view) do
		res[idx] = template:format(unpack(value.data))
	end
	return table.concat(res, '\n')
end

function p.multi(frame)
	for record in mw.text.gsplit(frame.args._ver_, '%s') do
		local date, name = record:match '(%d+):(.*)'
		table.insert(dates, tonumber(date))
		table.insert(versionNames, name)
	end
	return main(frame:getParent().args, frame.args)
end

return p