2008-11-14 22:40:31 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Name: zones_polygons_insulated_copper_islands.cpp
|
|
|
|
// Licence: GPL License
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
#include "wx/wx.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// For compilers that support precompilation, includes "wx/wx.h".
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "pcbnew.h"
|
|
|
|
#include "PolyLine.h"
|
|
|
|
|
|
|
|
#include "zones.h"
|
|
|
|
|
|
|
|
|
|
|
|
/***************************************************************************************/
|
2008-11-18 18:13:55 +00:00
|
|
|
void ZONE_CONTAINER::Test_For_Copper_Island_And_Remove_Insulated_Islands( BOARD * aPcb )
|
2008-11-14 22:40:31 +00:00
|
|
|
/***************************************************************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Test_For_Copper_Island_And_Remove__Insulated_Islands
|
|
|
|
* Remove insulated copper islands found in m_FilledPolysList.
|
|
|
|
* @param aPcb = the board to analyse
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
if( m_FilledPolysList.size() == 0 )
|
|
|
|
return;
|
|
|
|
|
2008-11-18 18:13:55 +00:00
|
|
|
// Build a list of points connected to the net:
|
|
|
|
std::vector <wxPoint> ListPointsCandidates; // list of coordinates of pads and vias on this layer and on this net.
|
|
|
|
for( MODULE* module = aPcb->m_Modules;
|
|
|
|
module;
|
|
|
|
module = module->Next() )
|
2008-11-14 22:40:31 +00:00
|
|
|
{
|
2008-11-18 18:13:55 +00:00
|
|
|
for( D_PAD* pad = module->m_Pads;
|
|
|
|
pad != NULL;
|
|
|
|
pad = pad->Next() )
|
2008-11-14 22:40:31 +00:00
|
|
|
{
|
|
|
|
if( !pad->IsOnLayer( GetLayer() ) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( pad->GetNet() != GetNet() )
|
|
|
|
continue;
|
|
|
|
|
2008-11-18 18:13:55 +00:00
|
|
|
ListPointsCandidates.push_back( pad->m_Pos );
|
2008-11-14 22:40:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-18 18:13:55 +00:00
|
|
|
for( TRACK* track = aPcb->m_Track;
|
|
|
|
track;
|
|
|
|
track = track->Next() )
|
2008-11-14 22:40:31 +00:00
|
|
|
{
|
|
|
|
if( !track->IsOnLayer( GetLayer() ) )
|
|
|
|
continue;
|
|
|
|
if( track->GetNet() != GetNet() )
|
|
|
|
continue;
|
2008-11-18 18:13:55 +00:00
|
|
|
ListPointsCandidates.push_back( track->m_Start );
|
2008-12-04 04:28:11 +00:00
|
|
|
if( track->Type() != TYPE_VIA )
|
2008-11-18 18:13:55 +00:00
|
|
|
ListPointsCandidates.push_back( track->m_End );
|
2008-11-14 22:40:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// test if a point is inside
|
|
|
|
unsigned indexstart = 0, indexend;
|
|
|
|
bool connected = false;
|
2008-11-18 18:13:55 +00:00
|
|
|
for( indexend = 0;
|
|
|
|
indexend < m_FilledPolysList.size();
|
|
|
|
indexend++ )
|
2008-11-14 22:40:31 +00:00
|
|
|
{
|
2008-11-18 18:13:55 +00:00
|
|
|
if( m_FilledPolysList[indexend].end_contour ) // end of a filled sub-area found
|
2008-11-14 22:40:31 +00:00
|
|
|
{
|
2008-11-18 18:13:55 +00:00
|
|
|
EDA_Rect bbox =
|
|
|
|
CalculateSubAreaBoundaryBox( indexstart,
|
|
|
|
indexend );
|
|
|
|
for( unsigned ic = 0;
|
|
|
|
ic < ListPointsCandidates.size();
|
|
|
|
ic++ )
|
|
|
|
{ // test if this area is connected to a board item:
|
|
|
|
wxPoint pos = ListPointsCandidates[ic];
|
2008-11-14 22:40:31 +00:00
|
|
|
if( !bbox.Inside( pos ) )
|
|
|
|
continue;
|
2008-11-18 18:13:55 +00:00
|
|
|
if( TestPointInsidePolygon(
|
|
|
|
m_FilledPolysList, indexstart,
|
|
|
|
indexend, pos.x,
|
|
|
|
pos.y ) )
|
2008-11-14 22:40:31 +00:00
|
|
|
{
|
|
|
|
connected = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-18 18:13:55 +00:00
|
|
|
if( connected ) // this polygon is connected: analyse next polygon
|
2008-11-14 22:40:31 +00:00
|
|
|
{
|
2008-11-18 18:13:55 +00:00
|
|
|
indexstart = indexend + 1; // indexstart points the first point of the next polygon
|
2008-11-14 22:40:31 +00:00
|
|
|
connected = false;
|
|
|
|
}
|
2008-11-18 18:13:55 +00:00
|
|
|
else // Not connected: remove this polygon
|
2008-11-14 22:40:31 +00:00
|
|
|
{
|
|
|
|
m_FilledPolysList.erase(
|
|
|
|
m_FilledPolysList.begin() + indexstart,
|
2008-11-18 18:13:55 +00:00
|
|
|
m_FilledPolysList.begin() + indexend +
|
|
|
|
1 );
|
|
|
|
indexend = indexstart; /* indexstart points the first point of the next polygon
|
|
|
|
* because the current poly is removed */
|
2008-11-14 22:40:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-18 18:13:55 +00:00
|
|
|
/**************************************************************************************/
|
|
|
|
EDA_Rect ZONE_CONTAINER::CalculateSubAreaBoundaryBox( int aIndexStart, int aIndexEnd )
|
|
|
|
/**************************************************************************************/
|
2008-11-14 22:40:31 +00:00
|
|
|
|
|
|
|
/** function CalculateSubAreaBoundaryBox
|
2008-11-18 18:13:55 +00:00
|
|
|
* Calculates the bounding box of a a filled area ( list of CPolyPt )
|
|
|
|
* use m_FilledPolysList as list of CPolyPt (that are the corners of one or more polygons or filled areas )
|
|
|
|
* @return an EDA_Rect as bounding box
|
|
|
|
* @param aIndexStart = index of the first corner of a polygon (filled area) in m_FilledPolysList
|
|
|
|
* @param aIndexEnd = index of the last corner of a polygon in m_FilledPolysList
|
2008-11-14 22:40:31 +00:00
|
|
|
*/
|
|
|
|
{
|
2008-11-18 18:13:55 +00:00
|
|
|
CPolyPt start_point, end_point;
|
|
|
|
EDA_Rect bbox;
|
2008-11-14 22:40:31 +00:00
|
|
|
|
2008-11-18 18:13:55 +00:00
|
|
|
start_point = m_FilledPolysList[aIndexStart];
|
2008-11-14 22:40:31 +00:00
|
|
|
end_point = start_point;
|
|
|
|
for( int ii = aIndexStart; ii <= aIndexEnd; ii++ )
|
|
|
|
{
|
2008-11-18 18:13:55 +00:00
|
|
|
CPolyPt ptst = m_FilledPolysList[ii];
|
2008-11-14 22:40:31 +00:00
|
|
|
if( start_point.x > ptst.x )
|
|
|
|
start_point.x = ptst.x;
|
|
|
|
if( start_point.y > ptst.y )
|
|
|
|
start_point.y = ptst.y;
|
|
|
|
if( end_point.x < ptst.x )
|
|
|
|
end_point.x = ptst.x;
|
|
|
|
if( end_point.y < ptst.y )
|
|
|
|
end_point.y = ptst.y;
|
|
|
|
}
|
|
|
|
|
2008-11-18 18:13:55 +00:00
|
|
|
bbox.SetOrigin( start_point.x, start_point.y );
|
|
|
|
bbox.SetEnd( wxPoint( end_point.x, end_point.y ) );
|
|
|
|
|
|
|
|
return bbox;
|
2008-11-14 22:40:31 +00:00
|
|
|
}
|