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
|
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_utils.h"
|
|
|
|
#include "pns_line.h"
|
2015-02-18 00:29:54 +00:00
|
|
|
#include "pns_via.h"
|
2013-09-18 17:55:16 +00:00
|
|
|
#include "pns_router.h"
|
|
|
|
|
2014-05-14 13:53:54 +00:00
|
|
|
#include <geometry/shape_segment.h>
|
|
|
|
|
2014-05-16 11:37:31 +00:00
|
|
|
const SHAPE_LINE_CHAIN OctagonalHull( const VECTOR2I& aP0, const VECTOR2I& aSize,
|
|
|
|
int aClearance, int aChamfer )
|
2013-09-18 17:55:16 +00:00
|
|
|
{
|
2013-09-26 21:53:54 +00:00
|
|
|
SHAPE_LINE_CHAIN s;
|
|
|
|
|
|
|
|
s.SetClosed( true );
|
|
|
|
|
|
|
|
s.Append( aP0.x - aClearance, aP0.y - aClearance + aChamfer );
|
|
|
|
s.Append( aP0.x - aClearance + aChamfer, aP0.y - aClearance );
|
|
|
|
s.Append( aP0.x + aSize.x + aClearance - aChamfer, aP0.y - aClearance );
|
|
|
|
s.Append( aP0.x + aSize.x + aClearance, aP0.y - aClearance + aChamfer );
|
|
|
|
s.Append( aP0.x + aSize.x + aClearance, aP0.y + aSize.y + aClearance - aChamfer );
|
|
|
|
s.Append( aP0.x + aSize.x + aClearance - aChamfer, aP0.y + aSize.y + aClearance );
|
|
|
|
s.Append( aP0.x - aClearance + aChamfer, aP0.y + aSize.y + aClearance );
|
|
|
|
s.Append( aP0.x - aClearance, aP0.y + aSize.y + aClearance - aChamfer );
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
return s;
|
2013-09-18 17:55:16 +00:00
|
|
|
}
|
2014-05-14 13:53:54 +00:00
|
|
|
|
2014-05-16 11:37:31 +00:00
|
|
|
|
|
|
|
const SHAPE_LINE_CHAIN SegmentHull ( const SHAPE_SEGMENT& aSeg, int aClearance,
|
|
|
|
int aWalkaroundThickness )
|
2014-05-14 13:53:54 +00:00
|
|
|
{
|
|
|
|
int d = aSeg.GetWidth() / 2 + aClearance + aWalkaroundThickness / 2 + HULL_MARGIN;
|
|
|
|
int x = (int)( 2.0 / ( 1.0 + M_SQRT2 ) * d );
|
|
|
|
|
|
|
|
const VECTOR2I a = aSeg.GetSeg().A;
|
|
|
|
const VECTOR2I b = aSeg.GetSeg().B;
|
|
|
|
|
|
|
|
VECTOR2I dir = b - a;
|
|
|
|
VECTOR2I p0 = dir.Perpendicular().Resize( d );
|
|
|
|
VECTOR2I ds = dir.Perpendicular().Resize( x / 2 );
|
|
|
|
VECTOR2I pd = dir.Resize( x / 2 );
|
|
|
|
VECTOR2I dp = dir.Resize( d );
|
|
|
|
|
|
|
|
SHAPE_LINE_CHAIN s;
|
|
|
|
|
|
|
|
s.SetClosed( true );
|
|
|
|
|
|
|
|
s.Append( b + p0 + pd );
|
|
|
|
s.Append( b + dp + ds );
|
|
|
|
s.Append( b + dp - ds );
|
|
|
|
s.Append( b - p0 + pd );
|
|
|
|
s.Append( a - p0 - pd );
|
|
|
|
s.Append( a - dp - ds );
|
|
|
|
s.Append( a - dp + ds );
|
|
|
|
s.Append( a + p0 - pd );
|
|
|
|
|
|
|
|
// make sure the hull outline is always clockwise
|
|
|
|
if( s.CSegment( 0 ).Side( a ) < 0 )
|
|
|
|
return s.Reverse();
|
|
|
|
else
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2014-05-16 11:37:31 +00:00
|
|
|
|
2014-05-14 13:53:54 +00:00
|
|
|
SHAPE_RECT ApproximateSegmentAsRect( const SHAPE_SEGMENT& aSeg )
|
|
|
|
{
|
|
|
|
SHAPE_RECT r;
|
|
|
|
|
2014-05-16 11:37:31 +00:00
|
|
|
VECTOR2I delta( aSeg.GetWidth() / 2, aSeg.GetWidth() / 2 );
|
|
|
|
VECTOR2I p0( aSeg.GetSeg().A - delta );
|
|
|
|
VECTOR2I p1( aSeg.GetSeg().B + delta );
|
2014-05-14 13:53:54 +00:00
|
|
|
|
2014-05-16 11:37:31 +00:00
|
|
|
return SHAPE_RECT( std::min( p0.x, p1.x ), std::min( p0.y, p1.y ),
|
|
|
|
std::abs( p1.x - p0.x ), std::abs( p1.y - p0.y ) );
|
|
|
|
}
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
|
|
|
|
void DrawDebugPoint( VECTOR2I aP, int aColor )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
|
|
|
SHAPE_LINE_CHAIN l;
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
l.Append( aP - VECTOR2I( -50000, -50000 ) );
|
|
|
|
l.Append( aP + VECTOR2I( -50000, -50000 ) );
|
|
|
|
|
|
|
|
PNS_ROUTER::GetInstance()->DisplayDebugLine ( l, aColor, 10000 );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
|
|
|
l.Clear();
|
2015-02-18 16:53:46 +00:00
|
|
|
l.Append( aP - VECTOR2I( 50000, -50000 ) );
|
|
|
|
l.Append( aP + VECTOR2I( 50000, -50000 ) );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
PNS_ROUTER::GetInstance()->DisplayDebugLine( l, aColor, 10000 );
|
2015-02-18 00:29:54 +00:00
|
|
|
}
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
|
|
|
|
void DrawDebugBox( BOX2I aB, int aColor )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
|
|
|
SHAPE_LINE_CHAIN l;
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
VECTOR2I o = aB.GetOrigin();
|
|
|
|
VECTOR2I s = aB.GetSize();
|
|
|
|
|
|
|
|
l.Append( o );
|
|
|
|
l.Append( o.x + s.x, o.y );
|
|
|
|
l.Append( o.x + s.x, o.y + s.y );
|
|
|
|
l.Append( o.x, o.y + s.y );
|
|
|
|
l.Append( o );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
PNS_ROUTER::GetInstance()->DisplayDebugLine( l, aColor, 10000 );
|
2015-02-18 00:29:54 +00:00
|
|
|
}
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
|
|
|
|
void DrawDebugSeg( SEG aS, int aColor )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
|
|
|
SHAPE_LINE_CHAIN l;
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
l.Append( aS.A );
|
|
|
|
l.Append( aS.B );
|
|
|
|
|
|
|
|
PNS_ROUTER::GetInstance()->DisplayDebugLine( l, aColor, 10000 );
|
2015-02-18 00:29:54 +00:00
|
|
|
}
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
|
|
|
|
void DrawDebugDirs( VECTOR2D aP, int aMask, int aColor )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
2015-02-18 16:53:46 +00:00
|
|
|
BOX2I b( aP - VECTOR2I( 10000, 10000 ), VECTOR2I( 20000, 20000 ) );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
DrawDebugBox( b, aColor );
|
|
|
|
for( int i = 0; i < 8; i++ )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
2015-02-18 16:53:46 +00:00
|
|
|
if( ( 1 << i ) & aMask )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
2015-02-18 16:53:46 +00:00
|
|
|
VECTOR2I v = DIRECTION_45( ( DIRECTION_45::Directions ) i ).ToVector() * 100000;
|
|
|
|
DrawDebugSeg( SEG( aP, aP + v ), aColor );
|
2015-02-18 00:29:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
OPT_BOX2I ChangedArea( const PNS_ITEM* aItemA, const PNS_ITEM* aItemB )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
2015-02-18 16:53:46 +00:00
|
|
|
if( aItemA->OfKind( PNS_ITEM::VIA ) && aItemB->OfKind( PNS_ITEM::VIA ) )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
2015-02-18 16:53:46 +00:00
|
|
|
const PNS_VIA* va = static_cast<const PNS_VIA*>( aItemA );
|
|
|
|
const PNS_VIA* vb = static_cast<const PNS_VIA*>( aItemB );
|
|
|
|
|
|
|
|
return va->ChangedArea( vb );
|
|
|
|
}
|
|
|
|
else if( aItemA->OfKind( PNS_ITEM::LINE ) && aItemB->OfKind( PNS_ITEM::LINE ) )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
2015-02-18 16:53:46 +00:00
|
|
|
const PNS_LINE* la = static_cast<const PNS_LINE*> ( aItemA );
|
|
|
|
const PNS_LINE* lb = static_cast<const PNS_LINE*> ( aItemB );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
return la->ChangedArea( lb );
|
2015-02-18 00:29:54 +00:00
|
|
|
}
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2015-02-18 00:29:54 +00:00
|
|
|
return OPT_BOX2I();
|
2015-02-18 16:53:46 +00:00
|
|
|
}
|