2015-06-29 19:55:56 +02:00
|
|
|
|
2017-01-05 05:17:16 +01:00
|
|
|
--
|
|
|
|
-- 3d torch part
|
|
|
|
--
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2017-02-10 14:30:53 +01:00
|
|
|
mcl_torches = {}
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2017-03-11 22:00:06 +01:00
|
|
|
mcl_torches.register_torch = function(substring, description, doc_items_longdesc, doc_items_usagehelp, icon, mesh_floor, mesh_wall, tiles, light, groups, sounds, moredef)
|
2017-02-10 15:38:53 +01:00
|
|
|
local itemstring = minetest.get_current_modname()..":"..substring
|
|
|
|
local itemstring_wall = minetest.get_current_modname()..":"..substring.."_wall"
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2017-02-10 14:30:53 +01:00
|
|
|
if light == nil then light = 14 end
|
2017-02-10 14:41:36 +01:00
|
|
|
if mesh_floor == nil then mesh_floor = "mcl_torches_torch_floor.obj" end
|
|
|
|
if mesh_wall == nil then mesh_wall = "mcl_torches_torch_wall.obj" end
|
2017-02-10 14:30:53 +01:00
|
|
|
if groups == nil then groups = {} end
|
|
|
|
|
|
|
|
groups.attached_node = 1
|
|
|
|
groups.torch = 1
|
|
|
|
groups.dig_by_water = 1
|
|
|
|
|
2017-02-10 15:38:53 +01:00
|
|
|
local floordef = {
|
2017-02-10 14:30:53 +01:00
|
|
|
description = description,
|
2017-03-11 22:00:06 +01:00
|
|
|
_doc_items_longdesc = doc_items_longdesc,
|
|
|
|
_doc_items_usagehelp = doc_items_usagehelp,
|
2017-02-10 14:30:53 +01:00
|
|
|
drawtype = "mesh",
|
|
|
|
mesh = mesh_floor,
|
|
|
|
inventory_image = icon,
|
|
|
|
wield_image = icon,
|
|
|
|
tiles = tiles,
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "wallmounted",
|
|
|
|
sunlight_propagates = true,
|
2017-03-11 16:36:05 +01:00
|
|
|
is_ground_content = false,
|
2017-02-10 14:30:53 +01:00
|
|
|
walkable = false,
|
|
|
|
liquids_pointable = false,
|
|
|
|
light_source = light,
|
|
|
|
groups = groups,
|
|
|
|
drop = itemstring,
|
|
|
|
selection_box = {
|
|
|
|
type = "wallmounted",
|
|
|
|
wall_top = {-1/16, -2/16, -1/16, 1/16, 0.5, 1/16},
|
|
|
|
wall_bottom = {-1/16, -0.5, -1/16, 1/16, 2/16, 1/16},
|
|
|
|
},
|
|
|
|
sounds = sounds,
|
|
|
|
node_placement_prediction = "",
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
if pointed_thing.type ~= "node" then
|
|
|
|
-- no interaction possible with entities, for now.
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
|
|
|
|
local under = pointed_thing.under
|
|
|
|
local node = minetest.get_node(under)
|
|
|
|
local def = minetest.registered_nodes[node.name]
|
2017-03-02 15:32:42 +01:00
|
|
|
|
|
|
|
-- Call on_rightclick if the pointed node defines it
|
|
|
|
if placer and not placer:get_player_control().sneak then
|
|
|
|
if minetest.registered_nodes[node.name] and minetest.registered_nodes[node.name].on_rightclick then
|
|
|
|
return minetest.registered_nodes[node.name].on_rightclick(under, node, placer, itemstack) or itemstack
|
|
|
|
end
|
2017-02-10 14:30:53 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
local above = pointed_thing.above
|
|
|
|
local wdir = minetest.dir_to_wallmounted({x = under.x - above.x, y = under.y - above.y, z = under.z - above.z})
|
2017-03-10 20:19:31 +01:00
|
|
|
|
|
|
|
-- Torch placement rules: Disallow placement on some nodes. General rule: Solid, opaque, full cube collision box nodes are allowed.
|
|
|
|
-- Special allowed nodes:
|
|
|
|
-- * soul sand
|
|
|
|
-- * end portal frame (TODO)
|
|
|
|
-- * monster spawner
|
|
|
|
-- * Fence, wall, glass, hopper: Only on top
|
|
|
|
-- * Monster spawner
|
|
|
|
-- * Slab: Only on top if upside down (TODO)
|
|
|
|
-- * Stairs: Only on top if upside down (TODO)
|
|
|
|
|
|
|
|
-- Special forbidden nodes:
|
|
|
|
-- * Piston
|
|
|
|
-- * Sticky piston
|
|
|
|
if not def.buildable_to then
|
|
|
|
if node.name ~= "mcl_nether:soul_sand" and node.name ~= "mobs:spawner" and
|
|
|
|
((not def.groups.solid) or (not def.groups.opaque)) then
|
|
|
|
-- Only allow top placement on these nodes
|
|
|
|
if def.groups.glass or node.name == "mcl_hoppers:hopper" or node.name == "mcl_hoppers:hopper_side" or def.groups.fence or def.groups.wall then
|
|
|
|
if wdir ~= 1 then
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
else
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
elseif node.name == "mesecons_pistons:piston_up_normal_off" or node.name == "mesecons_pistons:piston_up_sticky_off" or
|
|
|
|
node.name == "mesecons_pistons:piston_normal_off" or node.name == "mesecons_pistons:piston_sticky_off" or
|
|
|
|
node.name == "mesecons_pistons:piston_down_normal_off" or node.name == "mesecons_pistons:piston_down_sticky_off" then
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-03-10 20:30:33 +01:00
|
|
|
local itemstring = itemstack:get_name()
|
|
|
|
local fakestack = ItemStack(itemstack)
|
|
|
|
local idef = fakestack:get_definition()
|
2017-02-10 14:30:53 +01:00
|
|
|
local retval
|
|
|
|
|
|
|
|
if wdir == 0 then
|
|
|
|
-- Prevent placement of ceiling torches
|
|
|
|
return itemstack
|
|
|
|
elseif wdir == 1 then
|
2017-02-10 15:38:53 +01:00
|
|
|
retval = fakestack:set_name(itemstring)
|
2017-02-10 14:30:53 +01:00
|
|
|
else
|
2017-02-10 15:38:53 +01:00
|
|
|
retval = fakestack:set_name(itemstring_wall)
|
2017-02-10 14:30:53 +01:00
|
|
|
end
|
|
|
|
if not retval then
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
|
2017-03-21 06:07:15 +01:00
|
|
|
local success
|
2017-02-22 17:17:20 +01:00
|
|
|
itemstack, success = minetest.item_place(fakestack, placer, pointed_thing, wdir)
|
2017-02-10 15:38:53 +01:00
|
|
|
itemstack:set_name(itemstring)
|
2017-01-26 18:06:31 +01:00
|
|
|
|
2017-02-22 17:17:20 +01:00
|
|
|
if success and idef.sounds and idef.sounds.place then
|
2017-02-19 20:41:35 +01:00
|
|
|
minetest.sound_play(idef.sounds.place, {pos=under, gain=1})
|
|
|
|
end
|
2015-06-29 19:55:56 +02:00
|
|
|
return itemstack
|
|
|
|
end
|
2017-02-10 15:38:53 +01:00
|
|
|
}
|
|
|
|
if moredef ~= nil then
|
|
|
|
for k,v in pairs(moredef) do
|
|
|
|
floordef[k] = v
|
|
|
|
end
|
|
|
|
end
|
|
|
|
minetest.register_node(itemstring, floordef)
|
2017-01-05 05:17:16 +01:00
|
|
|
|
2017-02-10 14:30:53 +01:00
|
|
|
local groups_wall = table.copy(groups)
|
|
|
|
groups_wall.torch = 2
|
2017-01-05 05:17:16 +01:00
|
|
|
|
2017-02-10 15:38:53 +01:00
|
|
|
local walldef = {
|
2017-02-10 14:30:53 +01:00
|
|
|
drawtype = "mesh",
|
|
|
|
mesh = mesh_wall,
|
|
|
|
tiles = tiles,
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "wallmounted",
|
|
|
|
sunlight_propagates = true,
|
2017-03-11 16:36:05 +01:00
|
|
|
is_ground_content = false,
|
2017-02-10 14:30:53 +01:00
|
|
|
walkable = false,
|
|
|
|
light_source = light,
|
|
|
|
groups = groups_wall,
|
|
|
|
drop = itemstring,
|
|
|
|
selection_box = {
|
|
|
|
type = "wallmounted",
|
|
|
|
wall_top = {-0.1, -0.1, -0.1, 0.1, 0.5, 0.1},
|
|
|
|
wall_bottom = {-0.1, -0.5, -0.1, 0.1, 0.1, 0.1},
|
2017-02-10 14:46:20 +01:00
|
|
|
wall_side = {-0.5, -0.5, -0.1, -0.2, 0.1, 0.1},
|
2017-02-10 14:30:53 +01:00
|
|
|
},
|
|
|
|
sounds = sounds,
|
2017-02-10 15:38:53 +01:00
|
|
|
}
|
|
|
|
if moredef ~= nil then
|
|
|
|
for k,v in pairs(moredef) do
|
|
|
|
walldef[k] = v
|
|
|
|
end
|
|
|
|
end
|
|
|
|
minetest.register_node(itemstring_wall, walldef)
|
2017-03-20 18:12:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
-- Add entry alias for the Help
|
|
|
|
if minetest.get_modpath("doc") then
|
|
|
|
doc.add_entry_alias("nodes", itemstring, "nodes", itemstring_wall)
|
|
|
|
end
|
|
|
|
|
2017-02-10 14:30:53 +01:00
|
|
|
end
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2017-03-11 22:00:06 +01:00
|
|
|
mcl_torches.register_torch("torch",
|
|
|
|
"Torch",
|
|
|
|
"Torches are light sources which can be placed at the side or on the top of most blocks.",
|
|
|
|
[[Torches can generally be placed on full solid opaque blocks. The following exceptions apply:
|
|
|
|
• Glass, fence, wall, hopper: Can only be placed on top
|
|
|
|
• Soul sand, monster spawner: Placement possible
|
|
|
|
• Glowstone and pistons: No placement possible]],
|
|
|
|
"default_torch_on_floor.png",
|
2017-02-10 14:41:36 +01:00
|
|
|
"mcl_torches_torch_floor.obj", "mcl_torches_torch_wall.obj",
|
2017-02-10 14:30:53 +01:00
|
|
|
{{
|
|
|
|
name = "default_torch_on_floor_animated.png",
|
|
|
|
animation = {type = "vertical_frames", aspect_w = 16, aspect_h = 16, length = 3.3}
|
2017-01-05 05:17:16 +01:00
|
|
|
}},
|
2017-02-10 14:30:53 +01:00
|
|
|
14,
|
|
|
|
{dig_immediate=3, torch=1, dig_by_water=1, deco_block=1},
|
2017-03-20 16:38:16 +01:00
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
{_doc_items_hidden = false})
|
2017-02-10 14:30:53 +01:00
|
|
|
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2017-02-07 06:07:13 +01:00
|
|
|
minetest.register_craft({
|
2017-02-10 14:41:36 +01:00
|
|
|
output = "mcl_torches:torch 4",
|
2017-02-07 06:07:13 +01:00
|
|
|
recipe = {
|
|
|
|
{ "group:coal" },
|
|
|
|
{ "mcl_core:stick" },
|
|
|
|
}
|
|
|
|
})
|
2017-01-08 00:12:12 +01:00
|
|
|
|