KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
pns_item.h
Go to the documentation of this file.
1/*
2 * KiRouter - a push-and-(sometimes-)shove PCB router
3 *
4 * Copyright (C) 2013-2017 CERN
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
8 *
9 * This program is free software: you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation, either version 3 of the License, or (at your
12 * option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23#ifndef PNS_ITEM_H
24#define PNS_ITEM_H
25
26#include <memory>
27#include <set>
28#include <unordered_set>
29#include <math/vector2d.h>
30
31#include <geometry/shape.h>
33
34#include "pns_layerset.h"
35
36class BOARD_ITEM;
37
38namespace PNS {
39
40class NODE;
41
43 MK_HEAD = ( 1 << 0 ),
44 MK_VIOLATION = ( 1 << 3 ),
45 MK_LOCKED = ( 1 << 4 ),
46 MK_DP_COUPLED = ( 1 << 5 )
47};
48
49
50class ITEM;
51class HOLE;
52struct COLLISION_SEARCH_CONTEXT;
53
54// An opaque net identifier. The internal workings are owned by the ROUTER_IFACE.
55typedef void* NET_HANDLE;
56
58public:
59 virtual ~ITEM_OWNER() {};
60};
61
63{
64public:
66 m_owner( nullptr )
67 {}
68
72 const ITEM_OWNER* Owner() const { return m_owner; }
73
77 void SetOwner( const ITEM_OWNER* aOwner ) { m_owner = aOwner; }
78
82 bool BelongsTo( const ITEM_OWNER* aNode ) const
83 {
84 return m_owner == aNode;
85 }
86
87protected:
89};
90
97class ITEM : public OWNABLE_ITEM, public ITEM_OWNER
98{
99public:
102 {
108 ARC_T = 16,
109 VIA_T = 32,
111 HOLE_T = 128,
112 ANY_T = 0xffff,
114 };
115
116 ITEM( PnsKind aKind )
117 {
118 m_net = nullptr;
119 m_movable = true;
120 m_kind = aKind;
121 m_parent = nullptr;
122 m_sourceItem = nullptr;
123 m_owner = nullptr;
124 m_marker = 0;
125 m_rank = -1;
126 m_routable = true;
127 m_isVirtual = false;
128 m_isFreePad = false;
130 }
131
132 ITEM( const ITEM& aOther )
133 {
134 m_layers = aOther.m_layers;
135 m_net = aOther.m_net;
136 m_movable = aOther.m_movable;
137 m_kind = aOther.m_kind;
138 m_parent = aOther.m_parent;
139 m_sourceItem = aOther.m_sourceItem;
140 m_owner = nullptr;
141 m_marker = aOther.m_marker;
142 m_rank = aOther.m_rank;
143 m_routable = aOther.m_routable;
144 m_isVirtual = aOther.m_isVirtual;
145 m_isFreePad = aOther.m_isFreePad;
147 }
148
149 virtual ~ITEM();
150
154 virtual ITEM* Clone() const = 0;
155
156 /*
157 * Returns a convex polygon "hull" of a the item, that is used as the walk-around path.
158 *
159 * @param aClearance defines how far from the body of the item the hull should be,
160 * @param aWalkaroundThickness is the width of the line that walks around this hull.
161 * @param aLayer is the layer to build a hull for (the item may have different shapes on each
162 * layer). If aLayer is -1, the hull will be a merged hull from all layers.
163 */
164 virtual const SHAPE_LINE_CHAIN Hull( int aClearance = 0, int aWalkaroundThickness = 0,
165 int aLayer = -1 ) const
166 {
167 return SHAPE_LINE_CHAIN();
168 }
169
173 PnsKind Kind() const
174 {
175 return m_kind;
176 }
177
181 bool OfKind( int aKindMask ) const
182 {
183 return ( aKindMask & m_kind ) != 0;
184 }
185
189 std::string KindStr() const;
190
191 void SetParent( BOARD_ITEM* aParent )
192 {
193 m_parent = aParent;
194
195 if( m_parent )
197 }
198
199 BOARD_ITEM* Parent() const { return m_parent; }
200
201 void SetSourceItem( BOARD_ITEM* aSourceItem ) { m_sourceItem = aSourceItem; }
203
207 virtual BOARD_ITEM* BoardItem() const { return m_parent; }
208
209 void SetNet( NET_HANDLE aNet ) { m_net = aNet; }
210 virtual NET_HANDLE Net() const { return m_net; }
211
212 const PNS_LAYER_RANGE& Layers() const { return m_layers; }
213 void SetLayers( const PNS_LAYER_RANGE& aLayers ) { m_layers = aLayers; }
214
215 void SetLayer( int aLayer ) { m_layers = PNS_LAYER_RANGE( aLayer, aLayer ); }
216 virtual int Layer() const { return Layers().Start(); }
217
221 bool LayersOverlap( const ITEM* aOther ) const
222 {
223 return Layers().Overlaps( aOther->Layers() );
224 }
225
235 bool Collide( const ITEM* aHead, const NODE* aNode, int aLayer,
236 COLLISION_SEARCH_CONTEXT* aCtx = nullptr ) const;
237
242 virtual const SHAPE* Shape( int aLayer ) const
243 {
244 return nullptr;
245 }
246
250 virtual std::vector<int> UniqueShapeLayers() const { return { -1 }; }
251
252 virtual bool HasUniqueShapeLayers() const { return false; }
253
259 std::set<int> RelevantShapeLayers( const ITEM* aOther ) const;
260
261 virtual void Mark( int aMarker ) const { m_marker = aMarker; }
262 virtual void Unmark( int aMarker = -1 ) const { m_marker &= ~aMarker; }
263 virtual int Marker() const { return m_marker; }
264
265 virtual void SetRank( int aRank ) { m_rank = aRank; }
266 virtual int Rank() const { return m_rank; }
267
268 virtual VECTOR2I Anchor( int n ) const
269 {
270 return VECTOR2I();
271 }
272
273 virtual int AnchorCount() const
274 {
275 return 0;
276 }
277
278 bool IsLocked() const
279 {
280 return Marker() & MK_LOCKED;
281 }
282
283 void SetRoutable( bool aRoutable ) { m_routable = aRoutable; }
284 bool IsRoutable() const { return m_routable; }
285
286 void SetIsFreePad( bool aIsFreePad = true ) { m_isFreePad = aIsFreePad; }
287
288 bool IsFreePad() const
289 {
290 return m_isFreePad || ( ParentPadVia() && ParentPadVia()->m_isFreePad );
291 }
292
293 virtual ITEM* ParentPadVia() const { return nullptr; }
294
295 bool IsVirtual() const
296 {
297 return m_isVirtual;
298 }
299
302
303 virtual bool HasHole() const { return false; }
304 virtual HOLE *Hole() const { return nullptr; }
305 virtual void SetHole( HOLE* aHole ) {};
306
307 virtual const std::string Format() const;
308
309 virtual const NODE* OwningNode() const;
310
311private:
312 bool collideSimple( const ITEM* aHead, const NODE* aNode, int aLayer,
313 COLLISION_SEARCH_CONTEXT* aCtx ) const;
314
315protected:
317 BOARD_ITEM* m_parent; // The parent BOARD_ITEM, used when there is a 1:1 map
318 // between the PNS::ITEM and the BOARD_ITEM.
319 BOARD_ITEM* m_sourceItem; // The progenator BOARD_ITEM for when there is NOT a 1:1 map.
320 // For instance, dragging a track might produce multiple
321 // segments, none of which can be directly mapped to the
322 // track.
324
327 mutable int m_marker;
333};
334
335template<typename T, typename S>
336std::unique_ptr<T> ItemCast( std::unique_ptr<S> aPtr )
337{
338 static_assert( std::is_base_of<ITEM, S>::value, "Need to be handed a ITEM!" );
339 static_assert( std::is_base_of<ITEM, T>::value, "Need to cast to an ITEM!" );
340 return std::unique_ptr<T>( static_cast<T*>( aPtr.release() ) );
341}
342
343template<typename T>
344std::unique_ptr< typename std::remove_const<T>::type > Clone( const T& aItem )
345{
346 static_assert( std::is_base_of<ITEM, T>::value, "Need to be handed an ITEM!" );
347 return std::unique_ptr<typename std::remove_const<T>::type>( aItem.Clone() );
348}
349
350}
351
352#endif // PNS_ITEM_H
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:78
virtual ~ITEM_OWNER()
Definition: pns_item.h:59
Base class for PNS router board items.
Definition: pns_item.h:98
BOARD_ITEM * Parent() const
Definition: pns_item.h:199
bool IsFreePad() const
Definition: pns_item.h:288
PnsKind m_kind
Definition: pns_item.h:316
virtual bool HasUniqueShapeLayers() const
Definition: pns_item.h:252
void SetLayers(const PNS_LAYER_RANGE &aLayers)
Definition: pns_item.h:213
BOARD_ITEM * m_sourceItem
Definition: pns_item.h:319
void SetIsFreePad(bool aIsFreePad=true)
Definition: pns_item.h:286
virtual const std::string Format() const
Definition: pns_item.cpp:336
virtual void Unmark(int aMarker=-1) const
Definition: pns_item.h:262
virtual int Rank() const
Definition: pns_item.h:266
bool m_isVirtual
Definition: pns_item.h:330
virtual ITEM * ParentPadVia() const
Definition: pns_item.h:293
virtual std::vector< int > UniqueShapeLayers() const
Return a list of layers that have unique (potentially different) shapes.
Definition: pns_item.h:250
virtual const SHAPE * Shape(int aLayer) const
Return the geometrical shape of the item.
Definition: pns_item.h:242
void SetSourceItem(BOARD_ITEM *aSourceItem)
Definition: pns_item.h:201
const PNS_LAYER_RANGE & Layers() const
Definition: pns_item.h:212
bool m_movable
Definition: pns_item.h:325
ITEM(const ITEM &aOther)
Definition: pns_item.h:132
ITEM(PnsKind aKind)
Definition: pns_item.h:116
virtual NET_HANDLE Net() const
Definition: pns_item.h:210
virtual void SetHole(HOLE *aHole)
Definition: pns_item.h:305
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
virtual ITEM * Clone() const =0
Return a deep copy of the item.
std::set< int > RelevantShapeLayers(const ITEM *aOther) const
Returns the set of layers on which either this or the other item can have a unique shape.
Definition: pns_item.cpp:94
void SetNet(NET_HANDLE aNet)
Definition: pns_item.h:209
BOARD_ITEM * GetSourceItem() const
Definition: pns_item.h:202
virtual void SetRank(int aRank)
Definition: pns_item.h:265
NET_HANDLE m_net
Definition: pns_item.h:326
virtual int Layer() const
Definition: pns_item.h:216
void SetLayer(int aLayer)
Definition: pns_item.h:215
void SetIsCompoundShapePrimitive()
Definition: pns_item.h:300
PnsKind
< Supported item types
Definition: pns_item.h:102
@ INVALID_T
Definition: pns_item.h:103
@ SEGMENT_T
Definition: pns_item.h:107
@ DIFF_PAIR_T
Definition: pns_item.h:110
@ LINKED_ITEM_MASK_T
Definition: pns_item.h:113
void SetParent(BOARD_ITEM *aParent)
Definition: pns_item.h:191
bool Collide(const ITEM *aHead, const NODE *aNode, int aLayer, COLLISION_SEARCH_CONTEXT *aCtx=nullptr) const
Check for a collision (clearance violation) with between us and item aOther.
Definition: pns_item.cpp:303
bool collideSimple(const ITEM *aHead, const NODE *aNode, int aLayer, COLLISION_SEARCH_CONTEXT *aCtx) const
Definition: pns_item.cpp:115
bool m_isFreePad
Definition: pns_item.h:331
virtual ~ITEM()
Definition: pns_item.cpp:331
virtual const NODE * OwningNode() const
Definition: pns_item.cpp:352
bool IsCompoundShapePrimitive() const
Definition: pns_item.h:301
int m_marker
Definition: pns_item.h:327
bool OfKind(int aKindMask) const
Definition: pns_item.h:181
bool IsVirtual() const
Definition: pns_item.h:295
bool IsRoutable() const
Definition: pns_item.h:284
virtual VECTOR2I Anchor(int n) const
Definition: pns_item.h:268
std::string KindStr() const
Definition: pns_item.cpp:313
bool LayersOverlap(const ITEM *aOther) const
Return true if the set of layers spanned by aOther overlaps our layers.
Definition: pns_item.h:221
bool m_isCompoundShapePrimitive
Definition: pns_item.h:332
virtual HOLE * Hole() const
Definition: pns_item.h:304
virtual const SHAPE_LINE_CHAIN Hull(int aClearance=0, int aWalkaroundThickness=0, int aLayer=-1) const
Definition: pns_item.h:164
virtual void Mark(int aMarker) const
Definition: pns_item.h:261
virtual int AnchorCount() const
Definition: pns_item.h:273
virtual bool HasHole() const
Definition: pns_item.h:303
virtual BOARD_ITEM * BoardItem() const
Definition: pns_item.h:207
void SetRoutable(bool aRoutable)
Definition: pns_item.h:283
bool IsLocked() const
Definition: pns_item.h:278
virtual int Marker() const
Definition: pns_item.h:263
BOARD_ITEM * m_parent
Definition: pns_item.h:317
int m_rank
Definition: pns_item.h:328
Keep the router "world" - i.e.
Definition: pns_node.h:231
void SetOwner(const ITEM_OWNER *aOwner)
Set the node that owns this item.
Definition: pns_item.h:77
const ITEM_OWNER * m_owner
Definition: pns_item.h:88
bool BelongsTo(const ITEM_OWNER *aNode) const
Definition: pns_item.h:82
const ITEM_OWNER * Owner() const
Return the owner of this item, or NULL if there's none.
Definition: pns_item.h:72
Represent a contiguous set of PCB layers.
Definition: pns_layerset.h:32
int Start() const
Definition: pns_layerset.h:86
bool Overlaps(const PNS_LAYER_RANGE &aOther) const
Definition: pns_layerset.h:67
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
Push and Shove diff pair dimensions (gap) settings dialog.
std::unique_ptr< T > ItemCast(std::unique_ptr< S > aPtr)
Definition: pns_item.h:336
void * NET_HANDLE
Definition: pns_item.h:55
LineMarker
Definition: pns_item.h:42
@ MK_VIOLATION
Definition: pns_item.h:44
@ MK_DP_COUPLED
Definition: pns_item.h:46
@ MK_HEAD
Definition: pns_item.h:43
@ MK_LOCKED
Definition: pns_item.h:45
std::unique_ptr< typename std::remove_const< T >::type > Clone(const T &aItem)
Definition: pns_item.h:344
VECTOR2< int32_t > VECTOR2I
Definition: vector2d.h:695