kicad/eeschema/cleanup.cpp

108 lines
2.7 KiB
C++
Raw Normal View History

/**************************************/
/* Code to handle schematic clean up. */
/**************************************/
#include "fctsys.h"
#include "common.h"
2009-06-13 17:06:07 +00:00
#include "trigo.h"
#include "confirm.h"
#include "macros.h"
#include "class_sch_screen.h"
#include "general.h"
#include "protos.h"
#include "netlist.h"
#include "sch_bus_entry.h"
#include "sch_items.h"
#include "sch_line.h"
/* Routine to start/end segment (BUS or wires) on junctions.
2007-09-20 21:06:49 +00:00
*/
void BreakSegmentOnJunction( SCH_SCREEN* Screen )
{
SCH_ITEM* DrawList;
2007-09-20 21:06:49 +00:00
if( Screen == NULL )
{
DisplayError( NULL,
wxT( "BreakSegmentOnJunction() error: NULL screen" ) );
2007-09-20 21:06:49 +00:00
return;
}
DrawList = Screen->GetDrawItems();
2007-09-20 21:06:49 +00:00
while( DrawList )
{
switch( DrawList->Type() )
{
case SCH_JUNCTION_T:
2007-09-20 21:06:49 +00:00
#undef STRUCT
#define STRUCT ( (SCH_JUNCTION*) DrawList )
2007-09-20 21:06:49 +00:00
BreakSegment( Screen, STRUCT->m_Pos );
break;
case SCH_BUS_ENTRY_T:
2007-09-20 21:06:49 +00:00
#undef STRUCT
#define STRUCT ( (SCH_BUS_ENTRY*) DrawList )
2007-09-20 21:06:49 +00:00
BreakSegment( Screen, STRUCT->m_Pos );
BreakSegment( Screen, STRUCT->m_End() );
break;
case SCH_LINE_T:
case SCH_NO_CONNECT_T:
case SCH_LABEL_T:
case SCH_GLOBAL_LABEL_T:
case SCH_HIERARCHICAL_LABEL_T:
case SCH_COMPONENT_T:
case SCH_POLYLINE_T:
case SCH_MARKER_T:
case SCH_TEXT_T:
case SCH_SHEET_T:
case SCH_SHEET_LABEL_T:
2007-09-20 21:06:49 +00:00
break;
default:
break;
}
DrawList = DrawList->Next();
2007-09-20 21:06:49 +00:00
}
}
/* Break a segment ( BUS, WIRE ) int 2 segments at location aBreakpoint,
* if aBreakpoint in on segment segment
* ( excluding ends)
* fill aPicklist with modified items if non null
2007-09-20 21:06:49 +00:00
*/
void BreakSegment( SCH_SCREEN* aScreen, wxPoint aBreakpoint )
{
SCH_LINE* segment, * NewSegment;
for( SCH_ITEM* DrawList = aScreen->GetDrawItems(); DrawList; DrawList = DrawList->Next() )
2007-09-20 21:06:49 +00:00
{
if( DrawList->Type() != SCH_LINE_T )
continue;
2009-06-13 17:06:07 +00:00
segment = (SCH_LINE*) DrawList;
if( !TestSegmentHit( aBreakpoint, segment->m_Start, segment->m_End, 0 ) )
continue;
2007-09-20 21:06:49 +00:00
2009-11-23 20:18:47 +00:00
/* ???
* Segment connecte: doit etre coupe en 2 si px,py
* n'est
* pas une extremite */
if( ( segment->m_Start == aBreakpoint ) || ( segment->m_End == aBreakpoint ) )
continue;
/* Here we must cut the segment into 2. */
NewSegment = new SCH_LINE( *segment );
NewSegment->m_Start = aBreakpoint;
segment->m_End = NewSegment->m_Start;
NewSegment->SetNext( segment->Next() );
segment->SetNext( NewSegment );
DrawList = NewSegment;
2007-09-20 21:06:49 +00:00
}
}