Module:AnotherData:修订间差异

来自Arcaea中文维基
(允许platform与target的nil)
(filter直到1.42才支持于内联css)
 
(未显示同一用户的3个中间版本)
第1行: 第1行:
local checkType = require 'libraryUtil'.checkType
local p = {}
local p = {}


第9行: 第8行:
function p.listOf(type, platform)
function p.listOf(type, platform)
return mw.text.jsonDecode(mw.title.new(srcFileName[type][platform == 'ns' and 2 or 1], 'Template'):getContent())[type]
return mw.text.jsonDecode(mw.title.new(srcFileName[type][platform == 'ns' and 2 or 1], 'Template'):getContent())[type]
end
function p.listOfReserve()
-- Reserved data.json
return mw.text.jsonDecode(mw.title.new('Duration.json', 'Template'):getContent()).songs
end
end


local commonExpr = {
function p.title(obj) return (obj.title_localized or {}).en end
title = '.title_localized.en',
function p.linkName(song)
pstChartDesigner = '.difficulties.1.chartDesigner',
pstJacketDesigner = '.difficulties.1.jacketDesigner',
pstRating = '.difficulties.1.rating',
prsChartDesigner = '.difficulties.2.chartDesigner',
prsJacketDesigner = '.difficulties.2.jacketDesigner',
prsRating = '.difficulties.2.rating',
ftrChartDesigner = '.difficulties.3.chartDesigner',
ftrJacketDesigner = '.difficulties.3.jacketDesigner',
-- ftrRating
bydChartDesigner = '.difficulties.4?chartDesigner',
bydJacketDesigner = '.difficulties.4?jacketDesigner',
-- bydRating
pstChange = '.difficulties.1.has_controller_alt_chart',
prsChange = '.difficulties.2.has_controller_alt_chart',
ftrChange = '.difficulties.3.has_controller_alt_chart',
bydAudioChange = '.difficulties.4?audioOverride',
bydBg = '.difficulties.4?bg',
bydBPM = '.difficulties.4?bpm',
bydArtist = '.difficulties.4?artist',
bydTitle = '.difficulties.4?title_localized?en',
bydDate = '.difficulties.4?date',
}
local commonFunc = {}
function commonFunc.ftrRating(obj)
local diff = obj.difficulties[3]
return diff.rating .. (diff.ratingPlus and '+' or '')
end
function commonFunc.bydRating(obj)
local diff = obj.difficulties[4]
if not diff then return nil end
return diff.rating .. (diff.ratingPlus and '+' or '')
end
function commonFunc.linkName(obj)
local trans = mw.loadJsonData 'Template:Transition.json'
local trans = mw.loadJsonData 'Template:Transition.json'
local name = obj.title_localized.en
local name = p.title(song)
local res = trans.songNameToDisplayName[name]
local res = trans.songNameToDisplayName[name]
if res then return res end
if res then return res end
res = trans.sameName[name]
res = trans.sameName[name]
if res then return res[obj.id] end
if res then return res[song.id] end
end
end
function commonFunc.linkTitle(obj)
function p.linkTitle(song)
local res = {commonFunc.linkName(obj)}
local name = p.title(song)
table.insert(res, obj.title_localized.en)
local linkName = p.linkName(song)
return table.concat(res, '|')
return linkName and linkName .. '|' .. name or name
end
 
local function chain(obj, expr)
for op, sKey in expr:gmatch '([.?])([^.?]+)' do
if op == '?' and obj == nil then break end
local key = tonumber(sKey) or sKey
obj = obj[key]
end
return obj
end
local function songQuery(t, prop)
checkType('songQuery', 2, prop, 'string')
local obj = getmetatable(t)._info_
if not obj then return nil end
local expr = commonExpr[prop]
if expr then return chain(obj, expr) end
local func = commonFunc[prop]
if func then return func(obj) end
if not prop:match '^[.?]' then return t[prop] end
return chain(obj, prop)
end
function p.songQueryWrap(song)
checkType('songQueryWrap', 1, song, 'table', true)
return setmetatable({}, {__call = songQuery, __index = songQuery, _info_ = song})
end
end
-- function p.ratingText(chart) return chart.rating .. (chart.ratingPlus and '+' or '') end


