Switching station: Begin optimizations
This commit is contained in:
parent
9a39a94272
commit
f9b0906a82
@ -71,21 +71,16 @@ local function clear_networks(pos)
|
|||||||
local eu_type = technic.machines[tier][node.name]
|
local eu_type = technic.machines[tier][node.name]
|
||||||
meta:set_string(tier.."_network", minetest.pos_to_string(sw_pos))
|
meta:set_string(tier.."_network", minetest.pos_to_string(sw_pos))
|
||||||
if eu_type == technic.producer then
|
if eu_type == technic.producer then
|
||||||
table.insert(network.PR_nodes,pos)
|
table.insert(network.PR_nodes, pos)
|
||||||
elseif eu_type == technic.receiver then
|
elseif eu_type == technic.receiver then
|
||||||
table.insert(network.RE_nodes,pos)
|
table.insert(network.RE_nodes, pos)
|
||||||
elseif eu_type == technic.producer_receiver then
|
elseif eu_type == technic.producer_receiver then
|
||||||
table.insert(network.PR_nodes,pos)
|
table.insert(network.PR_nodes, pos)
|
||||||
table.insert(network.RE_nodes,pos)
|
table.insert(network.RE_nodes, pos)
|
||||||
elseif eu_type == "SPECIAL" and
|
|
||||||
(pos.x ~= sw_pos.x or pos.y ~= sw_pos.y or pos.z ~= sw_pos.z) and
|
|
||||||
nil then
|
|
||||||
-- TODO: This case was never executed. Needs testing!
|
|
||||||
-- Supply converter.
|
|
||||||
table.insert(network.SP_nodes,pos)
|
|
||||||
elseif eu_type == technic.battery then
|
elseif eu_type == technic.battery then
|
||||||
table.insert(network.BA_nodes,pos)
|
table.insert(network.BA_nodes, pos)
|
||||||
end
|
end
|
||||||
|
-- Note: SPECIAL (i.e. switching station) is not traversed!
|
||||||
end
|
end
|
||||||
elseif dead_end and not placed then
|
elseif dead_end and not placed then
|
||||||
-- Dead end removed, remove it from the network
|
-- Dead end removed, remove it from the network
|
||||||
|
@ -98,8 +98,10 @@ local function flatten(map)
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- Add a wire node to the LV/MV/HV network
|
-- Add a wire node to the LV/MV/HV network
|
||||||
|
-- Returns: indicator whether the cable is new in the network
|
||||||
|
local hash_node_position = minetest.hash_node_position
|
||||||
local function add_network_node(nodes, pos, network_id)
|
local function add_network_node(nodes, pos, network_id)
|
||||||
local node_id = minetest.hash_node_position(pos)
|
local node_id = hash_node_position(pos)
|
||||||
technic.cables[node_id] = network_id
|
technic.cables[node_id] = network_id
|
||||||
if nodes[node_id] then
|
if nodes[node_id] then
|
||||||
return false
|
return false
|
||||||
@ -115,39 +117,45 @@ local function add_cable_node(nodes, pos, network_id, queue)
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- Generic function to add found connected nodes to the right classification array
|
-- Generic function to add found connected nodes to the right classification array
|
||||||
local check_node_subp = function(PR_nodes, RE_nodes, BA_nodes, SP_nodes, all_nodes, pos, machines, tier, sw_pos, from_below, network_id, queue)
|
local check_node_subp = function(network, pos, machines, sw_pos, from_below, network_id, queue)
|
||||||
technic.get_or_load_node(pos)
|
technic.get_or_load_node(pos)
|
||||||
local name = minetest.get_node(pos).name
|
local name = minetest.get_node(pos).name
|
||||||
|
|
||||||
if technic.is_tier_cable(name, tier) then
|
if technic.is_tier_cable(name, network.tier) then
|
||||||
add_cable_node(all_nodes, pos,network_id, queue)
|
add_cable_node(network.all_nodes, pos, network_id, queue)
|
||||||
elseif machines[name] then
|
return
|
||||||
--dprint(name.." is a "..machines[name])
|
|
||||||
local meta = minetest.get_meta(pos)
|
|
||||||
meta:set_string(tier.."_network",minetest.pos_to_string(sw_pos))
|
|
||||||
if machines[name] == technic.producer then
|
|
||||||
add_network_node(PR_nodes, pos, network_id)
|
|
||||||
elseif machines[name] == technic.receiver then
|
|
||||||
add_network_node(RE_nodes, pos, network_id)
|
|
||||||
elseif machines[name] == technic.producer_receiver then
|
|
||||||
add_network_node(PR_nodes, pos, network_id)
|
|
||||||
add_network_node(RE_nodes, pos, network_id)
|
|
||||||
elseif machines[name] == "SPECIAL" and
|
|
||||||
(pos.x ~= sw_pos.x or pos.y ~= sw_pos.y or pos.z ~= sw_pos.z) and
|
|
||||||
from_below then
|
|
||||||
-- Another switching station -> disable it
|
|
||||||
add_network_node(SP_nodes, pos, network_id)
|
|
||||||
meta:set_int("active", 0)
|
|
||||||
elseif machines[name] == technic.battery then
|
|
||||||
add_network_node(BA_nodes, pos, network_id)
|
|
||||||
end
|
|
||||||
|
|
||||||
meta:set_int(tier.."_EU_timeout", 2) -- Touch node
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local eu_type = machines[name]
|
||||||
|
if not eu_type then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
--dprint(name.." is a "..machines[name])
|
||||||
|
local meta = minetest.get_meta(pos)
|
||||||
|
meta:set_string(network.tier.."_network", minetest.pos_to_string(sw_pos))
|
||||||
|
|
||||||
|
if eu_type == technic.producer then
|
||||||
|
add_network_node(network.PR_nodes, pos, network_id)
|
||||||
|
elseif eu_type == technic.receiver then
|
||||||
|
add_network_node(network.RE_nodes, pos, network_id)
|
||||||
|
elseif eu_type == technic.producer_receiver then
|
||||||
|
add_network_node(network.PR_nodes, pos, network_id)
|
||||||
|
add_network_node(network.RE_nodes, pos, network_id)
|
||||||
|
elseif eu_type == technic.battery then
|
||||||
|
add_network_node(network.BA_nodes, pos, network_id)
|
||||||
|
elseif eu_type == "SPECIAL" and from_below and
|
||||||
|
not vector.equals(pos, sw_pos) then
|
||||||
|
-- Another switching station -> disable it
|
||||||
|
add_network_node(network.SP_nodes, pos, network_id)
|
||||||
|
meta:set_int("active", 0)
|
||||||
|
end
|
||||||
|
|
||||||
|
meta:set_int(network.tier.."_EU_timeout", 2) -- Touch node
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Traverse a network given a list of machines and a cable type name
|
-- Traverse a network given a list of machines and a cable type name
|
||||||
local traverse_network = function(PR_nodes, RE_nodes, BA_nodes, SP_nodes, all_nodes, pos, machines, tier, sw_pos, network_id, queue)
|
local traverse_network = function(network, pos, machines, sw_pos, network_id, queue)
|
||||||
local positions = {
|
local positions = {
|
||||||
{x=pos.x+1, y=pos.y, z=pos.z},
|
{x=pos.x+1, y=pos.y, z=pos.z},
|
||||||
{x=pos.x-1, y=pos.y, z=pos.z},
|
{x=pos.x-1, y=pos.y, z=pos.z},
|
||||||
@ -156,7 +164,7 @@ local traverse_network = function(PR_nodes, RE_nodes, BA_nodes, SP_nodes, all_no
|
|||||||
{x=pos.x, y=pos.y, z=pos.z+1},
|
{x=pos.x, y=pos.y, z=pos.z+1},
|
||||||
{x=pos.x, y=pos.y, z=pos.z-1}}
|
{x=pos.x, y=pos.y, z=pos.z-1}}
|
||||||
for i, cur_pos in pairs(positions) do
|
for i, cur_pos in pairs(positions) do
|
||||||
check_node_subp(PR_nodes, RE_nodes, BA_nodes, SP_nodes, all_nodes, cur_pos, machines, tier, sw_pos, i == 3, network_id, queue)
|
check_node_subp(network, cur_pos, machines, sw_pos, i == 3, network_id, queue)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -167,43 +175,51 @@ local touch_nodes = function(list, tier)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local get_network = function(sw_pos, pos1, tier)
|
local get_network = function(sw_pos, cable_pos, tier)
|
||||||
local network_id = minetest.hash_node_position(pos1)
|
local network_id = minetest.hash_node_position(cable_pos)
|
||||||
local cached = technic.networks[network_id]
|
local cached = technic.networks[network_id]
|
||||||
if cached and cached.tier == tier then
|
if cached and cached.tier == tier then
|
||||||
|
-- Re-use cached system data
|
||||||
touch_nodes(cached.PR_nodes, tier)
|
touch_nodes(cached.PR_nodes, tier)
|
||||||
touch_nodes(cached.BA_nodes, tier)
|
touch_nodes(cached.BA_nodes, tier)
|
||||||
touch_nodes(cached.RE_nodes, tier)
|
touch_nodes(cached.RE_nodes, tier)
|
||||||
for _, pos in ipairs(cached.SP_nodes) do
|
for _, pos in ipairs(cached.SP_nodes) do
|
||||||
|
-- Disable all other switching stations (again)
|
||||||
local meta = minetest.get_meta(pos)
|
local meta = minetest.get_meta(pos)
|
||||||
meta:set_int("active", 0)
|
meta:set_int("active", 0)
|
||||||
meta:set_string("active_pos", minetest.serialize(sw_pos))
|
|
||||||
end
|
end
|
||||||
return cached.PR_nodes, cached.BA_nodes, cached.RE_nodes
|
return cached.PR_nodes, cached.BA_nodes, cached.RE_nodes
|
||||||
end
|
end
|
||||||
local PR_nodes = {}
|
|
||||||
local BA_nodes = {}
|
local machines = technic.machines[tier]
|
||||||
local RE_nodes = {}
|
local network = {
|
||||||
local SP_nodes = {}
|
tier = tier,
|
||||||
local all_nodes = {}
|
PR_nodes = {},
|
||||||
|
BA_nodes = {},
|
||||||
|
RE_nodes = {},
|
||||||
|
SP_nodes = {},
|
||||||
|
all_nodes = {}
|
||||||
|
}
|
||||||
|
-- Traverse the network step by step starting from the node underneath the switching station
|
||||||
local queue = {}
|
local queue = {}
|
||||||
add_cable_node(all_nodes, pos1, network_id, queue)
|
add_cable_node(network.all_nodes, cable_pos, network_id, queue)
|
||||||
while next(queue) do
|
while next(queue) do
|
||||||
local to_visit = {}
|
local to_visit = {}
|
||||||
for _, pos in ipairs(queue) do
|
for _, pos in ipairs(queue) do
|
||||||
traverse_network(PR_nodes, RE_nodes, BA_nodes, SP_nodes, all_nodes,
|
traverse_network(network, pos, machines, sw_pos, network_id, to_visit)
|
||||||
pos, technic.machines[tier], tier, sw_pos, network_id, to_visit)
|
|
||||||
end
|
end
|
||||||
queue = to_visit
|
queue = to_visit
|
||||||
end
|
end
|
||||||
PR_nodes = flatten(PR_nodes)
|
|
||||||
BA_nodes = flatten(BA_nodes)
|
-- Convert { [hash] = pos, ... } to { pos, ... }
|
||||||
RE_nodes = flatten(RE_nodes)
|
network.PR_nodes = flatten(network.PR_nodes)
|
||||||
SP_nodes = flatten(SP_nodes)
|
network.BA_nodes = flatten(network.BA_nodes)
|
||||||
all_nodes = flatten(all_nodes)
|
network.RE_nodes = flatten(network.RE_nodes)
|
||||||
technic.networks[network_id] = {tier = tier, all_nodes = all_nodes, SP_nodes = SP_nodes,
|
network.SP_nodes = flatten(network.SP_nodes)
|
||||||
PR_nodes = PR_nodes, RE_nodes = RE_nodes, BA_nodes = BA_nodes}
|
network.all_nodes = flatten(network.all_nodes)
|
||||||
return PR_nodes, BA_nodes, RE_nodes
|
technic.networks[network_id] = network
|
||||||
|
|
||||||
|
return network.PR_nodes, network.BA_nodes, network.RE_nodes
|
||||||
end
|
end
|
||||||
|
|
||||||
-----------------------------------------------
|
-----------------------------------------------
|
||||||
@ -213,19 +229,17 @@ end
|
|||||||
technic.powerctrl_state = true
|
technic.powerctrl_state = true
|
||||||
|
|
||||||
minetest.register_chatcommand("powerctrl", {
|
minetest.register_chatcommand("powerctrl", {
|
||||||
params = "state",
|
params = "[on/off]",
|
||||||
description = "Enables or disables technic's switching station ABM",
|
description = "Enables or disables technic's switching station ABM",
|
||||||
privs = { basic_privs = true },
|
privs = { basic_privs = true },
|
||||||
func = function(name, state)
|
func = function(name, state)
|
||||||
if state == "on" then
|
technic.powerctrl_state = (state:trim():lower() == "on")
|
||||||
technic.powerctrl_state = true
|
minetest.chat_send_player(name, "Technic switching station: " ..
|
||||||
else
|
(technic.powerctrl_state and "on" or "off"))
|
||||||
technic.powerctrl_state = false
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Run all the nodes
|
-- Run `technic_run` on all nodes in the power grid
|
||||||
local function run_nodes(list, run_stage)
|
local function run_nodes(list, run_stage)
|
||||||
for _, pos in ipairs(list) do
|
for _, pos in ipairs(list) do
|
||||||
technic.get_or_load_node(pos)
|
technic.get_or_load_node(pos)
|
||||||
@ -241,25 +255,23 @@ end
|
|||||||
|
|
||||||
minetest.register_abm({
|
minetest.register_abm({
|
||||||
nodenames = {"technic:switching_station"},
|
nodenames = {"technic:switching_station"},
|
||||||
label = "Switching Station", -- allows the mtt profiler to profile this abm individually
|
label = "Switching Station", -- name for the Minetest mod profiler
|
||||||
interval = 1,
|
interval = 1,
|
||||||
chance = 1,
|
chance = 1,
|
||||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
||||||
if not technic.powerctrl_state then return end
|
if not technic.powerctrl_state then return end
|
||||||
local meta = minetest.get_meta(pos)
|
local meta = minetest.get_meta(pos)
|
||||||
local meta1
|
local meta1
|
||||||
local PR_nodes
|
local PR_nodes, BA_nodes, RE_nodes
|
||||||
local BA_nodes
|
|
||||||
local RE_nodes
|
|
||||||
local machine_name = S("Switching Station")
|
local machine_name = S("Switching Station")
|
||||||
|
|
||||||
-- Which kind of network are we on:
|
-- Which kind of network are we on:
|
||||||
local pos1 = {x=pos.x, y=pos.y-1, z=pos.z}
|
local cable_pos = {x=pos.x, y=pos.y-1, z=pos.z}
|
||||||
|
|
||||||
--Disable if necessary
|
--Disable if necessary
|
||||||
if meta:get_int("active") ~= 1 then
|
if meta:get_int("active") ~= 1 then
|
||||||
minetest.forceload_free_block(pos)
|
minetest.forceload_free_block(pos)
|
||||||
minetest.forceload_free_block(pos1)
|
minetest.forceload_free_block(cable_pos)
|
||||||
meta:set_string("infotext",S("%s Already Present"):format(machine_name))
|
meta:set_string("infotext",S("%s Already Present"):format(machine_name))
|
||||||
|
|
||||||
local poshash = minetest.hash_node_position(pos)
|
local poshash = minetest.hash_node_position(pos)
|
||||||
@ -271,18 +283,18 @@ minetest.register_abm({
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local name = minetest.get_node(pos1).name
|
local name = minetest.get_node(cable_pos).name
|
||||||
local tier = technic.get_cable_tier(name)
|
local tier = technic.get_cable_tier(name)
|
||||||
if tier then
|
if tier then
|
||||||
-- Forceload switching station
|
-- Forceload switching station
|
||||||
minetest.forceload_block(pos)
|
minetest.forceload_block(pos)
|
||||||
minetest.forceload_block(pos1)
|
minetest.forceload_block(cable_pos)
|
||||||
PR_nodes, BA_nodes, RE_nodes = get_network(pos, pos1, tier)
|
PR_nodes, BA_nodes, RE_nodes = get_network(pos, cable_pos, tier)
|
||||||
else
|
else
|
||||||
--dprint("Not connected to a network")
|
--dprint("Not connected to a network")
|
||||||
meta:set_string("infotext", S("%s Has No Network"):format(machine_name))
|
meta:set_string("infotext", S("%s Has No Network"):format(machine_name))
|
||||||
minetest.forceload_free_block(pos)
|
minetest.forceload_free_block(pos)
|
||||||
minetest.forceload_free_block(pos1)
|
minetest.forceload_free_block(cable_pos)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -335,20 +347,14 @@ minetest.register_abm({
|
|||||||
end
|
end
|
||||||
--dprint("Total RE demand:"..RE_eu_demand)
|
--dprint("Total RE demand:"..RE_eu_demand)
|
||||||
|
|
||||||
-- Get all the power from the BA nodes
|
-- Batteries
|
||||||
local BA_eu_supply = 0
|
local BA_eu_supply, BA_eu_demand = 0, 0
|
||||||
for _, pos1 in pairs(BA_nodes) do
|
for _, pos1 in pairs(BA_nodes) do
|
||||||
meta1 = minetest.get_meta(pos1)
|
meta1 = minetest.get_meta(pos1)
|
||||||
BA_eu_supply = BA_eu_supply + meta1:get_int(eu_supply_str)
|
BA_eu_supply = BA_eu_supply + meta1:get_int(eu_supply_str)
|
||||||
end
|
|
||||||
--dprint("Total BA supply:"..BA_eu_supply)
|
|
||||||
|
|
||||||
-- Get all the demand from the BA nodes
|
|
||||||
local BA_eu_demand = 0
|
|
||||||
for _, pos1 in pairs(BA_nodes) do
|
|
||||||
meta1 = minetest.get_meta(pos1)
|
|
||||||
BA_eu_demand = BA_eu_demand + meta1:get_int(eu_demand_str)
|
BA_eu_demand = BA_eu_demand + meta1:get_int(eu_demand_str)
|
||||||
end
|
end
|
||||||
|
--dprint("Total BA supply:"..BA_eu_supply)
|
||||||
--dprint("Total BA demand:"..BA_eu_demand)
|
--dprint("Total BA demand:"..BA_eu_demand)
|
||||||
|
|
||||||
meta:set_string("infotext", S("@1. Supply: @2 Demand: @3",
|
meta:set_string("infotext", S("@1. Supply: @2 Demand: @3",
|
||||||
@ -369,8 +375,8 @@ minetest.register_abm({
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- Data that will be used by the power monitor
|
-- Data that will be used by the power monitor
|
||||||
meta:set_int("supply",PR_eu_supply)
|
meta:set_int("supply", PR_eu_supply)
|
||||||
meta:set_int("demand",RE_eu_demand)
|
meta:set_int("demand", RE_eu_demand)
|
||||||
|
|
||||||
-- If the PR supply is enough for the RE demand supply them all
|
-- If the PR supply is enough for the RE demand supply them all
|
||||||
if PR_eu_supply >= RE_eu_demand then
|
if PR_eu_supply >= RE_eu_demand then
|
||||||
|
Loading…
Reference in New Issue
Block a user