2014-05-14 13:53: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.
|
2014-05-14 13:53:54 +00:00
|
|
|
* Author: Tomasz Wlostowski <tomasz.wlostowski@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_DRAGGER_H
|
|
|
|
#define __PNS_DRAGGER_H
|
|
|
|
|
|
|
|
#include <math/vector2d.h>
|
|
|
|
|
|
|
|
#include "pns_node.h"
|
|
|
|
#include "pns_via.h"
|
|
|
|
#include "pns_line.h"
|
|
|
|
#include "pns_algo_base.h"
|
|
|
|
#include "pns_itemset.h"
|
|
|
|
|
2016-08-29 14:38:11 +00:00
|
|
|
namespace PNS {
|
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
class ROUTER;
|
|
|
|
class SHOVE;
|
|
|
|
class OPTIMIZER;
|
2014-05-14 13:53:54 +00:00
|
|
|
|
|
|
|
/**
|
2016-08-29 17:31:13 +00:00
|
|
|
* Class DRAGGER
|
2014-05-14 13:53:54 +00:00
|
|
|
*
|
|
|
|
* Via, segment and corner dragging algorithm.
|
|
|
|
*/
|
2016-08-29 17:31:13 +00:00
|
|
|
class DRAGGER : public ALGO_BASE
|
2014-05-14 13:53:54 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-08-29 17:31:13 +00:00
|
|
|
DRAGGER( ROUTER* aRouter );
|
|
|
|
~DRAGGER();
|
2014-05-14 13:53:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function SetWorld()
|
|
|
|
*
|
|
|
|
* Sets the board to work on.
|
|
|
|
*/
|
2016-08-29 17:31:13 +00:00
|
|
|
void SetWorld( NODE* aWorld );
|
2014-05-14 13:53:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Start()
|
2015-02-18 16:53:46 +00:00
|
|
|
*
|
2014-05-14 13:53:54 +00:00
|
|
|
* Starts routing a single track at point aP, taking item aStartItem as anchor
|
|
|
|
* (unless NULL). Returns true if a dragging operation has started.
|
|
|
|
*/
|
2016-08-29 17:31:13 +00:00
|
|
|
bool Start( const VECTOR2I& aP, ITEM* aStartItem );
|
2014-05-14 13:53:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Drag()
|
|
|
|
*
|
|
|
|
* Drags the current segment/corner/via to the point aP.
|
|
|
|
* @return true, if dragging finished with success.
|
|
|
|
*/
|
2014-05-16 11:37:31 +00:00
|
|
|
bool Drag( const VECTOR2I& aP );
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2014-05-14 13:53:54 +00:00
|
|
|
/**
|
|
|
|
* Function FixRoute()
|
|
|
|
*
|
2015-02-18 16:53:46 +00:00
|
|
|
* Checks if the result of current dragging operation is correct
|
2014-05-14 13:53:54 +00:00
|
|
|
* and eventually commits it to the world.
|
|
|
|
* @return true, if dragging finished with success.
|
|
|
|
*/
|
2014-05-16 11:37:31 +00:00
|
|
|
bool FixRoute();
|
2015-02-18 16:53:46 +00:00
|
|
|
|
|
|
|
/**
|
2014-05-14 13:53:54 +00:00
|
|
|
* Function CurrentNode()
|
|
|
|
*
|
|
|
|
* Returns the most recent world state, including all
|
|
|
|
* items changed due to dragging operation.
|
|
|
|
*/
|
2016-08-29 17:31:13 +00:00
|
|
|
NODE* CurrentNode() const;
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2014-05-14 13:53:54 +00:00
|
|
|
/**
|
|
|
|
* Function Traces()
|
|
|
|
*
|
|
|
|
* Returns the set of dragged items.
|
|
|
|
*/
|
2016-08-29 17:31:13 +00:00
|
|
|
const ITEM_SET Traces();
|
2014-05-14 13:53:54 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
/// @copydoc ALGO_BASE::Logger()
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual LOGGER* Logger() override;
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2017-08-03 15:53:07 +00:00
|
|
|
void SetMode( int aDragMode );
|
|
|
|
|
2014-05-14 13:53:54 +00:00
|
|
|
private:
|
2017-08-03 15:53:07 +00:00
|
|
|
|
2014-05-14 13:53:54 +00:00
|
|
|
|
2014-05-16 11:37:31 +00:00
|
|
|
bool dragMarkObstacles( const VECTOR2I& aP );
|
|
|
|
bool dragShove(const VECTOR2I& aP );
|
2016-08-29 17:31:13 +00:00
|
|
|
bool startDragSegment( const VECTOR2D& aP, SEGMENT* aSeg );
|
|
|
|
bool startDragVia( const VECTOR2D& aP, VIA* aVia );
|
|
|
|
void dumbDragVia( VIA* aVia, NODE* aNode, const VECTOR2I& aP );
|
|
|
|
|
|
|
|
NODE* m_world;
|
|
|
|
NODE* m_lastNode;
|
2017-08-03 15:53:07 +00:00
|
|
|
int m_mode;
|
2016-08-29 17:31:13 +00:00
|
|
|
LINE m_draggedLine;
|
|
|
|
VIA* m_draggedVia;
|
|
|
|
LINE m_lastValidDraggedLine;
|
|
|
|
SHOVE* m_shove;
|
|
|
|
int m_draggedSegmentIndex;
|
|
|
|
bool m_dragStatus;
|
|
|
|
PNS_MODE m_currentMode;
|
|
|
|
ITEM_SET m_origViaConnections;
|
|
|
|
VIA* m_initialVia;
|
|
|
|
ITEM_SET m_draggedItems;
|
2017-08-03 15:53:07 +00:00
|
|
|
bool m_freeAngleMode;
|
2014-05-14 13:53:54 +00:00
|
|
|
};
|
|
|
|
|
2016-08-29 14:38:11 +00:00
|
|
|
}
|
|
|
|
|
2014-05-14 13:53:54 +00:00
|
|
|
#endif
|