2022-06-17 02:46:09 +02:00
|
|
|
-- luacheck: read globals unified_inventory
|
|
|
|
|
|
|
|
if not stairsplus.has.unified_inventory then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2022-06-19 01:23:11 +02:00
|
|
|
local api = stairsplus.api
|
|
|
|
|
|
|
|
unified_inventory.register_craft_type("stairsplus:craft_schema", {
|
2022-06-17 02:46:09 +02:00
|
|
|
-- ^ Unique identifier for `register_craft`
|
|
|
|
description = "Stairs+ craft schema",
|
|
|
|
-- ^ Text shown below the crafting arrow
|
2022-06-20 00:26:05 +02:00
|
|
|
icon = "stairsplus_saw_button.png",
|
2022-06-17 02:46:09 +02:00
|
|
|
-- ^ Image shown above the crafting arrow
|
|
|
|
width = 3,
|
|
|
|
height = 3,
|
|
|
|
-- ^ Maximal input dimensions of the recipes
|
|
|
|
uses_crafting_grid = true,
|
|
|
|
})
|
|
|
|
|
2022-06-19 01:23:11 +02:00
|
|
|
unified_inventory.register_craft_type("stairsplus:circular_saw", {
|
|
|
|
-- ^ Unique identifier for `register_craft`
|
|
|
|
description = "Stairs+ circular saw",
|
|
|
|
-- ^ Text shown below the crafting arrow
|
2022-06-20 00:26:05 +02:00
|
|
|
icon = "stairsplus_saw_button.png",
|
2022-06-19 01:23:11 +02:00
|
|
|
-- ^ Image shown above the crafting arrow
|
|
|
|
width = 1,
|
|
|
|
height = 1,
|
|
|
|
-- ^ Maximal input dimensions of the recipes
|
|
|
|
uses_crafting_grid = true,
|
|
|
|
})
|
|
|
|
|
|
|
|
unified_inventory.register_category("stairsplus:cuttable", {
|
|
|
|
symbol = "stairsplus:circular_saw",
|
|
|
|
label = "Cuttable in the circular saw",
|
|
|
|
index = 0,
|
|
|
|
items = {}
|
|
|
|
})
|
|
|
|
|
|
|
|
unified_inventory.register_category("stairsplus:cut_node", {
|
|
|
|
symbol = "stairsplus:circular_saw",
|
|
|
|
label = "Nodes cut in the circular saw",
|
|
|
|
index = 0,
|
|
|
|
items = {}
|
|
|
|
})
|
|
|
|
|
2022-06-17 02:46:09 +02:00
|
|
|
local function convert_schema_recipe_item(item)
|
2022-06-19 01:23:11 +02:00
|
|
|
if item == "" or item:match(":") then
|
2022-06-17 02:46:09 +02:00
|
|
|
return item
|
|
|
|
end
|
|
|
|
|
|
|
|
local name, count = item:match("^([^ ]+) (%d+)")
|
|
|
|
if not name then
|
|
|
|
name = item
|
|
|
|
end
|
|
|
|
|
|
|
|
count = tonumber(count)
|
|
|
|
|
2022-06-19 01:23:11 +02:00
|
|
|
if name == "node" then
|
|
|
|
name = "mapgen_stone"
|
|
|
|
if count then
|
|
|
|
return ("%s %s"):format(name, count)
|
|
|
|
else
|
|
|
|
return name
|
|
|
|
end
|
2022-06-17 02:46:09 +02:00
|
|
|
else
|
2022-06-19 01:23:11 +02:00
|
|
|
if count then
|
|
|
|
return ("group:shape_%s %s"):format(name, count)
|
|
|
|
else
|
|
|
|
return ("group:shape_%s"):format(name)
|
|
|
|
end
|
2022-06-17 02:46:09 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-06-19 01:23:11 +02:00
|
|
|
api.register_on_register_craft_schema(function(schema)
|
|
|
|
stairsplus.log("action", "register unified_inventory recipe")
|
2022-06-17 02:46:09 +02:00
|
|
|
local recipe = table.copy(schema)
|
|
|
|
|
|
|
|
recipe.output = convert_schema_recipe_item(recipe.output)
|
2022-06-19 01:23:11 +02:00
|
|
|
|
|
|
|
if recipe.replacements then
|
|
|
|
for _, replacement in ipairs(recipe.replacements) do
|
|
|
|
for i, item in ipairs(replacement) do
|
|
|
|
replacement[i] = convert_schema_recipe_item(item)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if recipe.type == "shapeless" then
|
|
|
|
for i, item in ipairs(recipe.recipe) do
|
|
|
|
recipe.recipe[i] = convert_schema_recipe_item(item)
|
|
|
|
end
|
|
|
|
|
|
|
|
elseif recipe.type == "shaped" or recipe.type == nil then
|
|
|
|
for _, row in ipairs(recipe.recipe) do
|
|
|
|
for i, item in ipairs(row) do
|
|
|
|
row[i] = convert_schema_recipe_item(item)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
unified_inventory.register_craft({
|
|
|
|
output = recipe.output,
|
|
|
|
type = "stairsplus:craft_schema",
|
|
|
|
items = recipe.recipe,
|
|
|
|
width = 3,
|
|
|
|
})
|
|
|
|
end)
|
|
|
|
|
|
|
|
api.register_on_register_single(function(node, shaped_name)
|
|
|
|
unified_inventory.register_craft({
|
|
|
|
output = shaped_name,
|
|
|
|
type = "stairsplus:circular_saw",
|
|
|
|
items = {node},
|
|
|
|
width = 1,
|
|
|
|
})
|
|
|
|
|
|
|
|
unified_inventory.add_category_item("stairsplus:cuttable", node)
|
|
|
|
unified_inventory.add_category_item("stairsplus:cut_node", shaped_name)
|
2022-06-17 02:46:09 +02:00
|
|
|
end)
|
2022-06-19 01:23:11 +02:00
|
|
|
|
|
|
|
|