Модуль:Prototypes/Объект/Торгомат: различия между версиями

Материал из Space Station 14 Вики
мНет описания правки
мНет описания правки
Строка 19: Строка 19:
end
end


-- Функция для получения содержимого автомата
-- Функция для получения списка содержимого автомата
local function getInventoryOutput(id)
local function getInventory(id)
     -- Загрузка данных
     -- Загрузка данных
     local vendingMachines = loadData("User:IanComradeBot/prototypes/vending machines.json")
     local vendingMachines = loadData("User:IanComradeBot/prototypes/vending machines.json")
Строка 27: Строка 27:
     -- Поиск автомата по ID
     -- Поиск автомата по ID
     local vendingMachine = findDataById(vendingMachines, id)
     local vendingMachine = findDataById(vendingMachines, id)
     if not vendingMachine then
     if not vendingMachine then return "" end
        return "Ошибка: автомат с ID \"" .. id .. "\" не найден."
 
    -- Поиск инвентаря по pack
    local inventory = findDataById(inventories, vendingMachine.pack)
    if not inventory then return "" end
 
    -- Формирование строки с содержимым автомата
    local inventoryString = ""
    for item, quantity in pairs(inventory.startingInventory) do
        inventoryString = inventoryString .. "* " .. item .. ": " .. quantity .. "\n"
     end
     end


     -- Получение инвентаря автомата
     return inventoryString
     local inventoryId = vendingMachine.pack
end
     local inventory = findDataById(inventories, inventoryId)
 
     if not inventory or not inventory.startingInventory then
-- Функция для получения списка доступов
         return "Ошибка: инвентарь для автомата \"" .. id .. "\" не найден."
local function getAccessList(id)
    -- Загрузка данных
     local vendingMachines = loadData("User:IanComradeBot/prototypes/vending machines.json")
 
    -- Поиск автомата по ID
     local vendingMachine = findDataById(vendingMachines, id)
     if not vendingMachine or not vendingMachine.AccessReader or not vendingMachine.AccessReader.access then
         return ""
     end
     end


     -- Формирование вывода содержимого автомата
    -- Извлечение доступа
     local result = "== Содержимое автомата ==\n"
    local accessList = mw.text.jsonDecode(vendingMachine.AccessReader.access)
     for itemId, count in pairs(inventory.startingInventory) do
    if not accessList then return "" end
         result = result .. "* " .. itemId .. " — " .. count .. "\n"
 
     -- Формирование строки для передачи в модуль Prototypes/Механика/Доступ
     local accessString = ""
     for _, access in ipairs(accessList) do
         accessString = accessString .. "[[\"" .. access .. "\"]],"
     end
     end


     return result
     return '{{#invoke:Prototypes/Механика/Доступ|parse|[' .. accessString .. ']}}'
end
end


-- Функция для получения информации о пополнителе автомата
-- Функция для получения ID пополнителя
local function getRestockOutput(id)
local function getRestockId(id)
     -- Загрузка данных
     -- Загрузка данных
     local vendingMachines = loadData("User:IanComradeBot/prototypes/vending machines.json")
     local vendingMachines = loadData("User:IanComradeBot/prototypes/vending machines.json")
     local restockData = loadData("User:IanComradeBot/prototypes/vending machines/restock.json")
     local restocks = loadData("User:IanComradeBot/prototypes/vending machines/restock.json")


     -- Поиск автомата по ID
     -- Поиск автомата по ID
     local vendingMachine = findDataById(vendingMachines, id)
     local vendingMachine = findDataById(vendingMachines, id)
     if not vendingMachine then
     if not vendingMachine then return "" end
        return "Ошибка: автомат с ID \"" .. id .. "\" не найден."
    end


     -- Получение ID пополнителя
     -- Поиск пополнителя по pack
     local packId = vendingMachine.pack
     local restock = findDataById(restocks, vendingMachine.pack)
     for _, restock in ipairs(restockData) do
     if not restock then return "" end
        if restock.canRestock and table.concat(restock.canRestock):find(packId) then
            return "== Пополнитель ==\n* ID пополнителя: " .. restock.id
        end
    end


     return "Ошибка: для автомата с ID \"" .. id .. "\" пополнитель не найден."
     -- Формирование строки с ID пополнителя
    local restockString = restock.id or ""
    return restockString
