2013-09-18 17:55:16 +00:00
|
|
|
/*
|
|
|
|
* KiRouter - a push-and-(sometimes-)shove PCB router
|
|
|
|
*
|
2014-05-14 13:53:54 +00:00
|
|
|
* Copyright (C) 2013-2014 CERN
|
2022-08-29 20:21:46 +00:00
|
|
|
* Copyright (C) 2016-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2013-09-18 17:55:16 +00:00
|
|
|
* Author: Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
2013-09-26 21:53:54 +00:00
|
|
|
*
|
2013-09-18 17:55:16 +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 3 of the License, or (at your
|
|
|
|
* option) any later version.
|
2013-09-26 21:53:54 +00:00
|
|
|
*
|
2013-09-18 17:55:16 +00:00
|
|
|
* 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.
|
2013-09-26 21:53:54 +00:00
|
|
|
*
|
2013-09-18 17:55:16 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
2014-05-14 13:53:54 +00:00
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
2013-09-18 17:55:16 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "pns_itemset.h"
|
2015-08-03 19:11:51 +00:00
|
|
|
#include "pns_line.h"
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2016-08-29 14:38:11 +00:00
|
|
|
namespace PNS {
|
2015-08-03 19:11:51 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
ITEM_SET::~ITEM_SET()
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
2015-08-03 19:11:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
void ITEM_SET::Add( const LINE& aLine )
|
2015-08-03 19:11:51 +00:00
|
|
|
{
|
2016-08-29 17:31:13 +00:00
|
|
|
LINE* copy = aLine.Clone();
|
2022-08-29 20:21:46 +00:00
|
|
|
copy->SetOwner( this );
|
|
|
|
m_items.emplace_back( copy );
|
2015-08-03 19:11:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
void ITEM_SET::Prepend( const LINE& aLine )
|
2015-08-03 19:11:51 +00:00
|
|
|
{
|
2016-08-29 17:31:13 +00:00
|
|
|
LINE* copy = aLine.Clone();
|
2022-08-29 20:21:46 +00:00
|
|
|
copy->SetOwner( this );
|
|
|
|
m_items.emplace( m_items.begin(), copy );
|
2015-02-18 00:29:54 +00:00
|
|
|
}
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
ITEM_SET& ITEM_SET::FilterLayers( int aStart, int aEnd, bool aInvert )
|
2013-09-18 17:55:16 +00:00
|
|
|
{
|
2022-08-29 20:21:46 +00:00
|
|
|
std::vector<ITEM*> newItems;
|
|
|
|
LAYER_RANGE l;
|
2013-09-26 21:53:54 +00:00
|
|
|
|
|
|
|
if( aEnd < 0 )
|
2016-08-29 17:31:13 +00:00
|
|
|
l = LAYER_RANGE( aStart );
|
2013-09-26 21:53:54 +00:00
|
|
|
else
|
2016-08-29 17:31:13 +00:00
|
|
|
l = LAYER_RANGE( aStart, aEnd );
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2022-08-29 20:21:46 +00:00
|
|
|
for( ITEM* item : m_items )
|
2015-08-12 19:12:13 +00:00
|
|
|
{
|
2022-08-29 20:21:46 +00:00
|
|
|
if( item->Layers().Overlaps( l ) ^ aInvert )
|
|
|
|
newItems.push_back( item );
|
2015-08-12 19:12:13 +00:00
|
|
|
}
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2023-12-18 18:36:02 +00:00
|
|
|
m_items = std::move( newItems );
|
2014-05-16 11:37:31 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
return *this;
|
2013-09-18 17:55:16 +00:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
ITEM_SET& ITEM_SET::FilterKinds( int aKindMask, bool aInvert )
|
2013-09-18 17:55:16 +00:00
|
|
|
{
|
2022-08-29 20:21:46 +00:00
|
|
|
std::vector<ITEM*> newItems;
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2022-08-29 20:21:46 +00:00
|
|
|
for( ITEM *item : m_items )
|
2014-05-16 11:37:31 +00:00
|
|
|
{
|
2022-08-29 20:21:46 +00:00
|
|
|
if( item->OfKind( aKindMask ) ^ aInvert )
|
|
|
|
newItems.push_back( item );
|
2014-05-16 11:37:31 +00:00
|
|
|
}
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2023-12-18 18:36:02 +00:00
|
|
|
m_items = std::move( newItems );
|
2014-05-16 11:37:31 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
return *this;
|
2013-09-18 17:55:16 +00:00
|
|
|
}
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
ITEM_SET& ITEM_SET::FilterMarker( int aMarker, bool aInvert )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
2022-08-29 20:21:46 +00:00
|
|
|
std::vector<ITEM*> newItems;
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2022-08-29 20:21:46 +00:00
|
|
|
for( ITEM* item : m_items )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
2022-08-29 20:21:46 +00:00
|
|
|
if( item->Marker() & aMarker )
|
|
|
|
newItems.push_back( item );
|
2015-02-18 00:29:54 +00:00
|
|
|
}
|
|
|
|
|
2023-12-18 18:36:02 +00:00
|
|
|
m_items = std::move( newItems );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2023-08-22 12:06:33 +00:00
|
|
|
ITEM_SET& ITEM_SET::FilterNet( NET_HANDLE aNet, bool aInvert )
|
2014-11-14 18:15:58 +00:00
|
|
|
{
|
2022-08-29 20:21:46 +00:00
|
|
|
std::vector<ITEM*> newItems;
|
2014-11-14 18:15:58 +00:00
|
|
|
|
2022-08-29 20:21:46 +00:00
|
|
|
for( ITEM *item : m_items )
|
2014-11-14 18:15:58 +00:00
|
|
|
{
|
2022-08-29 20:21:46 +00:00
|
|
|
if( ( item->Net() == aNet ) ^ aInvert )
|
|
|
|
newItems.push_back( item );
|
2014-11-14 18:15:58 +00:00
|
|
|
}
|
|
|
|
|
2023-12-18 18:36:02 +00:00
|
|
|
m_items = std::move( newItems );
|
2014-11-14 18:15:58 +00:00
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
ITEM_SET& ITEM_SET::ExcludeItem( const ITEM* aItem )
|
2013-09-18 17:55:16 +00:00
|
|
|
{
|
2022-08-29 20:21:46 +00:00
|
|
|
std::vector<ITEM*> newItems;
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2022-08-29 20:21:46 +00:00
|
|
|
for( ITEM* item : m_items )
|
2014-05-16 11:37:31 +00:00
|
|
|
{
|
2022-08-29 20:21:46 +00:00
|
|
|
if( item != aItem )
|
|
|
|
newItems.push_back( item );
|
2014-05-16 11:37:31 +00:00
|
|
|
}
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2023-12-18 18:36:02 +00:00
|
|
|
m_items = std::move( newItems );
|
2014-05-16 11:37:31 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
return *this;
|
2013-09-18 17:55:16 +00:00
|
|
|
}
|
2016-08-29 14:38:11 +00:00
|
|
|
|
|
|
|
}
|