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
245
246
247
248
249
250
251
252
|
if not minetest.get_modpath("mesecons_mvps") then
minetest.log("error","mesecons_mvps is not installed - digilines piston will not be available!")
return
end
local function extend(pos,node,max,sound)
local meta = minetest.get_meta(pos):to_table()
local facedir = minetest.facedir_to_dir(node.param2)
local actiondir = vector.multiply(facedir,-1)
local ppos = vector.add(pos,actiondir)
local success,stack,oldstack = mesecon.mvps_push(ppos,actiondir,max,meta.fields.owner)
if stack == "protected" then
minetest.record_protection_violation(pos,meta.fields.owner)
end
if not success then return end
if sound == "digilines" then
minetest.sound_play("digistuff_piston_extend",{pos = pos,max_hear_distance = 20,gain = 0.6})
elseif sound == "mesecons" then
minetest.sound_play("piston_extend",{pos = pos,max_hear_distance = 20,gain = 0.6})
end
minetest.swap_node(pos,{name = "digistuff:piston_ext",param2 = node.param2})
minetest.swap_node(ppos,{name = "digistuff:piston_pusher",param2 = node.param2})
mesecon.mvps_process_stack(stack)
mesecon.mvps_move_objects(ppos,actiondir,oldstack)
minetest.get_meta(pos):from_table(meta)
end
local function retract(pos,node,max,allsticky,sound)
local facedir = minetest.facedir_to_dir(node.param2)
local actiondir = vector.multiply(facedir,-1)
local ppos = vector.add(pos,actiondir)
minetest.swap_node(pos,{name = "digistuff:piston",param2 = node.param2})
if minetest.get_node(ppos).name == "digistuff:piston_pusher" then
minetest.remove_node(ppos)
end
if sound == "digilines" then
minetest.sound_play("digistuff_piston_retract",{pos = pos,max_hear_distance = 20,gain = 0.6})
elseif sound == "mesecons" then
minetest.sound_play("piston_retract",{pos = pos,max_hear_distance = 20,gain = 0.6})
end
minetest.check_for_falling(ppos)
if type(max) ~= "number" or max <= 0 then return end
local pullpos = vector.add(pos,vector.multiply(actiondir,2))
local success,stack,oldstack
local owner = minetest.get_meta(pos):get_string("owner")
if allsticky then
success,stack,oldstack = mesecon.mvps_pull_all(pullpos,facedir,max,owner ~= "" and owner)
else
success,stack,oldstack = mesecon.mvps_pull_single(pullpos,facedir,max,owner ~= "" and owner)
end
if stack == "protected" then
minetest.record_protection_violation(pos,owner)
end
if success then
mesecon.mvps_move_objects(pullpos,actiondir,oldstack,-1)
end
end
minetest.register_node("digistuff:piston", {
description = "Digilines Piston",
groups = {cracky=3},
paramtype2 = "facedir",
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_string("formspec","field[channel;Channel;${channel}")
end,
after_place_node = function(pos,placer)
local meta = minetest.get_meta(pos)
meta:set_string("owner",placer:get_player_name())
end,
tiles = {
"digistuff_piston_sides.png^[transformR180",
"digistuff_piston_sides.png",
"digistuff_piston_sides.png^[transformR90",
"digistuff_piston_sides.png^[transformR270",
"digistuff_camera_pole.png",
"digistuff_camera_pole.png",
},
on_receive_fields = function(pos, formname, fields, sender)
local name = sender:get_player_name()
if minetest.is_protected(pos,name) and not minetest.check_player_privs(name,{protection_bypass=true}) then
minetest.record_protection_violation(pos,name)
return
end
local meta = minetest.get_meta(pos)
if fields.channel then meta:set_string("channel",fields.channel) end
end,
_digistuff_channelcopier_fieldname = "channel",
digiline = {
wire = {
rules = {
{x = 1, y = 0, z = 0},
{x =-1, y = 0, z = 0},
{x = 0, y = 1, z = 0},
{x = 0, y =-1, z = 0},
{x = 0, y = 0, z = 1},
{x = 0, y = 0, z =-1},
},
},
receptor = {},
effector = {
action = function(pos,node,channel,msg)
local meta = minetest.get_meta(pos)
local setchan = meta:get_string("channel")
if channel ~= setchan then return end
if msg == "extend" then
extend(pos,node,16,"digilines")
elseif type(msg) == "table" and msg.action == "extend" then
local max = 16
if type(msg.max) == "number" then
max = math.max(0,math.min(16,math.floor(msg.max)))
end
extend(pos,node,max,msg.sound or "digilines")
end
end
},
},
})
minetest.register_node("digistuff:piston_ext", {
description = "Digilines Piston (extended state - you hacker you!)",
groups = {cracky = 3,not_in_creative_inventory = 1},
paramtype2 = "facedir",
tiles = {
"digistuff_piston_sides.png^[transformR180",
"digistuff_piston_sides.png",
"digistuff_piston_sides.png^[transformR90",
"digistuff_piston_sides.png^[transformR270",
"digistuff_camera_pole.png",
"digistuff_camera_pole.png",
},
drop = "digistuff:piston",
drawtype = "nodebox",
node_box = {
type = "fixed",
fixed = {
{-0.5,-0.5,-0.3,0.5,0.5,0.5},
{-0.2,-0.2,-0.5,0.2,0.2,-0.3},
}
},
selection_box = {
type = "fixed",
fixed = {
{-0.5,-0.5,-1.5,0.5,0.5,0.5},
}
},
_digistuff_channelcopier_fieldname = "channel",
on_rotate = function() return false end,
on_receive_fields = function(pos, formname, fields, sender)
local name = sender:get_player_name()
if minetest.is_protected(pos,name) and not minetest.check_player_privs(name,{protection_bypass=true}) then
minetest.record_protection_violation(pos,name)
return
end
local meta = minetest.get_meta(pos)
if fields.channel then meta:set_string("channel",fields.channel) end
end,
after_dig_node = function(pos,node)
local pdir = vector.multiply(minetest.facedir_to_dir(node.param2),-1)
local ppos = vector.add(pos,pdir)
if minetest.get_node(ppos).name == "digistuff:piston_pusher" then
minetest.remove_node(ppos)
end
end,
digiline = {
wire = {
rules = {
{x = 1, y = 0, z = 0},
{x =-1, y = 0, z = 0},
{x = 0, y = 1, z = 0},
{x = 0, y =-1, z = 0},
{x = 0, y = 0, z = 1},
{x = 0, y = 0, z =-1},
},
},
receptor = {},
effector = {
action = function(pos,node,channel,msg)
local meta = minetest.get_meta(pos)
local setchan = meta:get_string("channel")
if channel ~= setchan then return end
if msg == "retract" then
retract(pos,node,0,false,"digilines")
elseif msg == "retract_sticky" then
retract(pos,node,16,false,"digilines")
elseif type(msg) == "table" and msg.action == "retract" then
local max = 16
if type(msg.max) == "number" then
max = math.max(0,math.min(16,math.floor(msg.max)))
elseif msg.max == nil then
max = 0
end
retract(pos,node,max,msg.allsticky,msg.sound or "digilines")
end
end
},
},
})
minetest.register_node("digistuff:piston_pusher", {
description = "Digilines Piston Pusher (you hacker you!)",
groups = {not_in_creative_inventory=1},
paramtype = "light",
sunlight_propagates = true,
paramtype2 = "facedir",
tiles = {
"digistuff_piston_sides.png^[transformR180",
"digistuff_piston_sides.png",
"digistuff_piston_sides.png^[transformR90",
"digistuff_piston_sides.png^[transformR270",
"digistuff_camera_pole.png",
"digistuff_camera_pole.png",
},
drawtype = "nodebox",
node_box = {
type = "fixed",
fixed = {
{-0.5,-0.5,-0.5,0.5,0.5,-0.3},
{-0.2,-0.2,-0.3,0.2,0.2,0.5},
}
},
selection_box = {
type = "fixed",
fixed = {
{0,0,0,0,0,0},
}
},
digiline = {
wire = {
rules = {
{x = 1, y = 0, z = 0},
{x =-1, y = 0, z = 0},
{x = 0, y = 1, z = 0},
{x = 0, y =-1, z = 0},
{x = 0, y = 0, z = 1},
{x = 0, y = 0, z =-1},
},
},
},
})
mesecon.register_mvps_stopper("digistuff:piston_ext")
mesecon.register_mvps_stopper("digistuff:piston_pusher")
minetest.register_craft({
output = "digistuff:piston",
recipe = {
{"mesecons_pistons:piston_normal_off"},
{"mesecons_luacontroller:luacontroller0000"},
{"digilines:wire_std_00000000"},
},
})
|