From 2ca7a76693f7a2a6484cb4705b20fc0d28842994 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Tue, 11 Oct 2022 23:02:22 +0100 Subject: [PATCH] Don't connect disparate nets Only some elements get their nets assigned based on connectivity. Other elements should be keps in different clusters for connection Fixes https://gitlab.com/kicad/code/kicad/issues/12622 (cherry picked from commit c9f11827a7a093b60c71716bd9d3713ea0d4e8a6) --- pcbnew/connectivity/connectivity_algo.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pcbnew/connectivity/connectivity_algo.cpp b/pcbnew/connectivity/connectivity_algo.cpp index 3d1060cf73..eb0bdd3457 100644 --- a/pcbnew/connectivity/connectivity_algo.cpp +++ b/pcbnew/connectivity/connectivity_algo.cpp @@ -669,10 +669,9 @@ void CN_CONNECTIVITY_ALGO::MarkNetAsDirty( int aNet ) void CN_VISITOR::checkZoneItemConnection( CN_ZONE_LAYER* aZoneLayer, CN_ITEM* aItem ) { - if( aZoneLayer->Net() != aItem->Net() && !aItem->CanChangeNet() ) - return; + PCB_LAYER_ID layer = aZoneLayer->GetLayer(); - if( !aZoneLayer->BBox().Intersects( aItem->BBox() ) ) + if( !aItem->Parent()->IsOnLayer( layer ) ) return; int accuracy = 0; @@ -703,9 +702,6 @@ void CN_VISITOR::checkZoneZoneConnection( CN_ZONE_LAYER* aZoneLayerA, CN_ZONE_LA if( aZoneLayerA->Layer() != aZoneLayerB->Layer() ) return; - if( aZoneLayerB->Net() != aZoneLayerA->Net() ) - return; // we only test zones belonging to the same net - const BOX2I& boxA = aZoneLayerA->BBox(); const BOX2I& boxB = aZoneLayerB->BBox(); @@ -765,6 +761,10 @@ bool CN_VISITOR::operator()( CN_ITEM* aCandidate ) if( parentA == parentB ) return true; + // Don't connect items in different nets that can't be changed + if( !aCandidate->CanChangeNet() && !m_item->CanChangeNet() && aCandidate->Net() != m_item->Net() ) + return true; + LSET commonLayers = parentA->GetLayerSet() & parentB->GetLayerSet(); if( !commonLayers.any() )