24using namespace std::placeholders;
101 settings->
m_PnsSettings = std::make_unique<ROUTING_SETTINGS>( settings,
"tools.pns" );
110 bool aIgnorePads,
const std::vector<ITEM*> aAvoidItems )
115 static const int candidateCount = 5;
116 ITEM* prioritized[candidateCount];
119 for(
int i = 0; i < candidateCount; i++ )
121 prioritized[i] =
nullptr;
125 auto haveCandidates =
128 for(
ITEM* item : prioritized )
137 for(
int slopRadius : { 0, maxSlopRadius } )
143 if( !item->IsRoutable() )
167 SEG::ecoord d = ( item->Shape()->Centre() - aWhere ).SquaredEuclideanNorm();
171 prioritized[2] = item;
175 if( item->Layers().Overlaps( tl ) && d < dist[0] )
177 prioritized[0] = item;
185 ( li->
Anchor( 1 ) - aWhere ).SquaredEuclideanNorm() );
189 prioritized[3] = item;
193 if( item->Layers().Overlaps( tl ) && d < dist[1] )
195 prioritized[1] = item;
200 else if( item->OfKind(
ITEM::SOLID_T ) && item->IsFreePad() )
203 if( item->Shape()->Collide( aWhere ) )
205 prioritized[0] = item;
212 if( item->Layers().Overlaps( tl ) )
213 prioritized[4] = item;
217 if( haveCandidates() )
223 bool highContrast = (
frame()->GetDisplayOptions().m_ContrastModeDisplay != HIGH_CONTRAST_MODE::NORMAL );
225 for(
ITEM* item : prioritized )
227 if( highContrast && item && !item->Layers().Overlaps( tl ) )
230 if( item && ( aLayer < 0 || item->Layers().Overlaps( aLayer ) ) )
239 wxLogTrace( wxT(
"PNS" ), wxT(
"%s, layer : %d, tl: %d" ),
252 std::set<int> netcodes;
257 if( netcodes.size() > 0 && aEnabled )
265 for(
const int& netcode : netcodes )
267 if( currentNetCodes.find( netcode ) != currentNetCodes.end() )
310 pnss.
SetSnapToPads( magSettings->
pads == MAGNETIC_OPTIONS::CAPTURE_CURSOR_IN_TRACK_TOOL
311 || magSettings->
pads == MAGNETIC_OPTIONS::CAPTURE_ALWAYS );
314 || magSettings->
tracks == MAGNETIC_OPTIONS::CAPTURE_ALWAYS );
393 ITEM* endItem =
nullptr;
421 wxLogTrace( wxT(
"PNS" ), wxT(
"%s, layer : %d" ),
447 switch( aItem->
Kind() )
454 return solid->
Anchor( 0 );
457 SEG::ecoord minDist = std::numeric_limits<SEG::ecoord>::max();
461 SEG::ecoord distSq = ( aP - anchorCandidate ).SquaredEuclideanNorm();
463 if( distSq < minDist )
474 return static_cast<VIA*
>( aItem )->Pos();
483 SEG::ecoord distA_sq = ( aP -
A ).SquaredEuclideanNorm();
484 SEG::ecoord distB_sq = ( aP -
B ).SquaredEuclideanNorm();
486 if( distA_sq < w_sq || distB_sq < w_sq )
488 return ( distA_sq < distB_sq ) ?
A :
B;
498 ARC* arc =
static_cast<ARC*
>( li );
constexpr EDA_IU_SCALE pcbIUScale
void SetUseGrid(bool aSnapToGrid)
Abstract interface for drawing on a 2D-surface.
bool GetGridSnapping() const
virtual RENDER_SETTINGS * GetSettings()=0
Return a pointer to current settings that are going to be used when drawing items.
Container for all the knowledge about how graphical objects are drawn on any output surface/device.
const std::set< int > & GetHighlightNetCodes() const
Return the netcode of currently highlighted net.
bool IsHighlightEnabled() const
Return current highlight setting.
void SetHighlight(bool aEnabled, int aNetcode=-1, bool aMulti=false)
Turns on/off highlighting.
virtual void ForceCursorPosition(bool aEnabled, const VECTOR2D &aPosition=VECTOR2D(0, 0))
Place the cursor immediately at a given point.
virtual VECTOR2D GetMousePosition(bool aWorldCoordinates=true) const =0
Return the current mouse pointer position.
void UpdateAllLayersColor()
Apply the new coloring scheme to all layers.
virtual int GetTopLayer() const
GAL * GetGAL() const
Return the #GAL this view is using to draw graphical primitives.
PAINTER * GetPainter() const
Return the painter object used by the view for drawing #VIEW_ITEMS.
bool Overlaps(const LAYER_RANGE &aOther) const
std::unique_ptr< PNS::ROUTING_SETTINGS > m_PnsSettings
VECTOR2I AlignToArc(const VECTOR2I &aPoint, const SHAPE_ARC &aSeg)
VECTOR2I AlignToSegment(const VECTOR2I &aPoint, const SEG &aSeg)
virtual VECTOR2I Align(const VECTOR2I &aPoint, GRID_HELPER_GRIDS aGrid) const
const SHAPE * Shape() const override
Return the geometrical shape of the item.
const LINE & GetOriginalLine()
std::vector< ITEM * > & Items()
Base class for PNS router board items.
PnsKind Kind() const
Return the type (kind) of the item.
const LAYER_RANGE & Layers() const
bool OfKind(int aKindMask) const
virtual VECTOR2I Anchor(int n) const
std::string KindStr() const
virtual int Width() const
bool ContainsLink(const LINKED_ITEM *aItem) const
virtual int GetNetCode(NET_HANDLE aNet) const =0
ROUTER_IFACE * GetInterface() const
void UpdateSizes(const SIZES_SETTINGS &aSizes)
Applies stored settings.
void LoadSettings(ROUTING_SETTINGS *aSettings)
Changes routing settings to ones passed in the parameter.
const ITEM_SET QueryHoverItems(const VECTOR2I &aP, int aSlopRadius=0)
void SetInterface(ROUTER_IFACE *aIface)
bool IsPlacingVia() const
ROUTING_SETTINGS & Settings()
RouterState GetState() const
int GetCurrentLayer() const
const std::vector< NET_HANDLE > GetCurrentNets() const
Contain all persistent settings of the router, such as the mode, optimization effort,...
bool GetSnapToTracks() const
bool GetSnapToPads() const
void SetSnapToTracks(bool aSnap)
void SetSnapToPads(bool aSnap)
PNS_MODE Mode() const
Set the routing mode.
const std::vector< VECTOR2I > & AnchorPoints() const
virtual VECTOR2I Anchor(int aN) const override
void SetBoard(BOARD *aBoard)
void SetView(KIGFX::VIEW *aView)
virtual void SetHostTool(PCB_TOOL_BASE *aTool)
bool IsItemVisible(const PNS::ITEM *aItem) const override
bool IsAnyLayerVisible(const LAYER_RANGE &aLayer) const override
VECTOR2I::extended_type ecoord
static SEG::ecoord Square(int a)
static constexpr extended_type ECOORD_MAX
VECTOR2< ret_type > GetClampedCoords(const VECTOR2< in_type > &aCoords, pad_type aPadding=1u)
Clamps a vector to values that can be negated, respecting numeric limits of coordinates data type wit...
bool IsCopperLayer(int aLayerId)
Tests whether a layer is a copper layer.
The Cairo implementation of the graphics abstraction layer.
Push and Shove diff pair dimensions (gap) settings dialog.
@ RM_MarkObstacles
Ignore collisions, mark obstacles.
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
constexpr int mmToIU(double mm) const
VECTOR2< int32_t > VECTOR2I