2022-11-29 14:18:44 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2023-03-29 16:53:28 +00:00
|
|
|
* Copyright (C) 2019-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2022-11-29 14:18:44 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
#include <memory>
|
2024-03-06 18:24:50 +00:00
|
|
|
#include <mutex>
|
2023-03-29 16:53:28 +00:00
|
|
|
#include <wx/log.h>
|
2022-11-29 14:18:44 +00:00
|
|
|
#include <board.h>
|
|
|
|
#include <board_design_settings.h>
|
|
|
|
#include <drc/drc_rtree.h>
|
|
|
|
#include <drc/drc_engine.h>
|
|
|
|
#include <pcb_track.h>
|
|
|
|
#include <pcb_group.h>
|
|
|
|
#include <geometry/shape_segment.h>
|
2023-08-21 14:26:03 +00:00
|
|
|
#include <pcbexpr_evaluator.h>
|
2022-11-29 14:18:44 +00:00
|
|
|
#include <connectivity/connectivity_data.h>
|
|
|
|
#include <connectivity/connectivity_algo.h>
|
|
|
|
#include <connectivity/from_to_cache.h>
|
|
|
|
|
|
|
|
|
|
|
|
bool fromToFunc( LIBEVAL::CONTEXT* aCtx, void* self )
|
|
|
|
{
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_VAR_REF* vref = static_cast<PCBEXPR_VAR_REF*>( self );
|
2024-05-21 23:21:58 +00:00
|
|
|
BOARD_ITEM* item = vref ? vref->GetObject( aCtx ) : nullptr;
|
|
|
|
LIBEVAL::VALUE* result = aCtx->AllocValue();
|
|
|
|
LIBEVAL::VALUE* argTo = aCtx->Pop();
|
|
|
|
LIBEVAL::VALUE* argFrom = aCtx->Pop();
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
result->Set(0.0);
|
|
|
|
aCtx->Push( result );
|
|
|
|
|
|
|
|
if(!item)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
auto ftCache = item->GetBoard()->GetConnectivity()->GetFromToCache();
|
|
|
|
|
|
|
|
if( !ftCache )
|
|
|
|
{
|
|
|
|
wxLogWarning( wxT( "Attempting to call fromTo() with non-existent from-to cache." ) );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ftCache->IsOnFromToPath( static_cast<BOARD_CONNECTED_ITEM*>( item ),
|
|
|
|
argFrom->AsString(), argTo->AsString() ) )
|
|
|
|
{
|
|
|
|
result->Set(1.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define MISSING_LAYER_ARG( f ) wxString::Format( _( "Missing layer name argument to %s." ), f )
|
|
|
|
|
|
|
|
static void existsOnLayerFunc( LIBEVAL::CONTEXT* aCtx, void *self )
|
|
|
|
{
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_VAR_REF* vref = static_cast<PCBEXPR_VAR_REF*>( self );
|
2024-05-21 23:21:58 +00:00
|
|
|
BOARD_ITEM* item = vref ? vref->GetObject( aCtx ) : nullptr;
|
|
|
|
LIBEVAL::VALUE* arg = aCtx->Pop();
|
|
|
|
LIBEVAL::VALUE* result = aCtx->AllocValue();
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
result->Set( 0.0 );
|
|
|
|
aCtx->Push( result );
|
|
|
|
|
|
|
|
if( !item )
|
|
|
|
return;
|
|
|
|
|
2023-06-18 19:27:54 +00:00
|
|
|
if( !arg || arg->AsString().IsEmpty() )
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
|
|
|
if( aCtx->HasErrorCallback() )
|
|
|
|
aCtx->ReportError( MISSING_LAYER_ARG( wxT( "existsOnLayer()" ) ) );
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
result->SetDeferredEval(
|
|
|
|
[item, arg, aCtx]() -> double
|
|
|
|
{
|
|
|
|
const wxString& layerName = arg->AsString();
|
|
|
|
wxPGChoices& layerMap = ENUM_MAP<PCB_LAYER_ID>::Instance().Choices();
|
|
|
|
|
|
|
|
if( aCtx->HasErrorCallback())
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Interpreted version
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool anyMatch = false;
|
|
|
|
|
|
|
|
for( unsigned ii = 0; ii < layerMap.GetCount(); ++ii )
|
|
|
|
{
|
|
|
|
wxPGChoiceEntry& entry = layerMap[ ii ];
|
|
|
|
|
|
|
|
if( entry.GetText().Matches( layerName ))
|
|
|
|
{
|
|
|
|
anyMatch = true;
|
|
|
|
|
2023-08-01 17:37:19 +00:00
|
|
|
if( item->IsOnLayer( ToLAYER_ID( entry.GetValue() ) ) )
|
2022-11-29 14:18:44 +00:00
|
|
|
return 1.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !anyMatch )
|
|
|
|
{
|
|
|
|
aCtx->ReportError( wxString::Format( _( "Unrecognized layer '%s'" ),
|
|
|
|
layerName ) );
|
|
|
|
}
|
2024-03-07 13:02:16 +00:00
|
|
|
|
|
|
|
return 0.0;
|
2022-11-29 14:18:44 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Compiled version
|
|
|
|
*/
|
|
|
|
|
|
|
|
BOARD* board = item->GetBoard();
|
|
|
|
|
|
|
|
{
|
2024-03-07 13:02:16 +00:00
|
|
|
std::shared_lock<std::shared_mutex> readLock( board->m_CachesMutex );
|
2022-11-29 14:18:44 +00:00
|
|
|
|
2024-03-07 13:02:16 +00:00
|
|
|
auto i = board->m_LayerExpressionCache.find( layerName );
|
2022-11-29 14:18:44 +00:00
|
|
|
|
2024-03-07 13:02:16 +00:00
|
|
|
if( i != board->m_LayerExpressionCache.end() )
|
|
|
|
return ( item->GetLayerSet() & i->second ).any() ? 1.0 : 0.0;
|
2022-11-29 14:18:44 +00:00
|
|
|
}
|
2024-03-07 13:02:16 +00:00
|
|
|
|
|
|
|
LSET mask;
|
|
|
|
|
|
|
|
for( unsigned ii = 0; ii < layerMap.GetCount(); ++ii )
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
2024-03-07 13:02:16 +00:00
|
|
|
wxPGChoiceEntry& entry = layerMap[ ii ];
|
|
|
|
|
|
|
|
if( entry.GetText().Matches( layerName ) )
|
|
|
|
mask.set( ToLAYER_ID( entry.GetValue() ) );
|
2022-11-29 14:18:44 +00:00
|
|
|
}
|
|
|
|
|
2024-03-07 13:02:16 +00:00
|
|
|
{
|
|
|
|
std::unique_lock<std::shared_mutex> writeLock( board->m_CachesMutex );
|
|
|
|
board->m_LayerExpressionCache[ layerName ] = mask;
|
|
|
|
}
|
2022-11-29 14:18:44 +00:00
|
|
|
|
2024-03-07 13:02:16 +00:00
|
|
|
return ( item->GetLayerSet() & mask ).any() ? 1.0 : 0.0;
|
|
|
|
}
|
2022-11-29 14:18:44 +00:00
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void isPlatedFunc( LIBEVAL::CONTEXT* aCtx, void* self )
|
|
|
|
{
|
|
|
|
LIBEVAL::VALUE* result = aCtx->AllocValue();
|
|
|
|
|
|
|
|
result->Set( 0.0 );
|
|
|
|
aCtx->Push( result );
|
|
|
|
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_VAR_REF* vref = static_cast<PCBEXPR_VAR_REF*>( self );
|
2022-11-29 14:18:44 +00:00
|
|
|
BOARD_ITEM* item = vref ? vref->GetObject( aCtx ) : nullptr;
|
|
|
|
|
|
|
|
if( !item )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if( item->Type() == PCB_PAD_T && static_cast<PAD*>( item )->GetAttribute() == PAD_ATTRIB::PTH )
|
|
|
|
result->Set( 1.0 );
|
|
|
|
else if( item->Type() == PCB_VIA_T )
|
|
|
|
result->Set( 1.0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool collidesWithCourtyard( BOARD_ITEM* aItem, std::shared_ptr<SHAPE>& aItemShape,
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_CONTEXT* aCtx, FOOTPRINT* aFootprint, PCB_LAYER_ID aSide )
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
|
|
|
SHAPE_POLY_SET footprintCourtyard;
|
|
|
|
|
|
|
|
footprintCourtyard = aFootprint->GetCourtyard( aSide );
|
|
|
|
|
|
|
|
if( !aItemShape )
|
|
|
|
{
|
|
|
|
// Since rules are used for zone filling we can't rely on the filled shapes.
|
|
|
|
// Use the zone outline instead.
|
|
|
|
if( ZONE* zone = dynamic_cast<ZONE*>( aItem ) )
|
|
|
|
aItemShape.reset( zone->Outline()->Clone() );
|
|
|
|
else
|
|
|
|
aItemShape = aItem->GetEffectiveShape( aCtx->GetLayer() );
|
|
|
|
}
|
|
|
|
|
|
|
|
return footprintCourtyard.Collide( aItemShape.get() );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2023-08-21 14:26:03 +00:00
|
|
|
static bool searchFootprints( BOARD* aBoard, const wxString& aArg, PCBEXPR_CONTEXT* aCtx,
|
2023-06-21 15:51:24 +00:00
|
|
|
const std::function<bool( FOOTPRINT* )>& aFunc )
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
|
|
|
if( aArg == wxT( "A" ) )
|
|
|
|
{
|
|
|
|
FOOTPRINT* fp = dynamic_cast<FOOTPRINT*>( aCtx->GetItem( 0 ) );
|
|
|
|
|
|
|
|
if( fp && aFunc( fp ) )
|
2023-06-21 15:51:24 +00:00
|
|
|
return true;
|
2022-11-29 14:18:44 +00:00
|
|
|
}
|
|
|
|
else if( aArg == wxT( "B" ) )
|
|
|
|
{
|
|
|
|
FOOTPRINT* fp = dynamic_cast<FOOTPRINT*>( aCtx->GetItem( 1 ) );
|
|
|
|
|
|
|
|
if( fp && aFunc( fp ) )
|
2023-06-21 15:51:24 +00:00
|
|
|
return true;
|
2022-11-29 14:18:44 +00:00
|
|
|
}
|
|
|
|
else for( FOOTPRINT* fp : aBoard->Footprints() )
|
|
|
|
{
|
|
|
|
if( fp->GetReference().Matches( aArg ) )
|
|
|
|
{
|
|
|
|
if( aFunc( fp ) )
|
2023-06-21 15:51:24 +00:00
|
|
|
return true;
|
2022-11-29 14:18:44 +00:00
|
|
|
}
|
2024-05-17 17:57:42 +00:00
|
|
|
else if( aArg.Contains( ':' )
|
|
|
|
&& fp->GetFPIDAsString().Matches( aArg ) )
|
|
|
|
{
|
|
|
|
if( aFunc( fp ) )
|
|
|
|
return true;
|
|
|
|
}
|
2022-11-29 14:18:44 +00:00
|
|
|
}
|
|
|
|
|
2023-06-21 15:51:24 +00:00
|
|
|
return false;
|
2022-11-29 14:18:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define MISSING_FP_ARG( f ) \
|
|
|
|
wxString::Format( _( "Missing footprint argument (A, B, or reference designator) to %s." ), f )
|
|
|
|
|
|
|
|
static void intersectsCourtyardFunc( LIBEVAL::CONTEXT* aCtx, void* self )
|
|
|
|
{
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_CONTEXT* context = static_cast<PCBEXPR_CONTEXT*>( aCtx );
|
2024-05-21 23:21:58 +00:00
|
|
|
LIBEVAL::VALUE* arg = context->Pop();
|
|
|
|
LIBEVAL::VALUE* result = context->AllocValue();
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
result->Set( 0.0 );
|
|
|
|
context->Push( result );
|
|
|
|
|
2023-06-18 19:27:54 +00:00
|
|
|
if( !arg || arg->AsString().IsEmpty() )
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
|
|
|
if( context->HasErrorCallback() )
|
|
|
|
context->ReportError( MISSING_FP_ARG( wxT( "intersectsCourtyard()" ) ) );
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_VAR_REF* vref = static_cast<PCBEXPR_VAR_REF*>( self );
|
2024-05-21 23:21:58 +00:00
|
|
|
BOARD_ITEM* item = vref ? vref->GetObject( context ) : nullptr;
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
if( !item )
|
|
|
|
return;
|
|
|
|
|
|
|
|
result->SetDeferredEval(
|
|
|
|
[item, arg, context]() -> double
|
|
|
|
{
|
|
|
|
BOARD* board = item->GetBoard();
|
|
|
|
std::shared_ptr<SHAPE> itemShape;
|
|
|
|
|
|
|
|
if( searchFootprints( board, arg->AsString(), context,
|
|
|
|
[&]( FOOTPRINT* fp )
|
|
|
|
{
|
2024-03-07 13:02:16 +00:00
|
|
|
PTR_PTR_CACHE_KEY key = { fp, item };
|
2022-11-29 14:18:44 +00:00
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
if( ( item->GetFlags() & ROUTER_TRANSIENT ) == 0 )
|
|
|
|
{
|
2024-03-07 13:02:16 +00:00
|
|
|
std::shared_lock<std::shared_mutex> readLock( board->m_CachesMutex );
|
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
auto i = board->m_IntersectsCourtyardCache.find( key );
|
2022-11-29 14:18:44 +00:00
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
if( i != board->m_IntersectsCourtyardCache.end() )
|
|
|
|
return i->second;
|
|
|
|
}
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
bool res = collidesWithCourtyard( item, itemShape, context, fp, F_Cu )
|
|
|
|
|| collidesWithCourtyard( item, itemShape, context, fp, B_Cu );
|
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
if( ( item->GetFlags() & ROUTER_TRANSIENT ) == 0 )
|
2024-03-07 13:02:16 +00:00
|
|
|
{
|
|
|
|
std::unique_lock<std::shared_mutex> cacheLock( board->m_CachesMutex );
|
2023-06-21 17:14:41 +00:00
|
|
|
board->m_IntersectsCourtyardCache[ key ] = res;
|
2024-03-07 13:02:16 +00:00
|
|
|
}
|
2023-06-21 17:14:41 +00:00
|
|
|
|
2022-11-29 14:18:44 +00:00
|
|
|
return res;
|
|
|
|
} ) )
|
|
|
|
{
|
|
|
|
return 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0.0;
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void intersectsFrontCourtyardFunc( LIBEVAL::CONTEXT* aCtx, void* self )
|
|
|
|
{
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_CONTEXT* context = static_cast<PCBEXPR_CONTEXT*>( aCtx );
|
2024-05-21 23:21:58 +00:00
|
|
|
LIBEVAL::VALUE* arg = context->Pop();
|
|
|
|
LIBEVAL::VALUE* result = context->AllocValue();
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
result->Set( 0.0 );
|
|
|
|
context->Push( result );
|
|
|
|
|
2023-06-18 19:27:54 +00:00
|
|
|
if( !arg || arg->AsString().IsEmpty() )
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
|
|
|
if( context->HasErrorCallback() )
|
|
|
|
context->ReportError( MISSING_FP_ARG( wxT( "intersectsFrontCourtyard()" ) ) );
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_VAR_REF* vref = static_cast<PCBEXPR_VAR_REF*>( self );
|
2024-05-21 23:21:58 +00:00
|
|
|
BOARD_ITEM* item = vref ? vref->GetObject( context ) : nullptr;
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
if( !item )
|
|
|
|
return;
|
|
|
|
|
|
|
|
result->SetDeferredEval(
|
|
|
|
[item, arg, context]() -> double
|
|
|
|
{
|
|
|
|
BOARD* board = item->GetBoard();
|
|
|
|
std::shared_ptr<SHAPE> itemShape;
|
|
|
|
|
|
|
|
if( searchFootprints( board, arg->AsString(), context,
|
|
|
|
[&]( FOOTPRINT* fp )
|
|
|
|
{
|
2024-03-07 13:02:16 +00:00
|
|
|
PTR_PTR_CACHE_KEY key = { fp, item };
|
2022-11-29 14:18:44 +00:00
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
if( ( item->GetFlags() & ROUTER_TRANSIENT ) == 0 )
|
|
|
|
{
|
2024-03-07 13:02:16 +00:00
|
|
|
std::shared_lock<std::shared_mutex> readLock( board->m_CachesMutex );
|
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
auto i = board->m_IntersectsFCourtyardCache.find( key );
|
2022-11-29 14:18:44 +00:00
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
if( i != board->m_IntersectsFCourtyardCache.end() )
|
|
|
|
return i->second;
|
|
|
|
}
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
bool res = collidesWithCourtyard( item, itemShape, context, fp, F_Cu );
|
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
if( ( item->GetFlags() & ROUTER_TRANSIENT ) == 0 )
|
2024-03-07 13:02:16 +00:00
|
|
|
{
|
|
|
|
std::unique_lock<std::shared_mutex> writeLock( board->m_CachesMutex );
|
2023-06-21 17:14:41 +00:00
|
|
|
board->m_IntersectsFCourtyardCache[ key ] = res;
|
2024-03-07 13:02:16 +00:00
|
|
|
}
|
2023-06-21 17:14:41 +00:00
|
|
|
|
2022-11-29 14:18:44 +00:00
|
|
|
return res;
|
|
|
|
} ) )
|
|
|
|
{
|
|
|
|
return 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0.0;
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void intersectsBackCourtyardFunc( LIBEVAL::CONTEXT* aCtx, void* self )
|
|
|
|
{
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_CONTEXT* context = static_cast<PCBEXPR_CONTEXT*>( aCtx );
|
2024-05-21 23:21:58 +00:00
|
|
|
LIBEVAL::VALUE* arg = context->Pop();
|
|
|
|
LIBEVAL::VALUE* result = context->AllocValue();
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
result->Set( 0.0 );
|
|
|
|
context->Push( result );
|
|
|
|
|
2023-06-18 19:27:54 +00:00
|
|
|
if( !arg || arg->AsString().IsEmpty() )
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
|
|
|
if( context->HasErrorCallback() )
|
|
|
|
context->ReportError( MISSING_FP_ARG( wxT( "intersectsBackCourtyard()" ) ) );
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_VAR_REF* vref = static_cast<PCBEXPR_VAR_REF*>( self );
|
2024-05-21 23:21:58 +00:00
|
|
|
BOARD_ITEM* item = vref ? vref->GetObject( context ) : nullptr;
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
if( !item )
|
|
|
|
return;
|
|
|
|
|
|
|
|
result->SetDeferredEval(
|
|
|
|
[item, arg, context]() -> double
|
|
|
|
{
|
|
|
|
BOARD* board = item->GetBoard();
|
|
|
|
std::shared_ptr<SHAPE> itemShape;
|
|
|
|
|
|
|
|
if( searchFootprints( board, arg->AsString(), context,
|
|
|
|
[&]( FOOTPRINT* fp )
|
|
|
|
{
|
2024-03-07 13:02:16 +00:00
|
|
|
PTR_PTR_CACHE_KEY key = { fp, item };
|
2022-11-29 14:18:44 +00:00
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
if( ( item->GetFlags() & ROUTER_TRANSIENT ) == 0 )
|
|
|
|
{
|
2024-03-07 13:02:16 +00:00
|
|
|
std::shared_lock<std::shared_mutex> readLock( board->m_CachesMutex );
|
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
auto i = board->m_IntersectsBCourtyardCache.find( key );
|
2022-11-29 14:18:44 +00:00
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
if( i != board->m_IntersectsBCourtyardCache.end() )
|
|
|
|
return i->second;
|
|
|
|
}
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
bool res = collidesWithCourtyard( item, itemShape, context, fp, B_Cu );
|
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
if( ( item->GetFlags() & ROUTER_TRANSIENT ) == 0 )
|
2024-03-07 13:02:16 +00:00
|
|
|
{
|
|
|
|
std::unique_lock<std::shared_mutex> writeLock( board->m_CachesMutex );
|
2023-06-21 17:14:41 +00:00
|
|
|
board->m_IntersectsBCourtyardCache[ key ] = res;
|
2024-03-07 13:02:16 +00:00
|
|
|
}
|
2023-06-21 17:14:41 +00:00
|
|
|
|
2022-11-29 14:18:44 +00:00
|
|
|
return res;
|
|
|
|
} ) )
|
|
|
|
{
|
|
|
|
return 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0.0;
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-08-21 14:26:03 +00:00
|
|
|
bool collidesWithArea( BOARD_ITEM* aItem, PCBEXPR_CONTEXT* aCtx, ZONE* aArea )
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
|
|
|
BOARD* board = aArea->GetBoard();
|
|
|
|
BOX2I areaBBox = aArea->GetBoundingBox();
|
|
|
|
std::shared_ptr<SHAPE> shape;
|
|
|
|
|
|
|
|
// Collisions include touching, so we need to deflate outline by enough to exclude it.
|
|
|
|
// This is particularly important for detecting copper fills as they will be exactly
|
|
|
|
// touching along the entire exclusion border.
|
|
|
|
SHAPE_POLY_SET areaOutline = aArea->Outline()->CloneDropTriangulation();
|
2023-06-20 13:17:48 +00:00
|
|
|
areaOutline.ClearArcs();
|
2023-05-29 15:22:06 +00:00
|
|
|
areaOutline.Deflate( board->GetDesignSettings().GetDRCEpsilon(),
|
2023-10-05 07:34:24 +00:00
|
|
|
CORNER_STRATEGY::ALLOW_ACUTE_CORNERS, ARC_LOW_DEF );
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
if( aItem->GetFlags() & HOLE_PROXY )
|
|
|
|
{
|
|
|
|
if( aItem->Type() == PCB_PAD_T )
|
|
|
|
{
|
|
|
|
return areaOutline.Collide( aItem->GetEffectiveHoleShape().get() );
|
|
|
|
}
|
|
|
|
else if( aItem->Type() == PCB_VIA_T )
|
|
|
|
{
|
|
|
|
LSET overlap = aItem->GetLayerSet() & aArea->GetLayerSet();
|
|
|
|
|
|
|
|
/// Avoid buried vias that don't overlap the zone's layers
|
|
|
|
if( overlap.any() )
|
|
|
|
{
|
|
|
|
if( aCtx->GetLayer() == UNDEFINED_LAYER || overlap.Contains( aCtx->GetLayer() ) )
|
|
|
|
return areaOutline.Collide( aItem->GetEffectiveHoleShape().get() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( aItem->Type() == PCB_FOOTPRINT_T )
|
|
|
|
{
|
|
|
|
FOOTPRINT* footprint = static_cast<FOOTPRINT*>( aItem );
|
|
|
|
|
|
|
|
if( ( footprint->GetFlags() & MALFORMED_COURTYARDS ) != 0 )
|
|
|
|
{
|
|
|
|
if( aCtx->HasErrorCallback() )
|
|
|
|
aCtx->ReportError( _( "Footprint's courtyard is not a single, closed shape." ) );
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ( aArea->GetLayerSet() & LSET::FrontMask() ).any() )
|
|
|
|
{
|
|
|
|
const SHAPE_POLY_SET& courtyard = footprint->GetCourtyard( F_CrtYd );
|
|
|
|
|
|
|
|
if( courtyard.OutlineCount() == 0 )
|
|
|
|
{
|
|
|
|
if( aCtx->HasErrorCallback() )
|
|
|
|
aCtx->ReportError( _( "Footprint has no front courtyard." ) );
|
|
|
|
}
|
2023-01-08 20:31:55 +00:00
|
|
|
else if( areaOutline.Collide( &courtyard.Outline( 0 ) ) )
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
2023-01-08 20:31:55 +00:00
|
|
|
return true;
|
2022-11-29 14:18:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ( aArea->GetLayerSet() & LSET::BackMask() ).any() )
|
|
|
|
{
|
|
|
|
const SHAPE_POLY_SET& courtyard = footprint->GetCourtyard( B_CrtYd );
|
|
|
|
|
|
|
|
if( courtyard.OutlineCount() == 0 )
|
|
|
|
{
|
|
|
|
if( aCtx->HasErrorCallback() )
|
|
|
|
aCtx->ReportError( _( "Footprint has no back courtyard." ) );
|
|
|
|
}
|
2023-01-08 20:31:55 +00:00
|
|
|
else if( areaOutline.Collide( &courtyard.Outline( 0 ) ) )
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
2023-01-08 20:31:55 +00:00
|
|
|
return true;
|
2022-11-29 14:18:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-03-30 11:49:23 +00:00
|
|
|
if( aItem->Type() == PCB_ZONE_T )
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
|
|
|
ZONE* zone = static_cast<ZONE*>( aItem );
|
|
|
|
|
|
|
|
if( !zone->IsFilled() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
DRC_RTREE* zoneRTree = board->m_CopperZoneRTreeCache[ zone ].get();
|
|
|
|
|
|
|
|
if( zoneRTree )
|
|
|
|
{
|
|
|
|
for( PCB_LAYER_ID layer : aArea->GetLayerSet().Seq() )
|
|
|
|
{
|
|
|
|
if( aCtx->GetLayer() == layer || aCtx->GetLayer() == UNDEFINED_LAYER )
|
|
|
|
{
|
|
|
|
if( zoneRTree->QueryColliding( areaBBox, &areaOutline, layer ) )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PCB_LAYER_ID layer = aCtx->GetLayer();
|
|
|
|
|
|
|
|
if( layer != UNDEFINED_LAYER && !( aArea->GetLayerSet().Contains( layer ) ) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if( !shape )
|
|
|
|
shape = aItem->GetEffectiveShape( layer );
|
|
|
|
|
|
|
|
return areaOutline.Collide( shape.get() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-08-21 14:26:03 +00:00
|
|
|
bool searchAreas( BOARD* aBoard, const wxString& aArg, PCBEXPR_CONTEXT* aCtx,
|
2023-06-21 15:51:24 +00:00
|
|
|
const std::function<bool( ZONE* )>& aFunc )
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
|
|
|
if( aArg == wxT( "A" ) )
|
|
|
|
{
|
|
|
|
return aFunc( dynamic_cast<ZONE*>( aCtx->GetItem( 0 ) ) );
|
|
|
|
}
|
|
|
|
else if( aArg == wxT( "B" ) )
|
|
|
|
{
|
|
|
|
return aFunc( dynamic_cast<ZONE*>( aCtx->GetItem( 1 ) ) );
|
|
|
|
}
|
|
|
|
else if( KIID::SniffTest( aArg ) )
|
|
|
|
{
|
|
|
|
KIID target( aArg );
|
|
|
|
|
|
|
|
for( ZONE* area : aBoard->Zones() )
|
|
|
|
{
|
|
|
|
// Only a single zone can match the UUID; exit once we find a match whether
|
|
|
|
// "inside" or not
|
|
|
|
if( area->m_Uuid == target )
|
|
|
|
return aFunc( area );
|
|
|
|
}
|
|
|
|
|
|
|
|
for( FOOTPRINT* footprint : aBoard->Footprints() )
|
|
|
|
{
|
|
|
|
for( ZONE* area : footprint->Zones() )
|
|
|
|
{
|
|
|
|
// Only a single zone can match the UUID; exit once we find a match
|
|
|
|
// whether "inside" or not
|
|
|
|
if( area->m_Uuid == target )
|
|
|
|
return aFunc( area );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-21 15:51:24 +00:00
|
|
|
return false;
|
2022-11-29 14:18:44 +00:00
|
|
|
}
|
|
|
|
else // Match on zone name
|
|
|
|
{
|
|
|
|
for( ZONE* area : aBoard->Zones() )
|
|
|
|
{
|
|
|
|
if( area->GetZoneName().Matches( aArg ) )
|
|
|
|
{
|
|
|
|
// Many zones can match the name; exit only when we find an "inside"
|
|
|
|
if( aFunc( area ) )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for( FOOTPRINT* footprint : aBoard->Footprints() )
|
|
|
|
{
|
|
|
|
for( ZONE* area : footprint->Zones() )
|
|
|
|
{
|
|
|
|
// Many zones can match the name; exit only when we find an "inside"
|
|
|
|
if( area->GetZoneName().Matches( aArg ) )
|
|
|
|
{
|
|
|
|
if( aFunc( area ) )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-05-22 00:15:08 +00:00
|
|
|
class SCOPED_LAYERSET
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SCOPED_LAYERSET( BOARD_ITEM* aItem )
|
|
|
|
{
|
|
|
|
m_item = aItem;
|
|
|
|
m_layers = aItem->GetLayerSet();
|
|
|
|
}
|
|
|
|
|
|
|
|
~SCOPED_LAYERSET()
|
|
|
|
{
|
|
|
|
m_item->SetLayerSet( m_layers );
|
|
|
|
}
|
|
|
|
|
|
|
|
void Add( PCB_LAYER_ID aLayer )
|
|
|
|
{
|
|
|
|
m_item->SetLayerSet( m_item->GetLayerSet().set( aLayer ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
BOARD_ITEM* m_item;
|
|
|
|
LSET m_layers;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2022-11-29 14:18:44 +00:00
|
|
|
#define MISSING_AREA_ARG( f ) \
|
|
|
|
wxString::Format( _( "Missing rule-area argument (A, B, or rule-area name) to %s." ), f )
|
|
|
|
|
|
|
|
static void intersectsAreaFunc( LIBEVAL::CONTEXT* aCtx, void* self )
|
|
|
|
{
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_CONTEXT* context = static_cast<PCBEXPR_CONTEXT*>( aCtx );
|
2024-05-21 23:21:58 +00:00
|
|
|
LIBEVAL::VALUE* arg = aCtx->Pop();
|
|
|
|
LIBEVAL::VALUE* result = aCtx->AllocValue();
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
result->Set( 0.0 );
|
|
|
|
aCtx->Push( result );
|
|
|
|
|
2023-06-18 19:27:54 +00:00
|
|
|
if( !arg || arg->AsString().IsEmpty() )
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
|
|
|
if( aCtx->HasErrorCallback() )
|
|
|
|
aCtx->ReportError( MISSING_AREA_ARG( wxT( "intersectsArea()" ) ) );
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_VAR_REF* vref = static_cast<PCBEXPR_VAR_REF*>( self );
|
2024-05-21 23:21:58 +00:00
|
|
|
BOARD_ITEM* item = vref ? vref->GetObject( context ) : nullptr;
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
if( !item )
|
|
|
|
return;
|
|
|
|
|
|
|
|
result->SetDeferredEval(
|
|
|
|
[item, arg, context]() -> double
|
|
|
|
{
|
|
|
|
BOARD* board = item->GetBoard();
|
2023-01-08 20:31:55 +00:00
|
|
|
PCB_LAYER_ID aLayer = context->GetLayer();
|
2022-11-29 14:18:44 +00:00
|
|
|
BOX2I itemBBox = item->GetBoundingBox();
|
|
|
|
|
|
|
|
if( searchAreas( board, arg->AsString(), context,
|
|
|
|
[&]( ZONE* aArea )
|
|
|
|
{
|
|
|
|
if( !aArea || aArea == item || aArea->GetParent() == item )
|
|
|
|
return false;
|
|
|
|
|
2024-05-22 00:15:08 +00:00
|
|
|
SCOPED_LAYERSET scopedLayerSet( aArea );
|
|
|
|
|
|
|
|
if( context->GetConstraint() == SILK_CLEARANCE_CONSTRAINT )
|
|
|
|
{
|
|
|
|
// Silk clearance tests are run across layer pairs
|
|
|
|
if( ( aArea->IsOnLayer( F_SilkS ) && IsFrontLayer( aLayer ) )
|
|
|
|
|| ( aArea->IsOnLayer( B_SilkS ) && IsBackLayer( aLayer ) ) )
|
|
|
|
{
|
|
|
|
scopedLayerSet.Add( aLayer );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-08 20:31:55 +00:00
|
|
|
LSET commonLayers = aArea->GetLayerSet() & item->GetLayerSet();
|
|
|
|
|
|
|
|
if( !commonLayers.any() )
|
2022-11-29 14:18:44 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if( !aArea->GetBoundingBox().Intersects( itemBBox ) )
|
|
|
|
return false;
|
|
|
|
|
2024-03-07 13:02:16 +00:00
|
|
|
LSET testLayers;
|
2022-11-29 14:18:44 +00:00
|
|
|
|
2023-01-08 20:31:55 +00:00
|
|
|
if( aLayer != UNDEFINED_LAYER )
|
|
|
|
testLayers.set( aLayer );
|
|
|
|
else
|
|
|
|
testLayers = commonLayers;
|
2022-11-29 14:18:44 +00:00
|
|
|
|
2023-01-08 20:31:55 +00:00
|
|
|
for( PCB_LAYER_ID layer : testLayers.UIOrder() )
|
|
|
|
{
|
2024-03-07 13:02:16 +00:00
|
|
|
PTR_PTR_LAYER_CACHE_KEY key = { aArea, item, layer };
|
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
if( ( item->GetFlags() & ROUTER_TRANSIENT ) == 0 )
|
|
|
|
{
|
2024-03-07 13:02:16 +00:00
|
|
|
std::shared_lock<std::shared_mutex> readLock( board->m_CachesMutex );
|
2023-01-08 20:31:55 +00:00
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
auto i = board->m_IntersectsAreaCache.find( key );
|
2023-01-08 20:31:55 +00:00
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
if( i != board->m_IntersectsAreaCache.end() && i->second )
|
|
|
|
return true;
|
|
|
|
}
|
2023-01-08 20:31:55 +00:00
|
|
|
|
|
|
|
bool collides = collidesWithArea( item, context, aArea );
|
2022-11-29 14:18:44 +00:00
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
if( ( item->GetFlags() & ROUTER_TRANSIENT ) == 0 )
|
2024-03-06 10:06:50 +00:00
|
|
|
{
|
2024-03-07 13:02:16 +00:00
|
|
|
std::unique_lock<std::shared_mutex> writeLock( board->m_CachesMutex );
|
2023-06-21 17:14:41 +00:00
|
|
|
board->m_IntersectsAreaCache[ key ] = collides;
|
2024-03-06 10:06:50 +00:00
|
|
|
}
|
2022-11-29 14:18:44 +00:00
|
|
|
|
2023-01-08 20:31:55 +00:00
|
|
|
if( collides )
|
|
|
|
return true;
|
|
|
|
}
|
2022-11-29 14:18:44 +00:00
|
|
|
|
2023-01-08 20:31:55 +00:00
|
|
|
return false;
|
2022-11-29 14:18:44 +00:00
|
|
|
} ) )
|
|
|
|
{
|
|
|
|
return 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0.0;
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void enclosedByAreaFunc( LIBEVAL::CONTEXT* aCtx, void* self )
|
|
|
|
{
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_CONTEXT* context = static_cast<PCBEXPR_CONTEXT*>( aCtx );
|
2024-05-21 23:21:58 +00:00
|
|
|
LIBEVAL::VALUE* arg = aCtx->Pop();
|
|
|
|
LIBEVAL::VALUE* result = aCtx->AllocValue();
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
result->Set( 0.0 );
|
|
|
|
aCtx->Push( result );
|
|
|
|
|
2023-06-18 19:27:54 +00:00
|
|
|
if( !arg || arg->AsString().IsEmpty() )
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
|
|
|
if( aCtx->HasErrorCallback() )
|
|
|
|
aCtx->ReportError( MISSING_AREA_ARG( wxT( "enclosedByArea()" ) ) );
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_VAR_REF* vref = static_cast<PCBEXPR_VAR_REF*>( self );
|
2024-05-21 23:21:58 +00:00
|
|
|
BOARD_ITEM* item = vref ? vref->GetObject( context ) : nullptr;
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
if( !item )
|
|
|
|
return;
|
|
|
|
|
|
|
|
result->SetDeferredEval(
|
|
|
|
[item, arg, context]() -> double
|
|
|
|
{
|
|
|
|
BOARD* board = item->GetBoard();
|
|
|
|
int maxError = board->GetDesignSettings().m_MaxError;
|
|
|
|
PCB_LAYER_ID layer = context->GetLayer();
|
|
|
|
BOX2I itemBBox = item->GetBoundingBox();
|
|
|
|
|
|
|
|
if( searchAreas( board, arg->AsString(), context,
|
|
|
|
[&]( ZONE* aArea )
|
|
|
|
{
|
|
|
|
if( !aArea || aArea == item || aArea->GetParent() == item )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if( !( aArea->GetLayerSet() & item->GetLayerSet() ).any() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if( !aArea->GetBoundingBox().Intersects( itemBBox ) )
|
|
|
|
return false;
|
|
|
|
|
2024-03-07 13:02:16 +00:00
|
|
|
PTR_PTR_LAYER_CACHE_KEY key = { aArea, item, layer };
|
2022-11-29 14:18:44 +00:00
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
if( ( item->GetFlags() & ROUTER_TRANSIENT ) == 0 )
|
|
|
|
{
|
2024-03-07 13:02:16 +00:00
|
|
|
std::shared_lock<std::shared_mutex> readLock( board->m_CachesMutex );
|
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
auto i = board->m_EnclosedByAreaCache.find( key );
|
2022-11-29 14:18:44 +00:00
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
if( i != board->m_EnclosedByAreaCache.end() )
|
|
|
|
return i->second;
|
|
|
|
}
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
SHAPE_POLY_SET itemShape;
|
|
|
|
bool enclosedByArea;
|
|
|
|
|
|
|
|
item->TransformShapeToPolygon( itemShape, layer, 0, maxError,
|
|
|
|
ERROR_OUTSIDE );
|
|
|
|
|
|
|
|
if( itemShape.IsEmpty() )
|
|
|
|
{
|
|
|
|
// If it's already empty then our test will have no meaning.
|
|
|
|
enclosedByArea = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
itemShape.BooleanSubtract( *aArea->Outline(),
|
|
|
|
SHAPE_POLY_SET::PM_FAST );
|
|
|
|
|
|
|
|
enclosedByArea = itemShape.IsEmpty();
|
|
|
|
}
|
|
|
|
|
2023-06-21 17:14:41 +00:00
|
|
|
if( ( item->GetFlags() & ROUTER_TRANSIENT ) == 0 )
|
2024-03-07 13:02:16 +00:00
|
|
|
{
|
|
|
|
std::unique_lock<std::shared_mutex> writeLock( board->m_CachesMutex );
|
2023-06-21 17:14:41 +00:00
|
|
|
board->m_EnclosedByAreaCache[ key ] = enclosedByArea;
|
2024-03-07 13:02:16 +00:00
|
|
|
}
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
return enclosedByArea;
|
|
|
|
} ) )
|
|
|
|
{
|
|
|
|
return 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0.0;
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define MISSING_GROUP_ARG( f ) \
|
|
|
|
wxString::Format( _( "Missing group name argument to %s." ), f )
|
|
|
|
|
2023-04-12 12:53:43 +00:00
|
|
|
static void memberOfGroupFunc( LIBEVAL::CONTEXT* aCtx, void* self )
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
|
|
|
LIBEVAL::VALUE* arg = aCtx->Pop();
|
|
|
|
LIBEVAL::VALUE* result = aCtx->AllocValue();
|
|
|
|
|
|
|
|
result->Set( 0.0 );
|
|
|
|
aCtx->Push( result );
|
|
|
|
|
2023-06-18 19:27:54 +00:00
|
|
|
if( !arg || arg->AsString().IsEmpty() )
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
|
|
|
if( aCtx->HasErrorCallback() )
|
2023-04-12 12:53:43 +00:00
|
|
|
aCtx->ReportError( MISSING_GROUP_ARG( wxT( "memberOfGroup()" ) ) );
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_VAR_REF* vref = static_cast<PCBEXPR_VAR_REF*>( self );
|
2024-05-21 23:21:58 +00:00
|
|
|
BOARD_ITEM* item = vref ? vref->GetObject( aCtx ) : nullptr;
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
if( !item )
|
|
|
|
return;
|
|
|
|
|
|
|
|
result->SetDeferredEval(
|
|
|
|
[item, arg]() -> double
|
|
|
|
{
|
|
|
|
PCB_GROUP* group = item->GetParentGroup();
|
|
|
|
|
|
|
|
if( !group && item->GetParent() && item->GetParent()->Type() == PCB_FOOTPRINT_T )
|
|
|
|
group = item->GetParent()->GetParentGroup();
|
|
|
|
|
|
|
|
while( group )
|
|
|
|
{
|
|
|
|
if( group->GetName().Matches( arg->AsString() ) )
|
|
|
|
return 1.0;
|
|
|
|
|
|
|
|
group = group->GetParentGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0.0;
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-08-21 20:33:12 +00:00
|
|
|
#define MISSING_SHEET_ARG( f ) \
|
|
|
|
wxString::Format( _( "Missing sheet name argument to %s." ), f )
|
|
|
|
|
|
|
|
static void memberOfSheetFunc( LIBEVAL::CONTEXT* aCtx, void* self )
|
|
|
|
{
|
|
|
|
LIBEVAL::VALUE* arg = aCtx->Pop();
|
|
|
|
LIBEVAL::VALUE* result = aCtx->AllocValue();
|
|
|
|
|
|
|
|
result->Set( 0.0 );
|
|
|
|
aCtx->Push( result );
|
|
|
|
|
|
|
|
if( !arg || arg->AsString().IsEmpty() )
|
|
|
|
{
|
|
|
|
if( aCtx->HasErrorCallback() )
|
|
|
|
aCtx->ReportError( MISSING_SHEET_ARG( wxT( "memberOfSheet()" ) ) );
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
PCBEXPR_VAR_REF* vref = static_cast<PCBEXPR_VAR_REF*>( self );
|
2024-05-21 23:21:58 +00:00
|
|
|
BOARD_ITEM* item = vref ? vref->GetObject( aCtx ) : nullptr;
|
2023-08-21 20:33:12 +00:00
|
|
|
|
|
|
|
if( !item )
|
|
|
|
return;
|
|
|
|
|
|
|
|
result->SetDeferredEval(
|
|
|
|
[item, arg]() -> double
|
|
|
|
{
|
2024-03-11 20:51:18 +00:00
|
|
|
FOOTPRINT* fp = dyn_cast<FOOTPRINT*>( item );
|
|
|
|
|
|
|
|
if( !fp )
|
|
|
|
fp = item->GetParentFootprint();
|
2023-08-21 20:33:12 +00:00
|
|
|
|
|
|
|
if( !fp )
|
|
|
|
return 0.0;
|
|
|
|
|
|
|
|
if( fp->GetSheetname().Matches( arg->AsString() ) )
|
|
|
|
return 1.0;
|
|
|
|
|
|
|
|
if( ( arg->AsString().Matches( wxT( "/" ) ) || arg->AsString().IsEmpty() )
|
2024-03-11 20:51:18 +00:00
|
|
|
&& fp->GetSheetname() == wxT( "Root" ) )
|
2023-08-21 20:33:12 +00:00
|
|
|
{
|
|
|
|
return 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0.0;
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-04-12 12:53:43 +00:00
|
|
|
#define MISSING_REF_ARG( f ) \
|
|
|
|
wxString::Format( _( "Missing footprint argument (reference designator) to %s." ), f )
|
|
|
|
|
|
|
|
static void memberOfFootprintFunc( LIBEVAL::CONTEXT* aCtx, void* self )
|
|
|
|
{
|
|
|
|
LIBEVAL::VALUE* arg = aCtx->Pop();
|
|
|
|
LIBEVAL::VALUE* result = aCtx->AllocValue();
|
|
|
|
|
|
|
|
result->Set( 0.0 );
|
|
|
|
aCtx->Push( result );
|
|
|
|
|
2023-06-18 19:27:54 +00:00
|
|
|
if( !arg || arg->AsString().IsEmpty() )
|
2023-04-12 12:53:43 +00:00
|
|
|
{
|
|
|
|
if( aCtx->HasErrorCallback() )
|
|
|
|
aCtx->ReportError( MISSING_REF_ARG( wxT( "memberOfFootprint()" ) ) );
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_VAR_REF* vref = static_cast<PCBEXPR_VAR_REF*>( self );
|
2024-05-21 23:21:58 +00:00
|
|
|
BOARD_ITEM* item = vref ? vref->GetObject( aCtx ) : nullptr;
|
2023-04-12 12:53:43 +00:00
|
|
|
|
|
|
|
if( !item )
|
|
|
|
return;
|
|
|
|
|
|
|
|
result->SetDeferredEval(
|
|
|
|
[item, arg]() -> double
|
|
|
|
{
|
|
|
|
;
|
|
|
|
|
|
|
|
if( FOOTPRINT* parentFP = item->GetParentFootprint() )
|
|
|
|
{
|
|
|
|
if( parentFP->GetReference().Matches( arg->AsString() ) )
|
|
|
|
return 1.0;
|
2024-01-22 14:02:16 +00:00
|
|
|
|
|
|
|
if( arg->AsString().Contains( ':' )
|
|
|
|
&& parentFP->GetFPIDAsString().Matches( arg->AsString() ) )
|
|
|
|
{
|
|
|
|
return 1.0;
|
|
|
|
}
|
2023-04-12 12:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0.0;
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-11-29 14:18:44 +00:00
|
|
|
static void isMicroVia( LIBEVAL::CONTEXT* aCtx, void* self )
|
|
|
|
{
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_VAR_REF* vref = static_cast<PCBEXPR_VAR_REF*>( self );
|
2024-05-21 23:21:58 +00:00
|
|
|
BOARD_ITEM* item = vref ? vref->GetObject( aCtx ) : nullptr;
|
|
|
|
LIBEVAL::VALUE* result = aCtx->AllocValue();
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
result->Set( 0.0 );
|
|
|
|
aCtx->Push( result );
|
|
|
|
|
2023-06-24 18:54:50 +00:00
|
|
|
if( item && item->Type() == PCB_VIA_T
|
|
|
|
&& static_cast<PCB_VIA*>( item )->GetViaType() == VIATYPE::MICROVIA )
|
|
|
|
{
|
2022-11-29 14:18:44 +00:00
|
|
|
result->Set ( 1.0 );
|
2023-06-24 18:54:50 +00:00
|
|
|
}
|
2022-11-29 14:18:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void isBlindBuriedViaFunc( LIBEVAL::CONTEXT* aCtx, void* self )
|
|
|
|
{
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_VAR_REF* vref = static_cast<PCBEXPR_VAR_REF*>( self );
|
2024-05-21 23:21:58 +00:00
|
|
|
BOARD_ITEM* item = vref ? vref->GetObject( aCtx ) : nullptr;
|
|
|
|
LIBEVAL::VALUE* result = aCtx->AllocValue();
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
result->Set( 0.0 );
|
|
|
|
aCtx->Push( result );
|
|
|
|
|
2023-06-24 18:54:50 +00:00
|
|
|
if( item && item->Type() == PCB_VIA_T
|
2024-02-26 12:38:44 +00:00
|
|
|
&& static_cast<PCB_VIA*>( item )->GetViaType() == VIATYPE::BLIND_BURIED )
|
2023-06-24 18:54:50 +00:00
|
|
|
{
|
2022-11-29 14:18:44 +00:00
|
|
|
result->Set ( 1.0 );
|
2023-06-24 18:54:50 +00:00
|
|
|
}
|
2022-11-29 14:18:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void isCoupledDiffPairFunc( LIBEVAL::CONTEXT* aCtx, void* self )
|
|
|
|
{
|
2024-05-21 23:21:58 +00:00
|
|
|
PCBEXPR_CONTEXT* context = static_cast<PCBEXPR_CONTEXT*>( aCtx );
|
2022-11-29 14:18:44 +00:00
|
|
|
BOARD_CONNECTED_ITEM* a = dynamic_cast<BOARD_CONNECTED_ITEM*>( context->GetItem( 0 ) );
|
|
|
|
BOARD_CONNECTED_ITEM* b = dynamic_cast<BOARD_CONNECTED_ITEM*>( context->GetItem( 1 ) );
|
|
|
|
LIBEVAL::VALUE* result = aCtx->AllocValue();
|
|
|
|
|
|
|
|
result->Set( 0.0 );
|
|
|
|
aCtx->Push( result );
|
|
|
|
|
|
|
|
result->SetDeferredEval(
|
|
|
|
[a, b, context]() -> double
|
|
|
|
{
|
|
|
|
NETINFO_ITEM* netinfo = a ? a->GetNet() : nullptr;
|
|
|
|
|
|
|
|
if( !netinfo )
|
|
|
|
return 0.0;
|
|
|
|
|
|
|
|
wxString coupledNet;
|
|
|
|
wxString dummy;
|
|
|
|
|
|
|
|
if( !DRC_ENGINE::MatchDpSuffix( netinfo->GetNetname(), coupledNet, dummy ) )
|
|
|
|
return 0.0;
|
|
|
|
|
|
|
|
if( context->GetConstraint() == DRC_CONSTRAINT_T::LENGTH_CONSTRAINT
|
|
|
|
|| context->GetConstraint() == DRC_CONSTRAINT_T::SKEW_CONSTRAINT )
|
|
|
|
{
|
|
|
|
// DRC engine evaluates these singly, so we won't have a B item
|
|
|
|
return 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return b && b->GetNetname() == coupledNet;
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define MISSING_DP_ARG( f ) \
|
|
|
|
wxString::Format( _( "Missing diff-pair name argument to %s." ), f )
|
|
|
|
|
|
|
|
static void inDiffPairFunc( LIBEVAL::CONTEXT* aCtx, void* self )
|
|
|
|
{
|
2024-05-21 23:21:58 +00:00
|
|
|
LIBEVAL::VALUE* argv = aCtx->Pop();
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_VAR_REF* vref = static_cast<PCBEXPR_VAR_REF*>( self );
|
2024-05-21 23:21:58 +00:00
|
|
|
BOARD_ITEM* item = vref ? vref->GetObject( aCtx ) : nullptr;
|
|
|
|
LIBEVAL::VALUE* result = aCtx->AllocValue();
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
result->Set( 0.0 );
|
|
|
|
aCtx->Push( result );
|
|
|
|
|
2023-06-18 19:27:54 +00:00
|
|
|
if( !argv || argv->AsString().IsEmpty() )
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
|
|
|
if( aCtx->HasErrorCallback() )
|
|
|
|
aCtx->ReportError( MISSING_DP_ARG( wxT( "inDiffPair()" ) ) );
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !item || !item->GetBoard() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
result->SetDeferredEval(
|
|
|
|
[item, argv]() -> double
|
|
|
|
{
|
|
|
|
if( item && item->IsConnected() )
|
|
|
|
{
|
|
|
|
NETINFO_ITEM* netinfo = static_cast<BOARD_CONNECTED_ITEM*>( item )->GetNet();
|
|
|
|
|
2023-02-18 00:48:55 +00:00
|
|
|
if( !netinfo )
|
|
|
|
return 0.0;
|
|
|
|
|
2022-11-29 14:18:44 +00:00
|
|
|
wxString refName = netinfo->GetNetname();
|
|
|
|
wxString arg = argv->AsString();
|
|
|
|
wxString baseName, coupledNet;
|
|
|
|
int polarity = DRC_ENGINE::MatchDpSuffix( refName, coupledNet, baseName );
|
|
|
|
|
|
|
|
if( polarity != 0 && item->GetBoard()->FindNet( coupledNet ) )
|
|
|
|
{
|
|
|
|
if( baseName.Matches( arg ) )
|
|
|
|
return 1.0;
|
|
|
|
|
|
|
|
if( baseName.EndsWith( "_" ) && baseName.BeforeLast( '_' ).Matches( arg ) )
|
|
|
|
return 1.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0.0;
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void getFieldFunc( LIBEVAL::CONTEXT* aCtx, void* self )
|
|
|
|
{
|
2024-05-21 23:21:58 +00:00
|
|
|
LIBEVAL::VALUE* arg = aCtx->Pop();
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_VAR_REF* vref = static_cast<PCBEXPR_VAR_REF*>( self );
|
2024-05-21 23:21:58 +00:00
|
|
|
BOARD_ITEM* item = vref ? vref->GetObject( aCtx ) : nullptr;
|
|
|
|
LIBEVAL::VALUE* result = aCtx->AllocValue();
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
result->Set( "" );
|
|
|
|
aCtx->Push( result );
|
|
|
|
|
|
|
|
if( !arg )
|
|
|
|
{
|
|
|
|
if( aCtx->HasErrorCallback() )
|
|
|
|
{
|
|
|
|
aCtx->ReportError( wxString::Format( _( "Missing field name argument to %s." ),
|
|
|
|
wxT( "getField()" ) ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !item || !item->GetBoard() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
result->SetDeferredEval(
|
|
|
|
[item, arg]() -> wxString
|
|
|
|
{
|
|
|
|
if( item && item->Type() == PCB_FOOTPRINT_T )
|
|
|
|
{
|
|
|
|
FOOTPRINT* fp = static_cast<FOOTPRINT*>( item );
|
|
|
|
|
2023-05-24 12:39:25 +00:00
|
|
|
PCB_FIELD* field = fp->GetFieldByName( arg->AsString() );
|
|
|
|
|
|
|
|
if( field )
|
|
|
|
return field->GetText();
|
2022-11-29 14:18:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-08-21 14:26:03 +00:00
|
|
|
PCBEXPR_BUILTIN_FUNCTIONS::PCBEXPR_BUILTIN_FUNCTIONS()
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
|
|
|
RegisterAllFunctions();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-08-21 14:26:03 +00:00
|
|
|
void PCBEXPR_BUILTIN_FUNCTIONS::RegisterAllFunctions()
|
2022-11-29 14:18:44 +00:00
|
|
|
{
|
|
|
|
m_funcs.clear();
|
|
|
|
|
|
|
|
RegisterFunc( wxT( "existsOnLayer('x')" ), existsOnLayerFunc );
|
|
|
|
|
|
|
|
RegisterFunc( wxT( "isPlated()" ), isPlatedFunc );
|
|
|
|
|
|
|
|
RegisterFunc( wxT( "insideCourtyard('x') DEPRECATED" ), intersectsCourtyardFunc );
|
|
|
|
RegisterFunc( wxT( "insideFrontCourtyard('x') DEPRECATED" ), intersectsFrontCourtyardFunc );
|
|
|
|
RegisterFunc( wxT( "insideBackCourtyard('x') DEPRECATED" ), intersectsBackCourtyardFunc );
|
|
|
|
RegisterFunc( wxT( "intersectsCourtyard('x')" ), intersectsCourtyardFunc );
|
|
|
|
RegisterFunc( wxT( "intersectsFrontCourtyard('x')" ), intersectsFrontCourtyardFunc );
|
|
|
|
RegisterFunc( wxT( "intersectsBackCourtyard('x')" ), intersectsBackCourtyardFunc );
|
|
|
|
|
|
|
|
RegisterFunc( wxT( "insideArea('x') DEPRECATED" ), intersectsAreaFunc );
|
|
|
|
RegisterFunc( wxT( "intersectsArea('x')" ), intersectsAreaFunc );
|
|
|
|
RegisterFunc( wxT( "enclosedByArea('x')" ), enclosedByAreaFunc );
|
|
|
|
|
|
|
|
RegisterFunc( wxT( "isMicroVia()" ), isMicroVia );
|
|
|
|
RegisterFunc( wxT( "isBlindBuriedVia()" ), isBlindBuriedViaFunc );
|
|
|
|
|
2023-04-12 12:53:43 +00:00
|
|
|
RegisterFunc( wxT( "memberOf('x') DEPRECATED" ), memberOfGroupFunc );
|
|
|
|
RegisterFunc( wxT( "memberOfGroup('x')" ), memberOfGroupFunc );
|
|
|
|
RegisterFunc( wxT( "memberOfFootprint('x')" ), memberOfFootprintFunc );
|
2023-08-21 20:33:12 +00:00
|
|
|
RegisterFunc( wxT( "memberOfSheet('x')" ), memberOfSheetFunc );
|
2022-11-29 14:18:44 +00:00
|
|
|
|
|
|
|
RegisterFunc( wxT( "fromTo('x','y')" ), fromToFunc );
|
|
|
|
RegisterFunc( wxT( "isCoupledDiffPair()" ), isCoupledDiffPairFunc );
|
|
|
|
RegisterFunc( wxT( "inDiffPair('x')" ), inDiffPairFunc );
|
|
|
|
|
|
|
|
RegisterFunc( wxT( "getField('x')" ), getFieldFunc );
|
|
|
|
}
|
|
|
|
|
|
|
|
|