2010-09-28 14:42:05 +00:00
|
|
|
/*
|
2011-09-30 18:15:37 +00:00
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
2010-09-28 14:42:05 +00:00
|
|
|
*
|
2016-05-26 11:57:43 +00:00
|
|
|
* Copyright (C) 1992-2016 <Jean-Pierre Charras>
|
|
|
|
* Copyright (C) 1992-2016 KiCad Developers, see AUTHORS.txt for contributors.
|
2010-09-28 14:42:05 +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 2
|
|
|
|
* 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, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2011-10-17 20:01:27 +00:00
|
|
|
/**
|
2018-01-29 12:26:58 +00:00
|
|
|
* @file gerber_draw_item.h
|
2011-10-17 20:01:27 +00:00
|
|
|
*/
|
|
|
|
|
2018-01-29 12:26:58 +00:00
|
|
|
#ifndef GERBER_DRAW_ITEM_H
|
|
|
|
#define GERBER_DRAW_ITEM_H
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <base_struct.h>
|
2012-05-04 17:44:42 +00:00
|
|
|
#include <dlist.h>
|
2013-03-30 17:24:04 +00:00
|
|
|
#include <layers_id_colors_and_visibility.h>
|
2012-09-01 13:38:27 +00:00
|
|
|
#include <gr_basic.h>
|
2016-08-16 10:56:20 +00:00
|
|
|
#include <gbr_netlist_metadata.h>
|
2016-07-27 13:27:19 +00:00
|
|
|
#include <dcode.h>
|
2017-09-17 22:43:20 +00:00
|
|
|
#include <geometry/shape_poly_set.h>
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2016-05-25 14:48:38 +00:00
|
|
|
class GERBER_FILE_IMAGE;
|
2012-05-04 17:44:42 +00:00
|
|
|
class GBR_LAYOUT;
|
|
|
|
class D_CODE;
|
2013-01-12 17:32:24 +00:00
|
|
|
class MSG_PANEL_ITEM;
|
2016-06-02 09:30:39 +00:00
|
|
|
class GBR_DISPLAY_OPTIONS;
|
2010-09-28 14:42:05 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
namespace KIGFX
|
|
|
|
{
|
|
|
|
class VIEW;
|
2017-11-02 20:41:29 +00:00
|
|
|
}
|
2017-09-17 22:43:20 +00:00
|
|
|
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
/* Shapes id for basic shapes ( .m_Shape member ) */
|
|
|
|
enum Gbr_Basic_Shapes {
|
|
|
|
GBR_SEGMENT = 0, // usual segment : line with rounded ends
|
|
|
|
GBR_ARC, // Arcs (with rounded ends)
|
|
|
|
GBR_CIRCLE, // ring
|
|
|
|
GBR_POLYGON, // polygonal shape
|
|
|
|
GBR_SPOT_CIRCLE, // flashed shape: round shape (can have hole)
|
|
|
|
GBR_SPOT_RECT, // flashed shape: rectangular shape can have hole)
|
|
|
|
GBR_SPOT_OVAL, // flashed shape: oval shape
|
2011-10-17 20:01:27 +00:00
|
|
|
GBR_SPOT_POLY, // flashed shape: regular polygon, 3 to 12 edges
|
2010-09-28 19:34:16 +00:00
|
|
|
GBR_SPOT_MACRO, // complex shape described by a macro
|
2010-09-28 14:42:05 +00:00
|
|
|
GBR_LAST // last value for this list
|
|
|
|
};
|
|
|
|
|
|
|
|
/***/
|
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
class GERBER_DRAW_ITEM : public EDA_ITEM
|
2010-09-28 14:42:05 +00:00
|
|
|
{
|
|
|
|
// make SetNext() and SetBack() private so that they may not be called from anywhere.
|
|
|
|
// list management is done on GERBER_DRAW_ITEMs using DLIST<GERBER_DRAW_ITEM> only.
|
|
|
|
private:
|
2010-12-08 20:12:46 +00:00
|
|
|
void SetNext( EDA_ITEM* aNext ) { Pnext = aNext; }
|
|
|
|
void SetBack( EDA_ITEM* aBack ) { Pback = aBack; }
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
public:
|
2011-10-17 20:01:27 +00:00
|
|
|
bool m_UnitsMetric; /* store here the gerber units (inch/mm). Used
|
|
|
|
* only to calculate aperture macros shapes sizes */
|
2010-09-28 14:42:05 +00:00
|
|
|
int m_Shape; // Shape and type of this gerber item
|
|
|
|
wxPoint m_Start; // Line or arc start point or position of the shape
|
|
|
|
// for flashed items
|
|
|
|
wxPoint m_End; // Line or arc end point
|
|
|
|
wxPoint m_ArcCentre; // for arcs only: Centre of arc
|
2017-09-17 22:43:20 +00:00
|
|
|
SHAPE_POLY_SET m_Polygon; // Polygon shape data (G36 to G37 coordinates)
|
2010-09-28 14:42:05 +00:00
|
|
|
// or for complex shapes which are converted to polygon
|
2010-10-09 20:05:03 +00:00
|
|
|
wxSize m_Size; // Flashed shapes: size of the shape
|
2010-09-28 14:42:05 +00:00
|
|
|
// Lines : m_Size.x = m_Size.y = line width
|
|
|
|
bool m_Flashed; // True for flashed items
|
|
|
|
int m_DCode; // DCode used to draw this item.
|
|
|
|
// 0 for items that do not use DCodes (polygons)
|
|
|
|
// or when unknown and normal values are 10 to 999
|
|
|
|
// values 0 to 9 can be used for special purposes
|
2016-05-26 07:50:49 +00:00
|
|
|
GERBER_FILE_IMAGE* m_GerberImageFile; /* Gerber file image source of this item
|
2010-10-09 20:05:03 +00:00
|
|
|
* Note: some params stored in this class are common
|
2011-10-17 20:01:27 +00:00
|
|
|
* to the whole gerber file (i.e) the whole graphic
|
2016-05-26 07:50:49 +00:00
|
|
|
* layer and some can change when reading the file,
|
|
|
|
* so they are stored inside this item if there is no
|
2011-10-17 20:01:27 +00:00
|
|
|
* redundancy for these parameters
|
2010-10-09 20:05:03 +00:00
|
|
|
*/
|
2016-07-27 13:27:19 +00:00
|
|
|
|
2010-10-16 14:51:22 +00:00
|
|
|
private:
|
|
|
|
// These values are used to draw this item, according to gerber layers parameters
|
2011-10-17 20:01:27 +00:00
|
|
|
// Because they can change inside a gerber image, they are stored here
|
2010-10-16 14:51:22 +00:00
|
|
|
// for each item
|
2011-10-17 20:01:27 +00:00
|
|
|
bool m_LayerNegative; // true = item in negative Layer
|
2010-10-09 20:05:03 +00:00
|
|
|
bool m_swapAxis; // false if A = X, B = Y; true if A =Y, B = Y
|
|
|
|
bool m_mirrorA; // true: mirror / axe A
|
|
|
|
bool m_mirrorB; // true: mirror / axe B
|
|
|
|
wxRealPoint m_drawScale; // A and B scaling factor
|
2010-10-16 14:51:22 +00:00
|
|
|
wxPoint m_layerOffset; // Offset for A and B axis, from OF parameter
|
2010-10-17 16:42:06 +00:00
|
|
|
double m_lyrRotation; // Fine rotation, from OR parameter, in degrees
|
2016-08-16 10:56:20 +00:00
|
|
|
GBR_NETLIST_METADATA m_netAttributes; ///< the string given by a %TO attribute set in aperture
|
|
|
|
///< (dcode). Stored in each item, because %TO is
|
|
|
|
///< a dynamic object attribute
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
public:
|
2016-05-26 11:57:43 +00:00
|
|
|
GERBER_DRAW_ITEM( GERBER_FILE_IMAGE* aGerberparams );
|
2010-09-28 14:42:05 +00:00
|
|
|
~GERBER_DRAW_ITEM();
|
|
|
|
|
2014-04-30 19:16:22 +00:00
|
|
|
GERBER_DRAW_ITEM* Next() const { return static_cast<GERBER_DRAW_ITEM*>( Pnext ); }
|
|
|
|
GERBER_DRAW_ITEM* Back() const { return static_cast<GERBER_DRAW_ITEM*>( Pback ); }
|
2010-09-28 14:42:05 +00:00
|
|
|
|
2016-08-16 10:56:20 +00:00
|
|
|
void SetNetAttributes( const GBR_NETLIST_METADATA& aNetAttributes );
|
2017-09-17 22:43:20 +00:00
|
|
|
const GBR_NETLIST_METADATA& GetNetAttributes() const { return m_netAttributes; }
|
2016-08-16 10:56:20 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
/**
|
|
|
|
* Function GetLayer
|
|
|
|
* returns the layer this item is on.
|
|
|
|
*/
|
2016-05-26 11:57:43 +00:00
|
|
|
int GetLayer() const;
|
2010-09-28 14:42:05 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
bool GetLayerPolarity() const
|
2010-10-16 14:51:22 +00:00
|
|
|
{
|
|
|
|
return m_LayerNegative;
|
|
|
|
}
|
2010-12-18 18:47:58 +00:00
|
|
|
|
2017-11-13 10:30:23 +00:00
|
|
|
/**
|
|
|
|
* Returns the best size and orientation to display the D_Code on screen
|
|
|
|
* @param aSize is a reference to return the text size
|
|
|
|
* @param aPos is a reference to return the text position
|
|
|
|
* @param aOrientation is a reference to return the text orientation
|
|
|
|
* @return true if the parameters can be calculated, false for unknown D_Code
|
|
|
|
*/
|
|
|
|
bool GetTextD_CodePrms( int& aSize, wxPoint& aPos, double& aOrientation );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the best size and orientation to display the D_Code in GAL
|
|
|
|
* aOrientation is returned in radians
|
|
|
|
*/
|
|
|
|
bool GetTextD_CodePrms( double& aSize, VECTOR2D& aPos, double& aOrientation );
|
|
|
|
|
2010-12-15 20:15:24 +00:00
|
|
|
/**
|
|
|
|
* Function HasNegativeItems
|
|
|
|
* @return true if this item or at least one shape (when using aperture macros
|
|
|
|
* must be drawn in background color
|
|
|
|
* used to optimize screen refresh (when no items are in background color
|
|
|
|
* refresh can be faster)
|
|
|
|
*/
|
|
|
|
bool HasNegativeItems();
|
2010-09-28 14:42:05 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function SetLayerParameters
|
2010-10-09 20:05:03 +00:00
|
|
|
* Initialize parameters from Image and Layer parameters
|
|
|
|
* found in the gerber file:
|
|
|
|
* m_UnitsMetric,
|
|
|
|
* m_MirrorA, m_MirrorB,
|
|
|
|
* m_DrawScale, m_DrawOffset
|
|
|
|
*/
|
2011-10-17 20:01:27 +00:00
|
|
|
void SetLayerParameters();
|
2010-10-09 20:05:03 +00:00
|
|
|
|
2010-10-16 14:51:22 +00:00
|
|
|
void SetLayerPolarity( bool aNegative)
|
|
|
|
{
|
|
|
|
m_LayerNegative = aNegative;
|
|
|
|
}
|
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
/**
|
2010-10-15 18:59:26 +00:00
|
|
|
* Function MoveAB
|
2010-09-28 14:42:05 +00:00
|
|
|
* move this object.
|
2010-12-18 18:47:58 +00:00
|
|
|
* @param aMoveVector - the move vector for this object.
|
2010-09-28 14:42:05 +00:00
|
|
|
*/
|
2010-10-15 18:59:26 +00:00
|
|
|
void MoveAB( const wxPoint& aMoveVector );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function MoveXY
|
|
|
|
* move this object.
|
2010-12-18 18:47:58 +00:00
|
|
|
* @param aMoveVector - the move vector for this object, in XY gerber axis.
|
2010-10-15 18:59:26 +00:00
|
|
|
*/
|
|
|
|
void MoveXY( const wxPoint& aMoveVector );
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetPosition
|
|
|
|
* returns the position of this object.
|
|
|
|
* @return const wxPoint& - The position of this object.
|
2010-10-09 20:05:03 +00:00
|
|
|
* This function exists mainly to satisfy the virtual GetPosition() in parent class
|
2010-09-28 14:42:05 +00:00
|
|
|
*/
|
2017-12-18 17:24:25 +00:00
|
|
|
const wxPoint GetPosition() const { return m_Start; }
|
2012-02-20 04:33:54 +00:00
|
|
|
void SetPosition( const wxPoint& aPos ) { m_Start = aPos; }
|
2011-11-29 17:25:30 +00:00
|
|
|
|
2010-10-09 20:05:03 +00:00
|
|
|
/**
|
|
|
|
* Function GetABPosition
|
|
|
|
* returns the image position of aPosition for this object.
|
|
|
|
* Image position is the value of aPosition, modified by image parameters:
|
|
|
|
* offsets, axis selection, scale, rotation
|
2010-10-10 17:57:54 +00:00
|
|
|
* @param aXYPosition = position in X,Y gerber axis
|
|
|
|
* @return const wxPoint - The given position in plotter A,B axis.
|
2010-10-09 20:05:03 +00:00
|
|
|
*/
|
2010-12-10 19:47:44 +00:00
|
|
|
wxPoint GetABPosition( const wxPoint& aXYPosition ) const;
|
2010-10-10 17:57:54 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
VECTOR2I GetABPosition( const VECTOR2I& aXYPosition ) const
|
|
|
|
{
|
|
|
|
return VECTOR2I( GetABPosition( wxPoint( aXYPosition.x, aXYPosition.y ) ) );
|
|
|
|
}
|
|
|
|
|
2010-10-10 17:57:54 +00:00
|
|
|
/**
|
|
|
|
* Function GetXYPosition
|
|
|
|
* returns the image position of aPosition for this object.
|
|
|
|
* Image position is the value of aPosition, modified by image parameters:
|
|
|
|
* offsets, axis selection, scale, rotation
|
|
|
|
* @param aABPosition = position in A,B plotter axis
|
|
|
|
* @return const wxPoint - The given position in X,Y axis.
|
|
|
|
*/
|
2014-05-04 17:08:36 +00:00
|
|
|
wxPoint GetXYPosition( const wxPoint& aABPosition ) const;
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetDcodeDescr
|
|
|
|
* returns the GetDcodeDescr of this object, or NULL.
|
|
|
|
* @return D_CODE* - a pointer to the DCode description (for flashed items).
|
|
|
|
*/
|
2017-09-17 22:43:20 +00:00
|
|
|
D_CODE* GetDcodeDescr() const;
|
2010-09-28 14:42:05 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
const EDA_RECT GetBoundingBox() const override;
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
/* Display on screen: */
|
2016-05-26 11:57:43 +00:00
|
|
|
void Draw( EDA_DRAW_PANEL* aPanel, wxDC* aDC,
|
2016-06-02 09:30:39 +00:00
|
|
|
GR_DRAWMODE aDrawMode, const wxPoint&aOffset, GBR_DISPLAY_OPTIONS* aDrawOptions );
|
2010-09-28 14:42:05 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function ConvertSegmentToPolygon
|
2010-10-25 07:43:50 +00:00
|
|
|
* convert a line to an equivalent polygon.
|
|
|
|
* Useful when a line is plotted using a rectangular pen.
|
|
|
|
* In this case, the usual segment plot function cannot be used
|
|
|
|
*/
|
2011-10-17 20:01:27 +00:00
|
|
|
void ConvertSegmentToPolygon();
|
2010-10-25 07:43:50 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function DrawGbrPoly
|
2010-12-14 15:56:30 +00:00
|
|
|
* a helper function used to draw the polygon stored in m_PolyCorners
|
2010-09-28 14:42:05 +00:00
|
|
|
*/
|
2017-02-20 16:57:41 +00:00
|
|
|
void DrawGbrPoly( EDA_RECT* aClipBox, wxDC* aDC, COLOR4D aColor,
|
2010-09-28 14:42:05 +00:00
|
|
|
const wxPoint& aOffset, bool aFilledShape );
|
|
|
|
|
|
|
|
/* divers */
|
|
|
|
int Shape() const { return m_Shape; }
|
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
void GetMsgPanelInfo( EDA_UNITS_T aUnits, std::vector< MSG_PANEL_ITEM >& aList ) override;
|
2010-09-28 14:42:05 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
wxString ShowGBRShape() const;
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function HitTest
|
|
|
|
* tests if the given wxPoint is within the bounds of this object.
|
2010-12-18 18:47:58 +00:00
|
|
|
* @param aRefPos a wxPoint to test
|
2010-09-28 14:42:05 +00:00
|
|
|
* @return bool - true if a hit, else false
|
|
|
|
*/
|
2016-09-24 18:53:15 +00:00
|
|
|
bool HitTest( const wxPoint& aRefPos ) const override;
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
/**
|
2011-10-17 20:01:27 +00:00
|
|
|
* Function HitTest (overloaded)
|
2010-09-28 14:42:05 +00:00
|
|
|
* tests if the given wxRect intersect this object.
|
|
|
|
* For now, an ending point must be inside this rect.
|
2010-12-18 18:47:58 +00:00
|
|
|
* @param aRefArea a wxPoint to test
|
2010-09-28 14:42:05 +00:00
|
|
|
* @return bool - true if a hit, else false
|
|
|
|
*/
|
2014-05-04 17:08:36 +00:00
|
|
|
bool HitTest( const EDA_RECT& aRefArea ) const;
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetClass
|
|
|
|
* returns the class name.
|
|
|
|
* @return wxString
|
|
|
|
*/
|
2016-09-25 17:06:49 +00:00
|
|
|
wxString GetClass() const override
|
2010-09-28 14:42:05 +00:00
|
|
|
{
|
|
|
|
return wxT( "GERBER_DRAW_ITEM" );
|
|
|
|
}
|
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
/**
|
|
|
|
* Function UnLink
|
|
|
|
* detaches this object from its owner.
|
|
|
|
*/
|
|
|
|
void UnLink()
|
|
|
|
{
|
|
|
|
DLIST<GERBER_DRAW_ITEM>* list = (DLIST<GERBER_DRAW_ITEM>*) GetList();
|
|
|
|
wxASSERT( list );
|
|
|
|
|
|
|
|
if( list )
|
|
|
|
list->Remove( this );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function DeleteStructure
|
|
|
|
* deletes this object after UnLink()ing it from its owner.
|
|
|
|
*/
|
|
|
|
void DeleteStructure()
|
|
|
|
{
|
|
|
|
UnLink();
|
|
|
|
delete this;
|
|
|
|
}
|
2010-09-29 06:05:36 +00:00
|
|
|
#if defined(DEBUG)
|
2016-09-25 17:06:49 +00:00
|
|
|
void Show( int nestLevel, std::ostream& os ) const override;
|
2010-09-29 06:05:36 +00:00
|
|
|
#endif
|
2011-12-14 17:25:42 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
/// @copydoc VIEW_ITEM::ViewGetLayers()
|
|
|
|
virtual void ViewGetLayers( int aLayers[], int& aCount ) const override;
|
|
|
|
|
|
|
|
/// @copydoc VIEW_ITEM::ViewBBox()
|
|
|
|
virtual const BOX2I ViewBBox() const override;
|
|
|
|
|
|
|
|
/// @copydoc VIEW_ITEM::ViewGetLOD()
|
|
|
|
virtual unsigned int ViewGetLOD( int aLayer, KIGFX::VIEW* aView ) const override;
|
|
|
|
|
|
|
|
///> @copydoc EDA_ITEM::Visit()
|
|
|
|
SEARCH_RESULT Visit( INSPECTOR inspector, void* testData, const KICAD_T scanTypes[] ) override;
|
|
|
|
|
2018-05-17 08:24:09 +00:00
|
|
|
///> @copydoc EDA_ITEM::GetSelectMenuText()
|
2018-04-10 10:52:12 +00:00
|
|
|
virtual wxString GetSelectMenuText( EDA_UNITS_T aUnits ) const override;
|
2017-09-17 22:43:20 +00:00
|
|
|
|
2018-05-17 08:24:09 +00:00
|
|
|
///> @copydoc EDA_ITEM::GetMenuImage()
|
|
|
|
BITMAP_DEF GetMenuImage() const override;
|
2017-09-17 22:43:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class GERBER_NEGATIVE_IMAGE_BACKDROP : public EDA_ITEM
|
|
|
|
{
|
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
};
|
|
|
|
|
2018-01-29 12:26:58 +00:00
|
|
|
#endif /* GERBER_DRAW_ITEM_H */
|