Module:DesignerSong
可在Module:DesignerSong/doc创建此模块的帮助文档
p={}
local DL = mw.loadJsonData 'User:Economy666/DesignersList.json'
local multiId = mw.loadJsonData 'Template:Transition.json'.multiId
local trans = mw.loadJsonData 'Template:Transition.json'
local mad = require 'Module:AnotherData'
local data = require "Module:Arcaea Data"
local CL = require 'Module:ConvertLink'
local CDL = DL.complex
local SDL = DL.simple
local specialSong = DL.special
local queryMO = data.allSongInformation("id", "mobile")
local queryNS = data.allSongInformation("id", "ns")
local function readList()
local pickList = {}
local specialDesigner ={}
local mobileList = {}
local diffList = {'PST', 'PRS', 'FTR', 'BYD', 'ETR'}
for _, song in ipairs(mad.listOf('songs', 'mobile')) do
for _,level in ipairs(song.difficulties) do
local designer = level.chartDesigner
local diff = level.ratingClass
if not pickList[designer] then
pickList[designer] = {}
end
if not pickList[designer][song.id] then
pickList[designer][song.id] = {}
end
pickList[designer][song.id][diffList[diff+1]]=true
mobileList[song.id]=true
if specialSong[song.id] then
specialDesigner[designer]=true
end
end
end
for _, song in ipairs(mad.listOf('songs', 'ns')) do
if not mobileList[song.id] and not multiId[song.id] then
for _,level in ipairs(song.difficulties) do
local designer = level.chartDesigner
local diff = level.ratingClass
if not pickList[designer] then
pickList[designer] = {}
end
if not pickList[designer][song.id] then
pickList[designer][song.id] = {}
end
pickList[designer][song.id][diffList[diff+1]]=true
if specialSong[song.id] then
specialDesigner[designer]=true
end
end
end
end
return pickList ,specialDesigner
end
local function genList(pickList ,specialDesigner)
local function cate(singleList, cArtist, artist)
local artist = artist or cArtist
if not singleList[artist] then singleList[artist] = {} end
for id,diff in pairs(pickList[cArtist]) do
singleList[artist][id] = diff
end
return singleList
end
local function otherDesigner(count)
if count == 0 then return text end
local formatted_text = formatLangText(temp_text)
for placeholder, link_text in pairs(link_placeholders) do
formatted_text = string.gsub(formatted_text, placeholder, link_text)
end
return formatted_text
end
local singleList = {}
for cDesigner,songids in pairs(pickList) do
local designerList={}
if CDL[cDesigner] then
if CDL[cDesigner].__FullData__ then
for _,text in pairs(CDL[cDesigner].__FullData__) do
if text.link then
local designer = text['link']
if not designerList[designer] then
singleList = cate(singleList, cDesigner, designer)
designerList[designer]=true
end
end
end
else
for link in pairs(CDL[cDesigner]) do
local designer = link
if not designerList[designer] then
singleList = cate(singleList, cDesigner, designer)
designerList[designer]=true
end
end
end
else
local temp_text = cDesigner
local count = 0
for _,data in ipairs(SDL) do
local designer = data.link
local dis = data.display
if string.find(temp_text, dis) then
singleList = cate(singleList, cDesigner, designer)
designerList[designer]=true
temp_text = string.gsub(temp_text, dis, '')
count = count + 1
end
end
if count == 0 then
if specialDesigner[cDesigner] then
singleList = cate(singleList, cDesigner, '与主线剧情相关的特殊名义')
else
singleList = cate(singleList, cDesigner, '其他未确认谱师名义')
end
end
end
end
return singleList
end
-- Function to convert table to string
local function tableToString(tbl, indent)
indent = indent or 0
local toPrint = string.rep(" ", indent) .. "{\n"
for k, v in pairs(tbl) do
local keyString = tostring(k)
local valueString
if type(v) == "table" then
valueString = tableToString(v, indent + 2)
else
valueString = tostring(v)
end
toPrint = toPrint .. string.rep(" ", indent + 2) .. "[" .. keyString .. "] = " .. valueString .. ",\n"
end
toPrint = toPrint .. string.rep(" ", indent) .. "}"
return toPrint
end
function p.main()
pickList ,specialDesigner = readList()
singleList = genList(pickList ,specialDesigner)
local list1 =''
for i,ii in pairs(singleList) do
list1 = list1 .. "'''".. i.. "'''" ..'<br><br>'
for j in pairs(ii) do
list1=list1.. j ..'<br>'
end
list1=list1 ..'-------------------------------------------------------------<br>'
end
-- return tableToString(singleList)
return list1
end
return p