Mineclonia/mods/mcl_torches/init.lua

124 lines
3.2 KiB
Lua
Raw Normal View History

2015-06-29 17:55:56 +00:00
--
-- 3d torch part
--
2015-06-29 17:55:56 +00:00
2017-02-10 13:30:53 +00:00
mcl_torches = {}
2015-06-29 17:55:56 +00:00
2017-02-10 13:30:53 +00:00
mcl_torches.register_torch = function(substring, description, icon, mesh_floor, mesh_wall, tiles, light, groups, sounds)
2017-02-10 13:41:36 +00:00
local itemstring = "mcl_torches:"..substring
local itemstring_wall = "mcl_torches:"..substring.."_wall"
2015-06-29 17:55:56 +00:00
2017-02-10 13:30:53 +00:00
if light == nil then light = 14 end
2017-02-10 13:41:36 +00: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 13:30:53 +00:00
if groups == nil then groups = {} end
groups.attached_node = 1
groups.torch = 1
groups.dig_by_water = 1
minetest.register_node(itemstring, {
description = description,
drawtype = "mesh",
mesh = mesh_floor,
inventory_image = icon,
wield_image = icon,
tiles = tiles,
paramtype = "light",
paramtype2 = "wallmounted",
sunlight_propagates = true,
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]
if def and def.on_rightclick then
return def.on_rightclick(under, node, placer, itemstack,
pointed_thing) or itemstack, false
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})
local fakestack = itemstack
local retval
if wdir == 0 then
-- Prevent placement of ceiling torches
return itemstack
elseif wdir == 1 then
2017-02-10 13:41:36 +00:00
retval = fakestack:set_name("mcl_torches:torch")
2017-02-10 13:30:53 +00:00
else
2017-02-10 13:41:36 +00:00
retval = fakestack:set_name("mcl_torches:torch_wall")
2017-02-10 13:30:53 +00:00
end
if not retval then
return itemstack
end
itemstack = minetest.item_place(fakestack, placer, pointed_thing, wdir)
2017-02-10 13:41:36 +00:00
itemstack:set_name("mcl_torches:torch")
2017-01-26 17:06:31 +00:00
2015-06-29 17:55:56 +00:00
return itemstack
end
2017-02-10 13:30:53 +00:00
})
2017-02-10 13:30:53 +00:00
local groups_wall = table.copy(groups)
groups_wall.torch = 2
2017-02-10 13:30:53 +00:00
minetest.register_node(itemstring_wall, {
drawtype = "mesh",
mesh = mesh_wall,
tiles = tiles,
paramtype = "light",
paramtype2 = "wallmounted",
sunlight_propagates = true,
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 13:46:20 +00:00
wall_side = {-0.5, -0.5, -0.1, -0.2, 0.1, 0.1},
2017-02-10 13:30:53 +00:00
},
sounds = sounds,
})
end
2015-06-29 17:55:56 +00:00
2017-02-10 13:30:53 +00:00
mcl_torches.register_torch("torch", "Torch", "default_torch_on_floor.png",
2017-02-10 13:41:36 +00:00
"mcl_torches_torch_floor.obj", "mcl_torches_torch_wall.obj",
2017-02-10 13:30:53 +00:00
{{
name = "default_torch_on_floor_animated.png",
animation = {type = "vertical_frames", aspect_w = 16, aspect_h = 16, length = 3.3}
}},
2017-02-10 13:30:53 +00:00
14,
{dig_immediate=3, torch=1, dig_by_water=1, deco_block=1},
mcl_core.node_sound_wood_defaults())
2015-06-29 17:55:56 +00:00
2017-02-07 05:07:13 +00:00
minetest.register_craft({
2017-02-10 13:41:36 +00:00
output = "mcl_torches:torch 4",
2017-02-07 05:07:13 +00:00
recipe = {
{ "group:coal" },
{ "mcl_core:stick" },
}
})
2017-01-07 23:12:12 +00:00