end
end


Строка 73: Строка 88:
function p.main(frame)
function p.main(frame)
     local id = frame.args.id
     local id = frame.args.id
    local mode = frame.args.mode or ""  -- Определяем, что за режим: 'access', 'inventory' или 'restock'
     if not id then
     if not id then
         return "Ошибка: необходимо указать параметр `id`."
         return ""
     end
     end


     -- Определение действия на основе ID
     -- В зависимости от значения mode выбираем нужную функцию
     if frame.args.mode == "inventory" then
     if mode == "access" then
         return getInventoryOutput(id)
        return getAccessList(id)
     elseif frame.args.mode == "restock" then
    elseif mode == "inventory" then
         return getRestockOutput(id)
         return getInventory(id)
     elseif mode == "restock" then
         return getRestockId(id)
     else
     else
         return "Ошибка: необходимо указать параметр `mode` (inventory или restock)."
         return ""
     end
     end
end
end


return p
return p

Версия от 18:07, 16 января 2025

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

local p = {}

-- Функция для загрузки данных из JSON-файла
local function loadData(filePath)
    local page = mw.title.new(filePath)
    local content = page:getContent()
    return content and mw.text.jsonDecode(content) or nil
end

-- Функция для поиска данных по ID
local function findDataById(data, id)
    if not data then return nil end
    for _, item in ipairs(data) do
        if item.id == id then
            return item
        end
    end
    return nil
end

-- Функция для получения списка содержимого автомата
local function getInventory(id)
    -- Загрузка данных
    local vendingMachines = loadData("User:IanComradeBot/prototypes/vending machines.json")
    local inventories = loadData("User:IanComradeBot/prototypes/vending machines/inventories.json")

    -- Поиск автомата по ID
    local vendingMachine = findDataById(vendingMachines, id)
    if not vendingMachine then return "" end

    -- Поиск инвентаря по pack
    local inventory = findDataById(inventories, vendingMachine.pack)
    if not inventory then return "" end

    -- Формирование строки с содержимым автомата
    local inventoryString = ""
    for item, quantity in pairs(inventory.startingInventory) do
        inventoryString = inventoryString .. "* " .. item .. ": " .. quantity .. "\n"
    end

    return inventoryString
end

-- Функция для получения списка доступов
local function getAccessList(id)
    -- Загрузка данных
    local vendingMachines = loadData("User:IanComradeBot/prototypes/vending machines.json")

    -- Поиск автомата по ID
    local vendingMachine = findDataById(vendingMachines, id)
    if not vendingMachine or not vendingMachine.AccessReader or not vendingMachine.AccessReader.access then
        return ""
    end

    -- Извлечение доступа
    local accessList = mw.text.jsonDecode(vendingMachine.AccessReader.access)
    if not accessList then return "" end

    -- Формирование строки для передачи в модуль Prototypes/Механика/Доступ
    local accessString = ""
    for _, access in ipairs(accessList) do
        accessString = accessString .. "[[\"" .. access .. "\"]],"
    end

    return '{{#invoke:Prototypes/Механика/Доступ|parse|[' .. accessString .. ']}}'
end

-- Функция для получения ID пополнителя
local function getRestockId(id)
    -- Загрузка данных
    local vendingMachines = loadData("User:IanComradeBot/prototypes/vending machines.json")
    local restocks = loadData("User:IanComradeBot/prototypes/vending machines/restock.json")

    -- Поиск автомата по ID
    local vendingMachine = findDataById(vendingMachines, id)
    if not vendingMachine then return "" end

    -- Поиск пополнителя по pack
    local restock = findDataById(restocks, vendingMachine.pack)
    if not restock then return "" end

    -- Формирование строки с ID пополнителя
    local restockString = restock.id or ""
    return restockString
end

-- Основная функция модуля
function p.main(frame)
    local id = frame.args.id
    local mode = frame.args.mode or ""  -- Определяем, что за режим: 'access', 'inventory' или 'restock'

    if not id then
        return ""
    end

    -- В зависимости от значения mode выбираем нужную функцию
    if mode == "access" then
        return getAccessList(id)
    elseif mode == "inventory" then
        return getInventory(id)
    elseif mode == "restock" then
        return getRestockId(id)
    else
        return ""
    end
end

return p