KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
pns_solid.h
Go to the documentation of this file.
1/*
2 * KiRouter - a push-and-(sometimes-)shove PCB router
3 *
4 * Copyright (C) 2013 CERN
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 * Author: Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
7 *
8 * This program is free software: you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation, either version 3 of the License, or (at your
11 * option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#ifndef __PNS_SOLID_H
23#define __PNS_SOLID_H
24
25#include <math/vector2d.h>
26
27#include <geometry/seg.h>
28#include <geometry/shape.h>
30
31#include "pns_item.h"
32#include "pns_hole.h"
33
34namespace PNS {
35
36class SOLID : public ITEM
37{
38public:
40 ITEM( SOLID_T ),
41 m_shape( nullptr ),
42 m_hole( nullptr )
43 {
44 m_movable = false;
45 m_padToDie = 0;
46 }
47
49 {
50 delete m_hole;
51 delete m_shape;
52 }
53
54 SOLID( const SOLID& aSolid ) :
55 ITEM( aSolid ),
56 m_shape( nullptr ),
57 m_hole( nullptr )
58 {
59 if( aSolid.m_shape )
60 SetShape( aSolid.m_shape->Clone() );
61
62 if( aSolid.m_hole )
63 SetHole( aSolid.m_hole->Clone() );
64
65 m_pos = aSolid.m_pos;
66 m_padToDie = aSolid.m_padToDie;
69 }
70
71 SOLID& operator=( const SOLID& aB )
72 {
73 m_parent = aB.m_parent;
75
76 if( aB.m_shape )
77 SetShape( aB.m_shape->Clone() );
78
79 if( aB.m_hole )
80 SetHole( new PNS::HOLE( aB.m_hole->Shape( -1 )->Clone() ) );
81
82 m_pos = aB.m_pos;
86
88 m_marker = aB.m_marker;
89 m_rank = aB.m_rank;
91
92 return *this;
93 }
94
95 static inline bool ClassOf( const ITEM* aItem )
96 {
97 return aItem && SOLID_T == aItem->Kind();
98 }
99
100 ITEM* Clone() const override;
101
102 const SHAPE* Shape( int aLayer ) const override { return m_shape; }
103
104
105 const SHAPE_LINE_CHAIN Hull( int aClearance = 0, int aWalkaroundThickness = 0,
106 int aLayer = -1 ) const override;
107
108 void SetShape( SHAPE* shape )
109 {
110 delete m_shape;
111 m_shape = shape;
112 }
113
114 const VECTOR2I& Pos() const { return m_pos; }
115 void SetPos( const VECTOR2I& aCenter );
116
117 int GetPadToDie() const { return m_padToDie; }
118 void SetPadToDie( int aLen ) { m_padToDie = aLen; }
119
120 virtual VECTOR2I Anchor( int aN ) const override;
121
122 virtual int AnchorCount() const override;
123
124 const std::vector<VECTOR2I>& AnchorPoints() const { return m_anchorPoints; }
125 void SetAnchorPoints( const std::vector<VECTOR2I>& aPoints ) { m_anchorPoints = aPoints; }
126
127 VECTOR2I Offset() const { return m_offset; }
128 void SetOffset( const VECTOR2I& aOffset ) { m_offset = aOffset; }
129
131 void SetOrientation( const EDA_ANGLE& aOrientation ) { m_orientation = aOrientation; }
132
133 virtual void SetHole( HOLE* aHole ) override
134 {
135 if( m_hole && m_hole->BelongsTo( this ) )
136 delete m_hole;
137
138 m_hole = aHole;
139 m_hole->SetParentPadVia( this );
140 m_hole->SetOwner( this );
141 m_hole->SetLayers( m_layers ); // fixme: backdrill vias can have hole layer set different
142 // than copper layer set
143 }
144
145 virtual bool HasHole() const override { return m_hole != nullptr; }
146 virtual HOLE *Hole() const override { return m_hole; }
147
148private:
155 std::vector<VECTOR2I> m_anchorPoints;
156};
157
158}
159
160#endif
virtual HOLE * Clone() const override
Return a deep copy of the item.
Definition: pns_hole.cpp:41
void SetParentPadVia(ITEM *aParent)
Definition: pns_hole.h:71
const SHAPE * Shape(int aLayer) const override
Return the geometrical shape of the item.
Definition: pns_hole.h:69
Base class for PNS router board items.
Definition: pns_item.h:98
void SetLayers(const PNS_LAYER_RANGE &aLayers)
Definition: pns_item.h:213
BOARD_ITEM * m_sourceItem
Definition: pns_item.h:319
bool m_movable
Definition: pns_item.h:325
PNS_LAYER_RANGE m_layers
Definition: pns_item.h:323
bool m_routable
Definition: pns_item.h:329
PnsKind Kind() const
Return the type (kind) of the item.
Definition: pns_item.h:173
int m_marker
Definition: pns_item.h:327
BOARD_ITEM * m_parent
Definition: pns_item.h:317
int m_rank
Definition: pns_item.h:328
void SetOwner(const ITEM_OWNER *aOwner)
Set the node that owns this item.
Definition: pns_item.h:77
bool BelongsTo(const ITEM_OWNER *aNode) const
Definition: pns_item.h:82
const SHAPE_LINE_CHAIN Hull(int aClearance=0, int aWalkaroundThickness=0, int aLayer=-1) const override
Definition: pns_solid.cpp:39
int GetPadToDie() const
Definition: pns_solid.h:117
virtual bool HasHole() const override
Definition: pns_solid.h:145
virtual HOLE * Hole() const override
Definition: pns_solid.h:146
const std::vector< VECTOR2I > & AnchorPoints() const
Definition: pns_solid.h:124
VECTOR2I m_pos
Definition: pns_solid.h:149
SOLID(const SOLID &aSolid)
Definition: pns_solid.h:54
void SetPos(const VECTOR2I &aCenter)
Definition: pns_solid.cpp:81
SHAPE * m_shape
Definition: pns_solid.h:150
int m_padToDie
Definition: pns_solid.h:152
void SetPadToDie(int aLen)
Definition: pns_solid.h:118
VECTOR2I Offset() const
Definition: pns_solid.h:127
const VECTOR2I & Pos() const
Definition: pns_solid.h:114
VECTOR2I m_offset
Definition: pns_solid.h:151
void SetOffset(const VECTOR2I &aOffset)
Definition: pns_solid.h:128
EDA_ANGLE m_orientation
Definition: pns_solid.h:153
void SetShape(SHAPE *shape)
Definition: pns_solid.h:108
virtual void SetHole(HOLE *aHole) override
Definition: pns_solid.h:133
SOLID & operator=(const SOLID &aB)
Definition: pns_solid.h:71
ITEM * Clone() const override
Return a deep copy of the item.
Definition: pns_solid.cpp:74
std::vector< VECTOR2I > m_anchorPoints
Definition: pns_solid.h:155
void SetOrientation(const EDA_ANGLE &aOrientation)
Definition: pns_solid.h:131
virtual VECTOR2I Anchor(int aN) const override
Definition: pns_solid.cpp:95
virtual int AnchorCount() const override
Definition: pns_solid.cpp:100
HOLE * m_hole
Definition: pns_solid.h:154
static bool ClassOf(const ITEM *aItem)
Definition: pns_solid.h:95
EDA_ANGLE GetOrientation() const
Definition: pns_solid.h:130
const SHAPE * Shape(int aLayer) const override
Return the geometrical shape of the item.
Definition: pns_solid.h:102
void SetAnchorPoints(const std::vector< VECTOR2I > &aPoints)
Definition: pns_solid.h:125
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
An abstract shape on 2D plane.
Definition: shape.h:126
virtual SHAPE * Clone() const
Return a dynamically allocated copy of the shape.
Definition: shape.h:148
Push and Shove diff pair dimensions (gap) settings dialog.