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

Материал из Space Station 14 Вики
Нет описания правки
Метка: ручная отмена
мНет описания правки
 
(не показано 7 промежуточных версий этого же участника)
Строка 6: Строка 6:
-- Обёртка для вызова перевода
-- Обёртка для вызова перевода
local function translate(value)
local function translate(value)
return "{{#invoke:Ftl|main|translation|" .. value .. "}}"
return "{{ucfirst:{{#invoke:Ftl|main|translation|" .. value .. "}}}}"
end
end


-- Обёртка для доступа
-- Обёртка для доступа
local function wrapAccess(value)
local function wrapAccess(value)
return "{{#invoke:Prototypes/Механика/Доступ|main|" .. value .. "}}"
return "{{#invoke:Prototypes/Механика/Доступ|main|translate|" .. value .. "}}"
end
end


Строка 43: Строка 43:
if mode == "requirements" then
if mode == "requirements" then
if job.requirements then
    if job.requirements then
for _, req in ipairs(job.requirements) do
        for _, req in ipairs(job.requirements) do
if req["!type"] == "DepartmentTimeRequirement" and req.department and req.time then
            if req["!type"] == "DepartmentTimeRequirement" and req.department and req.time then
result = result .. "<b>{{ucfirst:{{#invoke:Ftl|main|translation|department-" .. req.department .. "}}}}</b>: " ..
                result = result .. "<li>[[{{ucfirst:{{#invoke:Ftl|main|translation|department-" .. req.department .. "}}}}]]: " ..
formatTime(req.time) .. "<br>"
                    formatTime(req.time) .. "</li>"
elseif req["!type"] == "RoleTimeRequirement" and req.role and req.time then
            elseif req["!type"] == "RoleTimeRequirement" and req.role and req.time then
result = result .. "<b>{{ucfirst:{{#invoke:Ftl|main|translation|" .. req.role .. "}}}}</b>: " ..
                result = result .. "<li>[[{{ucfirst:{{#invoke:Ftl|main|translation|" .. req.role .. "}}}}]]: " ..
formatTime(req.time) .. "<br>"
                    formatTime(req.time) .. "</li>"
end
            elseif req["!type"] == "OverallPlaytimeRequirement" and req.time then
end
                result = result .. "<li>Общее время: " .. formatTime(req.time) .. "</li>"
end
            end
        end
    end
    result = "<ul>" .. result .. "</ul>"
   
elseif mode == "access" then
elseif mode == "access" then
if job.access then
    local accesses = {}
for _, access in ipairs(job.access) do
    if job.accessGroups then
result = result .. wrapAccess(access)
        local groups = type(job.accessGroups[1]) == "table" and job.accessGroups or { job.accessGroups }
end
        for _, group in ipairs(groups) do
end
            for _, access in ipairs(group) do
                table.insert(accesses, wrapAccess(access))
            end
        end
    elseif job.access then
        for _, access in ipairs(job.access) do
            table.insert(accesses, wrapAccess(access))
        end
    end
    result = table.concat(accesses, ", ")
 
elseif mode == "name" then
elseif mode == "name" then
if job.name then
if job.name then

Текущая версия от 06:55, 6 марта 2025

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

-- Загрузка данных
local jobData = mw.loadData("Модуль:IanComradeBot/job.json/data")

local p = {}

-- Обёртка для вызова перевода
local function translate(value)
	return "{{ucfirst:{{#invoke:Ftl|main|translation|" .. value .. "}}}}"
end

-- Обёртка для доступа
local function wrapAccess(value)
	return "{{#invoke:Prototypes/Механика/Доступ|main|translate|" .. value .. "}}"
end

-- Форматирование времени
local function formatTime(seconds)
	return "{{#invoke:Code/Формат/Время|main|seconds|" .. seconds .. "}}"
end

function p.main(frame)
	local args = frame.args
	local mode = args[1] or ""
	local roleId = args[2] or ""
	
	if roleId == "" then
		return "Ошибка: не указан id роли"
	end
	
	local job = nil
	for _, j in ipairs(jobData) do
		if j.id == roleId then
			job = j
			break
		end
	end
	
	if not job then
		return "Ошибка: роль с id '" .. roleId .. "' не найдена"
	end
	
	local result = ""
	
	if mode == "requirements" then
	    if job.requirements then
	        for _, req in ipairs(job.requirements) do
	            if req["!type"] == "DepartmentTimeRequirement" and req.department and req.time then
	                result = result .. "<li>[[{{ucfirst:{{#invoke:Ftl|main|translation|department-" .. req.department .. "}}}}]]: " ..
	                    formatTime(req.time) .. "</li>"
	            elseif req["!type"] == "RoleTimeRequirement" and req.role and req.time then
	                result = result .. "<li>[[{{ucfirst:{{#invoke:Ftl|main|translation|" .. req.role .. "}}}}]]: " ..
	                    formatTime(req.time) .. "</li>"
	            elseif req["!type"] == "OverallPlaytimeRequirement" and req.time then
	                result = result .. "<li>Общее время: " .. formatTime(req.time) .. "</li>"
	            end
	        end
	    end
	    result = "<ul>" .. result .. "</ul>"
    
	elseif mode == "access" then
	    local accesses = {}
	    if job.accessGroups then
	        local groups = type(job.accessGroups[1]) == "table" and job.accessGroups or { job.accessGroups }
	        for _, group in ipairs(groups) do
	            for _, access in ipairs(group) do
	                table.insert(accesses, wrapAccess(access))
	            end
	        end
	    elseif job.access then
	        for _, access in ipairs(job.access) do
	            table.insert(accesses, wrapAccess(access))
	        end
	    end
	    result = table.concat(accesses, ", ")

	elseif mode == "name" then
		if job.name then
			result = translate(job.name)
		end
		
	elseif mode == "description" then
		if job.description then
			result = translate(job.description)
		end
		
	elseif mode == "supervisors" then
		if job.supervisors then
			result = translate(job.supervisors)
		end
		
	else
		return "Ошибка: неизвестный режим '" .. mode .. "'"
	end
	
	return frame:preprocess(result)
end

return p