2013-09-18 17:55:16 +00:00
|
|
|
/*
|
|
|
|
* KiRouter - a push-and-(sometimes-)shove PCB router
|
|
|
|
*
|
2017-01-18 08:04:11 +00:00
|
|
|
* Copyright (C) 2013-2017 CERN
|
2016-08-29 14:38:11 +00:00
|
|
|
* Copyright (C) 2016 KiCad Developers, see AUTHORS.txt for contributors.
|
2013-09-18 17:55:16 +00:00
|
|
|
* Author: Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
2014-05-14 13:53:54 +00:00
|
|
|
* Author: Maciej Suminski <maciej.suminski@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 __ROUTER_TOOL_H
|
|
|
|
#define __ROUTER_TOOL_H
|
|
|
|
|
2015-02-18 00:29:54 +00:00
|
|
|
#include "pns_tool_base.h"
|
2014-05-14 13:53:54 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
class APIEXPORT ROUTER_TOOL : public PNS::TOOL_BASE
|
2013-09-18 17:55:16 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ROUTER_TOOL();
|
|
|
|
~ROUTER_TOOL();
|
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
bool Init() override;
|
|
|
|
void Reset( RESET_REASON aReason ) override;
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2019-06-24 15:27:05 +00:00
|
|
|
int MainLoop( const TOOL_EVENT& aEvent );
|
2022-08-22 12:19:22 +00:00
|
|
|
int RouteSelected( const TOOL_EVENT& aEvent );
|
2019-06-24 15:27:05 +00:00
|
|
|
|
2018-12-14 03:43:51 +00:00
|
|
|
int InlineBreakTrack( const TOOL_EVENT& aEvent );
|
2021-01-27 19:55:42 +00:00
|
|
|
bool CanInlineDrag( int aDragMode );
|
2017-01-17 16:24:09 +00:00
|
|
|
int InlineDrag( const TOOL_EVENT& aEvent );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2019-06-03 20:06:58 +00:00
|
|
|
int SelectCopperLayerPair( const TOOL_EVENT& aEvent );
|
2017-01-18 08:04:11 +00:00
|
|
|
int DpDimensionsDialog( const TOOL_EVENT& aEvent );
|
|
|
|
int SettingsDialog( const TOOL_EVENT& aEvent );
|
2020-04-19 14:39:16 +00:00
|
|
|
int ChangeRouterMode( const TOOL_EVENT& aEvent );
|
2021-10-28 22:46:05 +00:00
|
|
|
int CycleRouterMode( const TOOL_EVENT& aEvent );
|
2017-01-18 08:04:11 +00:00
|
|
|
int CustomTrackWidthDialog( const TOOL_EVENT& aEvent );
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2020-06-23 10:44:39 +00:00
|
|
|
PNS::PNS_MODE GetRouterMode();
|
|
|
|
|
2021-09-24 13:37:15 +00:00
|
|
|
/**
|
|
|
|
* @brief Returns whether routing is currently active.
|
|
|
|
*
|
|
|
|
* @return True if actively routing, false if not routing or
|
|
|
|
* tool is activated and idle.
|
|
|
|
*/
|
|
|
|
bool RoutingInProgress();
|
|
|
|
|
2017-07-31 12:30:51 +00:00
|
|
|
void setTransitions() override;
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2018-01-05 23:44:37 +00:00
|
|
|
// A filter for narrowing a collection representing a simple corner
|
2021-06-11 21:07:02 +00:00
|
|
|
// or a non-fanout-via to a single PCB_TRACK item.
|
2018-01-05 23:44:37 +00:00
|
|
|
static void NeighboringSegmentFilter( const VECTOR2I& aPt, GENERAL_COLLECTOR& aCollector );
|
|
|
|
|
2022-02-20 13:53:34 +00:00
|
|
|
void UpdateMessagePanel();
|
|
|
|
|
2017-01-18 08:04:11 +00:00
|
|
|
private:
|
2014-05-14 13:53:54 +00:00
|
|
|
void performRouting();
|
2017-08-03 15:53:07 +00:00
|
|
|
void performDragging( int aMode = PNS::DM_ANY );
|
|
|
|
void breakTrack();
|
2014-11-14 19:19:00 +00:00
|
|
|
|
2021-02-11 22:08:46 +00:00
|
|
|
void handleCommonEvents( TOOL_EVENT& evt );
|
2020-12-02 21:16:48 +00:00
|
|
|
int handleLayerSwitch( const TOOL_EVENT& aEvent, bool aForceVia );
|
2014-05-14 13:53:54 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
int getStartLayer( const PNS::ITEM* aItem );
|
2014-11-14 18:15:58 +00:00
|
|
|
void switchLayerOnViaPlacement();
|
2022-10-06 14:49:58 +00:00
|
|
|
void updateSizesAfterLayerSwitch( PCB_LAYER_ID targetLayer );
|
2022-07-14 16:38:39 +00:00
|
|
|
bool getNearestRatnestAnchor( VECTOR2I& aPoint, LAYER_RANGE& aLayers );
|
2017-01-18 08:04:11 +00:00
|
|
|
|
2020-12-02 21:16:48 +00:00
|
|
|
int onLayerCommand( const TOOL_EVENT& aEvent );
|
2017-01-18 08:04:11 +00:00
|
|
|
int onViaCommand( const TOOL_EVENT& aEvent );
|
|
|
|
int onTrackViaSizeChanged( const TOOL_EVENT& aEvent );
|
2014-11-14 18:15:58 +00:00
|
|
|
|
2015-08-04 21:08:13 +00:00
|
|
|
bool prepareInteractive();
|
|
|
|
bool finishInteractive();
|
2021-02-11 22:08:46 +00:00
|
|
|
void saveRouterDebugLog();
|
2021-01-14 15:17:24 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::shared_ptr<ACTION_MENU> m_diffPairMenu;
|
|
|
|
std::shared_ptr<ACTION_MENU> m_trackViaMenu;
|
2021-04-01 17:09:22 +00:00
|
|
|
|
|
|
|
int m_lastTargetLayer;
|
2022-08-31 15:43:59 +00:00
|
|
|
PCB_LAYER_ID m_originalActiveLayer;
|
2022-10-17 12:20:40 +00:00
|
|
|
|
|
|
|
bool m_inRouterTool; // Re-entrancy guard
|
2013-09-18 17:55:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|