2013-09-18 17:55:16 +00:00
|
|
|
/*
|
|
|
|
* KiRouter - a push-and-(sometimes-)shove PCB router
|
|
|
|
*
|
2014-05-14 13:53:54 +00:00
|
|
|
* Copyright (C) 2013-2014 CERN
|
2013-09-18 17:55:16 +00:00
|
|
|
* Author: Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
2013-09-26 21:53:54 +00:00
|
|
|
*
|
2013-09-18 17:55:16 +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 3 of the License, or (at your
|
|
|
|
* option) any later version.
|
2013-09-26 21:53:54 +00:00
|
|
|
*
|
2013-09-18 17:55:16 +00:00
|
|
|
* 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.
|
2013-09-26 21:53:54 +00:00
|
|
|
*
|
2013-09-18 17:55:16 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
2014-05-14 13:53:54 +00:00
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
2013-09-18 17:55:16 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PNS_JOINT_H
|
|
|
|
#define __PNS_JOINT_H
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <boost/functional/hash.hpp>
|
|
|
|
|
|
|
|
#include <math/vector2d.h>
|
|
|
|
|
|
|
|
#include "pns_item.h"
|
|
|
|
#include "pns_segment.h"
|
2014-11-14 18:15:58 +00:00
|
|
|
#include "pns_itemset.h"
|
2013-09-18 17:55:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class PNS_JOINT
|
2013-09-26 21:53:54 +00:00
|
|
|
*
|
2013-10-14 11:43:57 +00:00
|
|
|
* Represents a 2D point on a given set of layers and belonging to a certain
|
2013-09-26 21:53:54 +00:00
|
|
|
* net, that links together a number of board items.
|
2013-10-14 11:43:57 +00:00
|
|
|
* A hash table of joints is used by the router to follow connectivity between
|
2013-09-26 21:53:54 +00:00
|
|
|
* the items.
|
2013-09-18 17:55:16 +00:00
|
|
|
**/
|
|
|
|
class PNS_JOINT : public PNS_ITEM
|
|
|
|
{
|
|
|
|
public:
|
2015-02-18 00:29:54 +00:00
|
|
|
typedef std::deque<PNS_ITEM*> LINKED_ITEMS;
|
2013-09-26 21:53:54 +00:00
|
|
|
|
|
|
|
///> Joints are hashed by their position, layers and net.
|
|
|
|
/// Linked items are, obviously, not hashed
|
2014-05-16 11:37:31 +00:00
|
|
|
struct HASH_TAG
|
2013-09-26 21:53:54 +00:00
|
|
|
{
|
|
|
|
VECTOR2I pos;
|
|
|
|
int net;
|
|
|
|
};
|
|
|
|
|
|
|
|
PNS_JOINT() :
|
2015-08-03 19:11:51 +00:00
|
|
|
PNS_ITEM( JOINT ), m_locked( false ) {}
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2014-05-16 11:37:31 +00:00
|
|
|
PNS_JOINT( const VECTOR2I& aPos, const PNS_LAYERSET& aLayers, int aNet = -1 ) :
|
2013-09-26 21:53:54 +00:00
|
|
|
PNS_ITEM( JOINT )
|
|
|
|
{
|
|
|
|
m_tag.pos = aPos;
|
|
|
|
m_tag.net = aNet;
|
|
|
|
m_layers = aLayers;
|
2015-08-03 19:11:51 +00:00
|
|
|
m_locked = false;
|
2013-09-26 21:53:54 +00:00
|
|
|
}
|
|
|
|
|
2014-05-16 11:37:31 +00:00
|
|
|
PNS_JOINT( const PNS_JOINT& aB ) :
|
2013-09-26 21:53:54 +00:00
|
|
|
PNS_ITEM( JOINT )
|
|
|
|
{
|
2014-05-16 11:37:31 +00:00
|
|
|
m_layers = aB.m_layers;
|
|
|
|
m_tag.pos = aB.m_tag.pos;
|
|
|
|
m_tag.net = aB.m_tag.net;
|
|
|
|
m_linkedItems = aB.m_linkedItems;
|
|
|
|
m_layers = aB.m_layers;
|
2015-08-03 19:11:51 +00:00
|
|
|
m_locked = false;
|
2013-09-26 21:53:54 +00:00
|
|
|
}
|
|
|
|
|
2014-11-14 19:19:00 +00:00
|
|
|
PNS_ITEM* Clone( ) const
|
2013-09-26 21:53:54 +00:00
|
|
|
{
|
|
|
|
assert( false );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-10-14 11:43:57 +00:00
|
|
|
///> Returns true if the joint is a trivial line corner, connecting two
|
2013-09-26 21:53:54 +00:00
|
|
|
/// segments of the same net, on the same layer.
|
|
|
|
bool IsLineCorner() const
|
|
|
|
{
|
2015-08-03 19:11:51 +00:00
|
|
|
if( m_locked )
|
|
|
|
return false;
|
|
|
|
|
2014-11-14 18:15:58 +00:00
|
|
|
if( m_linkedItems.Size() != 2 )
|
2013-09-26 21:53:54 +00:00
|
|
|
return false;
|
|
|
|
|
2014-05-16 11:37:31 +00:00
|
|
|
if( m_linkedItems[0]->Kind() != SEGMENT || m_linkedItems[1]->Kind() != SEGMENT )
|
2013-09-26 21:53:54 +00:00
|
|
|
return false;
|
|
|
|
|
2013-10-14 14:13:35 +00:00
|
|
|
PNS_SEGMENT* seg1 = static_cast<PNS_SEGMENT*>( m_linkedItems[0] );
|
|
|
|
PNS_SEGMENT* seg2 = static_cast<PNS_SEGMENT*>( m_linkedItems[1] );
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2014-05-14 13:53:54 +00:00
|
|
|
// joints between segments of different widths are not considered trivial.
|
|
|
|
return seg1->Width() == seg2->Width();
|
2013-09-26 21:53:54 +00:00
|
|
|
}
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
bool IsNonFanoutVia() const
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
2015-02-18 16:53:46 +00:00
|
|
|
if( m_linkedItems.Size() != 3 )
|
2015-02-18 00:29:54 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
int vias = 0, segs = 0;
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
for( int i = 0; i < 3; i++ )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
|
|
|
vias += m_linkedItems[i]->Kind() == VIA ? 1 : 0;
|
|
|
|
segs += m_linkedItems[i]->Kind() == SEGMENT ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
return ( vias == 1 && segs == 2 );
|
2015-02-18 00:29:54 +00:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
///> Links the joint to a given board item (when it's added to the PNS_NODE)
|
|
|
|
void Link( PNS_ITEM* aItem )
|
|
|
|
{
|
2014-11-14 19:19:00 +00:00
|
|
|
if( m_linkedItems.Contains( aItem ) )
|
2013-09-26 21:53:54 +00:00
|
|
|
return;
|
|
|
|
|
2014-11-14 19:19:00 +00:00
|
|
|
m_linkedItems.Add( aItem );
|
2013-09-26 21:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
///> Unlinks a given board item from the joint (upon its removal from a PNS_NODE)
|
|
|
|
///> Returns true if the joint became dangling after unlinking.
|
|
|
|
bool Unlink( PNS_ITEM* aItem )
|
|
|
|
{
|
2014-11-14 19:19:00 +00:00
|
|
|
m_linkedItems.Erase( aItem );
|
2014-11-14 18:15:58 +00:00
|
|
|
return m_linkedItems.Size() == 0;
|
2013-09-26 21:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
///> For trivial joints, returns the segment adjacent to (aCurrent). For non-trival ones, returns
|
|
|
|
///> NULL, indicating the end of line.
|
|
|
|
PNS_SEGMENT* NextSegment( PNS_SEGMENT* aCurrent ) const
|
|
|
|
{
|
|
|
|
if( !IsLineCorner() )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return static_cast<PNS_SEGMENT*>( m_linkedItems[m_linkedItems[0] == aCurrent ? 1 : 0] );
|
|
|
|
}
|
|
|
|
|
2015-08-03 19:11:51 +00:00
|
|
|
PNS_VIA* Via()
|
|
|
|
{
|
|
|
|
BOOST_FOREACH( PNS_ITEM* item, m_linkedItems.Items() )
|
|
|
|
{
|
|
|
|
if( item->OfKind( VIA ) )
|
|
|
|
return static_cast<PNS_VIA*>( item );
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-05-14 13:53:54 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
/// trivial accessors
|
2014-11-14 19:19:00 +00:00
|
|
|
const HASH_TAG& Tag() const
|
|
|
|
{
|
|
|
|
return m_tag;
|
2014-05-14 13:53:54 +00:00
|
|
|
}
|
2014-11-14 19:19:00 +00:00
|
|
|
|
|
|
|
const VECTOR2I& Pos() const
|
|
|
|
{
|
|
|
|
return m_tag.pos;
|
2014-05-14 13:53:54 +00:00
|
|
|
}
|
2014-11-14 19:19:00 +00:00
|
|
|
|
|
|
|
int Net() const
|
|
|
|
{
|
|
|
|
return m_tag.net;
|
2014-05-14 13:53:54 +00:00
|
|
|
}
|
2014-11-14 19:19:00 +00:00
|
|
|
|
2014-11-14 18:15:58 +00:00
|
|
|
const LINKED_ITEMS& LinkList() const
|
2014-11-14 19:19:00 +00:00
|
|
|
{
|
|
|
|
return m_linkedItems.CItems();
|
2014-05-14 13:53:54 +00:00
|
|
|
}
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2014-11-14 18:15:58 +00:00
|
|
|
const PNS_ITEMSET& CLinks() const
|
2013-09-26 21:53:54 +00:00
|
|
|
{
|
2014-11-14 18:15:58 +00:00
|
|
|
return m_linkedItems;
|
|
|
|
}
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2014-11-14 18:15:58 +00:00
|
|
|
PNS_ITEMSET Links() const
|
|
|
|
{
|
|
|
|
return m_linkedItems;
|
|
|
|
}
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2014-11-14 18:15:58 +00:00
|
|
|
int LinkCount( int aMask = -1 ) const
|
|
|
|
{
|
|
|
|
return m_linkedItems.Count( aMask );
|
2013-09-26 21:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Dump() const;
|
|
|
|
|
|
|
|
bool operator==( const PNS_JOINT& rhs ) const
|
|
|
|
{
|
|
|
|
return m_tag.pos == rhs.m_tag.pos && m_tag.net == rhs.m_tag.net;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Merge( const PNS_JOINT& aJoint )
|
|
|
|
{
|
|
|
|
if( !Overlaps( aJoint ) )
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_layers.Merge( aJoint.m_layers );
|
|
|
|
|
2014-11-14 19:19:00 +00:00
|
|
|
BOOST_FOREACH( PNS_ITEM* item, aJoint.LinkList() )
|
2014-05-16 11:37:31 +00:00
|
|
|
{
|
2014-11-14 19:19:00 +00:00
|
|
|
m_linkedItems.Add( item );
|
2014-05-16 11:37:31 +00:00
|
|
|
}
|
2013-09-26 21:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Overlaps( const PNS_JOINT& rhs ) const
|
|
|
|
{
|
2013-10-14 11:43:57 +00:00
|
|
|
return m_tag.pos == rhs.m_tag.pos &&
|
2013-09-26 21:53:54 +00:00
|
|
|
m_tag.net == rhs.m_tag.net && m_layers.Overlaps( rhs.m_layers );
|
|
|
|
}
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2015-08-03 19:11:51 +00:00
|
|
|
void Lock( bool aLock = true )
|
|
|
|
{
|
|
|
|
m_locked = aLock;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsLocked() const
|
|
|
|
{
|
|
|
|
return m_locked;
|
|
|
|
}
|
|
|
|
|
2013-09-18 17:55:16 +00:00
|
|
|
private:
|
2013-09-26 21:53:54 +00:00
|
|
|
///> hash tag for unordered_multimap
|
2014-05-16 11:37:31 +00:00
|
|
|
HASH_TAG m_tag;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
///> list of items linked to this joint
|
2014-11-14 18:15:58 +00:00
|
|
|
PNS_ITEMSET m_linkedItems;
|
2015-08-03 19:11:51 +00:00
|
|
|
|
|
|
|
///> locked (non-movable) flag
|
|
|
|
bool m_locked;
|
2013-09-18 17:55:16 +00:00
|
|
|
};
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
inline bool operator==( PNS_JOINT::HASH_TAG const& aP1, PNS_JOINT::HASH_TAG const& aP2 )
|
2013-09-18 17:55:16 +00:00
|
|
|
{
|
2014-05-16 11:37:31 +00:00
|
|
|
return aP1.pos == aP2.pos && aP1.net == aP2.net;
|
2013-09-18 17:55:16 +00:00
|
|
|
}
|
|
|
|
|
2014-05-16 11:37:31 +00:00
|
|
|
inline std::size_t hash_value( PNS_JOINT::HASH_TAG const& aP )
|
2013-09-18 17:55:16 +00:00
|
|
|
{
|
|
|
|
std::size_t seed = 0;
|
2014-05-16 11:37:31 +00:00
|
|
|
boost::hash_combine( seed, aP.pos.x );
|
|
|
|
boost::hash_combine( seed, aP.pos.y );
|
|
|
|
boost::hash_combine( seed, aP.net );
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2013-09-18 17:55:16 +00:00
|
|
|
return seed;
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
#endif // __PNS_JOINT_H
|