2007-12-01 03:42:52 +00:00
|
|
|
/*
|
2011-09-30 18:15:37 +00:00
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
2007-12-01 03:42:52 +00:00
|
|
|
*
|
2019-01-26 12:01:48 +00:00
|
|
|
* Copyright (C) 2004-2019 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2014-08-13 15:47:02 +00:00
|
|
|
* Copyright (C) 2014 Dick Hollenbeck, dick@softplc.com
|
2020-02-24 23:17:30 +00:00
|
|
|
* Copyright (C) 2017-2020 KiCad Developers, see change_log.txt for contributors.
|
2007-12-01 03:42:52 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
2018-01-29 20:58:58 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <trigo.h>
|
2018-02-02 20:57:12 +00:00
|
|
|
#include <board_design_settings.h>
|
2018-08-27 13:50:50 +00:00
|
|
|
#include <class_edge_mod.h>
|
|
|
|
#include <class_drawsegment.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_module.h>
|
|
|
|
#include <class_track.h>
|
|
|
|
#include <class_pad.h>
|
|
|
|
#include <class_zone.h>
|
2014-08-13 15:47:02 +00:00
|
|
|
#include <class_pcb_text.h>
|
|
|
|
#include <geometry/seg.h>
|
2017-12-08 10:25:13 +00:00
|
|
|
#include <math_for_graphics.h>
|
2018-10-12 06:17:15 +00:00
|
|
|
#include <connectivity/connectivity_algo.h>
|
2019-06-03 13:49:17 +00:00
|
|
|
#include <bitmaps.h>
|
2016-01-20 14:22:09 +00:00
|
|
|
#include <tool/tool_manager.h>
|
2017-02-21 12:42:08 +00:00
|
|
|
#include <tools/pcb_actions.h>
|
2019-06-03 13:49:17 +00:00
|
|
|
#include <tools/pcb_tool_base.h>
|
2019-03-28 19:30:51 +00:00
|
|
|
#include <kiface_i.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <pcbnew.h>
|
2020-02-19 09:31:32 +00:00
|
|
|
#include <drc/drc.h>
|
2019-11-17 12:58:38 +00:00
|
|
|
#include <netlist_reader/pcb_netlist.h>
|
2020-01-07 17:12:59 +00:00
|
|
|
#include <math/util.h> // for KiROUND
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <dialog_drc.h>
|
2013-03-20 14:50:12 +00:00
|
|
|
#include <wx/progdlg.h>
|
2017-03-03 15:04:58 +00:00
|
|
|
#include <board_commit.h>
|
2018-08-27 13:50:50 +00:00
|
|
|
#include <geometry/shape_arc.h>
|
2020-03-16 11:05:01 +00:00
|
|
|
#include <drc/drc_item.h>
|
2020-05-01 17:44:25 +00:00
|
|
|
#include <drc/drc_courtyard_tester.h>
|
2020-02-19 09:31:32 +00:00
|
|
|
#include <tools/zone_filler_tool.h>
|
2019-06-03 13:49:17 +00:00
|
|
|
|
|
|
|
DRC::DRC() :
|
2020-01-13 19:46:39 +00:00
|
|
|
PCB_TOOL_BASE( "pcbnew.DRCTool" ),
|
|
|
|
m_pcbEditorFrame( nullptr ),
|
|
|
|
m_pcb( nullptr ),
|
|
|
|
m_drcDialog( nullptr )
|
2019-06-03 13:49:17 +00:00
|
|
|
{
|
|
|
|
// establish initial values for everything:
|
|
|
|
m_doPad2PadTest = true; // enable pad to pad clearance tests
|
|
|
|
m_doUnconnectedTest = true; // enable unconnected tests
|
|
|
|
m_doZonesTest = false; // disable zone to items clearance tests
|
|
|
|
m_doKeepoutTest = true; // enable keepout areas to items clearance tests
|
|
|
|
m_refillZones = false; // Only fill zones if requested by user.
|
|
|
|
m_reportAllTrackErrors = false;
|
|
|
|
m_testFootprints = false;
|
|
|
|
|
|
|
|
m_drcRun = false;
|
|
|
|
m_footprintsTested = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
DRC::~DRC()
|
|
|
|
{
|
|
|
|
for( DRC_ITEM* unconnectedItem : m_unconnected )
|
|
|
|
delete unconnectedItem;
|
|
|
|
|
|
|
|
for( DRC_ITEM* footprintItem : m_footprints )
|
|
|
|
delete footprintItem;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DRC::Reset( RESET_REASON aReason )
|
|
|
|
{
|
|
|
|
m_pcbEditorFrame = getEditFrame<PCB_EDIT_FRAME>();
|
|
|
|
|
|
|
|
if( aReason == MODEL_RELOAD )
|
|
|
|
{
|
|
|
|
if( m_drcDialog )
|
|
|
|
DestroyDRCDialog( wxID_OK );
|
|
|
|
|
|
|
|
m_pcb = m_pcbEditorFrame->GetBoard();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-07-28 12:07:35 +00:00
|
|
|
void DRC::ShowDRCDialog( wxWindow* aParent )
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2016-07-28 12:07:35 +00:00
|
|
|
bool show_dlg_modal = true;
|
|
|
|
|
|
|
|
// the dialog needs a parent frame. if it is not specified, this is
|
|
|
|
// the PCB editor frame specified in DRC class.
|
2019-06-03 13:49:17 +00:00
|
|
|
if( !aParent )
|
2016-07-28 12:07:35 +00:00
|
|
|
{
|
|
|
|
// if any parent is specified, the dialog is modal.
|
|
|
|
// if this is the default PCB editor frame, it is not modal
|
|
|
|
show_dlg_modal = false;
|
|
|
|
aParent = m_pcbEditorFrame;
|
|
|
|
}
|
|
|
|
|
2019-06-03 13:49:17 +00:00
|
|
|
Activate();
|
|
|
|
m_toolMgr->RunAction( PCB_ACTIONS::selectionClear, true );
|
2018-03-15 23:01:17 +00:00
|
|
|
|
2016-04-15 18:15:22 +00:00
|
|
|
if( !m_drcDialog )
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2020-03-16 11:05:01 +00:00
|
|
|
m_drcDialog = new DIALOG_DRC( this, m_pcbEditorFrame, aParent );
|
2007-12-04 18:23:38 +00:00
|
|
|
updatePointers();
|
2008-02-09 08:34:45 +00:00
|
|
|
|
2016-07-28 12:07:35 +00:00
|
|
|
if( show_dlg_modal )
|
|
|
|
m_drcDialog->ShowModal();
|
|
|
|
else
|
|
|
|
m_drcDialog->Show( true );
|
2007-12-04 18:23:38 +00:00
|
|
|
}
|
2016-07-28 12:07:35 +00:00
|
|
|
else // The dialog is just not visible (because the user has double clicked on an error item)
|
|
|
|
{
|
2007-12-04 18:23:38 +00:00
|
|
|
updatePointers();
|
2016-07-28 12:07:35 +00:00
|
|
|
m_drcDialog->Show( true );
|
|
|
|
}
|
2007-12-01 03:42:52 +00:00
|
|
|
}
|
|
|
|
|
2017-12-08 10:25:13 +00:00
|
|
|
|
2019-06-03 13:49:17 +00:00
|
|
|
int DRC::ShowDRCDialog( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
|
|
|
ShowDRCDialog( nullptr );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-08 15:55:14 +00:00
|
|
|
bool DRC::IsDRCDialogShown()
|
|
|
|
{
|
|
|
|
if( m_drcDialog )
|
|
|
|
return m_drcDialog->IsShown();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-03 19:26:18 +00:00
|
|
|
void DRC::addMarkerToPcb( MARKER_PCB* aMarker )
|
2017-03-03 15:04:58 +00:00
|
|
|
{
|
2020-05-04 19:08:42 +00:00
|
|
|
if( m_pcb->GetDesignSettings().Ignore( aMarker->GetRCItem()->GetErrorCode() ) )
|
|
|
|
{
|
|
|
|
delete aMarker;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-06-04 10:45:43 +00:00
|
|
|
BOARD_COMMIT commit( m_pcbEditorFrame );
|
|
|
|
commit.Add( aMarker );
|
|
|
|
commit.Push( wxEmptyString, false, false );
|
2017-03-03 15:04:58 +00:00
|
|
|
}
|
2007-12-01 03:42:52 +00:00
|
|
|
|
2017-12-08 10:25:13 +00:00
|
|
|
|
2016-07-28 12:07:35 +00:00
|
|
|
void DRC::DestroyDRCDialog( int aReason )
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2016-04-15 18:15:22 +00:00
|
|
|
if( m_drcDialog )
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2016-04-15 18:15:22 +00:00
|
|
|
m_drcDialog->Destroy();
|
2019-06-03 13:49:17 +00:00
|
|
|
m_drcDialog = nullptr;
|
2007-12-01 03:42:52 +00:00
|
|
|
}
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-11-27 01:34:35 +00:00
|
|
|
|
2020-02-28 00:05:40 +00:00
|
|
|
int DRC::TestZoneToZoneOutlines()
|
2017-12-08 10:25:13 +00:00
|
|
|
{
|
2020-04-26 10:30:32 +00:00
|
|
|
BOARD* board = m_pcbEditorFrame->GetBoard();
|
|
|
|
int nerrors = 0;
|
|
|
|
wxString msg;
|
2017-12-08 10:25:13 +00:00
|
|
|
|
2018-05-14 16:25:26 +00:00
|
|
|
std::vector<SHAPE_POLY_SET> smoothed_polys;
|
|
|
|
smoothed_polys.resize( board->GetAreaCount() );
|
|
|
|
|
2017-12-08 10:25:13 +00:00
|
|
|
for( int ia = 0; ia < board->GetAreaCount(); ia++ )
|
|
|
|
{
|
2019-07-13 22:34:09 +00:00
|
|
|
ZONE_CONTAINER* zoneRef = board->GetArea( ia );
|
|
|
|
std::set<VECTOR2I> colinearCorners;
|
|
|
|
zoneRef->GetColinearCorners( board, colinearCorners );
|
|
|
|
|
|
|
|
zoneRef->BuildSmoothedPoly( smoothed_polys[ia], &colinearCorners );
|
2018-05-14 16:25:26 +00:00
|
|
|
}
|
2017-12-08 10:25:13 +00:00
|
|
|
|
2018-05-14 16:25:26 +00:00
|
|
|
// iterate through all areas
|
|
|
|
for( int ia = 0; ia < board->GetAreaCount(); ia++ )
|
|
|
|
{
|
|
|
|
ZONE_CONTAINER* zoneRef = board->GetArea( ia );
|
2017-12-08 10:25:13 +00:00
|
|
|
|
|
|
|
if( !zoneRef->IsOnCopperLayer() )
|
|
|
|
continue;
|
|
|
|
|
2018-05-14 16:25:26 +00:00
|
|
|
// If we are testing a single zone, then iterate through all other zones
|
|
|
|
// Otherwise, we have already tested the zone combination
|
2020-02-28 00:05:40 +00:00
|
|
|
for( int ia2 = ia + 1; ia2 < board->GetAreaCount(); ia2++ )
|
2017-12-08 10:25:13 +00:00
|
|
|
{
|
|
|
|
ZONE_CONTAINER* zoneToTest = board->GetArea( ia2 );
|
|
|
|
|
|
|
|
if( zoneRef == zoneToTest )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// test for same layer
|
|
|
|
if( zoneRef->GetLayer() != zoneToTest->GetLayer() )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Test for same net
|
|
|
|
if( zoneRef->GetNetCode() == zoneToTest->GetNetCode() && zoneRef->GetNetCode() >= 0 )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// test for different priorities
|
|
|
|
if( zoneRef->GetPriority() != zoneToTest->GetPriority() )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// test for different types
|
|
|
|
if( zoneRef->GetIsKeepout() != zoneToTest->GetIsKeepout() )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Examine a candidate zone: compare zoneToTest to zoneRef
|
|
|
|
|
|
|
|
// Get clearance used in zone to zone test. The policy used to
|
|
|
|
// obtain that value is now part of the zone object itself by way of
|
|
|
|
// ZONE_CONTAINER::GetClearance().
|
2020-04-29 19:03:58 +00:00
|
|
|
wxString clearanceSource;
|
|
|
|
int zone2zoneClearance = zoneRef->GetClearance( zoneToTest, &clearanceSource );
|
2017-12-08 10:25:13 +00:00
|
|
|
|
|
|
|
// Keepout areas have no clearance, so set zone2zoneClearance to 1
|
|
|
|
// ( zone2zoneClearance = 0 can create problems in test functions)
|
|
|
|
if( zoneRef->GetIsKeepout() )
|
|
|
|
zone2zoneClearance = 1;
|
|
|
|
|
|
|
|
// test for some corners of zoneRef inside zoneToTest
|
2018-05-14 16:25:26 +00:00
|
|
|
for( auto iterator = smoothed_polys[ia].IterateWithHoles(); iterator; iterator++ )
|
2017-12-08 10:25:13 +00:00
|
|
|
{
|
|
|
|
VECTOR2I currentVertex = *iterator;
|
2018-08-27 17:34:28 +00:00
|
|
|
wxPoint pt( currentVertex.x, currentVertex.y );
|
2017-12-08 10:25:13 +00:00
|
|
|
|
2018-05-14 16:25:26 +00:00
|
|
|
if( smoothed_polys[ia2].Contains( currentVertex ) )
|
2017-12-08 10:25:13 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_ZONES_INTERSECT );
|
|
|
|
drcItem->SetItems( zoneRef, zoneToTest );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, pt );
|
|
|
|
addMarkerToPcb( marker );
|
2017-12-08 10:25:13 +00:00
|
|
|
nerrors++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// test for some corners of zoneToTest inside zoneRef
|
2018-05-14 16:25:26 +00:00
|
|
|
for( auto iterator = smoothed_polys[ia2].IterateWithHoles(); iterator; iterator++ )
|
2017-12-08 10:25:13 +00:00
|
|
|
{
|
|
|
|
VECTOR2I currentVertex = *iterator;
|
2018-08-27 17:34:28 +00:00
|
|
|
wxPoint pt( currentVertex.x, currentVertex.y );
|
2017-12-08 10:25:13 +00:00
|
|
|
|
2018-05-14 16:25:26 +00:00
|
|
|
if( smoothed_polys[ia].Contains( currentVertex ) )
|
2017-12-08 10:25:13 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_ZONES_INTERSECT );
|
|
|
|
drcItem->SetItems( zoneToTest, zoneRef );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, pt );
|
|
|
|
addMarkerToPcb( marker );
|
2017-12-08 10:25:13 +00:00
|
|
|
nerrors++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Iterate through all the segments of refSmoothedPoly
|
2020-04-26 10:30:32 +00:00
|
|
|
std::map<wxPoint, int> conflictPoints;
|
2018-08-27 17:34:28 +00:00
|
|
|
|
2018-05-14 16:25:26 +00:00
|
|
|
for( auto refIt = smoothed_polys[ia].IterateSegmentsWithHoles(); refIt; refIt++ )
|
2017-12-08 10:25:13 +00:00
|
|
|
{
|
|
|
|
// Build ref segment
|
|
|
|
SEG refSegment = *refIt;
|
|
|
|
|
2018-05-14 16:25:26 +00:00
|
|
|
// Iterate through all the segments in smoothed_polys[ia2]
|
|
|
|
for( auto testIt = smoothed_polys[ia2].IterateSegmentsWithHoles(); testIt; testIt++ )
|
2017-12-08 10:25:13 +00:00
|
|
|
{
|
|
|
|
// Build test segment
|
|
|
|
SEG testSegment = *testIt;
|
|
|
|
wxPoint pt;
|
|
|
|
|
|
|
|
int ax1, ay1, ax2, ay2;
|
|
|
|
ax1 = refSegment.A.x;
|
|
|
|
ay1 = refSegment.A.y;
|
|
|
|
ax2 = refSegment.B.x;
|
|
|
|
ay2 = refSegment.B.y;
|
|
|
|
|
|
|
|
int bx1, by1, bx2, by2;
|
|
|
|
bx1 = testSegment.A.x;
|
|
|
|
by1 = testSegment.A.y;
|
|
|
|
bx2 = testSegment.B.x;
|
|
|
|
by2 = testSegment.B.y;
|
|
|
|
|
|
|
|
int d = GetClearanceBetweenSegments( bx1, by1, bx2, by2,
|
|
|
|
0,
|
|
|
|
ax1, ay1, ax2, ay2,
|
|
|
|
0,
|
|
|
|
zone2zoneClearance,
|
|
|
|
&pt.x, &pt.y );
|
|
|
|
|
|
|
|
if( d < zone2zoneClearance )
|
2020-04-26 10:30:32 +00:00
|
|
|
{
|
|
|
|
if( conflictPoints.count( pt ) )
|
|
|
|
conflictPoints[ pt ] = std::min( conflictPoints[ pt ], d );
|
|
|
|
else
|
|
|
|
conflictPoints[ pt ] = d;
|
|
|
|
}
|
2017-12-08 10:25:13 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-27 17:34:28 +00:00
|
|
|
|
2020-04-26 10:30:32 +00:00
|
|
|
for( const std::pair<const wxPoint, int>& conflict : conflictPoints )
|
2018-08-27 17:34:28 +00:00
|
|
|
{
|
2020-04-29 19:17:59 +00:00
|
|
|
int actual = conflict.second;
|
|
|
|
DRC_ITEM* drcItem;
|
2020-04-26 10:30:32 +00:00
|
|
|
|
2020-04-29 19:17:59 +00:00
|
|
|
if( actual <= 0 )
|
|
|
|
{
|
|
|
|
drcItem = new DRC_ITEM( DRCE_ZONES_INTERSECT );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
drcItem = new DRC_ITEM( DRCE_ZONES_TOO_CLOSE );
|
|
|
|
|
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (%s %s; actual %s)" ),
|
|
|
|
clearanceSource,
|
|
|
|
MessageTextFromValue( userUnits(), zone2zoneClearance, true ),
|
|
|
|
MessageTextFromValue( userUnits(), conflict.second, true ) );
|
|
|
|
|
|
|
|
drcItem->SetErrorMessage( msg );
|
|
|
|
}
|
2020-04-26 10:30:32 +00:00
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
drcItem->SetItems( zoneRef, zoneToTest );
|
|
|
|
|
2020-04-26 10:30:32 +00:00
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, conflict.first );
|
2020-04-24 13:36:10 +00:00
|
|
|
addMarkerToPcb( marker );
|
2018-08-27 17:34:28 +00:00
|
|
|
nerrors++;
|
|
|
|
}
|
2017-12-08 10:25:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nerrors;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-15 14:53:33 +00:00
|
|
|
void DRC::RunTests( wxTextCtrl* aMessages )
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2016-04-15 18:15:22 +00:00
|
|
|
// be sure m_pcb is the current board, not a old one
|
|
|
|
// ( the board can be reloaded )
|
2016-07-27 12:53:45 +00:00
|
|
|
m_pcb = m_pcbEditorFrame->GetBoard();
|
2016-04-15 18:15:22 +00:00
|
|
|
|
2018-11-28 12:11:43 +00:00
|
|
|
if( aMessages )
|
|
|
|
{
|
|
|
|
aMessages->AppendText( _( "Board Outline...\n" ) );
|
|
|
|
wxSafeYield();
|
|
|
|
}
|
|
|
|
|
|
|
|
testOutline();
|
2008-02-09 08:34:45 +00:00
|
|
|
|
2020-04-29 19:17:59 +00:00
|
|
|
if( aMessages )
|
|
|
|
{
|
|
|
|
aMessages->AppendText( _( "Netclasses...\n" ) );
|
|
|
|
wxSafeYield();
|
|
|
|
}
|
|
|
|
|
2009-09-10 15:22:26 +00:00
|
|
|
if( !testNetClasses() )
|
|
|
|
{
|
|
|
|
// testing the netclasses is a special case because if the netclasses
|
2012-02-06 05:44:19 +00:00
|
|
|
// do not pass the BOARD_DESIGN_SETTINGS checks, then every member of a net
|
2009-09-10 15:22:26 +00:00
|
|
|
// class (a NET) will cause its items such as tracks, vias, and pads
|
|
|
|
// to also fail. So quit after *all* netclass errors have been reported.
|
|
|
|
if( aMessages )
|
2020-04-29 19:17:59 +00:00
|
|
|
aMessages->AppendText( _( "NETCLASS VIOLATIONS: Aborting DRC\n" ) );
|
2009-09-10 15:22:26 +00:00
|
|
|
|
2016-04-15 18:15:22 +00:00
|
|
|
// update the m_drcDialog listboxes
|
2009-09-10 15:22:26 +00:00
|
|
|
updatePointers();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-12-01 03:42:52 +00:00
|
|
|
// test pad to pad clearances, nothing to do with tracks, vias or zones.
|
|
|
|
if( m_doPad2PadTest )
|
2009-06-27 06:26:41 +00:00
|
|
|
{
|
2009-09-10 15:22:26 +00:00
|
|
|
if( aMessages )
|
|
|
|
{
|
2010-09-15 14:53:33 +00:00
|
|
|
aMessages->AppendText( _( "Pad clearances...\n" ) );
|
2009-09-10 15:22:26 +00:00
|
|
|
wxSafeYield();
|
|
|
|
}
|
|
|
|
|
2007-12-01 03:42:52 +00:00
|
|
|
testPad2Pad();
|
2009-06-27 06:26:41 +00:00
|
|
|
}
|
2007-12-01 03:42:52 +00:00
|
|
|
|
2018-04-14 14:58:01 +00:00
|
|
|
// test clearances between drilled holes
|
|
|
|
if( aMessages )
|
|
|
|
{
|
|
|
|
aMessages->AppendText( _( "Drill clearances...\n" ) );
|
|
|
|
wxSafeYield();
|
|
|
|
}
|
|
|
|
|
|
|
|
testDrilledHoles();
|
|
|
|
|
2018-01-14 16:38:48 +00:00
|
|
|
// caller (a wxTopLevelFrame) is the wxDialog or the Pcb Editor frame that call DRC:
|
|
|
|
wxWindow* caller = aMessages ? aMessages->GetParent() : m_pcbEditorFrame;
|
2018-02-10 20:17:11 +00:00
|
|
|
|
|
|
|
if( m_refillZones )
|
|
|
|
{
|
2018-05-04 12:01:26 +00:00
|
|
|
if( aMessages )
|
|
|
|
aMessages->AppendText( _( "Refilling all zones...\n" ) );
|
|
|
|
|
2019-07-08 19:44:40 +00:00
|
|
|
m_toolMgr->GetTool<ZONE_FILLER_TOOL>()->FillAllZones( caller );
|
2018-02-10 20:17:11 +00:00
|
|
|
}
|
2018-04-06 10:24:23 +00:00
|
|
|
else
|
|
|
|
{
|
2018-05-04 12:01:26 +00:00
|
|
|
if( aMessages )
|
|
|
|
aMessages->AppendText( _( "Checking zone fills...\n" ) );
|
|
|
|
|
2019-07-08 19:44:40 +00:00
|
|
|
m_toolMgr->GetTool<ZONE_FILLER_TOOL>()->CheckAllZones( caller );
|
2018-04-06 10:24:23 +00:00
|
|
|
}
|
2008-12-04 20:53:11 +00:00
|
|
|
|
2018-08-23 22:41:57 +00:00
|
|
|
// test track and via clearances to other tracks, pads, and vias
|
|
|
|
if( aMessages )
|
|
|
|
{
|
|
|
|
aMessages->AppendText( _( "Track clearances...\n" ) );
|
|
|
|
wxSafeYield();
|
|
|
|
}
|
|
|
|
|
|
|
|
testTracks( aMessages ? aMessages->GetParent() : m_pcbEditorFrame, true );
|
|
|
|
|
2011-11-10 08:21:11 +00:00
|
|
|
// test zone clearances to other zones
|
|
|
|
if( aMessages )
|
2009-09-10 15:22:26 +00:00
|
|
|
{
|
2018-04-06 10:24:23 +00:00
|
|
|
aMessages->AppendText( _( "Zone to zone clearances...\n" ) );
|
2009-09-10 15:22:26 +00:00
|
|
|
wxSafeYield();
|
|
|
|
}
|
|
|
|
|
2011-11-10 08:21:11 +00:00
|
|
|
testZones();
|
2007-12-01 03:42:52 +00:00
|
|
|
|
2008-02-09 08:34:45 +00:00
|
|
|
// find and gather unconnected pads.
|
2020-05-04 19:08:42 +00:00
|
|
|
if( m_doUnconnectedTest && !m_pcb->GetDesignSettings().Ignore( DRCE_UNCONNECTED_ITEMS ) )
|
2009-06-27 06:26:41 +00:00
|
|
|
{
|
2009-09-10 15:22:26 +00:00
|
|
|
if( aMessages )
|
|
|
|
{
|
2010-09-15 14:53:33 +00:00
|
|
|
aMessages->AppendText( _( "Unconnected pads...\n" ) );
|
2011-10-31 20:29:46 +00:00
|
|
|
aMessages->Refresh();
|
2009-09-10 15:22:26 +00:00
|
|
|
}
|
|
|
|
|
2007-12-01 03:42:52 +00:00
|
|
|
testUnconnected();
|
2009-06-27 06:26:41 +00:00
|
|
|
}
|
2008-02-09 08:34:45 +00:00
|
|
|
|
2012-07-13 18:55:29 +00:00
|
|
|
// find and gather vias, tracks, pads inside keepout areas.
|
|
|
|
if( m_doKeepoutTest )
|
|
|
|
{
|
|
|
|
if( aMessages )
|
|
|
|
{
|
|
|
|
aMessages->AppendText( _( "Keepout areas ...\n" ) );
|
|
|
|
aMessages->Refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
testKeepoutAreas();
|
|
|
|
}
|
|
|
|
|
2014-08-13 15:47:02 +00:00
|
|
|
// find and gather vias, tracks, pads inside text boxes.
|
|
|
|
if( aMessages )
|
|
|
|
{
|
2019-03-28 19:30:51 +00:00
|
|
|
aMessages->AppendText( _( "Text and graphic clearances...\n" ) );
|
2014-08-13 15:47:02 +00:00
|
|
|
wxSafeYield();
|
|
|
|
}
|
|
|
|
|
2018-08-27 13:50:50 +00:00
|
|
|
testCopperTextAndGraphics();
|
2014-08-13 15:47:02 +00:00
|
|
|
|
2020-05-01 17:44:25 +00:00
|
|
|
// test courtyards
|
2020-02-28 00:05:40 +00:00
|
|
|
if( !m_pcb->GetDesignSettings().Ignore( DRCE_OVERLAPPING_FOOTPRINTS )
|
2020-05-07 13:35:50 +00:00
|
|
|
|| !m_pcb->GetDesignSettings().Ignore( DRCE_MISSING_COURTYARD )
|
2020-05-14 21:01:39 +00:00
|
|
|
|| !m_pcb->GetDesignSettings().Ignore( DRCE_MALFORMED_COURTYARD )
|
|
|
|
|| !m_pcb->GetDesignSettings().Ignore( DRCE_PTH_IN_COURTYARD )
|
|
|
|
|| !m_pcb->GetDesignSettings().Ignore( DRCE_NPTH_IN_COURTYARD ) )
|
2017-03-16 17:09:33 +00:00
|
|
|
{
|
|
|
|
if( aMessages )
|
|
|
|
{
|
|
|
|
aMessages->AppendText( _( "Courtyard areas...\n" ) );
|
|
|
|
aMessages->Refresh();
|
|
|
|
}
|
|
|
|
|
2020-05-01 17:44:25 +00:00
|
|
|
doCourtyardsDrc();
|
2017-03-16 17:09:33 +00:00
|
|
|
}
|
|
|
|
|
2019-03-28 19:30:51 +00:00
|
|
|
for( DRC_ITEM* footprintItem : m_footprints )
|
|
|
|
delete footprintItem;
|
|
|
|
|
|
|
|
m_footprints.clear();
|
|
|
|
m_footprintsTested = false;
|
|
|
|
|
|
|
|
if( m_testFootprints && !Kiface().IsSingle() )
|
|
|
|
{
|
|
|
|
if( aMessages )
|
|
|
|
{
|
|
|
|
aMessages->AppendText( _( "Checking footprints against schematic...\n" ) );
|
|
|
|
aMessages->Refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
NETLIST netlist;
|
|
|
|
m_pcbEditorFrame->FetchNetlistFromSchematic( netlist, PCB_EDIT_FRAME::ANNOTATION_DIALOG );
|
|
|
|
|
|
|
|
if( m_drcDialog )
|
|
|
|
m_drcDialog->Raise();
|
|
|
|
|
|
|
|
TestFootprints( netlist, m_pcb, m_drcDialog->GetUserUnits(), m_footprints );
|
|
|
|
m_footprintsTested = true;
|
|
|
|
}
|
|
|
|
|
2018-07-04 08:23:40 +00:00
|
|
|
// Check if there are items on disabled layers
|
2020-05-04 19:08:42 +00:00
|
|
|
if( !m_pcb->GetDesignSettings().Ignore( DRCE_DISABLED_LAYER_ITEM ) )
|
|
|
|
testDisabledLayers();
|
2018-07-04 08:23:40 +00:00
|
|
|
|
|
|
|
if( aMessages )
|
|
|
|
{
|
|
|
|
aMessages->AppendText( _( "Items on disabled layers...\n" ) );
|
|
|
|
aMessages->Refresh();
|
|
|
|
}
|
|
|
|
|
2020-03-29 01:12:29 +00:00
|
|
|
if( !m_pcb->GetDesignSettings().Ignore( DRCE_UNRESOLVED_VARIABLE ) )
|
|
|
|
testTextVars();
|
|
|
|
|
2019-03-28 19:30:51 +00:00
|
|
|
m_drcRun = true;
|
|
|
|
|
2016-04-15 18:15:22 +00:00
|
|
|
// update the m_drcDialog listboxes
|
2007-12-03 05:14:51 +00:00
|
|
|
updatePointers();
|
2009-09-10 15:22:26 +00:00
|
|
|
|
|
|
|
if( aMessages )
|
|
|
|
{
|
|
|
|
// no newline on this one because it is last, don't want the window
|
|
|
|
// to unnecessarily scroll.
|
2010-09-15 14:53:33 +00:00
|
|
|
aMessages->AppendText( _( "Finished" ) );
|
2009-09-10 15:22:26 +00:00
|
|
|
}
|
2007-12-03 05:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DRC::updatePointers()
|
|
|
|
{
|
2016-07-27 12:53:45 +00:00
|
|
|
// update my pointers, m_pcbEditorFrame is the only unchangeable one
|
|
|
|
m_pcb = m_pcbEditorFrame->GetBoard();
|
2007-12-04 18:23:38 +00:00
|
|
|
|
2020-02-28 00:05:40 +00:00
|
|
|
m_pcbEditorFrame->ResolveDRCExclusions();
|
|
|
|
|
2016-04-15 18:15:22 +00:00
|
|
|
if( m_drcDialog ) // Use diag list boxes only in DRC dialog
|
2008-02-09 08:34:45 +00:00
|
|
|
{
|
2020-02-24 23:17:30 +00:00
|
|
|
m_drcDialog->SetMarkersProvider( new BOARD_DRC_ITEMS_PROVIDER( m_pcb ) );
|
2020-02-28 00:05:40 +00:00
|
|
|
m_drcDialog->SetUnconnectedProvider( new RATSNEST_DRC_ITEMS_PROVIDER( m_pcbEditorFrame,
|
|
|
|
&m_unconnected ) );
|
|
|
|
m_drcDialog->SetFootprintsProvider( new VECTOR_DRC_ITEMS_PROVIDER( m_pcbEditorFrame,
|
|
|
|
&m_footprints ) );
|
2008-02-09 08:34:45 +00:00
|
|
|
}
|
2007-12-03 05:14:51 +00:00
|
|
|
}
|
2008-02-09 08:34:45 +00:00
|
|
|
|
2007-12-03 05:14:51 +00:00
|
|
|
|
2017-09-23 09:20:10 +00:00
|
|
|
bool DRC::doNetClass( const NETCLASSPTR& nc, wxString& msg )
|
2009-09-10 15:22:26 +00:00
|
|
|
{
|
|
|
|
bool ret = true;
|
|
|
|
|
++PCBNew
* Removed Pcb_Frame argument from BOARD() constructor, since it precludes
having a BOARD being edited by more than one editor, it was a bad design.
And this meant removing m_PcbFrame from BOARD.
* removed BOARD::SetWindowFrame(), and BOARD::m_PcbFrame
* Removed the global BOARD_DESIGN_SETTINGS which was in class_board.cpp
* added BOARD_DESIGN_SETTINGS to the BOARD class, a full instance
* a couple dialogs now only change BOARD_DESIGN_SETTINGS when OK is pressed,
such as dialog_mask_clearance, dialog_drc, etc.
* Removed common/pcbcommon.cpp's int g_CurrentVersionPCB = 1 and replaced it
with build_version.h's #define BOARD_FILE_VERSION, although there may be a
better place for this constant.
* Made the public functions in PARAM_CFG_ARRAY be type const.
void SaveParam(..) const and void ReadParam(..) const
* PARAM_CFG_BASE now has virtual destructor since we have various way of
destroying the derived class and boost::ptr_vector must be told about this.
* Pass const PARAM_CFG_ARRAY& instead of PARAM_CFG_ARRAY so that we can use
an automatic PARAM_CFG_ARRAY which is on the stack.\
* PCB_EDIT_FRAME::GetProjectFileParameters() may no longer cache the array,
since it has to access the current BOARD and the BOARD can change.
Remember BOARD_DESIGN_SETTINGS are now in the BOARD.
* Made the m_BoundingBox member private, this was a brutally hard task,
and indicative of the lack of commitment to accessors and object oriented
design on the part of KiCad developers. We must do better.
Added BOARD::GetBoundingBox, SetBoundingBox(), ComputeBoundingBox().
* Added PCB_BASE_FRAME::GetBoardBoundingBox() which calls BOARD::ComputeBoundingBox()
2011-12-05 06:15:33 +00:00
|
|
|
const BOARD_DESIGN_SETTINGS& g = m_pcb->GetDesignSettings();
|
2009-09-10 15:22:26 +00:00
|
|
|
|
2009-10-21 19:16:25 +00:00
|
|
|
if( nc->GetClearance() < g.m_MinClearance )
|
2009-09-10 15:22:26 +00:00
|
|
|
{
|
2020-04-26 10:30:32 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_NETCLASS_CLEARANCE );
|
|
|
|
|
2020-04-29 19:17:59 +00:00
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (board minimum %s; %s netclass %s)" ),
|
2020-05-04 21:05:30 +00:00
|
|
|
MessageTextFromValue( userUnits(), g.m_MinClearance, true ),
|
2020-04-24 13:36:10 +00:00
|
|
|
nc->GetName(),
|
2020-04-26 10:30:32 +00:00
|
|
|
MessageTextFromValue( userUnits(), nc->GetClearance(), true ) );
|
2009-09-10 15:22:26 +00:00
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
drcItem->SetErrorMessage( msg );
|
|
|
|
addMarkerToPcb( new MARKER_PCB( drcItem, wxPoint() ) );
|
2009-09-10 15:22:26 +00:00
|
|
|
ret = false;
|
|
|
|
}
|
|
|
|
|
2011-11-24 17:32:51 +00:00
|
|
|
if( nc->GetTrackWidth() < g.m_TrackMinWidth )
|
2009-09-10 15:22:26 +00:00
|
|
|
{
|
2020-04-26 10:30:32 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_NETCLASS_TRACKWIDTH );
|
|
|
|
|
2020-04-29 19:17:59 +00:00
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (board minimum %s; %s netclass %s)" ),
|
2020-04-26 10:30:32 +00:00
|
|
|
MessageTextFromValue( userUnits(), g.m_TrackMinWidth, true ),
|
2020-04-24 13:36:10 +00:00
|
|
|
nc->GetName(),
|
2020-04-26 10:30:32 +00:00
|
|
|
MessageTextFromValue( userUnits(), nc->GetTrackWidth(), true ) );
|
2009-09-10 15:22:26 +00:00
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
drcItem->SetErrorMessage( msg );
|
|
|
|
addMarkerToPcb( new MARKER_PCB( drcItem, wxPoint() ) );
|
2009-09-10 15:22:26 +00:00
|
|
|
ret = false;
|
|
|
|
}
|
|
|
|
|
2011-11-24 17:32:51 +00:00
|
|
|
if( nc->GetViaDiameter() < g.m_ViasMinSize )
|
2009-09-10 15:22:26 +00:00
|
|
|
{
|
2020-04-26 10:30:32 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_NETCLASS_VIASIZE );
|
|
|
|
|
2020-04-29 19:17:59 +00:00
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (board minimum %s; %s netclass %s)" ),
|
2020-04-26 10:30:32 +00:00
|
|
|
MessageTextFromValue( userUnits(), g.m_ViasMinSize, true ),
|
2020-04-24 13:36:10 +00:00
|
|
|
nc->GetName(),
|
2020-04-26 10:30:32 +00:00
|
|
|
MessageTextFromValue( userUnits(), nc->GetViaDiameter(), true ) );
|
2009-09-10 15:22:26 +00:00
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
drcItem->SetErrorMessage( msg );
|
|
|
|
addMarkerToPcb( new MARKER_PCB( drcItem, wxPoint() ) );
|
2009-09-10 15:22:26 +00:00
|
|
|
ret = false;
|
|
|
|
}
|
|
|
|
|
2020-05-04 21:05:30 +00:00
|
|
|
if( nc->GetViaDrill() < g.m_MinThroughDrill )
|
2009-09-10 15:22:26 +00:00
|
|
|
{
|
2020-04-26 10:30:32 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_NETCLASS_VIADRILLSIZE );
|
|
|
|
|
2020-05-04 21:05:30 +00:00
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (board min through hole %s; %s netclass %s)" ),
|
|
|
|
MessageTextFromValue( userUnits(), g.m_MinThroughDrill, true ),
|
2020-04-24 13:36:10 +00:00
|
|
|
nc->GetName(),
|
2020-04-26 10:30:32 +00:00
|
|
|
MessageTextFromValue( userUnits(), nc->GetViaDrill(), true ) );
|
2009-09-10 15:22:26 +00:00
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
drcItem->SetErrorMessage( msg );
|
|
|
|
addMarkerToPcb( new MARKER_PCB( drcItem, wxPoint() ) );
|
2009-09-10 15:22:26 +00:00
|
|
|
ret = false;
|
|
|
|
}
|
|
|
|
|
2020-05-11 19:39:30 +00:00
|
|
|
int ncViaAnnulus = ( nc->GetViaDiameter() - nc->GetViaDrill() ) / 2;
|
|
|
|
|
|
|
|
if( ncViaAnnulus < g.m_ViasMinAnnulus )
|
|
|
|
{
|
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_NETCLASS_VIAANNULUS );
|
|
|
|
|
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (board minimum %s; %s netclass %s)" ),
|
|
|
|
MessageTextFromValue( userUnits(), g.m_ViasMinAnnulus, true ),
|
|
|
|
nc->GetName(),
|
|
|
|
MessageTextFromValue( userUnits(), ncViaAnnulus, true ) );
|
|
|
|
|
|
|
|
drcItem->SetErrorMessage( msg );
|
|
|
|
addMarkerToPcb( new MARKER_PCB( drcItem, wxPoint() ) );
|
|
|
|
ret = false;
|
|
|
|
}
|
|
|
|
|
2011-11-24 17:32:51 +00:00
|
|
|
if( nc->GetuViaDiameter() < g.m_MicroViasMinSize )
|
2009-09-10 15:22:26 +00:00
|
|
|
{
|
2020-04-26 10:30:32 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_NETCLASS_uVIASIZE );
|
|
|
|
|
2020-04-29 19:17:59 +00:00
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (board minimum %s; %s netclass %s)" ),
|
2020-04-26 10:30:32 +00:00
|
|
|
MessageTextFromValue( userUnits(), g.m_MicroViasMinSize, true ),
|
2020-04-24 13:36:10 +00:00
|
|
|
nc->GetName(),
|
2020-04-26 10:30:32 +00:00
|
|
|
MessageTextFromValue( userUnits(), nc->GetuViaDiameter(), true ) );
|
2009-09-10 15:22:26 +00:00
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
drcItem->SetErrorMessage( msg );
|
|
|
|
addMarkerToPcb( new MARKER_PCB( drcItem, wxPoint() ) );
|
2009-09-10 15:22:26 +00:00
|
|
|
ret = false;
|
|
|
|
}
|
|
|
|
|
2011-11-24 17:32:51 +00:00
|
|
|
if( nc->GetuViaDrill() < g.m_MicroViasMinDrill )
|
2009-09-10 15:22:26 +00:00
|
|
|
{
|
2020-04-26 10:30:32 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_NETCLASS_uVIADRILLSIZE );
|
|
|
|
|
2020-04-29 19:17:59 +00:00
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (board minimum %s; %s netclass %s)" ),
|
2020-04-26 10:30:32 +00:00
|
|
|
MessageTextFromValue( userUnits(), g.m_MicroViasMinDrill, true ),
|
2020-04-24 13:36:10 +00:00
|
|
|
nc->GetName(),
|
2020-04-26 10:30:32 +00:00
|
|
|
MessageTextFromValue( userUnits(), nc->GetuViaDrill(), true ) );
|
2009-09-10 15:22:26 +00:00
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
drcItem->SetErrorMessage( msg );
|
|
|
|
addMarkerToPcb( new MARKER_PCB( drcItem, wxPoint() ) );
|
2009-09-10 15:22:26 +00:00
|
|
|
ret = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool DRC::testNetClasses()
|
|
|
|
{
|
2010-09-15 14:53:33 +00:00
|
|
|
bool ret = true;
|
2014-05-13 09:22:51 +00:00
|
|
|
NETCLASSES& netclasses = m_pcb->GetDesignSettings().m_NetClasses;
|
2009-09-10 15:22:26 +00:00
|
|
|
wxString msg; // construct this only once here, not in a loop, since somewhat expensive.
|
|
|
|
|
|
|
|
if( !doNetClass( netclasses.GetDefault(), msg ) )
|
|
|
|
ret = false;
|
|
|
|
|
|
|
|
for( NETCLASSES::const_iterator i = netclasses.begin(); i != netclasses.end(); ++i )
|
|
|
|
{
|
2014-05-20 09:29:37 +00:00
|
|
|
NETCLASSPTR nc = i->second;
|
2009-09-10 15:22:26 +00:00
|
|
|
|
|
|
|
if( !doNetClass( nc, msg ) )
|
|
|
|
ret = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-01 03:42:52 +00:00
|
|
|
void DRC::testPad2Pad()
|
|
|
|
{
|
2008-03-18 04:04:17 +00:00
|
|
|
std::vector<D_PAD*> sortedPads;
|
|
|
|
|
2011-10-31 13:44:13 +00:00
|
|
|
m_pcb->GetSortedPadListByXthenYCoord( sortedPads );
|
2007-12-01 03:42:52 +00:00
|
|
|
|
2019-06-04 10:45:43 +00:00
|
|
|
if( sortedPads.empty() )
|
2018-05-16 07:20:04 +00:00
|
|
|
return;
|
|
|
|
|
2007-12-01 03:42:52 +00:00
|
|
|
// find the max size of the pads (used to stop the test)
|
2009-03-23 19:54:15 +00:00
|
|
|
int max_size = 0;
|
2008-03-18 04:04:17 +00:00
|
|
|
|
2019-06-04 10:45:43 +00:00
|
|
|
for( D_PAD* pad : sortedPads )
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2012-02-19 04:02:19 +00:00
|
|
|
// GetBoundingRadius() is the radius of the minimum sized circle fully containing the pad
|
|
|
|
int radius = pad->GetBoundingRadius();
|
2018-02-10 20:17:11 +00:00
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
if( radius > max_size )
|
|
|
|
max_size = radius;
|
2007-12-01 03:42:52 +00:00
|
|
|
}
|
|
|
|
|
2018-05-16 07:20:04 +00:00
|
|
|
// Upper limit of pad list (limit not included)
|
|
|
|
D_PAD** listEnd = &sortedPads[0] + sortedPads.size();
|
2008-03-18 04:04:17 +00:00
|
|
|
|
2018-05-16 07:20:04 +00:00
|
|
|
// Test the pads
|
2019-06-04 10:45:43 +00:00
|
|
|
for( auto& pad : sortedPads )
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2019-06-04 10:45:43 +00:00
|
|
|
int x_limit = pad->GetClearance() + pad->GetBoundingRadius() + pad->GetPosition().x;
|
2008-02-09 08:34:45 +00:00
|
|
|
|
2020-02-28 00:05:40 +00:00
|
|
|
doPadToPadsDrc( pad, &pad, listEnd, max_size + x_limit );
|
2007-12-01 03:42:52 +00:00
|
|
|
}
|
|
|
|
}
|
2007-11-27 01:34:35 +00:00
|
|
|
|
|
|
|
|
2018-04-14 14:58:01 +00:00
|
|
|
void DRC::testDrilledHoles()
|
|
|
|
{
|
2020-05-04 19:08:42 +00:00
|
|
|
BOARD_DESIGN_SETTINGS& dsnSettings = m_pcb->GetDesignSettings();
|
2018-04-14 14:58:01 +00:00
|
|
|
|
2020-05-04 19:08:42 +00:00
|
|
|
// Test drilled holes to minimize drill bit breakage.
|
2018-04-14 14:58:01 +00:00
|
|
|
//
|
2020-05-04 19:08:42 +00:00
|
|
|
// Check pad & std. via circular holes for hole-to-hole-min (non-circular holes are milled)
|
|
|
|
// Check pad & std. via holes for via-min-drill (minimum hole classification)
|
|
|
|
// Check uvia holes for uvia-min-drill (laser drill classification)
|
2018-04-14 14:58:01 +00:00
|
|
|
|
|
|
|
struct DRILLED_HOLE
|
|
|
|
{
|
|
|
|
wxPoint m_location;
|
|
|
|
int m_drillRadius;
|
|
|
|
BOARD_ITEM* m_owner;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<DRILLED_HOLE> holes;
|
|
|
|
DRILLED_HOLE hole;
|
2020-04-24 18:56:44 +00:00
|
|
|
wxString msg;
|
2018-04-14 14:58:01 +00:00
|
|
|
|
|
|
|
for( MODULE* mod : m_pcb->Modules() )
|
|
|
|
{
|
|
|
|
for( D_PAD* pad : mod->Pads( ) )
|
|
|
|
{
|
2020-05-04 19:08:42 +00:00
|
|
|
int minDimension = std::min( pad->GetDrillSize().x, pad->GetDrillSize().y );
|
|
|
|
|
|
|
|
if( minDimension == 0 )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( !dsnSettings.Ignore( DRCE_TOO_SMALL_PAD_DRILL )
|
2020-05-04 21:05:30 +00:00
|
|
|
&& minDimension < dsnSettings.m_MinThroughDrill )
|
2020-05-04 19:08:42 +00:00
|
|
|
{
|
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_TOO_SMALL_PAD_DRILL );
|
|
|
|
|
2020-05-04 21:05:30 +00:00
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (board min through hole %s; actual %s)" ),
|
|
|
|
MessageTextFromValue( userUnits(), dsnSettings.m_MinThroughDrill, true ),
|
2020-05-04 19:08:42 +00:00
|
|
|
MessageTextFromValue( userUnits(), minDimension, true ) );
|
|
|
|
|
|
|
|
drcItem->SetErrorMessage( msg );
|
|
|
|
drcItem->SetItems( pad );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, pad->GetPosition() );
|
|
|
|
addMarkerToPcb( marker );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( pad->GetDrillShape() == PAD_DRILL_SHAPE_CIRCLE )
|
2018-04-14 14:58:01 +00:00
|
|
|
{
|
|
|
|
hole.m_location = pad->GetPosition();
|
|
|
|
hole.m_drillRadius = pad->GetDrillSize().x / 2;
|
|
|
|
hole.m_owner = pad;
|
|
|
|
holes.push_back( hole );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for( TRACK* track : m_pcb->Tracks() )
|
|
|
|
{
|
|
|
|
VIA* via = dynamic_cast<VIA*>( track );
|
2020-05-04 19:08:42 +00:00
|
|
|
|
|
|
|
if( !via )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( via->GetViaType() == VIATYPE::MICROVIA )
|
|
|
|
{
|
|
|
|
if( !dsnSettings.Ignore( DRCE_TOO_SMALL_MICROVIA_DRILL )
|
|
|
|
&& via->GetDrillValue() < dsnSettings.m_MicroViasMinDrill )
|
|
|
|
{
|
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_TOO_SMALL_MICROVIA_DRILL );
|
|
|
|
|
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (board minimum %s; actual %s)" ),
|
|
|
|
MessageTextFromValue( userUnits(), dsnSettings.m_MicroViasMinDrill, true ),
|
|
|
|
MessageTextFromValue( userUnits(), via->GetDrillValue(), true ) );
|
|
|
|
|
|
|
|
drcItem->SetErrorMessage( msg );
|
|
|
|
drcItem->SetItems( via );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, via->GetPosition() );
|
|
|
|
addMarkerToPcb( marker );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2018-04-14 14:58:01 +00:00
|
|
|
{
|
2020-05-04 21:05:30 +00:00
|
|
|
if( !dsnSettings.Ignore( DRCE_TOO_SMALL_VIA_DRILL )
|
|
|
|
&& via->GetDrillValue() < dsnSettings.m_MinThroughDrill )
|
2020-05-04 19:08:42 +00:00
|
|
|
{
|
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_TOO_SMALL_VIA_DRILL );
|
|
|
|
|
2020-05-04 21:05:30 +00:00
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (board min through hole %s; actual %s)" ),
|
|
|
|
MessageTextFromValue( userUnits(), dsnSettings.m_MinThroughDrill, true ),
|
2020-05-04 19:08:42 +00:00
|
|
|
MessageTextFromValue( userUnits(), via->GetDrillValue(), true ) );
|
|
|
|
|
|
|
|
drcItem->SetErrorMessage( msg );
|
|
|
|
drcItem->SetItems( via );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, via->GetPosition() );
|
|
|
|
addMarkerToPcb( marker );
|
|
|
|
}
|
|
|
|
|
2018-04-14 14:58:01 +00:00
|
|
|
hole.m_location = via->GetPosition();
|
|
|
|
hole.m_drillRadius = via->GetDrillValue() / 2;
|
|
|
|
hole.m_owner = via;
|
|
|
|
holes.push_back( hole );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-04 19:08:42 +00:00
|
|
|
if( dsnSettings.m_HoleToHoleMin == 0 || dsnSettings.Ignore( DRCE_DRILLED_HOLES_TOO_CLOSE ) )
|
|
|
|
return;
|
|
|
|
|
2018-04-14 14:58:01 +00:00
|
|
|
for( size_t ii = 0; ii < holes.size(); ++ii )
|
|
|
|
{
|
|
|
|
const DRILLED_HOLE& refHole = holes[ ii ];
|
|
|
|
|
|
|
|
for( size_t jj = ii + 1; jj < holes.size(); ++jj )
|
|
|
|
{
|
|
|
|
const DRILLED_HOLE& checkHole = holes[ jj ];
|
|
|
|
|
|
|
|
// Holes with identical locations are allowable
|
|
|
|
if( checkHole.m_location == refHole.m_location )
|
|
|
|
continue;
|
|
|
|
|
2020-04-24 18:56:44 +00:00
|
|
|
int actual = KiROUND( GetLineLength( checkHole.m_location, refHole.m_location ) );
|
|
|
|
actual = std::max( 0, actual - checkHole.m_drillRadius - refHole.m_drillRadius );
|
|
|
|
|
2020-05-04 19:08:42 +00:00
|
|
|
if( actual < dsnSettings.m_HoleToHoleMin )
|
2018-04-14 14:58:01 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_DRILLED_HOLES_TOO_CLOSE );
|
2020-04-24 18:56:44 +00:00
|
|
|
|
2020-04-29 19:03:58 +00:00
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (board minimum %s; actual %s)" ),
|
2020-05-04 19:08:42 +00:00
|
|
|
MessageTextFromValue( userUnits(), dsnSettings.m_HoleToHoleMin, true ),
|
2020-04-24 18:56:44 +00:00
|
|
|
MessageTextFromValue( userUnits(), actual, true ) );
|
|
|
|
|
|
|
|
drcItem->SetErrorMessage( msg );
|
2020-04-24 13:36:10 +00:00
|
|
|
drcItem->SetItems( refHole.m_owner, checkHole.m_owner );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, refHole.m_location );
|
|
|
|
addMarkerToPcb( marker );
|
2018-04-14 14:58:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-08 07:33:11 +00:00
|
|
|
void DRC::testTracks( wxWindow *aActiveWindow, bool aShowProgressBar )
|
2010-09-20 16:21:47 +00:00
|
|
|
{
|
2020-05-14 19:24:10 +00:00
|
|
|
wxProgressDialog* progressDialog = NULL;
|
|
|
|
const int delta = 500; // This is the number of tests between 2 calls to the
|
|
|
|
// progress bar
|
|
|
|
int count = m_pcb->Tracks().size();
|
|
|
|
int deltamax = count/delta;
|
2013-03-20 14:50:12 +00:00
|
|
|
|
2011-11-10 08:21:11 +00:00
|
|
|
if( aShowProgressBar && deltamax > 3 )
|
2010-09-20 16:21:47 +00:00
|
|
|
{
|
2018-01-15 16:57:03 +00:00
|
|
|
// Do not use wxPD_APP_MODAL style here: it is not necessary and create issues
|
|
|
|
// on OSX
|
2011-11-10 08:21:11 +00:00
|
|
|
progressDialog = new wxProgressDialog( _( "Track clearances" ), wxEmptyString,
|
2015-07-08 07:33:11 +00:00
|
|
|
deltamax, aActiveWindow,
|
2018-01-15 16:57:03 +00:00
|
|
|
wxPD_AUTO_HIDE | wxPD_CAN_ABORT | wxPD_ELAPSED_TIME );
|
2011-11-10 08:21:11 +00:00
|
|
|
progressDialog->Update( 0, wxEmptyString );
|
|
|
|
}
|
|
|
|
|
2020-05-14 19:24:10 +00:00
|
|
|
std::shared_ptr<CONNECTIVITY_DATA> connectivity = m_pcb->GetConnectivity();
|
|
|
|
BOARD_DESIGN_SETTINGS& settings = m_pcb->GetDesignSettings();
|
|
|
|
|
|
|
|
|
|
|
|
if( !m_pcb->GetDesignSettings().Ignore( DRCE_DANGLING_TRACK )
|
|
|
|
|| !m_pcb->GetDesignSettings().Ignore( DRCE_DANGLING_VIA ) )
|
|
|
|
{
|
|
|
|
connectivity->Clear();
|
|
|
|
connectivity->Build( m_pcb ); // just in case. This really needs to be reliable.
|
|
|
|
}
|
|
|
|
|
2011-11-10 08:21:11 +00:00
|
|
|
int ii = 0;
|
|
|
|
count = 0;
|
2013-03-20 14:50:12 +00:00
|
|
|
|
2019-05-31 02:30:28 +00:00
|
|
|
for( auto seg_it = m_pcb->Tracks().begin(); seg_it != m_pcb->Tracks().end(); seg_it++ )
|
2011-11-10 08:21:11 +00:00
|
|
|
{
|
2018-02-10 20:17:11 +00:00
|
|
|
if( ii++ > delta )
|
2011-11-10 08:21:11 +00:00
|
|
|
{
|
|
|
|
ii = 0;
|
|
|
|
count++;
|
2013-03-20 14:50:12 +00:00
|
|
|
|
2011-11-10 08:21:11 +00:00
|
|
|
if( progressDialog )
|
|
|
|
{
|
|
|
|
if( !progressDialog->Update( count, wxEmptyString ) )
|
|
|
|
break; // Aborted by user
|
2015-07-08 07:33:11 +00:00
|
|
|
#ifdef __WXMAC__
|
|
|
|
// Work around a dialog z-order issue on OS X
|
|
|
|
if( count == deltamax )
|
|
|
|
aActiveWindow->Raise();
|
|
|
|
#endif
|
2011-11-10 08:21:11 +00:00
|
|
|
}
|
|
|
|
}
|
2013-03-20 14:50:12 +00:00
|
|
|
|
2019-03-19 16:46:46 +00:00
|
|
|
// Test new segment against tracks and pads, optionally against copper zones
|
2020-02-28 00:05:40 +00:00
|
|
|
doTrackDrc( *seg_it, seg_it + 1, m_pcb->Tracks().end(), m_doZonesTest );
|
2020-05-14 19:24:10 +00:00
|
|
|
|
|
|
|
// Test for dangling items
|
|
|
|
int code = (*seg_it)->Type() == PCB_VIA_T ? DRCE_DANGLING_VIA : DRCE_DANGLING_TRACK;
|
|
|
|
wxPoint pos;
|
|
|
|
|
|
|
|
if( !settings.Ignore( code ) && connectivity->TestTrackEndpointDangling( *seg_it, &pos ) )
|
|
|
|
{
|
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( code );
|
|
|
|
drcItem->SetItems( *seg_it );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, pos );
|
|
|
|
addMarkerToPcb( marker );
|
|
|
|
}
|
2010-09-20 16:21:47 +00:00
|
|
|
}
|
2013-03-20 14:50:12 +00:00
|
|
|
|
2011-11-10 08:21:11 +00:00
|
|
|
if( progressDialog )
|
|
|
|
progressDialog->Destroy();
|
2010-09-20 16:21:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-01 03:42:52 +00:00
|
|
|
void DRC::testUnconnected()
|
|
|
|
{
|
2019-03-31 09:37:57 +00:00
|
|
|
for( DRC_ITEM* unconnectedItem : m_unconnected )
|
|
|
|
delete unconnectedItem;
|
|
|
|
|
|
|
|
m_unconnected.clear();
|
2017-03-22 13:43:10 +00:00
|
|
|
|
|
|
|
auto connectivity = m_pcb->GetConnectivity();
|
|
|
|
|
2017-03-22 15:47:15 +00:00
|
|
|
connectivity->Clear();
|
2018-02-10 20:17:11 +00:00
|
|
|
connectivity->Build( m_pcb ); // just in case. This really needs to be reliable.
|
2017-03-22 15:47:15 +00:00
|
|
|
connectivity->RecalculateRatsnest();
|
2007-11-27 01:34:35 +00:00
|
|
|
|
2017-03-22 15:47:15 +00:00
|
|
|
std::vector<CN_EDGE> edges;
|
|
|
|
connectivity->GetUnconnectedEdges( edges );
|
2013-03-20 14:50:12 +00:00
|
|
|
|
2017-03-22 15:47:15 +00:00
|
|
|
for( const auto& edge : edges )
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
DRC_ITEM* item = new DRC_ITEM( DRCE_UNCONNECTED_ITEMS );
|
|
|
|
item->SetItems( edge.GetSourceNode()->Parent(), edge.GetTargetNode()->Parent() );
|
2020-03-16 11:05:01 +00:00
|
|
|
m_unconnected.push_back( item );
|
2017-03-22 15:47:15 +00:00
|
|
|
}
|
2007-12-01 03:42:52 +00:00
|
|
|
}
|
2007-11-27 01:34:35 +00:00
|
|
|
|
2009-03-23 19:54:15 +00:00
|
|
|
|
2011-11-10 08:21:11 +00:00
|
|
|
void DRC::testZones()
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2011-09-17 01:22:26 +00:00
|
|
|
// Test copper areas for valid netcodes
|
2008-02-09 08:34:45 +00:00
|
|
|
// if a netcode is < 0 the netname was not found when reading a netlist
|
2009-01-24 19:30:39 +00:00
|
|
|
// if a netcode is == 0 the netname is void, and the zone is not connected.
|
|
|
|
// This is allowed, but i am not sure this is a good idea
|
2015-01-22 12:06:34 +00:00
|
|
|
//
|
|
|
|
// In recent Pcbnew versions, the netcode is always >= 0, but an internal net name
|
2018-02-10 20:17:11 +00:00
|
|
|
// is stored, and initialized from the file or the zone properties editor.
|
2015-01-22 12:06:34 +00:00
|
|
|
// if it differs from the net name from net code, there is a DRC issue
|
2020-05-07 13:35:50 +00:00
|
|
|
if( !m_pcb->GetDesignSettings().Ignore( DRCE_ZONE_HAS_EMPTY_NET ) )
|
2008-02-09 08:34:45 +00:00
|
|
|
{
|
2020-05-04 19:08:42 +00:00
|
|
|
for( int ii = 0; ii < m_pcb->GetAreaCount(); ii++ )
|
|
|
|
{
|
|
|
|
ZONE_CONTAINER* zone = m_pcb->GetArea( ii );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2020-05-04 19:08:42 +00:00
|
|
|
if( !zone->IsOnCopperLayer() )
|
|
|
|
continue;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2020-05-04 19:08:42 +00:00
|
|
|
int netcode = zone->GetNetCode();
|
|
|
|
// a netcode < 0 or > 0 and no pad in net is a error or strange
|
|
|
|
// perhaps a "dead" net, which happens when all pads in this net were removed
|
|
|
|
// Remark: a netcode < 0 should not happen (this is more a bug somewhere)
|
|
|
|
int pads_in_net = ( netcode > 0 ) ? m_pcb->GetConnectivity()->GetPadCount( netcode ) : 1;
|
2015-01-22 12:06:34 +00:00
|
|
|
|
2020-05-04 19:08:42 +00:00
|
|
|
if( ( netcode < 0 ) || pads_in_net == 0 )
|
|
|
|
{
|
2020-05-07 13:35:50 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_ZONE_HAS_EMPTY_NET );
|
2020-05-04 19:08:42 +00:00
|
|
|
drcItem->SetItems( zone );
|
2020-04-24 13:36:10 +00:00
|
|
|
|
2020-05-04 19:08:42 +00:00
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, zone->GetPosition() );
|
|
|
|
addMarkerToPcb( marker );
|
|
|
|
}
|
2008-02-09 08:34:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test copper areas outlines, and create markers when needed
|
2020-02-28 00:05:40 +00:00
|
|
|
TestZoneToZoneOutlines();
|
2007-12-01 03:42:52 +00:00
|
|
|
}
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-12-01 03:42:52 +00:00
|
|
|
|
2012-07-13 18:55:29 +00:00
|
|
|
void DRC::testKeepoutAreas()
|
|
|
|
{
|
2019-11-17 12:58:38 +00:00
|
|
|
// Get a list of all zones to inspect, from both board and footprints
|
|
|
|
std::list<ZONE_CONTAINER*> areasToInspect = m_pcb->GetZoneList( true );
|
|
|
|
|
2012-07-13 18:55:29 +00:00
|
|
|
// Test keepout areas for vias, tracks and pads inside keepout areas
|
2019-11-17 12:58:38 +00:00
|
|
|
for( ZONE_CONTAINER* area : areasToInspect )
|
2012-07-13 18:55:29 +00:00
|
|
|
{
|
|
|
|
if( !area->GetIsKeepout() )
|
|
|
|
continue;
|
|
|
|
|
2020-05-07 00:30:46 +00:00
|
|
|
for( TRACK* segm : m_pcb->Tracks() )
|
2012-07-13 18:55:29 +00:00
|
|
|
{
|
|
|
|
if( segm->Type() == PCB_TRACE_T )
|
|
|
|
{
|
2018-02-10 20:17:11 +00:00
|
|
|
if( !area->GetDoNotAllowTracks() )
|
2012-07-13 18:55:29 +00:00
|
|
|
continue;
|
|
|
|
|
2017-11-30 16:22:45 +00:00
|
|
|
// Ignore if the keepout zone is not on the same layer
|
|
|
|
if( !area->IsOnLayer( segm->GetLayer() ) )
|
2012-07-13 18:55:29 +00:00
|
|
|
continue;
|
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
int widths = segm->GetWidth() / 2;
|
|
|
|
SEG trackSeg( segm->GetStart(), segm->GetEnd() );
|
|
|
|
SEG::ecoord center2center_squared = area->Outline()->SquaredDistance( trackSeg );
|
2018-08-27 13:50:50 +00:00
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
if( center2center_squared <= SEG::Square( widths) )
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_TRACK_INSIDE_KEEPOUT );
|
|
|
|
drcItem->SetItems( segm, area );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, getLocation( segm, area ) );
|
|
|
|
addMarkerToPcb( marker );
|
2020-02-28 00:05:40 +00:00
|
|
|
}
|
2012-07-13 18:55:29 +00:00
|
|
|
}
|
|
|
|
else if( segm->Type() == PCB_VIA_T )
|
|
|
|
{
|
|
|
|
if( ! area->GetDoNotAllowVias() )
|
|
|
|
continue;
|
|
|
|
|
2020-05-07 00:30:46 +00:00
|
|
|
if( !area->CommonLayerExists( segm->GetLayerSet() ) )
|
2012-07-13 18:55:29 +00:00
|
|
|
continue;
|
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
int widths = segm->GetWidth() / 2;
|
|
|
|
wxPoint viaPos = segm->GetPosition();
|
|
|
|
SEG::ecoord center2center_squared = area->Outline()->SquaredDistance( viaPos );
|
|
|
|
|
|
|
|
if( center2center_squared <= SEG::Square( widths) )
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_VIA_INSIDE_KEEPOUT );
|
|
|
|
drcItem->SetItems( segm, area );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, getLocation( segm, area ) );
|
|
|
|
addMarkerToPcb( marker );
|
2020-02-28 00:05:40 +00:00
|
|
|
}
|
2012-07-13 18:55:29 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-07 00:30:46 +00:00
|
|
|
|
|
|
|
if( !area->GetDoNotAllowPads() && !area->GetDoNotAllowFootprints() )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
EDA_RECT areaBBox = area->GetBoundingBox();
|
|
|
|
bool checkFront = area->CommonLayerExists( LSET::FrontMask() );
|
|
|
|
bool checkBack = area->CommonLayerExists( LSET::BackMask() );
|
|
|
|
|
|
|
|
for( MODULE* fp : m_pcb->Modules() )
|
|
|
|
{
|
|
|
|
if( area->GetDoNotAllowFootprints() && ( fp->IsFlipped() ? checkBack : checkFront ) )
|
|
|
|
{
|
|
|
|
// Fast test to detect a footprint inside the keepout area bounding box.
|
|
|
|
if( areaBBox.Intersects( fp->GetBoundingBox() ) )
|
|
|
|
{
|
2020-05-08 23:52:57 +00:00
|
|
|
SHAPE_POLY_SET outline;
|
2020-05-07 00:30:46 +00:00
|
|
|
|
2020-05-08 23:52:57 +00:00
|
|
|
if( fp->BuildPolyCourtyard() )
|
|
|
|
{
|
|
|
|
outline = fp->IsFlipped() ? fp->GetPolyCourtyardBack()
|
|
|
|
: fp->GetPolyCourtyardFront();
|
|
|
|
}
|
2020-05-07 00:30:46 +00:00
|
|
|
|
|
|
|
if( outline.OutlineCount() == 0 )
|
|
|
|
outline = fp->GetBoundingPoly();
|
|
|
|
|
|
|
|
// Build the common area between footprint and the keepout area:
|
|
|
|
outline.BooleanIntersection( *area->Outline(), SHAPE_POLY_SET::PM_FAST );
|
|
|
|
|
|
|
|
// If it's not empty then we have a violation
|
|
|
|
if( outline.OutlineCount() )
|
|
|
|
{
|
|
|
|
const VECTOR2I& pt = outline.CVertex( 0, 0, -1 );
|
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_FOOTPRINT_INSIDE_KEEPOUT );
|
|
|
|
drcItem->SetItems( fp, area );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, (wxPoint) pt );
|
|
|
|
addMarkerToPcb( marker );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( area->GetDoNotAllowPads() )
|
|
|
|
{
|
|
|
|
for( D_PAD* pad : fp->Pads() )
|
|
|
|
{
|
|
|
|
if( !area->CommonLayerExists( pad->GetLayerSet() ) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Fast test to detect a pad inside the keepout area bounding box.
|
|
|
|
EDA_RECT padBBox( pad->ShapePos(), wxSize() );
|
|
|
|
padBBox.Inflate( pad->GetBoundingRadius() );
|
|
|
|
|
|
|
|
if( areaBBox.Intersects( padBBox ) )
|
|
|
|
{
|
|
|
|
SHAPE_POLY_SET outline;
|
|
|
|
pad->TransformShapeWithClearanceToPolygon( outline, 0 );
|
|
|
|
|
|
|
|
// Build the common area between pad and the keepout area:
|
|
|
|
outline.BooleanIntersection( *area->Outline(), SHAPE_POLY_SET::PM_FAST );
|
|
|
|
|
|
|
|
// If it's not empty then we have a violation
|
|
|
|
if( outline.OutlineCount() )
|
|
|
|
{
|
|
|
|
const VECTOR2I& pt = outline.CVertex( 0, 0, -1 );
|
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_PAD_INSIDE_KEEPOUT );
|
|
|
|
drcItem->SetItems( pad, area );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, (wxPoint) pt );
|
|
|
|
addMarkerToPcb( marker );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-07-13 18:55:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-25 09:06:24 +00:00
|
|
|
|
2018-08-27 13:50:50 +00:00
|
|
|
void DRC::testCopperTextAndGraphics()
|
2014-08-13 15:47:02 +00:00
|
|
|
{
|
2018-08-27 13:50:50 +00:00
|
|
|
// Test copper items for clearance violations with vias, tracks and pads
|
2014-08-13 15:47:02 +00:00
|
|
|
|
2018-08-23 22:41:57 +00:00
|
|
|
for( BOARD_ITEM* brdItem : m_pcb->Drawings() )
|
2014-08-13 15:47:02 +00:00
|
|
|
{
|
2018-08-27 13:50:50 +00:00
|
|
|
if( IsCopperLayer( brdItem->GetLayer() ) )
|
|
|
|
{
|
|
|
|
if( brdItem->Type() == PCB_TEXT_T )
|
|
|
|
testCopperTextItem( brdItem );
|
|
|
|
else if( brdItem->Type() == PCB_LINE_T )
|
|
|
|
testCopperDrawItem( static_cast<DRAWSEGMENT*>( brdItem ));
|
|
|
|
}
|
2018-08-23 22:41:57 +00:00
|
|
|
}
|
2014-08-13 15:47:02 +00:00
|
|
|
|
2018-08-23 22:41:57 +00:00
|
|
|
for( MODULE* module : m_pcb->Modules() )
|
|
|
|
{
|
2018-12-15 22:29:36 +00:00
|
|
|
TEXTE_MODULE& ref = module->Reference();
|
|
|
|
TEXTE_MODULE& val = module->Value();
|
2018-08-23 22:41:57 +00:00
|
|
|
|
2018-12-15 22:29:36 +00:00
|
|
|
if( ref.IsVisible() && IsCopperLayer( ref.GetLayer() ) )
|
|
|
|
testCopperTextItem( &ref );
|
|
|
|
|
|
|
|
if( val.IsVisible() && IsCopperLayer( val.GetLayer() ) )
|
|
|
|
testCopperTextItem( &val );
|
2018-08-23 22:41:57 +00:00
|
|
|
|
2018-11-03 17:31:07 +00:00
|
|
|
if( module->IsNetTie() )
|
|
|
|
continue;
|
|
|
|
|
2020-05-07 00:30:46 +00:00
|
|
|
for( BOARD_ITEM* item : module->GraphicalItems() )
|
2018-08-23 22:41:57 +00:00
|
|
|
{
|
2018-08-27 13:50:50 +00:00
|
|
|
if( IsCopperLayer( item->GetLayer() ) )
|
|
|
|
{
|
2018-12-15 22:29:36 +00:00
|
|
|
if( item->Type() == PCB_MODULE_TEXT_T && ( (TEXTE_MODULE*) item )->IsVisible() )
|
2018-08-27 13:50:50 +00:00
|
|
|
testCopperTextItem( item );
|
|
|
|
else if( item->Type() == PCB_MODULE_EDGE_T )
|
|
|
|
testCopperDrawItem( static_cast<DRAWSEGMENT*>( item ));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DRC::testCopperDrawItem( DRAWSEGMENT* aItem )
|
|
|
|
{
|
|
|
|
std::vector<SEG> itemShape;
|
2020-04-28 21:43:29 +00:00
|
|
|
int itemWidth = aItem->GetWidth();
|
2018-08-27 13:50:50 +00:00
|
|
|
|
|
|
|
switch( aItem->GetShape() )
|
|
|
|
{
|
|
|
|
case S_ARC:
|
|
|
|
{
|
|
|
|
SHAPE_ARC arc( aItem->GetCenter(), aItem->GetArcStart(), (double) aItem->GetAngle() / 10.0 );
|
|
|
|
|
|
|
|
auto l = arc.ConvertToPolyline();
|
|
|
|
|
|
|
|
for( int i = 0; i < l.SegmentCount(); i++ )
|
2019-03-23 18:26:44 +00:00
|
|
|
itemShape.push_back( l.Segment( i ) );
|
2018-08-27 13:50:50 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case S_SEGMENT:
|
2019-06-04 10:45:43 +00:00
|
|
|
itemShape.emplace_back( SEG( aItem->GetStart(), aItem->GetEnd() ) );
|
2018-08-27 13:50:50 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case S_CIRCLE:
|
|
|
|
{
|
|
|
|
// SHAPE_CIRCLE has no ConvertToPolyline() method, so use a 360.0 SHAPE_ARC
|
|
|
|
SHAPE_ARC circle( aItem->GetCenter(), aItem->GetEnd(), 360.0 );
|
|
|
|
|
|
|
|
auto l = circle.ConvertToPolyline();
|
|
|
|
|
|
|
|
for( int i = 0; i < l.SegmentCount(); i++ )
|
2019-03-23 18:26:44 +00:00
|
|
|
itemShape.push_back( l.Segment( i ) );
|
2018-08-27 13:50:50 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case S_CURVE:
|
|
|
|
{
|
|
|
|
aItem->RebuildBezierToSegmentsPointsList( aItem->GetWidth() );
|
|
|
|
wxPoint start_pt = aItem->GetBezierPoints()[0];
|
|
|
|
|
|
|
|
for( unsigned int jj = 1; jj < aItem->GetBezierPoints().size(); jj++ )
|
|
|
|
{
|
|
|
|
wxPoint end_pt = aItem->GetBezierPoints()[jj];
|
2019-06-04 10:45:43 +00:00
|
|
|
itemShape.emplace_back( SEG( start_pt, end_pt ) );
|
2018-08-27 13:50:50 +00:00
|
|
|
start_pt = end_pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
EDA_RECT bbox = aItem->GetBoundingBox();
|
|
|
|
SHAPE_RECT rect_area( bbox.GetX(), bbox.GetY(), bbox.GetWidth(), bbox.GetHeight() );
|
|
|
|
wxString msg;
|
|
|
|
|
2018-08-27 13:50:50 +00:00
|
|
|
// Test tracks and vias
|
2019-05-31 02:30:28 +00:00
|
|
|
for( auto track : m_pcb->Tracks() )
|
2018-08-27 13:50:50 +00:00
|
|
|
{
|
|
|
|
if( !track->IsOnLayer( aItem->GetLayer() ) )
|
|
|
|
continue;
|
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
wxString clearanceSource;
|
|
|
|
int minClearance = track->GetClearance( nullptr, &clearanceSource );
|
|
|
|
int widths = ( track->GetWidth() + itemWidth ) / 2;
|
|
|
|
int center2centerAllowed = minClearance + widths;
|
|
|
|
|
|
|
|
SEG trackSeg( track->GetStart(), track->GetEnd() );
|
2018-08-27 13:50:50 +00:00
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
// Fast test to detect a track segment candidate inside the text bounding box
|
|
|
|
if( !rect_area.Collide( trackSeg, center2centerAllowed ) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
OPT<SEG> minSeg;
|
|
|
|
SEG::ecoord center2center_squared = 0;
|
|
|
|
|
|
|
|
for( const SEG& itemSeg : itemShape )
|
2018-08-27 13:50:50 +00:00
|
|
|
{
|
2020-04-28 21:43:29 +00:00
|
|
|
SEG::ecoord thisDist_squared = trackSeg.SquaredDistance( itemSeg );
|
|
|
|
|
|
|
|
if( !minSeg || thisDist_squared < center2center_squared )
|
2018-08-27 13:50:50 +00:00
|
|
|
{
|
2020-04-28 21:43:29 +00:00
|
|
|
minSeg = itemSeg;
|
|
|
|
center2center_squared = thisDist_squared;
|
|
|
|
}
|
|
|
|
}
|
2020-04-24 13:36:10 +00:00
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
if( center2center_squared < SEG::Square( center2centerAllowed ) )
|
|
|
|
{
|
|
|
|
int actual = std::max( 0.0, sqrt( center2center_squared ) - widths );
|
|
|
|
int errorCode = ( track->Type() == PCB_VIA_T ) ? DRCE_VIA_NEAR_COPPER
|
|
|
|
: DRCE_TRACK_NEAR_COPPER;
|
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( errorCode );
|
2020-04-24 13:36:10 +00:00
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (%s %s; actual %s)" ),
|
|
|
|
clearanceSource,
|
|
|
|
MessageTextFromValue( userUnits(), minClearance, true ),
|
|
|
|
MessageTextFromValue( userUnits(), actual, true ) );
|
|
|
|
|
|
|
|
drcItem->SetErrorMessage( msg );
|
|
|
|
drcItem->SetItems( track, aItem );
|
|
|
|
|
|
|
|
wxPoint pos = getLocation( track, minSeg.get() );
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, pos );
|
|
|
|
addMarkerToPcb( marker );
|
2018-08-27 13:50:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test pads
|
|
|
|
for( auto pad : m_pcb->GetPads() )
|
|
|
|
{
|
|
|
|
if( !pad->IsOnLayer( aItem->GetLayer() ) )
|
|
|
|
continue;
|
|
|
|
|
2019-02-15 19:19:32 +00:00
|
|
|
// Graphic items are allowed to act as net-ties within their own footprint
|
|
|
|
if( pad->GetParent() == aItem->GetParent() )
|
|
|
|
continue;
|
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
// Fast test to detect a pad candidate inside the text bounding box
|
|
|
|
// Finer test (time consumming) is made only for pads near the text.
|
|
|
|
int bb_radius = pad->GetBoundingRadius() + pad->GetClearance( nullptr );
|
|
|
|
VECTOR2I shape_pos( pad->ShapePos() );
|
|
|
|
|
|
|
|
if( !rect_area.Collide( SEG( shape_pos, shape_pos ), bb_radius ) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
wxString clearanceSource;
|
|
|
|
int minClearance = pad->GetClearance( nullptr, &clearanceSource );
|
|
|
|
int widths = itemWidth / 2;
|
|
|
|
int center2centerAllowed = minClearance + widths;
|
|
|
|
|
2018-08-27 13:50:50 +00:00
|
|
|
SHAPE_POLY_SET padOutline;
|
2020-04-28 21:43:29 +00:00
|
|
|
pad->TransformShapeWithClearanceToPolygon( padOutline, 0 );
|
|
|
|
|
|
|
|
OPT<SEG> minSeg;
|
|
|
|
SEG::ecoord center2center_squared = 0;
|
2018-08-27 13:50:50 +00:00
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
for( const SEG& itemSeg : itemShape )
|
2018-08-27 13:50:50 +00:00
|
|
|
{
|
2020-04-28 21:43:29 +00:00
|
|
|
SEG::ecoord thisCenter2center_squared = padOutline.SquaredDistance( itemSeg );
|
2020-04-24 13:36:10 +00:00
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
if( !minSeg || thisCenter2center_squared < center2center_squared )
|
|
|
|
{
|
|
|
|
minSeg = itemSeg;
|
|
|
|
center2center_squared = thisCenter2center_squared;
|
2018-08-27 13:50:50 +00:00
|
|
|
}
|
2018-08-23 22:41:57 +00:00
|
|
|
}
|
2020-04-28 21:43:29 +00:00
|
|
|
|
|
|
|
if( center2center_squared < SEG::Square( center2centerAllowed ) )
|
|
|
|
{
|
|
|
|
int actual = std::max( 0.0, sqrt( center2center_squared ) - widths );
|
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_PAD_NEAR_COPPER );
|
|
|
|
|
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (%s %s; actual %s)" ),
|
|
|
|
clearanceSource,
|
|
|
|
MessageTextFromValue( userUnits(), minClearance, true ),
|
|
|
|
MessageTextFromValue( userUnits(), actual, true ) );
|
|
|
|
|
|
|
|
drcItem->SetErrorMessage( msg );
|
|
|
|
drcItem->SetItems( pad, aItem );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, pad->GetPosition() );
|
|
|
|
addMarkerToPcb( marker );
|
|
|
|
}
|
2018-08-23 22:41:57 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-13 15:47:02 +00:00
|
|
|
|
|
|
|
|
2018-08-27 13:50:50 +00:00
|
|
|
void DRC::testCopperTextItem( BOARD_ITEM* aTextItem )
|
2018-08-23 22:41:57 +00:00
|
|
|
{
|
|
|
|
EDA_TEXT* text = dynamic_cast<EDA_TEXT*>( aTextItem );
|
2018-11-11 07:28:58 +00:00
|
|
|
|
|
|
|
if( text == nullptr )
|
|
|
|
return;
|
|
|
|
|
2018-08-23 22:41:57 +00:00
|
|
|
std::vector<wxPoint> textShape; // a buffer to store the text shape (set of segments)
|
2020-04-28 21:43:29 +00:00
|
|
|
int penWidth = text->GetEffectiveTextPenWidth();
|
2018-08-23 22:41:57 +00:00
|
|
|
|
|
|
|
// So far the bounding box makes up the text-area
|
|
|
|
text->TransformTextShapeToSegmentList( textShape );
|
|
|
|
|
|
|
|
if( textShape.size() == 0 ) // Should not happen (empty text?)
|
|
|
|
return;
|
2014-08-13 15:47:02 +00:00
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
EDA_RECT bbox = text->GetTextBox();
|
2019-01-26 12:01:48 +00:00
|
|
|
SHAPE_RECT rect_area( bbox.GetX(), bbox.GetY(), bbox.GetWidth(), bbox.GetHeight() );
|
2020-04-28 21:43:29 +00:00
|
|
|
wxString msg;
|
2019-01-26 12:01:48 +00:00
|
|
|
|
2018-08-27 13:50:50 +00:00
|
|
|
// Test tracks and vias
|
2019-05-31 02:30:28 +00:00
|
|
|
for( auto track : m_pcb->Tracks() )
|
2018-08-23 22:41:57 +00:00
|
|
|
{
|
|
|
|
if( !track->IsOnLayer( aTextItem->GetLayer() ) )
|
2014-08-13 15:47:02 +00:00
|
|
|
continue;
|
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
wxString clearanceSource;
|
|
|
|
int minClearance = track->GetClearance( nullptr, &clearanceSource );
|
|
|
|
int widths = ( track->GetWidth() + penWidth ) / 2;
|
|
|
|
int center2centerAllowed = minClearance + widths;
|
|
|
|
|
|
|
|
SEG trackSeg( track->GetStart(), track->GetEnd() );
|
2014-08-13 15:47:02 +00:00
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
// Fast test to detect a track segment candidate inside the text bounding box
|
|
|
|
if( !rect_area.Collide( trackSeg, center2centerAllowed ) )
|
2019-01-26 12:01:48 +00:00
|
|
|
continue;
|
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
OPT<SEG> minSeg;
|
|
|
|
SEG::ecoord center2center_squared = 0;
|
|
|
|
|
2018-08-27 13:50:50 +00:00
|
|
|
for( unsigned jj = 0; jj < textShape.size(); jj += 2 )
|
2018-08-23 22:41:57 +00:00
|
|
|
{
|
2020-04-28 21:43:29 +00:00
|
|
|
SEG textSeg( textShape[jj], textShape[jj+1] );
|
|
|
|
SEG::ecoord thisDist_squared = trackSeg.SquaredDistance( textSeg );
|
2018-08-23 22:41:57 +00:00
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
if( !minSeg || thisDist_squared < center2center_squared )
|
2014-08-13 15:47:02 +00:00
|
|
|
{
|
2020-04-28 21:43:29 +00:00
|
|
|
minSeg = textSeg;
|
|
|
|
center2center_squared = thisDist_squared;
|
|
|
|
}
|
|
|
|
}
|
2020-04-24 13:36:10 +00:00
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
if( center2center_squared < SEG::Square( center2centerAllowed ) )
|
|
|
|
{
|
|
|
|
int actual = std::max( 0.0, sqrt( center2center_squared ) - widths );
|
|
|
|
int errorCode = ( track->Type() == PCB_VIA_T ) ? DRCE_VIA_NEAR_COPPER
|
|
|
|
: DRCE_TRACK_NEAR_COPPER;
|
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( errorCode );
|
2020-04-24 13:36:10 +00:00
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (%s %s; actual %s)" ),
|
|
|
|
clearanceSource,
|
|
|
|
MessageTextFromValue( userUnits(), minClearance, true ),
|
|
|
|
MessageTextFromValue( userUnits(), actual, true ) );
|
|
|
|
|
|
|
|
drcItem->SetErrorMessage( msg );
|
|
|
|
drcItem->SetItems( track, aTextItem );
|
|
|
|
|
|
|
|
wxPoint pos = getLocation( track, minSeg.get() );
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, pos );
|
|
|
|
addMarkerToPcb( marker );
|
2018-08-23 22:41:57 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-13 15:47:02 +00:00
|
|
|
|
2018-08-23 22:41:57 +00:00
|
|
|
// Test pads
|
2018-08-27 13:50:50 +00:00
|
|
|
for( auto pad : m_pcb->GetPads() )
|
2018-08-23 22:41:57 +00:00
|
|
|
{
|
|
|
|
if( !pad->IsOnLayer( aTextItem->GetLayer() ) )
|
|
|
|
continue;
|
2014-08-13 15:47:02 +00:00
|
|
|
|
2019-01-26 12:01:48 +00:00
|
|
|
// Fast test to detect a pad candidate inside the text bounding box
|
|
|
|
// Finer test (time consumming) is made only for pads near the text.
|
|
|
|
int bb_radius = pad->GetBoundingRadius() + pad->GetClearance( NULL );
|
|
|
|
VECTOR2I shape_pos( pad->ShapePos() );
|
|
|
|
|
|
|
|
if( !rect_area.Collide( SEG( shape_pos, shape_pos ), bb_radius ) )
|
|
|
|
continue;
|
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
wxString clearanceSource;
|
|
|
|
int minClearance = pad->GetClearance( nullptr, &clearanceSource );
|
|
|
|
int widths = penWidth / 2;
|
|
|
|
int center2centerAllowed = minClearance + widths;
|
2018-08-27 13:50:50 +00:00
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
SHAPE_POLY_SET padOutline;
|
2019-05-14 12:39:34 +00:00
|
|
|
pad->TransformShapeWithClearanceToPolygon( padOutline, 0 );
|
2014-08-13 15:47:02 +00:00
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
OPT<SEG> minSeg;
|
|
|
|
SEG::ecoord center2center_squared = 0;
|
|
|
|
|
2018-08-23 22:41:57 +00:00
|
|
|
for( unsigned jj = 0; jj < textShape.size(); jj += 2 )
|
|
|
|
{
|
2020-04-28 21:43:29 +00:00
|
|
|
SEG textSeg( textShape[jj], textShape[jj+1] );
|
|
|
|
SEG::ecoord thisCenter2center_squared = padOutline.SquaredDistance( textSeg );
|
2014-08-13 15:47:02 +00:00
|
|
|
|
2020-04-28 21:43:29 +00:00
|
|
|
if( !minSeg || thisCenter2center_squared < center2center_squared )
|
2018-08-23 22:41:57 +00:00
|
|
|
{
|
2020-04-28 21:43:29 +00:00
|
|
|
minSeg = textSeg;
|
|
|
|
center2center_squared = thisCenter2center_squared;
|
2014-08-13 15:47:02 +00:00
|
|
|
}
|
|
|
|
}
|
2020-04-28 21:43:29 +00:00
|
|
|
|
|
|
|
if( center2center_squared < SEG::Square( center2centerAllowed ) )
|
|
|
|
{
|
|
|
|
int actual = std::max( 0.0, sqrt( center2center_squared ) - widths );
|
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_PAD_NEAR_COPPER );
|
|
|
|
|
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (%s %s; actual %s)" ),
|
|
|
|
clearanceSource,
|
|
|
|
MessageTextFromValue( userUnits(), minClearance, true ),
|
|
|
|
MessageTextFromValue( userUnits(), actual, true ) );
|
|
|
|
|
|
|
|
drcItem->SetErrorMessage( msg );
|
|
|
|
drcItem->SetItems( pad, aTextItem );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, pad->GetPosition() );
|
|
|
|
addMarkerToPcb( marker );
|
|
|
|
}
|
2014-08-13 15:47:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-28 12:11:43 +00:00
|
|
|
void DRC::testOutline()
|
|
|
|
{
|
2020-05-07 13:35:50 +00:00
|
|
|
wxString msg;
|
|
|
|
wxPoint error_loc( m_pcb->GetBoardEdgesBoundingBox().GetPosition() );
|
2019-01-26 12:01:48 +00:00
|
|
|
|
2019-03-07 17:41:44 +00:00
|
|
|
m_board_outlines.RemoveAllContours();
|
|
|
|
|
2018-11-28 12:11:43 +00:00
|
|
|
if( !m_pcb->GetBoardPolygonOutlines( m_board_outlines, nullptr, &error_loc ) )
|
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_INVALID_OUTLINE );
|
2020-05-07 13:35:50 +00:00
|
|
|
|
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (not a closed shape)" ) );
|
|
|
|
|
|
|
|
drcItem->SetErrorMessage( msg );
|
2020-04-24 13:36:10 +00:00
|
|
|
drcItem->SetItems( m_pcb );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, error_loc );
|
|
|
|
addMarkerToPcb( marker );
|
2018-11-28 12:11:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-07-04 08:23:40 +00:00
|
|
|
void DRC::testDisabledLayers()
|
|
|
|
{
|
2020-04-29 19:17:59 +00:00
|
|
|
BOARD* board = m_pcbEditorFrame->GetBoard();
|
2018-07-04 08:23:40 +00:00
|
|
|
wxCHECK( board, /*void*/ );
|
2020-04-29 19:17:59 +00:00
|
|
|
|
|
|
|
LSET disabledLayers = board->GetEnabledLayers().flip();
|
|
|
|
wxString msg;
|
2018-07-04 08:23:40 +00:00
|
|
|
|
2018-11-05 13:00:01 +00:00
|
|
|
// Perform the test only for copper layers
|
|
|
|
disabledLayers &= LSET::AllCuMask();
|
|
|
|
|
2020-03-29 01:12:29 +00:00
|
|
|
for( TRACK* track : board->Tracks() )
|
2018-07-04 08:23:40 +00:00
|
|
|
{
|
|
|
|
if( disabledLayers.test( track->GetLayer() ) )
|
2020-03-29 01:12:29 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_DISABLED_LAYER_ITEM );
|
2020-04-29 19:17:59 +00:00
|
|
|
|
|
|
|
msg.Printf( drcItem->GetErrorText() + _( "layer %s" ),
|
|
|
|
track->GetLayerName() );
|
|
|
|
|
|
|
|
drcItem->SetErrorMessage( msg );
|
2020-04-24 13:36:10 +00:00
|
|
|
drcItem->SetItems( track );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, track->GetPosition() );
|
|
|
|
addMarkerToPcb( marker );
|
2020-03-29 01:12:29 +00:00
|
|
|
}
|
2018-07-04 08:23:40 +00:00
|
|
|
}
|
|
|
|
|
2020-03-29 01:12:29 +00:00
|
|
|
for( MODULE* module : board->Modules() )
|
2018-07-04 08:23:40 +00:00
|
|
|
{
|
2020-02-28 00:05:40 +00:00
|
|
|
module->RunOnChildren(
|
2020-03-29 01:12:29 +00:00
|
|
|
[&]( BOARD_ITEM* child )
|
|
|
|
{
|
|
|
|
if( disabledLayers.test( child->GetLayer() ) )
|
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_DISABLED_LAYER_ITEM );
|
2020-04-29 19:17:59 +00:00
|
|
|
|
|
|
|
msg.Printf( drcItem->GetErrorText() + _( "layer %s" ),
|
|
|
|
child->GetLayerName() );
|
|
|
|
|
|
|
|
drcItem->SetErrorMessage( msg );
|
2020-04-24 13:36:10 +00:00
|
|
|
drcItem->SetItems( child );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, child->GetPosition() );
|
|
|
|
addMarkerToPcb( marker );
|
2020-03-29 01:12:29 +00:00
|
|
|
}
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
for( ZONE_CONTAINER* zone : board->Zones() )
|
|
|
|
{
|
|
|
|
if( disabledLayers.test( zone->GetLayer() ) )
|
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_DISABLED_LAYER_ITEM );
|
2020-04-29 19:17:59 +00:00
|
|
|
|
|
|
|
msg.Printf( drcItem->GetErrorText() + _( "layer %s" ),
|
|
|
|
zone->GetLayerName() );
|
|
|
|
|
|
|
|
drcItem->SetErrorMessage( msg );
|
2020-04-24 13:36:10 +00:00
|
|
|
drcItem->SetItems( zone );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, zone->GetPosition() );
|
|
|
|
addMarkerToPcb( marker );
|
2020-03-29 01:12:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DRC::testTextVars()
|
|
|
|
{
|
|
|
|
BOARD* board = m_pcbEditorFrame->GetBoard();
|
|
|
|
|
|
|
|
for( MODULE* module : board->Modules() )
|
|
|
|
{
|
|
|
|
module->RunOnChildren(
|
|
|
|
[&]( BOARD_ITEM* child )
|
2018-01-28 09:35:33 +00:00
|
|
|
{
|
2020-03-29 01:12:29 +00:00
|
|
|
if( child->Type() == PCB_MODULE_TEXT_T )
|
|
|
|
{
|
|
|
|
TEXTE_MODULE* text = static_cast<TEXTE_MODULE*>( child );
|
|
|
|
|
|
|
|
if( text->GetShownText().Matches( wxT( "*${*}*" ) ) )
|
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_UNRESOLVED_VARIABLE );
|
|
|
|
drcItem->SetItems( text );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, text->GetPosition() );
|
|
|
|
addMarkerToPcb( marker );
|
2020-03-29 01:12:29 +00:00
|
|
|
}
|
|
|
|
}
|
2018-01-28 09:35:33 +00:00
|
|
|
} );
|
2018-07-04 08:23:40 +00:00
|
|
|
}
|
|
|
|
|
2020-03-29 01:12:29 +00:00
|
|
|
for( BOARD_ITEM* drawing : board->Drawings() )
|
2018-07-04 08:23:40 +00:00
|
|
|
{
|
2020-03-29 01:12:29 +00:00
|
|
|
if( drawing->Type() == PCB_TEXT_T )
|
|
|
|
{
|
|
|
|
TEXTE_PCB* text = static_cast<TEXTE_PCB*>( drawing );
|
|
|
|
|
|
|
|
if( text->GetShownText().Matches( wxT( "*${*}*" ) ) )
|
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_UNRESOLVED_VARIABLE );
|
|
|
|
drcItem->SetItems( text );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, text->GetPosition() );
|
|
|
|
addMarkerToPcb( marker );
|
2020-03-29 01:12:29 +00:00
|
|
|
}
|
|
|
|
}
|
2018-07-04 08:23:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
bool DRC::doPadToPadsDrc( D_PAD* aRefPad, D_PAD** aStart, D_PAD** aEnd, int x_limit )
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
const static LSET all_cu = LSET::AllCuMask();
|
|
|
|
|
|
|
|
LSET layerMask = aRefPad->GetLayerSet() & all_cu;
|
2010-09-18 17:55:08 +00:00
|
|
|
|
2010-10-28 13:02:07 +00:00
|
|
|
/* used to test DRC pad to holes: this dummy pad has the size and shape of the hole
|
|
|
|
* to test pad to pad hole DRC, using the pad to pad DRC test function.
|
|
|
|
* Therefore, this dummy pad is a circle or an oval.
|
|
|
|
* A pad must have a parent because some functions expect a non null parent
|
|
|
|
* to find the parent board, and some other data
|
|
|
|
*/
|
2014-06-24 16:17:18 +00:00
|
|
|
MODULE dummymodule( m_pcb ); // Creates a dummy parent
|
|
|
|
D_PAD dummypad( &dummymodule );
|
2012-02-19 04:02:19 +00:00
|
|
|
|
|
|
|
// Ensure the hole is on all copper layers
|
2014-06-24 16:17:18 +00:00
|
|
|
dummypad.SetLayerSet( all_cu | dummypad.GetLayerSet() );
|
2012-02-19 04:02:19 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
for( D_PAD** pad_list = aStart; pad_list<aEnd; ++pad_list )
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2020-04-24 18:56:44 +00:00
|
|
|
D_PAD* pad = *pad_list;
|
|
|
|
wxString msg;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-12-01 03:42:52 +00:00
|
|
|
if( pad == aRefPad )
|
|
|
|
continue;
|
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
// We can stop the test when pad->GetPosition().x > x_limit
|
2009-09-10 15:22:26 +00:00
|
|
|
// because the list is sorted by X values
|
2012-02-19 04:02:19 +00:00
|
|
|
if( pad->GetPosition().x > x_limit )
|
2007-12-01 03:42:52 +00:00
|
|
|
break;
|
|
|
|
|
2015-09-30 16:42:28 +00:00
|
|
|
// No problem if pads which are on copper layers are on different copper layers,
|
|
|
|
// (pads can be only on a technical layer, to build complex pads)
|
2011-09-17 01:22:26 +00:00
|
|
|
// but their hole (if any ) can create DRC error because they are on all
|
2009-09-10 15:22:26 +00:00
|
|
|
// copper layers, so we test them
|
2015-09-30 16:42:28 +00:00
|
|
|
if( ( pad->GetLayerSet() & layerMask ) == 0 &&
|
|
|
|
( pad->GetLayerSet() & all_cu ) != 0 &&
|
|
|
|
( aRefPad->GetLayerSet() & all_cu ) != 0 )
|
2009-03-23 19:54:15 +00:00
|
|
|
{
|
2009-09-10 15:22:26 +00:00
|
|
|
// if holes are in the same location and have the same size and shape,
|
|
|
|
// this can be accepted
|
2009-03-23 19:54:15 +00:00
|
|
|
if( pad->GetPosition() == aRefPad->GetPosition()
|
2012-02-19 04:02:19 +00:00
|
|
|
&& pad->GetDrillSize() == aRefPad->GetDrillSize()
|
|
|
|
&& pad->GetDrillShape() == aRefPad->GetDrillShape() )
|
2009-03-23 19:54:15 +00:00
|
|
|
{
|
2015-08-23 19:40:33 +00:00
|
|
|
if( aRefPad->GetDrillShape() == PAD_DRILL_SHAPE_CIRCLE )
|
2009-03-23 19:54:15 +00:00
|
|
|
continue;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-09-17 01:22:26 +00:00
|
|
|
// for oval holes: must also have the same orientation
|
2012-02-19 04:02:19 +00:00
|
|
|
if( pad->GetOrientation() == aRefPad->GetOrientation() )
|
2009-03-23 19:54:15 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Here, we must test clearance between holes and pads
|
2011-09-17 01:22:26 +00:00
|
|
|
* dummy pad size and shape is adjusted to pad drill size and shape
|
2009-03-23 19:54:15 +00:00
|
|
|
*/
|
2012-02-19 04:02:19 +00:00
|
|
|
if( pad->GetDrillSize().x )
|
2009-03-23 19:54:15 +00:00
|
|
|
{
|
2011-09-17 01:22:26 +00:00
|
|
|
// pad under testing has a hole, test this hole against pad reference
|
2010-09-15 14:53:33 +00:00
|
|
|
dummypad.SetPosition( pad->GetPosition() );
|
2012-02-19 04:02:19 +00:00
|
|
|
dummypad.SetSize( pad->GetDrillSize() );
|
2015-08-23 19:40:33 +00:00
|
|
|
dummypad.SetShape( pad->GetDrillShape() == PAD_DRILL_SHAPE_OBLONG ?
|
|
|
|
PAD_SHAPE_OVAL : PAD_SHAPE_CIRCLE );
|
2012-02-19 04:02:19 +00:00
|
|
|
dummypad.SetOrientation( pad->GetOrientation() );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2020-04-26 12:21:37 +00:00
|
|
|
wxString source;
|
|
|
|
int minClearance = aRefPad->GetClearance( nullptr, &source );
|
|
|
|
int actual;
|
2020-04-26 10:30:32 +00:00
|
|
|
|
|
|
|
if( !checkClearancePadToPad( aRefPad, &dummypad, minClearance, &actual ) )
|
2009-03-23 19:54:15 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_HOLE_NEAR_PAD );
|
2020-04-24 18:56:44 +00:00
|
|
|
|
2020-04-26 12:21:37 +00:00
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (%s %s; actual %s)" ),
|
|
|
|
source,
|
2020-04-26 10:30:32 +00:00
|
|
|
MessageTextFromValue( userUnits(), minClearance, true ),
|
2020-04-24 18:56:44 +00:00
|
|
|
MessageTextFromValue( userUnits(), actual, true ) );
|
|
|
|
|
|
|
|
drcItem->SetErrorMessage( msg );
|
2020-04-24 13:36:10 +00:00
|
|
|
drcItem->SetItems( pad, aRefPad );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, pad->GetPosition() );
|
|
|
|
addMarkerToPcb( marker );
|
2009-03-23 19:54:15 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2009-09-10 15:22:26 +00:00
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
if( aRefPad->GetDrillSize().x ) // pad reference has a hole
|
2009-03-23 19:54:15 +00:00
|
|
|
{
|
2010-09-15 14:53:33 +00:00
|
|
|
dummypad.SetPosition( aRefPad->GetPosition() );
|
2012-02-19 04:02:19 +00:00
|
|
|
dummypad.SetSize( aRefPad->GetDrillSize() );
|
2015-08-23 19:40:33 +00:00
|
|
|
dummypad.SetShape( aRefPad->GetDrillShape() == PAD_DRILL_SHAPE_OBLONG ?
|
|
|
|
PAD_SHAPE_OVAL : PAD_SHAPE_CIRCLE );
|
2012-02-19 04:02:19 +00:00
|
|
|
dummypad.SetOrientation( aRefPad->GetOrientation() );
|
2011-09-17 01:22:26 +00:00
|
|
|
|
2020-04-26 12:21:37 +00:00
|
|
|
wxString source;
|
|
|
|
int minClearance = pad->GetClearance( nullptr, &source );
|
|
|
|
int actual;
|
2020-04-26 10:30:32 +00:00
|
|
|
|
|
|
|
if( !checkClearancePadToPad( pad, &dummypad, minClearance, &actual ) )
|
2009-03-23 19:54:15 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_HOLE_NEAR_PAD );
|
2020-04-24 18:56:44 +00:00
|
|
|
|
2020-04-26 12:21:37 +00:00
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (%s %s; actual %s)" ),
|
|
|
|
source,
|
2020-04-26 10:30:32 +00:00
|
|
|
MessageTextFromValue( userUnits(), minClearance, true ),
|
2020-04-24 18:56:44 +00:00
|
|
|
MessageTextFromValue( userUnits(), actual, true ) );
|
|
|
|
|
|
|
|
drcItem->SetErrorMessage( msg );
|
2020-04-24 13:36:10 +00:00
|
|
|
drcItem->SetItems( aRefPad, pad );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, aRefPad->GetPosition() );
|
|
|
|
addMarkerToPcb( marker );
|
2009-03-23 19:54:15 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-12-01 03:42:52 +00:00
|
|
|
continue;
|
2009-03-23 19:54:15 +00:00
|
|
|
}
|
2007-12-01 03:42:52 +00:00
|
|
|
|
2009-09-10 15:22:26 +00:00
|
|
|
// The pad must be in a net (i.e pt_pad->GetNet() != 0 ),
|
|
|
|
// But no problem if pads have the same netcode (same net)
|
2014-02-25 10:47:27 +00:00
|
|
|
if( pad->GetNetCode() && ( aRefPad->GetNetCode() == pad->GetNetCode() ) )
|
2007-12-01 03:42:52 +00:00
|
|
|
continue;
|
|
|
|
|
2009-09-10 15:22:26 +00:00
|
|
|
// if pads are from the same footprint
|
|
|
|
if( pad->GetParent() == aRefPad->GetParent() )
|
|
|
|
{
|
|
|
|
// and have the same pad number ( equivalent pads )
|
|
|
|
|
|
|
|
// one can argue that this 2nd test is not necessary, that any
|
|
|
|
// two pads from a single module are acceptable. This 2nd test
|
|
|
|
// should eventually be a configuration option.
|
2011-12-16 17:03:25 +00:00
|
|
|
if( pad->PadNameEqual( aRefPad ) )
|
2009-09-10 15:22:26 +00:00
|
|
|
continue;
|
|
|
|
}
|
2016-04-15 18:15:22 +00:00
|
|
|
|
2016-01-26 00:33:40 +00:00
|
|
|
// if either pad has no drill and is only on technical layers, not a clearance violation
|
|
|
|
if( ( ( pad->GetLayerSet() & layerMask ) == 0 && !pad->GetDrillSize().x ) ||
|
|
|
|
( ( aRefPad->GetLayerSet() & layerMask ) == 0 && !aRefPad->GetDrillSize().x ) )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2007-12-01 03:42:52 +00:00
|
|
|
|
2020-04-26 12:21:37 +00:00
|
|
|
wxString source;
|
|
|
|
int minClearance = aRefPad->GetClearance( nullptr, &source );
|
|
|
|
int actual;
|
2020-04-26 10:30:32 +00:00
|
|
|
|
|
|
|
if( !checkClearancePadToPad( aRefPad, pad, minClearance, &actual ) )
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2020-05-07 13:35:50 +00:00
|
|
|
DRC_ITEM* drcItem = new DRC_ITEM( DRCE_PAD_NEAR_PAD );
|
2020-04-24 18:56:44 +00:00
|
|
|
|
2020-04-26 12:21:37 +00:00
|
|
|
msg.Printf( drcItem->GetErrorText() + _( " (%s %s; actual %s)" ),
|
|
|
|
source,
|
2020-04-26 10:30:32 +00:00
|
|
|
MessageTextFromValue( userUnits(), minClearance, true ),
|
2020-04-24 18:56:44 +00:00
|
|
|
MessageTextFromValue( userUnits(), actual, true ) );
|
|
|
|
|
|
|
|
drcItem->SetErrorMessage( msg );
|
2020-04-24 13:36:10 +00:00
|
|
|
drcItem->SetItems( aRefPad, pad );
|
|
|
|
|
|
|
|
MARKER_PCB* marker = new MARKER_PCB( drcItem, aRefPad->GetPosition() );
|
|
|
|
addMarkerToPcb( marker );
|
2007-12-01 03:42:52 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2017-03-16 17:09:33 +00:00
|
|
|
|
|
|
|
|
2020-05-01 17:44:25 +00:00
|
|
|
void DRC::doCourtyardsDrc()
|
2017-03-16 17:09:33 +00:00
|
|
|
{
|
2020-05-01 17:44:25 +00:00
|
|
|
DRC_COURTYARD_TESTER drc_overlap( [&]( MARKER_PCB* aMarker ) { addMarkerToPcb( aMarker ); } );
|
2017-03-16 17:09:33 +00:00
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
drc_overlap.RunDRC( *m_pcb );
|
2017-03-16 17:09:33 +00:00
|
|
|
}
|
2019-03-28 19:30:51 +00:00
|
|
|
|
|
|
|
|
2020-03-16 11:05:01 +00:00
|
|
|
void DRC::TestFootprints( NETLIST& aNetlist, BOARD* aPCB, EDA_UNITS aUnits,
|
|
|
|
std::vector<DRC_ITEM*>& aDRCList )
|
2019-03-28 19:30:51 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
wxString msg;
|
2019-05-31 00:15:57 +00:00
|
|
|
|
2020-03-16 11:05:01 +00:00
|
|
|
auto comp = []( const MODULE* x, const MODULE* y )
|
|
|
|
{
|
2019-06-02 14:26:32 +00:00
|
|
|
return x->GetReference().CmpNoCase( y->GetReference() ) < 0;
|
|
|
|
};
|
|
|
|
auto mods = std::set<MODULE*, decltype( comp )>( comp );
|
2019-03-28 19:30:51 +00:00
|
|
|
|
2020-05-04 19:08:42 +00:00
|
|
|
if( !aPCB->GetDesignSettings().Ignore( DRCE_DUPLICATE_FOOTPRINT ) )
|
2019-03-28 19:30:51 +00:00
|
|
|
{
|
2020-05-04 19:08:42 +00:00
|
|
|
// Search for duplicate footprints on the board
|
|
|
|
for( MODULE* mod : aPCB->Modules() )
|
2019-03-28 19:30:51 +00:00
|
|
|
{
|
2020-05-04 19:08:42 +00:00
|
|
|
auto ins = mods.insert( mod );
|
|
|
|
|
|
|
|
if( !ins.second )
|
|
|
|
{
|
|
|
|
DRC_ITEM* item = new DRC_ITEM( DRCE_DUPLICATE_FOOTPRINT );
|
|
|
|
item->SetItems( mod, *ins.first );
|
|
|
|
aDRCList.push_back( item );
|
|
|
|
}
|
2019-03-28 19:30:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-04 19:08:42 +00:00
|
|
|
if( !aPCB->GetDesignSettings().Ignore( DRCE_MISSING_FOOTPRINT ) )
|
2019-03-28 19:30:51 +00:00
|
|
|
{
|
2020-05-04 19:08:42 +00:00
|
|
|
// Search for component footprints in the netlist but not on the board.
|
|
|
|
for( unsigned ii = 0; ii < aNetlist.GetCount(); ii++ )
|
2019-03-28 19:30:51 +00:00
|
|
|
{
|
2020-05-04 19:08:42 +00:00
|
|
|
COMPONENT* component = aNetlist.GetComponent( ii );
|
|
|
|
MODULE* module = aPCB->FindModuleByReference( component->GetReference() );
|
|
|
|
|
|
|
|
if( module == NULL )
|
|
|
|
{
|
|
|
|
msg.Printf( _( "Missing footprint %s (%s)" ),
|
|
|
|
component->GetReference(),
|
|
|
|
component->GetValue() );
|
2020-04-24 13:36:10 +00:00
|
|
|
|
2020-05-04 19:08:42 +00:00
|
|
|
DRC_ITEM* item = new DRC_ITEM( DRCE_MISSING_FOOTPRINT );
|
|
|
|
item->SetErrorMessage( msg );
|
|
|
|
aDRCList.push_back( item );
|
|
|
|
}
|
2019-03-28 19:30:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-04 19:08:42 +00:00
|
|
|
if( !aPCB->GetDesignSettings().Ignore( DRCE_EXTRA_FOOTPRINT ) )
|
2019-03-28 19:30:51 +00:00
|
|
|
{
|
2020-05-04 19:08:42 +00:00
|
|
|
// Search for component footprints found on board but not in netlist.
|
|
|
|
for( auto module : mods )
|
2019-03-28 19:30:51 +00:00
|
|
|
{
|
2020-05-04 19:08:42 +00:00
|
|
|
COMPONENT* component = aNetlist.GetComponentByReference( module->GetReference() );
|
|
|
|
|
|
|
|
if( component == NULL )
|
|
|
|
{
|
|
|
|
DRC_ITEM* item = new DRC_ITEM( DRCE_EXTRA_FOOTPRINT );
|
|
|
|
item->SetItems( module );
|
|
|
|
aDRCList.push_back( item );
|
|
|
|
}
|
2019-03-28 19:30:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-03 13:49:17 +00:00
|
|
|
void DRC::setTransitions()
|
|
|
|
{
|
|
|
|
Go( &DRC::ShowDRCDialog, PCB_ACTIONS::runDRC.MakeEvent() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-28 00:05:40 +00:00
|
|
|
const int EPSILON = Mils2iu( 5 );
|
|
|
|
|
|
|
|
|
|
|
|
wxPoint DRC::getLocation( TRACK* aTrack, ZONE_CONTAINER* aConflictZone ) const
|
|
|
|
{
|
|
|
|
SHAPE_POLY_SET* conflictOutline;
|
|
|
|
|
|
|
|
if( aConflictZone->IsFilled() )
|
|
|
|
conflictOutline = const_cast<SHAPE_POLY_SET*>( &aConflictZone->GetFilledPolysList() );
|
|
|
|
else
|
|
|
|
conflictOutline = aConflictZone->Outline();
|
|
|
|
|
|
|
|
wxPoint pt1 = aTrack->GetPosition();
|
|
|
|
wxPoint pt2 = aTrack->GetEnd();
|
|
|
|
|
|
|
|
// If the mid-point is in the zone, then that's a fine place for the marker
|
2020-04-28 21:43:29 +00:00
|
|
|
if( conflictOutline->SquaredDistance( ( pt1 + pt2 ) / 2 ) == 0 )
|
2020-02-28 00:05:40 +00:00
|
|
|
return ( pt1 + pt2 ) / 2;
|
|
|
|
|
|
|
|
// Otherwise do a binary search for a "good enough" marker location
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while( GetLineLength( pt1, pt2 ) > EPSILON )
|
|
|
|
{
|
2020-04-28 21:43:29 +00:00
|
|
|
if( conflictOutline->SquaredDistance( pt1 ) < conflictOutline->SquaredDistance( pt2 ) )
|
2020-02-28 00:05:40 +00:00
|
|
|
pt2 = ( pt1 + pt2 ) / 2;
|
|
|
|
else
|
|
|
|
pt1 = ( pt1 + pt2 ) / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Once we're within EPSILON pt1 and pt2 are "equivalent"
|
|
|
|
return pt1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-26 10:30:32 +00:00
|
|
|
wxPoint DRC::getLocation( TRACK* aTrack, const SEG& aConflictSeg ) const
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
|
|
|
wxPoint pt1 = aTrack->GetPosition();
|
|
|
|
wxPoint pt2 = aTrack->GetEnd();
|
|
|
|
|
|
|
|
// Do a binary search along the track for a "good enough" marker location
|
|
|
|
while( GetLineLength( pt1, pt2 ) > EPSILON )
|
|
|
|
{
|
2020-04-26 10:30:32 +00:00
|
|
|
if( aConflictSeg.SquaredDistance( pt1 ) < aConflictSeg.SquaredDistance( pt2 ) )
|
2020-02-28 00:05:40 +00:00
|
|
|
pt2 = ( pt1 + pt2 ) / 2;
|
|
|
|
else
|
|
|
|
pt1 = ( pt1 + pt2 ) / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Once we're within EPSILON pt1 and pt2 are "equivalent"
|
|
|
|
return pt1;
|
|
|
|
}
|
|
|
|
|
2019-06-03 13:49:17 +00:00
|
|
|
|