KiCad PCB EDA Suite
Loading...
Searching...
No Matches
view_group.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) 2013 CERN
5 * Copyright (C) 2021 KiCad Developers, see AUTHORS.txt for contributors.
6 * @author Maciej Suminski <[email protected]>
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 */
26
34#include <set>
35#include <core/kicad_algo.h>
36#include <view/view_group.h>
37#include <view/view.h>
38#include <view/view_item.h>
39#include <gal/painter.h>
41#include <layer_ids.h>
42
43using namespace KIGFX;
44
46 VIEW_ITEM(),
47 m_layer( LAYER_SELECT_OVERLAY )
48{
49}
50
51
53{
54 // VIEW_ITEM destructor removes the object from its parent view
55}
56
57
59{
60 m_groupItems.push_back( aItem );
61}
62
63
65{
67}
68
69
71{
72 m_groupItems.clear();
73}
74
75
76unsigned int VIEW_GROUP::GetSize() const
77{
78 return m_groupItems.size();
79}
80
81
82VIEW_ITEM *VIEW_GROUP::GetItem( unsigned int idx ) const
83{
84 return m_groupItems[idx];
85}
86
87
89{
90 BOX2I bb;
91
92 if( !m_groupItems.size() )
93 {
94 bb.SetMaximum();
95 }
96 else
97 {
98 bb = m_groupItems[0]->ViewBBox();
99
100 for( VIEW_ITEM* item : m_groupItems )
101 bb.Merge( item->ViewBBox() );
102 }
103
104 return bb;
105}
106
107
108void VIEW_GROUP::ViewDraw( int aLayer, VIEW* aView ) const
109{
110 KIGFX::GAL* gal = aView->GetGAL();
111 PAINTER* painter = aView->GetPainter();
112 bool isSelection = m_layer == LAYER_SELECT_OVERLAY;
113
114 const std::vector<VIEW_ITEM*> drawList = updateDrawList();
115 constexpr double HIDE = std::numeric_limits<double>::max();
116
117 std::map<int, std::vector<VIEW_ITEM*>> layer_item_map;
118
119 // Build a list of layers used by the items in the group
120 for( VIEW_ITEM* item : drawList )
121 {
122 int item_layers[VIEW::VIEW_MAX_LAYERS], item_layers_count;
123 item->ViewGetLayers( item_layers, item_layers_count );
124
125 for( int i = 0; i < item_layers_count; i++ )
126 {
127 wxCHECK2_MSG( item_layers[i] <= LAYER_ID_COUNT, continue, wxT( "Invalid item layer" ) );
128 layer_item_map[ item_layers[i] ].push_back( item );
129 }
130 }
131
132 int layers[VIEW::VIEW_MAX_LAYERS] = { 0 };
133 int layers_count = 0;
134
135 for( const std::pair<const int, std::vector<VIEW_ITEM*>>& entry : layer_item_map )
136 layers[ layers_count++ ] = entry.first;
137
138 aView->SortLayers( layers, layers_count );
139
140 // Now draw the layers in sorted order
141
142 gal->PushDepth();
143
144 for( int i = 0; i < layers_count; i++ )
145 {
146 int layer = layers[i];
147
148 if( IsZoneFillLayer( layer ) )
149 layer = layer - LAYER_ZONE_START;
150
151 bool draw = aView->IsLayerVisible( layer );
152
153 if( isSelection )
154 {
155 switch( layer )
156 {
157 case LAYER_PADS_TH:
162 draw = true;
163 break;
164 default:
165 break;
166 }
167 }
168
169 if( draw )
170 {
171 gal->AdvanceDepth();
172
173 for( VIEW_ITEM* item : layer_item_map[ layers[i] ] )
174 {
175 // Ignore LOD scale for selected items, but don't ignore things explicitly
176 // hidden.
177 if( item->ViewGetLOD( layer, aView ) == HIDE )
178 continue;
179
180 if( !painter->Draw( item, layers[i] ) )
181 item->ViewDraw( layers[i], aView ); // Alternative drawing method
182 }
183 }
184 }
185
186 gal->PopDepth();
187}
188
189
190void VIEW_GROUP::ViewGetLayers( int aLayers[], int& aCount ) const
191{
192 // Everything is displayed on a single layer
193 aLayers[0] = m_layer;
194 aCount = 1;
195}
196
197
199{
200 for( unsigned int i = 0 ; i < GetSize(); i++ )
201 delete GetItem( i );
202
203 Clear();
204}
205
206
207const std::vector<VIEW_ITEM*> VIEW_GROUP::updateDrawList() const
208{
209 return m_groupItems;
210}
211
212
213/*void VIEW_GROUP::ItemsSetVisibility( bool aVisible )
214{
215 for(unsigned int i = 0 ; i < GetSize(); i++)
216 GetItem(i)->ViewSetVisible( aVisible );
217}
218
219
220void VIEW_GROUP::ItemsViewUpdate( VIEW_ITEM::VIEW_UPDATE_FLAGS aFlags )
221{
222 for(unsigned int i = 0 ; i < GetSize(); i++)
223 GetItem(i)->ViewUpdate( aFlags );
224}*/
void SetMaximum()
Definition: box2.h:64
BOX2< Vec > & Merge(const BOX2< Vec > &aRect)
Modify the position and size of the rectangle in order to contain aRect.
Definition: box2.h:589
Abstract interface for drawing on a 2D-surface.
void AdvanceDepth()
Change the current depth to deeper, so it is possible to draw objects right beneath other.
void PushDepth()
Store current drawing depth on the depth stack.
void PopDepth()
Restore previously stored drawing depth for the depth stack.
Contains all the knowledge about how to draw graphical object onto any particular output device.
Definition: painter.h:58
virtual bool Draw(const VIEW_ITEM *aItem, int aLayer)=0
Takes an instance of VIEW_ITEM and passes it to a function that knows how to draw the item.
virtual void Clear()
Remove all the stored items from the group.
Definition: view_group.cpp:70
virtual unsigned int GetSize() const
Return the number of stored items.
Definition: view_group.cpp:76
virtual void ViewDraw(int aLayer, VIEW *aView) const override
Draw all the stored items in the group on the given layer.
Definition: view_group.cpp:108
virtual VIEW_ITEM * GetItem(unsigned int aIdx) const
Definition: view_group.cpp:82
void FreeItems()
Free all the items that were added to the group.
Definition: view_group.cpp:198
virtual void ViewGetLayers(int aLayers[], int &aCount) const override
Return all the layers used by the stored items.
Definition: view_group.cpp:190
std::vector< VIEW_ITEM * > m_groupItems
Definition: view_group.h:113
virtual void Remove(VIEW_ITEM *aItem)
Remove an item from the group.
Definition: view_group.cpp:64
VIEW_GROUP(VIEW *aView=nullptr)
Definition: view_group.cpp:45
virtual ~VIEW_GROUP()
Definition: view_group.cpp:52
virtual void Add(VIEW_ITEM *aItem)
Add an item to the group.
Definition: view_group.cpp:58
virtual const std::vector< VIEW_ITEM * > updateDrawList() const
Definition: view_group.cpp:207
virtual const BOX2I ViewBBox() const override
Return the bounding box for all stored items covering all its layers.
Definition: view_group.cpp:88
An abstract base class for deriving all objects that can be added to a VIEW.
Definition: view_item.h:77
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition: view.h:69
void SortLayers(int aLayers[], int &aCount) const
Change the order of given layer ids, so after sorting the order corresponds to layers rendering order...
Definition: view.cpp:645
GAL * GetGAL() const
Return the #GAL this view is using to draw graphical primitives.
Definition: view.h:195
static constexpr int VIEW_MAX_LAYERS
Rendering order modifier for layers that are marked as top layers.
Definition: view.h:727
bool IsLayerVisible(int aLayer) const
Return information about visibility of a particular layer.
Definition: view.h:410
PAINTER * GetPainter() const
Return the painter object used by the view for drawing #VIEW_ITEMS.
Definition: view.h:213
#define LAYER_ID_COUNT
Must update this if you add any enums after GerbView!
Definition: layer_ids.h:471
@ LAYER_PAD_PLATEDHOLES
to draw pad holes (plated)
Definition: layer_ids.h:215
@ LAYER_ZONE_START
Virtual layers for stacking zones and tracks on a given copper layer.
Definition: layer_ids.h:254
@ LAYER_PADS_SMD_BK
smd pads, back layer
Definition: layer_ids.h:204
@ LAYER_PADS_TH
multilayer pads, usually with holes
Definition: layer_ids.h:214
@ LAYER_PADS_SMD_FR
smd pads, front layer
Definition: layer_ids.h:203
@ LAYER_SELECT_OVERLAY
currently selected items overlay
Definition: layer_ids.h:220
@ LAYER_PAD_HOLEWALLS
Definition: layer_ids.h:234
bool IsZoneFillLayer(int aLayer)
Definition: layer_ids.h:1017
The Cairo implementation of the graphics abstraction layer.
Definition: color4d.cpp:247
void delete_matching(_Container &__c, _Value __value)
Covers for the horrifically named std::remove and std::remove_if (neither of which remove anything).
Definition: kicad_algo.h:164