2013-09-18 17:55:16 +00:00
|
|
|
/*
|
|
|
|
* KiRouter - a push-and-(sometimes-)shove PCB router
|
|
|
|
*
|
2014-05-14 13:53:54 +00:00
|
|
|
* Copyright (C) 2013-2014 CERN
|
2016-08-29 14:38:11 +00:00
|
|
|
* Copyright (C) 2016 KiCad Developers, see AUTHORS.txt for contributors.
|
2013-09-18 17:55:16 +00:00
|
|
|
* Author: Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
2013-09-26 21:53:54 +00:00
|
|
|
*
|
2013-09-18 17:55:16 +00: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 21:53:54 +00:00
|
|
|
*
|
2013-09-18 17:55:16 +00: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 21:53:54 +00:00
|
|
|
*
|
2013-09-18 17:55:16 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
2014-05-14 13:53:54 +00:00
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
2013-09-18 17:55:16 +00:00
|
|
|
*/
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2013-09-18 17:55:16 +00:00
|
|
|
#ifndef __ROUTER_PREVIEW_ITEM_H
|
|
|
|
#define __ROUTER_PREVIEW_ITEM_H
|
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
|
|
|
|
#include <view/view.h>
|
|
|
|
#include <view/view_item.h>
|
|
|
|
#include <view/view_group.h>
|
|
|
|
|
|
|
|
#include <math/vector2d.h>
|
|
|
|
#include <math/box2.h>
|
|
|
|
|
|
|
|
#include <geometry/shape_line_chain.h>
|
|
|
|
#include <geometry/shape_circle.h>
|
|
|
|
|
|
|
|
#include <gal/color4d.h>
|
|
|
|
#include <gal/graphics_abstraction_layer.h>
|
|
|
|
|
|
|
|
#include <layers_id_colors_and_visibility.h>
|
|
|
|
|
2016-08-29 14:38:11 +00:00
|
|
|
namespace PNS {
|
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
class ITEM;
|
|
|
|
class ROUTER;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2016-08-29 14:38:11 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 17:55:16 +00:00
|
|
|
class ROUTER_PREVIEW_ITEM : public EDA_ITEM
|
|
|
|
{
|
2013-09-26 21:53:54 +00:00
|
|
|
public:
|
2014-05-16 11:37:31 +00:00
|
|
|
enum ITEM_TYPE
|
2013-09-26 21:53:54 +00:00
|
|
|
{
|
2014-05-14 13:53:54 +00:00
|
|
|
PR_STUCK_MARKER = 0,
|
|
|
|
PR_POINT,
|
|
|
|
PR_SHAPE
|
2013-09-26 21:53:54 +00:00
|
|
|
};
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2016-12-02 17:58:12 +00:00
|
|
|
ROUTER_PREVIEW_ITEM( const PNS::ITEM* aItem = NULL, KIGFX::VIEW* aView = NULL);
|
2013-09-26 21:53:54 +00:00
|
|
|
~ROUTER_PREVIEW_ITEM();
|
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
void Update( const PNS::ITEM* aItem );
|
2013-09-26 21:53:54 +00:00
|
|
|
|
|
|
|
void StuckMarker( VECTOR2I& aPosition );
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2014-05-14 13:53:54 +00:00
|
|
|
void Line( const SHAPE_LINE_CHAIN& aLine, int aWidth = 0, int aStyle = 0 );
|
|
|
|
void Box( const BOX2I& aBox, int aStyle = 0 );
|
|
|
|
void Point ( const VECTOR2I& aPos, int aStyle = 0);
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
void SetColor( const KIGFX::COLOR4D& aColor )
|
2014-05-14 13:53:54 +00:00
|
|
|
{
|
|
|
|
m_color = aColor;
|
|
|
|
}
|
|
|
|
|
2014-05-16 11:37:31 +00:00
|
|
|
void SetClearance( int aClearance )
|
2014-05-14 13:53:54 +00:00
|
|
|
{
|
|
|
|
m_clearance = aClearance;
|
|
|
|
}
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2017-01-25 09:33:49 +00:00
|
|
|
void ShowTrackClearance( bool aEnabled )
|
|
|
|
{
|
|
|
|
m_showTrackClearance = aEnabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShowViaClearance( bool aEnabled )
|
|
|
|
{
|
|
|
|
m_showViaClearance = aEnabled;
|
|
|
|
}
|
|
|
|
|
2015-03-06 08:58:32 +00:00
|
|
|
#if defined(DEBUG)
|
2016-09-24 18:53:15 +00:00
|
|
|
void Show( int aA, std::ostream& aB ) const override {}
|
2015-03-06 08:58:32 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/** Get class name
|
|
|
|
* @return string "ROUTER_PREVIEW_ITEM"
|
|
|
|
*/
|
2016-09-25 17:06:49 +00:00
|
|
|
virtual wxString GetClass() const override
|
2015-03-06 08:58:32 +00:00
|
|
|
{
|
|
|
|
return wxT( "ROUTER_PREVIEW_ITEM" );
|
|
|
|
}
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
const BOX2I ViewBBox() const override;
|
2013-09-18 17:55:16 +00:00
|
|
|
|
2016-12-02 17:58:12 +00:00
|
|
|
virtual void ViewDraw( int aLayer, KIGFX::VIEW* aView ) const override;
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
virtual void ViewGetLayers( int aLayers[], int& aCount ) const override
|
2013-09-26 21:53:54 +00:00
|
|
|
{
|
2014-02-03 12:09:10 +00:00
|
|
|
aLayers[0] = m_layer;
|
2013-09-26 21:53:54 +00:00
|
|
|
aCount = 1;
|
|
|
|
}
|
|
|
|
|
2014-07-07 08:48:47 +00:00
|
|
|
void drawLineChain( const SHAPE_LINE_CHAIN& aL, KIGFX::GAL* aGal ) const;
|
2013-09-26 21:53:54 +00:00
|
|
|
|
|
|
|
private:
|
2013-10-14 14:13:35 +00:00
|
|
|
const KIGFX::COLOR4D assignColor( int aStyle ) const;
|
|
|
|
const KIGFX::COLOR4D getLayerColor( int aLayer ) const;
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2016-12-02 17:58:12 +00:00
|
|
|
KIGFX::VIEW* m_view;
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2016-08-29 17:31:13 +00:00
|
|
|
PNS::ROUTER* m_router;
|
2014-05-16 11:37:31 +00:00
|
|
|
SHAPE* m_shape;
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2014-05-16 11:37:31 +00:00
|
|
|
ITEM_TYPE m_type;
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2013-09-26 21:53:54 +00:00
|
|
|
int m_style;
|
|
|
|
int m_width;
|
|
|
|
int m_layer;
|
2014-05-14 13:53:54 +00:00
|
|
|
int m_originLayer;
|
|
|
|
int m_clearance;
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2017-01-25 09:33:49 +00:00
|
|
|
bool m_showTrackClearance;
|
|
|
|
bool m_showViaClearance;
|
|
|
|
|
2014-05-14 13:53:54 +00:00
|
|
|
// fixme: shouldn't this go to VIEW?
|
2015-03-30 19:49:30 +00:00
|
|
|
static const int ClearanceOverlayDepth;
|
|
|
|
static const int BaseOverlayDepth;
|
|
|
|
static const int ViaOverlayDepth;
|
2014-05-14 13:53:54 +00:00
|
|
|
|
|
|
|
double m_depth;
|
2013-09-26 21:53:54 +00:00
|
|
|
|
2014-05-14 13:53:54 +00:00
|
|
|
KIGFX::COLOR4D m_color;
|
|
|
|
VECTOR2I m_pos;
|
2013-09-26 21:53:54 +00:00
|
|
|
};
|
2013-09-18 17:55:16 +00:00
|
|
|
|
|
|
|
#endif
|