kicad/pcbnew/router/pns_solid.h

135 lines
3.3 KiB
C
Raw Normal View History

/*
* KiRouter - a push-and-(sometimes-)shove PCB router
*
* Copyright (C) 2013 CERN
* Copyright (C) 2016-2020 KiCad Developers, see AUTHORS.txt for contributors.
* Author: Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
2013-09-26 21:53:54 +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
*
* 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
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __PNS_SOLID_H
#define __PNS_SOLID_H
#include <math/vector2d.h>
#include <geometry/seg.h>
#include <geometry/shape.h>
#include <geometry/shape_line_chain.h>
#include "pns_item.h"
namespace PNS {
class SOLID : public ITEM
2013-09-26 21:53:54 +00:00
{
public:
2020-12-29 22:53:54 +00:00
SOLID() :
ITEM( SOLID_T ),
m_shape( NULL ),
m_hole( NULL )
2013-09-26 21:53:54 +00:00
{
m_movable = false;
m_padToDie = 0;
m_orientation = 0;
2014-03-03 16:15:41 +00:00
}
~SOLID()
2014-03-03 16:15:41 +00:00
{
delete m_shape;
delete m_hole;
2013-09-26 21:53:54 +00:00
}
SOLID( const SOLID& aSolid ) :
ITEM( aSolid )
{
if( aSolid.m_shape )
m_shape = aSolid.m_shape->Clone();
else
m_shape = nullptr;
if( aSolid.m_hole )
m_hole = aSolid.m_hole->Clone();
else
m_hole = nullptr;
m_pos = aSolid.m_pos;
m_padToDie = aSolid.m_padToDie;
2021-01-18 18:34:19 +00:00
m_orientation = aSolid.m_orientation;
}
static inline bool ClassOf( const ITEM* aItem )
{
return aItem && SOLID_T == aItem->Kind();
}
2015-02-18 16:53:46 +00:00
2016-09-24 18:53:15 +00:00
ITEM* Clone() const override;
2016-09-25 17:06:49 +00:00
const SHAPE* Shape() const override { return m_shape; }
const SHAPE* Hole() const override { return m_hole; }
const SHAPE_LINE_CHAIN Hull( int aClearance = 0, int aWalkaroundThickness = 0,
int aLayer = -1 ) const override;
const SHAPE_LINE_CHAIN HoleHull( int aClearance, int aWalkaroundThickness,
int aLayer ) const override;
2013-09-26 21:53:54 +00:00
void SetShape( SHAPE* shape )
{
delete m_shape;
2013-09-26 21:53:54 +00:00
m_shape = shape;
}
void SetHole( SHAPE* shape )
{
delete m_hole;
m_hole = shape;
}
2020-12-29 22:53:54 +00:00
const VECTOR2I& Pos() const { return m_pos; }
void SetPos( const VECTOR2I& aCenter );
2020-12-29 22:53:54 +00:00
int GetPadToDie() const { return m_padToDie; }
void SetPadToDie( int aLen ) { m_padToDie = aLen; }
2016-09-25 17:06:49 +00:00
virtual VECTOR2I Anchor( int aN ) const override
2013-09-26 21: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
{
return 1;
}
2020-12-29 22:53:54 +00:00
VECTOR2I Offset() const { return m_offset; }
void SetOffset( const VECTOR2I& aOffset ) { m_offset = aOffset; }
2015-08-04 10:15:47 +00:00
double GetOrientation() const { return m_orientation; }
void SetOrientation( double aOrientation ) { m_orientation = aOrientation; }
2013-09-26 21:53:54 +00:00
private:
VECTOR2I m_pos;
2013-09-26 21:53:54 +00:00
SHAPE* m_shape;
SHAPE* m_hole;
2015-08-04 10:15:47 +00:00
VECTOR2I m_offset;
int m_padToDie;
double m_orientation; // in 1/10 degrees, matching PAD
};
}
#endif