2018-11-13 13:30:56 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2021-07-19 23:56:05 +00:00
|
|
|
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2018-11-13 13:30:56 +00:00
|
|
|
* @author Jon Evans <jon@craftyjon.com>
|
|
|
|
*
|
|
|
|
* 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 <bitmaps.h>
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <board.h>
|
2021-07-04 16:09:37 +00:00
|
|
|
#include <board_commit.h>
|
2021-06-06 19:03:10 +00:00
|
|
|
#include <board_design_settings.h>
|
2018-11-13 13:30:56 +00:00
|
|
|
#include <collectors.h>
|
|
|
|
#include <confirm.h>
|
2021-07-04 16:09:37 +00:00
|
|
|
#include <convert_basic_shapes_to_polygon.h>
|
2022-01-05 02:28:04 +00:00
|
|
|
#include <footprint.h>
|
2021-07-04 16:09:37 +00:00
|
|
|
#include <footprint_edit_frame.h>
|
|
|
|
#include <fp_shape.h>
|
|
|
|
#include <geometry/shape_compound.h>
|
2018-11-13 13:30:56 +00:00
|
|
|
#include <menus_helpers.h>
|
|
|
|
#include <pcb_edit_frame.h>
|
2021-07-04 16:09:37 +00:00
|
|
|
#include <pcb_shape.h>
|
|
|
|
#include <pcb_track.h>
|
2018-11-13 13:30:56 +00:00
|
|
|
#include <tool/tool_manager.h>
|
|
|
|
#include <tools/edit_tool.h>
|
|
|
|
#include <tools/pcb_actions.h>
|
2020-12-16 13:31:32 +00:00
|
|
|
#include <tools/pcb_selection_tool.h>
|
2021-07-04 16:09:37 +00:00
|
|
|
#include <trigo.h>
|
|
|
|
#include <zone.h>
|
2018-11-13 13:30:56 +00:00
|
|
|
|
|
|
|
#include "convert_tool.h"
|
|
|
|
|
|
|
|
|
|
|
|
CONVERT_TOOL::CONVERT_TOOL() :
|
2020-11-07 17:35:24 +00:00
|
|
|
TOOL_INTERACTIVE( "pcbnew.Convert" ),
|
2021-07-19 23:56:05 +00:00
|
|
|
m_selectionTool( nullptr ),
|
|
|
|
m_menu( nullptr ),
|
|
|
|
m_frame( nullptr )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-07-19 23:56:05 +00:00
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
CONVERT_TOOL::~CONVERT_TOOL()
|
|
|
|
{
|
|
|
|
delete m_menu;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
using S_C = SELECTION_CONDITIONS;
|
|
|
|
using P_S_C = PCB_SELECTION_CONDITIONS;
|
|
|
|
|
|
|
|
|
|
|
|
bool CONVERT_TOOL::Init()
|
|
|
|
{
|
2020-12-16 13:31:32 +00:00
|
|
|
m_selectionTool = m_toolMgr->GetTool<PCB_SELECTION_TOOL>();
|
2020-08-31 13:19:57 +00:00
|
|
|
m_frame = getEditFrame<PCB_BASE_FRAME>();
|
2018-11-13 13:30:56 +00:00
|
|
|
|
|
|
|
// Create a context menu and make it available through selection tool
|
|
|
|
m_menu = new CONDITIONAL_MENU( this );
|
2021-03-08 02:59:07 +00:00
|
|
|
m_menu->SetIcon( BITMAPS::convert );
|
2021-07-19 22:45:33 +00:00
|
|
|
m_menu->SetTitle( _( "Create from Selection" ) );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-07-04 16:09:37 +00:00
|
|
|
static KICAD_T convertibleTracks[] = { PCB_TRACE_T, PCB_ARC_T, EOT };
|
2021-01-06 17:20:54 +00:00
|
|
|
static KICAD_T zones[] = { PCB_ZONE_T, PCB_FP_ZONE_T, EOT };
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-07-21 18:31:25 +00:00
|
|
|
auto graphicLines = P_S_C::OnlyGraphicShapeTypes( { SHAPE_T::SEGMENT,
|
|
|
|
SHAPE_T::RECT,
|
|
|
|
SHAPE_T::CIRCLE,
|
|
|
|
SHAPE_T::ARC } )
|
2021-01-06 17:20:54 +00:00
|
|
|
&& P_S_C::SameLayer();
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-09-29 01:00:15 +00:00
|
|
|
auto graphicToTrack = P_S_C::OnlyGraphicShapeTypes( { SHAPE_T::SEGMENT, SHAPE_T::ARC } );
|
|
|
|
|
2021-07-04 16:09:37 +00:00
|
|
|
auto trackLines = S_C::MoreThan( 1 ) && S_C::OnlyTypes( convertibleTracks )
|
2021-01-06 17:20:54 +00:00
|
|
|
&& P_S_C::SameLayer();
|
2018-11-13 13:30:56 +00:00
|
|
|
|
|
|
|
auto anyLines = graphicLines || trackLines;
|
2021-01-06 17:20:54 +00:00
|
|
|
auto anyPolys = S_C::OnlyTypes( zones )
|
2021-07-21 18:31:25 +00:00
|
|
|
|| P_S_C::OnlyGraphicShapeTypes( { SHAPE_T::POLY, SHAPE_T::RECT } );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-05-01 02:33:25 +00:00
|
|
|
auto lineToArc = S_C::Count( 1 )
|
2021-07-21 18:31:25 +00:00
|
|
|
&& ( P_S_C::OnlyGraphicShapeTypes( { SHAPE_T::SEGMENT } )
|
|
|
|
|| S_C::OnlyType( PCB_TRACE_T ) );
|
2020-08-29 16:12:40 +00:00
|
|
|
|
2021-08-09 00:28:47 +00:00
|
|
|
auto showConvert = anyPolys || anyLines || lineToArc;
|
|
|
|
auto canCreatePolyType = anyLines || anyPolys;
|
2021-09-29 01:00:15 +00:00
|
|
|
auto canCreateTracks = anyPolys || graphicToTrack;
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-08-09 00:28:47 +00:00
|
|
|
m_menu->AddItem( PCB_ACTIONS::convertToPoly, canCreatePolyType );
|
|
|
|
m_menu->AddItem( PCB_ACTIONS::convertToZone, canCreatePolyType );
|
|
|
|
m_menu->AddItem( PCB_ACTIONS::convertToKeepout, canCreatePolyType );
|
2018-11-13 13:30:56 +00:00
|
|
|
m_menu->AddItem( PCB_ACTIONS::convertToLines, anyPolys );
|
2020-10-25 12:25:46 +00:00
|
|
|
|
|
|
|
// Currently the code exists, but tracks are not really existing in footprints
|
|
|
|
// only segments on copper layers
|
|
|
|
if( m_frame->IsType( FRAME_PCB_EDITOR ) )
|
2021-09-29 01:00:15 +00:00
|
|
|
m_menu->AddItem( PCB_ACTIONS::convertToTracks, canCreateTracks );
|
2020-10-25 12:25:46 +00:00
|
|
|
|
2020-08-29 16:12:40 +00:00
|
|
|
m_menu->AddItem( PCB_ACTIONS::convertToArc, lineToArc );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-01-06 16:39:28 +00:00
|
|
|
CONDITIONAL_MENU& selToolMenu = m_selectionTool->GetToolMenu().GetMenu();
|
|
|
|
selToolMenu.AddMenu( m_menu, showConvert, 100 );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-09 00:28:47 +00:00
|
|
|
int CONVERT_TOOL::CreatePolys( const TOOL_EVENT& aEvent )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
2020-11-13 15:15:52 +00:00
|
|
|
FOOTPRINT* parentFootprint = nullptr;
|
2020-10-02 22:42:32 +00:00
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
auto& selection = m_selectionTool->RequestSelection(
|
2020-12-16 13:31:32 +00:00
|
|
|
[]( const VECTOR2I& aPt, GENERAL_COLLECTOR& aCollector, PCB_SELECTION_TOOL* sTool )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
2020-11-07 17:35:24 +00:00
|
|
|
for( int i = aCollector.GetCount() - 1; i >= 0; --i )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
2020-11-07 17:35:24 +00:00
|
|
|
BOARD_ITEM* item = aCollector[i];
|
|
|
|
|
|
|
|
switch( item->Type() )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
2020-11-07 17:35:24 +00:00
|
|
|
case PCB_SHAPE_T:
|
|
|
|
case PCB_FP_SHAPE_T:
|
2022-04-01 20:21:10 +00:00
|
|
|
{
|
|
|
|
PCB_SHAPE* shape = static_cast<PCB_SHAPE*>( item );
|
|
|
|
|
|
|
|
switch( shape->GetShape() )
|
2020-11-07 17:35:24 +00:00
|
|
|
{
|
2021-07-21 18:31:25 +00:00
|
|
|
case SHAPE_T::SEGMENT:
|
|
|
|
case SHAPE_T::RECT:
|
|
|
|
case SHAPE_T::CIRCLE:
|
|
|
|
case SHAPE_T::ARC:
|
2022-04-01 20:21:10 +00:00
|
|
|
if( shape->GetStart() == shape->GetEnd() )
|
|
|
|
aCollector.Remove( item );
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2021-08-09 00:28:47 +00:00
|
|
|
case SHAPE_T::POLY:
|
2020-11-07 17:35:24 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
aCollector.Remove( item );
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
2022-04-01 20:21:10 +00:00
|
|
|
}
|
2020-11-07 17:35:24 +00:00
|
|
|
case PCB_TRACE_T:
|
2021-07-04 16:09:37 +00:00
|
|
|
case PCB_ARC_T:
|
2018-11-13 13:30:56 +00:00
|
|
|
break;
|
|
|
|
|
2021-08-09 00:28:47 +00:00
|
|
|
case PCB_ZONE_T:
|
|
|
|
case PCB_FP_ZONE_T:
|
|
|
|
break;
|
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
default:
|
|
|
|
aCollector.Remove( item );
|
|
|
|
}
|
|
|
|
}
|
2020-11-07 17:35:24 +00:00
|
|
|
} );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
|
|
|
if( selection.Empty() )
|
|
|
|
return 0;
|
|
|
|
|
2021-06-20 19:13:18 +00:00
|
|
|
PCB_LAYER_ID destLayer = m_frame->GetActiveLayer();
|
|
|
|
SHAPE_POLY_SET polySet = makePolysFromSegs( selection.GetItems() );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
|
|
|
polySet.Append( makePolysFromRects( selection.GetItems() ) );
|
|
|
|
|
2021-01-06 17:20:54 +00:00
|
|
|
polySet.Append( makePolysFromCircles( selection.GetItems() ) );
|
|
|
|
|
2021-08-09 00:28:47 +00:00
|
|
|
polySet.Append( extractPolygons( selection.GetItems() ) );
|
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
if( polySet.IsEmpty() )
|
|
|
|
return 0;
|
|
|
|
|
2020-10-02 22:42:32 +00:00
|
|
|
bool isFootprint = m_frame->IsType( FRAME_FOOTPRINT_EDITOR );
|
|
|
|
|
2022-04-01 20:21:10 +00:00
|
|
|
if( isFootprint )
|
|
|
|
{
|
|
|
|
if( FP_SHAPE* graphic = dynamic_cast<FP_SHAPE*>( selection.Front() ) )
|
|
|
|
parentFootprint = graphic->GetParentFootprint();
|
|
|
|
else if( FP_ZONE* zone = dynamic_cast<FP_ZONE*>( selection.Front() ) )
|
|
|
|
parentFootprint = static_cast<FOOTPRINT*>( zone->GetParent() );
|
|
|
|
else
|
|
|
|
wxFAIL_MSG( wxT( "Unimplemented footprint parent in CONVERT_TOOL::CreatePolys" ) );
|
|
|
|
}
|
2020-10-02 22:42:32 +00:00
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
BOARD_COMMIT commit( m_frame );
|
|
|
|
|
|
|
|
// For now, we convert each outline in the returned shape to its own polygon
|
|
|
|
std::vector<SHAPE_POLY_SET> polys;
|
|
|
|
|
|
|
|
for( int i = 0; i < polySet.OutlineCount(); i++ )
|
|
|
|
polys.emplace_back( SHAPE_POLY_SET( polySet.COutline( i ) ) );
|
|
|
|
|
|
|
|
if( aEvent.IsAction( &PCB_ACTIONS::convertToPoly ) )
|
|
|
|
{
|
|
|
|
for( const SHAPE_POLY_SET& poly : polys )
|
|
|
|
{
|
2020-11-07 17:35:24 +00:00
|
|
|
PCB_SHAPE* graphic = isFootprint ? new FP_SHAPE( parentFootprint ) : new PCB_SHAPE;
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-07-21 18:31:25 +00:00
|
|
|
graphic->SetShape( SHAPE_T::POLY );
|
2021-03-11 10:41:37 +00:00
|
|
|
graphic->SetFilled( false );
|
2021-03-13 17:06:15 +00:00
|
|
|
graphic->SetWidth( poly.Outline( 0 ).Width() );
|
2018-11-13 13:30:56 +00:00
|
|
|
graphic->SetLayer( destLayer );
|
|
|
|
graphic->SetPolyShape( poly );
|
|
|
|
|
|
|
|
commit.Add( graphic );
|
|
|
|
}
|
|
|
|
|
|
|
|
commit.Push( _( "Convert shapes to polygon" ) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Creating zone or keepout
|
|
|
|
PCB_BASE_EDIT_FRAME* frame = getEditFrame<PCB_BASE_EDIT_FRAME>();
|
|
|
|
BOARD_ITEM_CONTAINER* parent = frame->GetModel();
|
|
|
|
ZONE_SETTINGS zoneInfo = frame->GetZoneSettings();
|
|
|
|
|
2021-06-20 19:13:18 +00:00
|
|
|
bool nonCopper = IsNonCopperLayer( destLayer );
|
|
|
|
zoneInfo.m_Layers.reset().set( destLayer );
|
2021-12-09 23:20:30 +00:00
|
|
|
zoneInfo.m_Name.Empty();
|
2021-06-20 19:13:18 +00:00
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
if( aEvent.IsAction( &PCB_ACTIONS::convertToKeepout ) )
|
2021-12-09 23:20:30 +00:00
|
|
|
{
|
|
|
|
zoneInfo.SetIsRuleArea( true );
|
2020-09-21 23:32:07 +00:00
|
|
|
ret = InvokeRuleAreaEditor( frame, &zoneInfo );
|
2021-12-09 23:20:30 +00:00
|
|
|
}
|
2021-06-20 19:13:18 +00:00
|
|
|
else if( nonCopper )
|
2021-12-09 23:20:30 +00:00
|
|
|
{
|
|
|
|
zoneInfo.SetIsRuleArea( false );
|
2021-06-20 19:13:18 +00:00
|
|
|
ret = InvokeNonCopperZonesEditor( frame, &zoneInfo );
|
2021-12-09 23:20:30 +00:00
|
|
|
}
|
2018-11-13 13:30:56 +00:00
|
|
|
else
|
2021-12-09 23:20:30 +00:00
|
|
|
{
|
|
|
|
zoneInfo.SetIsRuleArea( false );
|
2018-11-13 13:30:56 +00:00
|
|
|
ret = InvokeCopperZonesEditor( frame, &zoneInfo );
|
2021-12-09 23:20:30 +00:00
|
|
|
}
|
2018-11-13 13:30:56 +00:00
|
|
|
|
|
|
|
if( ret == wxID_CANCEL )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for( const SHAPE_POLY_SET& poly : polys )
|
|
|
|
{
|
2020-11-11 23:05:59 +00:00
|
|
|
ZONE* zone = isFootprint ? new FP_ZONE( parent ) : new ZONE( parent );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
|
|
|
*zone->Outline() = poly;
|
|
|
|
zone->HatchBorder();
|
|
|
|
|
|
|
|
zoneInfo.ExportSetting( *zone );
|
|
|
|
|
|
|
|
commit.Add( zone );
|
|
|
|
}
|
|
|
|
|
|
|
|
commit.Push( _( "Convert shapes to zone" ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SHAPE_POLY_SET CONVERT_TOOL::makePolysFromSegs( const std::deque<EDA_ITEM*>& aItems )
|
|
|
|
{
|
2021-08-13 00:17:04 +00:00
|
|
|
// TODO: This code has a somewhat-similar purpose to ConvertOutlineToPolygon but is slightly
|
|
|
|
// different, so this remains a separate algorithm. It might be nice to analyze the dfiferences
|
|
|
|
// in requirements and refactor this.
|
2021-12-09 02:04:23 +00:00
|
|
|
|
|
|
|
// Very tight epsilon used here to account for rounding errors in import, not sloppy drawing
|
|
|
|
const int chainingEpsilonSquared = SEG::Square( 100 );
|
2021-08-13 00:17:04 +00:00
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
SHAPE_POLY_SET poly;
|
|
|
|
|
2021-07-04 16:09:37 +00:00
|
|
|
// Stores pairs of (anchor, item) where anchor == 0 -> SEG.A, anchor == 1 -> SEG.B
|
|
|
|
std::map<VECTOR2I, std::vector<std::pair<int, EDA_ITEM*>>> connections;
|
2018-11-13 13:30:56 +00:00
|
|
|
std::set<EDA_ITEM*> used;
|
|
|
|
std::deque<EDA_ITEM*> toCheck;
|
|
|
|
|
2021-08-13 00:17:04 +00:00
|
|
|
auto closeEnough =
|
|
|
|
[]( VECTOR2I aLeft, VECTOR2I aRight, unsigned aLimit )
|
|
|
|
{
|
2021-12-09 02:04:23 +00:00
|
|
|
return ( aLeft - aRight ).SquaredEuclideanNorm() <= aLimit;
|
2021-08-13 00:17:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
auto findInsertionPoint =
|
|
|
|
[&]( VECTOR2I aPoint ) -> VECTOR2I
|
|
|
|
{
|
2021-12-09 02:04:23 +00:00
|
|
|
if( connections.count( aPoint ) )
|
|
|
|
return aPoint;
|
|
|
|
|
2021-08-13 00:17:04 +00:00
|
|
|
for( const auto& candidatePair : connections )
|
|
|
|
{
|
2021-12-09 02:04:23 +00:00
|
|
|
if( closeEnough( aPoint, candidatePair.first, chainingEpsilonSquared ) )
|
2021-08-13 00:17:04 +00:00
|
|
|
return candidatePair.first;
|
|
|
|
}
|
|
|
|
|
|
|
|
return aPoint;
|
|
|
|
};
|
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
for( EDA_ITEM* item : aItems )
|
|
|
|
{
|
2021-03-13 17:06:15 +00:00
|
|
|
if( OPT<SEG> seg = getStartEndPoints( item, nullptr ) )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
|
|
|
toCheck.push_back( item );
|
2021-08-13 00:17:04 +00:00
|
|
|
connections[findInsertionPoint( seg->A )].emplace_back( std::make_pair( 0, item ) );
|
|
|
|
connections[findInsertionPoint( seg->B )].emplace_back( std::make_pair( 1, item ) );
|
2018-11-13 13:30:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while( !toCheck.empty() )
|
|
|
|
{
|
|
|
|
EDA_ITEM* candidate = toCheck.front();
|
|
|
|
toCheck.pop_front();
|
|
|
|
|
|
|
|
if( used.count( candidate ) )
|
|
|
|
continue;
|
|
|
|
|
2021-07-04 16:09:37 +00:00
|
|
|
int width = -1;
|
|
|
|
SHAPE_LINE_CHAIN outline;
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-07-04 16:09:37 +00:00
|
|
|
auto insert =
|
|
|
|
[&]( EDA_ITEM* aItem, VECTOR2I aAnchor, bool aDirection )
|
|
|
|
{
|
2021-10-10 15:25:19 +00:00
|
|
|
if( aItem->Type() == PCB_ARC_T
|
|
|
|
|| ( ( aItem->Type() == PCB_SHAPE_T || aItem->Type() == PCB_FP_SHAPE_T )
|
|
|
|
&& static_cast<PCB_SHAPE*>( aItem )->GetShape() == SHAPE_T::ARC ) )
|
2021-07-04 16:09:37 +00:00
|
|
|
{
|
|
|
|
SHAPE_ARC arc;
|
|
|
|
|
|
|
|
if( aItem->Type() == PCB_ARC_T )
|
|
|
|
{
|
|
|
|
std::shared_ptr<SHAPE> es =
|
|
|
|
static_cast<PCB_ARC*>( aItem )->GetEffectiveShape();
|
|
|
|
arc = *static_cast<SHAPE_ARC*>( es.get() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PCB_SHAPE* ps = static_cast<PCB_SHAPE*>( aItem );
|
2021-07-17 19:56:18 +00:00
|
|
|
arc = SHAPE_ARC( ps->GetStart(), ps->GetArcMid(), ps->GetEnd(),
|
2021-07-04 16:09:37 +00:00
|
|
|
ps->GetWidth() );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( aDirection )
|
|
|
|
outline.Append( aAnchor == arc.GetP0() ? arc : arc.Reversed() );
|
|
|
|
else
|
|
|
|
outline.Insert( 0, aAnchor == arc.GetP0() ? arc : arc.Reversed() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
OPT<SEG> nextSeg = getStartEndPoints( aItem, &width );
|
|
|
|
wxASSERT( nextSeg );
|
|
|
|
|
|
|
|
VECTOR2I& point = ( aAnchor == nextSeg->A ) ? nextSeg->B : nextSeg->A;
|
|
|
|
|
|
|
|
if( aDirection )
|
|
|
|
outline.Append( point );
|
|
|
|
else
|
|
|
|
outline.Insert( 0, point );
|
|
|
|
}
|
|
|
|
};
|
2018-11-13 13:30:56 +00:00
|
|
|
|
|
|
|
// aDirection == true for walking "right" and appending to the end of points
|
|
|
|
// false for walking "left" and prepending to the beginning
|
2021-07-04 16:09:37 +00:00
|
|
|
std::function<void( EDA_ITEM*, VECTOR2I, bool )> process =
|
|
|
|
[&]( EDA_ITEM* aItem, VECTOR2I aAnchor, bool aDirection )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
|
|
|
if( used.count( aItem ) )
|
|
|
|
return;
|
|
|
|
|
|
|
|
used.insert( aItem );
|
|
|
|
|
2021-07-04 16:09:37 +00:00
|
|
|
insert( aItem, aAnchor, aDirection );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-07-04 16:09:37 +00:00
|
|
|
OPT<SEG> anchors = getStartEndPoints( aItem, &width );
|
|
|
|
wxASSERT( anchors );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-07-04 16:09:37 +00:00
|
|
|
VECTOR2I nextAnchor = ( aAnchor == anchors->A ) ? anchors->B : anchors->A;
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-07-04 16:09:37 +00:00
|
|
|
for( std::pair<int, EDA_ITEM*> pair : connections[nextAnchor] )
|
|
|
|
{
|
|
|
|
if( pair.second == aItem )
|
|
|
|
continue;
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-07-04 16:09:37 +00:00
|
|
|
process( pair.second, nextAnchor, aDirection );
|
|
|
|
}
|
2018-11-13 13:30:56 +00:00
|
|
|
};
|
|
|
|
|
2021-07-04 16:09:37 +00:00
|
|
|
OPT<SEG> anchors = getStartEndPoints( candidate, &width );
|
|
|
|
wxASSERT( anchors );
|
|
|
|
|
|
|
|
// Start with the first object and walk "right"
|
2021-07-04 16:22:52 +00:00
|
|
|
// Note if the first object is an arc, we don't need to insert its first point here, the
|
|
|
|
// whole arc will be inserted at anchor B inside process()
|
2021-10-10 15:25:19 +00:00
|
|
|
if( !( candidate->Type() == PCB_ARC_T
|
|
|
|
|| ( ( candidate->Type() == PCB_SHAPE_T || candidate->Type() == PCB_FP_SHAPE_T )
|
|
|
|
&& static_cast<PCB_SHAPE*>( candidate )->GetShape() == SHAPE_T::ARC ) ) )
|
2021-07-04 16:22:52 +00:00
|
|
|
{
|
|
|
|
insert( candidate, anchors->A, true );
|
|
|
|
}
|
|
|
|
|
2021-07-04 16:09:37 +00:00
|
|
|
process( candidate, anchors->B, true );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
|
|
|
// check for any candidates on the "left"
|
|
|
|
EDA_ITEM* left = nullptr;
|
|
|
|
|
2021-07-04 16:09:37 +00:00
|
|
|
for( std::pair<int, EDA_ITEM*> possibleLeft : connections[anchors->A] )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
2021-07-04 16:09:37 +00:00
|
|
|
if( possibleLeft.second != candidate )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
2021-07-04 16:09:37 +00:00
|
|
|
left = possibleLeft.second;
|
2018-11-13 13:30:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( left )
|
2021-07-04 16:09:37 +00:00
|
|
|
process( left, anchors->A, false );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-07-04 16:09:37 +00:00
|
|
|
if( outline.PointCount() < 3 )
|
2018-11-13 13:30:56 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
outline.SetClosed( true );
|
2021-07-04 16:09:37 +00:00
|
|
|
outline.Simplify();
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-03-13 17:06:15 +00:00
|
|
|
if( width >= 0 )
|
|
|
|
outline.SetWidth( width );
|
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
poly.AddOutline( outline );
|
|
|
|
}
|
|
|
|
|
|
|
|
return poly;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SHAPE_POLY_SET CONVERT_TOOL::makePolysFromRects( const std::deque<EDA_ITEM*>& aItems )
|
|
|
|
{
|
|
|
|
SHAPE_POLY_SET poly;
|
|
|
|
|
|
|
|
for( EDA_ITEM* item : aItems )
|
|
|
|
{
|
2020-10-04 14:19:33 +00:00
|
|
|
if( item->Type() != PCB_SHAPE_T && item->Type() != PCB_FP_SHAPE_T )
|
2018-11-13 13:30:56 +00:00
|
|
|
continue;
|
|
|
|
|
2020-10-04 23:34:59 +00:00
|
|
|
PCB_SHAPE* graphic = static_cast<PCB_SHAPE*>( item );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-07-21 18:31:25 +00:00
|
|
|
if( graphic->GetShape() != SHAPE_T::RECT )
|
2018-11-13 13:30:56 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
SHAPE_LINE_CHAIN outline;
|
|
|
|
VECTOR2I start( graphic->GetStart() );
|
|
|
|
VECTOR2I end( graphic->GetEnd() );
|
|
|
|
|
|
|
|
outline.Append( start );
|
|
|
|
outline.Append( VECTOR2I( end.x, start.y ) );
|
|
|
|
outline.Append( end );
|
|
|
|
outline.Append( VECTOR2I( start.x, end.y ) );
|
|
|
|
outline.SetClosed( true );
|
|
|
|
|
2021-03-13 17:06:15 +00:00
|
|
|
outline.SetWidth( graphic->GetWidth() );
|
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
poly.AddOutline( outline );
|
|
|
|
}
|
|
|
|
|
|
|
|
return poly;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-06 17:20:54 +00:00
|
|
|
SHAPE_POLY_SET CONVERT_TOOL::makePolysFromCircles( const std::deque<EDA_ITEM*>& aItems )
|
|
|
|
{
|
|
|
|
SHAPE_POLY_SET poly;
|
|
|
|
|
|
|
|
for( EDA_ITEM* item : aItems )
|
|
|
|
{
|
|
|
|
if( item->Type() != PCB_SHAPE_T && item->Type() != PCB_FP_SHAPE_T )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
PCB_SHAPE* graphic = static_cast<PCB_SHAPE*>( item );
|
|
|
|
|
2021-07-21 18:31:25 +00:00
|
|
|
if( graphic->GetShape() != SHAPE_T::CIRCLE )
|
2021-01-06 17:20:54 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
BOARD_DESIGN_SETTINGS& bds = graphic->GetBoard()->GetDesignSettings();
|
|
|
|
SHAPE_LINE_CHAIN outline;
|
|
|
|
|
|
|
|
TransformCircleToPolygon( outline, graphic->GetPosition(), graphic->GetRadius(),
|
|
|
|
bds.m_MaxError, ERROR_OUTSIDE );
|
|
|
|
|
|
|
|
poly.AddOutline( outline );
|
|
|
|
}
|
|
|
|
|
|
|
|
return poly;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-09 00:28:47 +00:00
|
|
|
SHAPE_POLY_SET CONVERT_TOOL::extractPolygons( const std::deque<EDA_ITEM*>& aItems )
|
|
|
|
{
|
|
|
|
SHAPE_POLY_SET poly;
|
|
|
|
|
|
|
|
for( EDA_ITEM* item : aItems )
|
|
|
|
{
|
|
|
|
switch( item->Type() )
|
|
|
|
{
|
|
|
|
case PCB_SHAPE_T:
|
2022-01-05 02:31:22 +00:00
|
|
|
case PCB_FP_SHAPE_T:
|
2021-08-09 00:28:47 +00:00
|
|
|
switch( static_cast<PCB_SHAPE*>( item )->GetShape() )
|
|
|
|
{
|
|
|
|
case SHAPE_T::POLY:
|
|
|
|
poly.Append( static_cast<PCB_SHAPE*>( item )->GetPolyShape() );
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCB_ZONE_T:
|
|
|
|
case PCB_FP_ZONE_T:
|
|
|
|
poly.Append( *static_cast<ZONE*>( item )->Outline() );
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return poly;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int CONVERT_TOOL::CreateLines( const TOOL_EVENT& aEvent )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
|
|
|
auto& selection = m_selectionTool->RequestSelection(
|
2020-12-16 13:31:32 +00:00
|
|
|
[]( const VECTOR2I& aPt, GENERAL_COLLECTOR& aCollector, PCB_SELECTION_TOOL* sTool )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
2020-11-07 17:35:24 +00:00
|
|
|
for( int i = aCollector.GetCount() - 1; i >= 0; --i )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
2020-11-07 17:35:24 +00:00
|
|
|
BOARD_ITEM* item = aCollector[i];
|
|
|
|
|
|
|
|
switch( item->Type() )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
2020-11-07 17:35:24 +00:00
|
|
|
case PCB_SHAPE_T:
|
|
|
|
case PCB_FP_SHAPE_T:
|
|
|
|
switch( static_cast<PCB_SHAPE*>( item )->GetShape() )
|
|
|
|
{
|
2021-09-29 01:00:15 +00:00
|
|
|
case SHAPE_T::SEGMENT:
|
|
|
|
case SHAPE_T::ARC:
|
2021-07-21 18:31:25 +00:00
|
|
|
case SHAPE_T::POLY:
|
|
|
|
case SHAPE_T::RECT:
|
2020-11-07 17:35:24 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
aCollector.Remove( item );
|
|
|
|
}
|
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
break;
|
|
|
|
|
2020-11-11 23:05:59 +00:00
|
|
|
case PCB_ZONE_T:
|
|
|
|
case PCB_FP_ZONE_T:
|
2020-09-08 12:41:22 +00:00
|
|
|
break;
|
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
default:
|
|
|
|
aCollector.Remove( item );
|
|
|
|
}
|
|
|
|
}
|
2021-01-09 00:46:18 +00:00
|
|
|
} );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
|
|
|
if( selection.Empty() )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
auto getPolySet =
|
|
|
|
[]( EDA_ITEM* aItem )
|
|
|
|
{
|
|
|
|
SHAPE_POLY_SET set;
|
|
|
|
|
|
|
|
switch( aItem->Type() )
|
|
|
|
{
|
2020-11-11 23:05:59 +00:00
|
|
|
case PCB_ZONE_T:
|
|
|
|
case PCB_FP_ZONE_T:
|
|
|
|
set = *static_cast<ZONE*>( aItem )->Outline();
|
2018-11-13 13:30:56 +00:00
|
|
|
break;
|
|
|
|
|
2020-10-04 14:19:33 +00:00
|
|
|
case PCB_SHAPE_T:
|
|
|
|
case PCB_FP_SHAPE_T:
|
2020-09-08 12:41:22 +00:00
|
|
|
{
|
2020-10-04 23:34:59 +00:00
|
|
|
PCB_SHAPE* graphic = static_cast<PCB_SHAPE*>( aItem );
|
2020-09-08 12:41:22 +00:00
|
|
|
|
2021-07-21 18:31:25 +00:00
|
|
|
if( graphic->GetShape() == SHAPE_T::POLY )
|
2020-09-08 12:41:22 +00:00
|
|
|
{
|
|
|
|
set = graphic->GetPolyShape();
|
|
|
|
}
|
2021-07-21 18:31:25 +00:00
|
|
|
else if( graphic->GetShape() == SHAPE_T::RECT )
|
2020-09-08 12:41:22 +00:00
|
|
|
{
|
|
|
|
SHAPE_LINE_CHAIN outline;
|
|
|
|
VECTOR2I start( graphic->GetStart() );
|
|
|
|
VECTOR2I end( graphic->GetEnd() );
|
|
|
|
|
|
|
|
outline.Append( start );
|
|
|
|
outline.Append( VECTOR2I( end.x, start.y ) );
|
|
|
|
outline.Append( end );
|
|
|
|
outline.Append( VECTOR2I( start.x, end.y ) );
|
|
|
|
outline.SetClosed( true );
|
|
|
|
|
|
|
|
set.AddOutline( outline );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-02-05 13:25:43 +00:00
|
|
|
wxFAIL_MSG( wxT( "Unhandled graphic shape type in PolyToLines - getPolySet" ) );
|
2020-09-08 12:41:22 +00:00
|
|
|
}
|
2018-11-13 13:30:56 +00:00
|
|
|
break;
|
2020-09-08 12:41:22 +00:00
|
|
|
}
|
2018-11-13 13:30:56 +00:00
|
|
|
|
|
|
|
default:
|
2022-02-05 13:25:43 +00:00
|
|
|
wxFAIL_MSG( wxT( "Unhandled type in PolyToLines - getPolySet" ) );
|
2018-11-13 13:30:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return set;
|
|
|
|
};
|
|
|
|
|
|
|
|
auto getSegList =
|
|
|
|
[]( SHAPE_POLY_SET& aPoly )
|
|
|
|
{
|
|
|
|
std::vector<SEG> segs;
|
|
|
|
|
|
|
|
// Our input should be valid polys, so OK to assert here
|
|
|
|
wxASSERT( aPoly.VertexCount() >= 2 );
|
|
|
|
|
|
|
|
for( int i = 1; i < aPoly.VertexCount(); i++ )
|
|
|
|
segs.emplace_back( SEG( aPoly.CVertex( i - 1 ), aPoly.CVertex( i ) ) );
|
|
|
|
|
|
|
|
segs.emplace_back( SEG( aPoly.CVertex( aPoly.VertexCount() - 1 ),
|
|
|
|
aPoly.CVertex( 0 ) ) );
|
|
|
|
|
|
|
|
return segs;
|
|
|
|
};
|
|
|
|
|
2021-07-10 11:04:50 +00:00
|
|
|
BOARD_COMMIT commit( m_frame );
|
2021-09-29 01:00:15 +00:00
|
|
|
PCB_BASE_EDIT_FRAME* frame = getEditFrame<PCB_BASE_EDIT_FRAME>();
|
2021-08-08 19:12:23 +00:00
|
|
|
FOOTPRINT_EDIT_FRAME* fpEditor = dynamic_cast<FOOTPRINT_EDIT_FRAME*>( m_frame );
|
|
|
|
FOOTPRINT* footprint = nullptr;
|
|
|
|
PCB_LAYER_ID targetLayer = m_frame->GetActiveLayer();
|
2022-03-02 18:15:41 +00:00
|
|
|
PCB_LAYER_ID copperLayer = F_Cu;
|
2021-09-29 01:00:15 +00:00
|
|
|
BOARD_ITEM_CONTAINER* parent = frame->GetModel();
|
2020-10-25 12:25:46 +00:00
|
|
|
|
|
|
|
if( fpEditor )
|
2020-11-08 21:29:04 +00:00
|
|
|
footprint = fpEditor->GetBoard()->GetFirstFootprint();
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-09-29 01:00:15 +00:00
|
|
|
auto handleGraphicSeg =
|
|
|
|
[&]( EDA_ITEM* aItem )
|
|
|
|
{
|
|
|
|
if( aItem->Type() != PCB_SHAPE_T && aItem->Type() != PCB_FP_SHAPE_T )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
PCB_SHAPE* graphic = static_cast<PCB_SHAPE*>( aItem );
|
|
|
|
|
|
|
|
if( graphic->GetShape() == SHAPE_T::SEGMENT )
|
|
|
|
{
|
|
|
|
PCB_TRACK* track = new PCB_TRACK( parent );
|
|
|
|
|
|
|
|
track->SetLayer( targetLayer );
|
|
|
|
track->SetStart( graphic->GetStart() );
|
|
|
|
track->SetEnd( graphic->GetEnd() );
|
|
|
|
commit.Add( track );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if( graphic->GetShape() == SHAPE_T::ARC )
|
|
|
|
{
|
|
|
|
PCB_ARC* arc = new PCB_ARC( parent );
|
|
|
|
|
|
|
|
arc->SetLayer( targetLayer );
|
2021-07-17 19:56:18 +00:00
|
|
|
arc->SetStart( graphic->GetStart() );
|
|
|
|
arc->SetEnd( graphic->GetEnd() );
|
2021-09-29 01:00:15 +00:00
|
|
|
arc->SetMid( graphic->GetArcMid() );
|
|
|
|
commit.Add( arc );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2022-03-02 18:15:41 +00:00
|
|
|
if( aEvent.IsAction( &PCB_ACTIONS::convertToTracks ) )
|
|
|
|
{
|
|
|
|
if( !IsCopperLayer( targetLayer ) )
|
|
|
|
{
|
2022-03-02 18:46:59 +00:00
|
|
|
copperLayer = frame->SelectOneLayer( F_Cu, LSET::AllNonCuMask() );
|
2022-03-02 18:15:41 +00:00
|
|
|
|
|
|
|
if( copperLayer == UNDEFINED_LAYER ) // User canceled
|
|
|
|
return true;
|
|
|
|
|
|
|
|
targetLayer = copperLayer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
for( EDA_ITEM* item : selection )
|
|
|
|
{
|
2021-09-29 01:00:15 +00:00
|
|
|
if( handleGraphicSeg( item ) )
|
|
|
|
continue;
|
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
SHAPE_POLY_SET polySet = getPolySet( item );
|
|
|
|
std::vector<SEG> segs = getSegList( polySet );
|
|
|
|
|
|
|
|
if( aEvent.IsAction( &PCB_ACTIONS::convertToLines ) )
|
|
|
|
{
|
|
|
|
for( SEG& seg : segs )
|
|
|
|
{
|
2020-10-25 12:25:46 +00:00
|
|
|
if( fpEditor )
|
|
|
|
{
|
2021-07-21 18:31:25 +00:00
|
|
|
FP_SHAPE* graphic = new FP_SHAPE( footprint, SHAPE_T::SEGMENT );
|
2020-10-25 12:25:46 +00:00
|
|
|
|
2021-08-08 19:12:23 +00:00
|
|
|
graphic->SetLayer( targetLayer );
|
2020-10-25 12:25:46 +00:00
|
|
|
graphic->SetStart( wxPoint( seg.A ) );
|
|
|
|
graphic->SetStart0( wxPoint( seg.A ) );
|
|
|
|
graphic->SetEnd( wxPoint( seg.B ) );
|
|
|
|
graphic->SetEnd0( wxPoint( seg.B ) );
|
|
|
|
commit.Add( graphic );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-07-17 18:52:13 +00:00
|
|
|
PCB_SHAPE* graphic = new PCB_SHAPE( nullptr, SHAPE_T::SEGMENT );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-08-08 19:12:23 +00:00
|
|
|
graphic->SetLayer( targetLayer );
|
2020-10-25 12:25:46 +00:00
|
|
|
graphic->SetStart( wxPoint( seg.A ) );
|
|
|
|
graphic->SetEnd( wxPoint( seg.B ) );
|
|
|
|
commit.Add( graphic );
|
|
|
|
}
|
2018-11-13 13:30:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-10-25 12:25:46 +00:00
|
|
|
// I am really unsure converting a polygon to "tracks" (i.e. segments on
|
|
|
|
// copper layers) make sense for footprints, but anyway this code exists
|
|
|
|
if( fpEditor )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
2020-10-25 12:25:46 +00:00
|
|
|
// Creating segments on copper layer
|
|
|
|
for( SEG& seg : segs )
|
|
|
|
{
|
2021-07-21 18:31:25 +00:00
|
|
|
FP_SHAPE* graphic = new FP_SHAPE( footprint, SHAPE_T::SEGMENT );
|
2021-08-08 19:12:23 +00:00
|
|
|
graphic->SetLayer( targetLayer );
|
2020-10-25 12:25:46 +00:00
|
|
|
graphic->SetStart( wxPoint( seg.A ) );
|
|
|
|
graphic->SetStart0( wxPoint( seg.A ) );
|
|
|
|
graphic->SetEnd( wxPoint( seg.B ) );
|
|
|
|
graphic->SetEnd0( wxPoint( seg.B ) );
|
|
|
|
commit.Add( graphic );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Creating tracks
|
|
|
|
for( SEG& seg : segs )
|
|
|
|
{
|
2021-06-11 21:07:02 +00:00
|
|
|
PCB_TRACK* track = new PCB_TRACK( parent );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-08-08 19:12:23 +00:00
|
|
|
track->SetLayer( targetLayer );
|
2020-10-25 12:25:46 +00:00
|
|
|
track->SetStart( wxPoint( seg.A ) );
|
|
|
|
track->SetEnd( wxPoint( seg.B ) );
|
|
|
|
commit.Add( track );
|
|
|
|
}
|
2018-11-13 13:30:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
commit.Push( _( "Convert polygons to lines" ) );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int CONVERT_TOOL::SegmentToArc( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
|
|
|
auto& selection = m_selectionTool->RequestSelection(
|
2020-12-16 13:31:32 +00:00
|
|
|
[]( const VECTOR2I& aPt, GENERAL_COLLECTOR& aCollector, PCB_SELECTION_TOOL* sTool )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
|
|
|
for( int i = aCollector.GetCount() - 1; i >= 0; --i )
|
|
|
|
{
|
|
|
|
BOARD_ITEM* item = aCollector[i];
|
|
|
|
|
2020-10-04 14:19:33 +00:00
|
|
|
if( !( item->Type() == PCB_SHAPE_T ||
|
2020-10-02 22:42:32 +00:00
|
|
|
item->Type() == PCB_TRACE_T ||
|
2020-10-04 14:19:33 +00:00
|
|
|
item->Type() == PCB_FP_SHAPE_T ) )
|
2020-11-07 17:35:24 +00:00
|
|
|
{
|
2018-11-13 13:30:56 +00:00
|
|
|
aCollector.Remove( item );
|
2020-11-07 17:35:24 +00:00
|
|
|
}
|
2018-11-13 13:30:56 +00:00
|
|
|
}
|
2021-01-09 00:46:18 +00:00
|
|
|
} );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
|
|
|
EDA_ITEM* source = selection.Front();
|
2020-08-29 16:12:40 +00:00
|
|
|
VECTOR2I start, end, mid;
|
|
|
|
|
|
|
|
// Offset the midpoint along the normal a little bit so that it's more obviously an arc
|
|
|
|
const double offsetRatio = 0.1;
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-03-13 17:06:15 +00:00
|
|
|
if( OPT<SEG> seg = getStartEndPoints( source, nullptr ) )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
2020-08-29 16:12:40 +00:00
|
|
|
start = seg->A;
|
|
|
|
end = seg->B;
|
|
|
|
|
|
|
|
VECTOR2I normal = ( seg->B - seg->A ).Perpendicular().Resize( offsetRatio * seg->Length() );
|
|
|
|
mid = seg->Center() + normal;
|
2018-11-13 13:30:56 +00:00
|
|
|
}
|
|
|
|
else
|
2021-03-13 17:06:15 +00:00
|
|
|
{
|
2018-11-13 13:30:56 +00:00
|
|
|
return -1;
|
2021-03-13 17:06:15 +00:00
|
|
|
}
|
2018-11-13 13:30:56 +00:00
|
|
|
|
|
|
|
PCB_BASE_EDIT_FRAME* frame = getEditFrame<PCB_BASE_EDIT_FRAME>();
|
|
|
|
BOARD_ITEM_CONTAINER* parent = frame->GetModel();
|
|
|
|
|
|
|
|
BOARD_ITEM* boardItem = dynamic_cast<BOARD_ITEM*>( source );
|
2020-09-20 01:20:41 +00:00
|
|
|
|
|
|
|
// Don't continue processing if we don't actually have a board item
|
|
|
|
if( !boardItem )
|
|
|
|
return 0;
|
2018-11-13 13:30:56 +00:00
|
|
|
|
|
|
|
PCB_LAYER_ID layer = boardItem->GetLayer();
|
|
|
|
|
|
|
|
BOARD_COMMIT commit( m_frame );
|
|
|
|
|
2020-10-04 14:19:33 +00:00
|
|
|
if( source->Type() == PCB_SHAPE_T || source->Type() == PCB_FP_SHAPE_T )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
2020-10-04 23:34:59 +00:00
|
|
|
PCB_SHAPE* line = static_cast<PCB_SHAPE*>( source );
|
2021-07-17 19:56:18 +00:00
|
|
|
PCB_SHAPE* arc = new PCB_SHAPE( parent, SHAPE_T::ARC );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2021-07-17 19:56:18 +00:00
|
|
|
VECTOR2I center = CalcArcCenter( start, mid, end );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2020-11-14 01:16:02 +00:00
|
|
|
arc->SetFilled( false );
|
2018-11-13 13:30:56 +00:00
|
|
|
arc->SetLayer( layer );
|
|
|
|
arc->SetWidth( line->GetWidth() );
|
|
|
|
|
2021-07-17 19:56:18 +00:00
|
|
|
arc->SetCenter( wxPoint( center ) );
|
|
|
|
arc->SetStart( wxPoint( start ) );
|
|
|
|
arc->SetEnd( wxPoint( end ) );
|
2020-08-29 16:12:40 +00:00
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
commit.Add( arc );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wxASSERT( source->Type() == PCB_TRACE_T );
|
2021-06-11 21:07:02 +00:00
|
|
|
PCB_TRACK* line = static_cast<PCB_TRACK*>( source );
|
|
|
|
PCB_ARC* arc = new PCB_ARC( parent );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
|
|
|
arc->SetLayer( layer );
|
|
|
|
arc->SetWidth( line->GetWidth() );
|
2020-08-29 16:12:40 +00:00
|
|
|
arc->SetStart( wxPoint( start ) );
|
|
|
|
arc->SetMid( wxPoint( mid ) );
|
|
|
|
arc->SetEnd( wxPoint( end ) );
|
2018-11-13 13:30:56 +00:00
|
|
|
|
|
|
|
commit.Add( arc );
|
|
|
|
}
|
|
|
|
|
|
|
|
commit.Push( _( "Create arc from line segment" ) );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-03-13 17:06:15 +00:00
|
|
|
OPT<SEG> CONVERT_TOOL::getStartEndPoints( EDA_ITEM* aItem, int* aWidth )
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
|
|
|
switch( aItem->Type() )
|
|
|
|
{
|
2020-10-04 14:19:33 +00:00
|
|
|
case PCB_SHAPE_T:
|
|
|
|
case PCB_FP_SHAPE_T:
|
2018-11-13 13:30:56 +00:00
|
|
|
{
|
2021-07-17 19:56:18 +00:00
|
|
|
PCB_SHAPE* shape = static_cast<PCB_SHAPE*>( aItem );
|
2021-03-13 17:06:15 +00:00
|
|
|
|
|
|
|
if( aWidth )
|
2021-07-17 19:56:18 +00:00
|
|
|
*aWidth = shape->GetWidth();
|
2021-03-13 17:06:15 +00:00
|
|
|
|
2021-07-17 19:56:18 +00:00
|
|
|
return boost::make_optional<SEG>( { VECTOR2I( shape->GetStart() ),
|
|
|
|
VECTOR2I( shape->GetEnd() ) } );
|
2018-11-13 13:30:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case PCB_TRACE_T:
|
|
|
|
{
|
2021-06-11 21:07:02 +00:00
|
|
|
PCB_TRACK* line = static_cast<PCB_TRACK*>( aItem );
|
2021-03-13 17:06:15 +00:00
|
|
|
|
|
|
|
if( aWidth )
|
|
|
|
*aWidth = line->GetWidth();
|
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
return boost::make_optional<SEG>( { VECTOR2I( line->GetStart() ),
|
|
|
|
VECTOR2I( line->GetEnd() ) } );
|
|
|
|
}
|
|
|
|
|
|
|
|
case PCB_ARC_T:
|
|
|
|
{
|
2021-06-11 21:07:02 +00:00
|
|
|
PCB_ARC* arc = static_cast<PCB_ARC*>( aItem );
|
2021-03-13 17:06:15 +00:00
|
|
|
|
|
|
|
if( aWidth )
|
|
|
|
*aWidth = arc->GetWidth();
|
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
return boost::make_optional<SEG>( { VECTOR2I( arc->GetStart() ),
|
|
|
|
VECTOR2I( arc->GetEnd() ) } );
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
return NULLOPT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CONVERT_TOOL::setTransitions()
|
|
|
|
{
|
2021-08-09 00:28:47 +00:00
|
|
|
Go( &CONVERT_TOOL::CreatePolys, PCB_ACTIONS::convertToPoly.MakeEvent() );
|
|
|
|
Go( &CONVERT_TOOL::CreatePolys, PCB_ACTIONS::convertToZone.MakeEvent() );
|
|
|
|
Go( &CONVERT_TOOL::CreatePolys, PCB_ACTIONS::convertToKeepout.MakeEvent() );
|
|
|
|
Go( &CONVERT_TOOL::CreateLines, PCB_ACTIONS::convertToLines.MakeEvent() );
|
|
|
|
Go( &CONVERT_TOOL::CreateLines, PCB_ACTIONS::convertToTracks.MakeEvent() );
|
2018-11-13 13:30:56 +00:00
|
|
|
Go( &CONVERT_TOOL::SegmentToArc, PCB_ACTIONS::convertToArc.MakeEvent() );
|
|
|
|
}
|