2013-09-18 17:55:16 +00:00
|
|
|
/*
|
|
|
|
* KiRouter - a push-and-(sometimes-)shove PCB router
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 CERN
|
|
|
|
* 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
|
|
|
|
* with this program. If not, see <http://www.gnu.or/licenses/>.
|
|
|
|
*/
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2013-09-18 17:55:16 +00:00
|
|
|
#ifndef __PNS_ROUTER_H
|
|
|
|
#define __PNS_ROUTER_H
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
|
|
|
|
#include <boost/optional.hpp>
|
|
|
|
#include <boost/unordered_set.hpp>
|
|
|
|
|
|
|
|
#include <geometry/shape_line_chain.h>
|
2014-01-30 10:32:08 +00:00
|
|
|
#include <class_undoredo_container.h>
|
2013-09-18 17:55:16 +00:00
|
|
|
|
|
|
|
#include "pns_routing_settings.h"
|
|
|
|
#include "pns_item.h"
|
|
|
|
#include "pns_itemset.h"
|
|
|
|
|
|
|
|
class BOARD;
|
|
|
|
class BOARD_ITEM;
|
|
|
|
class D_PAD;
|
|
|
|
class TRACK;
|
2014-04-25 06:00:04 +00:00
|
|
|
class VIA;
|
2013-09-18 17:55:16 +00:00
|
|
|
class PNS_NODE;
|
|
|
|
class PNS_LINE_PLACER;
|
|
|
|
class PNS_ITEM;
|
|
|
|
class PNS_LINE;
|
|
|
|
class PNS_SOLID;
|
|
|
|
class PNS_SEGMENT;
|
|
|
|
class PNS_JOINT;
|
|
|
|
class PNS_VIA;
|
|
|
|
class PNS_CLEARANCE_FUNC;
|
|
|
|
class VIEW_GROUP;
|
|
|
|
|
2013-10-14 14:13:35 +00:00
|
|
|
namespace KIGFX {
|
2013-09-26 21:53:54 +00:00
|
|
|
class VIEW;
|
|
|
|
class VIEW_GROUP;
|
2013-09-18 17:55:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
/**
|
2013-09-18 17:55:16 +00:00
|
|
|
* Class PNS_ROUTER
|
2013-09-26 21:53:54 +00:00
|
|
|
*
|
|
|
|
* Main router class.
|
2013-09-18 17:55:16 +00:00
|
|
|
*/
|
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
class PNS_ROUTER
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
enum RouterState
|
|
|
|
{
|
|
|
|
IDLE,
|
|
|
|
START_ROUTING,
|
|
|
|
ROUTE_TRACK,
|
|
|
|
FINISH_TRACK
|
|
|
|
};
|
2013-09-18 17:55:16 +00:00
|
|
|
|
|
|
|
public:
|
2013-09-26 21:53:54 +00:00
|
|
|
PNS_ROUTER();
|
|
|
|
~PNS_ROUTER();
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
static PNS_ROUTER* GetInstance();
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
void ClearWorld();
|
|
|
|
void SetBoard( BOARD* aBoard );
|
|
|
|
void SyncWorld();
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-10-14 14:13:35 +00:00
|
|
|
void SetView( KIGFX::VIEW* aView );
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
bool RoutingInProgress() const;
|
|
|
|
void StartRouting( const VECTOR2I& aP, PNS_ITEM* aItem );
|
|
|
|
void Move( const VECTOR2I& aP, PNS_ITEM* aItem );
|
|
|
|
bool FixRoute( const VECTOR2I& aP, PNS_ITEM* aItem );
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
void StopRouting();
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
const VECTOR2I GetCurrentEnd() const;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
int GetClearance( const PNS_ITEM* a, const PNS_ITEM* b ) const;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
PNS_NODE* GetWorld() const
|
|
|
|
{
|
|
|
|
return m_world;
|
|
|
|
}
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
void FlipPosture();
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
void DisplayItem( const PNS_ITEM* aItem, bool aIsHead = false );
|
|
|
|
void DisplayDebugLine( const SHAPE_LINE_CHAIN& aLine, int aType = 0, int aWidth = 0 );
|
|
|
|
void DisplayDebugBox( const BOX2I& aBox, int aType = 0, int aWidth = 0 );
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
void EraseView();
|
|
|
|
void SwitchLayer( int layer );
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
int GetCurrentLayer() const { return m_currentLayer; }
|
|
|
|
void ToggleViaPlacement();
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
void SetCurrentWidth( int w );
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
void SetCurrentViaDiameter( int d ) { m_currentViaDiameter = d; }
|
|
|
|
void SetCurrentViaDrill( int d ) { m_currentViaDrill = d; }
|
|
|
|
int GetCurrentWidth() const { return m_currentWidth; }
|
|
|
|
int GetCurrentViaDiameter() const { return m_currentViaDiameter; }
|
|
|
|
int GetCurrentViaDrill() const { return m_currentViaDrill; }
|
|
|
|
int GetCurrentNet() const { return m_currentNet; }
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
PNS_CLEARANCE_FUNC* GetClearanceFunc() const
|
|
|
|
{
|
|
|
|
return m_clearanceFunc;
|
|
|
|
}
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
bool IsPlacingVia() const
|
|
|
|
{
|
|
|
|
return m_placingVia;
|
|
|
|
}
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
int NextCopperLayer( bool aUp );
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
// typedef boost::optional<hoverItem> optHoverItem;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
const PNS_ITEMSET QueryHoverItems( const VECTOR2I& aP );
|
|
|
|
const VECTOR2I SnapToItem( PNS_ITEM* item, VECTOR2I aP, bool& aSplitsSegment );
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2014-01-30 10:32:08 +00:00
|
|
|
/**
|
2014-01-31 17:05:11 +00:00
|
|
|
* Returns the last changes introduced by the router (since the last time ClearLastChanges()
|
|
|
|
* was called or a new track has been started).
|
2014-01-30 10:32:08 +00:00
|
|
|
*/
|
2014-01-31 17:05:11 +00:00
|
|
|
const PICKED_ITEMS_LIST& GetLastChanges() const
|
2014-01-30 10:32:08 +00:00
|
|
|
{
|
2014-01-31 17:05:11 +00:00
|
|
|
return m_undoBuffer;
|
|
|
|
}
|
2014-01-30 10:32:08 +00:00
|
|
|
|
2014-01-31 17:05:11 +00:00
|
|
|
/**
|
|
|
|
* Clears the list of recent changes, saved to be stored in the undo buffer.
|
|
|
|
*/
|
|
|
|
void ClearLastChanges()
|
|
|
|
{
|
|
|
|
m_undoBuffer.ClearItemsList();
|
2014-01-30 10:32:08 +00:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
private:
|
|
|
|
void clearViewFlags();
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
// optHoverItem queryHoverItemEx(const VECTOR2I& aP);
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-10-14 14:13:35 +00:00
|
|
|
PNS_ITEM* pickSingleItem( PNS_ITEMSET& aItems ) const; // std::vector<PNS_ITEM*> aItems) const;
|
2013-09-26 21:53:54 +00:00
|
|
|
void splitAdjacentSegments( PNS_NODE* aNode, PNS_ITEM* aSeg, const VECTOR2I& aP ); // optHoverItem& aItem);
|
|
|
|
void commitRouting( PNS_NODE* aNode );
|
|
|
|
PNS_NODE* removeLoops( PNS_NODE* aNode, PNS_SEGMENT* aLatestSeg );
|
|
|
|
PNS_NODE* removeLoops( PNS_NODE* aNode, PNS_LINE* aNewLine );
|
|
|
|
PNS_VIA* checkLoneVia( PNS_JOINT* aJoint ) const;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
PNS_ITEM* syncPad( D_PAD* aPad );
|
|
|
|
PNS_ITEM* syncTrack( TRACK* aTrack );
|
2014-04-25 06:00:04 +00:00
|
|
|
PNS_ITEM* syncVia( VIA* aVia );
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
void commitPad( PNS_SOLID* aPad );
|
|
|
|
void commitSegment( PNS_SEGMENT* aTrack );
|
|
|
|
void commitVia( PNS_VIA* aVia );
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
void highlightCurrent( bool enabled );
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
int m_currentLayer;
|
|
|
|
int m_currentNet;
|
|
|
|
int m_currentWidth;
|
|
|
|
int m_currentViaDiameter;
|
|
|
|
int m_currentViaDrill;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
bool m_start_diagonal;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
RouterState m_state;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
BOARD* m_board;
|
|
|
|
PNS_NODE* m_world;
|
|
|
|
PNS_LINE_PLACER* m_placer;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-10-14 14:13:35 +00:00
|
|
|
KIGFX::VIEW* m_view;
|
|
|
|
KIGFX::VIEW_GROUP* m_previewItems;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
VECTOR2I m_currentEnd;
|
|
|
|
VECTOR2I m_currentStart;
|
|
|
|
VECTOR2I m_originalStart;
|
|
|
|
bool m_placingVia;
|
|
|
|
bool m_startsOnVia;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
// optHoverItem m_startItem, m_endItem;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
PNS_ROUTING_SETTINGS m_settings;
|
|
|
|
PNS_CLEARANCE_FUNC* m_clearanceFunc;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
boost::unordered_set<BOARD_ITEM*> m_hiddenItems;
|
2014-01-30 10:32:08 +00:00
|
|
|
|
|
|
|
///> Stores list of modified items in the current operation
|
|
|
|
PICKED_ITEMS_LIST m_undoBuffer;
|
2013-09-18 17:55:16 +00:00
|
|
|
};
|
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
#endif
|