2017-02-28 03:04:44 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 CERN
|
2022-08-23 10:57:07 +00:00
|
|
|
* Copyright (C) 2017-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
2017-02-28 03:04:44 +00:00
|
|
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "pcb_selection_conditions.h"
|
2020-12-16 13:31:32 +00:00
|
|
|
#include "pcb_selection_tool.h"
|
2018-02-02 20:57:12 +00:00
|
|
|
#include <board_connected_item.h>
|
2017-02-28 03:04:44 +00:00
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
using namespace std::placeholders;
|
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2022-08-23 10:57:07 +00:00
|
|
|
SELECTION_CONDITION PCB_SELECTION_CONDITIONS::SameNet( bool aAllowUnconnected )
|
2017-02-28 03:04:44 +00:00
|
|
|
{
|
|
|
|
return std::bind( &PCB_SELECTION_CONDITIONS::sameNetFunc, _1, aAllowUnconnected );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-23 10:57:07 +00:00
|
|
|
SELECTION_CONDITION PCB_SELECTION_CONDITIONS::SameLayer()
|
2017-02-28 03:04:44 +00:00
|
|
|
{
|
|
|
|
return std::bind( &PCB_SELECTION_CONDITIONS::sameLayerFunc, _1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-12-20 15:16:25 +00:00
|
|
|
bool PCB_SELECTION_CONDITIONS::HasLockedItems( const SELECTION& aSelection )
|
|
|
|
{
|
|
|
|
for( EDA_ITEM* item : aSelection.Items() )
|
|
|
|
{
|
|
|
|
BOARD_ITEM* boardItem = dynamic_cast<BOARD_ITEM*>( item );
|
|
|
|
|
|
|
|
if( boardItem && boardItem->IsLocked() )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PCB_SELECTION_CONDITIONS::HasUnlockedItems( const SELECTION& aSelection )
|
|
|
|
{
|
|
|
|
for( EDA_ITEM* item : aSelection.Items() )
|
|
|
|
{
|
|
|
|
BOARD_ITEM* boardItem = dynamic_cast<BOARD_ITEM*>( item );
|
|
|
|
|
|
|
|
if( boardItem && !boardItem->IsLocked() )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-28 03:04:44 +00:00
|
|
|
bool PCB_SELECTION_CONDITIONS::sameNetFunc( const SELECTION& aSelection, bool aAllowUnconnected )
|
|
|
|
{
|
|
|
|
if( aSelection.Empty() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
int netcode = -1; // -1 stands for 'net code is not yet determined'
|
|
|
|
|
2022-08-23 10:57:07 +00:00
|
|
|
for( const EDA_ITEM* aitem : aSelection )
|
2017-02-28 03:04:44 +00:00
|
|
|
{
|
|
|
|
int current_netcode = -1;
|
|
|
|
|
2022-08-23 10:57:07 +00:00
|
|
|
const BOARD_CONNECTED_ITEM* item = dynamic_cast<const BOARD_CONNECTED_ITEM*>( aitem );
|
2017-02-28 03:04:44 +00:00
|
|
|
|
|
|
|
if( item )
|
|
|
|
{
|
|
|
|
current_netcode = item->GetNetCode();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( !aAllowUnconnected )
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
// if it is not a BOARD_CONNECTED_ITEM, treat it as if there was no net assigned
|
|
|
|
current_netcode = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert( current_netcode >= 0 );
|
|
|
|
|
|
|
|
if( netcode < 0 )
|
|
|
|
{
|
|
|
|
netcode = current_netcode;
|
|
|
|
|
|
|
|
if( netcode == NETINFO_LIST::UNCONNECTED && !aAllowUnconnected )
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if( netcode != current_netcode )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PCB_SELECTION_CONDITIONS::sameLayerFunc( const SELECTION& aSelection )
|
|
|
|
{
|
|
|
|
if( aSelection.Empty() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
LSET layerSet;
|
|
|
|
layerSet.set();
|
|
|
|
|
2022-08-23 10:57:07 +00:00
|
|
|
for( const EDA_ITEM* i : aSelection )
|
2017-02-28 03:04:44 +00:00
|
|
|
{
|
2022-08-23 10:57:07 +00:00
|
|
|
const BOARD_ITEM* item = static_cast<const BOARD_ITEM*>( i );
|
2017-02-28 03:04:44 +00:00
|
|
|
layerSet &= item->GetLayerSet();
|
|
|
|
|
|
|
|
if( !layerSet.any() ) // there are no common layers left
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|