Module:GetRecipes: Difference between revisions
From Eco - English Wiki
[unchecked revision] | [unchecked revision] |
No edit summary |
No edit summary |
||
Line 50: | Line 50: | ||
if productsList[item] ~= nil then | if productsList[item] ~= nil then | ||
for num = 1, #productsList do | for num = 1, #productsList do | ||
test = test.. 'PRODUCTS \n' | test = test .. 'PRODUCTS \n' | ||
test = test .. productsList[item][num] .. '\n' | test = test .. tostring(productsList[item][num]) .. '\n' | ||
--if (productsList[item][num] ~= '' and recipeList[productsList[item][num]] ~= nil) then | --if (productsList[item][num] ~= '' and recipeList[productsList[item][num]] ~= nil) then | ||
--products[num] = recipeList[productsList[item][num]] | --products[num] = recipeList[productsList[item][num]] | ||
Line 60: | Line 60: | ||
if ingredientsList[item] ~= nil then | if ingredientsList[item] ~= nil then | ||
for num = 1, #ingredientsList do | for num = 1, #ingredientsList do | ||
test = test.. 'INGEDIENTS \n' | test = test .. 'INGEDIENTS \n' | ||
test = test .. productsList[item][num] .. '\n' | test = test .. tostring(productsList[item][num]) .. '\n' | ||
--if (ingredientsList[item][num] ~= '' and recipeList[ingredientsList[item][num]] ~= nil) then | --if (ingredientsList[item][num] ~= '' and recipeList[ingredientsList[item][num]] ~= nil) then | ||
--ingredients[num] = recipeList[ingredientsList[item][num]] | --ingredients[num] = recipeList[ingredientsList[item][num]] |
Revision as of 06:50, 31 January 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 = {}
-- Grabs args from the parent frame
-- Trims and parses the args into a table, then returns the table
function norm()
local origArgs = mw.getCurrentFrame():getParent().args
local args = {}
for k, v in pairs( origArgs ) do
v = mw.text.trim( tostring( v ) )
if v ~= '' then
args[k] = v
end
end
return args
end
-- Main entry point for the Module
function p.main()
local test = ''
-- get args from the Template
local args = norm()
-- assign variables for item, table, and group
local item = args.item
local table = args.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 > table > group
if item ~= nil then
if productsList[item] ~= nil then
for num = 1, #productsList do
test = test .. 'PRODUCTS \n'
test = test .. tostring(productsList[item][num]) .. '\n'
--if (productsList[item][num] ~= '' and recipeList[productsList[item][num]] ~= nil) then
--products[num] = recipeList[productsList[item][num]]
--end
end
end
if ingredientsList[item] ~= nil then
for num = 1, #ingredientsList do
test = test .. 'INGEDIENTS \n'
test = test .. tostring(productsList[item][num]) .. '\n'
--if (ingredientsList[item][num] ~= '' and recipeList[ingredientsList[item][num]] ~= nil) then
--ingredients[num] = recipeList[ingredientsList[item][num]]
--end
end
end
return test
--return parser.formattedItem( products, ingredients, item )
--elseif table ~= nil then
--for num = 1, #tableList[table] do
--recipes[num] = recipeList[tableList[table][num]]
--end
--return parser.formattedTable( recipes, table )
else
return 'Invalid use of parameters, please see [[Template:GetRecipes]].'
end
end
return p