2023-10-06 17:04:00 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2023 Alex Shvartzkop <dudesuchamazing@gmail.com>
|
|
|
|
* Copyright (C) 2023 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 <pcb_generator.h>
|
|
|
|
|
|
|
|
|
|
|
|
PCB_GENERATOR::PCB_GENERATOR( BOARD_ITEM* aParent, PCB_LAYER_ID aLayer ) :
|
|
|
|
PCB_GROUP( aParent, PCB_GENERATOR_T, aLayer )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PCB_GENERATOR::~PCB_GENERATOR()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-01-16 23:37:12 +00:00
|
|
|
PCB_GENERATOR* PCB_GENERATOR::DeepClone() const
|
|
|
|
{
|
|
|
|
// Use copy constructor to get the same uuid and other fields
|
|
|
|
PCB_GENERATOR* newGenerator = static_cast<PCB_GENERATOR*>( Clone() );
|
|
|
|
newGenerator->m_items.clear();
|
|
|
|
|
|
|
|
for( BOARD_ITEM* member : m_items )
|
|
|
|
{
|
|
|
|
if( member->Type() == PCB_GROUP_T )
|
|
|
|
newGenerator->AddItem( static_cast<PCB_GROUP*>( member )->DeepClone() );
|
|
|
|
else
|
|
|
|
newGenerator->AddItem( static_cast<BOARD_ITEM*>( member->Clone() ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
return newGenerator;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-12-16 16:11:45 +00:00
|
|
|
void PCB_GENERATOR::EditStart( GENERATOR_TOOL* aTool, BOARD* aBoard, BOARD_COMMIT* aCommit )
|
2023-10-06 17:04:00 +00:00
|
|
|
{
|
|
|
|
aCommit->Modify( this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-12-16 16:11:45 +00:00
|
|
|
void PCB_GENERATOR::EditPush( GENERATOR_TOOL* aTool, BOARD* aBoard, BOARD_COMMIT* aCommit,
|
|
|
|
const wxString& aCommitMsg, int aCommitFlags )
|
2023-10-06 17:04:00 +00:00
|
|
|
{
|
2023-10-09 14:22:16 +00:00
|
|
|
aCommit->Push( aCommitMsg, aCommitFlags );
|
2023-10-06 17:04:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-12-16 16:11:45 +00:00
|
|
|
void PCB_GENERATOR::EditRevert( GENERATOR_TOOL* aTool, BOARD* aBoard, BOARD_COMMIT* aCommit )
|
2023-10-06 17:04:00 +00:00
|
|
|
{
|
|
|
|
aCommit->Revert();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-12-16 16:11:45 +00:00
|
|
|
void PCB_GENERATOR::Remove( GENERATOR_TOOL* aTool, BOARD* aBoard, BOARD_COMMIT* aCommit )
|
2023-10-06 17:04:00 +00:00
|
|
|
{
|
|
|
|
aCommit->Remove( this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-12-16 16:11:45 +00:00
|
|
|
bool PCB_GENERATOR::Update( GENERATOR_TOOL* aTool, BOARD* aBoard, BOARD_COMMIT* aCommit )
|
2023-10-06 17:04:00 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-12-02 10:32:45 +00:00
|
|
|
std::vector<EDA_ITEM*> PCB_GENERATOR::GetPreviewItems( GENERATOR_TOOL* aTool,
|
|
|
|
PCB_BASE_EDIT_FRAME* aFrame,
|
2023-12-06 13:08:05 +00:00
|
|
|
bool aStatusItemsOnly )
|
2023-12-02 10:32:45 +00:00
|
|
|
{
|
|
|
|
return std::vector<EDA_ITEM*>();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-10-06 17:04:00 +00:00
|
|
|
bool PCB_GENERATOR::MakeEditPoints( std::shared_ptr<EDIT_POINTS> aEditPoints ) const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PCB_GENERATOR::UpdateFromEditPoints( std::shared_ptr<EDIT_POINTS> aEditPoints,
|
2023-12-06 13:08:05 +00:00
|
|
|
BOARD_COMMIT* aCommit )
|
2023-10-06 17:04:00 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PCB_GENERATOR::UpdateEditPoints( std::shared_ptr<EDIT_POINTS> aEditPoints )
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const BOX2I PCB_GENERATOR::GetBoundingBox() const
|
|
|
|
{
|
|
|
|
BOX2I bbox;
|
|
|
|
return bbox;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PCB_GENERATOR::Move( const VECTOR2I& aMoveVector )
|
|
|
|
{
|
|
|
|
m_origin += aMoveVector;
|
|
|
|
|
|
|
|
PCB_GROUP::Move( aMoveVector );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PCB_GENERATOR::AddItem( BOARD_ITEM* aItem )
|
|
|
|
{
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LSET PCB_GENERATOR::GetLayerSet() const
|
|
|
|
{
|
|
|
|
return PCB_GROUP::GetLayerSet() | LSET( GetLayer() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PCB_GENERATOR::SetLayer( PCB_LAYER_ID aLayer )
|
|
|
|
{
|
|
|
|
m_layer = aLayer;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wxString PCB_GENERATOR::GetGeneratorType() const
|
|
|
|
{
|
|
|
|
return m_generatorType;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const STRING_ANY_MAP PCB_GENERATOR::GetProperties() const
|
|
|
|
{
|
|
|
|
STRING_ANY_MAP props( pcbIUScale.IU_PER_MM );
|
|
|
|
|
2023-10-19 00:31:01 +00:00
|
|
|
#ifdef GENERATOR_ORDER
|
2023-10-06 17:04:00 +00:00
|
|
|
props.set( "update_order", m_updateOrder );
|
2023-10-19 00:31:01 +00:00
|
|
|
#endif
|
|
|
|
|
2023-10-06 17:04:00 +00:00
|
|
|
props.set( "origin", m_origin );
|
|
|
|
|
|
|
|
return props;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PCB_GENERATOR::SetProperties( const STRING_ANY_MAP& aProps )
|
|
|
|
{
|
2023-10-19 00:31:01 +00:00
|
|
|
#ifdef GENERATOR_ORDER
|
2023-10-06 17:04:00 +00:00
|
|
|
aProps.get_to( "update_order", m_updateOrder );
|
2023-10-19 00:31:01 +00:00
|
|
|
#endif
|
|
|
|
|
2023-10-06 17:04:00 +00:00
|
|
|
aProps.get_to( "origin", m_origin );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::vector<std::pair<wxString, wxVariant>> PCB_GENERATOR::GetRowData()
|
|
|
|
{
|
2023-10-19 00:31:01 +00:00
|
|
|
#ifdef GENERATOR_ORDER
|
2023-11-23 20:32:29 +00:00
|
|
|
return { { _HKI( "Update Order" ), wxString::FromCDouble( GetUpdateOrder() ) } };
|
2023-10-19 00:31:01 +00:00
|
|
|
#else
|
|
|
|
return { {} };
|
|
|
|
#endif
|
2023-10-06 17:04:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wxString PCB_GENERATOR::GetItemDescription( UNITS_PROVIDER* aUnitsProvider ) const
|
|
|
|
{
|
|
|
|
return wxString( _( "Generator" ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wxString PCB_GENERATOR::GetClass() const
|
|
|
|
{
|
|
|
|
return wxS( "PCB_GENERATOR" );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PCB_GENERATOR::ClassOf( const EDA_ITEM* aItem )
|
|
|
|
{
|
|
|
|
return aItem && PCB_GENERATOR_T == aItem->Type();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-10-19 00:31:01 +00:00
|
|
|
#ifdef GENERATOR_ORDER
|
2023-10-06 17:04:00 +00:00
|
|
|
static struct PCB_GENERATOR_DESC
|
|
|
|
{
|
|
|
|
PCB_GENERATOR_DESC()
|
|
|
|
{
|
|
|
|
PROPERTY_MANAGER& propMgr = PROPERTY_MANAGER::Instance();
|
|
|
|
REGISTER_TYPE( PCB_GENERATOR );
|
|
|
|
propMgr.AddTypeCast( new TYPE_CAST<PCB_GENERATOR, BOARD_ITEM> );
|
|
|
|
propMgr.InheritsAfter( TYPE_HASH( PCB_GENERATOR ), TYPE_HASH( BOARD_ITEM ) );
|
|
|
|
|
|
|
|
const wxString groupTab = _HKI( "Generator Properties" );
|
|
|
|
|
2023-11-23 20:32:29 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<PCB_GENERATOR, int>( _HKI( "Update Order" ),
|
2023-10-06 17:04:00 +00:00
|
|
|
&PCB_GENERATOR::SetUpdateOrder,
|
|
|
|
&PCB_GENERATOR::GetUpdateOrder ),
|
|
|
|
groupTab );
|
|
|
|
}
|
2023-10-19 00:31:01 +00:00
|
|
|
} _PCB_GENERATOR_DESC;
|
2023-11-23 20:32:29 +00:00
|
|
|
#endif
|