KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcad_copper_pour.cpp
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 (C) 2007, 2008 Lubo Racko <[email protected]>
5 * Copyright (C) 2007, 2008, 2012-2013 Alexander Lunev <[email protected]>
6 * Copyright (C) 2012 KiCad Developers, see AUTHORS.TXT for contributors.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, you may find one here:
20 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
21 * or you may search the http://www.gnu.org website for the version 2 license,
22 * or you may write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 */
25
27
28#include <common.h>
29#include <xnode.h>
30
31#include <wx/string.h>
32
33namespace PCAD2KICAD {
34
35PCAD_COPPER_POUR::PCAD_COPPER_POUR( PCAD_CALLBACKS* aCallbacks, BOARD* aBoard, int aPCadLayer ) :
36 PCAD_POLYGON( aCallbacks, aBoard, aPCadLayer )
37{
38 m_filled = false;
39}
40
41
43{
44}
45
46
47bool PCAD_COPPER_POUR::Parse( XNODE* aNode, const wxString& aDefaultUnits,
48 const wxString& aActualConversion )
49{
50 XNODE* lNode;
51 wxString pourType, str, propValue;
52 int pourSpacing, thermalWidth;
53
54 lNode = FindNode( aNode, wxT( "netNameRef" ) );
55
56 if( lNode )
57 {
58 lNode->GetAttribute( wxT( "Name" ), &propValue );
59 propValue.Trim( false );
60 propValue.Trim( true );
61 m_Net = propValue;
63 }
64
65 if( FindNode( aNode, wxT( "width" ) ) )
66 {
67 SetWidth( FindNode( aNode, wxT( "width" ) )->GetNodeContent(), aDefaultUnits, &m_Width,
68 aActualConversion );
69 }
70
71 if( FindNode( aNode, wxT( "pourSpacing" ) ) )
72 {
73 SetWidth( FindNode( aNode, wxT( "pourSpacing" ) )->GetNodeContent(), aDefaultUnits,
74 &pourSpacing, aActualConversion );
75 }
76
77 if( FindNode( aNode, wxT( "thermalWidth" ) ) )
78 {
79 SetWidth( FindNode( aNode, wxT( "thermalWidth" ) )->GetNodeContent(), aDefaultUnits,
80 &thermalWidth, aActualConversion );
81 }
82
83 if( FindNode( aNode, wxT( "island" ) ) )
84 m_filled = true;
85
86 lNode = FindNode( aNode, wxT( "pcbPoly" ) );
87
88 // If the pour doesn't have the newer `pcbPoly` tag, check for the older `pourOutline` tag
89 if( !lNode )
90 lNode = FindNode( aNode, wxT( "pourOutline" ) );
91
92 if( lNode )
93 {
94 // retrieve copper pour outline
95 FormPolygon( lNode, &m_Outline, aDefaultUnits, aActualConversion );
96
97 if( m_Outline.GetCount() <= 0 )
98 {
99 // empty polygon may have been in the file
100 return false;
101 }
102
103 m_PositionX = m_Outline[0]->x;
104 m_PositionY = m_Outline[0]->y;
105 }
106 else
107 {
108 return false;
109 }
110
111 return true;
112}
113
114} // namespace PCAD2KICAD
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:281
virtual bool Parse(XNODE *aNode, const wxString &aDefaultUnits, const wxString &aActualConversion) override
PCAD_COPPER_POUR(PCAD_CALLBACKS *aCallbacks, BOARD *aBoard, int aPCadLayer)
int GetNetCode(const wxString &aNetName) const
VERTICES_ARRAY m_Outline
Definition: pcad_polygon.h:65
void FormPolygon(XNODE *aNode, VERTICES_ARRAY *aPolygon, const wxString &aDefaultUnits, const wxString &actualConversion)
Hold an XML or S-expression element.
Definition: xnode.h:44
The common library.
void SetWidth(const wxString &aStr, const wxString &aDefaultMeasurementUnit, int *aWidth, const wxString &aActualConversion)
XNODE * FindNode(XNODE *aChild, const wxString &aTag)