Editing Module:Products
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 12: | Line 12: | ||
local function recipe_sort(recipe_a, recipe_b) |
local function recipe_sort(recipe_a, recipe_b) |
||
-- |
-- Sort unknown levels to the end |
||
if (recipe_a.level == nil) ~= (recipe_b.level == nil) then |
if (recipe_a.level == nil) ~= (recipe_b.level == nil) then |
||
return recipe_b.level == nil |
return recipe_b.level == nil |
||
end |
end |
||
if recipe_a.level ~= nil then |
|||
⚫ | |||
return recipe_a.output[1].name < recipe_b.output[1].name |
|||
⚫ | |||
-- if neither is nil, sort first by level |
|||
if recipe_a.level ~= recipe_b.level then |
|||
return recipe_a.level < recipe_b.level |
return recipe_a.level < recipe_b.level |
||
end |
end |
||
-- |
-- Sort by name if same level |
||
return recipe_a.output[1].name < recipe_b.output[1].name |
return recipe_a.output[1].name < recipe_b.output[1].name |
||
end |
end |
||
Line 55: | Line 49: | ||
end |
end |
||
-- Create a list of all recipes |
-- Create a list of all recipes, grouped by output item (to keep them together in the sort) |
||
local |
local produced_items = {} |
||
for _, product in ipairs(smw_data) do |
for _, product in ipairs(smw_data) do |
||
-- this part will need to be addressed if a page has both a recipe and an activity |
|||
local jsons = product['Recipe JSON'] or product['Activity JSON'] |
local jsons = product['Recipe JSON'] or product['Activity JSON'] |
||
if type(jsons) == 'string' then |
if type(jsons) == 'string' then |
||
jsons = { jsons } |
jsons = { jsons } |
||
end |
end |
||
local parsed = {} |
|||
for _, json in ipairs(jsons) do |
for _, json in ipairs(jsons) do |
||
local json = mw.text.jsonDecode(json) |
local json = mw.text.jsonDecode(json) |
||
Line 70: | Line 64: | ||
return mat.name == item |
return mat.name == item |
||
end) then |
end) then |
||
table.insert( |
table.insert(parsed, json) |
||
end |
end |
||
end |
end |
||
table.sort(parsed, recipe_sort) |
|||
table.insert(produced_items, parsed) |
|||
end |
end |
||
-- Sort |
-- Sort by the smallest recipe in the group |
||
table.sort( |
table.sort(produced_items, function(item1, item2) |
||
local first1 = item1[1] |
|||
local first2 = item2[1] |
|||
if (first1 == nil) ~= (first2 == nil) then |
|||
return first2 == nil |
|||
end |
|||
⚫ | |||
return false -- Both empty, equivalent |
|||
end |
|||
return recipe_sort(first1, first2) |
|||
end) |
|||
-- Flatten into a single list |
|||
local recipes = {} |
|||
for _, product in ipairs(produced_items) do |
|||
for _, json in ipairs(product) do |
|||
table.insert(recipes, json) |
|||
end |
|||
⚫ | |||
-- Calculate shop prices |
-- Calculate shop prices |