KiCad PCB EDA Suite
Loading...
Searching...
No Matches
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 <[email protected]>
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_padToDie(0),
44 m_hole( nullptr )
45 {
46 m_movable = false;
47 }
48
50 {
51 delete m_hole;
52 delete m_shape;
53 }
54
55 SOLID( const SOLID& aSolid ) :
56 ITEM( aSolid ),
57 m_shape( nullptr ),
58 m_hole( nullptr )
59 {
60 if( aSolid.m_shape )
61 SetShape( aSolid.m_shape->Clone() );
62
63 if( aSolid.m_hole )
64 SetHole( aSolid.m_hole->Clone() );
65
66 m_pos = aSolid.m_pos;
67 m_padToDie = aSolid.m_padToDie;
71 }
72
73 SOLID& operator=( const SOLID& aB )
74 {
75 m_parent = aB.m_parent;
77
78 if( aB.m_shape )
79 SetShape( aB.m_shape->Clone() );
80
81 if( aB.m_hole )
82 SetHole( new PNS::HOLE( aB.m_hole->Shape( -1 )->Clone() ) );
83
84 m_pos = aB.m_pos;
89
91 m_marker = aB.m_marker;
92 m_rank = aB.m_rank;
94
95 return *this;
96 }
97
98 static inline bool ClassOf( const ITEM* aItem )
99 {
100 return aItem && SOLID_T == aItem->Kind();
101 }
102
103 ITEM* Clone() const override;
104
105 const SHAPE* Shape( int aLayer ) const override { return m_shape; }
106
107
108 const SHAPE_LINE_CHAIN Hull( int aClearance = 0, int aWalkaroundThickness = 0,
109 int aLayer = -1 ) const override;
110
111 void SetShape( SHAPE* shape )
112 {
113 delete m_shape;
114 m_shape = shape;
115 }
116
117 const VECTOR2I& Pos() const { return m_pos; }
118 void SetPos( const VECTOR2I& aCenter );
119
120 int GetPadToDie() const { return m_padToDie; }
121 void SetPadToDie( const int aLen ) { m_padToDie = aLen; }
122
123 int GetPadToDieDelay() const { return m_padToDieDelay; }
124 void SetPadToDieDelay( const int aDelay ) { m_padToDieDelay = aDelay; }
125
126 virtual VECTOR2I Anchor( int aN ) const override;
127
128 virtual int AnchorCount() const override;
129
130 const std::vector<VECTOR2I>& AnchorPoints() const { return m_anchorPoints; }
131 void SetAnchorPoints( const std::vector<VECTOR2I>& aPoints ) { m_anchorPoints = aPoints; }
132
133 VECTOR2I Offset() const { return m_offset; }
134 void SetOffset( const VECTOR2I& aOffset ) { m_offset = aOffset; }
135
137 void SetOrientation( const EDA_ANGLE& aOrientation ) { m_orientation = aOrientation; }
138
139 virtual void SetHole( HOLE* aHole ) override
140 {
141 if( m_hole && m_hole->BelongsTo( this ) )
142 delete m_hole;
143
144 m_hole = aHole;
145 m_hole->SetParentPadVia( this );
146 m_hole->SetOwner( this );
147 m_hole->SetLayers( m_layers ); // fixme: backdrill vias can have hole layer set different
148 // than copper layer set
149 }
150
151 virtual bool HasHole() const override { return m_hole != nullptr; }
152 virtual HOLE *Hole() const override { return m_hole; }
153
154private:
162 std::vector<VECTOR2I> m_anchorPoints;
163};
164
165}
166
167#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:120
virtual bool HasHole() const override
Definition: pns_solid.h:151
void SetPadToDie(const int aLen)
Definition: pns_solid.h:121
virtual HOLE * Hole() const override
Definition: pns_solid.h:152
const std::vector< VECTOR2I > & AnchorPoints() const
Definition: pns_solid.h:130
VECTOR2I m_pos
Definition: pns_solid.h:155
SOLID(const SOLID &aSolid)
Definition: pns_solid.h:55
int GetPadToDieDelay() const
Definition: pns_solid.h:123
void SetPos(const VECTOR2I &aCenter)
Definition: pns_solid.cpp:81
SHAPE * m_shape
Definition: pns_solid.h:156
int m_padToDie
Definition: pns_solid.h:158
int m_padToDieDelay
Definition: pns_solid.h:159
void SetPadToDieDelay(const int aDelay)
Definition: pns_solid.h:124
VECTOR2I Offset() const
Definition: pns_solid.h:133
const VECTOR2I & Pos() const
Definition: pns_solid.h:117
VECTOR2I m_offset
Definition: pns_solid.h:157
void SetOffset(const VECTOR2I &aOffset)
Definition: pns_solid.h:134
EDA_ANGLE m_orientation
Definition: pns_solid.h:160
void SetShape(SHAPE *shape)
Definition: pns_solid.h:111
virtual void SetHole(HOLE *aHole) override
Definition: pns_solid.h:139
SOLID & operator=(const SOLID &aB)
Definition: pns_solid.h:73
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:162
void SetOrientation(const EDA_ANGLE &aOrientation)
Definition: pns_solid.h:137
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:161
static bool ClassOf(const ITEM *aItem)
Definition: pns_solid.h:98
EDA_ANGLE GetOrientation() const
Definition: pns_solid.h:136
const SHAPE * Shape(int aLayer) const override
Return the geometrical shape of the item.
Definition: pns_solid.h:105
void SetAnchorPoints(const std::vector< VECTOR2I > &aPoints)
Definition: pns_solid.h:131
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.