mirror of
https://github.com/minetest-mods/mesecons.git
synced 2024-12-25 09:50:19 +01:00
Minor cleanup of mesecno torch and add another rule to it (behind above)
This commit is contained in:
parent
d1ace465c7
commit
ac0fb91139
@ -428,7 +428,7 @@ end
|
|||||||
|
|
||||||
--Rules rotation Functions:
|
--Rules rotation Functions:
|
||||||
function mesecon:rotate_rules_right(rules)
|
function mesecon:rotate_rules_right(rules)
|
||||||
local nr = {}
|
nr = {}
|
||||||
for i, rule in ipairs(rules) do
|
for i, rule in ipairs(rules) do
|
||||||
table.insert(nr, {
|
table.insert(nr, {
|
||||||
x = -rule.z,
|
x = -rule.z,
|
||||||
@ -439,7 +439,7 @@ function mesecon:rotate_rules_right(rules)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function mesecon:rotate_rules_left(rules)
|
function mesecon:rotate_rules_left(rules)
|
||||||
local nr = {}
|
nr = {}
|
||||||
for i, rule in ipairs(rules) do
|
for i, rule in ipairs(rules) do
|
||||||
table.insert(nr, {
|
table.insert(nr, {
|
||||||
x = rule.z,
|
x = rule.z,
|
||||||
@ -450,7 +450,7 @@ function mesecon:rotate_rules_left(rules)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function mesecon:rotate_rules_down(rules)
|
function mesecon:rotate_rules_down(rules)
|
||||||
local nr = {}
|
nr = {}
|
||||||
for i, rule in ipairs(rules) do
|
for i, rule in ipairs(rules) do
|
||||||
table.insert(nr, {
|
table.insert(nr, {
|
||||||
x = -rule.y,
|
x = -rule.y,
|
||||||
@ -461,7 +461,7 @@ function mesecon:rotate_rules_down(rules)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function mesecon:rotate_rules_up(rules)
|
function mesecon:rotate_rules_up(rules)
|
||||||
local nr = {}
|
nr = {}
|
||||||
for i, rule in ipairs(rules) do
|
for i, rule in ipairs(rules) do
|
||||||
table.insert(nr, {
|
table.insert(nr, {
|
||||||
x = rule.y,
|
x = rule.y,
|
||||||
|
@ -1,53 +1,54 @@
|
|||||||
--MESECON TORCHES
|
--MESECON TORCHES
|
||||||
|
|
||||||
local torch_get_rules = function(node)
|
local rotate_torch_rules = function (rules, param2)
|
||||||
local rules = {
|
if param2 == 5 then
|
||||||
{x=1, y=0, z=0},
|
return mesecon:rotate_rules_right(rules)
|
||||||
{x=0, y=0, z=1},
|
elseif param2 == 2 then
|
||||||
{x=0, y=0, z=-1},
|
return mesecon:rotate_rules_right(mesecon:rotate_rules_right(rules)) --180 degrees
|
||||||
{x=0, y=1, z=0},
|
elseif param2 == 4 then
|
||||||
{x=0, y=-1, z=0}}
|
return mesecon:rotate_rules_left(rules)
|
||||||
if node.param2 == 5 then
|
elseif param2 == 1 then
|
||||||
rules=mesecon:rotate_rules_right(rules)
|
return mesecon:rotate_rules_down(rules)
|
||||||
elseif node.param2 == 2 then
|
elseif param2 == 0 then
|
||||||
rules=mesecon:rotate_rules_right(mesecon:rotate_rules_right(rules)) --180 degrees
|
return mesecon:rotate_rules_up(rules)
|
||||||
elseif node.param2 == 4 then
|
else
|
||||||
rules=mesecon:rotate_rules_left(rules)
|
|
||||||
elseif node.param2 == 1 then
|
|
||||||
rules=mesecon:rotate_rules_down(rules)
|
|
||||||
elseif node.param2 == 0 then
|
|
||||||
rules=mesecon:rotate_rules_up(rules)
|
|
||||||
end
|
|
||||||
return rules
|
return rules
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local torch_get_output_rules = function(node)
|
||||||
|
local rules = {
|
||||||
|
{x = 1, y = 0, z = 0},
|
||||||
|
{x = 0, y = 0, z = 1},
|
||||||
|
{x = 0, y = 0, z =-1},
|
||||||
|
{x = 0, y = 1, z = 0},
|
||||||
|
{x = 0, y =-1, z = 0}}
|
||||||
|
|
||||||
|
return rotate_torch_rules(rules, node.param2)
|
||||||
end
|
end
|
||||||
|
|
||||||
local torch_get_input_rules = function(node)
|
local torch_get_input_rules = function(node)
|
||||||
local rules = {x=0, y=0, z=0}
|
local rules = {{x = -2, y = 0, z = 0},
|
||||||
|
{x = -1, y = 1, z = 0}}
|
||||||
|
|
||||||
if node.param2 == 4 then
|
return rotate_torch_rules(rules, node.param2)
|
||||||
rules.z = -2
|
|
||||||
elseif node.param2 == 2 then
|
|
||||||
rules.x = -2
|
|
||||||
elseif node.param2 == 5 then
|
|
||||||
rules.z = 2
|
|
||||||
elseif node.param2 == 3 then
|
|
||||||
rules.x = 2
|
|
||||||
elseif node.param2 == 1 then
|
|
||||||
rules.y = 2
|
|
||||||
elseif node.param2 == 0 then
|
|
||||||
rules.y = -2
|
|
||||||
end
|
|
||||||
return rules
|
|
||||||
end
|
end
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = '"mesecons_torch:mesecon_torch_on" 4',
|
output = '"mesecons_torch:mesecon_torch_on" 4',
|
||||||
recipe = {
|
recipe = {
|
||||||
{"group:mesecon_conductor_craftable"},
|
{"group:mesecon_conductor_craftable"},
|
||||||
{"default:stick"},
|
{"default:stick"},}
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
local torch_selectionbox =
|
||||||
|
{
|
||||||
|
type = "wallmounted",
|
||||||
|
wall_top = {-0.1, 0.5-0.6, -0.1, 0.1, 0.5, 0.1},
|
||||||
|
wall_bottom = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1},
|
||||||
|
wall_side = {-0.5, -0.1, -0.1, -0.5+0.6, 0.1, 0.1},
|
||||||
|
}
|
||||||
|
|
||||||
minetest.register_node("mesecons_torch:mesecon_torch_off", {
|
minetest.register_node("mesecons_torch:mesecon_torch_off", {
|
||||||
drawtype = "torchlike",
|
drawtype = "torchlike",
|
||||||
tiles = {"jeija_torches_off.png", "jeija_torches_off_ceiling.png", "jeija_torches_off_side.png"},
|
tiles = {"jeija_torches_off.png", "jeija_torches_off_ceiling.png", "jeija_torches_off_side.png"},
|
||||||
@ -55,19 +56,12 @@ minetest.register_node("mesecons_torch:mesecon_torch_off", {
|
|||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
paramtype2 = "wallmounted",
|
paramtype2 = "wallmounted",
|
||||||
selection_box = {
|
selection_box = torch_selectionbox,
|
||||||
type = "wallmounted",
|
groups = {dig_immediate = 3, not_in_creative_inventory = 1},
|
||||||
wall_top = {-0.1, 0.5-0.6, -0.1, 0.1, 0.5, 0.1},
|
drop = "mesecons_torch:mesecon_torch_on",
|
||||||
wall_bottom = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1},
|
|
||||||
wall_side = {-0.5, -0.1, -0.1, -0.5+0.6, 0.1, 0.1},
|
|
||||||
},
|
|
||||||
legacy_wallmounted = true,
|
|
||||||
groups = {dig_immediate=3,not_in_creative_inventory=1},
|
|
||||||
drop = '"mesecons_torch:mesecon_torch_on" 1',
|
|
||||||
description="Mesecon Torch",
|
|
||||||
mesecons = {receptor = {
|
mesecons = {receptor = {
|
||||||
state = mesecon.state.off,
|
state = mesecon.state.off,
|
||||||
rules = torch_get_rules
|
rules = torch_get_output_rules
|
||||||
}}
|
}}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -80,41 +74,37 @@ minetest.register_node("mesecons_torch:mesecon_torch_on", {
|
|||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
paramtype2 = "wallmounted",
|
paramtype2 = "wallmounted",
|
||||||
selection_box = {
|
selection_box = torch_selectionbox,
|
||||||
type = "wallmounted",
|
|
||||||
wall_top = {-0.1, 0.5-0.6, -0.1, 0.1, 0.5, 0.1},
|
|
||||||
wall_bottom = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1},
|
|
||||||
wall_side = {-0.5, -0.1, -0.1, -0.5+0.6, 0.1, 0.1},
|
|
||||||
},
|
|
||||||
legacy_wallmounted = true,
|
|
||||||
groups = {dig_immediate=3},
|
groups = {dig_immediate=3},
|
||||||
light_source = LIGHT_MAX-5,
|
light_source = LIGHT_MAX-5,
|
||||||
description="Mesecon Torch",
|
description="Mesecon Torch",
|
||||||
mesecons = {receptor = {
|
mesecons = {receptor = {
|
||||||
state = mesecon.state.on,
|
state = mesecon.state.on,
|
||||||
rules = torch_get_rules
|
rules = torch_get_output_rules
|
||||||
}}
|
}},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_abm({
|
minetest.register_abm({
|
||||||
nodenames = {"mesecons_torch:mesecon_torch_off","mesecons_torch:mesecon_torch_on"},
|
nodenames = {"mesecons_torch:mesecon_torch_off","mesecons_torch:mesecon_torch_on"},
|
||||||
interval = 1,
|
interval = 1,
|
||||||
chance = 1,
|
chance = 1,
|
||||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
action = function(pos, node)
|
||||||
local node = minetest.env:get_node(pos)
|
local is_powered = false
|
||||||
local pa = torch_get_input_rules(node)
|
for _, rule in ipairs(torch_get_input_rules(node)) do
|
||||||
|
local src = mesecon:addPosRule(pos, rule)
|
||||||
|
if mesecon:is_power_on(src) then
|
||||||
|
is_powered = true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
local postc = {x=pos.x-pa.x, y=pos.y-pa.y, z=pos.z-pa.z}
|
if is_powered then
|
||||||
if mesecon:is_power_on(postc) then
|
if node.name == "mesecons_torch:mesecon_torch_on" then
|
||||||
if node.name ~= "mesecons_torch:mesecon_torch_off" then
|
mesecon:swap_node(pos, "mesecons_torch:mesecon_torch_off")
|
||||||
minetest.env:add_node(pos, {name="mesecons_torch:mesecon_torch_off",param2=node.param2})
|
mesecon:receptor_off(pos, torch_get_output_rules(node))
|
||||||
mesecon:receptor_off(pos, torch_get_rules(node))
|
|
||||||
end
|
|
||||||
else
|
|
||||||
if node.name ~= "mesecons_torch:mesecon_torch_on" then
|
|
||||||
minetest.env:add_node(pos, {name="mesecons_torch:mesecon_torch_on",param2=node.param2})
|
|
||||||
mesecon:receptor_on(pos, torch_get_rules(node))
|
|
||||||
end
|
end
|
||||||
|
elseif node.name == "mesecons_torch:mesecon_torch_off" then
|
||||||
|
mesecon:swap_node(pos, "mesecons_torch:mesecon_torch_on")
|
||||||
|
mesecon:receptor_on(pos, torch_get_output_rules(node))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user