summaryrefslogtreecommitdiff
path: root/compat.lua
blob: 04f4a9dd30dc922eda7920735a414c0ca0ea2a64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
-- this bit of code modifies the default chests and furnaces to be compatible
-- with pipeworks.

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 = {
		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",
		connect_sides = {left=1, right=1, back=1, front=1, bottom=1, top=1}
	},
	after_place_node = function(pos)
		pipeworks.scan_for_tube_objects(pos)
	end,
	after_dig_node = function(pos)
		pipeworks.scan_for_tube_objects(pos)
	end
})

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, not_in_creative_inventory = 1 },
	tube = {
		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",
		connect_sides = {left=1, right=1, back=1, front=1, bottom=1, top=1}
	},
	after_place_node= function(pos)
		pipeworks.scan_for_tube_objects(pos)
	end,
	after_dig_node = function(pos)
		pipeworks.scan_for_tube_objects(pos)
	end
})

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 = {
		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",
		connect_sides = {left=1, right=1, back=1, front=1, bottom=1, top=1}
	},
	after_place_node = function(pos)
		pipeworks.scan_for_tube_objects(pos)
	end,
	after_dig_node = function(pos)
		pipeworks.scan_for_tube_objects(pos)
	end
})

local old_locked_chest_after_place = minetest.registered_nodes["default:chest_locked"].after_place_node

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 = {
		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,
		connect_sides = {left=1, right=1, back=1, front=1, bottom=1, top=1}
	},
	after_place_node = function(pos, placer)
		pipeworks.scan_for_tube_objects(pos)
		old_locked_chest_after_place(pos, placer)
	end,
	after_dig_node = function(pos)
		pipeworks.scan_for_tube_objects(pos)
	end
})