/* * KiRouter - a push-and-(sometimes-)shove PCB router * * Copyright (C) 2013-2014 CERN * Copyright (C) 2016 KiCad Developers, see AUTHORS.txt for contributors. * Author: Tomasz Wlostowski * Author: Maciej Suminski * * 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 . */ #ifndef __PNS_TOOL_BASE_H #define __PNS_TOOL_BASE_H #include #include #include #include #include #include #include "pns_router.h" class GRID_HELPER; class PNS_KICAD_IFACE; class PNS_TUNE_STATUS_POPUP; namespace PNS { class APIEXPORT TOOL_BASE : public PCB_TOOL_BASE { public: TOOL_BASE( const std::string& aToolName ); virtual ~TOOL_BASE(); virtual void Reset( RESET_REASON aReason ) override; ROUTER* Router() const; protected: bool checkSnap( ITEM* aItem ); const VECTOR2I snapToItem( bool aEnabled, ITEM* aItem, VECTOR2I aP); virtual ITEM* pickSingleItem( const VECTOR2I& aWhere, int aNet = -1, int aLayer = -1, bool aIgnorePads = false, const std::vector aAvoidItems = {} ); virtual void highlightNet( bool aEnabled, int aNetcode = -1 ); virtual void updateStartItem( const TOOL_EVENT& aEvent, bool aIgnorePads = false ); virtual void updateEndItem( const TOOL_EVENT& aEvent ); void deleteTraces( ITEM* aStartItem, bool aWholeTrack ); MSG_PANEL_ITEMS m_panelItems; SIZES_SETTINGS m_savedSizes; ///< Stores sizes settings between router invocations ITEM* m_startItem; int m_startLayer; VECTOR2I m_startSnapPoint; bool m_startHighlight; ///< Keeps track of whether the net was highlighted before routing ITEM* m_endItem; VECTOR2I m_endSnapPoint; GRID_HELPER* m_gridHelper; PNS_KICAD_IFACE* m_iface; ROUTER* m_router; bool m_cancelled; }; } #endif