2011-12-12 14:02:37 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2018-02-04 13:34:17 +00:00
|
|
|
* Copyright (C) 2004-2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2017-06-22 14:24:07 +00:00
|
|
|
* Copyright (C) 2011 Wayne Stambaugh <stambaughw@verizon.net>
|
2020-06-04 17:43:05 +00:00
|
|
|
* Copyright (C) 1992-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-12-12 14:02:37 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2019-03-31 09:37:57 +00:00
|
|
|
#include <reporter.h>
|
2016-11-28 14:31:28 +00:00
|
|
|
#include <board_commit.h>
|
2020-06-17 12:46:50 +00:00
|
|
|
#include <cleanup_item.h>
|
2018-10-12 06:17:15 +00:00
|
|
|
#include <connectivity/connectivity_algo.h>
|
|
|
|
#include <connectivity/connectivity_data.h>
|
2018-02-04 13:34:17 +00:00
|
|
|
#include <tool/tool_manager.h>
|
|
|
|
#include <tools/pcb_actions.h>
|
2019-06-03 20:06:58 +00:00
|
|
|
#include <tools/global_edit_tool.h>
|
2020-10-26 18:36:25 +00:00
|
|
|
#include <drc/drc_rtree.h>
|
2019-03-31 09:37:57 +00:00
|
|
|
#include <tracks_cleaner.h>
|
2007-10-19 23:02:11 +00:00
|
|
|
|
2020-06-17 12:46:50 +00:00
|
|
|
TRACKS_CLEANER::TRACKS_CLEANER( BOARD* aPcb, BOARD_COMMIT& aCommit ) :
|
|
|
|
m_brd( aPcb ),
|
|
|
|
m_commit( aCommit ),
|
|
|
|
m_dryRun( true ),
|
|
|
|
m_itemsList( nullptr )
|
2019-03-31 09:37:57 +00:00
|
|
|
{
|
2007-06-14 05:31:55 +00:00
|
|
|
}
|
|
|
|
|
2017-06-22 14:24:07 +00:00
|
|
|
|
2007-10-27 18:05:50 +00:00
|
|
|
/* Main cleaning function.
|
|
|
|
* Delete
|
|
|
|
* - Redundant points on tracks (merge aligned segments)
|
|
|
|
* - vias on pad
|
2014-04-25 06:00:04 +00:00
|
|
|
* - null length segments
|
2007-10-27 18:05:50 +00:00
|
|
|
*/
|
2020-08-11 13:33:16 +00:00
|
|
|
void TRACKS_CLEANER::CleanupBoard( bool aDryRun, std::vector<std::shared_ptr<CLEANUP_ITEM> >* aItemsList,
|
2020-03-16 11:05:01 +00:00
|
|
|
bool aRemoveMisConnected, bool aCleanVias, bool aMergeSegments,
|
2020-07-31 04:21:25 +00:00
|
|
|
bool aDeleteUnconnected, bool aDeleteTracksinPad, bool aDeleteDanglingVias )
|
2007-06-14 05:31:55 +00:00
|
|
|
{
|
2020-07-31 04:21:25 +00:00
|
|
|
bool has_deleted = false;
|
|
|
|
|
2019-03-31 09:37:57 +00:00
|
|
|
m_dryRun = aDryRun;
|
|
|
|
m_itemsList = aItemsList;
|
2010-11-21 18:28:32 +00:00
|
|
|
|
2020-10-26 18:36:25 +00:00
|
|
|
cleanup( aCleanVias, aMergeSegments || aRemoveMisConnected, aMergeSegments, aMergeSegments );
|
2016-09-30 09:09:17 +00:00
|
|
|
|
|
|
|
if( aRemoveMisConnected )
|
2020-08-18 18:32:43 +00:00
|
|
|
removeShortingTrackSegments();
|
2015-05-01 15:01:09 +00:00
|
|
|
|
2019-06-01 16:49:33 +00:00
|
|
|
if( aDeleteTracksinPad )
|
2020-06-17 12:46:50 +00:00
|
|
|
deleteTracksInPads();
|
2019-06-01 16:49:33 +00:00
|
|
|
|
2016-09-30 16:33:46 +00:00
|
|
|
if( aDeleteUnconnected )
|
2020-07-31 04:21:25 +00:00
|
|
|
has_deleted = deleteDanglingTracks( false );
|
|
|
|
|
|
|
|
if( aDeleteDanglingVias )
|
|
|
|
has_deleted |= deleteDanglingTracks( true );
|
|
|
|
|
|
|
|
if( has_deleted && aMergeSegments )
|
2020-10-26 18:36:25 +00:00
|
|
|
cleanup( false, false, false, true );
|
2012-09-07 19:29:44 +00:00
|
|
|
}
|
2007-06-14 05:31:55 +00:00
|
|
|
|
2011-09-15 17:58:35 +00:00
|
|
|
|
2020-08-18 18:32:43 +00:00
|
|
|
void TRACKS_CLEANER::removeShortingTrackSegments()
|
2016-09-30 16:33:46 +00:00
|
|
|
{
|
2020-06-17 12:46:50 +00:00
|
|
|
std::shared_ptr<CONNECTIVITY_DATA> connectivity = m_brd->GetConnectivity();
|
2016-09-30 16:33:46 +00:00
|
|
|
|
2017-06-22 14:24:07 +00:00
|
|
|
std::set<BOARD_ITEM *> toRemove;
|
|
|
|
|
2020-06-17 12:46:50 +00:00
|
|
|
for( TRACK* segment : m_brd->Tracks() )
|
2016-09-30 16:33:46 +00:00
|
|
|
{
|
2020-11-12 22:30:02 +00:00
|
|
|
for( PAD* testedPad : connectivity->GetConnectedPads( segment ) )
|
2016-09-30 16:33:46 +00:00
|
|
|
{
|
2017-03-22 13:51:07 +00:00
|
|
|
if( segment->GetNetCode() != testedPad->GetNetCode() )
|
2019-03-31 09:37:57 +00:00
|
|
|
{
|
2020-08-18 18:32:43 +00:00
|
|
|
std::shared_ptr<CLEANUP_ITEM> item;
|
|
|
|
|
|
|
|
if( segment->Type() == PCB_VIA_T )
|
|
|
|
item = std::make_shared<CLEANUP_ITEM>( CLEANUP_SHORTING_VIA );
|
|
|
|
else
|
|
|
|
item = std::make_shared<CLEANUP_ITEM>( CLEANUP_SHORTING_TRACK );
|
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
item->SetItems( segment );
|
2020-03-16 11:05:01 +00:00
|
|
|
m_itemsList->push_back( item );
|
2019-03-31 09:37:57 +00:00
|
|
|
|
2017-06-22 14:24:07 +00:00
|
|
|
toRemove.insert( segment );
|
2019-03-31 09:37:57 +00:00
|
|
|
}
|
2016-09-30 16:33:46 +00:00
|
|
|
}
|
|
|
|
|
2020-06-17 12:46:50 +00:00
|
|
|
for( TRACK* testedTrack : connectivity->GetConnectedTracks( segment ) )
|
2016-09-30 16:33:46 +00:00
|
|
|
{
|
2020-06-27 16:06:01 +00:00
|
|
|
if( segment->GetNetCode() != testedTrack->GetNetCode() )
|
2019-03-31 09:37:57 +00:00
|
|
|
{
|
2020-08-18 18:32:43 +00:00
|
|
|
std::shared_ptr<CLEANUP_ITEM> item;
|
|
|
|
|
|
|
|
if( segment->Type() == PCB_VIA_T )
|
|
|
|
item = std::make_shared<CLEANUP_ITEM>( CLEANUP_SHORTING_VIA );
|
|
|
|
else
|
|
|
|
item = std::make_shared<CLEANUP_ITEM>( CLEANUP_SHORTING_TRACK );
|
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
item->SetItems( segment );
|
2020-03-16 11:05:01 +00:00
|
|
|
m_itemsList->push_back( item );
|
2019-03-31 09:37:57 +00:00
|
|
|
|
2017-06-22 14:24:07 +00:00
|
|
|
toRemove.insert( segment );
|
2019-03-31 09:37:57 +00:00
|
|
|
}
|
2016-09-30 16:33:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-17 12:46:50 +00:00
|
|
|
if( !m_dryRun )
|
|
|
|
removeItems( toRemove );
|
2016-09-30 16:33:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-28 18:23:09 +00:00
|
|
|
bool TRACKS_CLEANER::testTrackEndpointIsNode( TRACK* aTrack, bool aTstStart )
|
|
|
|
{
|
|
|
|
// A node is a point where more than 2 items are connected.
|
|
|
|
|
|
|
|
auto connectivity = m_brd->GetConnectivity();
|
|
|
|
auto items = connectivity->GetConnectivityAlgo()->ItemEntry( aTrack ).GetItems();
|
|
|
|
|
|
|
|
if( items.empty() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
auto citem = items.front();
|
|
|
|
|
|
|
|
if( !citem->Valid() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
auto anchors = citem->Anchors();
|
|
|
|
|
|
|
|
VECTOR2I refpoint = aTstStart ? aTrack->GetStart() : aTrack->GetEnd();
|
|
|
|
|
|
|
|
for( const auto& anchor : anchors )
|
|
|
|
{
|
|
|
|
if( anchor->Pos() != refpoint )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// The right anchor point is found: if more than one other item
|
|
|
|
// (pad, via, track...) is connected, it is a node:
|
|
|
|
return anchor->ConnectedItemsCount() > 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-07-31 04:21:25 +00:00
|
|
|
bool TRACKS_CLEANER::deleteDanglingTracks( bool aVia )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2017-06-22 14:24:07 +00:00
|
|
|
bool item_erased = false;
|
2012-09-07 19:29:44 +00:00
|
|
|
bool modified = false;
|
2016-09-30 09:09:17 +00:00
|
|
|
|
2014-04-30 19:16:22 +00:00
|
|
|
do // Iterate when at least one track is deleted
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2012-09-07 19:29:44 +00:00
|
|
|
item_erased = false;
|
2019-06-28 13:14:17 +00:00
|
|
|
// Ensure the connectivity is up to date, especially after removind a dangling segment
|
|
|
|
m_brd->BuildConnectivity();
|
2017-06-22 14:24:07 +00:00
|
|
|
|
2020-06-04 17:43:05 +00:00
|
|
|
// Keep a duplicate deque to all deleting in the primary
|
|
|
|
std::deque<TRACK*> temp_tracks( m_brd->Tracks() );
|
|
|
|
|
|
|
|
for( TRACK* track : temp_tracks )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2020-10-26 22:44:57 +00:00
|
|
|
if( ( aVia && track->Type() != PCB_VIA_T ) || ( !aVia && track->Type() == PCB_VIA_T ) )
|
2020-07-31 04:21:25 +00:00
|
|
|
continue;
|
|
|
|
|
2020-10-26 22:44:57 +00:00
|
|
|
// Test if a track (or a via) endpoint is not connected to another track or zone.
|
2020-08-05 20:15:27 +00:00
|
|
|
if( m_brd->GetConnectivity()->TestTrackEndpointDangling( track ) )
|
2011-09-07 19:41:04 +00:00
|
|
|
{
|
2020-10-26 22:44:57 +00:00
|
|
|
std::shared_ptr<CLEANUP_ITEM> item;
|
|
|
|
|
|
|
|
if( track->Type() == PCB_VIA_T )
|
|
|
|
item = std::make_shared<CLEANUP_ITEM>( CLEANUP_DANGLING_VIA );
|
|
|
|
else
|
|
|
|
item = std::make_shared<CLEANUP_ITEM>( CLEANUP_DANGLING_TRACK );
|
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
item->SetItems( track );
|
2020-03-16 11:05:01 +00:00
|
|
|
m_itemsList->push_back( item );
|
2016-12-07 15:52:48 +00:00
|
|
|
|
2019-03-31 09:37:57 +00:00
|
|
|
if( !m_dryRun )
|
|
|
|
{
|
|
|
|
m_brd->Remove( track );
|
|
|
|
m_commit.Removed( track );
|
|
|
|
|
|
|
|
/* keep iterating, because a track connected to the deleted track
|
|
|
|
* now perhaps is not connected and should be deleted */
|
|
|
|
item_erased = true;
|
|
|
|
modified = true;
|
|
|
|
}
|
2019-06-28 13:14:17 +00:00
|
|
|
// Fix me: In dry run we should disable the track to erase and retry with this disabled track
|
|
|
|
// However the connectivity algo does not handle disabled items.
|
2011-09-07 19:41:04 +00:00
|
|
|
}
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
2019-06-28 13:14:17 +00:00
|
|
|
} while( item_erased ); // A segment was erased: test for some new dangling segments
|
2012-09-07 19:29:44 +00:00
|
|
|
|
|
|
|
return modified;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2016-11-28 14:08:33 +00:00
|
|
|
|
2020-06-17 12:46:50 +00:00
|
|
|
void TRACKS_CLEANER::deleteTracksInPads()
|
2019-06-01 16:49:33 +00:00
|
|
|
{
|
|
|
|
std::set<BOARD_ITEM*> toRemove;
|
|
|
|
|
|
|
|
// Delete tracks that start and end on the same pad
|
2020-06-17 12:46:50 +00:00
|
|
|
std::shared_ptr<CONNECTIVITY_DATA> connectivity = m_brd->GetConnectivity();
|
2019-06-01 16:49:33 +00:00
|
|
|
|
2020-06-17 12:46:50 +00:00
|
|
|
for( TRACK* track : m_brd->Tracks() )
|
2019-06-01 16:49:33 +00:00
|
|
|
{
|
2020-08-05 20:18:47 +00:00
|
|
|
if( track->Type() == PCB_VIA_T )
|
|
|
|
continue;
|
|
|
|
|
2019-06-01 16:49:33 +00:00
|
|
|
// Mark track if connected to pads
|
2020-11-12 22:30:02 +00:00
|
|
|
for( PAD* pad : connectivity->GetConnectedPads( track ) )
|
2019-06-01 16:49:33 +00:00
|
|
|
{
|
|
|
|
if( pad->HitTest( track->GetStart() ) && pad->HitTest( track->GetEnd() ) )
|
|
|
|
{
|
2020-08-06 20:52:24 +00:00
|
|
|
SHAPE_POLY_SET poly;
|
2020-10-13 10:55:24 +00:00
|
|
|
track->TransformShapeWithClearanceToPolygon( poly, track->GetLayer(), 0,
|
|
|
|
ARC_HIGH_DEF, ERROR_INSIDE );
|
2020-08-06 20:52:24 +00:00
|
|
|
|
|
|
|
poly.BooleanSubtract( *pad->GetEffectivePolygon(), SHAPE_POLY_SET::PM_FAST );
|
2019-06-01 16:49:33 +00:00
|
|
|
|
2020-08-06 20:52:24 +00:00
|
|
|
if( poly.IsEmpty() )
|
2020-10-13 10:55:24 +00:00
|
|
|
{
|
2020-10-26 23:49:11 +00:00
|
|
|
std::shared_ptr<CLEANUP_ITEM> item = std::make_shared<CLEANUP_ITEM>( CLEANUP_TRACK_IN_PAD );
|
2020-10-13 10:55:24 +00:00
|
|
|
item->SetItems( track );
|
|
|
|
m_itemsList->push_back( item );
|
2020-08-06 20:52:24 +00:00
|
|
|
|
2020-10-13 10:55:24 +00:00
|
|
|
toRemove.insert( track );
|
2020-08-06 20:52:24 +00:00
|
|
|
}
|
2019-06-01 16:49:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-17 12:46:50 +00:00
|
|
|
if( !m_dryRun )
|
|
|
|
removeItems( toRemove );
|
2019-06-01 16:49:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-26 18:36:25 +00:00
|
|
|
/**
|
|
|
|
* Geometry-based cleanup: duplicate items, null items, colinear items.
|
|
|
|
*/
|
|
|
|
void TRACKS_CLEANER::cleanup( bool aDeleteDuplicateVias, bool aDeleteNullSegments,
|
|
|
|
bool aDeleteDuplicateSegments, bool aMergeSegments )
|
2019-05-31 02:30:28 +00:00
|
|
|
{
|
2020-10-26 18:36:25 +00:00
|
|
|
DRC_RTREE rtree;
|
|
|
|
|
|
|
|
for( TRACK* track : m_brd->Tracks() )
|
|
|
|
{
|
2020-10-26 22:44:57 +00:00
|
|
|
track->ClearFlags( IS_DELETED | SKIP_STRUCT );
|
2020-11-01 14:03:13 +00:00
|
|
|
rtree.Insert( track );
|
2020-10-26 18:36:25 +00:00
|
|
|
}
|
2016-11-28 14:08:33 +00:00
|
|
|
|
2019-05-31 02:30:28 +00:00
|
|
|
std::set<BOARD_ITEM*> toRemove;
|
2017-06-22 14:24:07 +00:00
|
|
|
|
2020-10-26 18:36:25 +00:00
|
|
|
for( TRACK* track : m_brd->Tracks() )
|
2014-05-10 12:48:17 +00:00
|
|
|
{
|
2020-10-26 18:36:25 +00:00
|
|
|
if( track->HasFlag( IS_DELETED ) || track->IsLocked() )
|
2019-05-31 02:30:28 +00:00
|
|
|
continue;
|
2014-05-17 17:36:02 +00:00
|
|
|
|
2020-10-26 18:36:25 +00:00
|
|
|
if( aDeleteDuplicateVias && track->Type() == PCB_VIA_T )
|
2019-05-31 02:30:28 +00:00
|
|
|
{
|
2020-10-26 18:36:25 +00:00
|
|
|
VIA* via = static_cast<VIA*>( track );
|
2019-03-31 09:37:57 +00:00
|
|
|
|
2020-10-26 18:36:25 +00:00
|
|
|
if( via->GetStart() != via->GetEnd() )
|
|
|
|
via->SetEnd( via->GetStart() );
|
|
|
|
|
2020-11-02 16:20:00 +00:00
|
|
|
rtree.QueryColliding( via, via->GetLayer(), via->GetLayer(),
|
|
|
|
// Filter:
|
|
|
|
[&]( BOARD_ITEM* aItem ) -> bool
|
|
|
|
{
|
|
|
|
return aItem->Type() == PCB_VIA_T
|
|
|
|
&& !aItem->HasFlag( SKIP_STRUCT )
|
|
|
|
&& !aItem->HasFlag( IS_DELETED );
|
|
|
|
},
|
|
|
|
// Visitor:
|
2020-10-28 13:52:30 +00:00
|
|
|
[&]( BOARD_ITEM* aItem ) -> bool
|
2020-10-26 18:36:25 +00:00
|
|
|
{
|
|
|
|
VIA* other = static_cast<VIA*>( aItem );
|
|
|
|
|
|
|
|
if( via->GetPosition() == other->GetPosition()
|
|
|
|
&& via->GetViaType() == other->GetViaType()
|
|
|
|
&& via->GetLayerSet() == other->GetLayerSet() )
|
|
|
|
{
|
|
|
|
auto item = std::make_shared<CLEANUP_ITEM>( CLEANUP_REDUNDANT_VIA );
|
|
|
|
item->SetItems( via );
|
|
|
|
m_itemsList->push_back( item );
|
|
|
|
|
|
|
|
via->SetFlags( IS_DELETED );
|
|
|
|
toRemove.insert( via );
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} );
|
|
|
|
|
|
|
|
// To delete through Via on THT pads at same location
|
|
|
|
// Examine the list of connected pads: if a through pad is found, the via is redundant
|
2020-11-12 22:30:02 +00:00
|
|
|
for( PAD* pad : m_brd->GetConnectivity()->GetConnectedPads( via ) )
|
2020-10-26 18:36:25 +00:00
|
|
|
{
|
|
|
|
const LSET all_cu = LSET::AllCuMask();
|
|
|
|
|
|
|
|
if( ( pad->GetLayerSet() & all_cu ) == all_cu )
|
|
|
|
{
|
|
|
|
auto item = std::make_shared<CLEANUP_ITEM>( CLEANUP_REDUNDANT_VIA );
|
|
|
|
item->SetItems( via, pad );
|
|
|
|
m_itemsList->push_back( item );
|
|
|
|
|
|
|
|
via->SetFlags( IS_DELETED );
|
|
|
|
toRemove.insert( via );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-10-26 22:44:57 +00:00
|
|
|
|
|
|
|
via->SetFlags( SKIP_STRUCT );
|
2020-10-26 18:36:25 +00:00
|
|
|
}
|
2019-03-31 09:37:57 +00:00
|
|
|
|
2020-10-26 18:36:25 +00:00
|
|
|
if( aDeleteNullSegments && track->Type() != PCB_VIA_T )
|
|
|
|
{
|
|
|
|
if( track->IsNull() )
|
2019-05-31 02:30:28 +00:00
|
|
|
{
|
2020-10-26 18:36:25 +00:00
|
|
|
auto item = std::make_shared<CLEANUP_ITEM>( CLEANUP_ZERO_LENGTH_TRACK );
|
|
|
|
item->SetItems( track );
|
2020-03-16 11:05:01 +00:00
|
|
|
m_itemsList->push_back( item );
|
2019-05-31 02:30:28 +00:00
|
|
|
|
2020-10-26 18:36:25 +00:00
|
|
|
track->SetFlags( IS_DELETED );
|
|
|
|
toRemove.insert( track );
|
2014-05-17 17:36:02 +00:00
|
|
|
}
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
2020-10-26 18:36:25 +00:00
|
|
|
|
|
|
|
if( aDeleteDuplicateSegments && track->Type() == PCB_TRACE_T )
|
|
|
|
{
|
2020-11-02 16:20:00 +00:00
|
|
|
rtree.QueryColliding( track, track->GetLayer(), track->GetLayer(),
|
|
|
|
// Filter:
|
|
|
|
[&]( BOARD_ITEM* aItem ) -> bool
|
|
|
|
{
|
|
|
|
return aItem->Type() == PCB_TRACE_T
|
|
|
|
&& !aItem->HasFlag( SKIP_STRUCT )
|
|
|
|
&& !aItem->HasFlag( IS_DELETED );
|
|
|
|
},
|
|
|
|
// Visitor:
|
2020-10-28 13:52:30 +00:00
|
|
|
[&]( BOARD_ITEM* aItem ) -> bool
|
2020-10-26 18:36:25 +00:00
|
|
|
{
|
|
|
|
TRACK* other = static_cast<TRACK*>( aItem );
|
|
|
|
|
|
|
|
if( track->IsPointOnEnds( other->GetStart() )
|
|
|
|
&& track->IsPointOnEnds( other->GetEnd() )
|
|
|
|
&& track->GetWidth() == other->GetWidth()
|
|
|
|
&& track->GetLayer() == other->GetLayer() )
|
|
|
|
{
|
|
|
|
auto item = std::make_shared<CLEANUP_ITEM>( CLEANUP_DUPLICATE_TRACK );
|
|
|
|
item->SetItems( track );
|
|
|
|
m_itemsList->push_back( item );
|
|
|
|
|
|
|
|
track->SetFlags( IS_DELETED );
|
|
|
|
toRemove.insert( track );
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} );
|
2020-10-26 22:44:57 +00:00
|
|
|
|
|
|
|
track->SetFlags( SKIP_STRUCT );
|
2020-10-26 18:36:25 +00:00
|
|
|
}
|
2014-05-10 12:48:17 +00:00
|
|
|
}
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2020-06-17 12:46:50 +00:00
|
|
|
if( !m_dryRun )
|
|
|
|
removeItems( toRemove );
|
2017-06-22 14:24:07 +00:00
|
|
|
|
2020-10-26 18:36:25 +00:00
|
|
|
if( aMergeSegments )
|
2014-05-10 12:48:17 +00:00
|
|
|
{
|
2020-10-26 18:36:25 +00:00
|
|
|
bool merged;
|
2019-06-28 18:23:09 +00:00
|
|
|
|
2020-10-26 18:36:25 +00:00
|
|
|
do
|
2020-07-31 06:03:27 +00:00
|
|
|
{
|
2020-10-26 18:36:25 +00:00
|
|
|
merged = false;
|
|
|
|
m_brd->BuildConnectivity();
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2020-10-26 18:36:25 +00:00
|
|
|
// Keep a duplicate deque to all deleting in the primary
|
|
|
|
std::deque<TRACK*> temp_segments( m_brd->Tracks() );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2020-10-26 18:36:25 +00:00
|
|
|
// merge collinear segments:
|
|
|
|
for( TRACK* segment : temp_segments )
|
|
|
|
{
|
|
|
|
if( segment->Type() != PCB_TRACE_T ) // one can merge only track collinear segments, not vias.
|
|
|
|
continue;
|
2019-06-28 18:23:09 +00:00
|
|
|
|
2020-10-26 18:36:25 +00:00
|
|
|
if( segment->HasFlag( IS_DELETED ) ) // already taken in account
|
|
|
|
continue;
|
2019-08-27 12:12:34 +00:00
|
|
|
|
2020-10-26 18:36:25 +00:00
|
|
|
auto connectivity = m_brd->GetConnectivity();
|
2019-06-28 18:23:09 +00:00
|
|
|
|
2020-10-26 18:36:25 +00:00
|
|
|
auto& entry = connectivity->GetConnectivityAlgo()->ItemEntry( segment );
|
2020-07-31 06:03:27 +00:00
|
|
|
|
2020-10-26 18:36:25 +00:00
|
|
|
for( CN_ITEM* citem : entry.GetItems() )
|
|
|
|
{
|
|
|
|
for( CN_ITEM* connected : citem->ConnectedItems() )
|
2020-07-31 06:03:27 +00:00
|
|
|
{
|
2020-10-26 18:36:25 +00:00
|
|
|
if( !connected->Valid() )
|
2020-07-31 06:03:27 +00:00
|
|
|
continue;
|
|
|
|
|
2020-10-26 18:36:25 +00:00
|
|
|
BOARD_CONNECTED_ITEM* candidateItem = connected->Parent();
|
|
|
|
|
|
|
|
if( candidateItem->Type() == PCB_TRACE_T && !candidateItem->HasFlag( IS_DELETED ) )
|
|
|
|
{
|
|
|
|
TRACK* candidateSegment = static_cast<TRACK*>( candidateItem );
|
|
|
|
|
|
|
|
// Do not merge segments having different widths: it is a frequent case
|
|
|
|
// to draw a track between 2 pads:
|
|
|
|
if( candidateSegment->GetWidth() != segment->GetWidth() )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( segment->ApproxCollinear( *candidateSegment ) )
|
|
|
|
merged = mergeCollinearSegments( segment, candidateSegment );
|
|
|
|
}
|
2020-07-31 06:03:27 +00:00
|
|
|
}
|
2019-05-31 02:30:28 +00:00
|
|
|
}
|
2015-05-01 15:01:09 +00:00
|
|
|
}
|
2020-10-26 18:36:25 +00:00
|
|
|
} while( merged );
|
|
|
|
}
|
|
|
|
|
|
|
|
for( TRACK* track : m_brd->Tracks() )
|
2020-10-26 22:44:57 +00:00
|
|
|
track->ClearFlags( IS_DELETED | SKIP_STRUCT );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2016-11-28 14:08:33 +00:00
|
|
|
|
2020-07-31 06:03:27 +00:00
|
|
|
bool TRACKS_CLEANER::mergeCollinearSegments( TRACK* aSeg1, TRACK* aSeg2 )
|
2014-05-10 12:48:17 +00:00
|
|
|
{
|
2019-05-31 02:30:28 +00:00
|
|
|
if( aSeg1->IsLocked() || aSeg2->IsLocked() )
|
2020-07-31 06:03:27 +00:00
|
|
|
return false;
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2017-06-23 11:56:28 +00:00
|
|
|
auto connectivity = m_brd->GetConnectivity();
|
2017-06-22 14:24:07 +00:00
|
|
|
|
2019-06-28 18:23:09 +00:00
|
|
|
// Verify the removed point after merging is not a node.
|
|
|
|
// If it is a node (i.e. if more than one other item is connected, the segments cannot be merged
|
|
|
|
TRACK dummy_seg( *aSeg1 );
|
|
|
|
|
|
|
|
// Calculate the new ends of the segment to merge, and store them to dummy_seg:
|
|
|
|
int min_x = std::min( aSeg1->GetStart().x,
|
|
|
|
std::min( aSeg1->GetEnd().x, std::min( aSeg2->GetStart().x, aSeg2->GetEnd().x ) ) );
|
|
|
|
int min_y = std::min( aSeg1->GetStart().y,
|
|
|
|
std::min( aSeg1->GetEnd().y, std::min( aSeg2->GetStart().y, aSeg2->GetEnd().y ) ) );
|
|
|
|
int max_x = std::max( aSeg1->GetStart().x,
|
|
|
|
std::max( aSeg1->GetEnd().x, std::max( aSeg2->GetStart().x, aSeg2->GetEnd().x ) ) );
|
|
|
|
int max_y = std::max( aSeg1->GetStart().y,
|
|
|
|
std::max( aSeg1->GetEnd().y, std::max( aSeg2->GetStart().y, aSeg2->GetEnd().y ) ) );
|
|
|
|
|
|
|
|
if( ( aSeg1->GetStart().x > aSeg1->GetEnd().x )
|
|
|
|
== ( aSeg1->GetStart().y > aSeg1->GetEnd().y ) )
|
|
|
|
{
|
|
|
|
dummy_seg.SetStart( wxPoint( min_x, min_y ) );
|
|
|
|
dummy_seg.SetEnd( wxPoint( max_x, max_y ) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dummy_seg.SetStart( wxPoint( min_x, max_y ) );
|
|
|
|
dummy_seg.SetEnd( wxPoint( max_x, min_y ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now find the removed end(s) and stop merging if it is a node:
|
|
|
|
if( aSeg1->GetStart() != dummy_seg.GetStart() && aSeg1->GetStart() != dummy_seg.GetEnd() )
|
|
|
|
{
|
|
|
|
if( testTrackEndpointIsNode( aSeg1, true ) )
|
2020-07-31 06:03:27 +00:00
|
|
|
return false;
|
2019-06-28 18:23:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( aSeg1->GetEnd() != dummy_seg.GetStart() && aSeg1->GetEnd() != dummy_seg.GetEnd() )
|
|
|
|
{
|
|
|
|
if( testTrackEndpointIsNode( aSeg1, false ) )
|
2020-07-31 06:03:27 +00:00
|
|
|
return false;
|
2019-06-28 18:23:09 +00:00
|
|
|
}
|
|
|
|
|
2020-10-26 23:49:11 +00:00
|
|
|
std::shared_ptr<CLEANUP_ITEM> item = std::make_shared<CLEANUP_ITEM>( CLEANUP_MERGE_TRACKS );
|
2020-04-24 13:36:10 +00:00
|
|
|
item->SetItems( aSeg1, aSeg2 );
|
2020-03-16 11:05:01 +00:00
|
|
|
m_itemsList->push_back( item );
|
2019-03-31 09:37:57 +00:00
|
|
|
|
2019-06-29 07:12:19 +00:00
|
|
|
aSeg2->SetFlags( IS_DELETED );
|
|
|
|
|
2019-03-31 09:37:57 +00:00
|
|
|
if( !m_dryRun )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2019-03-31 09:37:57 +00:00
|
|
|
m_commit.Modify( aSeg1 );
|
2019-06-28 18:23:09 +00:00
|
|
|
*aSeg1 = dummy_seg;
|
2019-03-31 09:37:57 +00:00
|
|
|
|
|
|
|
connectivity->Update( aSeg1 );
|
2019-06-01 16:49:33 +00:00
|
|
|
|
|
|
|
// Clear the status flags here after update.
|
|
|
|
for( auto pad : connectivity->GetConnectedPads( aSeg1 ) )
|
|
|
|
{
|
|
|
|
aSeg1->SetState( BEGIN_ONPAD, pad->HitTest( aSeg1->GetStart() ) );
|
|
|
|
aSeg1->SetState( END_ONPAD, pad->HitTest( aSeg1->GetEnd() ) );
|
|
|
|
}
|
2019-03-31 09:37:57 +00:00
|
|
|
|
2019-06-29 07:12:19 +00:00
|
|
|
// Merge succesful, seg2 has to go away
|
2019-05-31 02:30:28 +00:00
|
|
|
m_brd->Remove( aSeg2 );
|
|
|
|
m_commit.Removed( aSeg2 );
|
|
|
|
}
|
2020-07-31 06:03:27 +00:00
|
|
|
|
|
|
|
return true;
|
2019-03-31 09:37:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-06-17 12:46:50 +00:00
|
|
|
void TRACKS_CLEANER::removeItems( std::set<BOARD_ITEM*>& aItems )
|
2019-03-31 09:37:57 +00:00
|
|
|
{
|
|
|
|
for( auto item : aItems )
|
|
|
|
{
|
|
|
|
m_brd->Remove( item );
|
|
|
|
m_commit.Removed( item );
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|