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-06-27 21:07:25 +00:00
|
|
|
* Copyright (C) 2016-2022 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
|
|
|
*/
|
|
|
|
|
2021-11-26 23:01:53 +00:00
|
|
|
#include <zone.h>
|
2019-07-24 15:19:03 +00:00
|
|
|
#include "pns_node.h"
|
2013-09-18 17:55:16 +00:00
|
|
|
#include "pns_item.h"
|
|
|
|
#include "pns_line.h"
|
2020-08-16 19:36:58 +00:00
|
|
|
#include "pns_router.h"
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2019-07-21 22:35:41 +00:00
|
|
|
typedef VECTOR2I::extended_type ecoord;
|
|
|
|
|
2016-08-29 14:38:11 +00:00
|
|
|
namespace PNS {
|
|
|
|
|
2022-06-03 20:59:58 +00:00
|
|
|
bool ITEM::collideSimple( const ITEM* aOther, const NODE* aNode, bool aDifferentNetsOnly, int aOverrideClearance ) const
|
2019-07-21 22:35:41 +00:00
|
|
|
{
|
2020-10-05 19:54:12 +00:00
|
|
|
const ROUTER_IFACE* iface = ROUTER::GetInstance()->GetInterface();
|
|
|
|
const SHAPE* shapeA = Shape();
|
2021-01-01 00:29:05 +00:00
|
|
|
const SHAPE* holeA = Hole();
|
|
|
|
int lineWidthA = 0;
|
2020-10-05 19:54:12 +00:00
|
|
|
const SHAPE* shapeB = aOther->Shape();
|
2021-01-01 00:29:05 +00:00
|
|
|
const SHAPE* holeB = aOther->Hole();
|
|
|
|
int lineWidthB = 0;
|
|
|
|
|
|
|
|
// Sadly collision routines ignore SHAPE_POLY_LINE widths so we have to pass them in as part
|
|
|
|
// of the clearance value.
|
|
|
|
if( m_kind == LINE_T )
|
|
|
|
lineWidthA = static_cast<const LINE*>( this )->Width() / 2;
|
|
|
|
|
|
|
|
if( aOther->m_kind == LINE_T )
|
|
|
|
lineWidthB = static_cast<const LINE*>( aOther )->Width() / 2;
|
2020-08-16 19:36:58 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
// same nets? no collision!
|
2020-12-04 16:57:19 +00:00
|
|
|
if( aDifferentNetsOnly && m_net == aOther->m_net && m_net >= 0 && aOther->m_net >= 0 )
|
2013-09-26 21:53:54 +00:00
|
|
|
return false;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
// check if we are not on completely different layers first
|
|
|
|
if( !m_layers.Overlaps( aOther->m_layers ) )
|
|
|
|
return false;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2021-11-26 23:01:53 +00:00
|
|
|
auto checkKeepout =
|
|
|
|
[]( const ZONE* aKeepout, const BOARD_ITEM* aOther )
|
|
|
|
{
|
|
|
|
constexpr KICAD_T TRACK_TYPES[] = { PCB_ARC_T, PCB_TRACE_T, EOT };
|
|
|
|
|
|
|
|
if( aKeepout->GetDoNotAllowTracks() && aOther->IsType( TRACK_TYPES ) )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if( aKeepout->GetDoNotAllowVias() && aOther->Type() == PCB_VIA_T )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if( aKeepout->GetDoNotAllowPads() && aOther->Type() == PCB_PAD_T )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Incomplete test, but better than nothing:
|
|
|
|
if( aKeepout->GetDoNotAllowFootprints() && aOther->Type() == PCB_PAD_T )
|
|
|
|
{
|
|
|
|
return !aKeepout->GetParentFootprint()
|
|
|
|
|| aKeepout->GetParentFootprint() != aOther->GetParentFootprint();
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
const ZONE* zoneA = dynamic_cast<ZONE*>( Parent() );
|
|
|
|
const ZONE* zoneB = dynamic_cast<ZONE*>( aOther->Parent() );
|
|
|
|
|
|
|
|
if( zoneA && aOther->Parent() && !checkKeepout( zoneA, aOther->Parent() ) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if( zoneB && Parent() && !checkKeepout( zoneB, Parent() ) )
|
|
|
|
return false;
|
|
|
|
|
2022-06-07 23:48:38 +00:00
|
|
|
bool thisNotFlashed = !iface->IsFlashedOnLayer( this, aOther->Layer() );
|
|
|
|
bool otherNotFlashed = !iface->IsFlashedOnLayer( aOther, Layer() );
|
|
|
|
|
|
|
|
if( ( aNode->GetCollisionQueryScope() == NODE::CQS_ALL_RULES
|
|
|
|
|| ( thisNotFlashed || otherNotFlashed ) )
|
|
|
|
&& ( holeA || holeB ) )
|
2020-08-16 19:36:58 +00:00
|
|
|
{
|
2021-01-01 00:29:05 +00:00
|
|
|
int holeClearance = aNode->GetHoleClearance( this, aOther );
|
|
|
|
|
2022-07-09 17:24:19 +00:00
|
|
|
if( holeClearance >= 0 && holeA && holeA->Collide( shapeB, holeClearance + lineWidthB ) )
|
2020-10-05 19:54:12 +00:00
|
|
|
{
|
2021-01-01 17:17:55 +00:00
|
|
|
Mark( Marker() | MK_HOLE );
|
2021-01-01 00:29:05 +00:00
|
|
|
return true;
|
2020-10-05 19:54:12 +00:00
|
|
|
}
|
2020-08-16 19:36:58 +00:00
|
|
|
|
2022-07-09 17:24:19 +00:00
|
|
|
if( holeB && holeClearance >= 0 && holeB->Collide( shapeA, holeClearance + lineWidthA ) )
|
2020-10-05 19:54:12 +00:00
|
|
|
{
|
2021-01-01 17:17:55 +00:00
|
|
|
aOther->Mark( aOther->Marker() | MK_HOLE );
|
2021-01-01 00:29:05 +00:00
|
|
|
return true;
|
2020-10-05 19:54:12 +00:00
|
|
|
}
|
2021-01-01 00:29:05 +00:00
|
|
|
|
|
|
|
if( holeA && holeB )
|
2020-10-05 19:54:12 +00:00
|
|
|
{
|
2021-01-01 00:29:05 +00:00
|
|
|
int holeToHoleClearance = aNode->GetHoleToHoleClearance( this, aOther );
|
|
|
|
|
2022-07-09 17:24:19 +00:00
|
|
|
if( holeToHoleClearance >= 0 && holeA->Collide( holeB, holeToHoleClearance ) )
|
2021-01-01 00:29:05 +00:00
|
|
|
{
|
2021-01-01 17:17:55 +00:00
|
|
|
Mark( Marker() | MK_HOLE );
|
|
|
|
aOther->Mark( aOther->Marker() | MK_HOLE );
|
2021-01-01 00:29:05 +00:00
|
|
|
return true;
|
|
|
|
}
|
2020-10-05 19:54:12 +00:00
|
|
|
}
|
2020-08-16 19:36:58 +00:00
|
|
|
}
|
|
|
|
|
2022-06-07 23:48:38 +00:00
|
|
|
if( !aOther->Layers().IsMultilayer() && thisNotFlashed )
|
2021-01-01 00:29:05 +00:00
|
|
|
return false;
|
|
|
|
|
2022-06-07 23:48:38 +00:00
|
|
|
if( !Layers().IsMultilayer() && otherNotFlashed )
|
2021-01-01 00:29:05 +00:00
|
|
|
return false;
|
|
|
|
|
2022-06-03 20:59:58 +00:00
|
|
|
int clearance = aOverrideClearance >= 0 ? aOverrideClearance : aNode->GetClearance( this, aOther );
|
2022-06-27 21:07:25 +00:00
|
|
|
|
2022-07-09 17:24:19 +00:00
|
|
|
if( clearance >= 0 )
|
2022-06-27 21:07:25 +00:00
|
|
|
{
|
2022-07-09 17:24:19 +00:00
|
|
|
if( m_parent && m_parent->GetLayer() == Edge_Cuts )
|
|
|
|
{
|
|
|
|
int actual;
|
|
|
|
VECTOR2I pos;
|
2022-06-27 21:07:25 +00:00
|
|
|
|
2022-07-09 17:24:19 +00:00
|
|
|
if( shapeA->Collide( shapeB, clearance + lineWidthA, &actual, &pos )
|
|
|
|
&& !aNode->QueryEdgeExclusions( pos ) )
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( shapeA->Collide( shapeB, clearance + lineWidthA + lineWidthB ) )
|
|
|
|
return true;
|
|
|
|
}
|
2022-06-27 21:07:25 +00:00
|
|
|
}
|
2022-07-09 17:24:19 +00:00
|
|
|
|
|
|
|
return false;
|
2013-09-18 17:55:16 +00:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2022-06-03 20:59:58 +00:00
|
|
|
bool ITEM::Collide( const ITEM* aOther, const NODE* aNode, bool aDifferentNetsOnly, int aOverrideClearance ) const
|
2013-09-18 17:55:16 +00:00
|
|
|
{
|
2022-06-03 20:59:58 +00:00
|
|
|
if( collideSimple( aOther, aNode, aDifferentNetsOnly, aOverrideClearance ) )
|
2013-09-26 21:53:54 +00:00
|
|
|
return true;
|
|
|
|
|
2021-01-01 00:29:05 +00:00
|
|
|
// Special cases for "head" lines with vias attached at the end. Note that this does not
|
2021-06-09 19:32:58 +00:00
|
|
|
// support head-line-via to head-line-via collisions, but you can't route two independent
|
2021-01-01 00:29:05 +00:00
|
|
|
// tracks at once so it shouldn't come up.
|
|
|
|
|
|
|
|
if( m_kind == LINE_T )
|
|
|
|
{
|
|
|
|
const LINE* line = static_cast<const LINE*>( this );
|
|
|
|
|
2022-06-03 20:59:58 +00:00
|
|
|
if( line->EndsWithVia() && line->Via().collideSimple( aOther, aNode, aDifferentNetsOnly, aOverrideClearance ) )
|
2021-01-01 00:29:05 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-08-29 16:11:42 +00:00
|
|
|
if( aOther->m_kind == LINE_T )
|
2013-09-26 21:53:54 +00:00
|
|
|
{
|
2016-08-29 17:31:13 +00:00
|
|
|
const LINE* line = static_cast<const LINE*>( aOther );
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2022-06-03 20:59:58 +00:00
|
|
|
if( line->EndsWithVia() && line->Via().collideSimple( this, aNode, aDifferentNetsOnly, aOverrideClearance ) )
|
2021-01-01 00:29:05 +00:00
|
|
|
return true;
|
2013-09-26 21:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2013-09-18 17:55:16 +00:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2019-07-21 22:35:41 +00:00
|
|
|
std::string ITEM::KindStr() const
|
2013-09-18 17:55:16 +00:00
|
|
|
{
|
2013-09-26 21:53:54 +00:00
|
|
|
switch( m_kind )
|
|
|
|
{
|
2021-01-01 00:29:05 +00:00
|
|
|
case ARC_T: return "arc";
|
|
|
|
case LINE_T: return "line";
|
|
|
|
case SEGMENT_T: return "segment";
|
|
|
|
case VIA_T: return "via";
|
|
|
|
case JOINT_T: return "joint";
|
|
|
|
case SOLID_T: return "solid";
|
|
|
|
case DIFF_PAIR_T: return "diff-pair";
|
|
|
|
default: return "unknown";
|
2013-09-26 21:53:54 +00:00
|
|
|
}
|
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::~ITEM()
|
2013-09-18 17:55:16 +00:00
|
|
|
{
|
|
|
|
}
|
2016-08-29 14:38:11 +00:00
|
|
|
|
|
|
|
}
|