2012-03-05 19:21:26 +01:00
|
|
|
-- MOVESTONE
|
2012-12-09 00:42:30 +01:00
|
|
|
-- Non-sticky:
|
|
|
|
-- Moves along mesecon lines
|
|
|
|
-- Pushes all blocks in front of it
|
|
|
|
--
|
|
|
|
-- Sticky one
|
|
|
|
-- Moves along mesecon lines
|
|
|
|
-- Pushes all block in front of it
|
|
|
|
-- Pull all blocks in its back
|
2012-03-05 19:21:26 +01:00
|
|
|
|
|
|
|
function mesecon:get_movestone_direction(pos)
|
2012-12-09 00:42:30 +01:00
|
|
|
getactivated = 0
|
2012-06-16 03:29:43 +02:00
|
|
|
local lpos
|
2012-12-09 00:42:30 +01:00
|
|
|
local getactivated = 0
|
|
|
|
local rules = {
|
|
|
|
{x=0, y=1, z=-1},
|
|
|
|
{x=0, y=0, z=-1},
|
|
|
|
{x=0, y=-1, z=-1},
|
|
|
|
{x=0, y=1, z=1},
|
|
|
|
{x=0, y=-1, z=1},
|
|
|
|
{x=0, y=0, z=1},
|
|
|
|
{x=1, y=0, z=0},
|
|
|
|
{x=1, y=1, z=0},
|
|
|
|
{x=1, y=-1, z=0},
|
|
|
|
{x=-1, y=1, z=0},
|
|
|
|
{x=-1, y=-1, z=0},
|
|
|
|
{x=-1, y=0, z=0}}
|
|
|
|
|
|
|
|
lpos = {x=pos.x+1, y=pos.y, z=pos.z}
|
|
|
|
for n = 1, 3 do
|
2012-06-16 03:29:43 +02:00
|
|
|
if mesecon:is_power_on(lpos, rules[n].x, rules[n].y, rules[n].z) then
|
2012-06-16 18:53:14 +02:00
|
|
|
return {x=0, y=0, z=-1}
|
2012-06-16 03:29:43 +02:00
|
|
|
end
|
2012-03-05 19:21:26 +01:00
|
|
|
end
|
|
|
|
|
2012-12-09 00:42:30 +01:00
|
|
|
lpos = {x = pos.x-1, y = pos.y, z = pos.z}
|
2012-03-05 19:21:26 +01:00
|
|
|
for n=4, 6 do
|
2012-06-16 03:29:43 +02:00
|
|
|
if mesecon:is_power_on(lpos, rules[n].x, rules[n].y, rules[n].z) then
|
2012-06-16 18:53:14 +02:00
|
|
|
return {x=0, y=0, z=1}
|
2012-06-16 03:29:43 +02:00
|
|
|
end
|
2012-03-05 19:21:26 +01:00
|
|
|
end
|
|
|
|
|
2012-12-09 00:42:30 +01:00
|
|
|
lpos = {x = pos.x, y = pos.y, z = pos.z+1}
|
2012-06-16 03:29:43 +02:00
|
|
|
for n=7, 9 do
|
|
|
|
if mesecon:is_power_on(lpos, rules[n].x, rules[n].y, rules[n].z) then
|
2012-06-16 18:53:14 +02:00
|
|
|
return {x=-1, y=0, z=0}
|
2012-06-16 03:29:43 +02:00
|
|
|
end
|
2012-03-05 19:21:26 +01:00
|
|
|
end
|
|
|
|
|
2012-12-09 00:42:30 +01:00
|
|
|
lpos = {x = pos.x, y = pos.y, z = pos.z-1}
|
2012-06-16 03:29:43 +02:00
|
|
|
for n=10, 12 do
|
|
|
|
if mesecon:is_power_on(lpos, rules[n].x, rules[n].y, rules[n].z) then
|
2012-06-16 18:53:14 +02:00
|
|
|
return {x=1, y=0, z=0}
|
2012-06-16 03:29:43 +02:00
|
|
|
end
|
2012-03-05 19:21:26 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.register_node("mesecons_movestones:movestone", {
|
2012-08-20 10:12:10 +02:00
|
|
|
tiles = {"jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_arrows.png", "jeija_movestone_arrows.png"},
|
2012-03-05 19:21:26 +01:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
legacy_facedir_simple = true,
|
2012-08-13 20:17:45 +02:00
|
|
|
groups = {cracky=3},
|
2012-03-05 19:21:26 +01:00
|
|
|
description="Movestone",
|
2013-03-07 02:51:57 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
2012-12-09 00:42:30 +01:00
|
|
|
mesecons = {effector = {
|
|
|
|
action_on = function (pos, node)
|
|
|
|
local direction=mesecon:get_movestone_direction(pos)
|
|
|
|
if not direction then return end
|
2013-12-01 04:13:00 +01:00
|
|
|
minetest.remove_node(pos)
|
2012-12-09 00:42:30 +01:00
|
|
|
mesecon:update_autoconnect(pos)
|
2013-12-01 04:13:00 +01:00
|
|
|
minetest.add_entity(pos, "mesecons_movestones:movestone_entity")
|
2012-12-09 00:42:30 +01:00
|
|
|
end
|
|
|
|
}}
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_entity("mesecons_movestones:movestone_entity", {
|
|
|
|
physical = false,
|
|
|
|
visual = "sprite",
|
|
|
|
textures = {"jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_arrows.png", "jeija_movestone_arrows.png"},
|
2013-04-02 11:56:37 +02:00
|
|
|
collisionbox = {-0.5,-0.5,-0.5, 0.5, 0.5, 0.5},
|
2012-03-05 19:21:26 +01:00
|
|
|
visual = "cube",
|
2013-04-02 11:56:37 +02:00
|
|
|
lastdir = {x=0, y=0, z=0},
|
2012-03-05 19:21:26 +01:00
|
|
|
|
|
|
|
on_punch = function(self, hitter)
|
|
|
|
self.object:remove()
|
|
|
|
hitter:get_inventory():add_item("main", "mesecons_movestones:movestone")
|
|
|
|
end,
|
|
|
|
|
|
|
|
on_step = function(self, dtime)
|
|
|
|
local pos = self.object:getpos()
|
2013-04-07 23:20:32 +02:00
|
|
|
pos.x, pos.y, pos.z = math.floor(pos.x+0.5), math.floor(pos.y+0.5), math.floor(pos.z+0.5)
|
2012-12-26 22:54:28 +01:00
|
|
|
local direction = mesecon:get_movestone_direction(pos)
|
2012-03-05 19:21:26 +01:00
|
|
|
|
2013-04-02 11:56:37 +02:00
|
|
|
if not direction then -- no mesecon power
|
2013-06-22 21:43:58 +02:00
|
|
|
--push only solid nodes
|
2013-12-01 04:13:00 +01:00
|
|
|
local name = minetest.get_node(pos).name
|
2013-04-02 11:56:37 +02:00
|
|
|
if name ~= "air" and name ~= "ignore"
|
2013-06-22 21:43:58 +02:00
|
|
|
and ((not minetest.registered_nodes[name])
|
|
|
|
or minetest.registered_nodes[name].liquidtype == "none") then
|
2013-04-02 11:56:37 +02:00
|
|
|
mesecon:mvps_push(pos, self.lastdir, MOVESTONE_MAXIMUM_PUSH)
|
2013-03-14 18:44:49 +01:00
|
|
|
end
|
2013-12-01 04:13:00 +01:00
|
|
|
minetest.add_node(pos, {name="mesecons_movestones:movestone"})
|
2012-03-05 19:21:26 +01:00
|
|
|
self.object:remove()
|
2012-06-16 03:29:43 +02:00
|
|
|
return
|
2012-06-16 18:53:14 +02:00
|
|
|
end
|
|
|
|
|
2013-04-02 11:56:37 +02:00
|
|
|
local success, stack, oldstack =
|
|
|
|
mesecon:mvps_push(pos, direction, MOVESTONE_MAXIMUM_PUSH)
|
|
|
|
if not success then -- Too large stack/stopper in the way
|
2013-12-01 04:13:00 +01:00
|
|
|
minetest.add_node(pos, {name="mesecons_movestones:movestone"})
|
2013-03-14 18:44:49 +01:00
|
|
|
self.object:remove()
|
|
|
|
return
|
2013-04-02 11:56:37 +02:00
|
|
|
else
|
|
|
|
mesecon:mvps_process_stack (stack)
|
|
|
|
mesecon:mvps_move_objects (pos, direction, oldstack)
|
|
|
|
self.lastdir = direction
|
2013-03-14 18:44:49 +01:00
|
|
|
end
|
2012-06-16 18:53:14 +02:00
|
|
|
|
2013-03-14 18:44:49 +01:00
|
|
|
self.object:setvelocity({x=direction.x*2, y=direction.y*2, z=direction.z*2})
|
2012-12-09 00:42:30 +01:00
|
|
|
end,
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2013-04-28 12:40:08 +02:00
|
|
|
output = "mesecons_movestones:movestone 2",
|
2012-03-05 19:21:26 +01:00
|
|
|
recipe = {
|
2013-04-28 12:40:08 +02:00
|
|
|
{"default:stone", "default:stone", "default:stone"},
|
|
|
|
{"group:mesecon_conductor_craftable", "group:mesecon_conductor_craftable", "group:mesecon_conductor_craftable"},
|
|
|
|
{"default:stone", "default:stone", "default:stone"},
|
2012-03-05 19:21:26 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2012-03-25 08:15:25 +02:00
|
|
|
|
2012-03-05 19:21:26 +01:00
|
|
|
-- STICKY_MOVESTONE
|
|
|
|
|
|
|
|
minetest.register_node("mesecons_movestones:sticky_movestone", {
|
2012-08-20 10:12:10 +02:00
|
|
|
tiles = {"jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_sticky_movestone.png", "jeija_sticky_movestone.png"},
|
2012-03-05 19:21:26 +01:00
|
|
|
inventory_image = minetest.inventorycube("jeija_sticky_movestone.png", "jeija_movestone_side.png", "jeija_movestone_side.png"),
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
legacy_facedir_simple = true,
|
2012-08-13 20:17:45 +02:00
|
|
|
groups = {cracky=3},
|
2012-03-05 19:21:26 +01:00
|
|
|
description="Sticky Movestone",
|
2013-03-07 02:51:57 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
2012-12-09 00:42:30 +01:00
|
|
|
mesecons = {effector = {
|
|
|
|
action_on = function (pos, node)
|
|
|
|
local direction=mesecon:get_movestone_direction(pos)
|
|
|
|
if not direction then return end
|
2013-12-01 04:13:00 +01:00
|
|
|
minetest.remove_node(pos)
|
2012-12-09 00:42:30 +01:00
|
|
|
mesecon:update_autoconnect(pos)
|
2013-12-01 04:13:00 +01:00
|
|
|
minetest.add_entity(pos, "mesecons_movestones:sticky_movestone_entity")
|
2012-12-09 00:42:30 +01:00
|
|
|
end
|
|
|
|
}}
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2013-04-28 12:40:08 +02:00
|
|
|
output = "mesecons_movestones:sticky_movestone 2",
|
2012-03-05 19:21:26 +01:00
|
|
|
recipe = {
|
2013-04-28 12:40:08 +02:00
|
|
|
{"mesecons_materials:glue", "mesecons_movestones:movestone", "mesecons_materials:glue"},
|
2012-03-05 19:21:26 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_entity("mesecons_movestones:sticky_movestone_entity", {
|
|
|
|
physical = false,
|
|
|
|
visual = "sprite",
|
|
|
|
textures = {"jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_sticky_movestone.png", "jeija_sticky_movestone.png"},
|
2013-04-02 11:56:37 +02:00
|
|
|
collisionbox = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
2012-03-05 19:21:26 +01:00
|
|
|
visual = "cube",
|
2013-04-02 11:56:37 +02:00
|
|
|
lastdir = {x=0, y=0, z=0},
|
2012-03-05 19:21:26 +01:00
|
|
|
|
|
|
|
on_punch = function(self, hitter)
|
|
|
|
self.object:remove()
|
|
|
|
hitter:get_inventory():add_item("main", 'mesecons_movestones:sticky_movestone')
|
|
|
|
end,
|
|
|
|
|
|
|
|
on_step = function(self, dtime)
|
|
|
|
local pos = self.object:getpos()
|
2013-04-07 23:20:32 +02:00
|
|
|
pos.x, pos.y, pos.z = math.floor(pos.x+0.5), math.floor(pos.y+0.5), math.floor(pos.z+0.5)
|
2013-03-17 02:18:36 +01:00
|
|
|
local direction = mesecon:get_movestone_direction(pos)
|
2012-03-05 19:21:26 +01:00
|
|
|
|
2013-04-02 11:56:37 +02:00
|
|
|
if not direction then -- no mesecon power
|
2013-06-22 21:43:58 +02:00
|
|
|
--push only solid nodes
|
2013-12-01 04:13:00 +01:00
|
|
|
local name = minetest.get_node(pos).name
|
2013-04-02 11:56:37 +02:00
|
|
|
if name ~= "air" and name ~= "ignore"
|
2013-06-22 21:43:58 +02:00
|
|
|
and ((not minetest.registered_nodes[name])
|
|
|
|
or minetest.registered_nodes[name].liquidtype == "none") then
|
2013-04-02 11:56:37 +02:00
|
|
|
mesecon:mvps_push(pos, self.lastdir, MOVESTONE_MAXIMUM_PUSH)
|
2013-04-07 23:20:32 +02:00
|
|
|
--STICKY
|
|
|
|
mesecon:mvps_pull_all(pos, self.lastdir)
|
2013-03-17 02:18:36 +01:00
|
|
|
end
|
2013-12-01 04:13:00 +01:00
|
|
|
minetest.add_node(pos, {name="mesecons_movestones:sticky_movestone"})
|
2012-06-16 03:29:43 +02:00
|
|
|
self.object:remove()
|
|
|
|
return
|
2012-03-05 19:21:26 +01:00
|
|
|
end
|
|
|
|
|
2013-04-02 11:56:37 +02:00
|
|
|
local success, stack, oldstack =
|
|
|
|
mesecon:mvps_push(pos, direction, MOVESTONE_MAXIMUM_PUSH)
|
|
|
|
if not success then -- Too large stack/stopper in the way
|
2013-12-01 04:13:00 +01:00
|
|
|
minetest.add_node(pos, {name="mesecons_movestones:sticky_movestone"})
|
2013-03-17 02:18:36 +01:00
|
|
|
self.object:remove()
|
|
|
|
return
|
2013-04-02 11:56:37 +02:00
|
|
|
else
|
|
|
|
mesecon:mvps_process_stack (stack)
|
|
|
|
mesecon:mvps_move_objects (pos, direction, oldstack)
|
|
|
|
self.lastdir = direction
|
2013-03-17 02:18:36 +01:00
|
|
|
end
|
2012-06-16 18:53:14 +02:00
|
|
|
|
2013-03-17 02:18:36 +01:00
|
|
|
self.object:setvelocity({x=direction.x*2, y=direction.y*2, z=direction.z*2})
|
2012-06-16 18:53:14 +02:00
|
|
|
|
|
|
|
--STICKY
|
2012-06-23 13:24:03 +02:00
|
|
|
mesecon:mvps_pull_all(pos, direction)
|
2012-12-09 00:42:30 +01:00
|
|
|
end,
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
2013-04-02 11:56:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
mesecon:register_mvps_unmov("mesecons_movestones:movestone_entity")
|
|
|
|
mesecon:register_mvps_unmov("mesecons_movestones:sticky_movestone_entity")
|