259 lines
7.8 KiB
C++
259 lines
7.8 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2012 Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
|
|
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
|
* Copyright (C) 2012 Wayne Stambaugh <stambaughw@verizon.net>
|
|
* Copyright (C) 1992-2012 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
|
|
*/
|
|
|
|
/**
|
|
* @file deltrack.cpp
|
|
*/
|
|
|
|
#include <fctsys.h>
|
|
#include <class_drawpanel.h>
|
|
#include <confirm.h>
|
|
#include <pcb_edit_frame.h>
|
|
#include <macros.h>
|
|
#include <connectivity_data.h>
|
|
|
|
#include <class_board.h>
|
|
#include <class_track.h>
|
|
|
|
#include <pcbnew.h>
|
|
#include <protos.h>
|
|
|
|
|
|
TRACK* PCB_EDIT_FRAME::Delete_Segment( wxDC* DC, TRACK* aTrack )
|
|
{
|
|
if( aTrack == NULL )
|
|
return NULL;
|
|
|
|
if( aTrack->IsNew() ) // Trace in progress, erase the last segment
|
|
{
|
|
if( g_CurrentTrackList.GetCount() > 0 )
|
|
{
|
|
PCB_LAYER_ID previous_layer = GetActiveLayer();
|
|
|
|
DBG( g_CurrentTrackList.VerifyListIntegrity(); )
|
|
|
|
// Delete the current trace
|
|
ShowNewTrackWhenMovingCursor( m_canvas, DC, wxDefaultPosition, false );
|
|
|
|
// delete the most recently entered
|
|
delete g_CurrentTrackList.PopBack();
|
|
|
|
if( Settings().m_legacyUseTwoSegmentTracks )
|
|
{
|
|
// if in 2 track mode, and the next most recent is a segment
|
|
// not a via, and the one previous to that is a via, then
|
|
// delete up to the via.
|
|
if( g_CurrentTrackList.GetCount() >= 2
|
|
&& g_CurrentTrackSegment->Type() != PCB_VIA_T
|
|
&& g_CurrentTrackSegment->Back()->Type() == PCB_VIA_T )
|
|
{
|
|
delete g_CurrentTrackList.PopBack();
|
|
}
|
|
}
|
|
|
|
while( g_CurrentTrackSegment && g_CurrentTrackSegment->Type() == PCB_VIA_T )
|
|
{
|
|
delete g_CurrentTrackList.PopBack();
|
|
|
|
if( g_CurrentTrackSegment && g_CurrentTrackSegment->Type() != PCB_VIA_T )
|
|
previous_layer = g_CurrentTrackSegment->GetLayer();
|
|
}
|
|
|
|
// Correct active layer which could change if a via
|
|
// has been erased
|
|
SetActiveLayer( previous_layer );
|
|
|
|
UpdateStatusBar();
|
|
|
|
if( Settings().m_legacyUseTwoSegmentTracks ) // We must have 2 segments or more, or 0
|
|
{
|
|
if( g_CurrentTrackList.GetCount() == 1
|
|
&& g_CurrentTrackSegment->Type() != PCB_VIA_T )
|
|
{
|
|
delete g_CurrentTrackList.PopBack();
|
|
}
|
|
}
|
|
|
|
if( g_CurrentTrackList.GetCount() == 0 )
|
|
{
|
|
m_canvas->SetMouseCapture( NULL, NULL );
|
|
|
|
if( GetBoard()->IsHighLightNetON() )
|
|
HighLight( DC );
|
|
|
|
SetCurItem( NULL );
|
|
return NULL;
|
|
}
|
|
else
|
|
{
|
|
if( m_canvas->IsMouseCaptured() )
|
|
m_canvas->CallMouseCapture( DC, wxDefaultPosition, false );
|
|
|
|
return g_CurrentTrackSegment;
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
int netcode = aTrack->GetNetCode();
|
|
|
|
// Remove the segment from list, but do not delete it (it will be stored in undo list)
|
|
GetBoard()->Remove( aTrack );
|
|
GetBoard()->GetConnectivity()->Remove( aTrack );
|
|
|
|
SaveCopyInUndoList( aTrack, UR_DELETED );
|
|
OnModify();
|
|
|
|
if( GetBoard()->IsElementVisible( LAYER_RATSNEST ) && DC )
|
|
{
|
|
GRSetDrawMode( DC, GR_XOR );
|
|
DrawGeneralRatsnest( DC, 0 );
|
|
}
|
|
// compute and display the new ratsnest
|
|
TestNetConnection( DC, netcode );
|
|
SetMsgPanel( GetBoard() );
|
|
|
|
// redraw the area where the track was
|
|
m_canvas->RefreshDrawingRect( aTrack->GetBoundingBox() );
|
|
|
|
return NULL;
|
|
}
|
|
|
|
|
|
void PCB_EDIT_FRAME::Delete_Track( wxDC* DC, TRACK* aTrack )
|
|
{
|
|
if( aTrack != NULL )
|
|
{
|
|
Remove_One_Track( DC, aTrack );
|
|
OnModify();
|
|
}
|
|
}
|
|
|
|
|
|
void PCB_EDIT_FRAME::Delete_net( wxDC* DC, TRACK* aTrack )
|
|
{
|
|
if( aTrack == NULL )
|
|
return;
|
|
|
|
if( !IsOK( this, _( "Delete NET?" ) ) )
|
|
return;
|
|
|
|
PICKED_ITEMS_LIST itemsList;
|
|
ITEM_PICKER picker( NULL, UR_DELETED );
|
|
int netcode = aTrack->GetNetCode();
|
|
|
|
/* Search the first item for the given net code */
|
|
TRACK* trackList = GetBoard()->m_Track->GetStartNetCode( netcode );
|
|
|
|
/* Remove all segments having the given net code */
|
|
int ii = 0;
|
|
TRACK* next_track;
|
|
for( TRACK* segm = trackList; segm; segm = next_track, ++ii )
|
|
{
|
|
next_track = segm->Next();
|
|
if( segm->GetNetCode() != netcode )
|
|
break;
|
|
|
|
GetBoard()->GetConnectivity()->Remove( segm );
|
|
GetBoard()->m_Track.Remove( segm );
|
|
|
|
// redraw the area where the track was
|
|
m_canvas->RefreshDrawingRect( segm->GetBoundingBox() );
|
|
picker.SetItem( segm );
|
|
itemsList.PushItem( picker );
|
|
}
|
|
|
|
SaveCopyInUndoList( itemsList, UR_DELETED );
|
|
OnModify();
|
|
|
|
// Erase old ratsnest
|
|
if( GetBoard()->IsElementVisible( LAYER_RATSNEST ) )
|
|
{
|
|
GRSetDrawMode( DC, GR_XOR );
|
|
DrawGeneralRatsnest( DC, 0 );
|
|
}
|
|
|
|
TestNetConnection( DC, netcode );
|
|
SetMsgPanel( GetBoard() );
|
|
}
|
|
|
|
|
|
void PCB_EDIT_FRAME::Remove_One_Track( wxDC* DC, TRACK* pt_segm )
|
|
{
|
|
int segments_to_delete_count;
|
|
|
|
if( pt_segm == NULL )
|
|
return;
|
|
|
|
TRACK* trackList = GetBoard()->MarkTrace( GetBoard()->m_Track, pt_segm,
|
|
&segments_to_delete_count,
|
|
NULL, NULL, true );
|
|
|
|
if( segments_to_delete_count == 0 )
|
|
return;
|
|
|
|
int net_code = pt_segm->GetNetCode();
|
|
PICKED_ITEMS_LIST itemsList;
|
|
ITEM_PICKER picker( NULL, UR_DELETED );
|
|
|
|
int ii = 0;
|
|
TRACK* tracksegment = trackList;
|
|
TRACK* next_track;
|
|
|
|
for( ; ii < segments_to_delete_count; ii++, tracksegment = next_track )
|
|
{
|
|
next_track = tracksegment->Next();
|
|
tracksegment->SetState( BUSY, false );
|
|
|
|
DBG( std::cout << __func__ << ": track " << tracksegment << " status=" \
|
|
<< TO_UTF8( TRACK::ShowState( tracksegment->GetStatus() ) ) \
|
|
<< std::endl; )
|
|
|
|
GetBoard()->GetConnectivity()->Remove( tracksegment );
|
|
GetBoard()->m_Track.Remove( tracksegment );
|
|
|
|
// redraw the area where the track was
|
|
m_canvas->RefreshDrawingRect( tracksegment->GetBoundingBox() );
|
|
picker.SetItem( tracksegment );
|
|
itemsList.PushItem( picker );
|
|
}
|
|
|
|
SaveCopyInUndoList( itemsList, UR_DELETED );
|
|
|
|
if( net_code > 0 )
|
|
{
|
|
// Erase old ratsnest
|
|
if( GetBoard()->IsElementVisible( LAYER_RATSNEST ) )
|
|
{
|
|
GRSetDrawMode( DC, GR_XOR );
|
|
DrawGeneralRatsnest( DC, 0 );
|
|
}
|
|
|
|
// Build and draw the new ratsnest
|
|
TestNetConnection( DC, net_code );
|
|
}
|
|
}
|