2013-07-11 20:33:02 +02:00
|
|
|
-- Load translation library if intllib is installed
|
|
|
|
|
|
|
|
local S
|
|
|
|
if (minetest.get_modpath("intllib")) then
|
|
|
|
dofile(minetest.get_modpath("intllib").."/intllib.lua")
|
|
|
|
S = intllib.Getter(minetest.get_current_modname())
|
|
|
|
else
|
|
|
|
S = function ( s ) return s end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Node will be called <modname>slab_<subname>
|
|
|
|
|
|
|
|
function register_slab(modname, subname, recipeitem, groups, images, description, drop, light)
|
|
|
|
|
|
|
|
minetest.register_node(":" .. modname .. ":slab_" .. subname, {
|
|
|
|
description = S("%s Slab"):format(S(description)),
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = images,
|
|
|
|
light_source = light,
|
|
|
|
drop = modname .. ":slab_" .. drop,
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
groups = groups,
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5},
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5},
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
local keys=placer:get_player_control()
|
|
|
|
stairsplus_rotate_and_place(itemstack, placer, pointed_thing, keys["sneak"])
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node(":stairs:slab_" .. subname, {
|
|
|
|
description = S("%s Slab"):format(S(description)),
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = images,
|
|
|
|
drop = modname .. ":slab_" .. drop,
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
groups = groups,
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5},
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5},
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
local keys=placer:get_player_control()
|
|
|
|
stairsplus_rotate_and_place(itemstack, placer, pointed_thing, keys["sneak"])
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node(":"..modname .. ":slab_" .. subname .. "_quarter", {
|
|
|
|
description = S("%s Slab"):format(S(description)),
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = images,
|
|
|
|
light_source = light,
|
|
|
|
drop = modname .. ":slab_" .. drop .. "_quarter",
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
groups = groups,
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, -0.5, 0.5, -0.25, 0.5},
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, -0.5, 0.5, -0.25, 0.5},
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
local keys=placer:get_player_control()
|
|
|
|
stairsplus_rotate_and_place(itemstack, placer, pointed_thing, keys["sneak"])
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node(":"..modname .. ":slab_" .. subname .. "_three_quarter", {
|
|
|
|
description = S("%s Slab"):format(S(description)),
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = images,
|
|
|
|
light_source = light,
|
|
|
|
drop = modname .. ":slab_" .. drop .. "_three_quarter",
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
groups = groups,
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, -0.5, 0.5, 0.25, 0.5},
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, -0.5, 0.5, 0.25, 0.5},
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
local keys=placer:get_player_control()
|
|
|
|
stairsplus_rotate_and_place(itemstack, placer, pointed_thing, keys["sneak"])
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
})
|
2013-10-26 18:16:43 +02:00
|
|
|
|
2013-10-27 19:24:49 +01:00
|
|
|
minetest.register_node(":"..modname .. ":slab_" .. subname .. "_1", {
|
2013-10-26 18:16:43 +02:00
|
|
|
description = S("%s Slab"):format(S(description)),
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = images,
|
|
|
|
light_source = light,
|
2013-10-27 19:24:49 +01:00
|
|
|
drop = modname .. ":slab_" .. drop .. "_1",
|
2013-10-26 18:16:43 +02:00
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
groups = groups,
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
2013-10-27 19:24:49 +01:00
|
|
|
fixed = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
|
2013-10-26 18:16:43 +02:00
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
2013-10-27 19:24:49 +01:00
|
|
|
fixed = {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
|
2013-10-26 18:16:43 +02:00
|
|
|
},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
local keys=placer:get_player_control()
|
|
|
|
stairsplus_rotate_and_place(itemstack, placer, pointed_thing, keys["sneak"])
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
2013-10-27 19:24:49 +01:00
|
|
|
minetest.register_node(":"..modname .. ":slab_" .. subname .. "_2", {
|
2013-10-26 18:16:43 +02:00
|
|
|
description = S("%s Slab"):format(S(description)),
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = images,
|
|
|
|
light_source = light,
|
2013-10-27 19:24:49 +01:00
|
|
|
drop = modname .. ":slab_" .. drop .. "_2",
|
2013-10-26 18:16:43 +02:00
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
groups = groups,
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
2013-10-27 19:24:49 +01:00
|
|
|
fixed = {-0.5, -0.5, -0.5, 0.5, -0.375, 0.5},
|
2013-10-26 18:16:43 +02:00
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
2013-10-27 19:24:49 +01:00
|
|
|
fixed = {-0.5, -0.5, -0.5, 0.5, -0.375, 0.5},
|
2013-10-26 18:16:43 +02:00
|
|
|
},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
local keys=placer:get_player_control()
|
|
|
|
stairsplus_rotate_and_place(itemstack, placer, pointed_thing, keys["sneak"])
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node(":"..modname .. ":slab_" .. subname .. "_14", {
|
|
|
|
description = S("%s Slab"):format(S(description)),
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = images,
|
|
|
|
light_source = light,
|
2013-10-27 19:24:49 +01:00
|
|
|
drop = modname .. ":slab_" .. drop .. "_14",
|
2013-10-26 18:16:43 +02:00
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
groups = groups,
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, -0.5, 0.5, 0.375, 0.5},
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, -0.5, 0.5, 0.375, 0.5},
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
local keys=placer:get_player_control()
|
|
|
|
stairsplus_rotate_and_place(itemstack, placer, pointed_thing, keys["sneak"])
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node(":"..modname .. ":slab_" .. subname .. "_15", {
|
|
|
|
description = S("%s Slab"):format(S(description)),
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = images,
|
|
|
|
light_source = light,
|
2013-10-27 19:24:49 +01:00
|
|
|
drop = modname .. ":slab_" .. drop .. "_15",
|
2013-10-26 18:16:43 +02:00
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
groups = groups,
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, -0.5, 0.5, 0.4375, 0.5},
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, -0.5, 0.5, 0.4375, 0.5},
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
local keys=placer:get_player_control()
|
|
|
|
stairsplus_rotate_and_place(itemstack, placer, pointed_thing, keys["sneak"])
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
})
|
2013-07-11 20:33:02 +02:00
|
|
|
|
2013-09-15 14:52:18 +02:00
|
|
|
-- Unregister default recipes, optional, see _config.txt
|
2013-07-11 20:33:02 +02:00
|
|
|
|
2013-09-15 14:52:18 +02:00
|
|
|
if allow_stair_slab_crafting == false
|
|
|
|
then
|
2013-07-11 20:33:02 +02:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:nothing 1",
|
|
|
|
recipe = {
|
|
|
|
{recipeitem, recipeitem, recipeitem},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
end
|
2013-09-15 14:52:18 +02:00
|
|
|
end
|
2013-07-11 20:33:02 +02:00
|
|
|
|