63 virtual bool Run()
override;
65 virtual const wxString
GetName()
const override
67 return wxT(
"solder_mask_issues" );
72 return wxT(
"Tests for silkscreen being clipped by solder mask and copper being exposed "
73 "by mask apertures of other nets" );
119 ZONE* zone =
static_cast<ZONE*
>( aItem );
137 int clearance = (
m_webWidth / 2 ) +
pad->GetSolderMaskExpansion( layer );
153 int clearance = (
m_webWidth / 2 ) +
via->GetSolderMaskExpansion();
155 via->TransformShapeToPolygon( *solderMask->
GetFill( layer ), layer, clearance,
170 text->TransformTextToPolySet( *solderMask->
GetFill( layer ),
198 const size_t progressDelta = 500;
250 const size_t progressDelta = 250;
275 if( !item->IsOnLayer( layer ) )
278 PCB_LAYER_ID maskLayer = layer == F_SilkS ? F_Mask : B_Mask;
279 BOX2I itemBBox = item->GetBoundingBox();
280 DRC_CONSTRAINT constraint = m_drcEngine->EvalRules( SILK_CLEARANCE_CONSTRAINT,
281 item, nullptr, maskLayer );
282 int clearance = constraint.GetValue().Min();
286 if( constraint.GetSeverity() == RPT_SEVERITY_IGNORE || clearance < 0 )
289 std::shared_ptr<SHAPE> itemShape = item->GetEffectiveShape( layer );
291 if( m_fullSolderMaskRTree->QueryColliding( itemBBox, itemShape.get(), maskLayer,
292 clearance, &actual, &pos ) )
294 auto drce = DRC_ITEM::Create( DRCE_SILK_CLEARANCE );
298 wxString msg = formatMsg( _(
"(%s clearance %s; actual %s)" ),
299 constraint.GetName(),
303 drce->SetErrorMessage( drce->GetErrorText() + wxS(
" " ) + msg );
306 drce->SetItems( item );
307 drce->SetViolatingRule( constraint.GetParentRule() );
309 reportViolation( drce, pos, layer );
355 return maskLayers.count() > 0 && copperLayers.count() == 0;
391 auto& [cacheKey, cacheEntry] = *ii;
392 auto& [alreadyEncounteredItem, encounteredItemNet] = cacheEntry;
394 if( encounteredItemNet == aTestNet && aTestNet >= 0 )
406 if( alreadyEncounteredItem->Type() ==
PCB_PAD_T )
407 padA =
static_cast<PAD*
>( alreadyEncounteredItem );
410 padB =
static_cast<PAD*
>( aTestItem );
418 if( padToNetTieGroupMap.contains( padA->
GetNumber() ) )
423 if( padToNetTieGroupMap.contains( padB->
GetNumber() ) )
428 *aCollidingItem = alreadyEncounteredItem;
437 wxCHECK( fp,
false );
451 if( padNumberToGroupIdxMap[
static_cast<PAD*
>( aMaskItem )->GetNumber() ] >= 0 )
475 m_itemTree->QueryColliding( aItem, aRefLayer, aTargetLayer,
487 if( otherNet > 0 && otherNet == itemNet )
504 if(
pad && otherPad && (
pad->SameLogicalPadAs( otherPad )
505 ||
pad->SharesNetTieGroup( otherPad ) ) )
514 if(
static_cast<void*
>( a ) >
static_cast<void*
>( b ) )
519 if( it !=
m_checkedPairs.end() && it->second.test( aTargetLayer ) )
559 else if(
via && !
via->IsTented( aRefLayer ) )
560 clearance +=
via->GetSolderMaskExpansion();
564 else if( otherVia && !otherVia->IsTented( aRefLayer ) )
565 clearance += otherVia->GetSolderMaskExpansion();
567 if( itemShape->Collide( otherShape.get(), clearance, &actual, &pos ) )
572 if( aTargetLayer ==
F_Mask )
573 msg =
_(
"Front solder mask aperture bridges items with different nets" );
575 msg =
_(
"Rear solder mask aperture bridges items with different nets" );
586 drce->SetErrorMessage( msg );
587 drce->SetItems( aItem, colliding, other );
598 drce->SetErrorMessage( msg );
599 drce->SetItems( other, colliding, aItem );
608 drce->SetErrorMessage( msg );
609 drce->SetItems( aItem, other );
622 const BOX2I& aItemBBox,
637 if( zoneNet == connectedItem->
GetNetCode() && zoneNet > 0 )
641 BOX2I inflatedBBox( aItemBBox );
649 inflatedBBox.
Inflate( clearance );
660 if( zoneTree && zoneTree->
QueryColliding( aItemBBox, itemShape.get(), aTargetLayer,
661 clearance, &actual, &pos ) )
666 if( aMaskLayer ==
F_Mask )
667 msg =
_(
"Front solder mask aperture bridges items with different nets" );
669 msg =
_(
"Rear solder mask aperture bridges items with different nets" );
679 drce->SetErrorMessage( msg );
680 drce->SetItems( aItem, colliding, zone );
689 drce->SetErrorMessage( msg );
690 drce->SetItems( aItem, zone );
706 const size_t progressDelta = 250;
766 reportAux( wxT(
"Solder mask violations ignored. Tests not run." ) );
777 for(
PAD*
pad : footprint->Pads() )
800 if( !
reportPhase(
_(
"Checking solder mask to silk clearance..." ) ) )
805 if( !
reportPhase(
_(
"Checking solder mask web integrity..." ) ) )
A base class derived from BOARD_ITEM for items that can be connected and have a net,...
Container for design settings for a BOARD object.
int m_SolderMaskToCopperClearance
bool m_AllowSoldermaskBridgesInFPs
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
virtual bool IsConnected() const
Returns information if the object is derived from BOARD_CONNECTED_ITEM.
virtual void TransformShapeToPolygon(SHAPE_POLY_SET &aBuffer, PCB_LAYER_ID aLayer, int aClearance, int aError, ERROR_LOC aErrorLoc, bool ignoreLineWidth=false) const
Convert the item shape to a closed polygon.
virtual bool IsOnLayer(PCB_LAYER_ID aLayer) const
Test to see if this object is on the given layer.
virtual std::shared_ptr< SHAPE > GetEffectiveShape(PCB_LAYER_ID aLayer=UNDEFINED_LAYER, FLASHING aFlash=FLASHING::DEFAULT) const
Some pad shapes can be complex (rounded/chamfered rectangle), even without considering custom shapes.
virtual const BOARD * GetBoard() const
Return the BOARD in which this BOARD_ITEM resides, or NULL if none.
FOOTPRINT * GetParentFootprint() const
virtual LSET GetLayerSet() const
Return a std::bitset of all layers on which the item physically resides.
Information pertinent to a Pcbnew printed circuit board.
ZONE * m_SolderMaskBridges
std::vector< ZONE * > m_DRCCopperZones
const FOOTPRINTS & Footprints() const
std::unordered_map< ZONE *, std::unique_ptr< DRC_RTREE > > m_CopperZoneRTreeCache
BOARD_DESIGN_SETTINGS & GetDesignSettings() const
constexpr BOX2< Vec > & Inflate(coord_type dx, coord_type dy)
Inflates the rectangle horizontally by dx and vertically by dy.
constexpr bool Intersects(const BOX2< Vec > &aRect) const
bool IsErrorLimitExceeded(int error_code)
bool QueryWorstConstraint(DRC_CONSTRAINT_T aRuleId, DRC_CONSTRAINT &aConstraint)
static std::shared_ptr< DRC_ITEM > Create(int aErrorCode)
Constructs a DRC_ITEM for the given error code.
Implement an R-tree for fast spatial and layer indexing of connectable items.
int QueryColliding(BOARD_ITEM *aRefItem, PCB_LAYER_ID aRefLayer, PCB_LAYER_ID aTargetLayer, std::function< bool(BOARD_ITEM *)> aFilter=nullptr, std::function< bool(BOARD_ITEM *)> aVisitor=nullptr, int aClearance=0) const
This is a fast test which essentially does bounding-box overlap given a worst-case clearance.
virtual const wxString GetName() const override
void testMaskItemAgainstZones(BOARD_ITEM *item, const BOX2I &itemBBox, PCB_LAYER_ID refLayer, PCB_LAYER_ID targetLayer)
bool checkMaskAperture(BOARD_ITEM *aMaskItem, BOARD_ITEM *aTestItem, PCB_LAYER_ID aTestLayer, int aTestNet, BOARD_ITEM **aCollidingItem)
std::unique_ptr< DRC_RTREE > m_itemTree
void addItemToRTrees(BOARD_ITEM *aItem)
std::unique_ptr< DRC_RTREE > m_fullSolderMaskRTree
void testSilkToMaskClearance()
virtual bool Run() override
Run this provider against the given PCB with configured options (if any).
virtual const wxString GetDescription() const override
std::unordered_map< PTR_PTR_CACHE_KEY, LSET > m_checkedPairs
bool checkItemMask(BOARD_ITEM *aMaskItem, int aTestNet)
virtual ~DRC_TEST_PROVIDER_SOLDER_MASK()
DRC_TEST_PROVIDER_SOLDER_MASK()
std::unordered_map< PTR_LAYER_CACHE_KEY, std::pair< BOARD_ITEM *, int > > m_maskApertureNetMap
void testItemAgainstItems(BOARD_ITEM *aItem, const BOX2I &aItemBBox, PCB_LAYER_ID aRefLayer, PCB_LAYER_ID aTargetLayer)
Represent a DRC "provider" which runs some DRC functions over a BOARD and spits out DRC_ITEM and posi...
static std::vector< KICAD_T > s_allBasicItemsButZones
virtual bool reportPhase(const wxString &aStageName)
int forEachGeometryItem(const std::vector< KICAD_T > &aTypes, LSET aLayers, const std::function< bool(BOARD_ITEM *)> &aFunc)
virtual void reportViolation(std::shared_ptr< DRC_ITEM > &item, const VECTOR2I &aMarkerPos, int aMarkerLayer)
static std::vector< KICAD_T > s_allBasicItems
bool isInvisibleText(const BOARD_ITEM *aItem) const
void reportAux(const wxString &aMsg)
virtual void reportRuleStatistics()
virtual bool reportProgress(size_t aCount, size_t aSize, size_t aDelta=1)
virtual const BOX2I GetBoundingBox() const
Return the orthogonal bounding box of this object for display purposes.
KICAD_T Type() const
Returns the type of object.
LSET is a set of PCB_LAYER_IDs.
static LSET AllCuMask(int aCuLayerCount=MAX_CU_LAYERS)
Return a mask holding the requested number of Cu PCB_LAYER_IDs.
static constexpr PCB_LAYER_ID ALL_LAYERS
! Temporary layer identifier to identify code that is not padstack-aware
const wxString & GetNumber() const
bool SameLogicalPadAs(const PAD *aOther) const
Before we had custom pad shapes it was common to have multiple overlapping pads to represent a more c...
int GetSolderMaskExpansion(PCB_LAYER_ID aLayer) const
bool SharesNetTieGroup(const PAD *aOther) const
int GetSolderMaskExpansion() const
void RemoveAllContours()
Remove all outlines & holes (clears) the polygon set.
void BooleanAdd(const SHAPE_POLY_SET &b, POLYGON_MODE aFastMode)
Perform boolean polyset union For aFastMode meaning, see function booleanOp.
void Simplify(POLYGON_MODE aFastMode)
Simplify the polyset (merges overlapping polys, eliminates degeneracy/self-intersections) For aFastMo...
void Deflate(int aAmount, CORNER_STRATEGY aCornerStrategy, int aMaxError)
Handle a list of polygons defining a copper zone.
const std::shared_ptr< SHAPE_POLY_SET > & GetFilledPolysList(PCB_LAYER_ID aLayer) const
void CacheTriangulation(PCB_LAYER_ID aLayer=UNDEFINED_LAYER)
Create a list of triangles that "fill" the solid areas used for instance to draw these solid areas on...
const BOX2I GetBoundingBox() const override
void SetFillFlag(PCB_LAYER_ID aLayer, bool aFlag)
SHAPE_POLY_SET * GetFill(PCB_LAYER_ID aLayer)
void SetIsFilled(bool isFilled)
virtual bool IsOnLayer(PCB_LAYER_ID) const override
Test to see if this object is on the given layer.
virtual LSET GetLayerSet() const override
Return a std::bitset of all layers on which the item physically resides.
@ SILK_CLEARANCE_CONSTRAINT
bool isMaskAperture(BOARD_ITEM *aItem)
bool isNullAperture(BOARD_ITEM *aItem)
bool IsFrontLayer(PCB_LAYER_ID aLayerId)
Layer classification: check if it's a front layer.
PCB_LAYER_ID
A quick note on layer IDs:
static DRC_REGISTER_TEST_PROVIDER< DRC_TEST_PROVIDER_ANNULAR_WIDTH > dummy
@ NPTH
like PAD_PTH, but not plated mechanical use only, no connection allowed
@ PCB_SHAPE_T
class PCB_SHAPE, a segment not on copper layers
@ PCB_VIA_T
class PCB_VIA, a via (like a track segment on a copper layer)
@ PCB_ZONE_T
class ZONE, a copper pour area
@ PCB_TEXT_T
class PCB_TEXT, text on a layer
@ PCB_FIELD_T
class PCB_FIELD, text associated with a footprint property
@ PCB_PAD_T
class PAD, a pad in a footprint