2015-01-11 22:21:33 +01:00
|
|
|
--[[
|
2015-01-12 17:46:22 +01:00
|
|
|
More Blocks: panel definitions
|
2015-01-11 22:21:33 +01:00
|
|
|
|
2017-02-19 13:35:16 +01:00
|
|
|
Copyright (c) 2011-2017 Hugo Locurcio and contributors.
|
2015-01-11 22:21:33 +01:00
|
|
|
Licensed under the zlib license. See LICENSE.md for more information.
|
|
|
|
--]]
|
|
|
|
|
|
|
|
local S = moreblocks.intllib
|
2013-07-11 20:33:02 +02:00
|
|
|
|
2014-03-09 10:38:18 +01:00
|
|
|
-- Node will be called <modname>:panel_<subname>
|
2013-07-11 20:33:02 +02:00
|
|
|
|
|
|
|
function register_panel(modname, subname, recipeitem, groups, images, description, drop, light)
|
2015-11-01 17:54:29 +01:00
|
|
|
stairsplus:register_panel(modname, subname, recipeitem, {
|
2013-07-11 20:33:02 +02:00
|
|
|
groups = groups,
|
2013-10-27 09:57:21 +01:00
|
|
|
tiles = images,
|
2014-03-09 10:38:18 +01:00
|
|
|
description = description,
|
|
|
|
drop = drop,
|
2013-10-27 09:57:21 +01:00
|
|
|
light_source = light,
|
2014-03-09 10:38:18 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
2013-10-27 09:57:21 +01:00
|
|
|
})
|
2014-03-09 10:38:18 +01:00
|
|
|
end
|
|
|
|
|
2016-10-03 12:14:34 +02:00
|
|
|
function stairsplus:register_panel_alias(modname_old, subname_old, modname_new, subname_new)
|
2018-03-03 16:42:46 +01:00
|
|
|
local defs = table.copy(stairsplus.defs["panel"])
|
2016-10-03 12:14:34 +02:00
|
|
|
for alternate, def in pairs(defs) do
|
|
|
|
minetest.register_alias(modname_old .. ":panel_" .. subname_old .. alternate, modname_new .. ":panel_" .. subname_new .. alternate)
|
|
|
|
end
|
|
|
|
end
|
2014-03-09 10:38:18 +01:00
|
|
|
|
2016-10-03 12:14:34 +02:00
|
|
|
function stairsplus:register_panel_alias_force(modname_old, subname_old, modname_new, subname_new)
|
2018-03-03 16:42:46 +01:00
|
|
|
local defs = table.copy(stairsplus.defs["panel"])
|
2016-10-03 12:14:34 +02:00
|
|
|
for alternate, def in pairs(defs) do
|
|
|
|
minetest.register_alias_force(modname_old .. ":panel_" .. subname_old .. alternate, modname_new .. ":panel_" .. subname_new .. alternate)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function stairsplus:register_panel(modname, subname, recipeitem, fields)
|
2018-03-03 16:42:46 +01:00
|
|
|
local defs = table.copy(stairsplus.defs["panel"])
|
2014-03-09 10:38:18 +01:00
|
|
|
for alternate, def in pairs(defs) do
|
2018-03-03 20:15:09 +01:00
|
|
|
stairsplus.register_single("panel", alternate, def, modname, subname, recipeitem, fields)
|
2014-03-09 10:38:18 +01:00
|
|
|
end
|
2014-07-21 12:24:49 +02:00
|
|
|
minetest.register_alias(modname.. ":panel_" ..subname.. "_bottom", modname.. ":panel_" ..subname)
|
2016-12-15 23:56:45 +01:00
|
|
|
|
2015-11-01 17:54:29 +01:00
|
|
|
circular_saw.known_nodes[recipeitem] = {modname, subname}
|
|
|
|
|
2014-07-03 19:31:43 +02:00
|
|
|
-- Some saw-less recipes:
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-07-28 10:02:55 +02:00
|
|
|
output = modname .. ":panel_" .. subname .. " 12",
|
2014-07-03 19:31:43 +02:00
|
|
|
recipe = {
|
|
|
|
{recipeitem, ""},
|
|
|
|
{recipeitem, recipeitem},
|
|
|
|
},
|
|
|
|
})
|
2016-12-15 23:56:45 +01:00
|
|
|
|
2014-07-03 19:31:43 +02:00
|
|
|
minetest.register_craft({
|
2014-07-28 10:02:55 +02:00
|
|
|
output = modname .. ":panel_" .. subname .. " 12",
|
2014-07-03 19:31:43 +02:00
|
|
|
recipe = {
|
|
|
|
{"", recipeitem},
|
|
|
|
{recipeitem, recipeitem},
|
|
|
|
},
|
|
|
|
})
|
2016-12-15 23:56:45 +01:00
|
|
|
|
2014-07-03 19:31:43 +02:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
2014-07-28 10:02:55 +02:00
|
|
|
output = modname .. ":panel_" .. subname,
|
|
|
|
recipe = {modname .. ":micro_" .. subname, modname .. ":micro_" .. subname},
|
2014-07-03 19:31:43 +02:00
|
|
|
})
|
2016-12-15 23:56:45 +01:00
|
|
|
|
2014-07-03 19:31:43 +02:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = recipeitem,
|
2014-07-28 10:02:55 +02:00
|
|
|
recipe = {modname .. ":panel_" .. subname, modname .. ":panel_" .. subname, modname .. ":panel_" .. subname, modname .. ":panel_" .. subname},
|
2014-07-03 19:31:43 +02:00
|
|
|
})
|
2013-07-11 20:33:02 +02:00
|
|
|
end
|