284 lines
9.8 KiB
C++
284 lines
9.8 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
|
* Copyright (C) 2011 Wayne Stambaugh <stambaughw@verizon.net>
|
|
* Copyright (C) 1992-2011 KiCad Developers, see AUTHORS.txt for contributors.
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
/**
|
|
* @file class_drawsegment.h
|
|
* @brief Class to handle a graphic segment.
|
|
*/
|
|
|
|
#ifndef CLASS_DRAWSEGMENT_H_
|
|
#define CLASS_DRAWSEGMENT_H_
|
|
|
|
|
|
#include <class_board_item.h>
|
|
#include <PolyLine.h>
|
|
|
|
|
|
class LINE_READER;
|
|
class EDA_DRAW_FRAME;
|
|
class MODULE;
|
|
|
|
|
|
class DRAWSEGMENT : public BOARD_ITEM
|
|
{
|
|
protected:
|
|
int m_Width; ///< thickness of lines ...
|
|
wxPoint m_Start; ///< Line start point or Circle and Arc center
|
|
wxPoint m_End; ///< Line end point or circle and arc start point
|
|
|
|
int m_Shape; ///< Shape: line, Circle, Arc
|
|
int m_Type; ///< Used in complex associations ( Dimensions.. )
|
|
double m_Angle; ///< Used only for Arcs: Arc angle in 1/10 deg
|
|
wxPoint m_BezierC1; ///< Bezier Control Point 1
|
|
wxPoint m_BezierC2; ///< Bezier Control Point 1
|
|
|
|
std::vector<wxPoint> m_BezierPoints;
|
|
std::vector<wxPoint> m_PolyPoints;
|
|
|
|
public:
|
|
DRAWSEGMENT( BOARD_ITEM* aParent = NULL, KICAD_T idtype = PCB_LINE_T );
|
|
|
|
// Do not create a copy constructor. The one generated by the compiler is adequate.
|
|
|
|
~DRAWSEGMENT();
|
|
|
|
/// skip the linked list stuff, and parent
|
|
const DRAWSEGMENT& operator = ( const DRAWSEGMENT& rhs );
|
|
|
|
DRAWSEGMENT* Next() const { return (DRAWSEGMENT*) Pnext; }
|
|
DRAWSEGMENT* Back() const { return (DRAWSEGMENT*) Pback; }
|
|
|
|
void SetWidth( int aWidth ) { m_Width = aWidth; }
|
|
int GetWidth() const { return m_Width; }
|
|
|
|
/**
|
|
* Function SetAngle
|
|
* sets the angle for arcs, and normalizes it within the range 0 - 360 degrees.
|
|
* @param aAngle is tenths of degrees, but will soon be degrees.
|
|
*/
|
|
void SetAngle( double aAngle ); // encapsulates the transition to degrees
|
|
double GetAngle() const { return m_Angle; }
|
|
|
|
void SetType( int aType ) { m_Type = aType; }
|
|
int GetType() const { return m_Type; }
|
|
|
|
void SetShape( int aShape ) { m_Shape = aShape; }
|
|
int GetShape() const { return m_Shape; }
|
|
|
|
void SetBezControl1( const wxPoint& aPoint ) { m_BezierC1 = aPoint; }
|
|
const wxPoint& GetBezControl1() const { return m_BezierC1; }
|
|
|
|
void SetBezControl2( const wxPoint& aPoint ) { m_BezierC2 = aPoint; }
|
|
const wxPoint& GetBezControl2() const { return m_BezierC2; }
|
|
|
|
void SetPosition( const wxPoint& aPos ) { m_Start = aPos; } // override
|
|
const wxPoint& GetPosition() const { return m_Start; } // override
|
|
|
|
/**
|
|
* Function GetStart
|
|
* returns the starting point of the graphic
|
|
*/
|
|
const wxPoint& GetStart() const { return m_Start; }
|
|
void SetStart( const wxPoint& aStart ) { m_Start = aStart; }
|
|
void SetStartY( int y ) { m_Start.y = y; }
|
|
void SetStartX( int x ) { m_Start.x = x; }
|
|
|
|
/**
|
|
* Function GetEnd
|
|
* returns the ending point of the graphic
|
|
*/
|
|
const wxPoint& GetEnd() const { return m_End; }
|
|
void SetEnd( const wxPoint& aEnd ) { m_End = aEnd; }
|
|
void SetEndY( int y ) { m_End.y = y; }
|
|
void SetEndX( int x ) { m_End.x = x; }
|
|
|
|
// Arc attributes are read only, since they are "calculated" from
|
|
// m_Start, m_End, and m_Angle. No Set...() functions.
|
|
|
|
const wxPoint& GetCenter() const { return m_Start; }
|
|
const wxPoint& GetArcStart() const { return m_End; }
|
|
const wxPoint GetArcEnd() const;
|
|
|
|
/**
|
|
* Function GetRadius
|
|
* returns the radius of this item
|
|
* Has meaning only for arc and circle
|
|
*/
|
|
int GetRadius() const
|
|
{
|
|
double radius = hypot( (double) (m_End.x - m_Start.x), (double) (m_End.y - m_Start.y) );
|
|
return wxRound( radius );
|
|
}
|
|
|
|
/**
|
|
* Function GetParentModule
|
|
* returns a pointer to the parent module, or NULL if DRAWSEGMENT does not
|
|
* belong to a module.
|
|
* @return MODULE* - pointer to the parent module or NULL.
|
|
*/
|
|
MODULE* GetParentModule() const;
|
|
|
|
const std::vector<wxPoint>& GetBezierPoints() const { return m_BezierPoints; };
|
|
const std::vector<wxPoint>& GetPolyPoints() const { return m_PolyPoints; };
|
|
|
|
void SetBezierPoints( std::vector<wxPoint>& aPoints )
|
|
{
|
|
m_BezierPoints = aPoints;
|
|
}
|
|
|
|
void SetPolyPoints( std::vector<wxPoint>& aPoints )
|
|
{
|
|
m_PolyPoints = aPoints;
|
|
}
|
|
|
|
/**
|
|
* Function Save
|
|
* writes the data structures for this object out to a FILE in "*.brd" format.
|
|
* @param aFile The FILE to write to.
|
|
* @return bool - true if success writing else false.
|
|
*/
|
|
bool Save( FILE* aFile ) const;
|
|
|
|
bool ReadDrawSegmentDescr( LINE_READER* aReader );
|
|
|
|
void Copy( DRAWSEGMENT* source );
|
|
|
|
void Draw( EDA_DRAW_PANEL* panel, wxDC* DC,
|
|
int aDrawMode, const wxPoint& aOffset = ZeroOffset );
|
|
|
|
/**
|
|
* Function DisplayInfo
|
|
* has knowledge about the frame and how and where to put status information
|
|
* about this object into the frame's message panel.
|
|
* Is virtual from EDA_ITEM.
|
|
* @param frame A PCB_BASE_FRAME in which to print status information.
|
|
*/
|
|
virtual void DisplayInfo( EDA_DRAW_FRAME* frame );
|
|
|
|
/**
|
|
* Function GetBoundingBox
|
|
* returns the orthogonal, bounding box of this object for display purposes.
|
|
* This box should be an enclosing perimeter for visible components of this
|
|
* object, and the units should be in the pcb or schematic coordinate system.
|
|
* It is OK to overestimate the size by a few counts.
|
|
*/
|
|
virtual EDA_RECT GetBoundingBox() const;
|
|
|
|
/**
|
|
* Function HitTest
|
|
* tests if the given wxPoint is within the bounds of this object.
|
|
* @param aRefPos A wxPoint to test
|
|
* @return bool - true if a hit, else false
|
|
*/
|
|
bool HitTest( const wxPoint& aRefPos );
|
|
|
|
/**
|
|
* Function HitTest (overlayed)
|
|
* tests if the given EDA_RECT intersect this object.
|
|
* For now, an ending point must be inside this rect.
|
|
* @param refArea the given EDA_RECT to test
|
|
* @return bool - true if a hit, else false
|
|
*/
|
|
bool HitTest( EDA_RECT& refArea );
|
|
|
|
/**
|
|
* Function GetClass
|
|
* returns the class name.
|
|
* @return wxString
|
|
*/
|
|
wxString GetClass() const
|
|
{
|
|
return wxT( "DRAWSEGMENT" );
|
|
}
|
|
|
|
/**
|
|
* Function GetLength
|
|
* returns the length of the track using the hypotenuse calculation.
|
|
* @return double - the length of the track
|
|
*/
|
|
double GetLength() const
|
|
{
|
|
wxPoint delta = GetEnd() - GetStart();
|
|
|
|
return hypot( double( delta.x ), double( delta.y ) );
|
|
}
|
|
|
|
/**
|
|
* Function Move
|
|
* move this object.
|
|
* @param aMoveVector - the move vector for this object.
|
|
*/
|
|
virtual void Move( const wxPoint& aMoveVector )
|
|
{
|
|
m_Start += aMoveVector;
|
|
m_End += aMoveVector;
|
|
}
|
|
|
|
/**
|
|
* Function Rotate
|
|
* Rotate this object.
|
|
* @param aRotCentre - the rotation point.
|
|
* @param aAngle - the rotation angle in 0.1 degree.
|
|
*/
|
|
virtual void Rotate( const wxPoint& aRotCentre, double aAngle );
|
|
|
|
/**
|
|
* Function Flip
|
|
* Flip this object, i.e. change the board side for this object
|
|
* @param aCentre - the rotation point.
|
|
*/
|
|
virtual void Flip( const wxPoint& aCentre );
|
|
|
|
/**
|
|
* Function TransformShapeWithClearanceToPolygon
|
|
* Convert the track shape to a closed polygon
|
|
* Used in filling zones calculations
|
|
* Circles and arcs are approximated by segments
|
|
* @param aCornerBuffer = a buffer to store the polygon
|
|
* @param aClearanceValue = the clearance around the pad
|
|
* @param aCircleToSegmentsCount = the number of segments to approximate a circle
|
|
* @param aCorrectionFactor = the correction to apply to circles radius to keep
|
|
* clearance when the circle is approximated by segment bigger or equal
|
|
* to the real clearance value (usually near from 1.0)
|
|
*/
|
|
void TransformShapeWithClearanceToPolygon( std::vector <CPolyPt>& aCornerBuffer,
|
|
int aClearanceValue,
|
|
int aCircleToSegmentsCount,
|
|
double aCorrectionFactor );
|
|
|
|
virtual wxString GetSelectMenuText() const;
|
|
|
|
virtual BITMAP_DEF GetMenuImage() const { return add_dashed_line_xpm; }
|
|
|
|
#if defined(DEBUG)
|
|
void Show( int nestLevel, std::ostream& os ) const; // overload
|
|
#endif
|
|
|
|
private:
|
|
virtual EDA_ITEM* doClone() const;
|
|
};
|
|
|
|
#endif // CLASS_DRAWSEGMENT_H_
|