2015-02-18 00:29:54 +00:00
|
|
|
/*
|
|
|
|
* KiRouter - a push-and-(sometimes-)shove PCB router
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013-2014 CERN
|
2020-10-31 15:41:50 +00:00
|
|
|
* Copyright (C) 2016-2020 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
|
|
|
|
2020-10-25 04:49:02 +00:00
|
|
|
#include <widgets/msgpanel.h>
|
2015-02-18 00:29:54 +00:00
|
|
|
|
|
|
|
#include "pns_router.h"
|
|
|
|
|
2021-01-16 23:17:32 +00:00
|
|
|
class PCB_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 );
|
2020-10-31 15:41:50 +00:00
|
|
|
|
2021-07-26 23:47:26 +00:00
|
|
|
const VECTOR2I snapToItem( ITEM* aSnapToItem, const VECTOR2I& aP);
|
2020-10-31 15:41:50 +00:00
|
|
|
|
2018-03-16 18:00:57 +00:00
|
|
|
virtual ITEM* pickSingleItem( const VECTOR2I& aWhere, int aNet = -1, int aLayer = -1,
|
2020-10-31 15:41:50 +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 );
|
2020-10-31 15:41:50 +00:00
|
|
|
|
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 );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2020-10-31 15:41:50 +00:00
|
|
|
SIZES_SETTINGS m_savedSizes; // Stores sizes settings between router invocations
|
|
|
|
ITEM* m_startItem;
|
|
|
|
VECTOR2I m_startSnapPoint;
|
|
|
|
bool m_startHighlight; // Was net highlighted before routing?
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2020-10-31 15:41:50 +00:00
|
|
|
ITEM* m_endItem;
|
|
|
|
VECTOR2I m_endSnapPoint;
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2021-01-16 23:17:32 +00:00
|
|
|
PCB_GRID_HELPER* m_gridHelper;
|
2016-08-15 15:16:53 +00:00
|
|
|
PNS_KICAD_IFACE* m_iface;
|
2020-10-31 15:41:50 +00:00
|
|
|
ROUTER* m_router;
|
2019-07-01 21:01:33 +00:00
|
|
|
|
2020-10-31 15:41:50 +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
|