mirror of
https://github.com/mt-mods/pipeworks.git
synced 2024-12-27 11:20:26 +01:00
devices.lua: convert entry panel and valve to horizontal rotation flowable class
This commit is contained in:
parent
fd4bd8eadc
commit
9df0ec7edb
10
devices.lua
10
devices.lua
@ -215,8 +215,7 @@ for s in ipairs(states) do
|
|||||||
-- only register flow logic for the "on" ABM.
|
-- only register flow logic for the "on" ABM.
|
||||||
-- this means that the off state automatically blocks flow by not participating in the balancing operation.
|
-- this means that the off state automatically blocks flow by not participating in the balancing operation.
|
||||||
if states[s] ~= "off" then
|
if states[s] ~= "off" then
|
||||||
-- FIXME: this still a simple device, directionality not honoured
|
new_flow_logic_register.directional_horizonal_rotate(nodename_valve_empty)
|
||||||
new_flow_logic_register.simple(nodename_valve_empty)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -264,7 +263,7 @@ minetest.register_node(nodename_valve_loaded, {
|
|||||||
-- right-clicking a "loaded" valve (becoming an off valve) then turning it on again will yield a on-but-empty valve,
|
-- right-clicking a "loaded" valve (becoming an off valve) then turning it on again will yield a on-but-empty valve,
|
||||||
-- but the flow logic will still function.
|
-- but the flow logic will still function.
|
||||||
-- thus under new_flow_logic this serves as a kind of migration.
|
-- thus under new_flow_logic this serves as a kind of migration.
|
||||||
new_flow_logic_register.simple(nodename_valve_loaded)
|
new_flow_logic_register.directional_horizonal_rotate(nodename_valve_loaded)
|
||||||
|
|
||||||
-- grating
|
-- grating
|
||||||
|
|
||||||
@ -438,10 +437,9 @@ minetest.register_node(nodename_panel_loaded, {
|
|||||||
drop = "pipeworks:entry_panel_empty",
|
drop = "pipeworks:entry_panel_empty",
|
||||||
on_rotate = pipeworks.fix_after_rotation
|
on_rotate = pipeworks.fix_after_rotation
|
||||||
})
|
})
|
||||||
-- FIXME requires-directionality
|
|
||||||
-- TODO: AFAIK the two panels have no visual difference, so are redundant under new flow logic - alias?
|
-- TODO: AFAIK the two panels have no visual difference, so are redundant under new flow logic - alias?
|
||||||
new_flow_logic_register.simple(nodename_panel_empty)
|
new_flow_logic_register.directional_horizonal_rotate(nodename_panel_empty)
|
||||||
new_flow_logic_register.simple(nodename_panel_loaded)
|
new_flow_logic_register.directional_horizonal_rotate(nodename_panel_loaded)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user