/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright The KiCad Developers, see AUTHORS.txt for contributors. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, you may find one here: * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * or you may search the http://www.gnu.org website for the version 2 license, * or you may write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ #include #include #include #include #include #include #include #include #include #include #include #include #include SCH_GROUP::SCH_GROUP() : SCH_ITEM( nullptr, SCH_GROUP_T ) { } SCH_GROUP::SCH_GROUP( SCH_ITEM* aParent ) : SCH_ITEM( aParent, SCH_GROUP_T ) { } SCH_GROUP::SCH_GROUP( SCH_SCREEN* aParent ) : SCH_ITEM( aParent, SCH_GROUP_T ) { } bool SCH_GROUP::IsGroupableType( KICAD_T aType ) { switch( aType ) { case SCH_SYMBOL_T: case SCH_PIN_T: case SCH_SHAPE_T: case SCH_BITMAP_T: case SCH_FIELD_T: case SCH_TEXT_T: case SCH_TEXTBOX_T: case SCH_TABLE_T: case SCH_GROUP_T: case SCH_LINE_T: case SCH_JUNCTION_T: case SCH_NO_CONNECT_T: case SCH_BUS_WIRE_ENTRY_T: case SCH_BUS_BUS_ENTRY_T: case SCH_LABEL_T: case SCH_GLOBAL_LABEL_T: case SCH_HIER_LABEL_T: case SCH_RULE_AREA_T: case SCH_DIRECTIVE_LABEL_T: case SCH_SHEET_PIN_T: case SCH_SHEET_T: return true; default: return false; } } bool SCH_GROUP::AddItem( EDA_ITEM* aItem ) { wxCHECK_MSG( aItem, false, wxT( "Nullptr added to group." ) ); wxCHECK_MSG( IsGroupableType( aItem->Type() ), false, wxT( "Invalid item type added to group: " ) + aItem->GetTypeDesc() ); // Items can only be in one group at a time if( aItem->GetParentGroup() ) aItem->GetParentGroup()->RemoveItem( aItem ); m_items.insert( aItem ); aItem->SetParentGroup( this ); return true; } bool SCH_GROUP::RemoveItem( EDA_ITEM* aItem ) { wxCHECK_MSG( aItem, false, wxT( "Nullptr removed from group." ) ); // Only clear the item's group field if it was inside this group if( m_items.erase( aItem ) == 1 ) { aItem->SetParentGroup( nullptr ); return true; } return false; } void SCH_GROUP::RemoveAll() { for( EDA_ITEM* item : m_items ) item->SetParentGroup( nullptr ); m_items.clear(); } std::unordered_set SCH_GROUP::GetSchItems() const { std::unordered_set items; for( EDA_ITEM* item : m_items ) { SCH_ITEM* sch_item = dynamic_cast( item ); if( sch_item ) { items.insert( sch_item ); } } return items; } /* * @return if not in the symbol editor and aItem is in a symbol, returns the * symbol's parent group. Otherwise, returns the aItem's parent group. */ EDA_GROUP* getClosestGroup( SCH_ITEM* aItem, bool isSymbolEditor ) { if( !isSymbolEditor && aItem->GetParent() && aItem->GetParent()->Type() == SCH_SYMBOL_T ) return static_cast( aItem->GetParent() )->GetParentGroup(); else return aItem->GetParentGroup(); } /// Returns the top level group inside the aScope group, or nullptr EDA_GROUP* getNestedGroup( SCH_ITEM* aItem, EDA_GROUP* aScope, bool isSymbolEditor ) { EDA_GROUP* group = getClosestGroup( aItem, isSymbolEditor ); if( group == aScope ) return nullptr; while( group && group->AsEdaItem()->GetParentGroup() && group->AsEdaItem()->GetParentGroup() != aScope ) { if( group->AsEdaItem()->GetParent()->Type() == LIB_SYMBOL_T && isSymbolEditor ) break; group = group->AsEdaItem()->GetParentGroup(); } return group; } EDA_GROUP* SCH_GROUP::TopLevelGroup( SCH_ITEM* aItem, EDA_GROUP* aScope, bool isSymbolEditor ) { return getNestedGroup( aItem, aScope, isSymbolEditor ); } bool SCH_GROUP::WithinScope( SCH_ITEM* aItem, SCH_GROUP* aScope, bool isSymbolEditor ) { EDA_GROUP* group = getClosestGroup( aItem, isSymbolEditor ); if( group && group == aScope ) return true; EDA_GROUP* nested = getNestedGroup( aItem, aScope, isSymbolEditor ); return nested && nested->AsEdaItem()->GetParentGroup() && nested->AsEdaItem()->GetParentGroup() == aScope; } VECTOR2I SCH_GROUP::GetPosition() const { return GetBoundingBox().Centre(); } void SCH_GROUP::SetPosition( const VECTOR2I& aNewpos ) { VECTOR2I delta = aNewpos - GetPosition(); Move( delta ); } EDA_ITEM* SCH_GROUP::Clone() const { // Use copy constructor to get the same uuid and other fields SCH_GROUP* newGroup = new SCH_GROUP( *this ); return newGroup; } SCH_GROUP* SCH_GROUP::DeepClone() const { // Use copy constructor to get the same uuid and other fields SCH_GROUP* newGroup = new SCH_GROUP( *this ); newGroup->m_items.clear(); for( EDA_ITEM* member : m_items ) { if( member->Type() == SCH_GROUP_T ) newGroup->AddItem( static_cast( member )->DeepClone() ); else newGroup->AddItem( static_cast( member->Clone() ) ); } return newGroup; } SCH_GROUP* SCH_GROUP::DeepDuplicate() const { SCH_GROUP* newGroup = static_cast( Duplicate() ); newGroup->m_items.clear(); for( EDA_ITEM* member : m_items ) { if( member->Type() == SCH_GROUP_T ) newGroup->AddItem( static_cast( member )->DeepDuplicate() ); else newGroup->AddItem( static_cast( member )->Duplicate() ); } return newGroup; } void SCH_GROUP::swapData( SCH_ITEM* aImage ) { assert( aImage->Type() == SCH_GROUP_T ); std::swap( *( (SCH_GROUP*) this ), *( (SCH_GROUP*) aImage ) ); } bool SCH_GROUP::HitTest( const VECTOR2I& aPosition, int aAccuracy ) const { // Groups are selected by promoting a selection of one of their children return false; } bool SCH_GROUP::HitTest( const BOX2I& aRect, bool aContained, int aAccuracy ) const { // Groups are selected by promoting a selection of one of their children return false; } const BOX2I SCH_GROUP::GetBoundingBox() const { BOX2I bbox; for( EDA_ITEM* item : m_items ) { if( item->Type() == SCH_SYMBOL_T || item->Type() == LIB_SYMBOL_T ) bbox.Merge( static_cast( item )->GetBoundingBox() ); else bbox.Merge( item->GetBoundingBox() ); } bbox.Inflate( schIUScale.MilsToIU( 10 ) ); return bbox; } INSPECT_RESULT SCH_GROUP::Visit( INSPECTOR aInspector, void* aTestData, const std::vector& aScanTypes ) { for( KICAD_T scanType : aScanTypes ) { if( scanType == Type() ) { if( INSPECT_RESULT::QUIT == aInspector( this, aTestData ) ) return INSPECT_RESULT::QUIT; } } return INSPECT_RESULT::CONTINUE; } std::vector SCH_GROUP::ViewGetLayers() const { return { LAYER_SCHEMATIC_ANCHOR }; } double SCH_GROUP::ViewGetLOD( int aLayer, const KIGFX::VIEW* aView ) const { if( aView->IsLayerVisible( LAYER_SCHEMATIC_ANCHOR ) ) return LOD_SHOW; return LOD_HIDE; } void SCH_GROUP::Move( const VECTOR2I& aMoveVector ) { for( EDA_ITEM* member : m_items ) static_cast( member )->Move( aMoveVector ); } void SCH_GROUP::Rotate( const VECTOR2I& aCenter, bool aRotateCCW ) { for( EDA_ITEM* member : m_items ) static_cast( member )->Rotate( aCenter, aRotateCCW ); } void SCH_GROUP::MirrorHorizontally( int aCenter ) { for( EDA_ITEM* item : m_items ) static_cast( item )->MirrorHorizontally( aCenter ); } void SCH_GROUP::MirrorVertically( int aCenter ) { for( EDA_ITEM* item : m_items ) static_cast( item )->MirrorVertically( aCenter ); } wxString SCH_GROUP::GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const { if( m_name.empty() ) return wxString::Format( _( "Unnamed Group, %zu members" ), m_items.size() ); else return wxString::Format( _( "Group '%s', %zu members" ), m_name, m_items.size() ); } BITMAPS SCH_GROUP::GetMenuImage() const { return BITMAPS::module; } void SCH_GROUP::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector& aList ) { aList.emplace_back( _( "Group" ), m_name.empty() ? _( "" ) : m_name ); aList.emplace_back( _( "Members" ), wxString::Format( wxT( "%zu" ), m_items.size() ) ); } void SCH_GROUP::RunOnChildren( const std::function& aFunction, RECURSE_MODE aMode ) { try { for( EDA_ITEM* item : m_items ) { aFunction( static_cast( item ) ); if( item->Type() == SCH_GROUP_T ) static_cast( item )->RunOnChildren( aFunction, RECURSE_MODE::RECURSE ); } } catch( std::bad_function_call& ) { wxFAIL_MSG( wxT( "Error calling function in SCH_GROUP::RunOnChildren" ) ); } } bool SCH_GROUP::operator==( const SCH_ITEM& aSchItem ) const { if( aSchItem.Type() != Type() ) return false; const SCH_GROUP& other = static_cast( aSchItem ); return *this == other; } bool SCH_GROUP::operator==( const SCH_GROUP& aOther ) const { if( m_items.size() != aOther.m_items.size() ) return false; // The items in groups are in unordered sets hashed by the pointer value, so we need to // order them by UUID (EDA_ITEM_SET) to compare EDA_ITEM_SET itemSet( m_items.begin(), m_items.end() ); EDA_ITEM_SET otherItemSet( aOther.m_items.begin(), aOther.m_items.end() ); for( auto it1 = itemSet.begin(), it2 = otherItemSet.begin(); it1 != itemSet.end(); ++it1, ++it2 ) { // Compare UUID instead of the items themselves because we only care if the contents // of the group has changed, not which elements in the group have changed if( ( *it1 )->m_Uuid != ( *it2 )->m_Uuid ) return false; } return true; } double SCH_GROUP::Similarity( const SCH_ITEM& aOther ) const { if( aOther.Type() != Type() ) return 0.0; const SCH_GROUP& other = static_cast( aOther ); double similarity = 0.0; for( EDA_ITEM* item : m_items ) { for( EDA_ITEM* otherItem : other.m_items ) { similarity += static_cast( item )->Similarity( *static_cast( otherItem ) ); } } return similarity / m_items.size(); } static struct SCH_GROUP_DESC { SCH_GROUP_DESC() { PROPERTY_MANAGER& propMgr = PROPERTY_MANAGER::Instance(); REGISTER_TYPE( SCH_GROUP ); propMgr.AddTypeCast( new TYPE_CAST ); propMgr.AddTypeCast( new TYPE_CAST ); propMgr.InheritsAfter( TYPE_HASH( SCH_GROUP ), TYPE_HASH( SCH_ITEM ) ); propMgr.InheritsAfter( TYPE_HASH( SCH_GROUP ), TYPE_HASH( EDA_GROUP ) ); propMgr.Mask( TYPE_HASH( SCH_GROUP ), TYPE_HASH( SCH_ITEM ), _HKI( "Position X" ) ); propMgr.Mask( TYPE_HASH( SCH_GROUP ), TYPE_HASH( SCH_ITEM ), _HKI( "Position Y" ) ); const wxString groupTab = _HKI( "Group Properties" ); propMgr.AddProperty( new PROPERTY( _HKI( "Name" ), &SCH_GROUP::SetName, &SCH_GROUP::GetName ), groupTab ); } } _SCH_GROUP_DESC;