2013-11-27 22:17:19 +01:00
|
|
|
local S = technic.getter
|
|
|
|
|
2018-08-16 13:47:43 +02:00
|
|
|
local infinite_stacks = minetest.settings:get_bool("creative_mode")
|
|
|
|
and minetest.get_modpath("unified_inventory") == nil
|
2014-01-12 16:52:42 +01:00
|
|
|
|
2014-01-02 11:26:50 +01:00
|
|
|
local frames_pos = {}
|
|
|
|
|
2013-10-13 10:26:18 +02:00
|
|
|
-- Helpers
|
|
|
|
|
2018-08-16 13:47:43 +02:00
|
|
|
local function get_face(pos, ppos, pvect)
|
2013-10-13 10:26:18 +02:00
|
|
|
-- Raytracer to get which face has been clicked
|
2018-08-16 13:47:43 +02:00
|
|
|
ppos = { x = ppos.x - pos.x, y = ppos.y - pos.y + 1.5, z = ppos.z - pos.z }
|
|
|
|
|
|
|
|
if pvect.x > 0 then
|
|
|
|
local t = (-0.5 - ppos.x) / pvect.x
|
|
|
|
local y_int = ppos.y + t * pvect.y
|
|
|
|
local z_int = ppos.z + t * pvect.z
|
|
|
|
if y_int > -0.45 and y_int < 0.45 and z_int > -0.45 and z_int < 0.45 then
|
|
|
|
return 1
|
|
|
|
end
|
|
|
|
elseif pvect.x < 0 then
|
|
|
|
local t = (0.5 - ppos.x) / pvect.x
|
|
|
|
local y_int = ppos.y + t * pvect.y
|
|
|
|
local z_int = ppos.z + t * pvect.z
|
|
|
|
if y_int > -0.45 and y_int < 0.45 and z_int > -0.45 and z_int < 0.45 then
|
|
|
|
return 2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if pvect.y > 0 then
|
|
|
|
local t = (-0.5 - ppos.y) / pvect.y
|
|
|
|
local x_int = ppos.x + t * pvect.x
|
|
|
|
local z_int = ppos.z + t * pvect.z
|
|
|
|
if x_int > -0.45 and x_int < 0.45 and z_int > -0.45 and z_int < 0.45 then
|
|
|
|
return 3
|
|
|
|
end
|
|
|
|
elseif pvect.y < 0 then
|
|
|
|
local t = (0.5 - ppos.y) / pvect.y
|
|
|
|
local x_int = ppos.x + t * pvect.x
|
|
|
|
local z_int = ppos.z + t * pvect.z
|
|
|
|
if x_int > -0.45 and x_int < 0.45 and z_int > -0.45 and z_int < 0.45 then
|
|
|
|
return 4
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if pvect.z > 0 then
|
|
|
|
local t = (-0.5 - ppos.z) / pvect.z
|
|
|
|
local x_int = ppos.x + t * pvect.x
|
|
|
|
local y_int = ppos.y + t * pvect.y
|
|
|
|
if x_int > -0.45 and x_int < 0.45 and y_int > -0.45 and y_int < 0.45 then
|
|
|
|
return 5
|
|
|
|
end
|
|
|
|
elseif pvect.z < 0 then
|
|
|
|
local t = (0.5 - ppos.z) / pvect.z
|
|
|
|
local x_int = ppos.x + t * pvect.x
|
|
|
|
local y_int = ppos.y + t * pvect.y
|
|
|
|
if x_int > -0.45 and x_int < 0.45 and y_int > -0.45 and y_int < 0.45 then
|
|
|
|
return 6
|
|
|
|
end
|
2013-02-06 15:34:01 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-12-17 19:56:37 +01:00
|
|
|
local function lines(str)
|
2013-10-19 11:27:47 +02:00
|
|
|
local t = {}
|
|
|
|
local function helper(line) table.insert(t, line) return "" end
|
2018-08-16 13:47:43 +02:00
|
|
|
helper(str:gsub("(.-)\r?\n", helper))
|
2013-10-19 11:27:47 +02:00
|
|
|
return t
|
|
|
|
end
|
|
|
|
|
|
|
|
local function pos_to_string(pos)
|
|
|
|
if pos.x == 0 then pos.x = 0 end -- Fix for signed 0
|
|
|
|
if pos.y == 0 then pos.y = 0 end -- Fix for signed 0
|
|
|
|
if pos.z == 0 then pos.z = 0 end -- Fix for signed 0
|
|
|
|
return tostring(pos.x).."\n"..tostring(pos.y).."\n"..tostring(pos.z)
|
|
|
|
end
|
|
|
|
|
|
|
|
local function pos_from_string(str)
|
|
|
|
local l = lines(str)
|
2018-08-16 13:47:43 +02:00
|
|
|
return { x = tonumber(l[1]), y = tonumber(l[2]), z = tonumber(l[3]) }
|
2013-10-19 11:27:47 +02:00
|
|
|
end
|
|
|
|
|
2018-08-16 13:47:43 +02:00
|
|
|
local function pos_in_list(l, pos)
|
|
|
|
for _, p in ipairs(l) do
|
|
|
|
if p.x == pos.x and p.y == pos.y and p.z == pos.z then
|
|
|
|
return true
|
|
|
|
end
|
2013-10-13 10:26:18 +02:00
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
2013-02-06 15:34:01 +01:00
|
|
|
|
2013-10-19 11:27:47 +02:00
|
|
|
local function table_empty(table)
|
|
|
|
for _, __ in pairs(table) do
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2018-08-16 13:47:43 +02:00
|
|
|
local function add_table(table, toadd)
|
2014-01-03 15:19:43 +01:00
|
|
|
local i = 1
|
2013-10-13 10:26:18 +02:00
|
|
|
while true do
|
2020-06-12 20:39:00 +02:00
|
|
|
local o = table[i]
|
2014-01-03 15:19:43 +01:00
|
|
|
if o == toadd then return end
|
|
|
|
if o == nil then break end
|
2018-08-16 13:47:43 +02:00
|
|
|
i = i + 1
|
2013-10-13 10:26:18 +02:00
|
|
|
end
|
2014-01-03 15:19:43 +01:00
|
|
|
table[i] = toadd
|
2013-10-13 10:26:18 +02:00
|
|
|
end
|
|
|
|
|
2018-08-16 13:47:43 +02:00
|
|
|
local function move_nodes_vect(poslist, vect, must_not_move, owner)
|
2013-10-06 14:20:13 +02:00
|
|
|
if minetest.is_protected then
|
2018-08-16 13:47:43 +02:00
|
|
|
for _, pos in ipairs(poslist) do
|
|
|
|
local npos = vector.add(pos, vect)
|
2013-10-06 14:20:13 +02:00
|
|
|
if minetest.is_protected(pos, owner) or minetest.is_protected(npos, owner) then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
|
|
|
for _, pos in ipairs(poslist) do
|
|
|
|
local npos = vector.add(pos, vect)
|
2014-01-02 14:07:15 +01:00
|
|
|
local name = minetest.get_node(npos).name
|
2018-08-16 13:47:43 +02:00
|
|
|
if (name ~= "air" and minetest.registered_nodes[name].liquidtype == "none" or
|
|
|
|
frames_pos[pos_to_string(npos)]) and not pos_in_list(poslist, npos) then
|
2013-10-13 10:26:18 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-03 15:19:43 +01:00
|
|
|
local nodelist = {}
|
|
|
|
for _, pos in ipairs(poslist) do
|
|
|
|
local node = minetest.get_node(pos)
|
|
|
|
local meta = minetest.get_meta(pos):to_table()
|
2018-08-16 12:43:02 +02:00
|
|
|
local timer = minetest.get_node_timer(pos)
|
2018-08-16 13:47:43 +02:00
|
|
|
nodelist[#nodelist + 1] = {
|
2018-08-16 12:43:02 +02:00
|
|
|
oldpos = pos,
|
|
|
|
pos = vector.add(pos, vect),
|
|
|
|
node = node,
|
|
|
|
meta = meta,
|
|
|
|
timer = {
|
|
|
|
timeout = timer:get_timeout(),
|
|
|
|
elapsed = timer:get_elapsed()
|
|
|
|
}
|
|
|
|
}
|
2013-10-13 10:26:18 +02:00
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-03 15:19:43 +01:00
|
|
|
local objects = {}
|
|
|
|
for _, pos in ipairs(poslist) do
|
2018-08-16 13:47:43 +02:00
|
|
|
for _, object in ipairs(minetest.get_objects_inside_radius(pos, 1)) do
|
2014-01-03 15:19:43 +01:00
|
|
|
local entity = object:get_luaentity()
|
2014-11-22 19:58:38 +01:00
|
|
|
if not entity or not mesecon.is_mvps_unmov(entity.name) then
|
2014-01-03 15:19:43 +01:00
|
|
|
add_table(objects, object)
|
|
|
|
end
|
2013-10-13 10:26:18 +02:00
|
|
|
end
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-03 15:19:43 +01:00
|
|
|
for _, obj in ipairs(objects) do
|
2019-09-14 12:55:41 +02:00
|
|
|
obj:set_pos(vector.add(obj:get_pos(), vect))
|
2014-01-02 11:26:50 +01:00
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
|
|
|
for _, n in ipairs(nodelist) do
|
2014-01-03 15:19:43 +01:00
|
|
|
local npos = n.pos
|
|
|
|
minetest.set_node(npos, n.node)
|
|
|
|
local meta = minetest.get_meta(npos)
|
2013-10-13 10:26:18 +02:00
|
|
|
meta:from_table(n.meta)
|
2018-08-16 12:43:02 +02:00
|
|
|
local timer = minetest.get_node_timer(npos)
|
|
|
|
if n.timer.timeout ~= 0 or n.timer.elapsed ~= 0 then
|
|
|
|
timer:set(n.timer.timeout, n.timer.elapsed)
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
for __, pos in ipairs(poslist) do
|
2014-01-03 15:19:43 +01:00
|
|
|
if npos.x == pos.x and npos.y == pos.y and npos.z == pos.z then
|
2013-10-13 10:26:18 +02:00
|
|
|
table.remove(poslist, __)
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-03 15:19:43 +01:00
|
|
|
for __, pos in ipairs(poslist) do
|
2014-01-02 14:07:15 +01:00
|
|
|
minetest.remove_node(pos)
|
2013-10-13 10:26:18 +02:00
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-03 15:19:43 +01:00
|
|
|
for _, callback in ipairs(mesecon.on_mvps_move) do
|
|
|
|
callback(nodelist)
|
|
|
|
end
|
2013-10-13 10:26:18 +02:00
|
|
|
end
|
|
|
|
|
2014-01-02 11:26:50 +01:00
|
|
|
local function is_supported_node(name)
|
2018-08-16 13:47:43 +02:00
|
|
|
return string.find(name, "tube") and string.find(name, "pipeworks")
|
2014-01-02 11:26:50 +01:00
|
|
|
end
|
2013-10-13 10:26:18 +02:00
|
|
|
|
|
|
|
-- Frames
|
2018-08-16 13:47:43 +02:00
|
|
|
for xm = 0, 1 do
|
|
|
|
for xp = 0, 1 do
|
|
|
|
for ym = 0, 1 do
|
|
|
|
for yp = 0, 1 do
|
|
|
|
for zm = 0, 1 do
|
|
|
|
for zp = 0, 1 do
|
|
|
|
|
|
|
|
local a = 8 / 16
|
|
|
|
local b = 7 / 16
|
|
|
|
local nodeboxes = {
|
|
|
|
{ -a, -a, -a, -b, a, -b },
|
|
|
|
{ -a, -a, b, -b, a, a },
|
|
|
|
|
|
|
|
{ b, -a, b, a, a, a },
|
|
|
|
{ b, -a, -a, a, a, -b },
|
|
|
|
|
|
|
|
{ -b, b, -a, b, a, -b },
|
|
|
|
{ -b, -a, -a, b, -b, -b },
|
|
|
|
|
|
|
|
{ -b, b, b, b, a, a },
|
|
|
|
{ -b, -a, b, b, -b, a },
|
|
|
|
|
|
|
|
{ b, b, -b, a, a, b },
|
|
|
|
{ b, -a, -b, a, -b, b },
|
|
|
|
|
|
|
|
{ -a, b, -b, -b, a, b },
|
|
|
|
{ -a, -a, -b, -b, -b, b },
|
2013-02-06 15:34:01 +01:00
|
|
|
}
|
2018-08-16 13:47:43 +02:00
|
|
|
|
|
|
|
if yp == 0 then
|
|
|
|
table.insert(nodeboxes, { -b, b, -b, b, a, b })
|
2013-02-06 15:34:01 +01:00
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
if ym == 0 then
|
|
|
|
table.insert(nodeboxes, { -b, -a, -b, b, -b, b })
|
2013-02-06 15:34:01 +01:00
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
if xp == 0 then
|
|
|
|
table.insert(nodeboxes, { b, b, b, a, -b, -b })
|
2013-02-06 15:34:01 +01:00
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
if xm == 0 then
|
|
|
|
table.insert(nodeboxes, { -a, -b, -b, -b, b, b })
|
2013-02-06 15:34:01 +01:00
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
if zp == 0 then
|
|
|
|
table.insert(nodeboxes, { -b, -b, b, b, b, a })
|
2013-02-06 15:34:01 +01:00
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
if zm == 0 then
|
|
|
|
table.insert(nodeboxes, { -b, -b, -a, b, b, -b })
|
2013-02-06 15:34:01 +01:00
|
|
|
end
|
|
|
|
|
2018-08-16 13:47:43 +02:00
|
|
|
local nameext = string.format("%d%d%d%d%d%d", xm, xp, ym, yp, zm, zp)
|
|
|
|
local groups = { snappy = 2, choppy = 2, oddly_breakable_by_hand = 2 }
|
|
|
|
if nameext ~= "111111" then groups.not_in_creative_inventory = 1 end
|
|
|
|
|
|
|
|
|
|
|
|
minetest.register_node("technic:frame_"..nameext, {
|
2013-11-27 22:17:19 +01:00
|
|
|
description = S("Frame"),
|
2018-08-16 13:47:43 +02:00
|
|
|
tiles = { "technic_frame.png" },
|
|
|
|
groups = groups,
|
2013-02-06 15:34:01 +01:00
|
|
|
drawtype = "nodebox",
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
2018-08-16 13:47:43 +02:00
|
|
|
fixed = nodeboxes,
|
2013-02-06 15:34:01 +01:00
|
|
|
},
|
2013-04-13 18:17:27 +02:00
|
|
|
selection_box = {
|
2018-08-16 13:47:43 +02:00
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 }
|
2013-04-13 18:17:27 +02:00
|
|
|
},
|
2013-02-06 15:34:01 +01:00
|
|
|
paramtype = "light",
|
2018-08-16 13:47:43 +02:00
|
|
|
frame = 1,
|
|
|
|
drop = "technic:frame_111111",
|
2014-01-12 16:52:42 +01:00
|
|
|
sunlight_propagates = true,
|
2018-08-16 13:47:43 +02:00
|
|
|
|
|
|
|
frame_connect_all = function(nodename)
|
2020-06-12 20:39:00 +02:00
|
|
|
local l2 = {}
|
|
|
|
local l1 = {
|
2018-08-16 13:47:43 +02:00
|
|
|
{ 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 }
|
|
|
|
}
|
|
|
|
for i, dir in ipairs(l1) do
|
|
|
|
if string.sub(nodename, -7 + i, -7 + i) == "1" then
|
|
|
|
l2[#l2 + 1] = dir
|
2013-02-06 15:34:01 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
return l2
|
|
|
|
end,
|
2018-08-16 13:47:43 +02:00
|
|
|
|
|
|
|
on_punch = function(pos, node, puncher)
|
2019-09-14 12:55:41 +02:00
|
|
|
local ppos = puncher:get_pos()
|
2018-08-16 13:47:43 +02:00
|
|
|
local pvect = puncher:get_look_dir()
|
|
|
|
local pface = get_face(pos, ppos, pvect)
|
|
|
|
|
|
|
|
if pface == nil then return end
|
|
|
|
|
|
|
|
local nodename = node.name
|
|
|
|
local newstate = tostring(1 - tonumber(string.sub(nodename, pface - 7, pface - 7)))
|
|
|
|
if pface <= 5 then
|
|
|
|
nodename = string.sub(nodename, 1, pface - 7 - 1)..newstate..string.sub(nodename, pface - 7 + 1)
|
2013-02-06 15:34:01 +01:00
|
|
|
else
|
2018-08-16 13:47:43 +02:00
|
|
|
nodename = string.sub(nodename, 1, -2)..newstate
|
2013-02-06 15:34:01 +01:00
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
|
|
|
node.name = nodename
|
|
|
|
minetest.set_node(pos, node)
|
2014-01-02 11:00:42 +01:00
|
|
|
end,
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-02 11:00:42 +01:00
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
local pos = pointed_thing.above
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-03 13:39:12 +01:00
|
|
|
if minetest.is_protected(pos, placer:get_player_name()) then
|
|
|
|
minetest.log("action", placer:get_player_name()
|
|
|
|
.. " tried to place " .. itemstack:get_name()
|
|
|
|
.. " at protected position "
|
|
|
|
.. minetest.pos_to_string(pos))
|
|
|
|
minetest.record_protection_violation(pos, placer:get_player_name())
|
|
|
|
return itemstack
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-02 11:00:42 +01:00
|
|
|
if pos == nil then return end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-02 11:00:42 +01:00
|
|
|
local node = minetest.get_node(pos)
|
|
|
|
if node.name ~= "air" then
|
2014-01-02 11:26:50 +01:00
|
|
|
if is_supported_node(node.name) then
|
2020-06-12 20:39:00 +02:00
|
|
|
local obj = minetest.add_entity(pos, "technic:frame_entity")
|
2018-08-16 13:47:43 +02:00
|
|
|
obj:get_luaentity():set_node({ name = itemstack:get_name() })
|
2014-01-02 11:26:50 +01:00
|
|
|
end
|
2014-01-02 11:00:42 +01:00
|
|
|
else
|
2018-08-16 13:47:43 +02:00
|
|
|
minetest.set_node(pos, { name = itemstack:get_name() })
|
2014-01-02 11:00:42 +01:00
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-12 16:52:42 +01:00
|
|
|
if not infinite_stacks then
|
|
|
|
itemstack:take_item()
|
|
|
|
end
|
2014-01-03 13:39:12 +01:00
|
|
|
return itemstack
|
|
|
|
end,
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-12 16:52:42 +01:00
|
|
|
on_rightclick = function(pos, node, placer, itemstack, pointed_thing)
|
2014-01-03 13:39:12 +01:00
|
|
|
if is_supported_node(itemstack:get_name()) then
|
|
|
|
if minetest.is_protected(pos, placer:get_player_name()) then
|
|
|
|
minetest.log("action", placer:get_player_name()
|
|
|
|
.. " tried to place " .. itemstack:get_name()
|
|
|
|
.. " at protected position "
|
|
|
|
.. minetest.pos_to_string(pos))
|
|
|
|
minetest.record_protection_violation(pos, placer:get_player_name())
|
|
|
|
return itemstack
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
|
|
|
minetest.set_node(pos, { name = itemstack:get_name() })
|
|
|
|
|
2014-01-03 13:39:12 +01:00
|
|
|
local take_item = true
|
|
|
|
local def = minetest.registered_items[itemstack:get_name()]
|
|
|
|
-- Run callback
|
|
|
|
if def.after_place_node then
|
|
|
|
-- Copy place_to because callback can modify it
|
2018-08-16 13:47:43 +02:00
|
|
|
local pos_copy = vector.new(pos)
|
2014-01-03 13:39:12 +01:00
|
|
|
if def.after_place_node(pos_copy, placer, itemstack) then
|
|
|
|
take_item = false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Run script hook
|
2020-06-12 20:39:00 +02:00
|
|
|
local callback = nil
|
|
|
|
for _, _ in ipairs(minetest.registered_on_placenodes) do
|
2014-01-03 13:39:12 +01:00
|
|
|
-- Copy pos and node because callback can modify them
|
2018-08-16 13:47:43 +02:00
|
|
|
local pos_copy = { x = pos.x, y = pos.y, z = pos.z }
|
|
|
|
local newnode_copy = { name = def.name, param1 = 0, param2 = 0 }
|
|
|
|
local oldnode_copy = { name = "air", param1 = 0, param2 = 0 }
|
2014-01-03 13:39:12 +01:00
|
|
|
if callback(pos_copy, newnode_copy, placer, oldnode_copy, itemstack) then
|
|
|
|
take_item = false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if take_item then
|
|
|
|
itemstack:take_item()
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2020-06-12 20:39:00 +02:00
|
|
|
local obj = minetest.add_entity(pos, "technic:frame_entity")
|
2018-08-16 13:47:43 +02:00
|
|
|
obj:get_luaentity():set_node({ name = node.name })
|
|
|
|
|
2014-01-03 13:39:12 +01:00
|
|
|
return itemstack
|
2014-01-12 16:52:42 +01:00
|
|
|
else
|
2018-08-16 13:47:43 +02:00
|
|
|
--local pointed_thing = { type = "node", under = pos }
|
2014-01-12 16:52:42 +01:00
|
|
|
if pointed_thing then
|
2016-09-05 05:46:36 +02:00
|
|
|
return minetest.item_place_node(itemstack, placer, pointed_thing)
|
2014-01-12 16:52:42 +01:00
|
|
|
end
|
2014-01-03 13:39:12 +01:00
|
|
|
end
|
2014-01-02 11:00:42 +01:00
|
|
|
end,
|
2013-02-06 15:34:01 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-02 11:00:42 +01:00
|
|
|
minetest.register_entity("technic:frame_entity", {
|
|
|
|
initial_properties = {
|
|
|
|
physical = true,
|
2018-08-16 13:47:43 +02:00
|
|
|
collisionbox = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 },
|
2014-01-02 11:00:42 +01:00
|
|
|
visual = "wielditem",
|
|
|
|
textures = {},
|
2018-08-16 13:47:43 +02:00
|
|
|
visual_size = { x = 0.667, y = 0.667 },
|
2014-01-02 11:00:42 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
node = {},
|
|
|
|
|
|
|
|
set_node = function(self, node)
|
|
|
|
self.node = node
|
2018-08-16 13:47:43 +02:00
|
|
|
local pos = vector.round(self.object:getpos())
|
2014-01-02 11:26:50 +01:00
|
|
|
frames_pos[pos_to_string(pos)] = node.name
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-02 11:00:42 +01:00
|
|
|
local stack = ItemStack(node.name)
|
|
|
|
local itemtable = stack:to_table()
|
|
|
|
local itemname = nil
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-02 11:00:42 +01:00
|
|
|
if itemtable then
|
|
|
|
itemname = stack:to_table().name
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-02 11:00:42 +01:00
|
|
|
local item_texture = nil
|
|
|
|
local item_type = ""
|
|
|
|
if minetest.registered_items[itemname] then
|
|
|
|
item_texture = minetest.registered_items[itemname].inventory_image
|
|
|
|
item_type = minetest.registered_items[itemname].type
|
|
|
|
end
|
2020-06-12 20:39:00 +02:00
|
|
|
local prop = {
|
2014-01-02 11:00:42 +01:00
|
|
|
is_visible = true,
|
2018-08-16 13:47:43 +02:00
|
|
|
textures = { node.name },
|
2014-01-02 11:00:42 +01:00
|
|
|
}
|
|
|
|
self.object:set_properties(prop)
|
|
|
|
end,
|
|
|
|
|
|
|
|
get_staticdata = function(self)
|
|
|
|
return self.node.name
|
|
|
|
end,
|
2013-10-13 10:26:18 +02:00
|
|
|
|
2014-01-02 11:00:42 +01:00
|
|
|
on_activate = function(self, staticdata)
|
2018-08-16 13:47:43 +02:00
|
|
|
self.object:set_armor_groups({ immortal = 1 })
|
|
|
|
self:set_node({ name = staticdata })
|
2014-01-02 11:00:42 +01:00
|
|
|
end,
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-02 11:00:42 +01:00
|
|
|
dig = function(self)
|
2019-09-14 12:55:41 +02:00
|
|
|
minetest.handle_node_drops(self.object:get_pos(), { ItemStack("technic:frame_111111") }, self.last_puncher)
|
|
|
|
local pos = vector.round(self.object:get_pos())
|
2014-01-02 11:26:50 +01:00
|
|
|
frames_pos[pos_to_string(pos)] = nil
|
2014-01-02 11:00:42 +01:00
|
|
|
self.object:remove()
|
|
|
|
end,
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-02 11:00:42 +01:00
|
|
|
on_punch = function(self, puncher, time_from_last_punch, tool_capabilities, dir)
|
2019-09-14 12:55:41 +02:00
|
|
|
local pos = self.object:get_pos()
|
2014-01-02 11:00:42 +01:00
|
|
|
if self.damage_object == nil then
|
|
|
|
self.damage_object = minetest.add_entity(pos, "technic:damage_entity")
|
|
|
|
self.damage_object:get_luaentity().remaining_time = 0.25
|
|
|
|
self.damage_object:get_luaentity().frame_object = self
|
|
|
|
self.damage_object:get_luaentity().texture_index = 0
|
|
|
|
self.damage_object:get_luaentity().texture_change_time = 0.15
|
|
|
|
else
|
|
|
|
self.damage_object:get_luaentity().remaining_time = 0.25
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-02 11:00:42 +01:00
|
|
|
self.last_puncher = puncher
|
2019-09-14 12:55:41 +02:00
|
|
|
local ppos = puncher:get_pos()
|
2014-01-02 11:00:42 +01:00
|
|
|
local pvect = puncher:get_look_dir()
|
2018-08-16 13:47:43 +02:00
|
|
|
local pface = get_face(pos, ppos, pvect)
|
2014-01-02 11:00:42 +01:00
|
|
|
if pface == nil then return end
|
|
|
|
local nodename = self.node.name
|
2018-08-16 13:47:43 +02:00
|
|
|
local newstate = tostring(1 - tonumber(string.sub(nodename, pface - 7, pface - 7)))
|
|
|
|
|
2014-01-02 11:00:42 +01:00
|
|
|
if pface <= 5 then
|
2018-08-16 13:47:43 +02:00
|
|
|
nodename = string.sub(nodename, 1, pface - 7 - 1)..newstate..string.sub(nodename, pface - 7 + 1)
|
2014-01-02 11:00:42 +01:00
|
|
|
else
|
|
|
|
nodename = string.sub(nodename, 1, -2)..newstate
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-02 11:00:42 +01:00
|
|
|
self.node.name = nodename
|
|
|
|
self:set_node(self.node)
|
|
|
|
end,
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-02 11:00:42 +01:00
|
|
|
on_rightclick = function(self, clicker)
|
2019-09-14 12:55:41 +02:00
|
|
|
local pos = self.object:get_pos()
|
|
|
|
local ppos = clicker:get_pos()
|
2014-01-02 11:00:42 +01:00
|
|
|
local pvect = clicker:get_look_dir()
|
|
|
|
local pface = get_face(pos, ppos, pvect)
|
2018-08-16 13:47:43 +02:00
|
|
|
|
|
|
|
if pface == nil then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local pos_under = vector.round(pos)
|
|
|
|
local pos_above = { x = pos_under.x, y = pos_under.y, z = pos_under.z }
|
|
|
|
local index = ({ "x", "y", "z" })[math.floor((pface + 1) / 2)]
|
|
|
|
pos_above[index] = pos_above[index] + 2 * ((pface + 1)%2) - 1
|
|
|
|
local pointed_thing = { type = "node", under = pos_under, above = pos_above }
|
2014-01-02 11:00:42 +01:00
|
|
|
local itemstack = clicker:get_wielded_item()
|
|
|
|
local itemdef = minetest.registered_items[itemstack:get_name()]
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-01-02 11:00:42 +01:00
|
|
|
if itemdef ~= nil then
|
|
|
|
itemdef.on_place(itemstack, clicker, pointed_thing)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
2013-10-13 10:26:18 +02:00
|
|
|
|
2014-01-02 11:00:42 +01:00
|
|
|
local crack = "crack_anylength.png^[verticalframe:5:0"
|
|
|
|
minetest.register_entity("technic:damage_entity", {
|
|
|
|
initial_properties = {
|
|
|
|
visual = "cube",
|
2018-08-16 13:47:43 +02:00
|
|
|
visual_size = { x = 1.01, y = 1.01 },
|
|
|
|
textures = { crack, crack, crack, crack, crack, crack },
|
|
|
|
collisionbox = { 0, 0, 0, 0, 0, 0 },
|
2014-01-02 11:00:42 +01:00
|
|
|
physical = false,
|
|
|
|
},
|
|
|
|
on_step = function(self, dtime)
|
|
|
|
if self.remaining_time == nil then
|
|
|
|
self.object:remove()
|
|
|
|
self.frame_object.damage_object = nil
|
|
|
|
end
|
|
|
|
self.remaining_time = self.remaining_time - dtime
|
|
|
|
if self.remaining_time < 0 then
|
|
|
|
self.object:remove()
|
|
|
|
self.frame_object.damage_object = nil
|
|
|
|
end
|
|
|
|
self.texture_change_time = self.texture_change_time - dtime
|
|
|
|
if self.texture_change_time < 0 then
|
|
|
|
self.texture_change_time = self.texture_change_time + 0.15
|
|
|
|
self.texture_index = self.texture_index + 1
|
|
|
|
if self.texture_index == 5 then
|
|
|
|
self.object:remove()
|
|
|
|
self.frame_object.damage_object = nil
|
|
|
|
self.frame_object:dig()
|
|
|
|
end
|
|
|
|
local ct = "crack_anylength.png^[verticalframe:5:"..self.texture_index
|
2018-08-16 13:47:43 +02:00
|
|
|
self.object:set_properties({ textures = { ct, ct, ct, ct, ct, ct } })
|
2014-01-02 11:00:42 +01:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
2013-10-13 10:26:18 +02:00
|
|
|
|
2014-11-22 19:58:38 +01:00
|
|
|
mesecon.register_mvps_unmov("technic:frame_entity")
|
|
|
|
mesecon.register_mvps_unmov("technic:damage_entity")
|
|
|
|
mesecon.register_on_mvps_move(function(moved_nodes)
|
2014-01-03 13:39:12 +01:00
|
|
|
local to_move = {}
|
|
|
|
for _, n in ipairs(moved_nodes) do
|
|
|
|
if frames_pos[pos_to_string(n.oldpos)] ~= nil then
|
2018-08-16 13:47:43 +02:00
|
|
|
to_move[#to_move + 1] = {
|
|
|
|
pos = n.pos,
|
|
|
|
oldpos = n.oldpos,
|
|
|
|
name = frames_pos[pos_to_string(n.oldpos)]
|
|
|
|
}
|
2014-01-03 13:39:12 +01:00
|
|
|
frames_pos[pos_to_string(n.oldpos)] = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if #to_move > 0 then
|
|
|
|
for _, t in ipairs(to_move) do
|
|
|
|
frames_pos[pos_to_string(t.pos)] = t.name
|
|
|
|
local objects = minetest.get_objects_inside_radius(t.oldpos, 0.1)
|
|
|
|
for _, obj in ipairs(objects) do
|
|
|
|
local entity = obj:get_luaentity()
|
2018-08-16 13:47:43 +02:00
|
|
|
if entity and (entity.name == "technic:frame_entity" or
|
|
|
|
entity.name == "technic:damage_entity") then
|
2019-09-14 12:55:41 +02:00
|
|
|
obj:set_pos(t.pos)
|
2014-01-03 13:39:12 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
minetest.register_on_dignode(function(pos, node)
|
|
|
|
if frames_pos[pos_to_string(pos)] ~= nil then
|
2018-08-16 13:47:43 +02:00
|
|
|
minetest.set_node(pos, { name = frames_pos[pos_to_string(pos)] })
|
2014-01-03 13:39:12 +01:00
|
|
|
frames_pos[pos_to_string(pos)] = nil
|
|
|
|
local objects = minetest.get_objects_inside_radius(pos, 0.1)
|
|
|
|
for _, obj in ipairs(objects) do
|
|
|
|
local entity = obj:get_luaentity()
|
|
|
|
if entity and (entity.name == "technic:frame_entity" or entity.name == "technic:damage_entity") then
|
|
|
|
obj:remove()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
2013-10-13 10:26:18 +02:00
|
|
|
-- Frame motor
|
2018-08-16 13:47:43 +02:00
|
|
|
local function connected(pos, c, adj)
|
|
|
|
for _, vect in ipairs(adj) do
|
|
|
|
local pos1 = vector.add(pos, vect)
|
|
|
|
local nodename = minetest.get_node(pos1).name
|
2014-01-02 11:26:50 +01:00
|
|
|
if frames_pos[pos_to_string(pos1)] then
|
|
|
|
nodename = frames_pos[pos_to_string(pos1)]
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
if not pos_in_list(c, pos1) and nodename ~= "air" and
|
|
|
|
(minetest.registered_nodes[nodename].frames_can_connect == nil or
|
|
|
|
minetest.registered_nodes[nodename].frames_can_connect(pos1, vect)) then
|
|
|
|
c[#c + 1] = pos1
|
|
|
|
if minetest.registered_nodes[nodename].frame == 1 then
|
|
|
|
local adj = minetest.registered_nodes[nodename].frame_connect_all(nodename)
|
|
|
|
connected(pos1, c, adj)
|
2013-10-13 10:26:18 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function get_connected_nodes(pos)
|
2020-06-12 20:39:00 +02:00
|
|
|
local c = { pos }
|
2018-08-16 13:47:43 +02:00
|
|
|
local nodename = minetest.get_node(pos).name
|
2014-01-02 11:26:50 +01:00
|
|
|
if frames_pos[pos_to_string(pos)] then
|
|
|
|
nodename = frames_pos[pos_to_string(pos)]
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
connected(pos, c, minetest.registered_nodes[nodename].frame_connect_all(nodename))
|
2013-10-13 10:26:18 +02:00
|
|
|
return c
|
|
|
|
end
|
|
|
|
|
|
|
|
local function frame_motor_on(pos, node)
|
2018-08-16 13:47:43 +02:00
|
|
|
local dirs = {
|
|
|
|
{ x = 0, y = 1, z = 0 }, { x = 0, y = 0, z = 1 },
|
|
|
|
{ x = 0, y = 0, z = -1 }, { x = 1, y = 0, z = 0 },
|
|
|
|
{ x = -1, y = 0, z = 0 }, { x = 0, y = -1, z = 0 }
|
|
|
|
}
|
|
|
|
local nnodepos = vector.add(pos, dirs[math.floor(node.param2 / 4) + 1])
|
2013-08-31 15:04:08 +02:00
|
|
|
local dir = minetest.facedir_to_dir(node.param2)
|
2018-08-16 13:47:43 +02:00
|
|
|
local nnode = minetest.get_node(nnodepos)
|
|
|
|
|
2014-01-02 11:26:50 +01:00
|
|
|
if frames_pos[pos_to_string(nnodepos)] then
|
|
|
|
nnode.name = frames_pos[pos_to_string(nnodepos)]
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2013-10-06 14:20:13 +02:00
|
|
|
local meta = minetest.get_meta(pos)
|
2014-05-23 19:51:23 +02:00
|
|
|
if meta:get_int("last_moved") == minetest.get_gametime() then
|
|
|
|
return
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2013-10-06 14:20:13 +02:00
|
|
|
local owner = meta:get_string("owner")
|
2018-08-16 13:47:43 +02:00
|
|
|
if minetest.registered_nodes[nnode.name].frame == 1 then
|
|
|
|
local connected_nodes = get_connected_nodes(nnodepos)
|
|
|
|
move_nodes_vect(connected_nodes, dir, pos, owner)
|
2013-02-06 15:34:01 +01:00
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2014-05-23 19:51:23 +02:00
|
|
|
minetest.get_meta(vector.add(pos, dir)):set_int("last_moved", minetest.get_gametime())
|
2013-02-06 15:34:01 +01:00
|
|
|
end
|
|
|
|
|
2018-08-16 13:47:43 +02:00
|
|
|
minetest.register_node("technic:frame_motor", {
|
2013-11-27 22:17:19 +01:00
|
|
|
description = S("Frame Motor"),
|
2018-08-16 13:47:43 +02:00
|
|
|
tiles = {
|
|
|
|
"pipeworks_filter_top.png^[transformR90", "technic_lv_cable.png", "technic_lv_cable.png",
|
|
|
|
"technic_lv_cable.png", "technic_lv_cable.png", "technic_lv_cable.png"
|
|
|
|
},
|
|
|
|
groups = { snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, mesecon = 2 },
|
2013-02-06 15:34:01 +01:00
|
|
|
paramtype2 = "facedir",
|
2018-08-16 13:47:43 +02:00
|
|
|
mesecons = { effector = { action_on = frame_motor_on } },
|
|
|
|
|
2013-10-06 14:20:13 +02:00
|
|
|
after_place_node = function(pos, placer, itemstack)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
meta:set_string("owner", placer:get_player_name())
|
|
|
|
end,
|
2018-08-16 13:47:43 +02:00
|
|
|
|
|
|
|
frames_can_connect = function(pos, dir)
|
2013-08-31 15:04:08 +02:00
|
|
|
local node = minetest.get_node(pos)
|
2018-08-16 13:47:43 +02:00
|
|
|
local dir2 = ({
|
|
|
|
{ x= 0 , y = 1, z = 0 }, { x = 0, y = 0, z = 1 },
|
|
|
|
{ x = 0, y = 0, z = -1 }, { x = 1, y = 0, z = 0 },
|
|
|
|
{ x = -1, y = 0, z = 0 }, { x = 0, y = -1, z = 0 }
|
|
|
|
})[math.floor(node.param2 / 4) + 1]
|
|
|
|
return dir2.x ~= -dir.x or dir2.y ~= -dir.y or dir2.z ~= -dir.z
|
2013-02-06 15:34:01 +01:00
|
|
|
end
|
|
|
|
})
|
|
|
|
|
2013-10-13 10:26:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
-- Templates
|
2018-08-16 13:47:43 +02:00
|
|
|
local function template_connected(pos, c, connectors)
|
|
|
|
local vects = {
|
|
|
|
{ x = 0, y = 1, z = 0 }, { x = 0, y = 0, z = 1 },
|
|
|
|
{ x = 0, y = 0, z = -1 }, { x = 1, y = 0, z = 0 },
|
|
|
|
{ x = -1, y = 0, z = 0 }, { x = 0, y = -1, z = 0 }
|
|
|
|
}
|
|
|
|
for _, vect in ipairs(vects) do
|
|
|
|
local pos1 = vector.add(pos, vect)
|
|
|
|
local nodename = minetest.get_node(pos1).name
|
|
|
|
if not pos_in_list(c, pos1) and (nodename == "technic:template" or
|
|
|
|
nodename == "technic:template_connector") then
|
2013-10-13 16:24:17 +02:00
|
|
|
local meta = minetest.get_meta(pos1)
|
|
|
|
if meta:get_string("connected") == "" then
|
2018-08-16 13:47:43 +02:00
|
|
|
c[#c + 1] = pos1
|
|
|
|
template_connected(pos1, c, connectors)
|
2013-10-19 11:27:47 +02:00
|
|
|
if nodename == "technic:template_connector" then
|
2018-08-16 13:47:43 +02:00
|
|
|
connectors[#connectors + 1] = pos1
|
2013-10-19 11:27:47 +02:00
|
|
|
end
|
2013-10-13 16:24:17 +02:00
|
|
|
end
|
2013-10-13 10:26:18 +02:00
|
|
|
end
|
2013-02-17 19:31:12 +01:00
|
|
|
end
|
|
|
|
end
|
2013-02-06 15:34:01 +01:00
|
|
|
|
2013-10-13 10:26:18 +02:00
|
|
|
local function get_templates(pos)
|
2018-08-16 13:47:43 +02:00
|
|
|
local c = { pos }
|
2013-10-19 11:27:47 +02:00
|
|
|
local connectors
|
|
|
|
if minetest.get_node(pos).name == "technic:template_connector" then
|
2018-08-16 13:47:43 +02:00
|
|
|
connectors = { pos }
|
2013-10-19 11:27:47 +02:00
|
|
|
else
|
|
|
|
connectors = {}
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
template_connected(pos, c, connectors)
|
2013-10-19 11:27:47 +02:00
|
|
|
return c, connectors
|
|
|
|
end
|
|
|
|
|
|
|
|
local function swap_template(pos, new)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local saved_node = meta:get_string("saved_node")
|
|
|
|
meta:set_string("saved_node", "")
|
2013-12-11 02:14:39 +01:00
|
|
|
technic.swap_node(pos, new)
|
2020-06-12 20:39:00 +02:00
|
|
|
meta = minetest.get_meta(pos)
|
2013-10-19 11:27:47 +02:00
|
|
|
meta:set_string("saved_node", saved_node)
|
2013-10-13 10:26:18 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local function save_node(pos)
|
|
|
|
local node = minetest.get_node(pos)
|
2013-10-19 11:27:47 +02:00
|
|
|
if node.name == "air" then
|
2018-08-16 13:47:43 +02:00
|
|
|
minetest.set_node(pos, { name = "technic:template" })
|
2013-10-19 11:27:47 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
if node.name == "technic:template" then
|
|
|
|
swap_template(pos, "technic:template_connector")
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
meta:set_string("connected", "")
|
|
|
|
return
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2013-10-13 10:26:18 +02:00
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local meta0 = meta:to_table()
|
|
|
|
for _, list in pairs(meta0.inventory) do
|
|
|
|
for key, stack in pairs(list) do
|
|
|
|
list[key] = stack:to_string()
|
2013-10-06 14:20:13 +02:00
|
|
|
end
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2013-10-13 10:26:18 +02:00
|
|
|
node.meta = meta0
|
2018-08-16 13:47:43 +02:00
|
|
|
minetest.set_node(pos, { name = "technic:template" })
|
2013-10-13 10:26:18 +02:00
|
|
|
return node
|
|
|
|
end
|
|
|
|
|
|
|
|
local function restore_node(pos, node)
|
|
|
|
minetest.set_node(pos, node)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
for _, list in pairs(node.meta.inventory) do
|
|
|
|
for key, stack in pairs(list) do
|
|
|
|
list[key] = ItemStack(stack)
|
2013-08-31 15:04:08 +02:00
|
|
|
end
|
2013-02-06 15:34:01 +01:00
|
|
|
end
|
2013-10-13 10:26:18 +02:00
|
|
|
meta:from_table(node.meta)
|
|
|
|
end
|
|
|
|
|
|
|
|
local function expand_template(pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local c = meta:get_string("connected")
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2013-10-13 10:26:18 +02:00
|
|
|
if c == "" then return end
|
|
|
|
c = minetest.deserialize(c)
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2013-10-13 10:26:18 +02:00
|
|
|
for _, vect in ipairs(c) do
|
2013-10-19 11:27:47 +02:00
|
|
|
local pos1 = vector.add(pos, vect)
|
|
|
|
local saved_node = save_node(pos1)
|
|
|
|
local meta1 = minetest.get_meta(pos1)
|
|
|
|
if saved_node ~= nil then
|
|
|
|
meta1:set_string("saved_node", minetest.serialize(saved_node))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function compress_templates(pos)
|
|
|
|
local templates, connectors = get_templates(pos)
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2013-10-19 11:27:47 +02:00
|
|
|
if #connectors == 0 then
|
2018-08-16 13:47:43 +02:00
|
|
|
connectors = { pos }
|
2013-10-19 11:27:47 +02:00
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2013-10-19 11:27:47 +02:00
|
|
|
for _, cn in ipairs(connectors) do
|
|
|
|
local meta = minetest.get_meta(cn)
|
|
|
|
local c = {}
|
2018-08-16 13:47:43 +02:00
|
|
|
for _, p in ipairs(templates) do
|
2013-10-19 11:27:47 +02:00
|
|
|
local np = vector.subtract(p, cn)
|
2018-08-16 13:47:43 +02:00
|
|
|
if not pos_in_list(c, np) then
|
|
|
|
c[#c + 1] = np
|
2013-10-19 11:27:47 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
local cc = {}
|
2018-08-16 13:47:43 +02:00
|
|
|
for _, p in ipairs(connectors) do
|
2013-10-19 11:27:47 +02:00
|
|
|
local np = vector.subtract(p, cn)
|
2018-08-16 13:47:43 +02:00
|
|
|
if np.x ~= 0 or np.y ~= 0 or np.z ~= 0 then
|
2013-10-19 11:27:47 +02:00
|
|
|
cc[pos_to_string(np)] = true
|
2013-10-13 10:26:18 +02:00
|
|
|
end
|
2013-02-17 19:31:12 +01:00
|
|
|
end
|
2013-10-19 11:27:47 +02:00
|
|
|
swap_template(cn, "technic:template")
|
|
|
|
meta:set_string("connected", minetest.serialize(c))
|
|
|
|
meta:set_string("connectors_connected", minetest.serialize(cc))
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
|
|
|
for _, p in ipairs(templates) do
|
2013-10-19 11:27:47 +02:00
|
|
|
if not pos_in_list(connectors, p) then
|
2018-08-16 13:47:43 +02:00
|
|
|
minetest.set_node(p, { name = "air" })
|
2013-10-19 11:27:47 +02:00
|
|
|
end
|
2013-02-17 19:31:12 +01:00
|
|
|
end
|
2013-10-13 10:26:18 +02:00
|
|
|
end
|
|
|
|
|
2013-10-13 11:09:08 +02:00
|
|
|
local function template_drops(pos, node, oldmeta, digger)
|
|
|
|
local c = oldmeta.fields.connected
|
2013-10-19 11:27:47 +02:00
|
|
|
local cc = oldmeta.fields.connectors_connected
|
2013-10-13 11:09:08 +02:00
|
|
|
local drops
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2013-10-13 11:09:08 +02:00
|
|
|
if c == "" or c == nil then
|
2018-08-16 13:47:43 +02:00
|
|
|
drops = { "technic:template 1" }
|
2013-10-13 11:09:08 +02:00
|
|
|
else
|
2013-10-19 11:27:47 +02:00
|
|
|
if cc == "" or cc == nil then
|
2018-08-16 13:47:43 +02:00
|
|
|
drops = { "technic:template 1" }
|
2013-10-19 11:27:47 +02:00
|
|
|
else
|
|
|
|
local dcc = minetest.deserialize(cc)
|
|
|
|
if not table_empty(dcc) then
|
|
|
|
drops = {}
|
|
|
|
for sp, _ in pairs(dcc) do
|
|
|
|
local ssp = pos_from_string(sp)
|
|
|
|
local p = vector.add(ssp, pos)
|
|
|
|
local meta = minetest.get_meta(p)
|
|
|
|
local d = minetest.deserialize(meta:get_string("connectors_connected"))
|
|
|
|
if d ~= nil then
|
2018-08-16 13:47:43 +02:00
|
|
|
d[pos_to_string({ x = -ssp.x, y = -ssp.y, z = -ssp.z })] = nil
|
2013-10-19 11:27:47 +02:00
|
|
|
meta:set_string("connectors_connected", minetest.serialize(d))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
local stack_max = 99
|
2018-08-16 13:47:43 +02:00
|
|
|
local num = #minetest.deserialize(c)
|
2013-10-19 11:27:47 +02:00
|
|
|
drops = {}
|
|
|
|
while num > stack_max do
|
2018-08-16 13:47:43 +02:00
|
|
|
drops[#drops + 1] = "technic:template "..stack_max
|
2013-10-19 11:27:47 +02:00
|
|
|
num = num - stack_max
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
drops[#drops + 1] = "technic:template "..num
|
2013-10-19 11:27:47 +02:00
|
|
|
end
|
2013-10-13 11:09:08 +02:00
|
|
|
end
|
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2013-10-13 11:09:08 +02:00
|
|
|
minetest.handle_node_drops(pos, drops, digger)
|
|
|
|
end
|
|
|
|
|
2013-10-19 11:27:47 +02:00
|
|
|
local function template_on_destruct(pos, node)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local saved_node = meta:get_string("saved_node")
|
|
|
|
if saved_node ~= "" then
|
|
|
|
local nnode = minetest.deserialize(saved_node)
|
|
|
|
minetest.after(0, restore_node, pos, nnode)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-16 13:47:43 +02:00
|
|
|
minetest.register_node("technic:template", {
|
2013-11-27 22:17:19 +01:00
|
|
|
description = S("Template"),
|
2018-08-16 13:47:43 +02:00
|
|
|
tiles = { "technic_mv_cable.png" },
|
2013-10-13 11:09:08 +02:00
|
|
|
drop = "",
|
2018-08-16 13:47:43 +02:00
|
|
|
groups = { snappy = 2, choppy = 2, oddly_breakable_by_hand = 2 },
|
2013-10-19 11:27:47 +02:00
|
|
|
on_destruct = template_on_destruct,
|
2013-10-13 11:09:08 +02:00
|
|
|
after_dig_node = template_drops,
|
2018-08-16 13:47:43 +02:00
|
|
|
on_punch = function(pos, node, puncher)
|
2013-10-19 11:27:47 +02:00
|
|
|
swap_template(pos, "technic:template_disabled")
|
2013-02-17 19:31:12 +01:00
|
|
|
end
|
2013-10-13 10:26:18 +02:00
|
|
|
})
|
|
|
|
|
2018-08-16 13:47:43 +02:00
|
|
|
minetest.register_node("technic:template_disabled", {
|
2013-11-27 22:17:19 +01:00
|
|
|
description = S("Template"),
|
2018-08-16 13:47:43 +02:00
|
|
|
tiles = { "technic_hv_cable.png" },
|
2013-10-13 11:09:08 +02:00
|
|
|
drop = "",
|
2018-08-16 13:47:43 +02:00
|
|
|
groups = { snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1 },
|
2013-10-19 11:27:47 +02:00
|
|
|
on_destruct = template_on_destruct,
|
2013-10-13 11:09:08 +02:00
|
|
|
after_dig_node = template_drops,
|
2018-08-16 13:47:43 +02:00
|
|
|
on_punch = function(pos, node, puncher)
|
2020-06-12 20:39:00 +02:00
|
|
|
local _ = minetest.get_meta(pos)
|
2013-10-19 11:27:47 +02:00
|
|
|
swap_template(pos, "technic:template_connector")
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
2018-08-16 13:47:43 +02:00
|
|
|
minetest.register_node("technic:template_connector", {
|
2013-11-27 22:17:19 +01:00
|
|
|
description = S("Template"),
|
2018-08-16 13:47:43 +02:00
|
|
|
tiles = { "technic_lv_cable.png" },
|
2013-10-19 11:27:47 +02:00
|
|
|
drop = "",
|
2018-08-16 13:47:43 +02:00
|
|
|
groups = { snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, not_in_creative_inventory = 1 },
|
2013-10-19 11:27:47 +02:00
|
|
|
on_destruct = template_on_destruct,
|
|
|
|
after_dig_node = template_drops,
|
2018-08-16 13:47:43 +02:00
|
|
|
on_punch = function(pos, node, puncher)
|
2013-10-19 11:27:47 +02:00
|
|
|
swap_template(pos, "technic:template")
|
2013-02-21 20:38:34 +01:00
|
|
|
end
|
2013-10-13 10:26:18 +02:00
|
|
|
})
|
|
|
|
|
2018-08-16 13:47:43 +02:00
|
|
|
minetest.register_craftitem("technic:template_replacer", {
|
2013-11-27 22:17:19 +01:00
|
|
|
description = S("Template (replacing)"),
|
2013-10-13 10:26:18 +02:00
|
|
|
inventory_image = "technic_template_replacer.png",
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
local p = pointed_thing.under
|
|
|
|
if minetest.is_protected and minetest.is_protected(p, placer:get_player_name()) then
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
local node = minetest.get_node(p)
|
|
|
|
if node.name == "technic:template" then return end
|
|
|
|
local saved_node = save_node(p)
|
|
|
|
itemstack:take_item()
|
|
|
|
if saved_node ~= nil then
|
|
|
|
local meta = minetest.get_meta(p)
|
|
|
|
meta:set_string("saved_node", minetest.serialize(saved_node))
|
|
|
|
end
|
|
|
|
return itemstack
|
2013-02-06 15:34:01 +01:00
|
|
|
end
|
2013-10-13 10:26:18 +02:00
|
|
|
})
|
2013-02-06 15:34:01 +01:00
|
|
|
|
2018-08-16 13:47:43 +02:00
|
|
|
minetest.register_tool("technic:template_tool", {
|
2014-04-16 19:10:00 +02:00
|
|
|
description = S("Template Tool"),
|
2013-10-13 10:26:18 +02:00
|
|
|
inventory_image = "technic_template_tool.png",
|
|
|
|
on_use = function(itemstack, puncher, pointed_thing)
|
|
|
|
local pos = pointed_thing.under
|
2018-08-16 13:47:43 +02:00
|
|
|
if pos == nil or minetest.is_protected and minetest.is_protected(pos, puncher:get_player_name()) then
|
2013-10-13 10:26:18 +02:00
|
|
|
return nil
|
|
|
|
end
|
|
|
|
local node = minetest.get_node(pos)
|
2013-10-19 11:27:47 +02:00
|
|
|
if node.name ~= "technic:template" and node.name ~= "technic:template_connector" then return end
|
2013-10-13 10:26:18 +02:00
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local c2 = meta:get_string("connected")
|
|
|
|
if c2 ~= "" then
|
|
|
|
expand_template(pos)
|
2013-10-19 11:27:47 +02:00
|
|
|
else
|
|
|
|
compress_templates(pos)
|
2013-10-13 10:26:18 +02:00
|
|
|
end
|
2018-08-16 13:47:43 +02:00
|
|
|
|
2013-10-13 10:26:18 +02:00
|
|
|
end
|
|
|
|
})
|
2013-02-06 15:34:01 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2013-10-13 10:26:18 +02:00
|
|
|
-- Template motor
|
|
|
|
local function get_template_nodes(pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local connected = meta:get_string("connected")
|
|
|
|
if connected == "" then return {} end
|
|
|
|
local adj = minetest.deserialize(connected)
|
|
|
|
local c = {}
|
2018-08-16 13:47:43 +02:00
|
|
|
for _, vect in ipairs(adj) do
|
|
|
|
local pos1 = vector.add(pos, vect)
|
|
|
|
local nodename = minetest.get_node(pos1).name
|
|
|
|
if not(pos_in_list(c, pos1)) and nodename ~= "air" then
|
|
|
|
c[#c + 1] = pos1
|
2013-02-06 15:34:01 +01:00
|
|
|
end
|
|
|
|
end
|
2013-10-13 10:26:18 +02:00
|
|
|
return c
|
|
|
|
end
|
|
|
|
|
|
|
|
local function template_motor_on(pos, node)
|
2018-08-16 13:47:43 +02:00
|
|
|
local dirs = {
|
|
|
|
{ x = 0, y = 1, z = 0 }, { x = 0, y = 0, z = 1 },
|
|
|
|
{ x = 0, y = 0, z = -1 }, { x = 1, y = 0, z = 0 },
|
|
|
|
{ x = -1, y = 0, z = 0 }, { x = 0, y = -1, z = 0 }
|
|
|
|
}
|
|
|
|
local nnodepos = vector.add(pos, dirs[math.floor(node.param2 / 4) + 1])
|
2013-10-13 10:26:18 +02:00
|
|
|
local dir = minetest.facedir_to_dir(node.param2)
|
2018-08-16 13:47:43 +02:00
|
|
|
local nnode = minetest.get_node(nnodepos)
|
2013-10-06 14:20:13 +02:00
|
|
|
local meta = minetest.get_meta(pos)
|
2014-05-23 19:51:23 +02:00
|
|
|
if meta:get_int("last_moved") == minetest.get_gametime() then
|
|
|
|
return
|
|
|
|
end
|
2013-10-06 14:20:13 +02:00
|
|
|
local owner = meta:get_string("owner")
|
2013-10-13 10:26:18 +02:00
|
|
|
if nnode.name == "technic:template" then
|
2018-08-16 13:47:43 +02:00
|
|
|
local connected_nodes = get_template_nodes(nnodepos)
|
|
|
|
move_nodes_vect(connected_nodes, dir, pos, owner)
|
2013-10-13 10:26:18 +02:00
|
|
|
end
|
2014-05-23 19:51:23 +02:00
|
|
|
minetest.get_meta(vector.add(pos, dir)):set_int("last_moved", minetest.get_gametime())
|
2013-02-06 15:34:01 +01:00
|
|
|
end
|
|
|
|
|
2018-08-16 13:47:43 +02:00
|
|
|
minetest.register_node("technic:template_motor", {
|
2014-04-16 19:10:00 +02:00
|
|
|
description = S("Template Motor"),
|
2018-08-16 13:47:43 +02:00
|
|
|
tiles = {
|
|
|
|
"pipeworks_filter_top.png^[transformR90",
|
|
|
|
"technic_lv_cable.png",
|
|
|
|
"technic_lv_cable.png",
|
|
|
|
"technic_lv_cable.png",
|
|
|
|
"technic_lv_cable.png",
|
|
|
|
"technic_lv_cable.png"
|
|
|
|
},
|
|
|
|
groups = { snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, mesecon = 2 },
|
2013-10-13 10:26:18 +02:00
|
|
|
paramtype2 = "facedir",
|
2018-08-16 13:47:43 +02:00
|
|
|
mesecons = { effector = { action_on = template_motor_on } },
|
2013-10-06 14:20:13 +02:00
|
|
|
after_place_node = function(pos, placer, itemstack)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
meta:set_string("owner", placer:get_player_name())
|
|
|
|
end,
|
2013-10-13 10:26:18 +02:00
|
|
|
})
|
2013-10-26 09:13:17 +02:00
|
|
|
|
|
|
|
-- Crafts
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:frame_111111',
|
|
|
|
recipe = {
|
2018-08-16 13:47:43 +02:00
|
|
|
{ '', 'default:stick', '' },
|
2018-10-31 01:29:28 +01:00
|
|
|
{ 'default:stick', 'basic_materials:brass_ingot', 'default:stick' },
|
2018-08-16 13:47:43 +02:00
|
|
|
{ '', 'default:stick', '' },
|
2013-10-26 09:13:17 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:frame_motor',
|
|
|
|
recipe = {
|
2018-08-16 13:47:43 +02:00
|
|
|
{ '', 'technic:frame_111111', '' },
|
2018-10-31 01:29:28 +01:00
|
|
|
{ 'group:mesecon_conductor_craftable', 'basic_materials:motor', 'group:mesecon_conductor_craftable' },
|
2018-08-16 13:47:43 +02:00
|
|
|
{ '', 'technic:frame_111111', '' },
|
2013-10-26 09:13:17 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:template 10',
|
|
|
|
recipe = {
|
2018-10-31 01:29:28 +01:00
|
|
|
{ '', 'basic_materials:brass_ingot', '' },
|
|
|
|
{ 'basic_materials:brass_ingot', 'default:mese_crystal', 'basic_materials:brass_ingot' },
|
|
|
|
{ '', 'basic_materials:brass_ingot', '' },
|
2013-10-26 09:13:17 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:template_replacer',
|
2018-08-16 13:47:43 +02:00
|
|
|
recipe = { { 'technic:template' } }
|
2013-10-26 09:13:17 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:template',
|
2018-08-16 13:47:43 +02:00
|
|
|
recipe = { { 'technic:template_replacer' } }
|
2013-10-26 09:13:17 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:template_motor',
|
|
|
|
recipe = {
|
2018-08-16 13:47:43 +02:00
|
|
|
{ '', 'technic:template', '' },
|
2018-10-31 01:29:28 +01:00
|
|
|
{ 'group:mesecon_conductor_craftable', 'basic_materials:motor', 'group:mesecon_conductor_craftable' },
|
2018-08-16 13:47:43 +02:00
|
|
|
{ '', 'technic:template', '' },
|
2013-10-26 09:13:17 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:template_tool',
|
|
|
|
recipe = {
|
2018-08-16 13:47:43 +02:00
|
|
|
{ '', 'technic:template', '' },
|
|
|
|
{ 'default:mese_crystal', 'default:stick', 'default:mese_crystal' },
|
|
|
|
{ '', 'default:stick', '' },
|
2013-10-26 09:13:17 +02:00
|
|
|
}
|
|
|
|
})
|