KiCad PCB EDA Suite
Loading...
Searching...
No Matches
array_creator.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 * Created on: 11 Mar 2016, author John Beard
5 * Copyright (C) 2016-2022 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#include "array_creator.h"
26
28#include <board_commit.h>
29#include <pcb_group.h>
30#include <pad.h>
32#include <tool/tool_manager.h>
35
43static void TransformItem( const ARRAY_OPTIONS& aArrOpts, int aIndex, BOARD_ITEM& aItem )
44{
45 const ARRAY_OPTIONS::TRANSFORM transform = aArrOpts.GetTransform( aIndex, aItem.GetPosition() );
46
47 aItem.Move( transform.m_offset );
48 aItem.Rotate( aItem.GetPosition(), transform.m_rotation );
49}
50
51
53{
54 // bail out if no items
55 if( m_selection.Size() == 0 )
56 return;
57
59
60 const bool enableArrayNumbering = m_isFootprintEditor;
61 const VECTOR2I rotPoint = m_selection.GetCenter();
62
63 std::unique_ptr<ARRAY_OPTIONS> array_opts;
64
65 DIALOG_CREATE_ARRAY dialog( &m_parent, array_opts, enableArrayNumbering, rotPoint );
66
67 int ret = dialog.ShowModal();
68
69 if( ret != wxID_OK || array_opts == nullptr )
70 return;
71
72 BOARD_COMMIT commit( &m_parent );
73
74 ARRAY_PAD_NUMBER_PROVIDER pad_number_provider( fp, *array_opts );
75
76 EDA_ITEMS all_added_items;
77
78 // The first item in list is the original item. We do not modify it
79 for( int ptN = 0; ptN < array_opts->GetArraySize(); ptN++ )
80 {
81 PCB_SELECTION items_for_this_block;
82
83 for ( int i = 0; i < m_selection.Size(); ++i )
84 {
85 BOARD_ITEM* item = dynamic_cast<BOARD_ITEM*>( m_selection[ i ] );
86
87 if( !item )
88 continue;
89
90 if( item->Type() == PCB_PAD_T && !m_isFootprintEditor )
91 {
92 // If it is not the footprint editor, then duplicate the parent footprint instead
93 item = item->GetParentFootprint();
94 }
95
96 BOARD_ITEM* this_item = nullptr;
97
98 if( ptN == 0 )
99 {
100 // the first point: we don't own this or add it, but
101 // we might still modify it (position or label)
102 this_item = item;
103
104 commit.Modify( this_item );
105 TransformItem( *array_opts, ptN, *this_item );
106 }
107 else
108 {
110 {
111 // Don't bother incrementing pads: the footprint won't update until commit,
112 // so we can only do this once
113 this_item = fp->DuplicateItem( item );
114 }
115 else
116 {
117 switch( item->Type() )
118 {
119 case PCB_FOOTPRINT_T:
120 case PCB_SHAPE_T:
121 case PCB_BITMAP_T:
122 case PCB_TEXT_T:
123 case PCB_TEXTBOX_T:
124 case PCB_TRACE_T:
125 case PCB_ARC_T:
126 case PCB_VIA_T:
128 case PCB_DIM_CENTER_T:
129 case PCB_DIM_RADIAL_T:
131 case PCB_DIM_LEADER_T:
132 case PCB_TARGET_T:
133 case PCB_ZONE_T:
134 this_item = item->Duplicate();
135 break;
136
137 case PCB_GROUP_T:
138 this_item = static_cast<PCB_GROUP*>( item )->DeepDuplicate();
139 break;
140
141 default:
142 // Silently drop other items (such as footprint texts) from duplication
143 break;
144 }
145
146 // @TODO: we should merge zones. This is a bit tricky, because
147 // the undo command needs saving old area, if it is merged.
148 }
149
150 // Add new items to selection (footprints in the selection will be reannotated)
151 items_for_this_block.Add( this_item );
152
153 if( this_item )
154 {
155 // Because aItem is/can be created from a selected item, and inherits from
156 // it this state, reset the selected stated of aItem:
157 this_item->ClearSelected();
158
159 if( this_item->Type() == PCB_GROUP_T )
160 {
161 static_cast<PCB_GROUP*>( this_item )->RunOnDescendants(
162 [&]( BOARD_ITEM* aItem )
163 {
164 aItem->ClearSelected();
165 commit.Add( aItem );
166 });
167 }
168 else if( this_item->Type() == PCB_FOOTPRINT_T )
169 {
170 static_cast<FOOTPRINT*>( this_item )->RunOnChildren(
171 [&]( BOARD_ITEM* aItem )
172 {
173 aItem->ClearSelected();
174 });
175 }
176
177 TransformItem( *array_opts, ptN, *this_item );
178 commit.Add( this_item );
179 }
180 }
181
182 // attempt to renumber items if the array parameters define
183 // a complete numbering scheme to number by (as opposed to
184 // implicit numbering by incrementing the items during creation
185 if( this_item && array_opts->ShouldNumberItems() )
186 {
187 // Renumber non-aperture pads.
188 if( this_item->Type() == PCB_PAD_T )
189 {
190 PAD& pad = static_cast<PAD&>( *this_item );
191
192 if( pad.CanHaveNumber() )
193 {
194 wxString newNumber = pad_number_provider.GetNextPadNumber();
195 pad.SetNumber( newNumber );
196 }
197 }
198 }
199 }
200
201 if( !m_isFootprintEditor && array_opts->ShouldReannotateFootprints() )
202 {
203 m_toolMgr->GetTool<BOARD_REANNOTATE_TOOL>()->ReannotateDuplicates( items_for_this_block,
204 all_added_items );
205 }
206
207 for( EDA_ITEM* item : items_for_this_block )
208 all_added_items.push_back( item );
209 }
210
213
214 commit.Push( _( "Create an array" ) );
215}
static void TransformItem(const ARRAY_OPTIONS &aArrOpts, int aIndex, BOARD_ITEM &aItem)
Transform a BOARD_ITEM from the given ARRAY_OPTIONS and an index into the array.
bool m_isFootprintEditor
Definition: array_creator.h:61
TOOL_MANAGER * m_toolMgr
Definition: array_creator.h:63
const PCB_SELECTION m_selection
Definition: array_creator.h:62
PCB_BASE_FRAME & m_parent
Definition: array_creator.h:60
Options that govern the setup of an "array" of multiple item.
Definition: array_options.h:38
virtual TRANSFORM GetTransform(int aN, const VECTOR2I &aPos) const =0
Get the transform of the n-th point in the array.
Simple class that sequentially provides numbers from an ARRAY_OPTIONS object, making sure that they d...
wxString GetNextPadNumber()
Get the next available pad name.
virtual void Push(const wxString &aMessage=wxT("A commit"), int aCommitFlags=0) override
Revert the commit by restoring the modified items state.
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:77
virtual void Rotate(const VECTOR2I &aRotCentre, const EDA_ANGLE &aAngle)
Rotate this object.
Definition: board_item.cpp:289
virtual BOARD_ITEM * Duplicate() const
Create a copy of this BOARD_ITEM.
Definition: board_item.cpp:192
virtual void Move(const VECTOR2I &aMoveVector)
Move this object.
Definition: board_item.h:292
FOOTPRINT * GetParentFootprint() const
Definition: board_item.cpp:247
FOOTPRINT * GetFirstFootprint() const
Get the first footprint on the board or nullptr.
Definition: board.h:406
COMMIT & Modify(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Create an undo entry for an item that has been already modified.
Definition: commit.h:103
COMMIT & Add(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Notify observers that aItem has been added.
Definition: commit.h:78
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:85
virtual VECTOR2I GetPosition() const
Definition: eda_item.h:239
KICAD_T Type() const
Returns the type of object.
Definition: eda_item.h:97
void ClearSelected()
Definition: eda_item.h:118
BOARD_ITEM * DuplicateItem(const BOARD_ITEM *aItem, bool aAddToFootprint=false)
Duplicate a given item within the footprint, optionally adding it to the board.
Definition: footprint.cpp:2057
Definition: pad.h:58
static TOOL_ACTION selectionClear
Clear the current selection.
Definition: pcb_actions.h:68
static TOOL_ACTION selectItems
Select a list of items (specified as the event parameter)
Definition: pcb_actions.h:75
BOARD * GetBoard() const
A set of BOARD_ITEMs (i.e., without duplicates).
Definition: pcb_group.h:51
virtual void Add(EDA_ITEM *aItem)
Definition: selection.cpp:42
virtual VECTOR2I GetCenter() const
Returns the center point of the selection area bounding box.
Definition: selection.cpp:93
int Size() const
Returns the number of selected parts.
Definition: selection.h:115
bool RunAction(const std::string &aActionName, T aParam)
Run the specified action immediately, pausing the current action to run the new one.
Definition: tool_manager.h:145
#define _(s)
std::vector< EDA_ITEM * > EDA_ITEMS
Define list of drawing items for screens.
Definition: eda_item.h:513
Class to handle a set of BOARD_ITEMs.
Transform applied to an object by this array.
Definition: array_options.h:60
@ 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:102
@ PCB_DIM_LEADER_T
class PCB_DIM_LEADER, a leader dimension (graphic item)
Definition: typeinfo.h:99
@ PCB_VIA_T
class PCB_VIA, a via (like a track segment on a copper layer)
Definition: typeinfo.h:94
@ PCB_DIM_CENTER_T
class PCB_DIM_CENTER, a center point marking (graphic item)
Definition: typeinfo.h:100
@ PCB_GROUP_T
class PCB_GROUP, a set of BOARD_ITEMs
Definition: typeinfo.h:107
@ PCB_TEXTBOX_T
class PCB_TEXTBOX, wrapped text on a layer
Definition: typeinfo.h:92
@ PCB_ZONE_T
class ZONE, a copper pour area
Definition: typeinfo.h:104
@ PCB_TEXT_T
class PCB_TEXT, text on a layer
Definition: typeinfo.h:91
@ PCB_TARGET_T
class PCB_TARGET, a target (graphic item)
Definition: typeinfo.h:103
@ 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:98
@ PCB_BITMAP_T
class PCB_BITMAP, bitmap on a layer
Definition: typeinfo.h:89
@ PCB_PAD_T
class PAD, a pad in a footprint
Definition: typeinfo.h:87
@ PCB_ARC_T
class PCB_ARC, an arc track segment on a copper layer
Definition: typeinfo.h:95
@ PCB_TRACE_T
class PCB_TRACK, a track segment (segment on a copper layer)
Definition: typeinfo.h:93
@ PCB_DIM_RADIAL_T
class PCB_DIM_RADIAL, a radius or diameter dimension
Definition: typeinfo.h:101