메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

모듈:SortPlayer: 두 판 사이의 차이

이터널리턴 이스포츠 위키
편집 요약 없음
편집 요약 없음
22번째 줄: 22번째 줄:
     end
     end


     -- 결과를 한 줄씩 처리
     -- 결과를 줄 단위로 처리
     local result = {}
     local result = {}
    local lines = {}
     for line in dplResult:gmatch("[^\n]+") do
     for line in dplResult:gmatch("[^\n]+") do
         -- 태그 제거
         table.insert(lines, line)
        line = line:gsub("<::marker>", ""):gsub("</::marker>", "")
    end


        -- 닉네임과 내용을 구분
    -- 줄 데이터를 순회하며 처리
        local name, content = line:match("^(.-)₩(.*)$") -- 첫 번째 ₩ 이전은 닉네임, 이후는 내용
    local currentName = nil
        if name and content then
    local totalPrize = 0
             -- 상금 데이터 합산
    for _, line in ipairs(lines) do
             local totalPrize = 0
        if line:find("^<::marker>") then
            for prize in content:gmatch("₩([%d,]+)") do
             -- 마커가 있으면 닉네임 갱신
                 local number = tonumber((prize:gsub(",", "")))
             if currentName and totalPrize > 0 then
                if number then
                table.insert(result, {name = currentName, prize = totalPrize})
                    totalPrize = totalPrize + number
                 table.insert(debugInfo, string.format("%s의 총상금: %d", currentName, totalPrize))
                end
             end
             end
 
             currentName = line:match("^<::marker>(.-)</::marker>")
             table.insert(debugInfo, string.format("%s의 총상금: %d", name, totalPrize))
             totalPrize = 0 -- 상금 초기화
             table.insert(result, {name = name, prize = totalPrize})
         else
         else
             -- 매칭 실패한 데이터 기록
             -- 상금을 합산
             table.insert(debugInfo, string.format("매칭 실패: %s", line))
             local number = tonumber((line:gsub(",", "")))
            if number then
                totalPrize = totalPrize + number
            end
         end
         end
    end
    -- 마지막 선수 처리
    if currentName and totalPrize > 0 then
        table.insert(result, {name = currentName, prize = totalPrize})
        table.insert(debugInfo, string.format("%s의 총상금: %d", currentName, totalPrize))
     end
     end



2024년 12월 5일 (목) 11:35 판

이 모듈에 대한 설명문서는 모듈: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 = {}
    local lines = {}
    for line in dplResult:gmatch("[^\n]+") do
        table.insert(lines, line)
    end

    -- 줄 데이터를 순회하며 처리
    local currentName = nil
    local totalPrize = 0
    for _, line in ipairs(lines) do
        if line:find("^<::marker>") then
            -- 마커가 있으면 닉네임 갱신
            if currentName and totalPrize > 0 then
                table.insert(result, {name = currentName, prize = totalPrize})
                table.insert(debugInfo, string.format("%s의 총상금: %d", currentName, totalPrize))
            end
            currentName = line:match("^<::marker>(.-)</::marker>")
            totalPrize = 0 -- 상금 초기화
        else
            -- 상금을 합산
            local number = tonumber((line:gsub(",", "")))
            if number then
                totalPrize = totalPrize + number
            end
        end
    end

    -- 마지막 선수 처리
    if currentName and totalPrize > 0 then
        table.insert(result, {name = currentName, prize = totalPrize})
        table.insert(debugInfo, string.format("%s의 총상금: %d", currentName, totalPrize))
    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