2014-03-09 10:38:18 +01:00
|
|
|
-- Nodes will be called <modname>:{stair,slab,panel,micro}_<subname>
|
|
|
|
|
2014-07-21 12:24:49 +02:00
|
|
|
local modpath = minetest.get_modpath("moreblocks").. "/stairsplus"
|
2014-03-09 10:38:18 +01:00
|
|
|
|
|
|
|
stairsplus = {}
|
|
|
|
stairsplus.expect_infinite_stacks = false
|
|
|
|
|
2014-06-27 20:14:08 +02:00
|
|
|
if not minetest.get_modpath("unified_inventory")
|
|
|
|
and minetest.setting_getbool("creative_mode") then
|
2014-03-09 10:38:18 +01:00
|
|
|
stairsplus.expect_infinite_stacks = true
|
|
|
|
end
|
|
|
|
|
|
|
|
function stairsplus:register_all(modname, subname, recipeitem, fields)
|
|
|
|
fields = fields or {}
|
|
|
|
fields.groups = fields.groups or {}
|
|
|
|
if not moreblocks.config.show_stairsplus_creative_inv then
|
|
|
|
fields.groups.not_in_creative_inventory = 1
|
|
|
|
end
|
|
|
|
self:register_stair(modname, subname, recipeitem, fields)
|
|
|
|
self:register_slab (modname, subname, recipeitem, fields)
|
|
|
|
self:register_panel(modname, subname, recipeitem, fields)
|
|
|
|
self:register_micro(modname, subname, recipeitem, fields)
|
2014-06-27 20:14:08 +02:00
|
|
|
-- self:register_6dfacedir_conversion(modname, subname) -- Not needed as of Q3 2013, uncomment to fix old maps.
|
2014-03-09 10:38:18 +01:00
|
|
|
circular_saw.known_nodes[recipeitem] = {modname, subname}
|
|
|
|
end
|
|
|
|
|
|
|
|
function register_stair_slab_panel_micro(modname, subname, recipeitem, groups, images, description, drop, light)
|
|
|
|
stairsplus:register_all(modname, subname, recipeitem, {
|
|
|
|
groups = groups,
|
|
|
|
tiles = images,
|
|
|
|
description = description,
|
|
|
|
drop = drop,
|
|
|
|
light_source = light
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2014-07-21 12:24:49 +02:00
|
|
|
-- dofile(modpath.. "/aliases.lua") -- Not needed as of Q2 2013, uncomment to fix old maps.
|
|
|
|
-- dofile(modpath.. "/conversion.lua") -- Not needed as of Q2 2013, uncomment to fix old maps.
|
|
|
|
dofile(modpath.. "/stairs.lua")
|
|
|
|
dofile(modpath.. "/slabs.lua")
|
|
|
|
dofile(modpath.. "/panels.lua")
|
|
|
|
dofile(modpath.. "/microblocks.lua")
|
|
|
|
dofile(modpath.. "/registrations.lua")
|