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
|
|
|
|
2014-07-30 20:13:17 +02:00
|
|
|
minetest.override_item("default:furnace", {
|
|
|
|
tiles = {
|
|
|
|
"default_furnace_top.png^pipeworks_tube_connection_stony.png",
|
|
|
|
"default_furnace_bottom.png^pipeworks_tube_connection_stony.png",
|
|
|
|
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
|
|
|
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
|
|
|
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
|
|
|
"default_furnace_front.png"
|
|
|
|
},
|
|
|
|
groups = {cracky=2, tubedevice = 1, tubedevice_receiver = 1 },
|
|
|
|
tube = {
|
2013-12-21 11:11:36 +01:00
|
|
|
insert_object = function(pos, node, stack, direction)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
if direction.y == 1 then
|
2013-01-14 03:45:03 +01:00
|
|
|
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,
|
2013-12-21 11:11:36 +01:00
|
|
|
can_insert = function(pos,node,stack,direction)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
if direction.y == 1 then
|
|
|
|
return inv:room_for_item("fuel", stack)
|
|
|
|
else
|
|
|
|
return inv:room_for_item("src", stack)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
input_inventory = "dst",
|
2013-12-24 15:51:38 +01:00
|
|
|
connect_sides = {left=1, right=1, back=1, front=1, bottom=1, top=1}
|
2014-07-30 20:13:17 +02:00
|
|
|
},
|
|
|
|
after_place_node = function(pos)
|
2013-12-15 08:53:10 +01:00
|
|
|
pipeworks.scan_for_tube_objects(pos)
|
2014-07-30 20:13:17 +02:00
|
|
|
end,
|
|
|
|
after_dig_node = function(pos)
|
2013-12-15 08:53:10 +01:00
|
|
|
pipeworks.scan_for_tube_objects(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
|
|
|
end
|
2014-07-30 20:13:17 +02:00
|
|
|
})
|
2013-02-02 08:21:48 +01:00
|
|
|
|
2014-07-30 20:13:17 +02:00
|
|
|
minetest.override_item("default:furnace_active", {
|
|
|
|
tiles = {
|
|
|
|
"default_furnace_top.png^pipeworks_tube_connection_stony.png",
|
|
|
|
"default_furnace_bottom.png^pipeworks_tube_connection_stony.png",
|
|
|
|
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
|
|
|
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
|
|
|
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
|
|
|
{
|
|
|
|
image = "default_furnace_front_active.png",
|
|
|
|
backface_culling = false,
|
|
|
|
animation = {
|
|
|
|
type = "vertical_frames",
|
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
|
|
|
length = 1.5
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
groups = {cracky=2, tubedevice = 1, tubedevice_receiver = 1 },
|
|
|
|
tube = {
|
2013-12-21 11:11:36 +01:00
|
|
|
insert_object = function(pos,node,stack,direction)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
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)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
if direction.y == 1 then
|
|
|
|
return inv:room_for_item("fuel", stack)
|
|
|
|
else
|
|
|
|
return inv:room_for_item("src", stack)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
input_inventory = "dst",
|
2013-12-24 15:51:38 +01:00
|
|
|
connect_sides = {left=1, right=1, back=1, front=1, bottom=1, top=1}
|
2014-07-30 20:13:17 +02:00
|
|
|
},
|
|
|
|
after_place_node= function(pos)
|
2013-12-15 08:53:10 +01:00
|
|
|
pipeworks.scan_for_tube_objects(pos)
|
2014-07-30 20:13:17 +02:00
|
|
|
end,
|
|
|
|
after_dig_node = function(pos)
|
2013-12-15 08:53:10 +01:00
|
|
|
pipeworks.scan_for_tube_objects(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
|
|
|
end
|
2014-07-30 20:13:17 +02: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
|
|
|
|
2014-07-30 20:13:17 +02:00
|
|
|
minetest.override_item("default:chest", {
|
|
|
|
tiles = {
|
|
|
|
"default_chest_top.png^pipeworks_tube_connection_wooden.png",
|
|
|
|
"default_chest_top.png^pipeworks_tube_connection_wooden.png",
|
|
|
|
"default_chest_side.png^pipeworks_tube_connection_wooden.png",
|
|
|
|
"default_chest_side.png^pipeworks_tube_connection_wooden.png",
|
|
|
|
"default_chest_side.png^pipeworks_tube_connection_wooden.png",
|
|
|
|
"default_chest_front.png"
|
|
|
|
},
|
|
|
|
groups = { choppy=2, oddly_breakable_by_hand=2, tubedevice = 1, tubedevice_receiver = 1 },
|
|
|
|
tube = {
|
2013-12-21 11:11:36 +01:00
|
|
|
insert_object = function(pos, node, stack, direction)
|
|
|
|
local meta = minetest.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.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
return inv:room_for_item("main", stack)
|
|
|
|
end,
|
|
|
|
input_inventory = "main",
|
2013-12-24 15:51:38 +01:00
|
|
|
connect_sides = {left=1, right=1, back=1, front=1, bottom=1, top=1}
|
2014-07-30 20:13:17 +02:00
|
|
|
},
|
|
|
|
after_place_node = function(pos)
|
2013-12-15 08:53:10 +01:00
|
|
|
pipeworks.scan_for_tube_objects(pos)
|
2014-07-30 20:13:17 +02:00
|
|
|
end,
|
|
|
|
after_dig_node = function(pos)
|
2013-12-15 08:53:10 +01:00
|
|
|
pipeworks.scan_for_tube_objects(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
|
|
|
end
|
2014-07-30 20:13:17 +02: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
|
|
|
|
2014-07-30 20:13:17 +02:00
|
|
|
local old_locked_chest_after_place = minetest.registered_nodes["default:chest_locked"].after_place_node
|
2013-07-08 17:58:27 +02:00
|
|
|
|
2014-07-30 20:13:17 +02:00
|
|
|
minetest.override_item("default:chest_locked", {
|
|
|
|
tiles = {
|
|
|
|
"default_chest_top.png^pipeworks_tube_connection_wooden.png",
|
|
|
|
"default_chest_top.png^pipeworks_tube_connection_wooden.png",
|
|
|
|
"default_chest_side.png^pipeworks_tube_connection_wooden.png",
|
|
|
|
"default_chest_side.png^pipeworks_tube_connection_wooden.png",
|
|
|
|
"default_chest_side.png^pipeworks_tube_connection_wooden.png",
|
|
|
|
"default_chest_lock.png"
|
|
|
|
},
|
|
|
|
groups = { choppy=2, oddly_breakable_by_hand=2, tubedevice = 1, tubedevice_receiver = 1 },
|
|
|
|
tube = {
|
2013-12-21 11:11:36 +01:00
|
|
|
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)
|
|
|
|
end,
|
2013-12-24 15:51:38 +01:00
|
|
|
connect_sides = {left=1, right=1, back=1, front=1, bottom=1, top=1}
|
2014-07-30 20:13:17 +02:00
|
|
|
},
|
|
|
|
after_place_node = function(pos, placer)
|
2013-12-15 08:53:10 +01:00
|
|
|
pipeworks.scan_for_tube_objects(pos)
|
2014-07-30 20:13:17 +02:00
|
|
|
old_locked_chest_after_place(pos, placer)
|
|
|
|
end,
|
|
|
|
after_dig_node = function(pos)
|
2013-12-15 08:53:10 +01:00
|
|
|
pipeworks.scan_for_tube_objects(pos)
|
2013-07-08 17:58:27 +02:00
|
|
|
end
|
2014-07-30 20:13:17 +02:00
|
|
|
})
|