跳到内容
折叠侧栏
搜索
创建账号
个人工具
创建账号
登录
导航
首页
最近更改
随机页面
编者用页面
方针
指引
讨论版
格式手册
挂起清单
维护清单
玩法条目
游戏玩法
界面
机制
搭档
潜力值
Link Play
世界模式
故事模式
段位挑战
解歌系统
成就系统
版本更新日志
列表条目
定数表
曲目列表
曲包列表
曲师列表
谱师列表
画师列表
背景列表
友情链接
Rotaeno中文维基
工具
链入页面
相关更改
特殊页面
页面信息
查看“Module:ChartConstant”的源代码
模块
讨论
English
阅读
查看源代码
查看历史
更多
阅读
查看源代码
查看历史
←
Module:ChartConstant
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
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 if not song.deleted then 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 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
本页使用的模板:
Module:ChartConstant/doc
(
查看源代码
)
返回
Module:ChartConstant
。