Модуль:Prototypes/Роль/Лодаут

Материал из Space Station 14 Вики
Версия от 20:23, 13 февраля 2025; Pok (обсуждение | вклад) (Новая страница: «-- Загрузка local gearRoleLoadout = mw.loadData("Модуль:IanComradeBot/roleLoadout.json/data") local gearloadoutGroup = mw.loadData("Модуль:IanComradeBot/loadoutGroup.json/data") local gearloadout = mw.loadData("Модуль:IanComradeBot/loadout.json/data") local p = {} function p.main(searchKey, roleId) local results = {} local role = nil for _, r in ipairs(gearRoleLoadout) do if r.id == roleId then...»)
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

Для документации этого модуля может быть создана страница Модуль:Prototypes/Роль/Лодаут/doc

-- Загрузка
local gearRoleLoadout   = mw.loadData("Модуль:IanComradeBot/roleLoadout.json/data")
local gearloadoutGroup  = mw.loadData("Модуль:IanComradeBot/loadoutGroup.json/data")
local gearloadout       = mw.loadData("Модуль:IanComradeBot/loadout.json/data")

local p = {}

function p.main(searchKey, roleId)
    local results = {}

    local role = nil
    for _, r in ipairs(gearRoleLoadout) do
        if r.id == roleId then
            role = r
            break
        end
    end

    if not role then
        return '<div class="role">Роль с id "' .. roleId .. '" не найдена</div>'
    end

    for _, groupId in ipairs(role.groups or {}) do
        local group = nil
        for _, g in ipairs(gearloadoutGroup) do
            if g.id == groupId then
                group = g
                break
            end
        end

        if group then
            for _, loadoutId in ipairs(group.loadouts or {}) do
                local loadout = nil
                for _, l in ipairs(gearloadout) do
                    if l.id == loadoutId then
                        loadout = l
                        break
                    end
                end

                if loadout and loadout.equipment then
                    local eqValue = loadout.equipment[searchKey]
                    if eqValue then
                        table.insert(results, eqValue)
                    end
                end
            end
        end
    end

    local output = {}
    for _, eq in ipairs(results) do
        table.insert(output, '<div class="test">' .. eq .. '</div>')
    end

    return table.concat(output, "\n")
end

return p