@@ -120,7 +120,7 @@ local run = function(pos, node, run_stage)
120
120
return
121
121
end
122
122
123
- local remain = 0.9
123
+ local efficiency = 0.9
124
124
-- Machine information
125
125
local machine_name = S (" Supply Converter" )
126
126
local meta = minetest .get_meta (pos )
@@ -133,7 +133,6 @@ local run = function(pos, node, run_stage)
133
133
enabled = enabled == " 1"
134
134
end
135
135
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
137
136
138
137
local pos_up = {x = pos .x , y = pos .y + 1 , z = pos .z }
139
138
local pos_down = {x = pos .x , y = pos .y - 1 , z = pos .z }
@@ -144,14 +143,36 @@ local run = function(pos, node, run_stage)
144
143
local to = technic .get_cable_tier (name_down )
145
144
146
145
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
155
176
else
156
177
meta :set_string (" infotext" , S (" %s Has Bad Cabling" ):format (machine_name ))
157
178
if to then
0 commit comments