Модуль:Research: различия между версиями

Материал из Space Station 14 Вики
мНет описания правки
Нет описания правки
Строка 1: Строка 1:
local p = {}
local p = {}
-- Функция для загрузки JSON-данных
local function loadJsonData()
    local jsonData = mw.title.new('User:IanComradeBot/research prototypes.json'):getContent()
    return mw.text.json.decode(jsonData)
end


function p.main(frame)
function p.main(frame)
-- Подключение CSS файла
    -- Подключение CSS файла
local cssLink = frame:extensionTag('templatestyles', '', {
    local cssLink = frame:extensionTag('templatestyles', '', {
src = 'Шаблон:Research/styles.css'
        src = 'Шаблон:Research/styles.css'
})
    })
 
    local discipline = frame.args.discipline or ""
    local data = loadJsonData()  -- JSON-данные
    local out = cssLink
 
    -- Фильтрация данных по дисциплине
    for tier, items in pairs(data) do
        for _, item in ipairs(items) do
            if item.discipline == discipline then
                local icon = item.icon or ""
                local name = item.name or ""
                local tier = item.tier or ""
                local cost = item.cost or ""
                local recipeUnlocks = item.recipeUnlocks or ""


local icon = frame.args.icon or ""
                local disciplineName = ""
local name = frame.args.name or ""
                if discipline == "Arsenal" then
local discipline = frame.args.discipline or ""
                    disciplineName = "Арсенал"
local tier = frame.args.tier or ""
                elseif discipline == "Industrial" then
local cost = frame.args.cost or ""
                    disciplineName = "Промышленность"
local recipeUnlocks = frame.args.recipeUnlocks or ""
                elseif discipline == "Experimental" then
                    disciplineName = "Экспериментальное"
local disciplineIcon = ""
                elseif discipline == "CivilianServices" then
local disciplineName = ""
                    disciplineName = "Обслуживание персонала"
local out = cssLink
                end


if discipline == "Arsenal" then
                -- Формирование HTML
disciplineName = "Арсенал"
                out = out .. '<div class="research" id="'.. discipline ..'">'
elseif discipline == "Industrial" then
                out = out .. '<div class="research__images">[[Файл:' .. icon .. '.png|64px|центр|link=]]</div>'
disciplineName = "Промышленность"
                out = out .. '<div class="research__name">' .. name .. '[[Файл:' .. discipline .. '.png|16px|link=]]</div>'
elseif discipline == "Experimental" then
                out = out .. '<div class="research__type">'
disciplineName = "Экспериментальное"
                out = out .. '<div>Уровень:  ' .. tier .. ' ,</div>'
elseif discipline == "CivilianServices" then
                out = out .. '<div class="research__category">' .. disciplineName .. '</div>'
disciplineName = "Обслуживание персонала"
                out = out .. '<div>Стоимость: <span style="color:#DA70D6;">' .. cost .. '</span></div>'
end
                out = out .. '</div>'
                out = out .. '<div class="research__unblocks">Разблокирует:'
-- Формирование HTML
                out = out .. '<ul>'
out = out .. '<div class="research" id="'.. discipline ..'">'
                for _, recipe in ipairs(recipeUnlocks) do
out = out .. '<div class="research__images">[[Файл:' .. icon .. '.png|64px|центр|link=]]</div>'
                    out = out .. '<li>{{#invoke:Entity Lookup|createimagetooltip|Файл:' .. recipe .. '.png|' .. recipe .. '|Мета=32x32px,link=}} {{#invoke:Entity Lookup|getname|' .. recipe .. '}}</li>'
out = out .. '<div class="research__name">' .. name .. '[[Файл:' .. discipline .. '.png|16px|link=]]</div>'
                end
out = out .. '<div class="research__type">'
                out = out .. '</ul>'
out = out .. '<div>Уровень:  ' .. tier .. ' ,</div>'
                out = out .. '</div>'
out = out .. '<div class="research__category">' .. disciplineName .. '</div>'
                out = out .. '</div>'
out = out .. '<div>Стоимость: <span style="color:#DA70D6;">' .. cost .. '</span></div>'
            end
out = out .. '</div>'
        end
out = out .. '<div class="research__unblocks">Разблокирует:'
    end
out = out .. '<ul>'
out = out .. frame:preprocess('<li>{{#invoke:Entity Lookup|createimagetooltip|Файл:' .. recipeUnlocks .. '.png|'.. recipeUnlocks .. '|Мета=32x32px,link=}} {{#invoke:Entity Lookup|getname|' .. recipeUnlocks .. '}}</li>')
out = out .. '</ul>'
out = out .. '</div>'
out = out .. '</div>'


return out
    return out
end
end


return p
return p

Версия от 11:26, 6 октября 2024

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

local p = {}

-- Функция для загрузки JSON-данных
local function loadJsonData()
    local jsonData = mw.title.new('User:IanComradeBot/research prototypes.json'):getContent()
    return mw.text.json.decode(jsonData)
end

function p.main(frame)
    -- Подключение CSS файла
    local cssLink = frame:extensionTag('templatestyles', '', {
        src = 'Шаблон:Research/styles.css'
    })

    local discipline = frame.args.discipline or ""
    local data = loadJsonData()  -- JSON-данные
    local out = cssLink

    -- Фильтрация данных по дисциплине
    for tier, items in pairs(data) do
        for _, item in ipairs(items) do
            if item.discipline == discipline then
                local icon = item.icon or ""
                local name = item.name or ""
                local tier = item.tier or ""
                local cost = item.cost or ""
                local recipeUnlocks = item.recipeUnlocks or ""

                local disciplineName = ""
                if discipline == "Arsenal" then
                    disciplineName = "Арсенал"
                elseif discipline == "Industrial" then
                    disciplineName = "Промышленность"
                elseif discipline == "Experimental" then
                    disciplineName = "Экспериментальное"
                elseif discipline == "CivilianServices" then
                    disciplineName = "Обслуживание персонала"
                end

                -- Формирование HTML
                out = out .. '<div class="research" id="'.. discipline ..'">'
                out = out .. '<div class="research__images">[[Файл:' .. icon .. '.png|64px|центр|link=]]</div>'
                out = out .. '<div class="research__name">' .. name .. '[[Файл:' .. discipline .. '.png|16px|link=]]</div>'
                out = out .. '<div class="research__type">'
                out = out .. '<div>Уровень:  ' .. tier .. ' ,</div>'
                out = out .. '<div class="research__category">' .. disciplineName .. '</div>'
                out = out .. '<div>Стоимость: <span style="color:#DA70D6;">' .. cost .. '</span></div>'
                out = out .. '</div>'
                out = out .. '<div class="research__unblocks">Разблокирует:'
                out = out .. '<ul>'
                for _, recipe in ipairs(recipeUnlocks) do
                    out = out .. '<li>{{#invoke:Entity Lookup|createimagetooltip|Файл:' .. recipe .. '.png|' .. recipe .. '|Мета=32x32px,link=}} {{#invoke:Entity Lookup|getname|' .. recipe .. '}}</li>'
                end
                out = out .. '</ul>'
                out = out .. '</div>'
                out = out .. '</div>'
            end
        end
    end

    return out
end

return p