Module:ChartConstant:修订间差异

来自Arcaea中文维基
(修复link错误(被anotherdata)删掉了)
(修[anti]bug)
 
(未显示同一用户的4个中间版本)
第1行: 第1行:
local mad = require 'Module:AnotherData'
local mad = require 'Module:AnotherData'
local frame = mw.getCurrentFrame()
local p = {}
local p = {}
 
-- ns待补充 (ns也不需要这个)
local function songMap()
local res = {}
for _, song in ipairs(mad.listOf 'songs') do res[song.id] = song end
-- ns待补充
return res
end


local function itData(datas, cc)
local function itData(datas, cc)
第20行: 第13行:
end
end
function p.main()
function p.main()
local mSong = songMap()
local datas = {}
local datas = {}
-- CD: constant data
local songCcs = mw.text.jsonDecode(mw.title.new('ChartConstant.json', 'Template'):getContent())
for id, songCD in pairs(mw.text.jsonDecode(mw.title.new('ChartConstant.json', 'Template'):getContent())) do
for _, song in ipairs(mad.listOf 'songs') do
local song = mSong[id]
local id, titleBase, dateBase = song.id, mad.title(song), song.date
local query = mad.songQueryWrap(song)
local songCc = songCcs[id] or {}
local title, date = query.title, song.date
local link = mad.linkName(song) or titleBase
local link = query.linkTitle
for _, chart in ipairs {}, song.difficulties, 1 do
link = link and link:match '([^%|]+)' or title
local rc = chart.ratingClass + 1
for diffIdx = 2, 4 do
local chartCc = songCc[rc]
-- fk lua donot support continue. use single-loop & break for subst
-- fk lua donot support continue. use single-loop & break for subst
repeat
repeat
local diffCD = songCD[diffIdx] or {}
if not chartCc or chartCc.old ~= false then break end
if diffCD.old ~= false then break end
local nCc = chartCc.constant
local cc = diffCD.constant
if nCc < 8 then break end
if cc < 8 then break end
local title, date = mad.title(chart) or titleBase, chart.date or dateBase
if diffIdx == 4 then
 
title = query.bydTitle or title
local rowId, sCc
date = query.bydDate or date
if nCc >= 11 then
end
rowId = ('%d'):format(nCc)
local rowId, diasplayCC, rowAttr
sCc = ('%.1f'):format(nCc)
if cc >= 11 then
rowId = ('%d'):format(cc)
diasplayCC = ('%.1f'):format(cc)
rowAttr = {['高度'] = '154px'}
else
else
rowId = ('%.1f'):format(cc)
rowId = ('%.1f'):format(nCc)
end
end
local rowData = datas[rowId]
local rowData = datas[rowId]
if not rowData then
if not rowData then
rowData = {attr = rowAttr}
rowData = {}
datas[rowId] = rowData
datas[rowId] = rowData
end
end
table.insert(rowData, {
table.insert(rowData, {
data = {title, song.id, ({'PST', 'PRS', 'FTR', 'BYD'})[diffIdx], link = link, CC = diasplayCC},
data = {title, id, ({'PST', 'PRS', 'FTR', 'BYD', 'ETR'})[rc], link = link, CC = sCc},
sort = {cc, diffIdx, date}
sort = {nCc, rc, date}
})
})
until (true)
until (true)
第61行: 第49行:
end
end


