6,354
个编辑
小无编辑摘要 |
(// Edit via Wikiplus) |
||
第1行: | 第1行: | ||
local p = {} | local p = {} | ||
function p.packName(id) | function p.packName(id) | ||
-- 将曲包ID转换为曲包名称。 | -- 将曲包ID转换为曲包名称。 | ||
-- 传入Songlist中定义的曲包ID,返回Packlist中的曲 | -- 传入Songlist中定义的曲包ID,返回Packlist中的曲 包名称 。如果Template:Transition.json中存在转换,则使用转换后的名称。 | ||
-- 检查曲包ID→曲包名称转换表是否存在转换规则。 | -- 检查曲包ID→曲包名称转换表是否存在转换规则。 | ||
local covList = mw.text.jsonDecode(mw.getCurrentFrame():expandTemplate{ title = ' | local covList = mw.text.jsonDecode(mw.getCurrentFrame():expandTemplate{ title = 'Transition.json' })["packName"] | ||
if covList[id] then return covList[id] end | if covList[id] then return covList[id] end | ||
第22行: | 第12行: | ||
-- 变量为全局变量 | -- 变量为全局变量 | ||
if packlist == nil then | if packlist == nil then | ||
packlist = mw.text.jsonDecode(mw.getCurrentFrame():expandTemplate{ title = 'Packlist' }) | packlist = mw.text.jsonDecode(mw.getCurrentFrame():expandTemplate{ title = 'Packlist.json' }) | ||
end | end | ||
第36行: | 第26行: | ||
if unlock == nil | if unlock == nil | ||
then | then | ||
unlock = mw.text.jsonDecode(mw.getCurrentFrame():expandTemplate{ title = 'Packlist' }) | unlock = mw.text.jsonDecode(mw.getCurrentFrame():expandTemplate{ title = 'Packlist.json' }) | ||
end | end | ||
第198行: | 第188行: | ||
-- 传入曲名或ID,获得一个查阅信息的函数。直接在下一个模块使用。 | -- 传入曲名或ID,获得一个查阅信息的函数。直接在下一个模块使用。 | ||
-- index:曲目的索引字符串,和typed一致 indexTyped:id或name,查找曲目的索引值类型 platform:mobile或ns | -- index:曲目的索引字符串,和typed一致 indexTyped:id或name,查找曲目的索引值类型 platform:mobile或ns | ||
if | if platform == "mobile" | ||
then | then | ||
if indexTyped == "id" then | if indexTyped == "id" then | ||
第360行: | 第350行: | ||
end | end | ||
function p.allSongInformation( | function p.allSongInformation(indexTyped, platform) | ||
-- | -- 获得一个查阅信息的函数 ,可查阅任何曲目 。直接在下一个模块使用。 | ||
-- | -- indexTyped:id或name,查找曲目的索引值类型 platform:mobile或ns | ||
if | if platform == "mobile" | ||
then | then | ||
if | if indexTyped == "id" then | ||
return | return jsonAssayForAllSong(mw.text.jsonDecode(mw.getCurrentFrame():expandTemplate{ title = 'Songlist.json' } ), 'id') | ||
else | else | ||
return | return jsonAssayForAllSong(mw.text.jsonDecode(mw.getCurrentFrame():expandTemplate{ title = 'Songlist.json' } ), 'name') | ||
end | end | ||
else | else | ||
if | if indexTyped == "id" then | ||
return | return jsonAssayForAllSong(mw.text.jsonDecode(mw.getCurrentFrame():expandTemplate{ title = 'Songlist NS.json' } ), 'id') | ||
else | else | ||
return | return jsonAssayForAllSong(mw.text.jsonDecode(mw.getCurrentFrame():expandTemplate{ title = 'Songlist NS.json' } ), 'name') | ||
end | end | ||
end | |||
end | |||
local getArgs = require('Module:Arguments').getArgs | |||
function makeInvokeFunc(funcName) | |||
return function(frame) | |||
local args = getArgs(frame) | |||
return p[funcName](args) | |||
end | end | ||
end | end | ||
第382行: | 第381行: | ||
function p._Song_Query(songIndexType, songIndex, attributeName, platform) | function p._Song_Query(songIndexType, songIndex, attributeName, platform) | ||
-- 面向wikitext直接查询 | |||
return p.singleSongInformation(songIndex, songIndexType, platform)(attributeName) | return p.singleSongInformation(songIndex, songIndexType, platform)(attributeName) | ||
end | end | ||
第388行: | 第388行: | ||
function p._Pack_Query(id) | function p._Pack_Query(id) | ||
-- 面向wikitext直接查询 | |||
return p.packName(id) | return p.packName(id) | ||
end | end | ||
return p | return p |