Skip to content

Commit 718a5be

Browse files
authored
Supply converter: demany only the needed power (#577)
Supply converter demands only the needed power to satisfy the demand on the output network. It can still be too much if the output network has other power sources, because supply is not taken in account. This surplus of energy can be used to charge batteries.
1 parent fa39b24 commit 718a5be

File tree

1 file changed

+31
-10
lines changed

1 file changed

+31
-10
lines changed

technic/machines/supply_converter.lua

+31-10
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ local run = function(pos, node, run_stage)
120120
return
121121
end
122122

123-
local remain = 0.9
123+
local efficiency = 0.9
124124
-- Machine information
125125
local machine_name = S("Supply Converter")
126126
local meta = minetest.get_meta(pos)
@@ -133,7 +133,6 @@ local run = function(pos, node, run_stage)
133133
enabled = enabled == "1"
134134
end
135135
enabled = enabled and (meta:get_int("mesecon_mode") == 0 or meta:get_int("mesecon_effect") ~= 0)
136-
local demand = enabled and meta:get_int("power") or 0
137136

138137
local pos_up = {x=pos.x, y=pos.y+1, z=pos.z}
139138
local pos_down = {x=pos.x, y=pos.y-1, z=pos.z}
@@ -144,14 +143,36 @@ local run = function(pos, node, run_stage)
144143
local to = technic.get_cable_tier(name_down)
145144

146145
if from and to then
147-
local input = meta:get_int(from.."_EU_input")
148-
meta:set_int(from.."_EU_demand", demand)
149-
meta:set_int(from.."_EU_supply", 0)
150-
meta:set_int(to.."_EU_demand", 0)
151-
meta:set_int(to.."_EU_supply", input * remain)
152-
meta:set_string("infotext", S("@1 (@2 @3 -> @4 @5)", machine_name,
153-
technic.EU_string(input), from,
154-
technic.EU_string(input * remain), to))
146+
-- Get the "to" network switching station for EU demand calculation
147+
local network_hash = technic.cables[minetest.hash_node_position(pos_down)]
148+
local network = network_hash and minetest.get_position_from_hash(network_hash)
149+
local sw_pos = network and {x=network.x,y=network.y+1,z=network.z}
150+
local timeout = 0
151+
for tier in pairs(technic.machines) do
152+
-- Supply converter must be connected to a network
153+
timeout = math.max(meta:get_int(tier.."_EU_timeout"), timeout)
154+
end
155+
if timeout > 0 and sw_pos and minetest.get_node(sw_pos).name == "technic:switching_station" then
156+
local sw_meta = minetest.get_meta(sw_pos)
157+
local demand = 0
158+
if enabled then
159+
-- Reverse evaluate the required machine and round to a nice number
160+
demand = 100 * math.ceil((sw_meta:get_int("demand") / efficiency) / 100)
161+
-- Do not draw more than the limit
162+
demand = math.min(demand, meta:get_int("power"))
163+
end
164+
165+
local input = meta:get_int(from.."_EU_input") -- actual input
166+
meta:set_int(from.."_EU_demand", demand) -- desired input
167+
meta:set_int(from.."_EU_supply", 0)
168+
meta:set_int(to.."_EU_demand", 0)
169+
meta:set_int(to.."_EU_supply", input * efficiency)
170+
meta:set_string("infotext", S("@1 (@2 @3 -> @4 @5)", machine_name,
171+
technic.EU_string(input), from,
172+
technic.EU_string(input * efficiency), to))
173+
else
174+
meta:set_string("infotext",S("%s Has No Network"):format(machine_name))
175+
end
155176
else
156177
meta:set_string("infotext", S("%s Has Bad Cabling"):format(machine_name))
157178
if to then

0 commit comments

Comments
 (0)