KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
odb_feature.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5 * Author: SYSUEric <jzzhuang666@gmail.com>.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21
22#ifndef _ODB_FEATURE_H_
23#define _ODB_FEATURE_H_
24
25#include "odb_attribute.h"
26#include "pad.h"
28#include "footprint.h"
29#include <list>
30#include "math/vector2d.h"
31#include "odb_defines.h"
32
33
34enum class ODB_DIRECTION
35{
36 CW,
37 CCW
38};
39
40
41class ODB_LINE;
42class ODB_ARC;
43class ODB_PAD;
44class ODB_SURFACE;
45class ODB_FEATURE;
46class PCB_IO_ODBPP;
47class PCB_VIA;
48
50{
51public:
52 FEATURES_MANAGER( BOARD* aBoard, PCB_IO_ODBPP* aPlugin, const wxString& aLayerName ) :
53 m_board( aBoard ), m_plugin( aPlugin ), m_layerName( aLayerName )
54 {
55 }
56
57 virtual ~FEATURES_MANAGER() { m_featuresList.clear(); }
58
59 void InitFeatureList( PCB_LAYER_ID aLayer, std::vector<BOARD_ITEM*>& aItems );
60
61 void AddFeatureLine( const VECTOR2I& aStart, const VECTOR2I& aEnd, uint64_t aWidth );
62
63 void AddFeatureArc( const VECTOR2I& aStart, const VECTOR2I& aEnd, const VECTOR2I& aCenter,
64 uint64_t aWidth, ODB_DIRECTION aDirection );
65
66 void AddPadCircle( const VECTOR2I& aCenter, uint64_t aDiameter, const EDA_ANGLE& aAngle,
67 bool aMirror, double aResize = 1.0 );
68
69 void AddPadShape( const PAD& aPad, PCB_LAYER_ID aLayer );
70
71 void AddFeatureSurface( const SHAPE_POLY_SET::POLYGON& aPolygon,
72 FILL_T aFillType = FILL_T::FILLED_SHAPE );
73
74 void AddShape( const PCB_SHAPE& aShape, PCB_LAYER_ID aLayer = UNDEFINED_LAYER );
75
76 void AddVia( const PCB_VIA* aVia, PCB_LAYER_ID aLayer );
77
78 void AddViaDrillHole( const PCB_VIA* aVia, PCB_LAYER_ID aLayer );
79
80 void AddViaProtection( const PCB_VIA* aVia, bool drill, PCB_LAYER_ID aLayer );
81
82 bool AddContour( const SHAPE_POLY_SET& aPolySet, int aOutline = 0,
83 FILL_T aFillType = FILL_T::FILLED_SHAPE );
84
85 bool AddPolygon( const SHAPE_POLY_SET::POLYGON& aPolygon, FILL_T aFillType, int aWidth,
86 LINE_STYLE aDashType );
87
89
90 void GenerateFeatureFile( std::ostream& ost ) const;
91
92 void GenerateProfileFeatures( std::ostream& ost ) const;
93
94private:
95 inline uint32_t AddCircleSymbol( const wxString& aDiameter )
96 {
97 return GetSymbolIndex( m_circleSymMap, "r" + aDiameter );
98 }
99
100 uint32_t AddRoundDonutSymbol( const wxString& aOuterDim, const wxString& aInnerDim )
101 {
102 wxString sym = "donut_r" + aOuterDim + ODB_DIM_X + aInnerDim;
103 return GetSymbolIndex( m_roundDonutSymMap, sym );
104 }
105
106 uint32_t AddRectSymbol( const wxString& aWidth, const wxString& aHeight )
107 {
108 wxString sym = "rect" + aWidth + ODB_DIM_X + aHeight;
109 return GetSymbolIndex( m_rectSymMap, sym );
110 }
111
112 uint32_t AddOvalSymbol( const wxString& aWidth, const wxString& aHeight )
113 {
114 wxString sym = "oval" + aWidth + ODB_DIM_X + aHeight;
115 return GetSymbolIndex( m_ovalSymMap, sym );
116 }
117
118 uint32_t AddRoundRectSymbol( const wxString& aWidth, const wxString& aHeight,
119 const wxString& aRadius )
120 {
121 wxString sym = "rect" + aWidth + ODB_DIM_X + aHeight + ODB_DIM_X + ODB_DIM_R + aRadius;
122 return GetSymbolIndex( m_roundRectSymMap, sym );
123 }
124
125 uint32_t AddRoundRectDonutSymbol( const wxString& aOuterWidth, const wxString& aOuterHeight,
126 const wxString& aLineWidth, const wxString& aRadius )
127 {
128 wxString sym = "donut_rc" + aOuterWidth + ODB_DIM_X + aOuterHeight + ODB_DIM_X + aLineWidth
129 + ODB_DIM_X + ODB_DIM_R + aRadius;
131 }
132
133 uint32_t AddChamferRectSymbol( const wxString& aWidth, const wxString& aHeight,
134 const wxString& aRadius, int aPositions )
135 {
136 wxString sym = "rect" + aWidth + ODB_DIM_X + aHeight + ODB_DIM_X + ODB_DIM_C + aRadius;
137
138 if( aPositions != RECT_CHAMFER_ALL )
139 {
140 sym += ODB_DIM_X;
141 if( aPositions & RECT_CHAMFER_TOP_RIGHT )
142 sym += "1";
143 if( aPositions & RECT_CHAMFER_TOP_LEFT )
144 sym += "2";
145 if( aPositions & RECT_CHAMFER_BOTTOM_LEFT )
146 sym += "3";
147 if( aPositions & RECT_CHAMFER_BOTTOM_RIGHT )
148 sym += "4";
149 }
150
151 return GetSymbolIndex( m_chamRectSymMap, sym );
152 }
153
154
155 uint32_t GetSymbolIndex( std::map<wxString, uint32_t>& aSymMap, const wxString& aKey )
156 {
157 if( aSymMap.count( aKey ) )
158 {
159 return aSymMap.at( aKey );
160 }
161 else
162 {
163 uint32_t index = m_symIndex;
164 m_symIndex++;
165 aSymMap.emplace( aKey, index );
166 m_allSymMap.emplace( index, aKey );
167 return index;
168 }
169 }
170
171 std::map<wxString, uint32_t> m_circleSymMap; // diameter -> symbol index
172 std::map<wxString, uint32_t> m_roundDonutSymMap;
173 std::map<wxString, uint32_t> m_padSymMap; // name -> symbol index
174 std::map<wxString, uint32_t> m_rectSymMap; // w,h -> symbol index
175 std::map<wxString, uint32_t> m_ovalSymMap; // w,h -> symbol index
176 std::map<wxString, uint32_t> m_roundRectSymMap;
177 std::map<wxString, uint32_t> m_roundRectDonutSymMap;
178 std::map<wxString, uint32_t> m_chamRectSymMap;
179
180 std::map<uint32_t, wxString> m_allSymMap;
181
182 template <typename T, typename... Args>
183 void AddFeature( Args&&... args )
184 {
185 auto feature = std::make_unique<T>( m_featuresList.size(), std::forward<Args>( args )... );
186
187 m_featuresList.emplace_back( std::move( feature ) );
188 }
189
190 inline PCB_IO_ODBPP* GetODBPlugin() { return m_plugin; }
191
194 wxString m_layerName;
195 uint32_t m_symIndex = 0;
196
197 std::list<std::unique_ptr<ODB_FEATURE>> m_featuresList;
198 std::map<BOARD_ITEM*, std::vector<uint32_t>> m_featureIDMap;
199};
200
201
203{
204public:
205 // template <typename T> using check_type = attribute::is_feature<T>;
206 ODB_FEATURE( uint32_t aIndex ) : m_index( aIndex ) {}
207 virtual void WriteFeatures( std::ostream& ost );
208
209 virtual ~ODB_FEATURE() = default;
210
211protected:
212 enum class FEATURE_TYPE
213 {
214 LINE,
215 ARC,
216 PAD,
217 SURFACE
218 };
219
221
222 virtual void WriteRecordContent( std::ostream& ost ) = 0;
223
224 const uint32_t m_index;
225};
226
227class ODB_LINE : public ODB_FEATURE
228{
229public:
230 ODB_LINE( uint32_t aIndex, const std::pair<wxString, wxString>& aStart,
231 const std::pair<wxString, wxString>& aEnd, uint32_t aSym ) :
232 ODB_FEATURE( aIndex ), m_start( aStart ), m_end( aEnd ), m_symIndex( aSym )
233 {
234 }
235
236 inline virtual FEATURE_TYPE GetFeatureType() override { return FEATURE_TYPE::LINE; }
237
238protected:
239 virtual void WriteRecordContent( std::ostream& ost ) override;
240
241private:
242 std::pair<wxString, wxString> m_start;
243 std::pair<wxString, wxString> m_end;
244 uint32_t m_symIndex;
245};
246
247
248class ODB_ARC : public ODB_FEATURE
249{
250public:
251 inline virtual FEATURE_TYPE GetFeatureType() override { return FEATURE_TYPE::ARC; }
252
253
254 ODB_ARC( uint32_t aIndex, const std::pair<wxString, wxString>& aStart,
255 const std::pair<wxString, wxString>& aEnd,
256 const std::pair<wxString, wxString>& aCenter, uint32_t aSym,
257 ODB_DIRECTION aDirection ) :
258 ODB_FEATURE( aIndex ), m_start( aStart ), m_end( aEnd ), m_center( aCenter ),
259 m_symIndex( aSym ), m_direction( aDirection )
260 {
261 }
262
263protected:
264 virtual void WriteRecordContent( std::ostream& ost ) override;
265
266private:
267 std::pair<wxString, wxString> m_start;
268 std::pair<wxString, wxString> m_end;
269 std::pair<wxString, wxString> m_center;
270 uint32_t m_symIndex;
272};
273
274class ODB_PAD : public ODB_FEATURE
275{
276public:
277 ODB_PAD( uint32_t aIndex, const std::pair<wxString, wxString>& aCenter, uint32_t aSym,
278 EDA_ANGLE aAngle = ANGLE_0, bool aMirror = false, double aResize = 1.0 ) :
279 ODB_FEATURE( aIndex ), m_center( aCenter ), m_symIndex( aSym ), m_angle( aAngle ),
280 m_mirror( aMirror ), m_resize( aResize )
281 {
282 }
283
284 inline virtual FEATURE_TYPE GetFeatureType() override { return FEATURE_TYPE::PAD; }
285
286protected:
287 virtual void WriteRecordContent( std::ostream& ost ) override;
288
289private:
290 std::pair<wxString, wxString> m_center;
291 uint32_t m_symIndex;
294 double m_resize;
295};
296
297class ODB_SURFACE_DATA;
299{
300public:
301 ODB_SURFACE( uint32_t aIndex, const SHAPE_POLY_SET::POLYGON& aPolygon,
302 FILL_T aFillType = FILL_T::FILLED_SHAPE );
303
304 virtual ~ODB_SURFACE() = default;
305
306 inline virtual FEATURE_TYPE GetFeatureType() override { return FEATURE_TYPE::SURFACE; }
307
308 std::unique_ptr<ODB_SURFACE_DATA> m_surfaces;
309
310protected:
311 virtual void WriteRecordContent( std::ostream& ost ) override;
312};
313
314
316{
317public:
318 ODB_SURFACE_DATA( const SHAPE_POLY_SET::POLYGON& aPolygon );
319
321 {
322 enum class LINE_TYPE
323 {
324 SEGMENT,
325 ARC
326 };
327 SURFACE_LINE() = default;
328
329 SURFACE_LINE( const VECTOR2I& aEnd ) : m_end( aEnd ) {}
330
331 SURFACE_LINE( const VECTOR2I& aEnd, const VECTOR2I& aCenter, ODB_DIRECTION aDirection ) :
332 m_end( aEnd ), m_type( LINE_TYPE::ARC ), m_center( aCenter ),
333 m_direction( aDirection )
334 {
335 }
336
339
341 ODB_DIRECTION m_direction = ODB_DIRECTION::CW;
342 };
343
344 void AddPolygonHoles( const SHAPE_POLY_SET::POLYGON& aPolygon );
345 void WriteData( std::ostream& ost ) const;
346
347 std::vector<std::vector<SURFACE_LINE>> m_polygons;
348};
349
350
351#endif // _ODB_FEATURE_H_
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:297
void AddPadShape(const PAD &aPad, PCB_LAYER_ID aLayer)
uint32_t AddRoundRectDonutSymbol(const wxString &aOuterWidth, const wxString &aOuterHeight, const wxString &aLineWidth, const wxString &aRadius)
Definition: odb_feature.h:125
std::map< wxString, uint32_t > m_circleSymMap
Definition: odb_feature.h:171
uint32_t m_symIndex
Definition: odb_feature.h:195
void AddShape(const PCB_SHAPE &aShape, PCB_LAYER_ID aLayer=UNDEFINED_LAYER)
Definition: odb_feature.cpp:79
uint32_t AddRectSymbol(const wxString &aWidth, const wxString &aHeight)
Definition: odb_feature.h:106
std::map< wxString, uint32_t > m_chamRectSymMap
Definition: odb_feature.h:178
void AddVia(const PCB_VIA *aVia, PCB_LAYER_ID aLayer)
std::map< wxString, uint32_t > m_rectSymMap
Definition: odb_feature.h:174
PCB_IO_ODBPP * GetODBPlugin()
Definition: odb_feature.h:190
void InitFeatureList(PCB_LAYER_ID aLayer, std::vector< BOARD_ITEM * > &aItems)
void AddFeatureLine(const VECTOR2I &aStart, const VECTOR2I &aEnd, uint64_t aWidth)
Definition: odb_feature.cpp:38
PCB_IO_ODBPP * m_plugin
Definition: odb_feature.h:193
void AddViaProtection(const PCB_VIA *aVia, bool drill, PCB_LAYER_ID aLayer)
void AddFeatureArc(const VECTOR2I &aStart, const VECTOR2I &aEnd, const VECTOR2I &aCenter, uint64_t aWidth, ODB_DIRECTION aDirection)
Definition: odb_feature.cpp:46
uint32_t GetSymbolIndex(std::map< wxString, uint32_t > &aSymMap, const wxString &aKey)
Definition: odb_feature.h:155
std::map< uint32_t, wxString > m_allSymMap
Definition: odb_feature.h:180
bool AddPolygon(const SHAPE_POLY_SET::POLYGON &aPolygon, FILL_T aFillType, int aWidth, LINE_STYLE aDashType)
void GenerateFeatureFile(std::ostream &ost) const
std::map< BOARD_ITEM *, std::vector< uint32_t > > m_featureIDMap
Definition: odb_feature.h:198
void AddViaDrillHole(const PCB_VIA *aVia, PCB_LAYER_ID aLayer)
std::map< wxString, uint32_t > m_roundRectDonutSymMap
Definition: odb_feature.h:177
FEATURES_MANAGER(BOARD *aBoard, PCB_IO_ODBPP *aPlugin, const wxString &aLayerName)
Definition: odb_feature.h:52
std::map< wxString, uint32_t > m_ovalSymMap
Definition: odb_feature.h:175
void AddPadCircle(const VECTOR2I &aCenter, uint64_t aDiameter, const EDA_ANGLE &aAngle, bool aMirror, double aResize=1.0)
Definition: odb_feature.cpp:55
std::map< wxString, uint32_t > m_roundDonutSymMap
Definition: odb_feature.h:172
std::map< wxString, uint32_t > m_roundRectSymMap
Definition: odb_feature.h:176
void AddFeatureSurface(const SHAPE_POLY_SET::POLYGON &aPolygon, FILL_T aFillType=FILL_T::FILLED_SHAPE)
uint32_t AddRoundRectSymbol(const wxString &aWidth, const wxString &aHeight, const wxString &aRadius)
Definition: odb_feature.h:118
wxString m_layerName
Definition: odb_feature.h:194
uint32_t AddOvalSymbol(const wxString &aWidth, const wxString &aHeight)
Definition: odb_feature.h:112
void GenerateProfileFeatures(std::ostream &ost) const
std::list< std::unique_ptr< ODB_FEATURE > > m_featuresList
Definition: odb_feature.h:197
void AddFeature(Args &&... args)
Definition: odb_feature.h:183
bool AddPolygonCutouts(const SHAPE_POLY_SET::POLYGON &aPolygon)
virtual ~FEATURES_MANAGER()
Definition: odb_feature.h:57
uint32_t AddCircleSymbol(const wxString &aDiameter)
Definition: odb_feature.h:95
uint32_t AddChamferRectSymbol(const wxString &aWidth, const wxString &aHeight, const wxString &aRadius, int aPositions)
Definition: odb_feature.h:133
std::map< wxString, uint32_t > m_padSymMap
Definition: odb_feature.h:173
uint32_t AddRoundDonutSymbol(const wxString &aOuterDim, const wxString &aInnerDim)
Definition: odb_feature.h:100
bool AddContour(const SHAPE_POLY_SET &aPolySet, int aOutline=0, FILL_T aFillType=FILL_T::FILLED_SHAPE)
Definition: odb_feature.cpp:65
std::pair< wxString, wxString > m_end
Definition: odb_feature.h:268
std::pair< wxString, wxString > m_start
Definition: odb_feature.h:267
ODB_ARC(uint32_t aIndex, const std::pair< wxString, wxString > &aStart, const std::pair< wxString, wxString > &aEnd, const std::pair< wxString, wxString > &aCenter, uint32_t aSym, ODB_DIRECTION aDirection)
Definition: odb_feature.h:254
uint32_t m_symIndex
Definition: odb_feature.h:270
virtual void WriteRecordContent(std::ostream &ost) override
virtual FEATURE_TYPE GetFeatureType() override
Definition: odb_feature.h:251
ODB_DIRECTION m_direction
Definition: odb_feature.h:271
std::pair< wxString, wxString > m_center
Definition: odb_feature.h:269
virtual void WriteRecordContent(std::ostream &ost)=0
virtual ~ODB_FEATURE()=default
virtual void WriteFeatures(std::ostream &ost)
virtual FEATURE_TYPE GetFeatureType()=0
const uint32_t m_index
Definition: odb_feature.h:224
ODB_FEATURE(uint32_t aIndex)
Definition: odb_feature.h:206
virtual void WriteRecordContent(std::ostream &ost) override
ODB_LINE(uint32_t aIndex, const std::pair< wxString, wxString > &aStart, const std::pair< wxString, wxString > &aEnd, uint32_t aSym)
Definition: odb_feature.h:230
virtual FEATURE_TYPE GetFeatureType() override
Definition: odb_feature.h:236
std::pair< wxString, wxString > m_start
Definition: odb_feature.h:242
std::pair< wxString, wxString > m_end
Definition: odb_feature.h:243
uint32_t m_symIndex
Definition: odb_feature.h:244
ODB_PAD(uint32_t aIndex, const std::pair< wxString, wxString > &aCenter, uint32_t aSym, EDA_ANGLE aAngle=ANGLE_0, bool aMirror=false, double aResize=1.0)
Definition: odb_feature.h:277
uint32_t m_symIndex
Definition: odb_feature.h:291
virtual void WriteRecordContent(std::ostream &ost) override
virtual FEATURE_TYPE GetFeatureType() override
Definition: odb_feature.h:284
double m_resize
Definition: odb_feature.h:294
bool m_mirror
Definition: odb_feature.h:293
EDA_ANGLE m_angle
Definition: odb_feature.h:292
std::pair< wxString, wxString > m_center
Definition: odb_feature.h:290
void WriteData(std::ostream &ost) const
std::vector< std::vector< SURFACE_LINE > > m_polygons
Definition: odb_feature.h:347
void AddPolygonHoles(const SHAPE_POLY_SET::POLYGON &aPolygon)
std::unique_ptr< ODB_SURFACE_DATA > m_surfaces
Definition: odb_feature.h:308
virtual void WriteRecordContent(std::ostream &ost) override
virtual FEATURE_TYPE GetFeatureType() override
Definition: odb_feature.h:306
virtual ~ODB_SURFACE()=default
Definition: pad.h:54
Represent a set of closed polygons.
std::vector< SHAPE_LINE_CHAIN > POLYGON
represents a single polygon outline with holes.
static constexpr EDA_ANGLE ANGLE_0
Definition: eda_angle.h:401
FILL_T
Definition: eda_shape.h:56
PCB_LAYER_ID
A quick note on layer IDs:
Definition: layer_ids.h:60
@ UNDEFINED_LAYER
Definition: layer_ids.h:61
#define ODB_DIM_R
Definition: odb_defines.h:30
#define ODB_DIM_C
Definition: odb_defines.h:31
#define ODB_DIM_X
Definition: odb_defines.h:29
ODB_DIRECTION
Definition: odb_feature.h:35
LINE_STYLE
Dashed line types.
Definition: stroke_params.h:46
SURFACE_LINE(const VECTOR2I &aEnd)
Definition: odb_feature.h:329
SURFACE_LINE(const VECTOR2I &aEnd, const VECTOR2I &aCenter, ODB_DIRECTION aDirection)
Definition: odb_feature.h:331