다른 명령
편집 요약 없음 |
편집 요약 없음 |
||
26번째 줄: | 26번째 줄: | ||
for line in dplResult:gmatch("[^\n]+") do | for line in dplResult:gmatch("[^\n]+") do | ||
-- 닉네임과 내용을 구분 | -- 닉네임과 내용을 구분 | ||
local | local name, content = line:match("^(.-)(₩.+)$") -- ₩로 구분된 경우 | ||
if not name and not content then | |||
name, content = line:match("^(.-)(틀.+)$") -- 틀로 구분된 경우 | |||
name, content = line:match("^(.-)(틀.+)$") | |||
end | end | ||
2024년 12월 5일 (목) 11:28 판
이 모듈에 대한 설명문서는 모듈:SortPlayer/설명문서에서 만들 수 있습니다
local p = {}
function p.sortCategory(frame)
-- DPL3 결과를 가져오기
local dplResult = frame:expandTemplate{
title = "DynamicPageList3",
args = {
category = "선수", -- 분류 이름
addpagevariables = "true",
includepage = "{Prize}"
}
}
-- 디버깅: DPL3 결과 확인
local debugInfo = {}
table.insert(debugInfo, "DPL3 결과:")
table.insert(debugInfo, dplResult or "nil")
-- DPL3 결과가 없으면 처리 중단
if not dplResult or dplResult == "" then
return "DPL3 결과가 없습니다.\n\n[디버깅 정보]\n" .. table.concat(debugInfo, "\n")
end
-- 결과를 한 줄씩 처리
local result = {}
for line in dplResult:gmatch("[^\n]+") do
-- 닉네임과 내용을 구분
local name, content = line:match("^(.-)(₩.+)$") -- ₩로 구분된 경우
if not name and not content then
name, content = line:match("^(.-)(틀.+)$") -- 틀로 구분된 경우
end
if name and content then
-- 상금 데이터 합산
local totalPrize = 0
for prize in content:gmatch("₩([%d,]+)") do
local number = tonumber((prize:gsub(",", "")))
if number then
totalPrize = totalPrize + number
end
end
-- 틀:Prize.default 처리
if content:find("틀:Prize%.default") then
totalPrize = 0
table.insert(debugInfo, string.format("%s의 내용이 틀:Prize.default로 처리되었습니다. 총상금: 0", name))
end
table.insert(debugInfo, string.format("%s의 총상금: %d", name, totalPrize))
table.insert(result, {name = name, prize = totalPrize})
else
-- 매칭 실패한 데이터 기록
table.insert(debugInfo, string.format("매칭 실패: %s", line))
end
end
-- 총상금 기준으로 정렬
table.sort(result, function(a, b) return a.prize > b.prize end)
-- 결과 출력 생성
local output = {}
table.insert(output, "! 총상금 정렬된 선수 목록")
for _, player in ipairs(result) do
table.insert(output, string.format("| [[%s]]: ₩%s", player.name, mw.language.getContentLanguage():formatNum(player.prize)))
end
-- 디버깅 정보를 출력에 포함
return table.concat(output, "\n") .. "\n\n[디버깅 정보]\n" .. table.concat(debugInfo, "\n")
end
return p