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
|
2016-08-29 16:38:11 +02:00
|
|
|
* Copyright (C) 2016 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
|
|
|
|
2016-08-29 19:31:13 +02:00
|
|
|
class APIEXPORT 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
|
|
|
|
2017-01-17 17:24:09 +01:00
|
|
|
int RouteSingleTrace( const TOOL_EVENT& aEvent );
|
|
|
|
int RouteDiffPair( const TOOL_EVENT& aEvent );
|
|
|
|
int InlineDrag( const TOOL_EVENT& aEvent );
|
2015-02-18 01:29:54 +01:00
|
|
|
|
2017-01-18 09:04:11 +01:00
|
|
|
// TODO make this private?
|
|
|
|
int DpDimensionsDialog( const TOOL_EVENT& aEvent );
|
|
|
|
int SettingsDialog( const TOOL_EVENT& aEvent );
|
|
|
|
int CustomTrackWidthDialog( const TOOL_EVENT& aEvent );
|
2013-09-18 19:55:16 +02:00
|
|
|
|
2017-07-31 14:30:51 +02:00
|
|
|
void setTransitions() override;
|
2015-02-18 01:29:54 +01:00
|
|
|
|
2017-01-18 09:04:11 +01:00
|
|
|
private:
|
2016-08-29 19:31:13 +02:00
|
|
|
int mainLoop( PNS::ROUTER_MODE aMode );
|
2013-09-18 19:55:16 +02:00
|
|
|
|
2013-09-26 23:53:54 +02:00
|
|
|
int getDefaultWidth( int aNetCode );
|
2014-11-14 20:19:00 +01:00
|
|
|
|
2014-05-14 15:53:54 +02:00
|
|
|
void performRouting();
|
2017-08-03 17:53:07 +02:00
|
|
|
void performDragging( int aMode = PNS::DM_ANY );
|
|
|
|
void breakTrack();
|
2014-11-14 20:19:00 +01:00
|
|
|
|
2013-09-26 23:53:54 +02:00
|
|
|
void getNetclassDimensions( int aNetCode, int& aWidth, int& aViaDiameter, int& aViaDrill );
|
2015-02-18 01:29:54 +01:00
|
|
|
void handleCommonEvents( const TOOL_EVENT& evt );
|
2014-05-14 15:53:54 +02:00
|
|
|
|
2016-08-29 19:31:13 +02:00
|
|
|
int getStartLayer( const PNS::ITEM* aItem );
|
2014-11-14 19:15:58 +01:00
|
|
|
void switchLayerOnViaPlacement();
|
2017-01-18 09:04:11 +01:00
|
|
|
|
|
|
|
int onViaCommand( const TOOL_EVENT& aEvent );
|
|
|
|
int onTrackViaSizeChanged( const TOOL_EVENT& aEvent );
|
|
|
|
int onLayerChanged( const TOOL_EVENT& aEvent );
|
2014-11-14 19:15:58 +01:00
|
|
|
|
2015-08-04 23:08:13 +02:00
|
|
|
bool prepareInteractive();
|
|
|
|
bool finishInteractive();
|
2013-09-18 19:55:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|