Module:RandomItemSequence: Difference between revisions

m (Faintfulness moved page Module:FlavorSeasoning to Module:RandomItemSequence without leaving a redirect)
(Removed reseeding flag as it was causing a bug)
Line 1: Line 1:
local p = {}
local p = {}
local Random = require('Module:Random')
local Random = require('Module:Random')
-- Seed once per page parse
Random.seed(os.time())


-- Fisher–Yates shuffle
-- Fisher–Yates shuffle
Line 12: Line 15:
-- render function with optional reseeding
-- render function with optional reseeding
-- frame: standard MediaWiki frame
-- frame: standard MediaWiki frame
-- reseed: boolean (default true) — set false for deterministic output
function p.render(frame)
function p.render(frame, reseed)
    -- reseed per invocation unless explicitly disabled
    if reseed ~= false then
        Random.seed(os.clock() * 1e9 + os.time())
    end


     local args = frame:getParent().args
     local args = frame:getParent().args

Revision as of 13:51, 28 December 2025

Documentation for this module may be created at Module:RandomItemSequence/doc

local p = {}
local Random = require('Module:Random')

-- Seed once per page parse
Random.seed(os.time())

-- Fisher–Yates shuffle
local function shuffle(t)
    for i = #t, 2, -1 do
        local j = Random.random(i)
        t[i], t[j] = t[j], t[i]
    end
end

-- render function with optional reseeding
-- frame: standard MediaWiki frame
function p.render(frame)

    local args = frame:getParent().args
    local itemsParam = args.items or ""
    local tooltip = args.tooltip or ""
    local link = args.link or ""

    local items = {}
    for item in string.gmatch(itemsParam, '([^;]+)') do
        item = item:gsub("^%s*(.-)%s*$", "%1")
        table.insert(items, item)
    end

    if #items == 0 then
        return ""
    end

    shuffle(items)

    return frame:expandTemplate{
        title = "ItemSlot",
        args = {
            item = table.concat(items, "; "),
            tooltip = tooltip,
            link = link
        }
    }
end

return p