local frame = mw.getCurrentFrame()
local text = mw.html.create 'div':addClass 'notaninfobox dstable'
local text = mw.html.create 'div':addClass 'notaninfobox dstable'
for _, rowId, rowData in itData, datas do
for _, rowId, rowData in itData, datas do
第66行: 第55行:
:tag 'div':addClass 'ds':wikitext(rowId):done()
:tag 'div':addClass 'ds':wikitext(rowId):done()
:tag 'div':addClass 'number'
:tag 'div':addClass 'number'
:wikitext(frame:expandTemplate {title = '组排列', args = rowData.attr})
:wikitext(frame:expandTemplate {title = '组排列', args = {height = 'auto'}})
table.sort(rowData, function(a, b)
table.sort(rowData, function(a, b)
a, b = a.sort, b.sort
a, b = a.sort, b.sort
第82行: 第71行:
end
end


local function constantFormat(a)
if not a then return ' ' end
local sCC = ('%.1f'):format(a.constant)
return a.old and tostring(mw.html.create 'span':addClass 'old-constant':wikitext(sCC)) or sCC
end
function p.detail()
function p.detail()
local mSong = songMap()
local datas = {}
local datas = {}
for id, songCD in pairs(mw.text.jsonDecode(mw.title.new('ChartConstant.json', 'Template'):getContent())) do
local songCcs = mw.text.jsonDecode(mw.title.new('ChartConstant.json', 'Template'):getContent())
local song = mSong[id]
for _, song in ipairs(mad.listOf 'songs') do
local query = mad.songQueryWrap(song)
local id = song.id
local data = {query.linkTitle}
local songCc = songCcs[id] or {}
local rowData = {data = data, sort = {(songCD[query.bydDate and 3 or 4] or songCD[3]).constant, song.date}}
--
table.insert(datas, rowData)
local data = {mad.linkTitle(song)}
for i = 1, 4 do
local sort = {0, song.date}
table.insert(data, constantFormat(songCD[i]))
table.insert(datas, {data = data, sort = sort})
for _, chart in ipairs(song.difficulties) do
local rc = chart.ratingClass + 1
local chartCc = songCc[rc]
repeat
if not chartCc then break end
local nCc = chartCc.constant
if not chart.date then sort[1] = nCc end
local sCc = ('%.1f'):format(nCc)
data[rc + 1] = chartCc.old ~= false and tostring(mw.html.create 'span':addClass 'old-constant':wikitext(sCc)) or sCc
until (true)
end
for i = 2, 6 do
data[i] = data[i] or ' '
end
end
end
end
第108行: 第104行:


local texts = {}
local texts = {}
local template = '|-\n|[[%s]]' .. ('||%s'):rep(4)
local template = '|-\n|[[%s]]' .. ('||%s'):rep(5)
for _, value in ipairs(datas) do
for _, value in ipairs(datas) do
table.insert(texts, template:format(unpack(value.data)))
table.insert(texts, template:format(unpack(value.data)))

2024年3月15日 (五) 00:57的最新版本

可在Module:ChartConstant/doc创建此模块的帮助文档

local mad = require 'Module:AnotherData'
local p = {}
-- ns待补充(ns也不需要这个)

local function itData(datas, cc)
	cc = cc or 13
	local step, format = unpack(cc > 11 and {1, '%d'} or {.1, '%.1f'})
	cc = cc - step
	local id = format:format(cc)
	local data = datas[id]
	if not data then return nil end
	return cc, id, data
end
function p.main()
	local datas = {}
	local songCcs = mw.text.jsonDecode(mw.title.new('ChartConstant.json', 'Template'):getContent())
	for _, song in ipairs(mad.listOf 'songs') do
		local id, titleBase, dateBase = song.id, mad.title(song), song.date
		local songCc = songCcs[id] or {}
		local link = mad.linkName(song) or titleBase
		for _, chart in ipairs {}, song.difficulties, 1 do
			local rc = chart.ratingClass + 1
			local chartCc = songCc[rc]
			-- fk lua donot support continue. use single-loop & break for subst
			repeat
				if not chartCc or chartCc.old ~= false then break end
				local nCc = chartCc.constant
				if nCc < 8 then break end
				local title, date = mad.title(chart) or titleBase, chart.date or dateBase

				local rowId, sCc
				if nCc >= 11 then
					rowId = ('%d'):format(nCc)
					sCc = ('%.1f'):format(nCc)
				else
					rowId = ('%.1f'):format(nCc)
				end
				local rowData = datas[rowId]
				if not rowData then
					rowData = {}
					datas[rowId] = rowData
				end
				table.insert(rowData, {
					data = {title, id, ({'PST', 'PRS', 'FTR', 'BYD', 'ETR'})[rc], link = link, CC = sCc},
					sort = {nCc, rc, date}
				})
			until (true)
		end
	end

	local frame = mw.getCurrentFrame()
	local text = mw.html.create 'div':addClass 'notaninfobox dstable'
	for _, rowId, rowData in itData, datas do
		text = text
			:tag 'div':addClass 'ds':wikitext(rowId):done()
			:tag 'div':addClass 'number'
			:wikitext(frame:expandTemplate {title = '组排列', args = {height = 'auto'}})
		table.sort(rowData, function(a, b)
			a, b = a.sort, b.sort
			if a[1] ~= b[1] then return a[1] > b[1] end
			if a[2] ~= b[2] then return a[2] > b[2] end
			return a[3] < b[3]
		end)
		for _, rowItem in ipairs(rowData) do
			text:wikitext(frame:expandTemplate {title = '组排单元', args = rowItem.data})
		end
		text = text:wikitext(frame:expandTemplate {title = '组排列-end'}):done()
	end

	return tostring(text)
end

function p.detail()
	local datas = {}
	local songCcs = mw.text.jsonDecode(mw.title.new('ChartConstant.json', 'Template'):getContent())
	for _, song in ipairs(mad.listOf 'songs') do
		local id = song.id
		local songCc = songCcs[id] or {}
		--
		local data = {mad.linkTitle(song)}
		local sort = {0, song.date}
		table.insert(datas, {data = data, sort = sort})
		for _, chart in ipairs(song.difficulties) do
			local rc = chart.ratingClass + 1
			local chartCc = songCc[rc]
			repeat
				if not chartCc then break end
				local nCc = chartCc.constant
				if not chart.date then sort[1] = nCc end
				local sCc = ('%.1f'):format(nCc)
				data[rc + 1] = chartCc.old ~= false and tostring(mw.html.create 'span':addClass 'old-constant':wikitext(sCc)) or sCc
			until (true)
		end
		for i = 2, 6 do
			data[i] = data[i] or ' '
		end
	end

	table.sort(datas, function(a, b)
		a, b = a.sort, b.sort
		if a[1] == b[1] then return a[2] < b[2] end
		return a[1] > b[1]
	end)

	local texts = {}
	local template = '|-\n|[[%s]]' .. ('||%s'):rep(5)
	for _, value in ipairs(datas) do
		table.insert(texts, template:format(unpack(value.data)))
	end

	return table.concat(texts, '\n')
end

return p