2013-10-21 03:08:46 +02:00
|
|
|
-- this bit of code modifies the default chests and furnaces to be compatible
|
|
|
|
-- with pipeworks.
|
2013-01-14 03:45:03 +01:00
|
|
|
|
2013-11-15 00:54:50 +01:00
|
|
|
function pipeworks:clone_node(name)
|
2013-02-02 08:21:48 +01:00
|
|
|
node2={}
|
|
|
|
node=minetest.registered_nodes[name]
|
|
|
|
for k,v in pairs(node) do
|
|
|
|
node2[k]=v
|
|
|
|
end
|
|
|
|
return node2
|
|
|
|
end
|
|
|
|
|
2013-11-15 00:54:50 +01:00
|
|
|
furnace=pipeworks:clone_node("default:furnace")
|
2013-10-21 03:08:46 +02:00
|
|
|
furnace.tiles[1] = "pipeworks_furnace_top.png"
|
|
|
|
furnace.tiles[2] = "pipeworks_furnace_bottom.png"
|
|
|
|
furnace.tiles[3] = "pipeworks_furnace_side.png"
|
|
|
|
furnace.tiles[4] = "pipeworks_furnace_side.png"
|
|
|
|
furnace.tiles[5] = "pipeworks_furnace_side.png"
|
|
|
|
-- note we don't redefine entry #6 - the front.
|
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only
initiate a connection to those sides which can accept such. Fixed
various autorouting bugs as I ran across them. Autorouting for various
devices is now:
filters: left and right sides only
nodebreaker, deployer: back only
autocrafter: all six sides
chests: top, bottom, left, right, back (not front)
furnace: bottom, left, right, back (not the top or front)
2013-06-24 03:36:13 +02:00
|
|
|
furnace.groups.tubedevice=1
|
|
|
|
furnace.groups.tubedevice_receiver=1
|
|
|
|
furnace.tube={insert_object = function(pos,node,stack,direction)
|
2013-07-01 05:55:07 +02:00
|
|
|
local meta=minetest.get_meta(pos)
|
2013-01-14 03:45:03 +01:00
|
|
|
local inv=meta:get_inventory()
|
|
|
|
if direction.y==1 then
|
|
|
|
return inv:add_item("fuel",stack)
|
|
|
|
else
|
2013-01-16 12:26:11 +01:00
|
|
|
return inv:add_item("src",stack)
|
2013-01-14 03:45:03 +01:00
|
|
|
end
|
|
|
|
end,
|
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only
initiate a connection to those sides which can accept such. Fixed
various autorouting bugs as I ran across them. Autorouting for various
devices is now:
filters: left and right sides only
nodebreaker, deployer: back only
autocrafter: all six sides
chests: top, bottom, left, right, back (not front)
furnace: bottom, left, right, back (not the top or front)
2013-06-24 03:36:13 +02:00
|
|
|
can_insert=function(pos,node,stack,direction)
|
2013-07-01 05:55:07 +02:00
|
|
|
local meta=minetest.get_meta(pos)
|
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only
initiate a connection to those sides which can accept such. Fixed
various autorouting bugs as I ran across them. Autorouting for various
devices is now:
filters: left and right sides only
nodebreaker, deployer: back only
autocrafter: all six sides
chests: top, bottom, left, right, back (not front)
furnace: bottom, left, right, back (not the top or front)
2013-06-24 03:36:13 +02:00
|
|
|
local inv=meta:get_inventory()
|
|
|
|
if direction.y==1 then
|
|
|
|
return inv:room_for_item("fuel",stack)
|
|
|
|
elseif direction.y==-1 then
|
|
|
|
return inv:room_for_item("src",stack)
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end,
|
2013-07-19 07:36:55 +02:00
|
|
|
input_inventory="dst",
|
|
|
|
connect_sides={left=1, right=1, back=1, bottom=1}}
|
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only
initiate a connection to those sides which can accept such. Fixed
various autorouting bugs as I ran across them. Autorouting for various
devices is now:
filters: left and right sides only
nodebreaker, deployer: back only
autocrafter: all six sides
chests: top, bottom, left, right, back (not front)
furnace: bottom, left, right, back (not the top or front)
2013-06-24 03:36:13 +02:00
|
|
|
furnace.after_place_node= function(pos)
|
|
|
|
tube_scanforobjects(pos)
|
|
|
|
end
|
|
|
|
furnace.after_dig_node = function(pos)
|
|
|
|
tube_scanforobjects(pos)
|
|
|
|
end
|
2013-02-02 08:21:48 +01:00
|
|
|
|
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only
initiate a connection to those sides which can accept such. Fixed
various autorouting bugs as I ran across them. Autorouting for various
devices is now:
filters: left and right sides only
nodebreaker, deployer: back only
autocrafter: all six sides
chests: top, bottom, left, right, back (not front)
furnace: bottom, left, right, back (not the top or front)
2013-06-24 03:36:13 +02:00
|
|
|
minetest.register_node(":default:furnace",furnace)
|
2013-01-14 03:45:03 +01:00
|
|
|
|
2013-11-15 00:54:50 +01:00
|
|
|
furnace=pipeworks:clone_node("default:furnace_active")
|
2013-10-21 03:08:46 +02:00
|
|
|
furnace.tiles[1] = "pipeworks_furnace_top.png"
|
|
|
|
furnace.tiles[2] = "pipeworks_furnace_bottom.png"
|
|
|
|
furnace.tiles[3] = "pipeworks_furnace_side.png"
|
|
|
|
furnace.tiles[4] = "pipeworks_furnace_side.png"
|
|
|
|
furnace.tiles[5] = "pipeworks_furnace_side.png"
|
|
|
|
-- note we don't redefine entry #6 - the front.
|
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only
initiate a connection to those sides which can accept such. Fixed
various autorouting bugs as I ran across them. Autorouting for various
devices is now:
filters: left and right sides only
nodebreaker, deployer: back only
autocrafter: all six sides
chests: top, bottom, left, right, back (not front)
furnace: bottom, left, right, back (not the top or front)
2013-06-24 03:36:13 +02:00
|
|
|
furnace.groups.tubedevice=1
|
|
|
|
furnace.groups.tubedevice_receiver=1
|
|
|
|
furnace.tube={insert_object=function(pos,node,stack,direction)
|
2013-07-01 05:55:07 +02:00
|
|
|
local meta=minetest.get_meta(pos)
|
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only
initiate a connection to those sides which can accept such. Fixed
various autorouting bugs as I ran across them. Autorouting for various
devices is now:
filters: left and right sides only
nodebreaker, deployer: back only
autocrafter: all six sides
chests: top, bottom, left, right, back (not front)
furnace: bottom, left, right, back (not the top or front)
2013-06-24 03:36:13 +02:00
|
|
|
local inv=meta:get_inventory()
|
|
|
|
if direction.y==1 then
|
|
|
|
return inv:add_item("fuel",stack)
|
|
|
|
else
|
|
|
|
return inv:add_item("src",stack)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
can_insert=function(pos,node,stack,direction)
|
2013-07-01 05:55:07 +02:00
|
|
|
local meta=minetest.get_meta(pos)
|
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only
initiate a connection to those sides which can accept such. Fixed
various autorouting bugs as I ran across them. Autorouting for various
devices is now:
filters: left and right sides only
nodebreaker, deployer: back only
autocrafter: all six sides
chests: top, bottom, left, right, back (not front)
furnace: bottom, left, right, back (not the top or front)
2013-06-24 03:36:13 +02:00
|
|
|
local inv=meta:get_inventory()
|
|
|
|
if direction.y==1 then
|
|
|
|
return inv:room_for_item("fuel",stack)
|
|
|
|
elseif direction.y==-1 then
|
|
|
|
return inv:room_for_item("src",stack)
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end,
|
2013-07-19 07:36:55 +02:00
|
|
|
input_inventory="dst",
|
|
|
|
connect_sides={left=1, right=1, back=1, bottom=1}}
|
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only
initiate a connection to those sides which can accept such. Fixed
various autorouting bugs as I ran across them. Autorouting for various
devices is now:
filters: left and right sides only
nodebreaker, deployer: back only
autocrafter: all six sides
chests: top, bottom, left, right, back (not front)
furnace: bottom, left, right, back (not the top or front)
2013-06-24 03:36:13 +02:00
|
|
|
furnace.after_place_node= function(pos)
|
|
|
|
tube_scanforobjects(pos)
|
|
|
|
end
|
|
|
|
furnace.after_dig_node = function(pos)
|
|
|
|
tube_scanforobjects(pos)
|
|
|
|
end
|
|
|
|
minetest.register_node(":default:furnace_active",furnace)
|
|
|
|
|
2013-01-14 03:45:03 +01:00
|
|
|
|
2013-11-15 00:54:50 +01:00
|
|
|
chest=pipeworks:clone_node("default:chest")
|
2013-10-21 03:08:46 +02:00
|
|
|
chest.tiles[1] = "pipeworks_chest_tb.png"
|
|
|
|
chest.tiles[2] = "pipeworks_chest_tb.png"
|
|
|
|
chest.tiles[3] = "pipeworks_chest_side.png"
|
|
|
|
chest.tiles[4] = "pipeworks_chest_side.png"
|
|
|
|
chest.tiles[5] = "pipeworks_chest_side.png"
|
|
|
|
-- note we don't redefine entry #6 - the front.
|
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only
initiate a connection to those sides which can accept such. Fixed
various autorouting bugs as I ran across them. Autorouting for various
devices is now:
filters: left and right sides only
nodebreaker, deployer: back only
autocrafter: all six sides
chests: top, bottom, left, right, back (not front)
furnace: bottom, left, right, back (not the top or front)
2013-06-24 03:36:13 +02:00
|
|
|
chest.groups.tubedevice=1
|
|
|
|
chest.groups.tubedevice_receiver=1
|
|
|
|
chest.tube={insert_object = function(pos,node,stack,direction)
|
2013-07-01 05:55:07 +02:00
|
|
|
local meta=minetest.get_meta(pos)
|
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only
initiate a connection to those sides which can accept such. Fixed
various autorouting bugs as I ran across them. Autorouting for various
devices is now:
filters: left and right sides only
nodebreaker, deployer: back only
autocrafter: all six sides
chests: top, bottom, left, right, back (not front)
furnace: bottom, left, right, back (not the top or front)
2013-06-24 03:36:13 +02:00
|
|
|
local inv=meta:get_inventory()
|
|
|
|
return inv:add_item("main",stack)
|
|
|
|
end,
|
|
|
|
can_insert=function(pos,node,stack,direction)
|
2013-07-01 05:55:07 +02:00
|
|
|
local meta=minetest.get_meta(pos)
|
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only
initiate a connection to those sides which can accept such. Fixed
various autorouting bugs as I ran across them. Autorouting for various
devices is now:
filters: left and right sides only
nodebreaker, deployer: back only
autocrafter: all six sides
chests: top, bottom, left, right, back (not front)
furnace: bottom, left, right, back (not the top or front)
2013-06-24 03:36:13 +02:00
|
|
|
local inv=meta:get_inventory()
|
|
|
|
return inv:room_for_item("main",stack)
|
|
|
|
end,
|
2013-07-19 07:36:55 +02:00
|
|
|
input_inventory="main",
|
|
|
|
connect_sides={left=1, right=1, back=1, bottom=1, top=1}}
|
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only
initiate a connection to those sides which can accept such. Fixed
various autorouting bugs as I ran across them. Autorouting for various
devices is now:
filters: left and right sides only
nodebreaker, deployer: back only
autocrafter: all six sides
chests: top, bottom, left, right, back (not front)
furnace: bottom, left, right, back (not the top or front)
2013-06-24 03:36:13 +02:00
|
|
|
chest.after_place_node = function(pos)
|
|
|
|
tube_scanforobjects(pos)
|
|
|
|
end
|
|
|
|
chest.after_dig_node = function(pos)
|
|
|
|
tube_scanforobjects(pos)
|
|
|
|
end
|
|
|
|
|
2013-02-02 08:21:48 +01:00
|
|
|
minetest.register_node(":default:chest",chest)
|
2013-07-08 17:58:27 +02:00
|
|
|
|
|
|
|
|
2013-11-15 00:54:50 +01:00
|
|
|
chest_locked=pipeworks:clone_node("default:chest_locked")
|
2013-10-21 03:08:46 +02:00
|
|
|
chest_locked.tiles[1] = "pipeworks_chest_tb.png"
|
|
|
|
chest_locked.tiles[2] = "pipeworks_chest_tb.png"
|
|
|
|
chest_locked.tiles[3] = "pipeworks_chest_side.png"
|
|
|
|
chest_locked.tiles[4] = "pipeworks_chest_side.png"
|
|
|
|
chest_locked.tiles[5] = "pipeworks_chest_side.png"
|
|
|
|
-- note we don't redefine entry #6 - the front.
|
2013-07-08 17:58:27 +02:00
|
|
|
chest_locked.groups.tubedevice=1
|
|
|
|
chest_locked.groups.tubedevice_receiver=1
|
|
|
|
chest_locked.tube={insert_object = function(pos,node,stack,direction)
|
|
|
|
local meta=minetest.env:get_meta(pos)
|
|
|
|
local inv=meta:get_inventory()
|
|
|
|
return inv:add_item("main",stack)
|
|
|
|
end,
|
|
|
|
can_insert=function(pos,node,stack,direction)
|
|
|
|
local meta=minetest.env:get_meta(pos)
|
|
|
|
local inv=meta:get_inventory()
|
|
|
|
return inv:room_for_item("main",stack)
|
2013-07-19 07:36:55 +02:00
|
|
|
end,
|
|
|
|
connect_sides={left=1, right=1, back=1, bottom=1, top=1}}
|
2013-07-08 17:58:27 +02:00
|
|
|
local old_after_place = minetest.registered_nodes["default:chest_locked"].after_place_node;
|
|
|
|
chest_locked.after_place_node = function(pos, placer)
|
|
|
|
tube_scanforobjects(pos)
|
|
|
|
old_after_place(pos, placer)
|
|
|
|
end
|
|
|
|
chest_locked.after_dig_node = function(pos)
|
|
|
|
tube_scanforobjects(pos)
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.register_node(":default:chest_locked",chest_locked)
|