2018-10-12 21:29:16 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KICAD, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013-2017 CERN
|
2021-01-27 22:15:38 +00:00
|
|
|
* Copyright (C) 2018-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2018-10-12 21:29:16 +00:00
|
|
|
*
|
|
|
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
|
|
|
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
#ifndef PCBNEW_CONNECTIVITY_ITEMS_H
|
|
|
|
#define PCBNEW_CONNECTIVITY_ITEMS_H
|
2018-10-12 21:29:16 +00:00
|
|
|
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <board.h>
|
|
|
|
#include <pad.h>
|
|
|
|
#include <footprint.h>
|
2021-06-11 21:07:02 +00:00
|
|
|
#include <pcb_track.h>
|
2020-11-11 23:05:59 +00:00
|
|
|
#include <zone.h>
|
2018-10-12 21:29:16 +00:00
|
|
|
|
|
|
|
#include <geometry/shape_poly_set.h>
|
|
|
|
#include <geometry/poly_grid_partition.h>
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <functional>
|
|
|
|
#include <vector>
|
|
|
|
#include <deque>
|
|
|
|
#include <intrusive_list.h>
|
|
|
|
|
|
|
|
#include <connectivity/connectivity_rtree.h>
|
|
|
|
#include <connectivity/connectivity_data.h>
|
|
|
|
|
|
|
|
class CN_ITEM;
|
|
|
|
class CN_CLUSTER;
|
|
|
|
|
|
|
|
class CN_ANCHOR
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CN_ANCHOR()
|
|
|
|
{
|
|
|
|
m_item = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
CN_ANCHOR( const VECTOR2I& aPos, CN_ITEM* aItem )
|
|
|
|
{
|
|
|
|
m_pos = aPos;
|
|
|
|
m_item = aItem;
|
|
|
|
assert( m_item );
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Valid() const;
|
|
|
|
|
|
|
|
CN_ITEM* Item() const
|
|
|
|
{
|
|
|
|
return m_item;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOARD_CONNECTED_ITEM* Parent() const;
|
|
|
|
|
|
|
|
const VECTOR2I& Pos() const
|
|
|
|
{
|
|
|
|
return m_pos;
|
|
|
|
}
|
|
|
|
|
2020-08-15 00:33:27 +00:00
|
|
|
void Move( const VECTOR2I& aPos )
|
|
|
|
{
|
|
|
|
m_pos += aPos;
|
|
|
|
}
|
|
|
|
|
2020-06-18 02:25:46 +00:00
|
|
|
const unsigned int Dist( const CN_ANCHOR& aSecond )
|
|
|
|
{
|
|
|
|
return ( m_pos - aSecond.Pos() ).EuclideanNorm();
|
|
|
|
}
|
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Return tag, common identifier for connected nodes.
|
2018-10-12 21:29:16 +00:00
|
|
|
inline int GetTag() const
|
|
|
|
{
|
|
|
|
return m_tag;
|
|
|
|
}
|
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Set tag, common identifier for connected nodes.
|
2018-10-12 21:29:16 +00:00
|
|
|
inline void SetTag( int aTag )
|
|
|
|
{
|
|
|
|
m_tag = aTag;
|
|
|
|
}
|
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Decide whether this node can be a ratsnest line target.
|
2018-10-12 21:29:16 +00:00
|
|
|
inline void SetNoLine( bool aEnable )
|
|
|
|
{
|
|
|
|
m_noline = aEnable;
|
|
|
|
}
|
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Return true if this node can be a target for ratsnest lines.
|
2018-10-12 21:29:16 +00:00
|
|
|
inline const bool& GetNoLine() const
|
|
|
|
{
|
|
|
|
return m_noline;
|
|
|
|
}
|
|
|
|
|
2021-06-08 17:47:06 +00:00
|
|
|
inline void SetCluster( std::shared_ptr<CN_CLUSTER>& aCluster )
|
2018-10-12 21:29:16 +00:00
|
|
|
{
|
|
|
|
m_cluster = aCluster;
|
|
|
|
}
|
|
|
|
|
2019-10-04 18:38:10 +00:00
|
|
|
inline const std::shared_ptr<CN_CLUSTER>& GetCluster() const
|
2018-10-12 21:29:16 +00:00
|
|
|
{
|
|
|
|
return m_cluster;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* The anchor point is dangling if the parent is a track and this anchor point is not
|
2021-06-08 17:47:06 +00:00
|
|
|
* connected to another item ( track, vias pad or zone) or if the parent is a via and
|
2021-01-27 22:15:38 +00:00
|
|
|
* this anchor point is connected to only one track and not to another item.
|
|
|
|
*
|
|
|
|
* @return true if this anchor is dangling.
|
2018-10-12 21:29:16 +00:00
|
|
|
*/
|
|
|
|
bool IsDangling() const;
|
|
|
|
|
2019-06-28 18:23:09 +00:00
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* @return the count of tracks and vias connected to this anchor.
|
2019-06-28 18:23:09 +00:00
|
|
|
*/
|
|
|
|
int ConnectedItemsCount() const;
|
|
|
|
|
2018-10-12 21:29:16 +00:00
|
|
|
// Tag used for unconnected items.
|
|
|
|
static const int TAG_UNCONNECTED = -1;
|
|
|
|
|
|
|
|
private:
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Position of the anchor.
|
2018-10-12 21:29:16 +00:00
|
|
|
VECTOR2I m_pos;
|
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Item owning the anchor.
|
2018-10-12 21:29:16 +00:00
|
|
|
CN_ITEM* m_item = nullptr;
|
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Tag for quick connection resolution.
|
2018-10-12 21:29:16 +00:00
|
|
|
int m_tag = -1;
|
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Whether it the node can be a target for ratsnest lines.
|
2018-10-12 21:29:16 +00:00
|
|
|
bool m_noline = false;
|
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Cluster to which the anchor belongs.
|
2018-10-12 21:29:16 +00:00
|
|
|
std::shared_ptr<CN_CLUSTER> m_cluster;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef std::shared_ptr<CN_ANCHOR> CN_ANCHOR_PTR;
|
|
|
|
typedef std::vector<CN_ANCHOR_PTR> CN_ANCHORS;
|
|
|
|
|
|
|
|
|
|
|
|
// basic connectivity item
|
2020-07-27 16:33:01 +00:00
|
|
|
class CN_ITEM
|
2018-10-12 21:29:16 +00:00
|
|
|
{
|
2018-11-27 05:04:14 +00:00
|
|
|
public:
|
2019-10-04 18:38:10 +00:00
|
|
|
using CONNECTED_ITEMS = std::vector<CN_ITEM*>;
|
2018-11-27 05:04:14 +00:00
|
|
|
|
2018-10-12 21:29:16 +00:00
|
|
|
void Dump();
|
|
|
|
|
|
|
|
CN_ITEM( BOARD_CONNECTED_ITEM* aParent, bool aCanChangeNet, int aAnchorCount = 2 )
|
|
|
|
{
|
|
|
|
m_parent = aParent;
|
|
|
|
m_canChangeNet = aCanChangeNet;
|
|
|
|
m_visited = false;
|
|
|
|
m_valid = true;
|
|
|
|
m_dirty = true;
|
2019-10-04 18:38:10 +00:00
|
|
|
m_anchors.reserve( std::max( 6, aAnchorCount ) );
|
2018-10-12 21:29:16 +00:00
|
|
|
m_layers = LAYER_RANGE( 0, PCB_LAYER_ID_COUNT );
|
2019-10-04 18:38:10 +00:00
|
|
|
m_connected.reserve( 8 );
|
2018-10-12 21:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~CN_ITEM() {};
|
|
|
|
|
|
|
|
void AddAnchor( const VECTOR2I& aPos )
|
|
|
|
{
|
2019-10-04 18:38:10 +00:00
|
|
|
m_anchors.emplace_back( std::make_shared<CN_ANCHOR>( aPos, this ) );
|
2018-10-12 21:29:16 +00:00
|
|
|
}
|
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
CN_ANCHORS& Anchors() { return m_anchors; }
|
2018-10-12 21:29:16 +00:00
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
void SetValid( bool aValid ) { m_valid = aValid; }
|
|
|
|
bool Valid() const { return m_valid; }
|
2018-10-12 21:29:16 +00:00
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
void SetDirty( bool aDirty ) { m_dirty = aDirty; }
|
|
|
|
bool Dirty() const { return m_dirty; }
|
2018-10-12 21:29:16 +00:00
|
|
|
|
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Set the layers spanned by the item to aLayers.
|
2018-10-12 21:29:16 +00:00
|
|
|
*/
|
|
|
|
void SetLayers( const LAYER_RANGE& aLayers )
|
|
|
|
{
|
|
|
|
m_layers = aLayers;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Set the layers spanned by the item to a single layer aLayer.
|
2018-10-12 21:29:16 +00:00
|
|
|
*/
|
|
|
|
void SetLayer( int aLayer )
|
|
|
|
{
|
|
|
|
m_layers = LAYER_RANGE( aLayer, aLayer );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Return the contiguous set of layers spanned by the item.
|
2018-10-12 21:29:16 +00:00
|
|
|
*/
|
|
|
|
const LAYER_RANGE& Layers() const
|
|
|
|
{
|
|
|
|
return m_layers;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Return the item's layer, for single-layered items only.
|
2018-10-12 21:29:16 +00:00
|
|
|
*/
|
|
|
|
virtual int Layer() const
|
|
|
|
{
|
|
|
|
return Layers().Start();
|
|
|
|
}
|
|
|
|
|
|
|
|
const BOX2I& BBox()
|
|
|
|
{
|
|
|
|
if( m_dirty && m_valid )
|
|
|
|
{
|
|
|
|
EDA_RECT box = m_parent->GetBoundingBox();
|
|
|
|
m_bbox = BOX2I( box.GetPosition(), box.GetSize() );
|
|
|
|
}
|
|
|
|
return m_bbox;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOARD_CONNECTED_ITEM* Parent() const
|
|
|
|
{
|
|
|
|
return m_parent;
|
|
|
|
}
|
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
const CONNECTED_ITEMS& ConnectedItems() const { return m_connected; }
|
|
|
|
void ClearConnections() { m_connected.clear(); }
|
2018-10-12 21:29:16 +00:00
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
void SetVisited( bool aVisited ) { m_visited = aVisited; }
|
|
|
|
bool Visited() const { return m_visited; }
|
2018-10-12 21:29:16 +00:00
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
bool CanChangeNet() const { return m_canChangeNet; }
|
2018-10-12 21:29:16 +00:00
|
|
|
|
2018-10-13 00:06:10 +00:00
|
|
|
void Connect( CN_ITEM* b )
|
2018-10-12 21:29:16 +00:00
|
|
|
{
|
2018-10-13 00:06:10 +00:00
|
|
|
std::lock_guard<std::mutex> lock( m_listLock );
|
2019-10-04 18:38:10 +00:00
|
|
|
|
|
|
|
auto i = std::lower_bound( m_connected.begin(), m_connected.end(), b );
|
|
|
|
|
|
|
|
if( i != m_connected.end() && *i == b )
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_connected.insert( i, b );
|
2018-10-12 21:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RemoveInvalidRefs();
|
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
virtual int AnchorCount() const;
|
|
|
|
virtual const VECTOR2I GetAnchor( int n ) const;
|
2018-10-12 21:29:16 +00:00
|
|
|
|
2020-04-12 18:59:13 +00:00
|
|
|
int Net() const
|
|
|
|
{
|
|
|
|
return ( !m_parent || !m_valid ) ? -1 : m_parent->GetNetCode();
|
|
|
|
}
|
2021-01-27 22:15:38 +00:00
|
|
|
///< allow parallel connection threads
|
|
|
|
protected:
|
|
|
|
bool m_dirty; ///< used to identify recently added item not yet
|
|
|
|
///< scanned into the connectivity search
|
|
|
|
LAYER_RANGE m_layers; ///< layer range over which the item exists
|
|
|
|
BOX2I m_bbox; ///< bounding box for the item
|
|
|
|
|
|
|
|
private:
|
|
|
|
BOARD_CONNECTED_ITEM* m_parent;
|
|
|
|
|
|
|
|
CONNECTED_ITEMS m_connected; ///< list of items physically connected (touching)
|
|
|
|
CN_ANCHORS m_anchors;
|
|
|
|
|
|
|
|
bool m_canChangeNet; ///< can the net propagator modify the netcode?
|
|
|
|
|
|
|
|
bool m_visited; ///< visited flag for the BFS scan
|
|
|
|
bool m_valid; ///< used to identify garbage items (we use lazy removal)
|
|
|
|
|
|
|
|
std::mutex m_listLock; ///< mutex protecting this item's connected_items set to
|
2018-10-12 21:29:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::shared_ptr<CN_ITEM> CN_ITEM_PTR;
|
|
|
|
|
2020-09-23 19:02:21 +00:00
|
|
|
class CN_ZONE_LAYER : public CN_ITEM
|
2018-10-12 21:29:16 +00:00
|
|
|
{
|
|
|
|
public:
|
2020-11-11 23:05:59 +00:00
|
|
|
CN_ZONE_LAYER( ZONE* aParent, PCB_LAYER_ID aLayer, bool aCanChangeNet, int aSubpolyIndex ) :
|
2020-11-14 18:11:28 +00:00
|
|
|
CN_ITEM( aParent, aCanChangeNet ),
|
|
|
|
m_subpolyIndex( aSubpolyIndex ),
|
|
|
|
m_layer( aLayer )
|
2018-10-12 21:29:16 +00:00
|
|
|
{
|
2020-06-24 02:19:08 +00:00
|
|
|
SHAPE_LINE_CHAIN outline = aParent->GetFilledPolysList( aLayer ).COutline( aSubpolyIndex );
|
2018-10-12 21:29:16 +00:00
|
|
|
|
|
|
|
outline.SetClosed( true );
|
|
|
|
outline.Simplify();
|
|
|
|
|
2019-12-05 13:43:55 +00:00
|
|
|
m_cachedPoly = std::make_unique<POLY_GRID_PARTITION>( outline, 16 );
|
2018-10-12 21:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int SubpolyIndex() const
|
|
|
|
{
|
|
|
|
return m_subpolyIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ContainsAnchor( const CN_ANCHOR_PTR anchor ) const
|
|
|
|
{
|
2020-08-05 22:39:54 +00:00
|
|
|
return ContainsPoint( anchor->Pos(), 0 );
|
2018-10-12 21:29:16 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 17:47:06 +00:00
|
|
|
bool ContainsPoint( const VECTOR2I& p, int aAccuracy = 0 ) const
|
2018-10-12 21:29:16 +00:00
|
|
|
{
|
2020-11-14 18:11:28 +00:00
|
|
|
ZONE* zone = static_cast<ZONE*>( Parent() );
|
2020-08-10 21:46:34 +00:00
|
|
|
int clearance = aAccuracy;
|
2020-08-07 22:57:59 +00:00
|
|
|
|
|
|
|
if( zone->GetFilledPolysUseThickness() )
|
|
|
|
clearance += ( zone->GetMinThickness() + 1 ) / 2;
|
|
|
|
|
|
|
|
return m_cachedPoly->ContainsPoint( p, clearance );
|
2018-10-12 21:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const BOX2I& BBox()
|
|
|
|
{
|
|
|
|
if( m_dirty )
|
|
|
|
m_bbox = m_cachedPoly->BBox();
|
|
|
|
|
|
|
|
return m_bbox;
|
|
|
|
}
|
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
virtual int AnchorCount() const override;
|
|
|
|
virtual const VECTOR2I GetAnchor( int n ) const override;
|
2018-10-12 21:29:16 +00:00
|
|
|
|
|
|
|
private:
|
2020-11-14 18:11:28 +00:00
|
|
|
std::vector<VECTOR2I> m_testOutlinePoints;
|
2018-10-12 21:29:16 +00:00
|
|
|
std::unique_ptr<POLY_GRID_PARTITION> m_cachedPoly;
|
2020-11-14 18:11:28 +00:00
|
|
|
int m_subpolyIndex;
|
|
|
|
PCB_LAYER_ID m_layer;
|
2018-10-12 21:29:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class CN_LIST
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
std::vector<CN_ITEM*> m_items;
|
|
|
|
|
|
|
|
void addItemtoTree( CN_ITEM* item )
|
|
|
|
{
|
|
|
|
m_index.Insert( item );
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
CN_LIST()
|
|
|
|
{
|
|
|
|
m_dirty = false;
|
|
|
|
m_hasInvalid = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Clear()
|
|
|
|
{
|
|
|
|
for( auto item : m_items )
|
|
|
|
delete item;
|
|
|
|
|
|
|
|
m_items.clear();
|
|
|
|
m_index.RemoveAll();
|
|
|
|
}
|
|
|
|
|
2020-04-12 19:10:57 +00:00
|
|
|
using ITER = decltype( m_items )::iterator;
|
|
|
|
using CONST_ITER = decltype( m_items )::const_iterator;
|
2018-10-12 21:29:16 +00:00
|
|
|
|
|
|
|
ITER begin() { return m_items.begin(); };
|
|
|
|
ITER end() { return m_items.end(); };
|
|
|
|
|
2020-04-12 19:10:57 +00:00
|
|
|
CONST_ITER begin() const
|
|
|
|
{
|
|
|
|
return m_items.begin();
|
|
|
|
}
|
2020-04-21 06:31:44 +00:00
|
|
|
|
2020-04-12 19:10:57 +00:00
|
|
|
CONST_ITER end() const
|
|
|
|
{
|
|
|
|
return m_items.end();
|
|
|
|
}
|
|
|
|
|
2018-10-12 21:29:16 +00:00
|
|
|
CN_ITEM* operator[] ( int aIndex ) { return m_items[aIndex]; }
|
|
|
|
|
|
|
|
template <class T>
|
2021-06-08 17:47:06 +00:00
|
|
|
void FindNearby( CN_ITEM* aItem, T aFunc )
|
2018-10-12 06:47:33 +00:00
|
|
|
{
|
|
|
|
m_index.Query( aItem->BBox(), aItem->Layers(), aFunc );
|
|
|
|
}
|
2018-10-12 21:29:16 +00:00
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
void SetHasInvalid( bool aInvalid = true ) { m_hasInvalid = aInvalid; }
|
2018-10-12 21:29:16 +00:00
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
void SetDirty( bool aDirty = true ) { m_dirty = aDirty; }
|
|
|
|
bool IsDirty() const { return m_dirty; }
|
2018-10-12 21:29:16 +00:00
|
|
|
|
|
|
|
void RemoveInvalidItems( std::vector<CN_ITEM*>& aGarbage );
|
|
|
|
|
|
|
|
void ClearDirtyFlags()
|
|
|
|
{
|
|
|
|
for( auto item : m_items )
|
|
|
|
item->SetDirty( false );
|
|
|
|
|
|
|
|
SetDirty( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
void MarkAllAsDirty()
|
|
|
|
{
|
|
|
|
for( auto item : m_items )
|
|
|
|
item->SetDirty( true );
|
|
|
|
|
|
|
|
SetDirty( true );
|
|
|
|
}
|
|
|
|
|
|
|
|
int Size() const
|
|
|
|
{
|
|
|
|
return m_items.size();
|
|
|
|
}
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
CN_ITEM* Add( PAD* pad );
|
2018-10-12 21:29:16 +00:00
|
|
|
|
2021-06-11 21:07:02 +00:00
|
|
|
CN_ITEM* Add( PCB_TRACK* track );
|
2018-10-12 21:29:16 +00:00
|
|
|
|
2021-06-11 21:07:02 +00:00
|
|
|
CN_ITEM* Add( PCB_ARC* track );
|
2019-05-17 00:13:21 +00:00
|
|
|
|
2021-06-11 21:07:02 +00:00
|
|
|
CN_ITEM* Add( PCB_VIA* via );
|
2018-10-12 21:29:16 +00:00
|
|
|
|
2020-11-11 23:05:59 +00:00
|
|
|
const std::vector<CN_ITEM*> Add( ZONE* zone, PCB_LAYER_ID aLayer );
|
2021-01-27 22:15:38 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool m_dirty;
|
|
|
|
bool m_hasInvalid;
|
|
|
|
|
|
|
|
CN_RTREE<CN_ITEM*> m_index;
|
2018-10-12 21:29:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class CN_CLUSTER
|
|
|
|
{
|
|
|
|
private:
|
2021-03-21 19:31:15 +00:00
|
|
|
bool m_conflicting;
|
|
|
|
int m_originNet;
|
|
|
|
CN_ITEM* m_originPad;
|
|
|
|
std::vector<CN_ITEM*> m_items;
|
|
|
|
std::unordered_map<int, int> m_netRanks;
|
2018-10-12 21:29:16 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
CN_CLUSTER();
|
|
|
|
~CN_CLUSTER();
|
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
bool HasValidNet() const { return m_originNet > 0; }
|
|
|
|
int OriginNet() const { return m_originNet; }
|
2018-10-12 21:29:16 +00:00
|
|
|
|
|
|
|
wxString OriginNetName() const;
|
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
bool Contains( const CN_ITEM* aItem );
|
|
|
|
bool Contains( const BOARD_CONNECTED_ITEM* aItem );
|
|
|
|
void Dump();
|
2018-10-12 21:29:16 +00:00
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
int Size() const { return m_items.size(); }
|
2018-10-12 21:29:16 +00:00
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
bool IsOrphaned() const { return m_originPad == nullptr; }
|
2018-10-12 21:29:16 +00:00
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
bool IsConflicting() const { return m_conflicting; }
|
2018-10-12 21:29:16 +00:00
|
|
|
|
|
|
|
void Add( CN_ITEM* item );
|
|
|
|
|
|
|
|
using ITER = decltype(m_items)::iterator;
|
|
|
|
|
|
|
|
ITER begin() { return m_items.begin(); };
|
|
|
|
ITER end() { return m_items.end(); };
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::shared_ptr<CN_CLUSTER> CN_CLUSTER_PTR;
|
|
|
|
|
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
#endif /* PCBNEW_CONNECTIVITY_ITEMS_H */
|