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
|
2020-08-16 19:36:58 +00:00
|
|
|
* Copyright (C) 2016-2020 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_via.h"
|
|
|
|
#include "pns_node.h"
|
|
|
|
#include "pns_utils.h"
|
2014-05-14 13:53:54 +00:00
|
|
|
#include "pns_router.h"
|
2013-09-18 17:55:16 +00:00
|
|
|
|
|
|
|
#include <geometry/shape_rect.h>
|
2020-01-07 17:12:59 +00:00
|
|
|
#include <math/box2.h>
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2016-08-29 14:38:11 +00:00
|
|
|
namespace PNS {
|
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
bool VIA::PushoutForce( NODE* aNode, const VECTOR2I& aDirection, VECTOR2I& aForce,
|
2014-05-16 11:37:31 +00:00
|
|
|
bool aSolidsOnly, int aMaxIterations )
|
2013-09-18 17:55:16 +00:00
|
|
|
{
|
2013-09-26 21:53:54 +00:00
|
|
|
int iter = 0;
|
2016-08-29 17:31:13 +00:00
|
|
|
VIA mv( *this );
|
2020-07-02 16:06:09 +00:00
|
|
|
VECTOR2I force, totalForce;
|
2014-05-14 13:53:54 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
while( iter < aMaxIterations )
|
|
|
|
{
|
2020-07-02 16:06:09 +00:00
|
|
|
NODE::OPT_OBSTACLE obs = aNode->CheckColliding( &mv, aSolidsOnly ? ITEM::SOLID_T
|
|
|
|
: ITEM::ANY_T );
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
if( !obs )
|
|
|
|
break;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2014-05-16 11:37:31 +00:00
|
|
|
int clearance = aNode->GetClearance( obs->m_item, &mv );
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2014-05-14 13:53:54 +00:00
|
|
|
if( iter > aMaxIterations / 2 )
|
2013-09-26 21:53:54 +00:00
|
|
|
{
|
2014-05-14 13:53:54 +00:00
|
|
|
VECTOR2I l = aDirection.Resize( m_diameter / 2 );
|
2013-09-26 21:53:54 +00:00
|
|
|
totalForce += l;
|
2014-05-14 13:53:54 +00:00
|
|
|
mv.SetPos( mv.Pos() + l );
|
2013-09-26 21:53:54 +00:00
|
|
|
}
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2020-07-02 16:06:09 +00:00
|
|
|
if( obs->m_item->Shape()->Collide( mv.Shape(), clearance, &force ) )
|
|
|
|
{
|
|
|
|
totalForce += force;
|
|
|
|
mv.SetPos( mv.Pos() + force );
|
2013-09-26 21:53:54 +00:00
|
|
|
}
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
iter++;
|
|
|
|
}
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
if( iter == aMaxIterations )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
aForce = totalForce;
|
2014-05-16 11:37:31 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
return true;
|
2013-09-18 17:55:16 +00:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2020-08-16 19:36:58 +00:00
|
|
|
const SHAPE_LINE_CHAIN VIA::Hull( int aClearance, int aWalkaroundThickness, int aLayer ) const
|
2013-09-18 17:55:16 +00:00
|
|
|
{
|
2014-05-16 11:37:31 +00:00
|
|
|
int cl = ( aClearance + aWalkaroundThickness / 2 );
|
2020-08-16 19:36:58 +00:00
|
|
|
int width = m_diameter;
|
|
|
|
|
2020-08-25 16:39:56 +00:00
|
|
|
if( !ROUTER::GetInstance()->GetInterface()->IsOnLayer( this, aLayer ) )
|
2020-08-16 19:36:58 +00:00
|
|
|
width = m_drill;
|
2014-05-14 13:53:54 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
return OctagonalHull( m_pos -
|
2020-08-16 19:36:58 +00:00
|
|
|
VECTOR2I( width / 2, width / 2 ), VECTOR2I( width, width ),
|
|
|
|
cl + 1, ( 2 * cl + width ) * 0.26 );
|
2014-05-14 13:53:54 +00:00
|
|
|
}
|
|
|
|
|
2014-05-16 11:37:31 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
VIA* VIA::Clone() const
|
2014-05-14 13:53:54 +00:00
|
|
|
{
|
2016-08-29 17:31:13 +00:00
|
|
|
VIA* v = new VIA();
|
2014-05-14 13:53:54 +00:00
|
|
|
|
|
|
|
v->SetNet( Net() );
|
|
|
|
v->SetLayers( Layers() );
|
|
|
|
v->m_pos = m_pos;
|
|
|
|
v->m_diameter = m_diameter;
|
|
|
|
v->m_drill = m_drill;
|
|
|
|
v->m_shape = SHAPE_CIRCLE( m_pos, m_diameter / 2 );
|
|
|
|
v->m_rank = m_rank;
|
|
|
|
v->m_marker = m_marker;
|
2014-07-27 19:01:06 +00:00
|
|
|
v->m_viaType = m_viaType;
|
2019-07-24 15:19:03 +00:00
|
|
|
v->m_parent = m_parent;
|
2014-05-14 13:53:54 +00:00
|
|
|
|
|
|
|
return v;
|
2013-09-18 17:55:16 +00:00
|
|
|
}
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
OPT_BOX2I VIA::ChangedArea( const VIA* aOther ) const
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
|
|
|
if ( aOther->Pos() != Pos() )
|
|
|
|
{
|
2015-02-18 16:53:46 +00:00
|
|
|
BOX2I tmp = Shape()->BBox();
|
2015-07-07 16:36:38 +00:00
|
|
|
tmp.Merge( aOther->Shape()->BBox() );
|
2015-02-18 00:29:54 +00:00
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
return OPT_BOX2I();
|
|
|
|
}
|
2016-08-29 14:38:11 +00:00
|
|
|
|
2019-08-07 21:48:09 +00:00
|
|
|
const VIA_HANDLE VIA::MakeHandle() const
|
|
|
|
{
|
|
|
|
VIA_HANDLE h;
|
|
|
|
h.pos = Pos();
|
|
|
|
h.layers = Layers();
|
|
|
|
h.net = Net();
|
|
|
|
h.valid = true;
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
2016-08-29 14:38:11 +00:00
|
|
|
}
|