Module:GetRecipes: Difference between revisions
From Eco - English Wiki
[unchecked revision] | [unchecked revision] |
No edit summary |
No edit summary |
||
Line 14: | Line 14: | ||
local item = args.item | local item = args.item | ||
local tag = args.tag | local tag = args.tag | ||
local craftTable = args.table | local craftTable = args.table -- Don't override table | ||
local group = args.group | local group = args.group | ||
Line 32: | Line 32: | ||
local parser = require("Module:CraftingParser") | local parser = require("Module:CraftingParser") | ||
-- priority: item > table > group | -- priority: item > tag > table > group | ||
if item ~= nil then | if item ~= nil then | ||
local itemProducts | local itemProducts | ||
Line 44: | Line 44: | ||
if itemProducts ~= nil then | if itemProducts ~= nil then | ||
for _, itemProduct in | for _, itemProduct in ipairs(itemProducts) do | ||
if (itemProduct ~= '' and recipeList[itemProduct] ~= nil) then | if (itemProduct ~= '' and recipeList[itemProduct] ~= nil) then | ||
table.insert(products, recipeList[itemProduct]) | table.insert(products, recipeList[itemProduct]) | ||
Line 52: | Line 52: | ||
local itemIngredients | local itemIngredients | ||
if | |||
itemIngredients = {} | -- HACK Attempt to handle issue with tool recipes | ||
if ingredientsList[item] and #ingredientsList[item] == 1 and ingredientsList[item][1] == '' then | |||
itemIngredients = {item} | |||
elseif ingredientsList[item] then | |||
itemIngredients = ingredientsList[item] | |||
end | |||
if itemIngredients ~= nil then | |||
for _, itemIngredient in ipairs(itemIngredients) do | |||
if itemIngredient ~= '' then | |||
if recipeList[itemIngredient] ~= nil then | |||
table.insert(ingredients, recipeList[itemIngredient]) | |||
-- HACK: Skill books don't show us as a product of research pages, only the skill name. | |||
elseif recipeList[itemIngredient .. ' Skill Book'] ~= nil then | |||
table.insert(ingredients, recipeList[itemIngredient .. ' Skill Book']) | |||
end | |||
end | |||
end | |||
end | |||
return parser.formattedItem(products, ingredients, item) | |||
elseif tag ~= nil then | |||
itemIngredients = {} | |||
-- Tags do not appear in the 'products' list, so have to process manually | |||
for recipeName, recipe in pairs(recipeList) do | |||
local foundIngredient = false | |||
for _, variant in pairs(recipe.variants) do | |||
for _, ingredient in pairs(variant.ingredients) do | |||
if ingredient[1] == 'TAG' and ingredient[2] == item then | |||
foundIngredient = true | |||
end | |||
end | end | ||
end | end | ||
if foundIngredient then | |||
table.insert(itemIngredients, recipeName) | |||
if | |||
itemIngredients | |||
end | end | ||
end | end | ||
Line 81: | Line 95: | ||
for _, itemIngredient in ipairs(itemIngredients) do | for _, itemIngredient in ipairs(itemIngredients) do | ||
if itemIngredient ~= '' then | if itemIngredient ~= '' then | ||
if recipeList[itemIngredient] ~= nil then | |||
table.insert(ingredients, recipeList[itemIngredient]) | |||
end | |||
end | end | ||
end | end | ||
end | end | ||
return parser.formattedItem(products, ingredients, item) | return parser.formattedItem(products, ingredients, item) | ||
elseif craftTable ~= nil then | elseif craftTable ~= nil then | ||
for num = 1, #tableList[craftTable] do | for num = 1, #tableList[craftTable] do | ||
recipes[num] = recipeList[tableList[craftTable][num]] | recipes[num] = recipeList[tableList[craftTable][num]] |
Revision as of 23:36, 27 February 2021
Documentation
This module is called by Template:GetRecipes, and is the entry point for modules in the system that displays crafting recipes. It takes the item passed to the template, and uses Module:RecipeData to get every recipe related to the item. The resulting list of recipes is then passed to Module:CraftingParser, and the results from CraftingParser are returned to the template.
If the template is passed, this module creates a table using details from the following Modules:
-- Module:GetRecipes (https://wiki.play.eco/en/Module:GetRecipes)
local p = {}
local Utils = require('Module:Utils')
-- Main entry point for the Module
function p.main(frame)
local test = ''
-- get args from the Template
local args = Utils.normaliseArgs(frame)
-- assign variables for item, table, and group
local item = args.item
local tag = args.tag
local craftTable = args.table -- Don't override table
local group = args.group
-- load list of recipes
local completeList = require("Module:CraftingRecipes")
local recipeList = completeList.recipes
local ingredientsList = completeList.ingredients
local productsList = completeList.products
local tableList = completeList.tables
-- initialize a table to store recipes
local recipes = {}
local products = {}
local ingredients = {}
-- load CraftingParser
local parser = require("Module:CraftingParser")
-- priority: item > tag > table > group
if item ~= nil then
local itemProducts
-- HACK Attempt to handle issue with tool recipes
if productsList[item] and #productsList[item] == 1 and productsList[item][1] == '' then
itemProducts = {item}
elseif productsList[item] then
itemProducts = productsList[item]
end
if itemProducts ~= nil then
for _, itemProduct in ipairs(itemProducts) do
if (itemProduct ~= '' and recipeList[itemProduct] ~= nil) then
table.insert(products, recipeList[itemProduct])
end
end
end
local itemIngredients
-- HACK Attempt to handle issue with tool recipes
if ingredientsList[item] and #ingredientsList[item] == 1 and ingredientsList[item][1] == '' then
itemIngredients = {item}
elseif ingredientsList[item] then
itemIngredients = ingredientsList[item]
end
if itemIngredients ~= nil then
for _, itemIngredient in ipairs(itemIngredients) do
if itemIngredient ~= '' then
if recipeList[itemIngredient] ~= nil then
table.insert(ingredients, recipeList[itemIngredient])
-- HACK: Skill books don't show us as a product of research pages, only the skill name.
elseif recipeList[itemIngredient .. ' Skill Book'] ~= nil then
table.insert(ingredients, recipeList[itemIngredient .. ' Skill Book'])
end
end
end
end
return parser.formattedItem(products, ingredients, item)
elseif tag ~= nil then
itemIngredients = {}
-- Tags do not appear in the 'products' list, so have to process manually
for recipeName, recipe in pairs(recipeList) do
local foundIngredient = false
for _, variant in pairs(recipe.variants) do
for _, ingredient in pairs(variant.ingredients) do
if ingredient[1] == 'TAG' and ingredient[2] == item then
foundIngredient = true
end
end
end
if foundIngredient then
table.insert(itemIngredients, recipeName)
end
end
if itemIngredients ~= nil then
for _, itemIngredient in ipairs(itemIngredients) do
if itemIngredient ~= '' then
if recipeList[itemIngredient] ~= nil then
table.insert(ingredients, recipeList[itemIngredient])
end
end
end
end
return parser.formattedItem(products, ingredients, item)
elseif craftTable ~= nil then
for num = 1, #tableList[craftTable] do
recipes[num] = recipeList[tableList[craftTable][num]]
end
return parser.formattedTable(recipes, craftTable)
else
return 'Invalid use of parameters, please see [[Template:GetRecipes]].'
end
end
return p