local mPlatFormPackData = {}
local mPlatFormPackData = {}
第122行: 第69行:
-- return id and packData[id] or packData
-- return id and packData[id] or packData
return packData[id] or {name = '请更新plst', section = 'unknown'}
return packData[id] or {name = '请更新plst', section = 'unknown'}
end
function p.color(t)
if t.args then t = t.args end
--
local rc = tonumber(t.rc) or t.rc
local n = mw.html.create(t.tag or 'span')
if t.inline then
local colorCode = ({'#0a82be', '#648c3c', '#50194b', '#822328', '#5d4e76'})[rc]
if colorCode then
n:css('color', colorCode .. (t.bright ~= false and 'd0' or ''))
else
n:css('color', tostring(rc))
end
else
local colorClass = ({'pst', 'prs', 'ftr', 'byd', 'etr'})[rc]
if colorClass then
n:addClass('text-' .. colorClass)
else
n:addClass(tostring(rc))
end
end
return tostring(n:wikitext(t.txt))
end
function p.nullGuard(f)
return function(o)
if o == nil then return nil end
return f(o)
end
end
end


return p
return p

2024年3月14日 (四) 14:26的最新版本

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

local p = {}

local srcFileName = {
	['songs'] = {'Songlist.json', 'Songlist NS.json'},
	['packs'] = {'Packlist.json', 'Packlist NS'},
	['unlocks'] = {'Unlocks.json', 'Unlocks NS'},
}
function p.listOf(type, platform)
	return mw.text.jsonDecode(mw.title.new(srcFileName[type][platform == 'ns' and 2 or 1], 'Template'):getContent())[type]
end
function p.listOfReserve()
	-- Reserved data.json
	return mw.text.jsonDecode(mw.title.new('Duration.json', 'Template'):getContent()).songs
end

function p.title(obj) return (obj.title_localized or {}).en end
function p.linkName(song)
	local trans = mw.loadJsonData 'Template:Transition.json'
	local name = p.title(song)
	local res = trans.songNameToDisplayName[name]
	if res then return res end
	res = trans.sameName[name]
	if res then return res[song.id] end
end
function p.linkTitle(song)
	local name = p.title(song)
	local linkName = p.linkName(song)
	return linkName and linkName .. '|' .. name or name
end
-- function p.ratingText(chart) return chart.rating .. (chart.ratingPlus and '+' or '') end

local mPlatFormPackData = {}
local function mobileSection(pack)
	return pack.section
end
local function nsSection(pack)
	if pack.pack_parent then return nil end
	if mw.loadJsonData 'Template:Transition.json'.packName[pack.id] then return 'collab' end
	return ({'free', 'mainstory', 'sidestory'})[pack.section]
end
local function factPackData(platform)
	local sectionOf = platform == 'ns' and nsSection or mobileSection
	local res = {single = {name = 'Memory Archive', section = 'single', numero = 0}}
	for idx, pack in ipairs(p.listOf('packs', platform)) do
		--- 单个曲包查询的数据结构
		local item = {_parentId_ = pack.pack_parent, name = pack.name_localized.en, section = sectionOf(pack), numero = idx}
		res[pack.id] = item
	end
	for _, item in pairs(res) do
		local parentId = item._parentId_
		local parent
		if parentId then
			parent = res[parentId]
			if item.name:match 'Collaboration Chapter' then
				item.name = parent.name .. ' ' .. item.name
			end
		end
		item.section = item.section or parent.section
	end
	return res
end
function p.packQueryWrap(id, platform)
	platform = platform or 'mobile'
	local packData = mPlatFormPackData[platform]
	if not packData then
		packData = factPackData(platform)
		mPlatFormPackData[platform] = packData
	end
	-- return id and packData[id] or packData
	return packData[id] or {name = '请更新plst', section = 'unknown'}
end

function p.color(t)
	if t.args then t = t.args end
	--
	local rc = tonumber(t.rc) or t.rc
	local n = mw.html.create(t.tag or 'span')
	if t.inline then
		local colorCode = ({'#0a82be', '#648c3c', '#50194b', '#822328', '#5d4e76'})[rc]
		if colorCode then
			n:css('color', colorCode .. (t.bright ~= false and 'd0' or ''))
		else
			n:css('color', tostring(rc))
		end
	else
		local colorClass = ({'pst', 'prs', 'ftr', 'byd', 'etr'})[rc]
		if colorClass then
			n:addClass('text-' .. colorClass)
		else
			n:addClass(tostring(rc))
		end
	end
	return tostring(n:wikitext(t.txt))
end

function p.nullGuard(f)
	return function(o)
		if o == nil then return nil end
		return f(o)
	end
end

return p