Modul:GetRecipes: Unterschied zwischen den Versionen

Aus Eco - Deutsches Wiki
Wechseln zu:Navigation, Suche
[unmarkierte Version][gesichtete Version]
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
 
(5 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt)
Zeile 1: Zeile 1:
-- Module:GetRecipes (https://wiki.play.eco/en/Module:GetRecipes)
local p = {}
local p = {}


local Utils = require('Module:Utils')


-- Grabs args from the parent frame
-- Main entry point for the Module
-- Trims and parses the args into a table, then returns the table
function p.main(frame)
function norm()
  local test = ''
    local origArgs = mw.getCurrentFrame():getParent().args
 
     local args = {}
  -- get args from the Template
      
  local args = Utils.normaliseArgs(frame)
     for k, v in pairs( origArgs ) do
 
         v = mw.text.trim( tostring( v ) )
  -- assign variables for item, table, and group
         if v ~= '' then
  local item = args.item
             args[k] = v
  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 pairs(itemProducts) do
        -- HACK: Skill books don't show us as a product of research pages, only the skill name.
         if string.sub(item, string.len(item) - 9) == 'Skill Book' then
            if (itemProduct ~= '' and recipeList[itemProduct .. ' Skill Book'] ~= nil) then
                table.insert(products, recipeList[itemProduct .. ' Skill Book'])
            end
         elseif (itemProduct ~= '' and recipeList[itemProduct] ~= nil) then
             table.insert(products, recipeList[itemProduct])
         end
         end
      end
     end
     end
   
    return args
end


    local itemIngredients


-- Main entry point for the Module
     -- HACK Attempt to handle issue with tool recipes
function p.main()
     if ingredientsList[item] and #ingredientsList[item] == 1 and ingredientsList[item][1] == '' then
     -- get args from the Template
      itemIngredients = {item}
     local args = norm()
     elseif ingredientsList[item] then
   
      itemIngredients = ingredientsList[item]
     -- assign variables for item, table, and group
     end
    local item = args.item
     local table = args.table
    local group = args.group


     -- load list of recipes
     if itemIngredients ~= nil then
    local completeList = require( "Module:CraftingRecipes" )
      for _, itemIngredient in pairs(itemIngredients) do
    local recipeList = completeList.recipes
        if itemIngredient ~= '' then
    local itemList = completeList.items
          if recipeList[itemIngredient] ~= nil then
    local tableList = completeList.tables
            table.insert(ingredients, recipeList[itemIngredient])
   
          -- HACK: Skill books don't show us as a product of research pages, only the skill name.
    -- groups no longer exists. Need to check all dependencies on this throughout other modules. Expecting implication to be removal of 'used in' table in the wiki.
          elseif recipeList[itemIngredient .. ' Skill Book'] ~= nil then
    --local groupList = completeList.groups
            table.insert(ingredients, recipeList[itemIngredient .. ' Skill Book'])
   
          end
    -- initialize a table to store recipes
        end
    local recipes = {}
      end
   
     end
     -- load CraftingParser
     return parser.formattedItem(products, ingredients, item)
     local parser = require( "Module:CraftingParser" )


      -- priority: item > table > group
  elseif tag ~= nil then
    if item ~= nil then
    itemIngredients = {}   
if productsList[item] ~= nil then
     
local built = 1
    -- Tags do not appear in the 'products' list, so have to process manually
for num = 1, #productsList[item] do
    for recipeName, recipe in pairs(recipeList) do
if (productsList[item][num] ~= '' and recipeList[productsList[item][num]] ~= nil) then
      local foundIngredient = false
products[built] = recipeList[productsList[item][num]]
      for _, variant in pairs(recipe.variants) do
built = built + 1
        for _, ingredient in pairs(variant.ingredients) do
end
          if ingredient[1] == 'TAG' and ingredient[2] == tag then
end
            foundIngredient = true
end
          end
if ingredientsList[item] ~= nil then
local built = 1
for num = 1, #ingredientsList[item] do
if (ingredientsList[item][num] ~= '' and recipeList[ingredientsList[item][num]] ~= nil) then
ingredients[built] = recipeList[ingredientsList[item][num]]
built = built + 1
end
end
end
      return parser.formattedItem( products, ingredients, item )
       
    elseif table ~= nil then
        for num = 1, #tableList[table] do
            recipes[num] = recipeList[tableList[table][num]]
         end
         end
      end
      if foundIngredient then
        table.insert(itemIngredients, recipeName)
      end
    end


         return parser.formattedTable( recipes, table )
    if itemIngredients ~= nil then
      for _, itemIngredient in pairs(itemIngredients) do
         if itemIngredient ~= '' then
          if recipeList[itemIngredient] ~= nil then
    table.insert(ingredients, recipeList[itemIngredient])
          end
        end
      end
    end
    return parser.formattedItem(products, ingredients, tag)
   
  elseif craftTable ~= nil then


     else
     for _, tbl in pairs(tableList[craftTable]) do
        return 'Invalid use of parameters, please see [[Template:GetRecipes]].'
      table.insert(recipes, recipeList[tbl])
     end
     end
   
    return parser.formattedTable(recipes, craftTable)
   
  else
    return 'Invalid use of parameters, please see [[Template:GetRecipes]].'
  end
end
end


return p
return p

Aktuelle Version vom 23. August 2021, 07:05 Uhr

Documentation[Quelltext bearbeiten]

This module is called by Vorlage: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 Modul:CraftingRecipes 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 pairs(itemProducts) do
         -- HACK: Skill books don't show us as a product of research pages, only the skill name.
        if string.sub(item, string.len(item) - 9) == 'Skill Book' then
            if (itemProduct ~= '' and recipeList[itemProduct .. ' Skill Book'] ~= nil) then
                table.insert(products, recipeList[itemProduct .. ' Skill Book'])
            end
        elseif (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 pairs(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] == tag then
             foundIngredient = true
           end
        end
      end
      if foundIngredient then
        table.insert(itemIngredients, recipeName)
      end
    end

    if itemIngredients ~= nil then
      for _, itemIngredient in pairs(itemIngredients) do
        if itemIngredient ~= '' then
          if recipeList[itemIngredient] ~= nil then
	    table.insert(ingredients, recipeList[itemIngredient])
          end
        end
      end
    end
    return parser.formattedItem(products, ingredients, tag)
    
  elseif craftTable ~= nil then

    for _, tbl in pairs(tableList[craftTable]) do
      table.insert(recipes, recipeList[tbl])
    end
    
    return parser.formattedTable(recipes, craftTable)
    
  else
    return 'Invalid use of parameters, please see [[Template:GetRecipes]].'
  end
end

return p