2013-09-18 19:55:16 +02:00
|
|
|
/*
|
|
|
|
* KiRouter - a push-and-(sometimes-)shove PCB router
|
|
|
|
*
|
2017-01-18 09:04:11 +01:00
|
|
|
* Copyright (C) 2013-2017 CERN
|
2025-01-01 13:30:11 -08:00
|
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
2013-09-18 19:55:16 +02:00
|
|
|
* Author: Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
2014-05-14 15:53:54 +02:00
|
|
|
* Author: Maciej Suminski <maciej.suminski@cern.ch>
|
2013-09-26 23:53:54 +02:00
|
|
|
*
|
2013-09-18 19:55:16 +02: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 23:53:54 +02:00
|
|
|
*
|
2013-09-18 19:55:16 +02: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 23:53:54 +02:00
|
|
|
*
|
2013-09-18 19:55:16 +02:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
2014-05-14 15:53:54 +02:00
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
2013-09-18 19:55:16 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ROUTER_TOOL_H
|
|
|
|
#define __ROUTER_TOOL_H
|
|
|
|
|
2015-02-18 01:29:54 +01:00
|
|
|
#include "pns_tool_base.h"
|
2014-05-14 15:53:54 +02:00
|
|
|
|
2023-06-16 21:15:29 +01:00
|
|
|
class PCB_SELECTION_TOOL;
|
|
|
|
|
2023-09-08 18:44:37 -04:00
|
|
|
class ROUTER_TOOL : public PNS::TOOL_BASE
|
2013-09-18 19:55:16 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ROUTER_TOOL();
|
|
|
|
~ROUTER_TOOL();
|
|
|
|
|
2016-09-24 14:53:15 -04:00
|
|
|
bool Init() override;
|
|
|
|
void Reset( RESET_REASON aReason ) override;
|
2015-02-18 01:29:54 +01:00
|
|
|
|
2019-06-24 16:27:05 +01:00
|
|
|
int MainLoop( const TOOL_EVENT& aEvent );
|
2022-08-22 08:19:22 -04:00
|
|
|
int RouteSelected( const TOOL_EVENT& aEvent );
|
2019-06-24 16:27:05 +01:00
|
|
|
|
2018-12-13 20:43:51 -07:00
|
|
|
int InlineBreakTrack( const TOOL_EVENT& aEvent );
|
2021-01-27 19:55:42 +00:00
|
|
|
bool CanInlineDrag( int aDragMode );
|
2017-01-17 17:24:09 +01:00
|
|
|
int InlineDrag( const TOOL_EVENT& aEvent );
|
2015-02-18 01:29:54 +01:00
|
|
|
|
2019-06-03 21:06:58 +01:00
|
|
|
int SelectCopperLayerPair( const TOOL_EVENT& aEvent );
|
2017-01-18 09:04:11 +01:00
|
|
|
int DpDimensionsDialog( const TOOL_EVENT& aEvent );
|
|
|
|
int SettingsDialog( const TOOL_EVENT& aEvent );
|
2020-04-19 15:39:16 +01:00
|
|
|
int ChangeRouterMode( const TOOL_EVENT& aEvent );
|
2021-10-28 22:46:05 +00:00
|
|
|
int CycleRouterMode( const TOOL_EVENT& aEvent );
|
2017-01-18 09:04:11 +01:00
|
|
|
int CustomTrackWidthDialog( const TOOL_EVENT& aEvent );
|
2013-09-18 19:55:16 +02:00
|
|
|
|
2020-06-23 11:44:39 +01:00
|
|
|
PNS::PNS_MODE GetRouterMode();
|
|
|
|
|
2021-09-24 09:37:15 -04: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 14:30:51 +02:00
|
|
|
void setTransitions() override;
|
2015-02-18 01:29:54 +01:00
|
|
|
|
2018-01-05 23:44:37 +00:00
|
|
|
// A filter for narrowing a collection representing a simple corner
|
2021-06-11 22:07:02 +01:00
|
|
|
// or a non-fanout-via to a single PCB_TRACK item.
|
2023-06-16 21:15:29 +01:00
|
|
|
static void NeighboringSegmentFilter( const VECTOR2I& aPt, GENERAL_COLLECTOR& aCollector,
|
|
|
|
PCB_SELECTION_TOOL* aSelTool );
|
2018-01-05 23:44:37 +00:00
|
|
|
|
2022-02-20 13:53:34 +00:00
|
|
|
void UpdateMessagePanel();
|
|
|
|
|
2017-01-18 09:04:11 +01:00
|
|
|
private:
|
2024-08-15 21:45:34 +01:00
|
|
|
void performRouting( VECTOR2D aStartPosition );
|
2017-08-03 17:53:07 +02:00
|
|
|
void performDragging( int aMode = PNS::DM_ANY );
|
|
|
|
void breakTrack();
|
2024-10-25 00:41:12 +02:00
|
|
|
void restoreSelection( const PCB_SELECTION& aOriginalSelection );
|
2014-11-14 20:19:00 +01:00
|
|
|
|
2021-02-11 23:08:46 +01: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 15:53:54 +02:00
|
|
|
|
2024-09-13 15:50:12 -07:00
|
|
|
// Returns the board layer ID for the start layer of the router
|
|
|
|
PCB_LAYER_ID getStartLayer( const PNS::ITEM* aItem );
|
|
|
|
|
2014-11-14 19:15:58 +01:00
|
|
|
void switchLayerOnViaPlacement();
|
2024-07-21 10:49:18 -07:00
|
|
|
void updateSizesAfterRouterEvent( int targetLayer, const VECTOR2I& aPos );
|
2017-01-18 09:04:11 +01:00
|
|
|
|
2020-12-02 21:16:48 +00:00
|
|
|
int onLayerCommand( const TOOL_EVENT& aEvent );
|
2017-01-18 09:04:11 +01:00
|
|
|
int onViaCommand( const TOOL_EVENT& aEvent );
|
|
|
|
int onTrackViaSizeChanged( const TOOL_EVENT& aEvent );
|
2014-11-14 19:15:58 +01:00
|
|
|
|
2024-08-15 21:45:34 +01:00
|
|
|
bool prepareInteractive( VECTOR2D aStartPosition );
|
2015-08-04 23:08:13 +02:00
|
|
|
bool finishInteractive();
|
2021-02-11 23:08:46 +01: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 18:09:22 +01:00
|
|
|
|
2024-09-13 15:50:12 -07:00
|
|
|
// Both of these are in board layer ID format and must be converted to PNS layer ID format
|
|
|
|
// when used with the PNS interface.
|
|
|
|
PCB_LAYER_ID m_lastTargetLayer;
|
|
|
|
PCB_LAYER_ID m_originalActiveLayer;
|
2022-10-17 13:20:40 +01:00
|
|
|
|
|
|
|
bool m_inRouterTool; // Re-entrancy guard
|
2013-09-18 19:55:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|