KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
pns_segment.h
Go to the documentation of this file.
1/*
2 * KiRouter - a push-and-(sometimes-)shove PCB router
3 *
4 * Copyright (C) 2013-2014 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_SEGMENT_H
23#define PNS_SEGMENT_H
24
25#include <math/vector2d.h>
26
27#include <geometry/seg.h>
30
31#include "pns_line.h"
32#include "pns_linked_item.h"
33
34namespace PNS {
35
36class NODE;
37
38class SEGMENT : public LINKED_ITEM
39{
40public:
43 {}
44
45 SEGMENT( const SEG& aSeg, NET_HANDLE aNet ) :
47 m_seg( aSeg, 0 )
48 {
49 m_net = aNet;
50 }
51
52 SEGMENT( const LINE& aParentLine, const SEG& aSeg ) :
54 m_seg( aSeg, aParentLine.Width() )
55 {
56 m_parent = nullptr;
57 m_sourceItem = aParentLine.GetSourceItem();
58
59 m_net = aParentLine.Net();
60 m_layers = aParentLine.Layers();
61 m_marker = aParentLine.Marker();
62 m_rank = aParentLine.Rank();
63 }
64
65 explicit SEGMENT( const LINKED_ITEM& aParent ) :
66 LINKED_ITEM( aParent )
67 {
68 assert( aParent.Kind() == SEGMENT_T );
69 }
70
71 static inline bool ClassOf( const ITEM* aItem )
72 {
73 return aItem && SEGMENT_T == aItem->Kind();
74 }
75
76 SEGMENT* Clone() const override;
77
78 const SHAPE* Shape( int aLayer ) const override
79 {
80 return static_cast<const SHAPE*>( &m_seg );
81 }
82
83 void SetWidth( int aWidth ) override
84 {
85 m_seg.SetWidth(aWidth);
86 }
87
88 int Width() const override
89 {
90 return m_seg.GetWidth();
91 }
92
93 const SEG& Seg() const
94 {
95 return m_seg.GetSeg();
96 }
97
98 const SHAPE_LINE_CHAIN CLine() const
99 {
100 return SHAPE_LINE_CHAIN( { m_seg.GetSeg().A, m_seg.GetSeg().B } );
101 }
102
103 void SetEnds( const VECTOR2I& a, const VECTOR2I& b )
104 {
105 m_seg.SetSeg( SEG ( a, b ) );
106 }
107
108 void SwapEnds()
109 {
110 SEG tmp = m_seg.GetSeg();
111 m_seg.SetSeg( SEG (tmp.B , tmp.A ) );
112 }
113
114 const SHAPE_LINE_CHAIN Hull( int aClearance, int aWalkaroundThickness,
115 int aLayer = -1 ) const override;
116
117 virtual VECTOR2I Anchor( int n ) const override
118 {
119 if( n == 0 )
120 return m_seg.GetSeg().A;
121 else
122 return m_seg.GetSeg().B;
123 }
124
125 virtual int AnchorCount() const override
126 {
127 return 2;
128 }
129
130 virtual const std::string Format() const override;
131
132 void SetShape( const SHAPE_SEGMENT& aShape )
133 {
134 m_seg = aShape;
135 }
136
137private:
139};
140
141}
142
143#endif
Base class for PNS router board items.
Definition: pns_item.h:98
BOARD_ITEM * m_sourceItem
Definition: pns_item.h:319
const PNS_LAYER_RANGE & Layers() const
Definition: pns_item.h:212
virtual NET_HANDLE Net() const
Definition: pns_item.h:210
PNS_LAYER_RANGE m_layers
Definition: pns_item.h:323
PnsKind Kind() const
Return the type (kind) of the item.
Definition: pns_item.h:173
BOARD_ITEM * GetSourceItem() const
Definition: pns_item.h:202
NET_HANDLE m_net
Definition: pns_item.h:326
@ SEGMENT_T
Definition: pns_item.h:107
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
Represents a track on a PCB, connecting two non-trivial joints (that is, vias, pads,...
Definition: pns_line.h:62
int Rank() const override
Definition: pns_line.cpp:1121
virtual int Marker() const override
Definition: pns_line.cpp:146
SEGMENT(const LINKED_ITEM &aParent)
Definition: pns_segment.h:65
virtual const std::string Format() const override
Definition: pns_line.cpp:1333
const SEG & Seg() const
Definition: pns_segment.h:93
const SHAPE_LINE_CHAIN CLine() const
Definition: pns_segment.h:98
static bool ClassOf(const ITEM *aItem)
Definition: pns_segment.h:71
void SetShape(const SHAPE_SEGMENT &aShape)
Definition: pns_segment.h:132
const SHAPE * Shape(int aLayer) const override
Return the geometrical shape of the item.
Definition: pns_segment.h:78
void SetEnds(const VECTOR2I &a, const VECTOR2I &b)
Definition: pns_segment.h:103
SEGMENT * Clone() const override
Return a deep copy of the item.
Definition: pns_line.cpp:157
virtual VECTOR2I Anchor(int n) const override
Definition: pns_segment.h:117
SEGMENT(const SEG &aSeg, NET_HANDLE aNet)
Definition: pns_segment.h:45
SEGMENT(const LINE &aParentLine, const SEG &aSeg)
Definition: pns_segment.h:52
int Width() const override
Definition: pns_segment.h:88
const SHAPE_LINE_CHAIN Hull(int aClearance, int aWalkaroundThickness, int aLayer=-1) const override
Definition: pns_line.cpp:573
virtual int AnchorCount() const override
Definition: pns_segment.h:125
void SwapEnds()
Definition: pns_segment.h:108
void SetWidth(int aWidth) override
Definition: pns_segment.h:83
SHAPE_SEGMENT m_seg
Definition: pns_segment.h:138
Definition: seg.h:42
VECTOR2I A
Definition: seg.h:49
VECTOR2I B
Definition: seg.h:50
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
const SEG & GetSeg() const
int GetWidth() const
void SetSeg(const SEG &aSeg)
void SetWidth(int aWidth)
An abstract shape on 2D plane.
Definition: shape.h:126
Push and Shove diff pair dimensions (gap) settings dialog.
void * NET_HANDLE
Definition: pns_item.h:55