2015-01-11 22:21:33 +01:00
|
|
|
--[[
|
2015-01-12 17:46:22 +01:00
|
|
|
More Blocks: microblock 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>:micro_<subname>
|
2013-07-11 20:33:02 +02:00
|
|
|
|
|
|
|
function register_micro(modname, subname, recipeitem, groups, images, description, drop, light)
|
2015-11-01 17:54:29 +01:00
|
|
|
stairsplus:register_micro(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,
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
2014-03-09 10:38:18 +01:00
|
|
|
end
|
|
|
|
|
2016-10-03 12:14:34 +02:00
|
|
|
local microblocks_defs = {
|
|
|
|
[""] = {
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, 0, 0, 0, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
["_1"] = {
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, 0, 0, -0.4375, 0.5},
|
2013-10-27 09:57:21 +01:00
|
|
|
},
|
2016-10-03 12:14:34 +02:00
|
|
|
},
|
|
|
|
["_2"] = {
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, 0, 0, -0.375, 0.5},
|
2013-10-27 09:57:21 +01:00
|
|
|
},
|
2016-10-03 12:14:34 +02:00
|
|
|
},
|
|
|
|
["_4"] = {
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, 0, 0, -0.25, 0.5},
|
2013-10-27 09:57:21 +01:00
|
|
|
},
|
2016-10-03 12:14:34 +02:00
|
|
|
},
|
|
|
|
["_12"] = {
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, 0, 0, 0.25, 0.5},
|
2013-10-27 09:57:21 +01:00
|
|
|
},
|
2016-10-03 12:14:34 +02:00
|
|
|
},
|
|
|
|
["_14"] = {
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, 0, 0, 0.375, 0.5},
|
2013-10-27 09:57:21 +01:00
|
|
|
},
|
2016-10-03 12:14:34 +02:00
|
|
|
},
|
|
|
|
["_15"] = {
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, 0, 0, 0.4375, 0.5},
|
2014-03-09 10:38:18 +01:00
|
|
|
},
|
|
|
|
}
|
2016-10-03 12:14:34 +02:00
|
|
|
}
|
|
|
|
|
2017-02-23 17:12:36 +01:00
|
|
|
for k,v in pairs(microblocks_defs) do
|
|
|
|
table.insert(stairsplus.shapes_list, { "micro_", k })
|
|
|
|
end
|
|
|
|
|
2016-10-03 12:14:34 +02:00
|
|
|
function stairsplus:register_micro_alias(modname_old, subname_old, modname_new, subname_new)
|
|
|
|
local defs = stairsplus.copytable(microblocks_defs)
|
|
|
|
for alternate, def in pairs(defs) do
|
|
|
|
minetest.register_alias(modname_old .. ":micro_" .. subname_old .. alternate, modname_new .. ":micro_" .. subname_new .. alternate)
|
|
|
|
end
|
|
|
|
end
|
2014-03-09 10:38:18 +01:00
|
|
|
|
2016-10-03 12:14:34 +02:00
|
|
|
function stairsplus:register_micro_alias_force(modname_old, subname_old, modname_new, subname_new)
|
|
|
|
local defs = stairsplus.copytable(microblocks_defs)
|
|
|
|
for alternate, def in pairs(defs) do
|
|
|
|
minetest.register_alias_force(modname_old .. ":micro_" .. subname_old .. alternate, modname_new .. ":micro_" .. subname_new .. alternate)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function stairsplus:register_micro(modname, subname, recipeitem, fields)
|
|
|
|
local defs = stairsplus.copytable(microblocks_defs)
|
2014-03-09 10:38:18 +01:00
|
|
|
local desc = S("%s Microblock"):format(fields.description)
|
|
|
|
for alternate, def in pairs(defs) do
|
2015-11-01 17:54:29 +01:00
|
|
|
for k, v in pairs(fields) do
|
|
|
|
def[k] = v
|
|
|
|
end
|
2014-03-09 10:38:18 +01:00
|
|
|
def.drawtype = "nodebox"
|
|
|
|
def.paramtype = "light"
|
2017-01-26 22:11:45 +01:00
|
|
|
def.paramtype2 = def.paramtype2 or "facedir"
|
2014-03-09 10:38:18 +01:00
|
|
|
def.on_place = minetest.rotate_node
|
2015-11-01 17:54:29 +01:00
|
|
|
def.groups = stairsplus:prepare_groups(fields.groups)
|
2014-03-09 10:38:18 +01:00
|
|
|
def.description = desc
|
2016-07-12 21:49:43 +02:00
|
|
|
if fields.drop and not (type(fields.drop) == "table") then
|
2014-07-21 12:24:49 +02:00
|
|
|
def.drop = modname.. ":micro_" ..fields.drop..alternate
|
2014-03-09 10:38:18 +01:00
|
|
|
end
|
2014-07-21 12:24:49 +02:00
|
|
|
minetest.register_node(":" ..modname.. ":micro_" ..subname..alternate, def)
|
2014-03-09 10:38:18 +01:00
|
|
|
end
|
2014-07-21 12:24:49 +02:00
|
|
|
minetest.register_alias(modname.. ":micro_" ..subname.. "_bottom", modname.. ":micro_" ..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:
|
2016-12-15 23:56:45 +01:00
|
|
|
|
2014-07-21 12:24:49 +02:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
2014-07-28 10:02:55 +02:00
|
|
|
output = modname .. ":micro_" .. subname .. " 7",
|
|
|
|
recipe = {modname .. ":stair_" .. subname .. "_inner"},
|
2014-07-21 12:24:49 +02:00
|
|
|
})
|
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 .. ":micro_" .. subname .. " 6",
|
2014-07-21 12:24:49 +02:00
|
|
|
type = "shapeless",
|
2014-07-28 10:02:55 +02:00
|
|
|
recipe = {modname .. ":stair_" .. subname},
|
2014-05-04 17:53:15 +02:00
|
|
|
})
|
2016-12-15 23:56:45 +01:00
|
|
|
|
2014-07-03 19:31:43 +02:00
|
|
|
minetest.register_craft({
|
2014-07-21 12:24:49 +02:00
|
|
|
type = "shapeless",
|
2014-07-28 10:02:55 +02:00
|
|
|
output = modname .. ":micro_" .. subname .. " 5",
|
|
|
|
recipe = {modname .. ":stair_" .. subname .. "_outer"},
|
2014-05-04 17:53:15 +02:00
|
|
|
})
|
2016-12-15 23:56:45 +01:00
|
|
|
|
2014-07-03 19:31:43 +02:00
|
|
|
minetest.register_craft({
|
2014-07-21 12:24:49 +02:00
|
|
|
type = "shapeless",
|
2014-07-28 10:02:55 +02:00
|
|
|
output = modname .. ":micro_" .. subname .. " 4",
|
|
|
|
recipe = {modname .. ":slab_" .. subname},
|
2014-07-21 12:24:49 +02:00
|
|
|
})
|
2016-12-15 23:56:45 +01:00
|
|
|
|
2015-07-04 16:19:17 +02:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = modname .. ":micro_" .. subname .. " 4",
|
|
|
|
recipe = {modname .. ":stair_" .. subname .. "_alt"},
|
|
|
|
})
|
2016-12-15 23:56:45 +01:00
|
|
|
|
2015-06-27 23:06:43 +02:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = modname .. ":micro_" .. subname .. " 3",
|
|
|
|
recipe = {modname .. ":stair_" .. subname .. "_right_half"},
|
|
|
|
})
|
2016-12-15 23:56:45 +01:00
|
|
|
|
2014-07-21 12:24:49 +02:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
2014-07-28 10:02:55 +02:00
|
|
|
output = modname .. ":micro_" .. subname .. " 2",
|
|
|
|
recipe = {modname .. ":panel_" .. subname},
|
2014-05-04 17:53:15 +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 .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname, modname .. ":micro_" .. subname},
|
2014-05-04 17:53:15 +02:00
|
|
|
})
|
2013-07-11 20:33:02 +02:00
|
|
|
end
|