Модуль:Песочница/Pok: различия между версиями
Pok (обсуждение | вклад) Нет описания правки |
Pok (обсуждение | вклад) Нет описания правки |
||
| Строка 5: | Строка 5: | ||
if t1 == t2 then return true end | if t1 == t2 then return true end | ||
if type(t1) ~= "table" or type(t2) ~= "table" then return false end | if type(t1) ~= "table" or type(t2) ~= "table" then return false end | ||
for k, v in pairs(t1) do | for k, v in pairs(t1) do | ||
if | if not deepEqual(v, t2[k]) then | ||
return false | return false | ||
end | end | ||
| Строка 32: | Строка 13: | ||
for k, v in pairs(t2) do | for k, v in pairs(t2) do | ||
if | if not deepEqual(v, t1[k]) then | ||
return false | return false | ||
end | end | ||
| Строка 38: | Строка 19: | ||
return true | return true | ||
end | end | ||
local function getSpritePath(entry) | local function getSpritePath(entry) | ||
return entry.sprite | |||
end | end | ||
| Строка 70: | Строка 28: | ||
local result = {} | local result = {} | ||
if entry.state and entry.sprite then | |||
table.insert(result, { state = state, sprite = sprite }) | table.insert(result, { | ||
state = entry.state, | |||
sprite = entry.sprite | |||
}) | |||
end | end | ||
return (#result > 0) and result or nil | |||
end | |||
local function getTextureBaseUrl(project) | |||
if project == "Goob" then | |||
return "https://github.com/space-syndicate/Goob-Station/blob/master/Resources/Textures/" | |||
end | end | ||
return "https://github.com/space-syndicate/space-station-14/blob/master/Resources/Textures/" | |||
end | end | ||
local function generateRepeatTemplate(data) | local function generateRepeatTemplate(data, project) | ||
local spriteGroups = {} | local spriteGroups = {} | ||
for | for id, entry in pairs(data) do | ||
local found = false | local found = false | ||
for _, group in pairs(spriteGroups) do | for _, group in pairs(spriteGroups) do | ||
local g = group[1] | |||
if entry.sprite == g.sprite and entry.state == g.state then | |||
table.insert(group, entry) | table.insert(group, { id = id, entry = entry }) | ||
found = true | found = true | ||
break | break | ||
| Строка 142: | Строка 63: | ||
if not found then | if not found then | ||
table.insert(spriteGroups, {entry}) | table.insert(spriteGroups, { | ||
{ id = id, entry = entry } | |||
}) | |||
end | end | ||
end | end | ||
local result = {} | local result = {} | ||
for _, group in pairs(spriteGroups) do | for _, group in pairs(spriteGroups) do | ||
if #group > 1 then | if #group > 1 then | ||
local idLinks = {} | local idLinks = {} | ||
for _, | |||
table.insert(idLinks, "[[:Файл:" .. | for _, obj in pairs(group) do | ||
local id = obj.id | |||
local prefix = (project ~= "" and JsonPaths.has(id)) and (project .. ":") or "" | |||
table.insert(idLinks, "[[:Файл:" .. prefix .. id .. ".png]]") | |||
end | end | ||
table.insert(result, mw.getCurrentFrame():preprocess( | table.insert(result, mw.getCurrentFrame():preprocess( | ||
"{{Entity Sprite/Repeat|" .. table.concat(idLinks, " ") .. "|" .. group[1].id .. "}}" | "{{Entity Sprite/Repeat|" .. | ||
table.concat(idLinks, " ") .. | |||
"|" .. group[1].id .. | |||
"}}" | |||
)) | )) | ||
end | end | ||
| Строка 162: | Строка 93: | ||
end | end | ||
local function generateTemplate(entry, | local function generateTemplate(id, entry, baseUrl, project) | ||
local spritePath = getSpritePath(entry) | local spritePath = getSpritePath(entry) | ||
if not | if not id or not spritePath then | ||
return nil | return nil | ||
end | end | ||
local prefix = (project ~= "" and JsonPaths.has(id)) and (project .. ":") or "" | |||
local states = getSpriteStates(entry) | |||
local stateStr = "" | |||
if states then | |||
local links = {} | |||
for _, item in ipairs(states) do | |||
local url = baseUrl .. item.sprite .. "/" .. item.state .. ".png" | |||
table.insert(links, "[" .. url .. " " .. item.state .. "]") | |||
end | end | ||
stateStr = table.concat(links, ", ") | |||
end | end | ||
return | return mw.getCurrentFrame():preprocess( | ||
"{{Entity Sprite/Image|" .. | |||
prefix .. id .. | |||
"|" .. baseUrl .. spritePath .. | |||
"|" .. stateStr .. | |||
"}}" | |||
) | |||
end | end | ||
function p.main(frame) | function p.main(frame) | ||
local action = frame.args[1] | local action = frame.args[1] | ||
local | |||
local project = JsonPaths.project() | |||
local baseUrl = getTextureBaseUrl(project) | |||
local dataPage = JsonPaths.get("prototype/sprite.json") | local dataPage = JsonPaths.get("prototype/sprite.json") | ||
local spriteData = mw.loadData(dataPage) | local spriteData = mw.loadData(dataPage) | ||
if not spriteData or type(spriteData) ~= "table" then | if not spriteData or type(spriteData) ~= "table" then | ||
return "Ошибка: | return "Ошибка загрузки JSON: " .. dataPage | ||
end | end | ||
if action == "repeat" then | if action == "repeat" then | ||
return generateRepeatTemplate(spriteData) | return generateRepeatTemplate(spriteData, project) | ||
elseif action == "image" then | elseif action == "image" then | ||
local result = {} | local result = {} | ||
for | |||
local | for id, entry in pairs(spriteData) do | ||
if | local t = generateTemplate(id, entry, baseUrl, project) | ||
table.insert(result, | if t then | ||
table.insert(result, t) | |||
end | end | ||
end | end | ||
return table.concat(result, "\n") | return table.concat(result, "\n") | ||
end | end | ||
return nil | |||
end | end | ||
return p | return p | ||