summaryrefslogtreecommitdiff
path: root/new_flow_logic
diff options
context:
space:
mode:
authorthetaepsilon-gamedev <thetaepsilon-gamedev@noreply.users.github.com>2017-10-07 17:14:50 +0100
committerthetaepsilon-gamedev <thetaepsilon-gamedev@noreply.users.github.com>2017-10-07 17:14:50 +0100
commit608a9a69808ee58d05dc115b37af1d53b00f0241 (patch)
treec46b7739592c888a875e9aab96b01f53a37d5184 /new_flow_logic
parent34cfee8a2faaa9366b1a9ae5035eedee3620aa56 (diff)
downloadpipeworks-608a9a69808ee58d05dc115b37af1d53b00f0241.tar
pipeworks-608a9a69808ee58d05dc115b37af1d53b00f0241.tar.gz
pipeworks-608a9a69808ee58d05dc115b37af1d53b00f0241.tar.bz2
pipeworks-608a9a69808ee58d05dc115b37af1d53b00f0241.tar.xz
pipeworks-608a9a69808ee58d05dc115b37af1d53b00f0241.zip
new flow logic: abms.lua: wrap up pressure value accesses behind accessor object
Diffstat (limited to 'new_flow_logic')
-rw-r--r--new_flow_logic/abms.lua27
1 files changed, 20 insertions, 7 deletions
diff --git a/new_flow_logic/abms.lua b/new_flow_logic/abms.lua
index 7a720be..9e5eb2d 100644
--- a/new_flow_logic/abms.lua
+++ b/new_flow_logic/abms.lua
@@ -53,6 +53,18 @@ flowlogic.check_for_liquids_v2 = check_for_liquids_v2
local label_pressure = "pipeworks.water_pressure"
+local get_pressure_access = function(pos)
+ local metaref = minetest.get_meta(pos)
+ return {
+ get = function()
+ return metaref:get_float(label_pressure)
+ end,
+ set = function(v)
+ metaref:set_float(label_pressure, v)
+ end
+ }
+end
+
flowlogic.balance_pressure = function(pos, node)
-- debuglog("balance_pressure() "..node.name.." at "..pos.x.." "..pos.y.." "..pos.z)
-- check the pressure of all nearby nodes, and average it out.
@@ -60,22 +72,23 @@ flowlogic.balance_pressure = function(pos, node)
-- XXX: maybe this could be used to add fluid behaviour to other mod's nodes too?
-- unconditionally include self in nodes to average over
- local meta = minetest.get_meta(pos)
- local currentpressure = meta:get_float(label_pressure)
- local connections = { meta }
+ local pressure = get_pressure_access(pos)
+ local currentpressure = pressure.get()
+ -- pressure handles to average over
+ local connections = { pressure }
local totalv = currentpressure
local totalc = 1
-- then handle neighbours, but if not a pressure node don't consider them at all
for _, npos in ipairs(make_coords_offsets(pos, false)) do
local nodename = minetest.get_node(npos).name
- local neighbour = minetest.get_meta(npos)
-- for now, just check if it's in the simple table.
-- TODO: the "can flow from" logic in flowable_node_registry.lua
local haspressure = (pipeworks.flowables.list.simple[nodename])
if haspressure then
+ local neighbour = get_pressure_access(npos)
--pipeworks.logger("balance_pressure @ "..formatvec(pos).." "..nodename.." "..formatvec(npos).." added to neighbour set")
- local n = neighbour:get_float(label_pressure)
+ local n = neighbour.get()
table.insert(connections, neighbour)
totalv = totalv + n
totalc = totalc + 1
@@ -83,8 +96,8 @@ flowlogic.balance_pressure = function(pos, node)
end
local average = totalv / totalc
- for _, targetmeta in ipairs(connections) do
- targetmeta:set_float(label_pressure, average)
+ for _, target in ipairs(connections) do
+ target.set(average)
end
end