2015-02-18 00:29:54 +00:00
|
|
|
/*
|
|
|
|
* KiRouter - a push-and-(sometimes-)shove PCB router
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013-2014 CERN
|
2016-08-29 14:38:11 +00:00
|
|
|
* Copyright (C) 2016 KiCad Developers, see AUTHORS.txt for contributors.
|
2015-02-18 00:29:54 +00:00
|
|
|
* Author: Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
|
|
|
* Author: Maciej Suminski <maciej.suminski@cern.ch>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PNS_TOOL_BASE_H
|
|
|
|
#define __PNS_TOOL_BASE_H
|
|
|
|
|
2016-06-21 15:06:28 +00:00
|
|
|
#include <memory>
|
2015-02-18 00:29:54 +00:00
|
|
|
#include <import_export.h>
|
|
|
|
|
|
|
|
#include <math/vector2d.h>
|
2019-05-12 11:49:58 +00:00
|
|
|
#include <tools/pcb_tool_base.h>
|
2016-06-21 15:06:28 +00:00
|
|
|
#include <board_commit.h>
|
2015-02-18 00:29:54 +00:00
|
|
|
|
|
|
|
#include <msgpanel.h>
|
|
|
|
|
|
|
|
#include "pns_router.h"
|
|
|
|
|
2015-11-03 16:19:42 +00:00
|
|
|
class GRID_HELPER;
|
2016-08-29 14:38:11 +00:00
|
|
|
|
2016-08-15 15:16:47 +00:00
|
|
|
class PNS_KICAD_IFACE;
|
2016-08-29 14:38:11 +00:00
|
|
|
class PNS_TUNE_STATUS_POPUP;
|
|
|
|
|
|
|
|
namespace PNS {
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2019-05-12 11:49:58 +00:00
|
|
|
class APIEXPORT TOOL_BASE : public PCB_TOOL_BASE
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-08-29 17:31:13 +00:00
|
|
|
TOOL_BASE( const std::string& aToolName );
|
|
|
|
virtual ~TOOL_BASE();
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual void Reset( RESET_REASON aReason ) override;
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
ROUTER* Router() const;
|
2016-08-15 15:16:47 +00:00
|
|
|
|
2015-02-18 00:29:54 +00:00
|
|
|
protected:
|
2017-08-03 15:53:07 +00:00
|
|
|
bool checkSnap( ITEM* aItem );
|
2016-09-29 16:59:11 +00:00
|
|
|
const VECTOR2I snapToItem( bool aEnabled, ITEM* aItem, VECTOR2I aP);
|
2018-03-16 18:00:57 +00:00
|
|
|
virtual ITEM* pickSingleItem( const VECTOR2I& aWhere, int aNet = -1, int aLayer = -1,
|
2019-03-17 03:34:08 +00:00
|
|
|
bool aIgnorePads = false, const std::vector<ITEM*> aAvoidItems = {} );
|
2015-02-18 00:29:54 +00:00
|
|
|
virtual void highlightNet( bool aEnabled, int aNetcode = -1 );
|
2018-07-26 22:35:11 +00:00
|
|
|
virtual void updateStartItem( const TOOL_EVENT& aEvent, bool aIgnorePads = false );
|
2017-01-18 08:04:11 +00:00
|
|
|
virtual void updateEndItem( const TOOL_EVENT& aEvent );
|
2016-08-29 17:31:13 +00:00
|
|
|
void deleteTraces( ITEM* aStartItem, bool aWholeTrack );
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2015-02-18 00:29:54 +00:00
|
|
|
MSG_PANEL_ITEMS m_panelItems;
|
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
SIZES_SETTINGS m_savedSizes; ///< Stores sizes settings between router invocations
|
|
|
|
ITEM* m_startItem;
|
2015-02-18 00:29:54 +00:00
|
|
|
int m_startLayer;
|
|
|
|
VECTOR2I m_startSnapPoint;
|
2018-12-02 19:21:43 +00:00
|
|
|
bool m_startHighlight; ///< Keeps track of whether the net was highlighted before routing
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
ITEM* m_endItem;
|
2015-02-18 00:29:54 +00:00
|
|
|
VECTOR2I m_endSnapPoint;
|
|
|
|
|
2015-11-03 16:19:42 +00:00
|
|
|
GRID_HELPER* m_gridHelper;
|
2016-08-15 15:16:53 +00:00
|
|
|
PNS_KICAD_IFACE* m_iface;
|
2016-08-29 17:31:13 +00:00
|
|
|
ROUTER* m_router;
|
2019-07-01 21:01:33 +00:00
|
|
|
|
|
|
|
bool m_cancelled;
|
2015-02-18 00:29:54 +00:00
|
|
|
};
|
|
|
|
|
2016-08-29 14:38:11 +00:00
|
|
|
}
|
|
|
|
|
2015-02-18 00:29:54 +00:00
|
|
|
#endif
|