2010-11-21 18:28:32 +00:00
|
|
|
/**
|
|
|
|
* @file clean.cpp
|
|
|
|
* functions to clean tracks: remove null and redundant segments
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include "fctsys.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "class_drawpanel.h"
|
2011-09-23 13:57:12 +00:00
|
|
|
#include "gr_basic.h"
|
|
|
|
#include "pcbcommon.h"
|
|
|
|
#include "wxPcbStruct.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
#include "pcbnew.h"
|
|
|
|
#include "protos.h"
|
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
#include "class_board.h"
|
|
|
|
#include "class_track.h"
|
|
|
|
|
|
|
|
|
2007-10-27 18:05:50 +00:00
|
|
|
/* local functions : */
|
2011-03-01 19:26:17 +00:00
|
|
|
static void clean_segments( PCB_EDIT_FRAME* frame );
|
2010-11-21 18:28:32 +00:00
|
|
|
static void clean_vias( BOARD* aPcb );
|
2011-03-01 19:26:17 +00:00
|
|
|
static void DeleteUnconnectedTracks( PCB_EDIT_FRAME* frame, wxDC* DC );
|
2007-08-10 19:14:51 +00:00
|
|
|
static TRACK* AlignSegment( BOARD* Pcb, TRACK* pt_ref, TRACK* pt_segm, int extremite );
|
2011-03-01 19:26:17 +00:00
|
|
|
static void Clean_Pcb_Items( PCB_EDIT_FRAME* frame, wxDC* DC,
|
|
|
|
bool aCleanVias, bool aMergeSegments,
|
|
|
|
bool aDeleteUnconnectedSegm, bool aConnectToPads );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
#include "dialog_cleaning_options.h"
|
2007-06-14 05:31:55 +00:00
|
|
|
|
|
|
|
#define CONN2PAD_ENBL
|
|
|
|
|
|
|
|
#ifdef CONN2PAD_ENBL
|
2011-03-01 19:26:17 +00:00
|
|
|
static void ConnectDanglingEndToPad( PCB_EDIT_FRAME* frame, wxDC* DC );
|
2007-10-19 23:02:11 +00:00
|
|
|
static void ConnectDanglingEndToVia( BOARD* pcb );
|
2007-06-14 05:31:55 +00:00
|
|
|
#endif
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2007-10-19 23:02:11 +00:00
|
|
|
|
2007-10-27 18:05:50 +00:00
|
|
|
/* Install the track operation dialog frame
|
|
|
|
*/
|
2011-09-07 19:41:04 +00:00
|
|
|
void PCB_EDIT_FRAME::Clean_Pcb( wxDC* DC )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2010-11-21 18:28:32 +00:00
|
|
|
DIALOG_CLEANING_OPTIONS::connectToPads = false;
|
|
|
|
DIALOG_CLEANING_OPTIONS dlg( this );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
if( dlg.ShowModal() == wxID_OK )
|
|
|
|
Clean_Pcb_Items( this, DC, dlg.cleanVias, dlg.mergeSegments,
|
2011-09-07 19:41:04 +00:00
|
|
|
dlg.deleteUnconnectedSegm, dlg.connectToPads );
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
DrawPanel->Refresh( true );
|
2007-06-14 05:31:55 +00:00
|
|
|
}
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2007-10-27 18:05:50 +00:00
|
|
|
/* Main cleaning function.
|
|
|
|
* Delete
|
|
|
|
* - Redundant points on tracks (merge aligned segments)
|
|
|
|
* - vias on pad
|
|
|
|
* - null segments
|
|
|
|
* - Redundant segments
|
2011-09-15 17:58:35 +00:00
|
|
|
* Create segments when track ends are incorrectly connected:
|
2007-10-27 18:05:50 +00:00
|
|
|
* i.e. when a track end covers a pad or a via but is not exactly on the pad or the via center
|
|
|
|
*/
|
2011-03-01 19:26:17 +00:00
|
|
|
void Clean_Pcb_Items( PCB_EDIT_FRAME* frame, wxDC* DC,
|
2010-11-21 18:28:32 +00:00
|
|
|
bool aCleanVias, bool aMergeSegments,
|
|
|
|
bool aDeleteUnconnectedSegm, bool aConnectToPads )
|
2007-06-14 05:31:55 +00:00
|
|
|
{
|
2010-11-21 18:28:32 +00:00
|
|
|
wxBusyCursor( dummy );
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
frame->MsgPanel->EraseMsgBox();
|
2009-01-05 05:21:35 +00:00
|
|
|
frame->GetBoard()->GetNumSegmTrack(); // update the count
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2009-08-03 07:55:08 +00:00
|
|
|
// Clear undo and redo lists to avoid inconsistencies between lists
|
|
|
|
frame->GetScreen()->ClearUndoRedoList();
|
|
|
|
|
2007-10-27 12:24:09 +00:00
|
|
|
/* Rebuild the pad infos (pad list and netcodes) to ensure an up to date info */
|
2009-01-05 05:21:35 +00:00
|
|
|
frame->GetBoard()->m_Status_Pcb = 0;
|
2009-05-24 18:28:36 +00:00
|
|
|
frame->GetBoard()->m_NetInfo->BuildListOfNets();
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
if( aCleanVias ) // delete redundant vias
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2011-02-11 20:48:13 +00:00
|
|
|
frame->SetStatusText( _( "Clean vias" ) );
|
2010-11-21 18:28:32 +00:00
|
|
|
clean_vias( frame->GetBoard() );
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
2007-06-14 05:31:55 +00:00
|
|
|
|
|
|
|
#ifdef CONN2PAD_ENBL
|
2008-03-10 15:00:22 +00:00
|
|
|
/* Create missing segments when a track end covers a pad or a via,
|
2011-09-15 17:58:35 +00:00
|
|
|
* but is not on the pad or the via center */
|
2010-11-21 18:28:32 +00:00
|
|
|
if( aConnectToPads )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2011-02-11 20:48:13 +00:00
|
|
|
frame->SetStatusText( _( "Reconnect pads" ) );
|
2011-09-15 17:58:35 +00:00
|
|
|
|
2008-03-10 15:00:22 +00:00
|
|
|
/* Create missing segments when a track end covers a pad, but is not on the pad center */
|
2010-11-21 18:28:32 +00:00
|
|
|
ConnectDanglingEndToPad( frame, DC );
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2008-03-10 15:00:22 +00:00
|
|
|
/* Create missing segments when a track end covers a via, but is not on the via center */
|
2010-11-21 18:28:32 +00:00
|
|
|
ConnectDanglingEndToVia( frame->GetBoard() );
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
#endif
|
|
|
|
|
2007-10-27 12:24:09 +00:00
|
|
|
/* Remove null segments and intermediate points on aligned segments */
|
2010-11-21 18:28:32 +00:00
|
|
|
if( aMergeSegments )
|
|
|
|
{
|
2011-02-11 20:48:13 +00:00
|
|
|
frame->SetStatusText( _( "Merge track segments" ) );
|
2009-06-11 18:30:03 +00:00
|
|
|
clean_segments( frame );
|
2010-11-21 18:28:32 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2007-10-27 12:24:09 +00:00
|
|
|
/* Delete dangling tracks */
|
2010-11-21 18:28:32 +00:00
|
|
|
if( aDeleteUnconnectedSegm )
|
|
|
|
{
|
2011-02-11 20:48:13 +00:00
|
|
|
frame->SetStatusText( _( "Delete unconnected tracks" ) );
|
2007-10-27 12:24:09 +00:00
|
|
|
DeleteUnconnectedTracks( frame, DC );
|
2010-11-21 18:28:32 +00:00
|
|
|
}
|
|
|
|
|
2011-02-11 20:48:13 +00:00
|
|
|
frame->SetStatusText( _( "Cleanup finished" ) );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
frame->Compile_Ratsnest( DC, true );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2010-02-19 13:23:58 +00:00
|
|
|
frame->OnModify();
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
void clean_vias( BOARD * aPcb )
|
|
|
|
{
|
|
|
|
TRACK* track;
|
|
|
|
TRACK* next_track;
|
|
|
|
|
|
|
|
for( track = aPcb->m_Track; track; track = track->Next() )
|
|
|
|
{
|
|
|
|
if( track->Shape() != VIA_THROUGH )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Search and delete others vias at same location
|
|
|
|
TRACK* alt_track = track->Next();
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
for( ; alt_track != NULL; alt_track = next_track )
|
|
|
|
{
|
|
|
|
next_track = alt_track->Next();
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
if( alt_track->m_Shape != VIA_THROUGH )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( alt_track->m_Start != track->m_Start )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* delete via */
|
|
|
|
alt_track->UnLink();
|
|
|
|
delete alt_track;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Delete Via on pads at same location */
|
|
|
|
for( track = aPcb->m_Track; track != NULL; track = next_track )
|
|
|
|
{
|
|
|
|
next_track = track->Next();
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
if( track->m_Shape != VIA_THROUGH )
|
|
|
|
continue;
|
|
|
|
|
2011-09-15 17:58:35 +00:00
|
|
|
D_PAD* pad = aPcb->GetPadFast( track->m_Start, ALL_CU_LAYERS );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
|
|
|
if( pad && (pad->m_layerMask & EXTERNAL_LAYERS) == EXTERNAL_LAYERS ) // redundant Via
|
2010-11-21 18:28:32 +00:00
|
|
|
{
|
|
|
|
/* delete via */
|
|
|
|
track->UnLink();
|
|
|
|
delete track;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
/*
|
2007-10-27 12:24:09 +00:00
|
|
|
* Delete dangling tracks
|
|
|
|
* Vias:
|
|
|
|
* If a via is only connected to a dangling track, it also will be removed
|
2007-08-10 19:14:51 +00:00
|
|
|
*/
|
2011-09-07 19:41:04 +00:00
|
|
|
static void DeleteUnconnectedTracks( PCB_EDIT_FRAME* frame, wxDC* DC )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
TRACK* segment;
|
|
|
|
TRACK* other;
|
|
|
|
TRACK* startNetcode;
|
|
|
|
TRACK* next;
|
2008-11-27 10:12:46 +00:00
|
|
|
ZONE_CONTAINER* zone;
|
2007-08-10 19:14:51 +00:00
|
|
|
int masklayer, oldnetcode;
|
|
|
|
int type_end, flag_erase;
|
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
if( frame->GetBoard()->m_Track == NULL )
|
|
|
|
return;
|
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
frame->DrawPanel->m_AbortRequest = false;
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
// correct via m_End defects
|
2009-01-05 05:21:35 +00:00
|
|
|
for( segment = frame->GetBoard()->m_Track; segment; segment = next )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
next = segment->Next();
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
if( segment->Type() == PCB_VIA_T )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
if( segment->m_Start != segment->m_End )
|
|
|
|
segment->m_End = segment->m_Start;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
// removal of unconnected tracks
|
2009-01-05 05:21:35 +00:00
|
|
|
segment = startNetcode = frame->GetBoard()->m_Track;
|
2010-11-21 18:28:32 +00:00
|
|
|
oldnetcode = segment->GetNet();
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
for( int ii = 0; segment ; segment = next, ii++ )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
next = segment->Next();
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
if( frame->DrawPanel->m_AbortRequest )
|
|
|
|
break;
|
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
if( segment->GetNet() != oldnetcode )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2008-03-10 15:00:22 +00:00
|
|
|
startNetcode = segment;
|
2007-10-19 19:58:31 +00:00
|
|
|
oldnetcode = segment->GetNet();
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
|
|
|
|
2008-11-27 10:12:46 +00:00
|
|
|
flag_erase = 0; //Not connected indicator
|
2007-10-19 19:58:31 +00:00
|
|
|
type_end = 0;
|
2007-10-27 12:24:09 +00:00
|
|
|
|
|
|
|
/* Is a pad found on a track end ? */
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
masklayer = segment->ReturnMaskLayer();
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
D_PAD* pad;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2011-09-15 17:58:35 +00:00
|
|
|
pad = frame->GetBoard()->GetPadFast( segment->m_Start, masklayer );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
if( pad != NULL )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
segment->start = pad;
|
|
|
|
type_end |= START_ON_PAD;
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
|
|
|
|
2011-09-15 17:58:35 +00:00
|
|
|
pad = frame->GetBoard()->GetPadFast( segment->m_End, masklayer );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
if( pad != NULL )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
segment->end = pad;
|
|
|
|
type_end |= END_ON_PAD;
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
// if not connected to a pad, test if segment's START is connected to another track
|
2008-11-27 10:12:46 +00:00
|
|
|
// For via tests, an enhancement could to test if connected to 2 items on different layers.
|
2011-09-15 17:58:35 +00:00
|
|
|
// Currently a via must be connected to 2 items, that can be on the same layer
|
2008-11-27 10:12:46 +00:00
|
|
|
int top_layer, bottom_layer;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
if( (type_end & START_ON_PAD ) == 0 )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2011-09-16 14:13:02 +00:00
|
|
|
other = segment->GetTrace( frame->GetBoard()->m_Track, NULL, START );
|
2008-11-27 10:12:46 +00:00
|
|
|
|
|
|
|
if( other == NULL ) // Test a connection to zones
|
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
if( segment->Type() != PCB_VIA_T )
|
2008-11-27 10:12:46 +00:00
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
zone = frame->GetBoard()->HitTestForAnyFilledArea( segment->m_Start,
|
|
|
|
segment->GetLayer() );
|
2008-11-27 10:12:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
((SEGVIA*)segment)->ReturnLayerPair( &top_layer, &bottom_layer );
|
2011-09-07 19:41:04 +00:00
|
|
|
zone = frame->GetBoard()->HitTestForAnyFilledArea( segment->m_Start,
|
|
|
|
top_layer, bottom_layer );
|
2008-11-27 10:12:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( (other == NULL) && (zone == NULL) )
|
2011-09-07 19:41:04 +00:00
|
|
|
{
|
2007-08-10 19:14:51 +00:00
|
|
|
flag_erase |= 1;
|
2011-09-07 19:41:04 +00:00
|
|
|
}
|
2008-11-27 10:12:46 +00:00
|
|
|
else // segment, via or zone connected to this end
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
segment->start = other;
|
2008-11-27 10:12:46 +00:00
|
|
|
// If a via is connected to this end, test if this via has a second item connected
|
|
|
|
// if no, remove it with the current segment
|
2011-10-01 19:24:27 +00:00
|
|
|
|
|
|
|
if( other && other->Type() == PCB_VIA_T )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
// search for another segment following the via
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
segment->SetState( BUSY, ON );
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2008-11-27 10:12:46 +00:00
|
|
|
SEGVIA* via = (SEGVIA*) other;
|
2011-09-16 14:13:02 +00:00
|
|
|
other = via->GetTrace( frame->GetBoard()->m_Track, NULL, START );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
if( other == NULL )
|
2008-11-27 10:12:46 +00:00
|
|
|
{
|
|
|
|
via->ReturnLayerPair( &top_layer, &bottom_layer );
|
2011-09-07 19:41:04 +00:00
|
|
|
zone = frame->GetBoard()->HitTestForAnyFilledArea( via->m_Start,
|
|
|
|
bottom_layer,
|
|
|
|
top_layer );
|
2008-11-27 10:12:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( (other == NULL) && (zone == NULL) )
|
2007-08-10 19:14:51 +00:00
|
|
|
flag_erase |= 2;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
segment->SetState( BUSY, OFF );
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
// if not connected to a pad, test if segment's END is connected to another track
|
|
|
|
if( (type_end & END_ON_PAD ) == 0 )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2011-09-16 14:13:02 +00:00
|
|
|
other = segment->GetTrace( frame->GetBoard()->m_Track, NULL, END );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-11-27 10:12:46 +00:00
|
|
|
if( other == NULL ) // Test a connection to zones
|
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
if( segment->Type() != PCB_VIA_T )
|
2011-09-15 17:58:35 +00:00
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
zone = frame->GetBoard()->HitTestForAnyFilledArea( segment->m_End,
|
|
|
|
segment->GetLayer() );
|
2011-09-15 17:58:35 +00:00
|
|
|
}
|
2008-11-27 10:12:46 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
((SEGVIA*)segment)->ReturnLayerPair( &top_layer, &bottom_layer );
|
2011-09-07 19:41:04 +00:00
|
|
|
zone = frame->GetBoard()->HitTestForAnyFilledArea( segment->m_End,
|
|
|
|
top_layer, bottom_layer );
|
2008-11-27 10:12:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( (other == NULL) && (zone == NULL) )
|
2011-09-07 19:41:04 +00:00
|
|
|
{
|
2007-08-10 19:14:51 +00:00
|
|
|
flag_erase |= 0x10;
|
2011-09-07 19:41:04 +00:00
|
|
|
}
|
2008-11-27 10:12:46 +00:00
|
|
|
else // segment, via or zone connected to this end
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
segment->end = other;
|
2008-12-04 04:28:11 +00:00
|
|
|
|
2008-11-27 10:12:46 +00:00
|
|
|
// If a via is connected to this end, test if this via has a second item connected
|
|
|
|
// if no, remove it with the current segment
|
2011-10-01 19:24:27 +00:00
|
|
|
|
|
|
|
if( other && other->Type() == PCB_VIA_T )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
// search for another segment following the via
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
segment->SetState( BUSY, ON );
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2008-11-27 10:12:46 +00:00
|
|
|
SEGVIA* via = (SEGVIA*) other;
|
2011-09-16 14:13:02 +00:00
|
|
|
other = via->GetTrace( frame->GetBoard()->m_Track, NULL, END );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
if( other == NULL )
|
2008-11-27 10:12:46 +00:00
|
|
|
{
|
|
|
|
via->ReturnLayerPair( &top_layer, &bottom_layer );
|
2011-09-07 19:41:04 +00:00
|
|
|
zone = frame->GetBoard()->HitTestForAnyFilledArea( via->m_End,
|
|
|
|
bottom_layer,
|
|
|
|
top_layer );
|
2008-11-27 10:12:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( (other == NULL) && (zone == NULL) )
|
2007-08-10 19:14:51 +00:00
|
|
|
flag_erase |= 0x20;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
segment->SetState( BUSY, OFF );
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( flag_erase )
|
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
// update the pointer to start of the contiguous netcode group
|
|
|
|
if( segment == startNetcode )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
next = segment->Next();
|
|
|
|
startNetcode = next;
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
|
|
|
else
|
2011-09-07 19:41:04 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
next = startNetcode;
|
2011-09-07 19:41:04 +00:00
|
|
|
}
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
// remove segment from screen and board
|
2007-10-15 03:26:38 +00:00
|
|
|
segment->Draw( frame->DrawPanel, DC, GR_XOR );
|
|
|
|
segment->DeleteStructure();
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
if( next == NULL )
|
2007-08-10 19:14:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-15 17:58:35 +00:00
|
|
|
/* Delete null length segments, and intermediate points .. */
|
2011-09-07 19:41:04 +00:00
|
|
|
static void clean_segments( PCB_EDIT_FRAME* frame )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-06-11 18:30:03 +00:00
|
|
|
TRACK* segment, * nextsegment;
|
2007-10-19 19:58:31 +00:00
|
|
|
TRACK* other;
|
2010-11-21 18:28:32 +00:00
|
|
|
int ii;
|
|
|
|
int flag, no_inc;
|
2007-08-10 19:14:51 +00:00
|
|
|
wxString msg;
|
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
frame->DrawPanel->m_AbortRequest = false;
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
// Delete null segments
|
2009-06-11 18:30:03 +00:00
|
|
|
for( segment = frame->GetBoard()->m_Track; segment; segment = nextsegment )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2009-06-11 18:30:03 +00:00
|
|
|
nextsegment = segment->Next();
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
if( !segment->IsNull() )
|
2007-08-10 19:14:51 +00:00
|
|
|
continue;
|
|
|
|
|
2009-02-26 00:37:04 +00:00
|
|
|
/* Length segment = 0; delete it */
|
2007-10-15 03:26:38 +00:00
|
|
|
segment->DeleteStructure();
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
|
|
|
|
2007-10-27 12:24:09 +00:00
|
|
|
/* Delete redundant segments */
|
2009-01-05 05:21:35 +00:00
|
|
|
for( segment = frame->GetBoard()->m_Track, ii = 0; segment; segment = segment->Next(), ii++ )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2009-06-11 18:30:03 +00:00
|
|
|
for( other = segment->Next(); other; other = nextsegment )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2009-06-11 18:30:03 +00:00
|
|
|
nextsegment = other->Next();
|
2007-08-10 19:14:51 +00:00
|
|
|
int erase = 0;
|
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
if( segment->Type() != other->Type() )
|
2007-08-10 19:14:51 +00:00
|
|
|
continue;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
if( segment->GetLayer() != other->GetLayer() )
|
2007-08-10 19:14:51 +00:00
|
|
|
continue;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
if( segment->GetNet() != other->GetNet() )
|
2007-08-10 19:14:51 +00:00
|
|
|
break;
|
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
if( segment->m_Start == other->m_Start )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
if( segment->m_End == other->m_End )
|
2007-08-10 19:14:51 +00:00
|
|
|
erase = 1;
|
|
|
|
}
|
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
if( segment->m_Start == other->m_End )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
if( segment->m_End == other->m_Start )
|
2007-08-10 19:14:51 +00:00
|
|
|
erase = 1;
|
|
|
|
}
|
|
|
|
|
2007-10-27 12:24:09 +00:00
|
|
|
/* Delete redundant point */
|
2007-08-10 19:14:51 +00:00
|
|
|
if( erase )
|
|
|
|
{
|
|
|
|
ii--;
|
2007-10-19 19:58:31 +00:00
|
|
|
other->DeleteStructure();
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-27 12:24:09 +00:00
|
|
|
/* delete intermediate points */
|
2007-08-10 19:14:51 +00:00
|
|
|
ii = 0;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-06-11 18:30:03 +00:00
|
|
|
for( segment = frame->GetBoard()->m_Track; segment; segment = nextsegment )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
TRACK* segStart;
|
|
|
|
TRACK* segEnd;
|
2007-10-19 23:02:11 +00:00
|
|
|
TRACK* segDelete;
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2009-06-11 18:30:03 +00:00
|
|
|
nextsegment = segment->Next();
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
if( frame->DrawPanel->m_AbortRequest )
|
|
|
|
return;
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
if( segment->Type() != PCB_TRACE_T )
|
2007-08-10 19:14:51 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
flag = no_inc = 0;
|
|
|
|
|
2007-10-27 18:05:50 +00:00
|
|
|
// search for a possible point that connects on the START point of the segment
|
2007-10-19 23:02:11 +00:00
|
|
|
for( segStart = segment->Next(); ; )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2011-09-16 14:13:02 +00:00
|
|
|
segStart = segment->GetTrace( segStart, NULL, START );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
if( segStart )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
// the two segments must have the same width
|
|
|
|
if( segment->m_Width != segStart->m_Width )
|
2007-08-10 19:14:51 +00:00
|
|
|
break;
|
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
// it cannot be a via
|
2011-10-01 19:24:27 +00:00
|
|
|
if( segStart->Type() != PCB_TRACE_T )
|
2007-08-10 19:14:51 +00:00
|
|
|
break;
|
|
|
|
|
2007-10-27 18:05:50 +00:00
|
|
|
/* We must have only one segment connected */
|
2007-10-19 19:58:31 +00:00
|
|
|
segStart->SetState( BUSY, ON );
|
2011-09-16 14:13:02 +00:00
|
|
|
other = segment->GetTrace( frame->GetBoard()->m_Track, NULL, START );
|
2007-10-19 19:58:31 +00:00
|
|
|
segStart->SetState( BUSY, OFF );
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
if( other == NULL )
|
|
|
|
flag = 1; /* OK */
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-09-15 17:58:35 +00:00
|
|
|
if( flag ) // We have the starting point of the segment is connected to an other segment
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2009-01-05 05:21:35 +00:00
|
|
|
segDelete = AlignSegment( frame->GetBoard(), segment, segStart, START );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-10-19 23:02:11 +00:00
|
|
|
if( segDelete )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2010-11-21 18:28:32 +00:00
|
|
|
no_inc = 1;
|
2007-10-19 23:02:11 +00:00
|
|
|
segDelete->DeleteStructure();
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-27 18:05:50 +00:00
|
|
|
/* search for a possible point that connects on the END point of the segment: */
|
2007-10-19 23:02:11 +00:00
|
|
|
for( segEnd = segment->Next(); ; )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2011-09-16 14:13:02 +00:00
|
|
|
segEnd = segment->GetTrace( segEnd, NULL, END );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
if( segEnd )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
if( segment->m_Width != segEnd->m_Width )
|
2007-08-10 19:14:51 +00:00
|
|
|
break;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
if( segEnd->Type() != PCB_TRACE_T )
|
2007-08-10 19:14:51 +00:00
|
|
|
break;
|
|
|
|
|
2007-10-27 18:05:50 +00:00
|
|
|
/* We must have only one segment connected */
|
2007-10-19 19:58:31 +00:00
|
|
|
segEnd->SetState( BUSY, ON );
|
2011-09-16 14:13:02 +00:00
|
|
|
other = segment->GetTrace( frame->GetBoard()->m_Track, NULL, END );
|
2007-10-19 19:58:31 +00:00
|
|
|
segEnd->SetState( BUSY, OFF );
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-19 19:58:31 +00:00
|
|
|
if( other == NULL )
|
|
|
|
flag |= 2; /* Ok */
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
2011-09-07 19:41:04 +00:00
|
|
|
{
|
2007-08-10 19:14:51 +00:00
|
|
|
break;
|
2011-09-07 19:41:04 +00:00
|
|
|
}
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
|
|
|
|
2011-09-15 17:58:35 +00:00
|
|
|
if( flag & 2 ) // We have the ending point of the segment is connected to an other segment
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2009-01-05 05:21:35 +00:00
|
|
|
segDelete = AlignSegment( frame->GetBoard(), segment, segEnd, END );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-10-19 23:02:11 +00:00
|
|
|
if( segDelete )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
no_inc = 1;
|
2007-10-19 23:02:11 +00:00
|
|
|
segDelete->DeleteStructure();
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-27 18:05:50 +00:00
|
|
|
if( no_inc ) /* The current segment was modified, retry to merge it */
|
2009-06-11 18:30:03 +00:00
|
|
|
nextsegment = segment->Next();
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
return;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2007-10-27 18:05:50 +00:00
|
|
|
/* Function used by clean_segments.
|
2011-09-15 17:58:35 +00:00
|
|
|
* Test alignment of pt_segm and pt_ref (which must have a common end).
|
2007-10-27 18:05:50 +00:00
|
|
|
* and see if the common point is not on a pad (i.e. if this common point can be removed).
|
|
|
|
* the ending point of pt_ref is the start point (extremite == START)
|
|
|
|
* or the end point (extremite == FIN)
|
2008-03-10 15:00:22 +00:00
|
|
|
* if the common end can be deleted, this function
|
2007-10-27 18:05:50 +00:00
|
|
|
* change the common point coordinate of the pt_ref segm
|
|
|
|
* (and therefore connect the 2 other ending points)
|
|
|
|
* and return pt_segm (which can be deleted).
|
|
|
|
* else return NULL
|
2007-08-10 19:14:51 +00:00
|
|
|
*/
|
2011-09-07 19:41:04 +00:00
|
|
|
static TRACK* AlignSegment( BOARD* Pcb, TRACK* pt_ref, TRACK* pt_segm, int extremite )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-08-10 19:14:51 +00:00
|
|
|
int flag = 0;
|
|
|
|
|
2008-03-10 15:00:22 +00:00
|
|
|
int refdx = pt_ref->m_End.x - pt_ref->m_Start.x;
|
2007-10-19 19:58:31 +00:00
|
|
|
int refdy = pt_ref->m_End.y - pt_ref->m_Start.y;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
|
|
|
int segmdx = pt_segm->m_End.x - pt_segm->m_Start.x;
|
2007-10-19 19:58:31 +00:00
|
|
|
int segmdy = pt_segm->m_End.y - pt_segm->m_Start.y;
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2007-10-27 18:05:50 +00:00
|
|
|
// test for vertical alignment (easy to handle)
|
2007-08-10 19:14:51 +00:00
|
|
|
if( refdx == 0 )
|
|
|
|
{
|
|
|
|
if( segmdx != 0 )
|
|
|
|
return NULL;
|
|
|
|
else
|
|
|
|
flag = 1;
|
|
|
|
}
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-27 18:05:50 +00:00
|
|
|
// test for horizontal alignment (easy to handle)
|
2007-08-10 19:14:51 +00:00
|
|
|
if( refdy == 0 )
|
|
|
|
{
|
|
|
|
if( segmdy != 0 )
|
|
|
|
return NULL;
|
|
|
|
else
|
|
|
|
flag = 2;
|
|
|
|
}
|
|
|
|
|
2011-09-15 17:58:35 +00:00
|
|
|
/* test if alignment in other cases
|
2007-10-27 18:05:50 +00:00
|
|
|
* We must have refdy/refdx == (+/-)segmdy/segmdx, (i.e. same orientation) */
|
2007-08-10 19:14:51 +00:00
|
|
|
if( flag == 0 )
|
|
|
|
{
|
2007-10-19 19:58:31 +00:00
|
|
|
if( (refdy * segmdx != refdx * segmdy)
|
2007-10-15 03:26:38 +00:00
|
|
|
&& (refdy * segmdx != -refdx * segmdy) )
|
2007-08-10 19:14:51 +00:00
|
|
|
return NULL;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
flag = 4;
|
|
|
|
}
|
|
|
|
|
2007-10-27 18:05:50 +00:00
|
|
|
/* Here we have 2 aligned segments:
|
2011-09-15 17:58:35 +00:00
|
|
|
* We must change the pt_ref common point only if not on a pad
|
|
|
|
* (this function) is called when there is only 2 connected segments,
|
|
|
|
*and if this point is not on a pad, it can be removed and the 2 segments will be merged
|
|
|
|
*/
|
2007-08-10 19:14:51 +00:00
|
|
|
if( extremite == START )
|
|
|
|
{
|
2007-10-27 18:05:50 +00:00
|
|
|
/* We do not have a pad */
|
2011-09-15 17:58:35 +00:00
|
|
|
if( Pcb->GetPadFast( pt_ref->m_Start, g_TabOneLayerMask[pt_ref->GetLayer()] ) )
|
2007-08-10 19:14:51 +00:00
|
|
|
return NULL;
|
|
|
|
|
2011-09-15 17:58:35 +00:00
|
|
|
/* change the common point coordinate of pt_segm to use the other point
|
|
|
|
* of pt_segm (pt_segm will be removed later) */
|
2007-10-19 19:58:31 +00:00
|
|
|
if( pt_ref->m_Start == pt_segm->m_Start )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2008-03-10 15:00:22 +00:00
|
|
|
pt_ref->m_Start = pt_segm->m_End;
|
2007-08-10 19:14:51 +00:00
|
|
|
return pt_segm;
|
|
|
|
}
|
2007-10-27 18:05:50 +00:00
|
|
|
else
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2008-03-10 15:00:22 +00:00
|
|
|
pt_ref->m_Start = pt_segm->m_Start;
|
2007-08-10 19:14:51 +00:00
|
|
|
return pt_segm;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* extremite == END */
|
|
|
|
{
|
2007-10-27 18:05:50 +00:00
|
|
|
/* We do not have a pad */
|
2011-09-15 17:58:35 +00:00
|
|
|
if( Pcb->GetPadFast( pt_ref->m_End, g_TabOneLayerMask[pt_ref->GetLayer()] ) )
|
2007-08-10 19:14:51 +00:00
|
|
|
return NULL;
|
|
|
|
|
2011-09-15 17:58:35 +00:00
|
|
|
/* change the common point coordinate of pt_segm to use the other point
|
|
|
|
* of pt_segm (pt_segm will be removed later) */
|
2007-08-10 19:14:51 +00:00
|
|
|
if( pt_ref->m_End == pt_segm->m_Start )
|
|
|
|
{
|
|
|
|
pt_ref->m_End = pt_segm->m_End;
|
|
|
|
return pt_segm;
|
|
|
|
}
|
2007-10-27 18:05:50 +00:00
|
|
|
else
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
|
|
|
pt_ref->m_End = pt_segm->m_Start;
|
|
|
|
return pt_segm;
|
|
|
|
}
|
|
|
|
}
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
return NULL;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
bool PCB_EDIT_FRAME::RemoveMisConnectedTracks( wxDC* aDC )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-10-15 03:26:38 +00:00
|
|
|
TRACK* segment;
|
|
|
|
TRACK* other;
|
|
|
|
TRACK* next;
|
2007-08-10 19:14:51 +00:00
|
|
|
int net_code_s, net_code_e;
|
2010-11-21 18:28:32 +00:00
|
|
|
bool isModified = false;
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2010-04-16 16:28:35 +00:00
|
|
|
for( segment = GetBoard()->m_Track; segment; segment = (TRACK*) segment->Next() )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-15 03:26:38 +00:00
|
|
|
segment->SetState( FLAG0, OFF );
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
// find the netcode for segment using anything connected to the "start" of "segment"
|
2007-08-10 19:14:51 +00:00
|
|
|
net_code_s = -1;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
if( segment->start && segment->start->Type()==PCB_PAD_T )
|
2007-10-15 03:26:38 +00:00
|
|
|
{
|
|
|
|
// get the netcode of the pad to propagate.
|
|
|
|
net_code_s = ((D_PAD*)(segment->start))->GetNet();
|
|
|
|
}
|
2007-08-10 19:14:51 +00:00
|
|
|
else
|
|
|
|
{
|
2011-09-16 14:13:02 +00:00
|
|
|
other = segment->GetTrace( GetBoard()->m_Track, NULL, START );
|
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
if( other )
|
|
|
|
net_code_s = other->GetNet();
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-08-10 19:14:51 +00:00
|
|
|
if( net_code_s < 0 )
|
2007-10-15 03:26:38 +00:00
|
|
|
continue; // the "start" of segment is not connected
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
// find the netcode for segment using anything connected to the "end" of "segment"
|
2007-08-10 19:14:51 +00:00
|
|
|
net_code_e = -1;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
if( segment->end && segment->end->Type()==PCB_PAD_T )
|
2007-10-15 03:26:38 +00:00
|
|
|
{
|
|
|
|
net_code_e = ((D_PAD*)(segment->end))->GetNet();
|
|
|
|
}
|
2007-08-10 19:14:51 +00:00
|
|
|
else
|
|
|
|
{
|
2011-09-16 14:13:02 +00:00
|
|
|
other = segment->GetTrace( GetBoard()->m_Track, NULL, END );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
if( other )
|
|
|
|
net_code_e = other->GetNet();
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( net_code_e < 0 )
|
2007-10-15 03:26:38 +00:00
|
|
|
continue; // the "end" of segment is not connected
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
// Netcodes do not agree, so mark the segment as needed to be removed
|
2007-08-10 19:14:51 +00:00
|
|
|
if( net_code_s != net_code_e )
|
|
|
|
{
|
2007-10-15 03:26:38 +00:00
|
|
|
segment->SetState( FLAG0, ON );
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
// Remove flagged segments
|
2010-04-16 16:28:35 +00:00
|
|
|
for( segment = GetBoard()->m_Track; segment; segment = next )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-15 03:26:38 +00:00
|
|
|
next = (TRACK*) segment->Next();
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2011-09-15 17:58:35 +00:00
|
|
|
if( segment->GetState( FLAG0 ) ) // Segment is flagged to be removed
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-15 03:26:38 +00:00
|
|
|
segment->SetState( FLAG0, OFF );
|
2010-11-21 18:28:32 +00:00
|
|
|
isModified = true;
|
2010-04-16 16:28:35 +00:00
|
|
|
GetBoard()->m_Status_Pcb = 0;
|
|
|
|
Remove_One_Track( aDC, segment );
|
2011-09-15 17:58:35 +00:00
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
// the current segment could be deleted, so restart to the beginning
|
|
|
|
next = GetBoard()->m_Track;
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
return isModified;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-22 07:13:27 +00:00
|
|
|
#if defined(CONN2PAD_ENBL)
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2007-10-19 23:02:11 +00:00
|
|
|
/**
|
|
|
|
* Function ConnectDanglingEndToPad
|
|
|
|
* looks for vias which have no netcode and which are in electrical contact
|
|
|
|
* with a track to the degree that the track's end point falls on the via.
|
|
|
|
* Note that this is not a rigorous electrical check, but is better than
|
|
|
|
* testing for the track endpoint equaling the via center. When such a via
|
|
|
|
* is found, then add a small track to bridge from the overlapping track to
|
2008-03-10 15:00:22 +00:00
|
|
|
* the via and change the via's netcode so that subsequent continuity checks
|
|
|
|
* can be done with the faster equality algorithm.
|
2007-10-19 23:02:11 +00:00
|
|
|
*/
|
|
|
|
static void ConnectDanglingEndToVia( BOARD* pcb )
|
|
|
|
{
|
|
|
|
for( TRACK* track = pcb->m_Track; track; track = track->Next() )
|
|
|
|
{
|
|
|
|
SEGVIA* via;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
if( track->Type()!=PCB_VIA_T || (via = (SEGVIA*)track)->GetNet()!=0 )
|
2007-10-19 23:02:11 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
for( TRACK* other = pcb->m_Track; other; other = other->Next() )
|
|
|
|
{
|
|
|
|
if( other == track )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( !via->IsOnLayer( other->GetLayer() ) )
|
|
|
|
continue;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
// if the other track's m_End does not match the via position, and the track's
|
|
|
|
// m_Start is within the bounds of the via, and the other track has no start
|
|
|
|
if( other->m_End != via->GetPosition() && via->HitTest( other->m_Start )
|
|
|
|
&& !other->start )
|
2007-10-19 23:02:11 +00:00
|
|
|
{
|
|
|
|
TRACK* newTrack = other->Copy();
|
2008-12-04 04:28:11 +00:00
|
|
|
|
|
|
|
pcb->m_Track.Insert( newTrack, other->Next() );
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-12-01 03:42:52 +00:00
|
|
|
newTrack->m_End = via->GetPosition();
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-19 23:02:11 +00:00
|
|
|
newTrack->start = other;
|
|
|
|
newTrack->end = via;
|
|
|
|
other->start = newTrack;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-19 23:02:11 +00:00
|
|
|
via->SetNet( other->GetNet() );
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-19 23:02:11 +00:00
|
|
|
if( !via->start )
|
|
|
|
via->start = other;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-19 23:02:11 +00:00
|
|
|
if( !via->end )
|
|
|
|
via->end = other;
|
|
|
|
}
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
// if the other track's m_Start does not match the via position, and the track's
|
|
|
|
// m_End is within the bounds of the via, and the other track has no end
|
|
|
|
else if( other->m_Start != via->GetPosition() && via->HitTest( other->m_End )
|
|
|
|
&& !other->end )
|
2007-10-19 23:02:11 +00:00
|
|
|
{
|
|
|
|
TRACK* newTrack = other->Copy();
|
2008-12-04 04:28:11 +00:00
|
|
|
|
|
|
|
pcb->m_Track.Insert( newTrack, other->Next() );
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-12-01 03:42:52 +00:00
|
|
|
newTrack->m_Start = via->GetPosition();
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-19 23:02:11 +00:00
|
|
|
newTrack->start = via;
|
|
|
|
newTrack->end = other;
|
|
|
|
other->end = newTrack;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-19 23:02:11 +00:00
|
|
|
via->SetNet( other->GetNet() );
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-19 23:02:11 +00:00
|
|
|
if( !via->start )
|
|
|
|
via->start = other;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-19 23:02:11 +00:00
|
|
|
if( !via->end )
|
|
|
|
via->end = other;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
/**
|
|
|
|
* Function ConnectDanglingEndToPad
|
|
|
|
* possibly adds a segment to the end of any and all tracks if their end is not exactly
|
2008-03-10 15:00:22 +00:00
|
|
|
* connected into the center of the pad. This allows faster control of
|
2007-10-15 03:26:38 +00:00
|
|
|
* connections.
|
2007-08-10 19:14:51 +00:00
|
|
|
*/
|
2011-09-07 19:41:04 +00:00
|
|
|
void ConnectDanglingEndToPad( PCB_EDIT_FRAME* frame, wxDC* DC )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-10-15 03:26:38 +00:00
|
|
|
TRACK* segment;
|
2011-09-07 19:41:04 +00:00
|
|
|
int nb_new_trace = 0;
|
2007-08-10 19:14:51 +00:00
|
|
|
wxString msg;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
frame->DrawPanel->m_AbortRequest = false;
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2009-01-05 05:21:35 +00:00
|
|
|
for( segment = frame->GetBoard()->m_Track; segment; segment = segment->Next() )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-15 03:26:38 +00:00
|
|
|
D_PAD* pad;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2010-11-21 18:28:32 +00:00
|
|
|
if( frame->DrawPanel->m_AbortRequest )
|
|
|
|
return;
|
2007-08-10 19:14:51 +00:00
|
|
|
|
2011-09-15 17:58:35 +00:00
|
|
|
pad = frame->GetBoard()->GetPad( segment, START );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
if( pad )
|
2008-03-10 15:00:22 +00:00
|
|
|
{
|
2007-10-15 03:26:38 +00:00
|
|
|
// test if the track is not precisely starting on the found pad
|
|
|
|
if( segment->m_Start != pad->m_Pos )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2011-09-16 14:13:02 +00:00
|
|
|
if( segment->GetTrace( frame->GetBoard()->m_Track, NULL, START ) == NULL )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-15 03:26:38 +00:00
|
|
|
TRACK* newTrack = segment->Copy();
|
2008-12-04 04:28:11 +00:00
|
|
|
|
2009-01-05 05:21:35 +00:00
|
|
|
frame->GetBoard()->m_Track.Insert( newTrack, segment->Next() );
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
newTrack->m_End = pad->m_Pos;
|
|
|
|
newTrack->start = segment;
|
|
|
|
newTrack->end = pad;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
nb_new_trace++;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
newTrack->Draw( frame->DrawPanel, DC, GR_OR );
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-15 17:58:35 +00:00
|
|
|
pad = frame->GetBoard()->GetPad( segment, END );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
if( pad )
|
2008-03-10 15:00:22 +00:00
|
|
|
{
|
2007-10-15 03:26:38 +00:00
|
|
|
// test if the track is not precisely ending on the found pad
|
|
|
|
if( segment->m_End != pad->m_Pos )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2011-09-16 14:13:02 +00:00
|
|
|
if( segment->GetTrace( frame->GetBoard()->m_Track, NULL, END ) == NULL )
|
2007-08-10 19:14:51 +00:00
|
|
|
{
|
2007-10-15 03:26:38 +00:00
|
|
|
TRACK* newTrack = segment->Copy();
|
2008-12-04 04:28:11 +00:00
|
|
|
|
2009-01-05 05:21:35 +00:00
|
|
|
frame->GetBoard()->m_Track.Insert( newTrack, segment->Next() );
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
newTrack->m_Start = pad->m_Pos;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2007-10-15 03:26:38 +00:00
|
|
|
newTrack->start = pad;
|
|
|
|
newTrack->end = segment;
|
2011-09-07 19:41:04 +00:00
|
|
|
nb_new_trace++;
|
2007-08-10 19:14:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|