public static void Initialize() { AirNetGrid.Reinit(); AirNetManager.Reinit(); Log.Message("LT-RH: Initialized RedistHeat."); doneInit = true; }
public static void DeregisterAirNet(AirNet oldNet) { #if DEBUG Log.Message("RedistHeat: Deregistering " + oldNet); #endif allNets[oldNet.LayerInt].Remove(oldNet); AirNetGrid.NotifyNetDeregistered(oldNet); }
public static void RegisterAirNet(AirNet newNet) { #if DEBUG Log.Message("RedistHeat: Registering " + newNet); #endif allNets[newNet.LayerInt].Add(newNet); AirNetGrid.NotifyNetCreated(newNet); }
public override bool ShouldLinkWith(IntVec3 c, Thing parent) { var compAir = parent.TryGetComp <CompAir>(); if (compAir == null) { return(false); } var lowerFlag = AirNetGrid.NetAt(c, parent.Map, NetLayer.Lower) != null && compAir.IsLayerOf(NetLayer.Lower); var upperFlag = AirNetGrid.NetAt(c, parent.Map, NetLayer.Upper) != null && compAir.IsLayerOf(NetLayer.Upper); return(c.InBounds(parent.Map) && (lowerFlag || upperFlag)); }
public static void AirNetsUpdate() { for (var layerInt = 0; layerInt < Common.NetLayerCount(); layerInt++) { if (!newComps[layerInt].Any() && !oldComps[layerInt].Any()) { continue; } //Deregister the whole net that should be merged (deregister adjacent AirNet) foreach (var current in newComps[layerInt]) { #if DEBUG Log.Message("Cleaning."); #endif //Check for adjacent cells foreach (var adjPos in GenAdj.CellsAdjacentCardinal(current.parent)) { if (!adjPos.InBounds()) { continue; } var oldNet = AirNetGrid.NetAt(adjPos, (NetLayer)layerInt); if (oldNet != null) { DeregisterAirNet(oldNet); } } } //Deregister comps marked as old foreach (var current in oldComps[layerInt]) { #if DEBUG Log.Message("Deleting."); #endif var oldNet = AirNetGrid.NetAt(current.parent.Position, (NetLayer)layerInt); if (oldNet != null) { DeregisterAirNet(oldNet); } } //Make a new, merged net foreach (var current in newComps[layerInt]) { #if DEBUG Log.Message("Merging."); #endif if (AirNetGrid.NetAt(current.parent.Position, (NetLayer)layerInt) == null) { RegisterAirNet(AirNetMaker.NewAirNetStartingFrom((Building)current.parent, (NetLayer)layerInt)); } } //Split nets foreach (var current in oldComps[layerInt]) { #if DEBUG Log.Message("Splitting."); #endif foreach (var adjPos in GenAdj.CellsAdjacentCardinal(current.parent)) { if (!adjPos.InBounds()) { continue; } var airNode = GetAirNodeAt(adjPos, (NetLayer)layerInt); if (airNode != null) { RegisterAirNet(AirNetMaker.NewAirNetStartingFrom(airNode, (NetLayer)layerInt)); } } } newComps[layerInt].Clear(); oldComps[layerInt].Clear(); } }