Модуль:Meals Lookup: различия между версиями
Материал из Space Station 14 Вики
Mhamster (обсуждение | вклад) Нет описания правки |
Mhamster (обсуждение | вклад) Нет описания правки |
||
Строка 34: | Строка 34: | ||
function p.buildsolids(frame, array) | function p.buildsolids(frame, array) | ||
local out = "" | local out = "" | ||
for | for solid, amount in pairs(array) do | ||
out = out .. frame:expandTemplate{ title = "Recipe Component", item = e.getname(frame, | out = out .. frame:expandTemplate{ title = "Recipe Component", item = e.getname(frame, solid), amount = amount} | ||
end | end | ||
return out | return out | ||
Строка 81: | Строка 81: | ||
function p.tests(frame) | function p.tests(frame) | ||
local out = "" | local out = "" | ||
out = out .. p.buildsolids(frame, p.getrecipe(frame, frame.args[1], frame.args[2])) | out = out .. p.buildsolids(frame, p.getmicrowaverecipesolids(frame, p.getrecipe(frame, frame.args[1], frame.args[2]))) | ||
-- out = out .. p.buildmicrowaverecipebox(frame, frame.args[1]) | -- out = out .. p.buildmicrowaverecipebox(frame, frame.args[1]) | ||
return out | return out |
Версия от 04:04, 22 октября 2023
Теги
Параметры для сортировки выводимых рецептов после вызова функции способа приготовления. Теги перечисляются через ,
в параметрах.
Список тегов entity находится здесь: Участник:IanComradeBot/prototypes/entity tags.json
Параметр | Описание | Обязателен? |
---|---|---|
|blackListTags= | Исключает продукты с введенными тегами. Пример: {{#invoke:Meals Lookup|buildmicrowaverecipes|blackListTags=Pizza, Cake}} . | Нет |
|whiteListTags= | Выводит только продукты с введенными тегами. Пример: {{#invoke:Meals Lookup|buildmicrowaverecipes|whiteListTags=Pizza}} . | Нет |
local prototypes = mw.loadData("Module:Meals Lookup/data")
local e = require("Module:Entity_Lookup")
local p = {}
p.meals = prototypes.meals
function p.getrecipesfromtype(frame, type) -- {{#invoke:Meals Lookup|getrecipesfromtype|ProtoID}}
return p.meals[type]
end
function p.getrecipe(frame, type, id)
return p.getrecipesfromtype(frame, type)[id]
end
function p.getmicrowaverecipesolids(frame, recipe)
local out = {}
for ingredient, amount in pairs(recipe["solids"]) do
-- table.insert(out, ingredient, amount)
out[ingredient] = amount
end
return out
end
function p.getmicrowaverecipereagents(frame, recipe)
local out = {}
for ingredient, amount in pairs(recipe["reagents"]) do
-- table.insert(out, ingredient, amount)
out[ingredient] = amount
end
return out
end
function p.buildsolids(frame, array)
local out = ""
for solid, amount in pairs(array) do
out = out .. frame:expandTemplate{ title = "Recipe Component", item = e.getname(frame, solid), amount = amount}
end
return out
end
function p.buildreagents(frame, array)
local out = ""
for item, amount in pairs(array) do
out = out .. frame:expandTemplate{ title = "Chem Recipe Component", reagent = item, amount = amount}
end
return out
end
function p.buildmicrowaverecipebox(frame, recipeId)
local out = "hehe"
local id = ""
if frame.args["id"] ~= nil then id = frame.args["id"]
else id = recipeId end
local recipe = p.getrecipe(frame, "microwaveRecipes", id)
local solids = p.buildsolids(frame, p.getmicrowaverecipesolids(frame, recipe))
local reagents = p.buildreagents(frame, p.getmicrowaverecipereagents(frame, recipe))
out = frame:expandTemplate{ title = "Recipe Box",
name = e.getname(frame, recipe["result"]),
["component-1"] = solids .. reagents,
transformer = frame:expandTemplate{title="Recipe Transformers", "microwaveRecipes", recipe["time"]},
result = frame:expandTemplate{ title = "Recipe Component", item = e.getname(frame, recipe["result"])}}
return out
end
-- returns all types for a recipe with given id, should not be used out of module
function p.getrecipetypes(frame, id)
local out = {}
for type, recipes in pairs(p.meals) do
for recipeId, recipe in pairs(recipes) do
if (recipeId:gsub(' ', '') == id:gsub(' ', '')) or (recipe["id"]:gsub(' ', '') == id:gsub(' ', '')) then
table.insert(out, type)
break
end
end
end
return out
end
-- tests.
function p.tests(frame)
local out = ""
out = out .. p.buildsolids(frame, p.getmicrowaverecipesolids(frame, p.getrecipe(frame, frame.args[1], frame.args[2])))
-- out = out .. p.buildmicrowaverecipebox(frame, frame.args[1])
return out
end
return p