KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_board_item.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 The KiCad Developers, see AUTHORS.TXT for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
25#include <eda_item_test_utils.h>
26#include <core/typeinfo.h>
27#include <drc/drc_item.h>
28
29// Code under test
30#include <board.h>
31#include <board_item.h>
32#include <footprint.h>
33#include <pad.h>
34#include <pcb_shape.h>
35#include <pcb_barcode.h>
36#include <pcb_text.h>
37#include <pcb_textbox.h>
38#include <pcb_table.h>
39#include <pcb_tablecell.h>
40#include <pcb_reference_image.h>
41#include <zone.h>
42#include <pcb_track.h>
43#include <pcb_marker.h>
44#include <pcb_dimension.h>
45#include <pcb_point.h>
46#include <pcb_target.h>
47#include <pcb_group.h>
48#include <pcb_board_outline.h>
49
51{
52public:
55 std::shared_ptr<DRC_ITEM> m_drcItem;
57
65
67 {
68 m_text.SetParentGroup( nullptr );
69 }
70
72 {
73 if( !IsPcbnewType( aType ) )
74 return nullptr;
75
76 if( !IsInstantiableType( aType ) )
77 return nullptr;
78
79 switch( aType )
80 {
81 case PCB_FOOTPRINT_T: return new FOOTPRINT( &m_board );
82 case PCB_PAD_T: return new PAD( &m_footprint );
83 case PCB_FIELD_T: return new PCB_FIELD( &m_footprint, FIELD_T::USER );
84 case PCB_SHAPE_T: return new PCB_SHAPE( &m_board );
85
86 case PCB_BARCODE_T:
87 {
88 PCB_BARCODE* barcode = new PCB_BARCODE( &m_board );
89 barcode->SetText( "XXXX" );
90 barcode->AssembleBarcode();
91 return barcode;
92 }
93
94 case PCB_TEXT_T: return new PCB_TEXT( &m_board );
95 case PCB_TEXTBOX_T: return new PCB_TEXTBOX( &m_board );
96 case PCB_TABLECELL_T: return new PCB_TABLECELL( &m_board );
97
98 case PCB_TABLE_T:
99 {
100 PCB_TABLE* table = new PCB_TABLE( &m_board, pcbIUScale.mmToIU( 0.1 ) );
101
102 table->SetColCount( 2 );
103
104 for( int ii = 0; ii < 4; ++ii )
105 {
106 PCB_TABLECELL* cell = new PCB_TABLECELL( &m_board );
107 cell->SetRectangleHeight( 0 );
108 cell->SetRectangleWidth( 0 );
109 table->InsertCell( ii, cell );
110 }
111
112 return table;
113 }
114
116 case PCB_TRACE_T: return new PCB_TRACK( &m_board );
117 case PCB_VIA_T: return new PCB_VIA( &m_board );
118 case PCB_ARC_T: return new PCB_ARC( &m_board );
119 case PCB_MARKER_T: return new PCB_MARKER( m_drcItem, VECTOR2I( 0, 0 ) );
121 case PCB_DIM_LEADER_T: return new PCB_DIM_LEADER( &m_board );
122 case PCB_DIM_CENTER_T: return new PCB_DIM_CENTER( &m_board );
123 case PCB_DIM_RADIAL_T: return new PCB_DIM_RADIAL( &m_board );
125 case PCB_TARGET_T: return new PCB_TARGET( &m_board );
126 case PCB_POINT_T: return new PCB_POINT( &m_board );
127
128 case PCB_ZONE_T:
129 {
130 ZONE* zone = new ZONE( &m_board );
131
132 zone->AppendCorner( VECTOR2I( pcbIUScale.mmToIU( -100 ), pcbIUScale.mmToIU( -50 ) ), -1 );
133 zone->AppendCorner( VECTOR2I( pcbIUScale.mmToIU( -100 ), pcbIUScale.mmToIU( 50 ) ), -1 );
134 zone->AppendCorner( VECTOR2I( pcbIUScale.mmToIU( 100 ), pcbIUScale.mmToIU( 50 ) ), -1 );
135 zone->AppendCorner( VECTOR2I( pcbIUScale.mmToIU( 100 ), pcbIUScale.mmToIU( -50 ) ), -1 );
136
137 return zone;
138 }
139
140 case PCB_GROUP_T:
141 {
142 PCB_GROUP* group = new PCB_GROUP( &m_board );
143
144 // Group position only makes sense if there's at least one item in the group.
145 group->AddItem( &m_text );
146
147 return group;
148 }
149
150 case PCB_T:
151 case PCB_ITEM_LIST_T:
152 case PCB_NETINFO_T:
153 case PCB_GENERATOR_T:
155 return nullptr;
156
157 default:
158 BOOST_FAIL( wxString::Format( "Unhandled type: %d (if you created a new type you need to handle it in "
159 "this switch statement)",
160 aType ) );
161 return nullptr;
162 }
163 }
164
165 static void CompareItems( BOARD_ITEM* aItem, BOARD_ITEM* aOriginalItem )
166 {
167 BOOST_CHECK_EQUAL( aItem->GetPosition(), aOriginalItem->GetPosition() );
168 BOOST_CHECK_EQUAL( aItem->GetBoundingBox().GetTop(), aOriginalItem->GetBoundingBox().GetTop() );
169 BOOST_CHECK_EQUAL( aItem->GetBoundingBox().GetLeft(), aOriginalItem->GetBoundingBox().GetLeft() );
170 BOOST_CHECK_EQUAL( aItem->GetBoundingBox().GetBottom(), aOriginalItem->GetBoundingBox().GetBottom() );
171 BOOST_CHECK_EQUAL( aItem->GetBoundingBox().GetRight(), aOriginalItem->GetBoundingBox().GetRight() );
172 }
173};
174
175
176BOOST_FIXTURE_TEST_SUITE( PcbItem, TEST_BOARD_ITEM_FIXTURE )
177
178
180{
181 for( int i = 0; i < MAX_STRUCT_TYPE_ID; i++ )
182 {
183 KICAD_T type = static_cast<KICAD_T>( i );
184
185 auto item = std::unique_ptr<BOARD_ITEM>( Instantiate( type ) );
186
187 if( item == nullptr )
188 continue;
189
190 BOOST_TEST_CONTEXT( "Class: " << item->GetClass() )
191 {
192 BOOST_CHECK( !ENUM_MAP<KICAD_T>::Instance().ToString( type ).IsEmpty() );
193 }
194 }
195}
196
197
199{
200 for( int i = 0; i < MAX_STRUCT_TYPE_ID; i++ )
201 {
202 KICAD_T type = static_cast<KICAD_T>( i );
203
204 auto item = std::unique_ptr<BOARD_ITEM>( Instantiate( type ) );
205
206 if( item == nullptr )
207 continue;
208
209 BOOST_TEST_CONTEXT( "Class: " << item->GetClass() )
210 {
212 item.get(),
213 []( BOARD_ITEM* aOriginalItem, VECTOR2I aRef )
214 {
215 // FIXME: Update() has to be called after SetPosition() to update dimension shapes.
216 if( PCB_DIMENSION_BASE* dimension = dynamic_cast<PCB_DIMENSION_BASE*>( aOriginalItem ) )
217 dimension->Update();
218
219 auto item = std::unique_ptr<BOARD_ITEM>( aOriginalItem->Duplicate( IGNORE_PARENT_GROUP ) );
220 VECTOR2I originalPos = item->GetPosition();
221
222 // Move to a point, then go back.
223 // This has to be an identity transformation.
224
225 item->Move( aRef );
226 BOOST_CHECK_EQUAL( item->GetPosition(), originalPos + aRef );
227
228 item->Move( -aRef );
229 CompareItems( item.get(), aOriginalItem );
230 } );
231 }
232 }
233}
234
235
237{
238 for( int i = 0; i < MAX_STRUCT_TYPE_ID; i++ )
239 {
240 KICAD_T type = static_cast<KICAD_T>( i );
241
242 auto item = std::unique_ptr<BOARD_ITEM>( Instantiate( type ) );
243
244 if( item == nullptr )
245 continue;
246
247 BOOST_TEST_CONTEXT( "Class: " << item->GetClass() )
248 {
249 // Four same 90 degree rotations are an identity.
250
252 item.get(),
253 []( BOARD_ITEM* aOriginalItem, VECTOR2I aRef )
254 {
255 // FIXME: Update() has to be called after SetPosition() to update dimension shapes.
256 if( PCB_DIMENSION_BASE* dimension = dynamic_cast<PCB_DIMENSION_BASE*>( aOriginalItem ) )
257 dimension->Update();
258 else if( PCB_BARCODE* barcode = dynamic_cast<PCB_BARCODE*>( aOriginalItem ) )
259 barcode->AssembleBarcode();
260
261 auto item = std::unique_ptr<BOARD_ITEM>( aOriginalItem->Duplicate( IGNORE_PARENT_GROUP ) );
262
263 // Four equivalent 90 degree rotations are an identity.
264
265 item->Rotate( aRef, EDA_ANGLE( 90.0, DEGREES_T ) );
266 item->Rotate( aRef, EDA_ANGLE( 90.0, DEGREES_T ) );
267 item->Rotate( aRef, EDA_ANGLE( 90.0, DEGREES_T ) );
268 item->Rotate( aRef, EDA_ANGLE( 90.0, DEGREES_T ) );
269
270 CompareItems( item.get(), aOriginalItem );
271 } );
272 }
273 }
274}
275
276
277BOOST_AUTO_TEST_CASE( FlipLeftRight )
278{
279 for( int i = 0; i < MAX_STRUCT_TYPE_ID; i++ )
280 {
281 KICAD_T type = static_cast<KICAD_T>( i );
282
283 auto item = std::unique_ptr<BOARD_ITEM>( Instantiate( type ) );
284
285 if( item == nullptr )
286 continue;
287
288 BOOST_TEST_CONTEXT( "Class: " << item->GetClass() )
289 {
291 item.get(),
292 []( BOARD_ITEM* aOriginalItem, VECTOR2I aRef )
293 {
294 // FIXME: Update() has to be called after SetPosition() to update dimension shapes.
295 if( PCB_DIMENSION_BASE* dimension = dynamic_cast<PCB_DIMENSION_BASE*>( aOriginalItem ) )
296 dimension->Update();
297
298 auto item = std::unique_ptr<BOARD_ITEM>( aOriginalItem->Duplicate( IGNORE_PARENT_GROUP ) );
299
300 // Two equivalent flips are an identity.
301
302 item->Flip( aRef, FLIP_DIRECTION::LEFT_RIGHT );
303 item->Flip( aRef, FLIP_DIRECTION::LEFT_RIGHT );
304
305 CompareItems( item.get(), aOriginalItem );
306 } );
307 }
308 }
309}
310
311
313{
314 for( int i = 0; i < MAX_STRUCT_TYPE_ID; i++ )
315 {
316 KICAD_T type = static_cast<KICAD_T>( i );
317
318 auto item = std::unique_ptr<BOARD_ITEM>( Instantiate( type ) );
319
320 if( item == nullptr )
321 continue;
322
323 BOOST_TEST_CONTEXT( "Class: " << item->GetClass() )
324 {
326 item.get(),
327 []( BOARD_ITEM* aOriginalItem, VECTOR2I aRef )
328 {
329 // FIXME: Update() has to be called after SetPosition() to update dimension shapes.
330 if( PCB_DIMENSION_BASE* dimension = dynamic_cast<PCB_DIMENSION_BASE*>( aOriginalItem ) )
331 dimension->Update();
332
333 auto item = std::unique_ptr<BOARD_ITEM>( aOriginalItem->Duplicate( IGNORE_PARENT_GROUP ) );
334
335 // Two equivalent flips are an identity.
336
337 item->Flip( aRef, FLIP_DIRECTION::TOP_BOTTOM );
338 item->Flip( aRef, FLIP_DIRECTION::TOP_BOTTOM );
339
340 CompareItems( item.get(), aOriginalItem );
341 } );
342 }
343 }
344}
345
346
constexpr EDA_IU_SCALE pcbIUScale
Definition base_units.h:112
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition board_item.h:79
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:322
constexpr coord_type GetLeft() const
Definition box2.h:228
constexpr coord_type GetRight() const
Definition box2.h:217
constexpr coord_type GetTop() const
Definition box2.h:229
constexpr coord_type GetBottom() const
Definition box2.h:222
virtual VECTOR2I GetPosition() const
Definition eda_item.h:272
virtual const BOX2I GetBoundingBox() const
Return the orthogonal bounding box of this object for display purposes.
Definition eda_item.cpp:110
void SetRectangleHeight(const int &aHeight)
void SetRectangleWidth(const int &aWidth)
static ENUM_MAP< T > & Instance()
Definition property.h:721
void AssembleBarcode()
Assemble the barcode polygon and text polygons into a single polygonal representation.
void SetText(const wxString &aText)
Set the barcode content text to encode.
For better understanding of the points that make a dimension:
Mark the center of a circle or arc with a cross shape.
A leader is a dimension-like object pointing to a specific point.
An orthogonal dimension is like an aligned dimension, but the extension lines are locked to the X or ...
A radial dimension indicates either the radius or diameter of an arc or circle.
A set of BOARD_ITEMs (i.e., without duplicates).
Definition pcb_group.h:53
A PCB_POINT is a 0-dimensional point that is used to mark a position on a PCB, or more usually a foot...
Definition pcb_point.h:43
Object to handle a bitmap image that can be inserted in a PCB.
BOARD_ITEM * Instantiate(KICAD_T aType)
static void CompareItems(BOARD_ITEM *aItem, BOARD_ITEM *aOriginalItem)
std::shared_ptr< DRC_ITEM > m_drcItem
Handle a list of polygons defining a copper zone.
Definition zone.h:74
bool AppendCorner(VECTOR2I aPosition, int aHoleIdx, bool aAllowDuplication=false)
Add a new corner to the zone outline (to the main outline or a hole)
Definition zone.cpp:1134
@ DRCE_MALFORMED_COURTYARD
Definition drc_item.h:67
static void IterateOverPositionsAndReferences(T *aItem, void(*aCallback)(T *, VECTOR2I))
BARCODE class definition.
Class to handle a set of BOARD_ITEMs.
@ USER
The field ID hasn't been set yet; field is invalid.
BOOST_AUTO_TEST_CASE(HorizontalAlignment)
BOOST_AUTO_TEST_CASE(Type)
BOOST_AUTO_TEST_SUITE_END()
BOOST_TEST_CONTEXT("Test Clearance")
BOOST_CHECK_EQUAL(result, "25.4")
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition typeinfo.h:78
@ PCB_T
Definition typeinfo.h:82
@ PCB_SHAPE_T
class PCB_SHAPE, a segment not on copper layers
Definition typeinfo.h:88
@ PCB_DIM_ORTHOGONAL_T
class PCB_DIM_ORTHOGONAL, a linear dimension constrained to x/y
Definition typeinfo.h:106
@ PCB_DIM_LEADER_T
class PCB_DIM_LEADER, a leader dimension (graphic item)
Definition typeinfo.h:103
@ PCB_GENERATOR_T
class PCB_GENERATOR, generator on a layer
Definition typeinfo.h:91
@ PCB_VIA_T
class PCB_VIA, a via (like a track segment on a copper layer)
Definition typeinfo.h:97
@ MAX_STRUCT_TYPE_ID
Definition typeinfo.h:242
@ PCB_DIM_CENTER_T
class PCB_DIM_CENTER, a center point marking (graphic item)
Definition typeinfo.h:104
@ PCB_GROUP_T
class PCB_GROUP, a set of BOARD_ITEMs
Definition typeinfo.h:111
@ PCB_TEXTBOX_T
class PCB_TEXTBOX, wrapped text on a layer
Definition typeinfo.h:93
@ PCB_ZONE_T
class ZONE, a copper pour area
Definition typeinfo.h:108
@ PCB_TEXT_T
class PCB_TEXT, text on a layer
Definition typeinfo.h:92
@ PCB_REFERENCE_IMAGE_T
class PCB_REFERENCE_IMAGE, bitmap on a layer
Definition typeinfo.h:89
@ PCB_ITEM_LIST_T
class BOARD_ITEM_LIST, a list of board items
Definition typeinfo.h:109
@ PCB_FIELD_T
class PCB_FIELD, text associated with a footprint property
Definition typeinfo.h:90
@ PCB_MARKER_T
class PCB_MARKER, a marker used to show something
Definition typeinfo.h:99
@ PCB_BARCODE_T
class PCB_BARCODE, a barcode (graphic item)
Definition typeinfo.h:101
@ PCB_TARGET_T
class PCB_TARGET, a target (graphic item)
Definition typeinfo.h:107
@ PCB_TABLECELL_T
class PCB_TABLECELL, PCB_TEXTBOX for use in tables
Definition typeinfo.h:95
@ PCB_FOOTPRINT_T
class FOOTPRINT, a footprint
Definition typeinfo.h:86
@ PCB_DIM_ALIGNED_T
class PCB_DIM_ALIGNED, a linear dimension (graphic item)
Definition typeinfo.h:102
@ PCB_PAD_T
class PAD, a pad in a footprint
Definition typeinfo.h:87
@ PCB_BOARD_OUTLINE_T
class PCB_BOARD_OUTLINE_T, a pcb board outline item
Definition typeinfo.h:112
@ PCB_ARC_T
class PCB_ARC, an arc track segment on a copper layer
Definition typeinfo.h:98
@ PCB_TABLE_T
class PCB_TABLE, table of PCB_TABLECELLs
Definition typeinfo.h:94
@ PCB_NETINFO_T
class NETINFO_ITEM, a description of a net
Definition typeinfo.h:110
@ PCB_POINT_T
class PCB_POINT, a 0-dimensional point
Definition typeinfo.h:113
@ PCB_TRACE_T
class PCB_TRACK, a track segment (segment on a copper layer)
Definition typeinfo.h:96
@ PCB_DIM_RADIAL_T
class PCB_DIM_RADIAL, a radius or diameter dimension
Definition typeinfo.h:105
constexpr bool IsPcbnewType(const KICAD_T aType)
Definition typeinfo.h:428
constexpr bool IsInstantiableType(const KICAD_T aType)
Definition typeinfo.h:313
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:695