kicad/pcbnew/edit_track_width.cpp

286 lines
9.4 KiB
C++
Raw Normal View History

/***************************************************************
* Tracks and Vias size edition:
* Functions to modify sizes of segment, track, net , all vias and/or all tracks
***************************************************************/
#include "fctsys.h"
#include "common.h"
#include "class_drawpanel.h"
#include "confirm.h"
#include "pcbnew.h"
2009-07-30 11:04:07 +00:00
#include "wxPcbStruct.h"
#include "protos.h"
2009-08-08 06:07:08 +00:00
/** Function SetTrackSegmentWidth
* Modify one track segment width or one via diameter (using DRC control).
2007-12-01 03:42:52 +00:00
* Basic routine used by other routines when editing tracks or vias
2009-08-08 06:07:08 +00:00
* @param aTrackItem = the track segment or via to modify
* @param aItemsListPicker = the list picker to use for an undo command (can be NULL)
* @param aUseNetclassValue = true to use NetClass value, false to use g_DesignSettings value
2009-08-08 06:07:08 +00:00
* @return true if done, false if no not change (because DRC error)
2007-12-01 03:42:52 +00:00
*/
2009-08-08 06:07:08 +00:00
bool WinEDA_PcbFrame::SetTrackSegmentWidth( TRACK* aTrackItem,
PICKED_ITEMS_LIST* aItemsListPicker,
bool aUseNetclassValue )
{
int initial_width, new_width;
bool change_ok = false;
NETINFO_ITEM* net = NULL;
if( aUseNetclassValue )
net = GetBoard()->FindNet( aTrackItem->GetNet() );
2007-12-01 03:42:52 +00:00
2009-08-08 06:07:08 +00:00
initial_width = aTrackItem->m_Width;
if( net )
new_width = net->GetTrackWidth();
else
new_width = g_DesignSettings.m_CurrentTrackWidth;
2009-08-08 06:07:08 +00:00
if( aTrackItem->Type() == TYPE_VIA )
2007-12-01 03:42:52 +00:00
{
if( net )
new_width = net->GetViaSize();
else
new_width = aTrackItem->m_Width = g_DesignSettings.m_CurrentViaSize;
2009-08-08 06:07:08 +00:00
if( aTrackItem->m_Shape == VIA_MICROVIA )
{
if( net )
new_width = net->GetViaSize();
else
new_width = aTrackItem->m_Width = g_DesignSettings.m_CurrentMicroViaSize;
}
2007-12-01 03:42:52 +00:00
}
aTrackItem->m_Width = new_width;
2009-08-08 06:07:08 +00:00
if( initial_width < new_width ) /* make a DRC test because the new size is bigger than the old size */
2007-12-01 03:42:52 +00:00
{
2009-08-08 06:07:08 +00:00
int diagdrc = OK_DRC;
2007-12-01 03:42:52 +00:00
if( Drc_On )
2009-08-08 06:07:08 +00:00
diagdrc = m_drc->Drc( aTrackItem, GetBoard()->m_Track );
if( diagdrc == OK_DRC )
change_ok = true;
}
else if( initial_width > new_width )
change_ok = true;
2009-08-08 06:07:08 +00:00
// if new width == initial_width: do nothing
if( change_ok )
{
GetScreen()->SetModify();
if( aItemsListPicker )
{
aTrackItem->m_Width = initial_width;
ITEM_PICKER picker( aTrackItem, UR_CHANGED );
picker.m_Link = aTrackItem->Copy();
aItemsListPicker->PushItem( picker );
aTrackItem->m_Width = new_width;
}
2007-12-01 03:42:52 +00:00
}
else
2009-08-08 06:07:08 +00:00
aTrackItem->m_Width = initial_width;
2007-12-01 03:42:52 +00:00
2009-08-08 06:07:08 +00:00
return change_ok;
}
2007-12-01 03:42:52 +00:00
2009-08-08 06:07:08 +00:00
/** Function Edit_TrackSegm_Width
* Modify one track segment width or one via diameter (using DRC control).
* @param DC = the curred device context (can be NULL)
* @param aTrackItem = the track segment or via to modify
*/
void WinEDA_PcbFrame::Edit_TrackSegm_Width( wxDC* DC, TRACK* aTrackItem )
{
PICKED_ITEMS_LIST itemsListPicker;
bool change = SetTrackSegmentWidth( aTrackItem, &itemsListPicker, false );
2009-08-08 06:07:08 +00:00
if( change == 0 || aTrackItem->m_Flags )
return; // No change
// The segment has changed: redraw it and save it in undo list
if( DC )
{
2009-10-07 17:10:37 +00:00
TRACK* oldsegm = (TRACK*) itemsListPicker.GetPickedItemLink( 0 );
wxASSERT( oldsegm );
2009-08-08 06:07:08 +00:00
DrawPanel->CursorOff( DC ); // Erase cursor shape
oldsegm->Draw( DrawPanel, DC, GR_XOR ); // Erase old track shape
aTrackItem->Draw( DrawPanel, DC, GR_OR ); // Display new track shape
DrawPanel->CursorOn( DC ); // Display cursor shape
}
SaveCopyInUndoList( itemsListPicker, UR_CHANGED );
}
2009-08-08 06:07:08 +00:00
/** Function Edit_Track_Width
* Modify a full track width (using DRC control).
* a full track is the set of track segments between 2 ends: pads or a point that has more than 2 segments ends connected
* @param DC = the curred device context (can be NULL)
* @param aTrackSegment = a segment or via on the track to change
* @return none
*/
void WinEDA_PcbFrame::Edit_Track_Width( wxDC* DC, TRACK* aTrackSegment )
{
2007-12-01 03:42:52 +00:00
TRACK* pt_track;
2009-08-08 06:07:08 +00:00
int nb_segm;
2007-12-01 03:42:52 +00:00
2009-08-08 06:07:08 +00:00
if( aTrackSegment == NULL )
2007-12-01 03:42:52 +00:00
return;
pt_track = Marque_Une_Piste( GetBoard(), aTrackSegment, &nb_segm, NULL, true );
2009-08-08 06:07:08 +00:00
PICKED_ITEMS_LIST itemsListPicker;
bool change = false;
for( int ii = 0; ii < nb_segm; ii++, pt_track = pt_track->Next() )
2007-12-01 03:42:52 +00:00
{
pt_track->SetState( BUSY, OFF );
if( SetTrackSegmentWidth( pt_track, &itemsListPicker, false ) )
2009-08-08 06:07:08 +00:00
change = true;
}
if( !change )
return;
// Some segment have changed: redraw them and save in undo list
if( DC )
{
DrawPanel->CursorOff( DC ); // Erase cursor shape
for( unsigned ii = 0; ii < itemsListPicker.GetCount(); ii++ )
{
TRACK* segm = (TRACK*) itemsListPicker.GetPickedItemLink( ii );
segm->Draw( DrawPanel, DC, GR_XOR ); // Erase old track shape
segm = (TRACK*) itemsListPicker.GetPickedItem( ii );
segm->Draw( DrawPanel, DC, GR_OR ); // Display new track shape
}
DrawPanel->CursorOn( DC ); // Display cursor shape
2007-12-01 03:42:52 +00:00
}
2009-08-08 06:07:08 +00:00
SaveCopyInUndoList( itemsListPicker, UR_CHANGED );
}
/***********************************************************/
void WinEDA_PcbFrame::Edit_Net_Width( wxDC* DC, int aNetcode )
/***********************************************************/
{
2007-12-01 03:42:52 +00:00
TRACK* pt_segm;
if( aNetcode <= 0 )
2007-12-01 03:42:52 +00:00
return;
NETINFO_ITEM* net = GetBoard()->FindNet( aNetcode );
wxASSERT( net );
wxString netName = net->GetNetname();
wxString msg;
NETCLASS* netClass = net->GetNetClass();
wxASSERT( netClass );
wxString netClassName = netClass->GetName();
msg.Printf( _(
"Set tracks and vias sizes to the Netclass \"%s\"default value (entire NET \"%s\") ?" ),
GetChars( netClassName ), GetChars( netName ) );
if( !IsOK( this, msg ) )
2007-12-01 03:42:52 +00:00
return;
/* Examine segments */
2009-08-08 06:07:08 +00:00
PICKED_ITEMS_LIST itemsListPicker;
bool change = false;
for( pt_segm = GetBoard()->m_Track; pt_segm != NULL; pt_segm = pt_segm->Next() )
2007-12-01 03:42:52 +00:00
{
if( aNetcode != pt_segm->GetNet() ) /* not in net */
2007-12-01 03:42:52 +00:00
continue;
/* we have found a item member of the net */
if( SetTrackSegmentWidth( pt_segm, &itemsListPicker, true ) )
2009-08-08 06:07:08 +00:00
change = true;
}
if( !change )
return;
// Some segment have changed: redraw them and save in undo list
if( DC )
{
DrawPanel->CursorOff( DC ); // Erase cursor shape
for( unsigned ii = 0; ii < itemsListPicker.GetCount(); ii++ )
{
TRACK* segm = (TRACK*) itemsListPicker.GetPickedItemLink( ii );
segm->Draw( DrawPanel, DC, GR_XOR ); // Erase old track shape
segm = (TRACK*) itemsListPicker.GetPickedItem( ii );
segm->Draw( DrawPanel, DC, GR_OR ); // Display new track shape
}
DrawPanel->CursorOn( DC ); // Display cursor shape
2007-12-01 03:42:52 +00:00
}
2009-08-08 06:07:08 +00:00
SaveCopyInUndoList( itemsListPicker, UR_CHANGED );
}
/*************************************************************************/
2007-12-01 03:42:52 +00:00
bool WinEDA_PcbFrame::Resize_Pistes_Vias( wxDC* DC, bool Track, bool Via )
/*************************************************************************/
2007-12-01 03:42:52 +00:00
/* remet a jour la largeur des pistes et/ou le diametre des vias
2007-12-01 03:42:52 +00:00
* Si piste == 0 , pas de cht sur les pistes
* Si via == 0 , pas de cht sur les vias
*/
{
2007-12-01 03:42:52 +00:00
TRACK* pt_segm;
if( Track && Via )
{
if( !IsOK( this, _( "Set All Tracks and Vias to Netclass value" ) ) )
2007-12-01 03:42:52 +00:00
return FALSE;
}
else if( Via )
{
if( !IsOK( this, _( "Set All Via to Netclass value" ) ) )
2007-12-01 03:42:52 +00:00
return FALSE;
}
else if( Track )
{
if( !IsOK( this, _( "Set All Track to Netclass value" ) ) )
2007-12-01 03:42:52 +00:00
return FALSE;
}
2009-08-08 06:07:08 +00:00
/* balayage des segments */
PICKED_ITEMS_LIST itemsListPicker;
bool change = false;
for( pt_segm = GetBoard()->m_Track; pt_segm != NULL; pt_segm = pt_segm->Next() )
2007-12-01 03:42:52 +00:00
{
2009-08-08 06:07:08 +00:00
if( (pt_segm->Type() == TYPE_VIA ) && Via )
2007-12-01 03:42:52 +00:00
{
if( SetTrackSegmentWidth( pt_segm, &itemsListPicker, true ) )
2009-08-08 06:07:08 +00:00
change = true;
2007-12-01 03:42:52 +00:00
}
2009-08-08 06:07:08 +00:00
if( (pt_segm->Type() == TYPE_TRACK ) && Track )
{
if( SetTrackSegmentWidth( pt_segm, &itemsListPicker, true ) )
change = true;;
}
2009-08-08 06:07:08 +00:00
}
2009-08-08 06:07:08 +00:00
if( !change )
return false;
// Some segment have changed: redraw them and save in undo list
if( DC )
{
DrawPanel->CursorOff( DC ); // Erase cursor shape
for( unsigned ii = 0; ii < itemsListPicker.GetCount(); ii++ )
2007-12-01 03:42:52 +00:00
{
2009-08-08 06:07:08 +00:00
TRACK* segm = (TRACK*) itemsListPicker.GetPickedItemLink( ii );
segm->Draw( DrawPanel, DC, GR_XOR ); // Erase old track shape
segm = (TRACK*) itemsListPicker.GetPickedItem( ii );
segm->Draw( DrawPanel, DC, GR_OR ); // Display new track shape
2007-12-01 03:42:52 +00:00
}
2009-08-08 06:07:08 +00:00
DrawPanel->CursorOn( DC ); // Display cursor shape
2007-12-01 03:42:52 +00:00
}
2009-08-08 06:07:08 +00:00
SaveCopyInUndoList( itemsListPicker, UR_CHANGED );
return true;
}