From a8bffb862cf0748ba5c6709b3157e8b6dcb4a689 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Wed, 24 Jun 2015 00:28:21 +0200 Subject: [PATCH] Fix for disappearing ratsnest lines (GAL). --- pcbnew/ratsnest_data.cpp | 51 ++++++++---------------------------- pcbnew/ratsnest_data.h | 13 +++++---- pcbnew/ratsnest_viewitem.cpp | 11 ++++---- 3 files changed, 25 insertions(+), 50 deletions(-) diff --git a/pcbnew/ratsnest_data.cpp b/pcbnew/ratsnest_data.cpp index e7ad2d8314..b0c2af20a8 100644 --- a/pcbnew/ratsnest_data.cpp +++ b/pcbnew/ratsnest_data.cpp @@ -680,6 +680,7 @@ std::list RN_NET::GetClosestNodes( const RN_NODE_PTR& aNode, int aN closest.sort( boost::bind( sortDistance, boost::cref( aNode ), _1, _2 ) ); // Remove the first node (==aNode), as it is surely located within the smallest distance + assert( closest.front() == aNode ); closest.pop_front(); // Trim the result to the asked size @@ -704,6 +705,7 @@ std::list RN_NET::GetClosestNodes( const RN_NODE_PTR& aNode, closest.sort( boost::bind( sortDistance, boost::cref( aNode ), _1, _2 ) ); // Remove the first node (==aNode), as it is surely located within the smallest distance + assert( closest.front() == aNode ); closest.pop_front(); // Filter out by condition @@ -719,17 +721,15 @@ std::list RN_NET::GetClosestNodes( const RN_NODE_PTR& aNode, void RN_NET::AddSimple( const BOARD_CONNECTED_ITEM* aItem ) { - std::list nodes = GetNodes( aItem ); + BOOST_FOREACH( RN_NODE_PTR node, GetNodes( aItem ) ) + { + // Block all nodes, so they do not become targets for dynamic ratsnest lines + AddBlockedNode( node ); - if( nodes.empty() ) - return; - - int tag = nodes.front()->GetTag(); - - if( m_simpleItems.count( tag ) ) - return; // we already have a simple item for this tag - - m_simpleItems[tag] = aItem; + // Filter out junctions + if( node->GetRefCount() == 1 ) + m_simpleNodes.insert( node ); + } } @@ -816,42 +816,13 @@ void RN_NET::GetAllItems( std::list& aOutput, RN_ITEM_TYP } -boost::unordered_set RN_NET::GetSimpleNodes() const -{ - boost::unordered_set nodes; - - BOOST_FOREACH( const BOARD_CONNECTED_ITEM* item, m_simpleItems | boost::adaptors::map_values ) - { - std::list n = GetNodes( item ); - - if( n.empty() ) - return nodes; - - nodes.insert( n.front() ); // one node is enough, the rest belong to the same item - n.front()->SetFlag( true ); - } - - return nodes; -} - - void RN_NET::ClearSimple() { - BOOST_FOREACH( const BOARD_CONNECTED_ITEM* item, m_simpleItems | boost::adaptors::map_values ) - { - std::list n = GetNodes( item ); - - if( n.empty() ) - return; - - n.front()->SetFlag( false ); - } - BOOST_FOREACH( const RN_NODE_PTR& node, m_blockedNodes ) node->SetFlag( false ); m_blockedNodes.clear(); - m_simpleItems.clear(); + m_simpleNodes.clear(); } diff --git a/pcbnew/ratsnest_data.h b/pcbnew/ratsnest_data.h index 82e1e71ed9..1e2a56cb3c 100644 --- a/pcbnew/ratsnest_data.h +++ b/pcbnew/ratsnest_data.h @@ -506,7 +506,7 @@ public: */ inline void AddBlockedNode( RN_NODE_PTR& aNode ) { - m_blockedNodes.push_back( aNode ); + m_blockedNodes.insert( aNode ); aNode->SetFlag( true ); } @@ -516,7 +516,10 @@ public: * ratsnest line per node). * @return list of nodes for which ratsnest is drawn in simple mode. */ - boost::unordered_set GetSimpleNodes() const; + inline const boost::unordered_set& GetSimpleNodes() const + { + return m_simpleNodes; + } /** * Function ClearSimple() @@ -556,10 +559,10 @@ protected: boost::shared_ptr< std::vector > m_rnEdges; ///> List of nodes which will not be used as ratsnest target nodes. - std::deque m_blockedNodes; + boost::unordered_set m_blockedNodes; - ///> Map that stores items to be computed in simple mode, keyed by their tags. - boost::unordered_map m_simpleItems; + ///> Nodes to be displayed using the simplified ratsnest algorithm. + boost::unordered_set m_simpleNodes; ///> Flag indicating necessity of recalculation of ratsnest for a net. bool m_dirty; diff --git a/pcbnew/ratsnest_viewitem.cpp b/pcbnew/ratsnest_viewitem.cpp index 8dc26fafb0..252ef3c715 100644 --- a/pcbnew/ratsnest_viewitem.cpp +++ b/pcbnew/ratsnest_viewitem.cpp @@ -62,6 +62,7 @@ void RATSNEST_VIEWITEM::ViewDraw( int aLayer, GAL* aGal ) const COLOR4D color = rs->GetColor( NULL, ITEM_GAL_LAYER( RATSNEST_VISIBLE ) ); int highlightedNet = rs->GetHighlightNetCode(); + // Dynamic ratsnest (for e.g. dragged items) for( int i = 1; i < m_data->GetNetCount(); ++i ) { RN_NET& net = m_data->GetNet( i ); @@ -75,8 +76,11 @@ void RATSNEST_VIEWITEM::ViewDraw( int aLayer, GAL* aGal ) const // Draw the "dynamic" ratsnest (i.e. for objects that may be currently being moved) BOOST_FOREACH( const RN_NODE_PTR& node, net.GetSimpleNodes() ) { - RN_NODE_PTR dest = net.GetClosestNode( node, WITHOUT_FLAG() && - DIFFERENT_TAG( RN_NODE::TAG_UNCONNECTED ) ); + // Skipping nodes with higher reference count avoids displaying redundant lines + if( node->GetRefCount() > 1 ) + continue; + + RN_NODE_PTR dest = net.GetClosestNode( node, WITHOUT_FLAG() ); if( dest ) { @@ -84,9 +88,6 @@ void RATSNEST_VIEWITEM::ViewDraw( int aLayer, GAL* aGal ) const VECTOR2D end( dest->GetX(), dest->GetY() ); aGal->DrawLine( origin, end ); - - // Avoid duplicate destinations for ratsnest lines by storing already used nodes - net.AddBlockedNode( dest ); } }