Module:CraftingParser: Difference between revisions
From Eco - English Wiki
[unchecked revision] | [checked revision] |
mNo edit summary |
No edit summary |
||
(76 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
local Utils = require('Module:Utils') | |||
local L = require('Module:Localization') | |||
-- Compares two recipes ( a < b ? true : false ) | -- Compares two recipes ( a < b ? true : false ) | ||
function recipeCompare(a, b) | function recipeCompare(a, b) | ||
if not a.efficiencySkills[1] and not b.efficiencySkills[1] then return false | |||
elseif a.efficiencySkills[1] and not b.efficiencySkills[1] then return false | --not in v0.9 | ||
elseif not a.efficiencySkills[1] and b.efficiencySkills[1] then return true | --if not a.efficiencySkills[1] and not b.efficiencySkills[1] then return false | ||
elseif a.efficiencySkills[1] < b.efficiencySkills[1] then return true | --elseif a.efficiencySkills[1] and not b.efficiencySkills[1] then return false | ||
elseif a.efficiencySkills[1] > b.efficiencySkills[1] then return false | --elseif not a.efficiencySkills[1] and b.efficiencySkills[1] then return true | ||
--elseif a.efficiencySkills[1] < b.efficiencySkills[1] then return true | |||
--elseif a.efficiencySkills[1] > b.efficiencySkills[1] then return false | |||
if (a.skillNeeds[1] ~= nil and b.skillNeeds[1] ~= nil) then | |||
if a.skillNeeds[1][1] < b.skillNeeds[1][1] then | |||
return true | |||
elseif a.skillNeeds[1][1] > b.skillNeeds[1][1] then | |||
return false | |||
elseif not a.skillNeeds[1][2] and b.skillNeeds[1][2] then | |||
return true | |||
elseif a.skillNeeds[1][2] and not b.skillNeeds[1][2] then | |||
return false | |||
elseif a. | elseif a.skillNeeds[1][2] and a.skillNeeds[1][2] < b.skillNeeds[1][2] then | ||
elseif a. | return true | ||
else return a. | elseif a.skillNeeds[1][2] and a.skillNeeds[1][2] > b.skillNeeds[1][2] then | ||
return false | |||
end | |||
elseif a.defaultVariant < b.defaultVariant then | |||
return true | |||
elseif a.defaultVariant > b.defaultVariant then | |||
return false | |||
-- else | |||
-- return a.defaultVariant <= b.defaultVariant | |||
end | end | ||
end | end | ||
Line 63: | Line 59: | ||
['mater3'] = {args['material'..i..'.3'], args['materialImg'..i..'.3'], args['materialNum'..i..'.3']}, | ['mater3'] = {args['material'..i..'.3'], args['materialImg'..i..'.3'], args['materialNum'..i..'.3']}, | ||
['mater4'] = {args['material'..i..'.4'], args['materialImg'..i..'.4'], args['materialNum'..i..'.4']}, | ['mater4'] = {args['material'..i..'.4'], args['materialImg'..i..'.4'], args['materialNum'..i..'.4']}, | ||
[' | ['cTime'] = args['craftTime'..i], | ||
['affSkill1'] = {args['affectSkill'..i..'.1'], args['affectSkillImg'..i..'.1']}, | ['affSkill1'] = {args['affectSkill'..i..'.1'], args['affectSkillImg'..i..'.1']}, | ||
['affSkill2'] = {args['affectSkill'..i..'.2'], args['affectSkillImg'..i..'.2']}, | ['affSkill2'] = {args['affectSkill'..i..'.2'], args['affectSkillImg'..i..'.2']}, | ||
--TODO - construct new parts of the table here | |||
}) | }) | ||
end | end | ||
Line 76: | Line 73: | ||
function formatRecipes( recipes ) | function formatRecipes( recipes ) | ||
-- Sort recipes | -- Sort recipes | ||
table.sort( recipes, | table.sort( recipes, recipeCompare ) | ||
return recipes | return recipes | ||
end | end | ||
-- Called from Template:RecipeTable | -- Called from Template:RecipeTable | ||
Line 122: | Line 83: | ||
function p.raw( f ) | function p.raw( f ) | ||
-- get args from the Template, parse them into recipes | -- get args from the Template, parse them into recipes | ||
local recipes = frameParse( | local recipes = frameParse( Utils.normaliseArgs(f) ) | ||
-- Format the recipes | -- Format the recipes | ||
Line 128: | Line 89: | ||
-- Call RecipeTable | -- Call RecipeTable | ||
local recipeTable = require( "Module: | local recipeTable = require( "Module:RecipeTable" ) | ||
return recipeTable.main( recipes ) | return recipeTable.main( recipes ) | ||
end | end | ||
Line 134: | Line 95: | ||
-- Called from Module:GetRecipes | -- Called from Module:GetRecipes | ||
-- Calls Module: | -- Calls Module:RecipeTable | ||
-- Returns the wikitext returned by Module:RecipeTable | -- Returns the wikitext returned by Module:RecipeTable | ||
function p.formattedItem( | function p.formattedItem( products, ingredients, item ) | ||
-- Format the recipes, and call RecipeTable on each table | -- Format the recipes, and call RecipeTable on each table | ||
local recipeTable = require( "Module: | local recipeTable = require( "Module:RecipeTable" ) | ||
local returnVal = '=== '..L.t('Crafting Recipes')..' ===\n\n' | |||
if (products ~= nil and #products ~= 0) then | |||
returnVal = returnVal .. recipeTable.main( formatRecipes(products) ) .. '\n\n=== '..L.t('Used in Recipes')..' ===\n\n' | |||
returnVal = returnVal .. | |||
else | else | ||
returnVal = returnVal .. | returnVal = returnVal .. "''"..L.t('None').."''\n\n=== "..L.t('Used in Recipes').." ===\n\n " | ||
end | end | ||
if # | |||
returnVal = returnVal .. | if (ingredients ~= nil and #ingredients ~= 0) then | ||
returnVal = returnVal .. recipeTable.main( formatRecipes(ingredients) ) | |||
else | else | ||
returnVal = returnVal .. | returnVal = returnVal .. "''"..L.t('None').."''\n" | ||
end | end | ||
Line 168: | Line 123: | ||
function p.formattedTable( recipes, table ) | function p.formattedTable( recipes, table ) | ||
-- Format the recipes, and call RecipeTable | -- Format the recipes, and call RecipeTable | ||
local recipeTable = require( "Module: | local recipeTable = require( "Module:RecipeTable" ) | ||
local returnVal = '=== Recipes at ' | local returnVal = '=== ' .. L.t('Recipes at %s'):format(table) .. ' ===\n\n' | ||
if #recipes == 0 then | if #recipes == 0 then | ||
returnVal = returnVal .. "''None''\n" | returnVal = returnVal .. "''"..L.t('None').."''\n" | ||
else | else | ||
returnVal = returnVal .. recipeTable.main( formatRecipes( recipes ) ) | returnVal = returnVal .. recipeTable.main( formatRecipes( recipes ) ) | ||
Line 185: | Line 140: | ||
function p.formattedGroup( recipes, group ) | function p.formattedGroup( recipes, group ) | ||
-- Format the recipes, and call RecipeTable | -- Format the recipes, and call RecipeTable | ||
local recipeTable = require( "Module: | local recipeTable = require( "Module:RecipeTable" ) | ||
local returnVal = '=== ' .. group .. ' | local returnVal = '=== ' .. L.t('%s Recipes'):format(group) .. ' ===\n\n' | ||
if #recipes == 0 then | if #recipes == 0 then | ||
returnVal = returnVal .. "''None''\n" | returnVal = returnVal .. "''"..L.t('None').."''\n" | ||
else | else | ||
returnVal = returnVal .. recipeTable.main( formatRecipes( recipes ) ) | returnVal = returnVal .. recipeTable.main( formatRecipes( recipes ) ) |
Latest revision as of 10:35, 10 June 2024
This module contains functions for Module:GetRecipes. It uses the following Modules:
local p = {}
local Utils = require('Module:Utils')
local L = require('Module:Localization')
-- Compares two recipes ( a < b ? true : false )
function recipeCompare(a, b)
--not in v0.9
--if not a.efficiencySkills[1] and not b.efficiencySkills[1] then return false
--elseif a.efficiencySkills[1] and not b.efficiencySkills[1] then return false
--elseif not a.efficiencySkills[1] and b.efficiencySkills[1] then return true
--elseif a.efficiencySkills[1] < b.efficiencySkills[1] then return true
--elseif a.efficiencySkills[1] > b.efficiencySkills[1] then return false
if (a.skillNeeds[1] ~= nil and b.skillNeeds[1] ~= nil) then
if a.skillNeeds[1][1] < b.skillNeeds[1][1] then
return true
elseif a.skillNeeds[1][1] > b.skillNeeds[1][1] then
return false
elseif not a.skillNeeds[1][2] and b.skillNeeds[1][2] then
return true
elseif a.skillNeeds[1][2] and not b.skillNeeds[1][2] then
return false
elseif a.skillNeeds[1][2] and a.skillNeeds[1][2] < b.skillNeeds[1][2] then
return true
elseif a.skillNeeds[1][2] and a.skillNeeds[1][2] > b.skillNeeds[1][2] then
return false
end
elseif a.defaultVariant < b.defaultVariant then
return true
elseif a.defaultVariant > b.defaultVariant then
return false
-- else
-- return a.defaultVariant <= b.defaultVariant
end
end
-- Parses arguments into a table of recipes
function frameParse( args )
local parsedRecipes = {}
-- Set variables
local dispCraftStn = tonumber( args.displayCraftStation )
local checkImage = tonumber( args.checkForImage )
-- Iterate over every recipe passed in
for i = 1, args.numRecipes do
table.insert( parsedRecipes, i, {
['dispCraftStn'] = dispCraftStn,
['checkImage'] = checkImage,
['craftStn'] = {args['craftStation'..i], args['craftStationImg'..i]},
['item1'] = {args['item'..i..'.1'], args['itemImg'..i..'.1'], args['itemNum'..i..'.1']},
['item2'] = {args['item'..i..'.2'], args['itemImg'..i..'.2'], args['itemNum'..i..'.2']},
['skillNeed'] = {args['skillNeed'..i], args['skillNeedImg'..i], args['skillLvlNeed'..i]},
['mater1'] = {args['material'..i..'.1'], args['materialImg'..i..'.1'], args['materialNum'..i..'.1']},
['mater2'] = {args['material'..i..'.2'], args['materialImg'..i..'.2'], args['materialNum'..i..'.2']},
['mater3'] = {args['material'..i..'.3'], args['materialImg'..i..'.3'], args['materialNum'..i..'.3']},
['mater4'] = {args['material'..i..'.4'], args['materialImg'..i..'.4'], args['materialNum'..i..'.4']},
['cTime'] = args['craftTime'..i],
['affSkill1'] = {args['affectSkill'..i..'.1'], args['affectSkillImg'..i..'.1']},
['affSkill2'] = {args['affectSkill'..i..'.2'], args['affectSkillImg'..i..'.2']},
--TODO - construct new parts of the table here
})
end
return parsedRecipes
end
-- Formats and sorts recipes
function formatRecipes( recipes )
-- Sort recipes
table.sort( recipes, recipeCompare )
return recipes
end
-- Called from Template:RecipeTable
-- Calls Module:RecipeTable
-- Returns the wikitext returned by Module:RecipeTable
function p.raw( f )
-- get args from the Template, parse them into recipes
local recipes = frameParse( Utils.normaliseArgs(f) )
-- Format the recipes
recipes = formatRecipes( recipes )
-- Call RecipeTable
local recipeTable = require( "Module:RecipeTable" )
return recipeTable.main( recipes )
end
-- Called from Module:GetRecipes
-- Calls Module:RecipeTable
-- Returns the wikitext returned by Module:RecipeTable
function p.formattedItem( products, ingredients, item )
-- Format the recipes, and call RecipeTable on each table
local recipeTable = require( "Module:RecipeTable" )
local returnVal = '=== '..L.t('Crafting Recipes')..' ===\n\n'
if (products ~= nil and #products ~= 0) then
returnVal = returnVal .. recipeTable.main( formatRecipes(products) ) .. '\n\n=== '..L.t('Used in Recipes')..' ===\n\n'
else
returnVal = returnVal .. "''"..L.t('None').."''\n\n=== "..L.t('Used in Recipes').." ===\n\n "
end
if (ingredients ~= nil and #ingredients ~= 0) then
returnVal = returnVal .. recipeTable.main( formatRecipes(ingredients) )
else
returnVal = returnVal .. "''"..L.t('None').."''\n"
end
return returnVal
end
-- Called from Module:GetRecipes
-- Calls Module:RecipeTable
-- Returns formatted wikitext, including wikitext returned from Module:RecipeTable
function p.formattedTable( recipes, table )
-- Format the recipes, and call RecipeTable
local recipeTable = require( "Module:RecipeTable" )
local returnVal = '=== ' .. L.t('Recipes at %s'):format(table) .. ' ===\n\n'
if #recipes == 0 then
returnVal = returnVal .. "''"..L.t('None').."''\n"
else
returnVal = returnVal .. recipeTable.main( formatRecipes( recipes ) )
end
return returnVal
end
-- Called from Module:GetRecipes
-- Calls Module:RecipeTable
-- Returns formatted wikitext, including wikitext returned from Module:RecipeTable
function p.formattedGroup( recipes, group )
-- Format the recipes, and call RecipeTable
local recipeTable = require( "Module:RecipeTable" )
local returnVal = '=== ' .. L.t('%s Recipes'):format(group) .. ' ===\n\n'
if #recipes == 0 then
returnVal = returnVal .. "''"..L.t('None').."''\n"
else
returnVal = returnVal .. recipeTable.main( formatRecipes( recipes ) )
end
return returnVal
end
return p