summaryrefslogtreecommitdiff
path: root/mesecons_temperest/init.lua
blob: bacc5f9e97a44cf1914bd4652f2a940bdc91641b (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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
--TEMPEREST-PLUG

local set_node_on
local set_node_off

if ENABLE_TEMPEREST then
	set_node_on = function(pos)
		local node = minetest.env:get_node(pos)
		if node.name=="mesecons_temperest:mesecon_socket_off" then
			minetest.env:add_node(pos, {name="mesecons_temperest:mesecon_socket_on"})
			nodeupdate(pos)
			mesecon:receptor_on(pos)
		elseif node.name=="mesecons_temperest:mesecon_inverter_on" then
			minetest.env:add_node(pos, {name="mesecons_temperest:mesecon_inverter_off"})
			nodeupdate(pos)
			mesecon:receptor_off(pos)
		end
	end
	
	set_node_off = function(pos)
		node = minetest.env:get_node(pos)
		if node.name=="mesecons_temperest:mesecon_socket_on" then
			minetest.env:add_node(pos, {name="mesecons_temperest:mesecon_socket_off"})
			nodeupdate(pos)
			mesecon:receptor_off(pos)
		elseif node.name=="mesecons_temperest:mesecon_inverter_off" then
			minetest.env:add_node(pos, {name="mesecons_temperest:mesecon_inverter_on"})
			nodeupdate(pos)
			mesecon:receptor_on(pos)
		end
	end
else
	set_node_on = function(pos)
		local node = minetest.env:get_node(pos)
		if node.name=="mesecons_temperest:mesecon_socket_off" then
			minetest.env:add_node(pos, {name="mesecons_temperest:mesecon_socket_on"})
			nodeupdate(pos)
			mesecon:receptor_on(pos)
		end
	end
	
	set_node_off = function(pos)
		node = minetest.env:get_node(pos)
		if node.name=="mesecons_temperest:mesecon_socket_on" then
			minetest.env:add_node(pos, {name="mesecons_temperest:mesecon_socket_off"})
			nodeupdate(pos)
			mesecon:receptor_off(pos)
		end
	end
end

local plug_on = function(pos)
	local node = minetest.env:get_node(pos)
	if node.name=="mesecons_temperest:mesecon_plug" then
		local lnode = minetest.env:get_node({x=pos.x-1, y=pos.y, z=pos.z}) --a node between this node and the one two nodes away
		if lnode.name=="air" then set_node_on({x=pos.x-2, y=pos.y, z=pos.z}) end
		
		local lnode = minetest.env:get_node({x=pos.x+1, y=pos.y, z=pos.z}) --a node between this node and the one two nodes away
		if lnode.name=="air" then set_node_on({x=pos.x+2, y=pos.y, z=pos.z}) end
		
		lnode = minetest.env:get_node({x=pos.x, y=pos.y-1, z=pos.z}) --a node between this node and the one two nodes away
		if lnode.name=="air" then set_node_on({x=pos.x, y=pos.y-2, z=pos.z}) end
		
		lnode = minetest.env:get_node({x=pos.x, y=pos.y+1, z=pos.z}) --a node between this node and the one two nodes away
		if lnode.name=="air" then set_node_on({x=pos.x, y=pos.y+2, z=pos.z}) end
		
		local lnode = minetest.env:get_node({x=pos.x, y=pos.y, z=pos.z-1}) --a node between this node and the one two nodes away
		if lnode.name=="air" then set_node_on({x=pos.x, y=pos.y, z=pos.z-2}) end
		
		local lnode = minetest.env:get_node({x=pos.x, y=pos.y, z=pos.z+1}) --a node between this node and the one two nodes away
		if lnode.name=="air" then set_node_on({x=pos.x, y=pos.y, z=pos.z+2}) end
	end
end

local plug_off = function(pos)
	local node = minetest.env:get_node(pos)
	if node.name=="mesecons_temperest:mesecon_plug" then
		lnode = minetest.env:get_node({x=pos.x-1, y=pos.y, z=pos.z}) --a node between this node and the one two nodes away
		if lnode.name=="air" then set_node_off({x=pos.x-2, y=pos.y, z=pos.z}) end
		
		lnode = minetest.env:get_node({x=pos.x+1, y=pos.y, z=pos.z}) --a node between this node and the one two nodes away
		if lnode.name=="air" then set_node_off({x=pos.x+2, y=pos.y, z=pos.z}) end
		
		lnode = minetest.env:get_node({x=pos.x, y=pos.y-1, z=pos.z}) --a node between this node and the one two nodes away
		if lnode.name=="air" then set_node_off({x=pos.x, y=pos.y-2, z=pos.z}) end
		
		lnode = minetest.env:get_node({x=pos.x, y=pos.y+1, z=pos.z}) --a node between this node and the one two nodes away
		if lnode.name=="air" then set_node_off({x=pos.x, y=pos.y+2, z=pos.z}) end
		
		lnode = minetest.env:get_node({x=pos.x, y=pos.y, z=pos.z-1}) --a node between this node and the one two nodes away
		if lnode.name=="air" then set_node_off({x=pos.x, y=pos.y, z=pos.z-2}) end
		
		lnode = minetest.env:get_node({x=pos.x, y=pos.y, z=pos.z+1}) --a node between this node and the one two nodes away
		if lnode.name=="air" then set_node_off({x=pos.x, y=pos.y, z=pos.z+2}) end
	end
end

mesecon:register_on_signal_on(plug_on)
mesecon:register_on_signal_off(plug_off)

minetest.register_node("mesecons_temperest:mesecon_plug", {
	drawtype = "nodebox",
	paramtype = "light",
	is_ground_content = true,
	tile_images = {"jeija_mesecon_plug.png"},
	inventory_image = "jeija_mesecon_plug.png",
	wield_image = "jeija_mesecon_plug.png",
	groups = {dig_immediate=2},
	walkable = false,
	selection_box = {
		type = "fixed",
		fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
	},
	node_box = {
		type = "fixed",
		fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
	},
	description = "Plug",
	after_place_node = plug_off,
	after_dig_node = plug_off
})

minetest.register_craft({
	output = '"mesecons_temperest:mesecon_plug" 2',
	recipe = {
		{'', '"mesecons:mesecon_off"', ''},
		{'"mesecons:mesecon_off"', '"default:steel_ingot"', '"mesecons:mesecon_off"'},
		{'', '"mesecons:mesecon_off"', ''},
	}
})

--TEMPEREST-SOCKET

minetest.register_node("mesecons_temperest:mesecon_socket_off", {
	description = "Socket",
	drawtype = "nodebox",
	paramtype = "light",
	is_ground_content = true,
	tile_images = {"jeija_mesecon_socket_off.png"},
	inventory_image = "jeija_mesecon_socket_off.png",
	wield_image = "jeija_mesecon_socket_off.png",
	groups = {dig_immediate=2},
	walkable = false,
	selection_box = {
		type = "fixed",
		fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
	},
	node_box = {
		type = "fixed",
		fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
	},
})

minetest.register_node("mesecons_temperest:mesecon_socket_on", {
	drawtype = "nodebox",
	paramtype = "light",
	is_ground_content = true,
	tile_images = {"jeija_mesecon_socket_on.png"},
	groups = {dig_immediate=2,not_in_creative_inventory=1},
	walkable = false,
	selection_box = {
		type = "fixed",
		fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
	},
	node_box = {
		type = "fixed",
		fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
	},
	drop='"mesecons_temperest:mesecon_socket_off" 1',
	after_dig_node = function(pos)
		mesecon:receptor_off(pos)
	end
})

mesecon:add_receptor_node("mesecons_temperest:mesecon_socket_on")
mesecon:add_receptor_node_off("mesecons_temperest:mesecon_socket_off")

minetest.register_craft({
	output = '"mesecons_temperest:mesecon_socket_off" 2',
	recipe = {
		{'', '"default:steel_ingot"', ''},
		{'"default:steel_ingot"', '"mesecons_temperest:mesecon_off"', '"default:steel_ingot"'},
		{'', '"default:steel_ingot"', ''},
	}
})

--TEMPEREST-INVERTER
if ENABLE_TEMPEREST then
	minetest.register_node("mesecons_temperest:mesecon_inverter_off", {
		drawtype = "nodebox",
		paramtype = "light",
		is_ground_content = true,
		tile_images = {"jeija_mesecon_inverter_off.png"},
		groups = {dig_immediate=2,not_in_creative_inventory=1},
		walkable = false,
		selection_box = {
			type = "fixed",
			fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
		},
		node_box = {
			type = "fixed",
			fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
		},
		drop='"mesecons_temperest:mesecon_inverter_on" 1',
	})

	minetest.register_node("mesecons_temperest:mesecon_inverter_on", {
		description = "Inverter",
		drawtype = "nodebox",
		paramtype = "light",
		is_ground_content = true,
		tile_images = {"jeija_mesecon_inverter_on.png"},
		inventory_image = "jeija_mesecon_inverter_on.png",
		wield_image = "jeija_mesecon_inverter_on.png",
		groups = {dig_immediate=2},
		walkable = false,
		selection_box = {
			type = "fixed",
			fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
		},
		node_box = {
			type = "fixed",
			fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
		},
		after_place_node = function(pos)
			mesecon:receptor_on(pos)
		end,
		after_dig_node = function(pos)
			mesecon:receptor_off(pos)
		end
	})

	mesecon:add_receptor_node("mesecons_temperest:mesecon_inverter_on")
	mesecon:add_receptor_node_off("mesecons_temperest:mesecon_inverter_off")

	minetest.register_craft({
		output = '"mesecons_temperest:mesecon_inverter_on" 2',
		recipe = {
			{'"mesecons_temperest:mesecon_off"', '"default:steel_ingot"', '"mesecons:mesecon_off"'},
			{'"default:steel_ingot"', '', '"default:steel_ingot"'},
			{'"mesecons:mesecon_off"', '"default:steel_ingot"', '"mesecons:mesecon_off"'},
		}
	})
end