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

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

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


             -- `Nalmuck틀:Prize.default` 또는 비정상적인 값을 0으로 처리
             -- 비정상적인 값은 0으로 처리
             if not content:find("₩[%d,]+") then
             if totalPrize == 0 then
                 totalPrize = 0
                 totalPrize = 0
             end
             end
47번째 줄: 47번째 줄:
     -- 결과 출력
     -- 결과 출력
     local output = {}
     local output = {}
     table.insert(output, "! 총상금 정렬된 선수 목록")
     table.insert(output, "! 총상금 정렬된 선수 목록") -- 테이블 헤더
     for _, player in ipairs(result) do
     for _, player in ipairs(result) do
         table.insert(output, string.format("| [[%s]]: ₩%s", player.name, mw.language.getContentLanguage():formatNum(player.prize)))
         table.insert(output, string.format("| [[%s]]: ₩%s", player.name, mw.language.getContentLanguage():formatNum(player.prize)))
     end
     end


     return table.concat(output, "\n")
     return table.concat(output, "\n") -- 결과를 문자열로 반환
end
end


return p
return p

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

이 모듈에 대한 설명문서는 모듈:SortPlayer/설명문서에서 만들 수 있습니다

local p = {}

function p.sortCategory(frame)
    -- DPL3 템플릿 호출
    local dplResult = frame:expandTemplate{
        title = "DynamicPageList3",
        args = {
            category = "선수", -- 분류 이름
            namespace = "Main", -- 네임스페이스
            addpagevariables = "true", -- 문서 변수 가져오기 활성화
            includepage = "{Prize}" -- Prize 값을 포함
        }
    }

    -- DPL3 결과가 없거나 비어 있을 경우 처리
    if not dplResult or dplResult == "" then
        return "DPL3 결과를 가져오지 못했습니다. 분류 또는 네임스페이스를 확인하세요."
    end

    -- DPL3 결과를 한 줄씩 처리
    local result = {}
    for line in dplResult:gmatch("[^\n]+") do
        local title, content = line:match("%[%[(.-)%]%]:(.+)")
        if title and content then
            -- Prize 값 추출 및 계산
            local totalPrize = 0
            for prize in content:gmatch("₩([%d,]+)") do
                local number = tonumber((prize:gsub(",", "")))
                if number then
                    totalPrize = totalPrize + number
                end
            end

            -- 비정상적인 값은 0으로 처리
            if totalPrize == 0 then
                totalPrize = 0
            end

            -- 결과 테이블에 추가
            table.insert(result, {name = title, prize = totalPrize})
        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") -- 결과를 문자열로 반환
end

return p