kicad/pcbnew/dragsegm.cpp

221 lines
6.6 KiB
C++
Raw Normal View History

/*********************************/
/* functions used to drag tracks */
/*********************************/
2007-11-02 18:21:43 +00:00
/* Fichier dragsegm.cpp */
#include "fctsys.h"
#include "common.h"
#include "class_drawpanel.h"
#include "pcbnew.h"
#include "drag.h"
/* a list of DRAG_SEGM items used to move or drag tracks */
std::vector<DRAG_SEGM> g_DragSegmentList;
/* helper class to handle a list of track segments to drag or move
*/
2007-11-02 18:21:43 +00:00
DRAG_SEGM::DRAG_SEGM( TRACK* segm )
{
2007-11-02 18:21:43 +00:00
m_Segm = segm;
m_StartInitialValue = m_Segm->m_Start;
m_EndInitialValue = m_Segm->m_End;
m_Pad_Start = m_Pad_End = NULL;
m_Flag = 0;
}
/*******************************************************************/
void Dessine_Segments_Dragges( EDA_DRAW_PANEL* panel, wxDC* DC )
/*******************************************************************/
/* Redraw the list of segments starting in g_DragSegmentList, while moving a footprint */
{
D_PAD* pt_pad;
TRACK* Track;
2007-11-02 18:21:43 +00:00
if( g_DragSegmentList.size() == 0 )
2007-11-02 18:21:43 +00:00
return;
for( unsigned ii = 0; ii < g_DragSegmentList.size(); ii++ )
2007-11-02 18:21:43 +00:00
{
wxPoint pos;
Track = g_DragSegmentList[ii].m_Segm;
#ifndef USE_WX_OVERLAY
2007-11-02 18:21:43 +00:00
Track->Draw( panel, DC, GR_XOR ); // erase from screen at old position
#endif
pt_pad = g_DragSegmentList[ii].m_Pad_Start;
2007-11-02 18:21:43 +00:00
if( pt_pad )
{
pos = pt_pad->m_Pos - g_Offset_Module;
Track->m_Start = pos;
2007-11-02 18:21:43 +00:00
}
pt_pad = g_DragSegmentList[ii].m_Pad_End;
2007-11-02 18:21:43 +00:00
if( pt_pad )
{
pos = pt_pad->m_Pos - g_Offset_Module;
Track->m_End = pos;
2007-11-02 18:21:43 +00:00
}
2007-11-02 18:21:43 +00:00
Track->Draw( panel, DC, GR_XOR );
}
}
/*************************************************************************/
void Build_Drag_Liste( EDA_DRAW_PANEL* panel, wxDC* DC, MODULE* Module )
/*************************************************************************/
/** Build the list of track segments connected to pads of a given module
* by populate the std::vector<DRAG_SEGM> g_DragSegmentList
* For each selected track segment set the EDIT flag
* and redraw them in EDIT mode (sketch mode)
2007-11-02 18:21:43 +00:00
*/
{
2007-11-02 18:21:43 +00:00
D_PAD* pt_pad;
pt_pad = Module->m_Pads;
for( ; pt_pad != NULL; pt_pad = (D_PAD*) pt_pad->Next() )
2007-11-02 18:21:43 +00:00
{
Build_1_Pad_SegmentsToDrag( panel, DC, pt_pad );
}
return;
}
/**********************************************************************************/
void Build_1_Pad_SegmentsToDrag( EDA_DRAW_PANEL* panel, wxDC* DC, D_PAD* PtPad )
/**********************************************************************************/
/** Build the list of track segments connected to a given pad
* by populate the std::vector<DRAG_SEGM> g_DragSegmentList
* For each selected track segment set the EDIT flag
* and redraw them in EDIT mode (sketch mode)
* Net codes must be OK.
2007-11-02 18:21:43 +00:00
*/
{
2007-11-02 18:21:43 +00:00
TRACK* Track;
int net_code = PtPad->GetNet();
int MasqueLayer;
wxPoint pos;
BOARD* pcb = ( (PCB_BASE_FRAME*)( panel->GetParent() ) )->GetBoard();
2007-11-02 18:21:43 +00:00
Track = pcb->m_Track->GetStartNetCode( net_code );
pos = PtPad->m_Pos;
MasqueLayer = PtPad->m_Masque_Layer;
for( ; Track; Track = Track->Next() )
{
if( Track->GetNet() != net_code )
break;
2007-11-02 18:21:43 +00:00
if( ( MasqueLayer & Track->ReturnMaskLayer() ) == 0 )
continue;
2007-11-02 18:21:43 +00:00
if( pos == Track->m_Start )
{
AddSegmentToDragList( panel, DC, STARTPOINT, Track );
g_DragSegmentList.back().m_Pad_Start = PtPad;
2007-11-02 18:21:43 +00:00
}
2007-11-02 18:21:43 +00:00
if( pos == Track->m_End )
{
AddSegmentToDragList( panel, DC, ENDPOINT, Track );
g_DragSegmentList.back().m_Pad_End = PtPad;
2007-11-02 18:21:43 +00:00
}
}
}
2007-11-02 18:21:43 +00:00
/******************************************************************/
void AddSegmentToDragList( EDA_DRAW_PANEL* panel, wxDC* DC, int flag, TRACK* Track )
/******************************************************************/
/* Add the segment"Track" to the drag list, and erase it from screen
2007-11-02 18:21:43 +00:00
* flag = STARTPOINT (if the point to drag is the start point of Track) or ENDPOINT
*/
{
DRAG_SEGM wrapper( Track );
2007-11-02 18:21:43 +00:00
if( (flag & STARTPOINT) )
wrapper.m_Flag |= 1;
2007-11-02 18:21:43 +00:00
if( (flag & ENDPOINT) )
wrapper.m_Flag |= 2;
2007-11-02 18:21:43 +00:00
Track->Draw( panel, DC, GR_XOR );
Track->SetState( IN_EDIT, ON );
2007-11-02 18:21:43 +00:00
if( (flag & STARTPOINT) )
Track->m_Flags |= STARTPOINT;
2007-11-02 18:21:43 +00:00
if( (flag & ENDPOINT) )
Track->m_Flags |= ENDPOINT;
2007-11-02 18:21:43 +00:00
Track->Draw( panel, DC, GR_XOR );
g_DragSegmentList.push_back( wrapper );
}
2007-11-02 18:21:43 +00:00
/**********************************************************************************/
void Collect_TrackSegmentsToDrag( EDA_DRAW_PANEL* panel, wxDC* DC,
wxPoint& aRefPos, int MasqueLayer, int net_code )
/**********************************************************************************/
2007-11-02 18:21:43 +00:00
/* Build the list of tracks connected to the ref point
* Net codes must be OK.
* @param aRefPos = reference point of connection
2007-11-02 18:21:43 +00:00
*/
{
BOARD* pcb = ( (PCB_BASE_FRAME*)( panel->GetParent() ) )->GetBoard();
2007-11-02 18:21:43 +00:00
TRACK* track = pcb->m_Track->GetStartNetCode( net_code );
for( ; track; track = track->Next() )
2007-11-02 18:21:43 +00:00
{
if( track->GetNet() != net_code ) // Bad net, not connected
break;
if( ( MasqueLayer & track->ReturnMaskLayer() ) == 0 )
continue; // Cannot be connected, not on the same layer
if( track->m_Flags & IS_DRAGGED )
continue; // already put in list
int flag = 0;
if( (track->m_Start == aRefPos) && ((track->m_Flags & STARTPOINT) == 0) )
flag |= STARTPOINT;
if( track->m_End == aRefPos && ((track->m_Flags & ENDPOINT) == 0) )
flag |= ENDPOINT;
// Note: vias will be flagged with both STARTPOINT and ENDPOINT
// and must not be entered twice.
if( flag )
2007-11-02 18:21:43 +00:00
{
AddSegmentToDragList( panel, DC, flag, track );
// If a connected via is found at location aRefPos,
// collect also tracks connected by this via.
if( track->Type() == TYPE_VIA )
Collect_TrackSegmentsToDrag( panel, DC, aRefPos,
track->ReturnMaskLayer(),
net_code );
2007-11-02 18:21:43 +00:00
}
}
}
/**
* Function EraseDragList
* clear the .m_Flags of all track segments found in g_DragSegmentList
* and clear the list.
* the memory is not freed and will be reused when creating a new list
2007-11-02 18:21:43 +00:00
*/
void EraseDragList()
{
for( unsigned ii = 0; ii < g_DragSegmentList.size(); ii++ )
g_DragSegmentList[ii].m_Segm->m_Flags = 0;
g_DragSegmentList.clear();
}