Module:Sandbox/ChartConstant:修订间差异
DrLee lihr(讨论 | 贡献) (DrLee lihr将页面Module:Sandbox/ChartConstant的内容模型从“wikitext”更改为“Scribunto”:module) 标签:内容模型更改 |
DrLee lihr(讨论 | 贡献) 无编辑摘要 |
||
第32行: | 第32行: | ||
if k[4] and tonumber(k[4]['constant'])>=8 and not(k[4]['old']) then | if k[4] and tonumber(k[4]['constant'])>=8 and not(k[4]['old']) then | ||
local name1 = name | local name1 = name | ||
for | for i,v in ipairs(songlist["songs"]) do | ||
if v["title_localized"]["en"] == name then | |||
if | if v["difficulties"][4] then | ||
if v["difficulties"][4]['title_localized'] then | |||
name = v["difficulties"][4]['title_localized']['en'] | |||
break | |||
end | |||
end | |||
end | |||
end | end | ||
table.insert(list, { i, name, k[4]['constant'], "BYD", name1 }) | table.insert(list, { i, name, k[4]['constant'], "BYD", name1 }) | ||
第55行: | 第58行: | ||
if k[3]<12 | if k[3]<12 | ||
then | then | ||
table.insert(temporary,{ k[3], mw.getCurrentFrame():expandTemplate { title = 'User:DrLee_lihr/sandbox/组排单元', args = { k[2], k[1], k[4], CC = string.format("%.1f", k[3]) } } } ) | table.insert(temporary,{ k[3], mw.getCurrentFrame():expandTemplate { title = 'User:DrLee_lihr/sandbox/组排单元', args = { k[2], k[1], k[4], CC = string.format("%.1f", k[3]), link=k[5] } } } ) | ||
else | else | ||
table.insert(result[12],mw.getCurrentFrame():expandTemplate { title = 'User:DrLee_lihr/sandbox/组排单元', args = { k[2], k[1], k[4], CC = string.format("%.1f", k[3]) } } ) | table.insert(result[12],mw.getCurrentFrame():expandTemplate { title = 'User:DrLee_lihr/sandbox/组排单元', args = { k[2], k[1], k[4], CC = string.format("%.1f", k[3]), link=k[5] } } ) | ||
end | end | ||
end | end |
2022年7月9日 (六) 11:21的版本
可在Module:Sandbox/ChartConstant/doc创建此模块的帮助文档
local p = {}
local json = require("Module:LoadJson").ChartConstant()
local songlist = require("Module:LoadJson").Songlist()
function cv()
local list = {}
for i,k in pairs(songlist['songs'])
do
list[k['id']] = k['title_localized']['en']
end
return list
end
function p.main()
local list = {}
local name
local cvList = cv()
for i, k in pairs(json)
do
if k[2] or k[3] or k[4]
then
name = cvList[i]
end
if k[2] and tonumber(k[2]['constant'])>=8 and not(k[2]['old']) then
table.insert(list, { i, name, k[2]['constant'], "PRS", name })
end
if k[3] and tonumber(k[3]['constant'])>=8 and not(k[3]['old']) then
table.insert(list, { i, name, k[3]['constant'], "FTR", name })
end
if k[4] and tonumber(k[4]['constant'])>=8 and not(k[4]['old']) then
local name1 = name
for i,v in ipairs(songlist["songs"]) do
if v["title_localized"]["en"] == name then
if v["difficulties"][4] then
if v["difficulties"][4]['title_localized'] then
name = v["difficulties"][4]['title_localized']['en']
break
end
end
end
end
table.insert(list, { i, name, k[4]['constant'], "BYD", name1 })
end
end
local result = {}
local temporary = {}
result[11], result[12] = {}, {}
for s, k in pairs(list) do
if k[3]<11
then
if not(result[k[3]]) then result[k[3]]={} end
table.insert(result[k[3]],mw.getCurrentFrame():expandTemplate { title = 'User:DrLee_lihr/sandbox/组排单元', args = { k[2], k[1], k[4], link=k[5] } } )
else
if k[3]<12
then
table.insert(temporary,{ k[3], mw.getCurrentFrame():expandTemplate { title = 'User:DrLee_lihr/sandbox/组排单元', args = { k[2], k[1], k[4], CC = string.format("%.1f", k[3]), link=k[5] } } } )
else
table.insert(result[12],mw.getCurrentFrame():expandTemplate { title = 'User:DrLee_lihr/sandbox/组排单元', args = { k[2], k[1], k[4], CC = string.format("%.1f", k[3]), link=k[5] } } )
end
end
end
table.sort(temporary, function(a,b) return a[1]>b[1] end )
for i,k in ipairs(temporary)
do
table.insert(result[11], k[2])
end
local sortTable = {}
for i,k in pairs(result)
do
table.insert(sortTable, {i, k})
end
table.sort(sortTable, function(a,b) return a[1] > b[1] end)
local finText = "<div class='notaninfobox dstable'>\n"
for i,k in ipairs(sortTable)
do
if k[1] == 11 or k[1] == 12
then
finText = finText .. "<div class='ds'>"..k[1].."</div>\n"
finText = finText .. "<div class='number'>"..mw.getCurrentFrame():expandTemplate { title = '组排列', args = { ['高度']="154px" } }
..table.concat(k[2])..mw.getCurrentFrame():expandTemplate { title = '组排列-end' }.."</div>\n"
else
finText = finText .. "<div class='ds'>"..string.format("%.1f", k[1]).."</div>\n"
finText = finText .. "<div class='number'>"..mw.getCurrentFrame():expandTemplate { title = '组排列' }
..table.concat(k[2])..mw.getCurrentFrame():expandTemplate { title = '组排列-end' }.."</div>\n"
end
end
finText = finText .. "</div>"
return finText
end
return p