forked from mtcontrib/pipeworks
50 lines
1.3 KiB
Lua
50 lines
1.3 KiB
Lua
-- register new flow logic ABMs
|
|
-- written 2017 by thetaepsilon
|
|
|
|
|
|
|
|
local register = {}
|
|
pipeworks.flowlogic.abmregister = register
|
|
|
|
|
|
|
|
-- register a node name for the pressure balancing ABM.
|
|
-- currently this only exists as a per-node function to allow nodes to be registered outside pipeworks.
|
|
local register_abm_balance = function(nodename)
|
|
minetest.register_abm({
|
|
nodenames = { nodename },
|
|
interval = 1,
|
|
chance = 1,
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
|
pipeworks.flowlogic.balance_pressure(pos, node)
|
|
end
|
|
})
|
|
end
|
|
register.balance = register_abm_balance
|
|
|
|
-- register a node for the pump ABM.
|
|
-- maxpressure is the maximum pressure that this pump can drive.
|
|
local register_abm_input = function(nodename, maxpressure)
|
|
minetest.register_abm({
|
|
nodenames = { nodename },
|
|
interval = 1,
|
|
chance = 1,
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
|
pipeworks.flowlogic.run_pump_intake(pos, node, maxpressure)
|
|
end
|
|
})
|
|
end
|
|
register.input = register_abm_input
|
|
|
|
-- old spigot ABM code, not yet migrated
|
|
--[[
|
|
minetest.register_abm({
|
|
nodenames = { spigot_on, spigot_off },
|
|
interval = 1,
|
|
chance = 1,
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
|
pipeworks.run_spigot_output(pos, node)
|
|
end
|
|
})
|
|
]]
|