forked from minetest-mods/mesecons
Remove the obsolete AND block - Replacement: Microcontroller
This commit is contained in:
parent
af3288f61d
commit
686e420430
|
@ -1,9 +0,0 @@
|
||||||
README for Whiskers75's contributions
|
|
||||||
-------------------------------------
|
|
||||||
|
|
||||||
1: You need Temperest's code enabled (ENABLE_TEMPEREST=1 in settings.lua).
|
|
||||||
2: To work it, place mesecons (on) in the position x plus or minus 1 from the block.
|
|
||||||
3: Then punch, and off mesecons in the position y plus or minus 1 from the block will be powered.
|
|
||||||
4: The AND gate will auto power on, but NOT off, punch to update (help here)
|
|
||||||
5: The name of the block is mesecons_whiskers75:andblock.
|
|
||||||
6: Enjoy!
|
|
|
@ -1,2 +0,0 @@
|
||||||
default
|
|
||||||
mesecons
|
|
|
@ -1,71 +0,0 @@
|
||||||
--Whiskers75's code
|
|
||||||
--AND block
|
|
||||||
|
|
||||||
-- Make the block:
|
|
||||||
|
|
||||||
minetest.register_node("mesecons_whiskers75:andblock", {
|
|
||||||
description = "AND block",
|
|
||||||
drawtype = "nodebox",
|
|
||||||
tiles = {
|
|
||||||
"whiskers75_andblock_top.png",
|
|
||||||
"whiskers75_andblock_sides.png"
|
|
||||||
},
|
|
||||||
inventory_image = {"whiskers75andblock.png"},
|
|
||||||
sunlight_propagates = true,
|
|
||||||
paramtype = 'light',
|
|
||||||
walkable = true,
|
|
||||||
groups = {dig_immediate=2},
|
|
||||||
material = minetest.digprop_constanttime(1.0),
|
|
||||||
selection_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {-0.5, -0.5, -0.5, 0.5, -0.35, 0.5},
|
|
||||||
},
|
|
||||||
node_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {-0.5, -0.5, -0.5, 0.5, -0.35, 0.5},
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_on_punchnode(function(pos, node, puncher)
|
|
||||||
if node.name=="mesecons_whiskers75:andblock" then
|
|
||||||
anode = minetest.env:get_node({x=pos.x-1, y=pos.y, z=pos.z})
|
|
||||||
bnode = minetest.env:get_node({x=pos.x+1, y=pos.y, z=pos.z})
|
|
||||||
if anode.name=="mesecons:mesecon_on" and bnode.name=="mesecons:mesecon_on" then mesecon:receptor_on({x=pos.x, y=pos.y+1, z=pos.z}) end
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
|
|
||||||
minetest.register_on_punchnode(function(pos, node, puncher)
|
|
||||||
if node.name=="mesecons_whiskers75:andblock" then
|
|
||||||
anode = minetest.env:get_node({x=pos.x-1, y=pos.y, z=pos.z})
|
|
||||||
bnode = minetest.env:get_node({x=pos.x+1, y=pos.y, z=pos.z})
|
|
||||||
if anode.name=="mesecons:mesecon_off" then mesecon:receptor_off({x=pos.x, y=pos.y+1, z=pos.z}) end
|
|
||||||
if bnode.name=="mesecons:mesecon_off" then mesecon:receptor_off({x=pos.x, y=pos.y+1, z=pos.z}) end
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
|
|
||||||
function update(pos, node)
|
|
||||||
if node.name=="mesecons_whiskers75:andblock" then
|
|
||||||
anode = minetest.env:get_node({x=pos.x-1, y=pos.y, z=pos.z})
|
|
||||||
bnode = minetest.env:get_node({x=pos.x+1, y=pos.y, z=pos.z})
|
|
||||||
if anode.name=="mesecons:mesecon_off" then mesecon:receptor_off({x=pos.x, y=pos.y+1, z=pos.z}) end
|
|
||||||
if bnode.name=="mesecons:mesecon_off" then mesecon:receptor_off({x=pos.x, y=pos.y+1, z=pos.z}) end
|
|
||||||
end
|
|
||||||
|
|
||||||
if node.name=="mesecons_whiskers75:andblock" then
|
|
||||||
anode = minetest.env:get_node({x=pos.x-1, y=pos.y, z=pos.z})
|
|
||||||
bnode = minetest.env:get_node({x=pos.x+1, y=pos.y, z=pos.z})
|
|
||||||
if anode.name=="mesecons:mesecon_on" and bnode.name=="mesecons:mesecon_on" then mesecon:receptor_on({x=pos.x, y=pos.y+1, z=pos.z}) end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = '"mesecons_whiskers75:andblock" 2',
|
|
||||||
recipe = {
|
|
||||||
{'"default:wood"', '', '"default:dirt"'},
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
mesecon:register_on_signal_on(update)
|
|
||||||
mesecon:register_on_signal_off(update)
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 449 B |
Binary file not shown.
Before Width: | Height: | Size: 684 B |
Loading…
Reference in New Issue
Block a user