7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 23:35:31 +00:00

API: Clear footprint caches when making changes

This commit is contained in:
Jon Evans 2025-03-29 16:47:13 -04:00
parent 313cc15fd3
commit 31f3c44520
3 changed files with 24 additions and 0 deletions

View File

@ -478,6 +478,16 @@ HANDLER_RESULT<ItemRequestStatus> API_HANDLER_PCB::handleCreateUpdateItemsIntern
{
BOARD_ITEM* boardItem = *optItem;
commit->Modify( boardItem );
// Normally this is done by the footprint methods SetPosition, SetOrientation, etc
// Since the API is just using the assignment operator, we need to wipe out all the
// caches so that they will be rebuilt with any changes to the geometry made by the API
if( boardItem->Type() == PCB_FOOTPRINT_T )
{
auto boardFp = static_cast<FOOTPRINT*>( boardItem );
boardFp->InvalidateGeometryCaches();
}
boardItem->CopyFrom( item.get() );
boardItem->Serialize( newItem );
}

View File

@ -955,6 +955,17 @@ void FOOTPRINT::CopyFrom( const BOARD_ITEM* aOther )
}
void FOOTPRINT::InvalidateGeometryCaches()
{
m_boundingBoxCacheTimeStamp = 0;
m_textExcludedBBoxCacheTimeStamp = 0;
m_hullCacheTimeStamp = 0;
m_courtyard_cache_back_hash.Clear();
m_courtyard_cache_front_hash.Clear();
}
bool FOOTPRINT::IsConflicting() const
{
return HasFlag( COURTYARD_CONFLICT );

View File

@ -145,6 +145,9 @@ public:
return aItem && aItem->Type() == PCB_FOOTPRINT_T;
}
/// Resets the caches for this footprint, for example if it was modified via the API
void InvalidateGeometryCaches();
LSET GetPrivateLayers() const { return m_privateLayers; }
void SetPrivateLayers( const LSET& aLayers ) { m_privateLayers = aLayers; }