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
|
2016-08-29 14:38:11 +00:00
|
|
|
* Copyright (C) 2016 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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PNS_VIA_H
|
|
|
|
#define __PNS_VIA_H
|
|
|
|
|
|
|
|
#include <geometry/shape_line_chain.h>
|
|
|
|
#include <geometry/shape_circle.h>
|
|
|
|
|
2014-07-27 19:01:06 +00:00
|
|
|
#include "../class_track.h"
|
|
|
|
|
2013-09-18 17:55:16 +00:00
|
|
|
#include "pns_item.h"
|
|
|
|
|
2016-08-29 14:38:11 +00:00
|
|
|
namespace PNS {
|
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
class NODE;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
class VIA : public ITEM
|
2013-09-18 17:55:16 +00:00
|
|
|
{
|
2013-09-26 21:53:54 +00:00
|
|
|
public:
|
2016-08-29 17:31:13 +00:00
|
|
|
VIA() :
|
|
|
|
ITEM( VIA_T )
|
2015-04-12 17:44:46 +00:00
|
|
|
{
|
|
|
|
m_diameter = 2; // Dummy value
|
|
|
|
m_drill = 0;
|
|
|
|
m_viaType = VIA_THROUGH;
|
|
|
|
}
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
VIA( const VECTOR2I& aPos, const LAYER_RANGE& aLayers,
|
2014-07-27 19:01:06 +00:00
|
|
|
int aDiameter, int aDrill, int aNet = -1, VIATYPE_T aViaType = VIA_THROUGH ) :
|
2016-08-29 17:31:13 +00:00
|
|
|
ITEM( VIA_T )
|
2013-09-26 21:53:54 +00:00
|
|
|
{
|
|
|
|
SetNet( aNet );
|
|
|
|
SetLayers( aLayers );
|
|
|
|
m_pos = aPos;
|
|
|
|
m_diameter = aDiameter;
|
2014-05-28 11:16:15 +00:00
|
|
|
m_drill = aDrill;
|
2013-09-26 21:53:54 +00:00
|
|
|
m_shape = SHAPE_CIRCLE( aPos, aDiameter / 2 );
|
2014-07-27 19:01:06 +00:00
|
|
|
m_viaType = aViaType;
|
2014-11-14 19:19:00 +00:00
|
|
|
|
2014-09-30 14:46:19 +00:00
|
|
|
//If we're a through-board via, use all layers regardless of the set passed
|
|
|
|
if( aViaType == VIA_THROUGH )
|
|
|
|
{
|
2016-08-29 17:31:13 +00:00
|
|
|
LAYER_RANGE allLayers( 0, MAX_CU_LAYERS - 1 );
|
2014-11-14 18:15:58 +00:00
|
|
|
SetLayers( allLayers );
|
2014-09-30 14:46:19 +00:00
|
|
|
}
|
2014-05-16 11:37:31 +00:00
|
|
|
}
|
2013-09-26 21:53:54 +00:00
|
|
|
|
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
VIA( const VIA& aB ) :
|
|
|
|
ITEM( VIA_T )
|
2013-09-26 21:53:54 +00:00
|
|
|
{
|
2014-05-16 11:37:31 +00:00
|
|
|
SetNet( aB.Net() );
|
|
|
|
SetLayers( aB.Layers() );
|
|
|
|
m_pos = aB.m_pos;
|
|
|
|
m_diameter = aB.m_diameter;
|
2013-09-26 21:53:54 +00:00
|
|
|
m_shape = SHAPE_CIRCLE( m_pos, m_diameter / 2 );
|
2014-05-16 11:37:31 +00:00
|
|
|
m_marker = aB.m_marker;
|
|
|
|
m_rank = aB.m_rank;
|
|
|
|
m_drill = aB.m_drill;
|
2014-07-27 19:01:06 +00:00
|
|
|
m_viaType = aB.m_viaType;
|
2013-09-26 21:53:54 +00:00
|
|
|
}
|
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
static inline bool ClassOf( const ITEM* aItem )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
2016-08-29 16:11:42 +00:00
|
|
|
return aItem && VIA_T == aItem->Kind();
|
2015-02-18 00:29:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-14 13:53:54 +00:00
|
|
|
const VECTOR2I& Pos() const
|
2013-09-26 21:53:54 +00:00
|
|
|
{
|
|
|
|
return m_pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetPos( const VECTOR2I& aPos )
|
|
|
|
{
|
|
|
|
m_pos = aPos;
|
|
|
|
m_shape.SetCenter( aPos );
|
|
|
|
}
|
|
|
|
|
2014-07-27 19:01:06 +00:00
|
|
|
VIATYPE_T ViaType() const
|
|
|
|
{
|
|
|
|
return m_viaType;
|
|
|
|
}
|
|
|
|
|
2014-07-28 09:32:15 +00:00
|
|
|
void SetViaType( VIATYPE_T aViaType )
|
2014-07-27 19:01:06 +00:00
|
|
|
{
|
|
|
|
m_viaType = aViaType;
|
|
|
|
}
|
|
|
|
|
2014-05-14 13:53:54 +00:00
|
|
|
int Diameter() const
|
2013-09-26 21:53:54 +00:00
|
|
|
{
|
|
|
|
return m_diameter;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetDiameter( int aDiameter )
|
|
|
|
{
|
|
|
|
m_diameter = aDiameter;
|
|
|
|
m_shape.SetRadius( m_diameter / 2 );
|
|
|
|
}
|
|
|
|
|
2014-05-14 13:53:54 +00:00
|
|
|
int Drill() const
|
2013-09-26 21:53:54 +00:00
|
|
|
{
|
|
|
|
return m_drill;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetDrill( int aDrill )
|
|
|
|
{
|
|
|
|
m_drill = aDrill;
|
|
|
|
}
|
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
bool PushoutForce( NODE* aNode,
|
2013-09-26 21:53:54 +00:00
|
|
|
const VECTOR2I& aDirection,
|
|
|
|
VECTOR2I& aForce,
|
|
|
|
bool aSolidsOnly = true,
|
|
|
|
int aMaxIterations = 10 );
|
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
const SHAPE* Shape() const override
|
2013-09-26 21:53:54 +00:00
|
|
|
{
|
|
|
|
return &m_shape;
|
|
|
|
}
|
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
VIA* Clone() const override;
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
const SHAPE_LINE_CHAIN Hull( int aClearance = 0, int aWalkaroundThickness = 0 ) const override;
|
2014-05-29 11:48:14 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
virtual VECTOR2I Anchor( int n ) const override
|
2014-05-14 13:53:54 +00:00
|
|
|
{
|
|
|
|
return m_pos;
|
2013-09-26 21:53:54 +00:00
|
|
|
}
|
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
virtual int AnchorCount() const override
|
2014-05-14 13:53:54 +00:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
OPT_BOX2I ChangedArea( const VIA* aOther ) const;
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
private:
|
|
|
|
int m_diameter;
|
|
|
|
int m_drill;
|
|
|
|
VECTOR2I m_pos;
|
|
|
|
SHAPE_CIRCLE m_shape;
|
2014-07-27 19:01:06 +00:00
|
|
|
VIATYPE_T m_viaType;
|
2013-09-18 17:55:16 +00:00
|
|
|
};
|
|
|
|
|
2016-08-29 14:38:11 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 17:55:16 +00:00
|
|
|
#endif
|