kicad/common/gr_basic.cpp

1986 lines
52 KiB
C++
Raw Normal View History

2007-10-31 06:40:15 +00:00
/********************************/
/* Low level graphics routines */
/********************************/
#include "fctsys.h"
#include "gr_basic.h"
#include "common.h"
#include "trigo.h"
#include "macros.h"
#include "base_struct.h"
#include "class_base_screen.h"
2009-06-25 20:45:27 +00:00
#include "bezier_curves.h"
#include "math_for_graphics.h"
#include <wx/graphics.h>
2009-06-25 20:45:27 +00:00
#ifndef FILLED
#define FILLED 1
#endif
/* Important Note:
* These drawing functions clip draw item before send these items to wxDC draw
* functions. For guy who asks why i did it, see a sample of problems encountered
* when pixels
* coordinates overflow 16 bits values:
* http://trac.wxwidgets.org/ticket/10446
* Problems can be found under Windows **and** Linux (mainly when drawing arcs)
* (mainly at low zoom values (2, 1 or 0.5), in pcbnew)
* some of these problems could be now fixed in recent distributions.
*
* Currently (feb 2009) there are overflow problems when drawing solid (filled)
* polygons under linux without clipping
*
* So before removing clipping functions, be aware these bug (they are not in
* kicad or wxWidgets) are fixed by testing how are drawn complex lines arcs
* and solid polygons under Windows and Linux and remember users can have old
* versions with bugs
*/
/* Definitions for enabling and disabling debugging features in gr_basic.cpp.
* Please remember to set these back to 0 before making LAUNCHPAD commits.
*/
#define DEBUG_DUMP_CLIP_ERROR_COORDS 0 // Set to 1 to dump clip algorithm errors.
#define DEBUG_DUMP_CLIP_COORDS 0 // Set to 1 to dump clipped coordinates.
// For draw mode = XOR GR_XOR or GR_NXOR by background color
int g_XorMode = GR_NXOR;
// Background color of the design frame
int g_DrawBgColor = WHITE;
#define USE_CLIP_FILLED_POLYGONS
#ifdef USE_CLIP_FILLED_POLYGONS
static void ClipAndDrawFilledPoly( EDA_Rect * ClipBox, wxDC * DC, wxPoint Points[], int n );
#endif
/* These functions are used by corresponding functions
* ( GRSCircle is called by GRCircle for instance) after mapping coordinates
* from user units to screen units(pixels coordinates)
*/
static void GRSCircle( EDA_Rect* ClipBox, wxDC* DC, int x, int y, int r, int width, int Color );
2010-09-28 14:42:05 +00:00
static void GRSFilledCircle( EDA_Rect* ClipBox, wxDC* DC, int x, int y, int r,
int width, int Color, int BgColor );
static void GRSMixedLine( EDA_Rect* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2,
int width, int Color );
static void GRSDashedLineTo( EDA_Rect* ClipBox, wxDC* DC, int x2, int y2, int width, int Color );
static void GRSDashedLine( EDA_Rect* ClipBox, wxDC* DC, int x1, int y1, int x2,
int y2, int width, int Color );
static void GRSLine( EDA_Rect* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2,
int width, int Color );
static void GRSMoveTo( int x, int y );
static void GRSArc1( EDA_Rect* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2,
int xc, int yc, int width, int Color );
static void GRSArc( EDA_Rect* ClipBox, wxDC* DC, int x, int y, int StAngle,
int EndAngle, int r, int width, int Color );
static void GRSFilledArc( EDA_Rect* ClipBox, wxDC* DC, int x, int y, int StAngle,
int EndAngle, int r, int width, int Color, int BgColor );
static void GRSCSegm( EDA_Rect* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2,
int width, int aPenSize, int Color );
static void GRSLineArray( EDA_Rect * aClipBox, wxDC * aDC, std::vector<wxPoint>& aLines,
int aWidth, int aColor );
/**/
2007-10-31 06:40:15 +00:00
extern BASE_SCREEN* ActiveScreen;
static int GRLastMoveToX, GRLastMoveToY;
static bool s_ForceBlackPen; /* if true: draws in black instead of
* color for printing. */
static int xcliplo = 0,
ycliplo = 0,
xcliphi = 2000,
ycliphi = 2000;
2010-09-21 19:21:46 +00:00
static int s_DC_lastcolor = -1;
static int s_DC_lastwidth = -1;
2010-09-21 19:21:46 +00:00
static int s_DC_lastpenstyle = -1;
static int s_DC_lastbrushcolor = -1;
static int s_DC_lastbrushfill = -1;
static wxDC* s_DC_lastDC = NULL;
2007-10-31 06:40:15 +00:00
/* Local functions: */
static void GRSRect( EDA_Rect* aClipBox, wxDC* aDC, int x1, int y1,
int x2, int y2, int aWidth, int aColor,
wxPenStyle aStyle = wxPENSTYLE_SOLID );
/*
* Macro clipping the trace of a line:
* Line (x1, y1 x2, y2) is clipped to remain within
* (Xcliplo, ycliplo xcliphi, ycliphi) (global variables, local to this file)
* This is necessary because under WIN95 coord trace
* (Although an int has 32 bits) are truncated to 16 bits (stupid)
2007-10-31 06:40:15 +00:00
*/
static inline int USCALE( unsigned int arg, unsigned int num, unsigned int den )
{
#ifndef USE_WX_ZOOM
2007-10-31 06:40:15 +00:00
int ii;
ii = (int) ( ( (float) arg * num ) / den );
return ii;
#else
return arg;
#endif
}
static int inline ZoomValue( int val )
{
return ActiveScreen->Scale( val );
2007-10-31 06:40:15 +00:00
}
/****************************************/
/* External reference for the mappings. */
/****************************************/
2007-10-31 06:40:15 +00:00
int GRMapX( int x )
{
#ifndef USE_WX_ZOOM
int coord = x - ActiveScreen->m_DrawOrg.x;
2007-10-31 06:40:15 +00:00
coord = ZoomValue( coord );
coord -= ActiveScreen->m_StartVisu.x;
return coord;
#else
return x;
#endif
}
2007-10-31 06:40:15 +00:00
int GRMapY( int y )
{
#ifndef USE_WX_ZOOM
int coord = y - ActiveScreen->m_DrawOrg.y;
2007-10-31 06:40:15 +00:00
coord = ZoomValue( coord );
coord -= ActiveScreen->m_StartVisu.y;
return coord;
#else
return y;
#endif
}
2007-10-31 17:44:51 +00:00
#define WHEN_OUTSIDE return true;
2007-10-31 06:40:15 +00:00
#define WHEN_INSIDE
#if defined( USE_WX_ZOOM )
// currently only used if USE_WX_ZOOM is defined.
/**
* Test if any part of a line falls within the bounds of a rectangle.
*
* Please note that this is only accurate for lines that are one pixel wide.
*
* @param aRect - The rectangle to test.
* @param x1 - X coordinate of one end of a line.
* @param y1 - Y coordinate of one end of a line.
* @param x2 - X coordinate of the other end of a line.
* @param y2 - Y coordinate of the other end of a line.
*
* @return - False if any part of the line lies within the rectangle.
*/
static bool clipLine( EDA_Rect* aClipBox, int& x1, int& y1, int& x2, int& y2 )
{
if( aClipBox->Inside( x1, y1 ) && aClipBox->Inside( x2, y2 ) )
return false;
wxRect rect = *aClipBox;
int minX = rect.GetLeft();
int maxX = rect.GetRight();
int minY = rect.GetTop();
int maxY = rect.GetBottom();
int clippedX, clippedY;
#if DEBUG_DUMP_CLIP_COORDS
int tmpX1, tmpY1, tmpX2, tmpY2;
tmpX1 = x1;
tmpY1 = y1;
tmpX2 = x2;
tmpY2 = y2;
#endif
if( aClipBox->Inside( x1, y1 ) )
{
if( x1 == x2 ) /* Vertical line, clip Y. */
{
if( y2 < minY )
{
y2 = minY;
return false;
}
if( y2 > maxY )
{
y2 = maxY;
return false;
}
}
else if( y1 == y2 ) /* Horizontal line, clip X. */
{
if( x2 < minX )
{
x2 = minX;
return false;
}
if( x2 > maxX )
{
x2 = maxX;
return false;
}
}
/* If we're here, it's a diagonal line. */
if( TestForIntersectionOfStraightLineSegments( x1, y1, x2, y2, minX, minY, minX, maxY,
&clippedX, &clippedY ) /* Left */
|| TestForIntersectionOfStraightLineSegments( x1, y1, x2, y2, minX, minY, maxX, minY,
&clippedX, &clippedY ) /* Top */
|| TestForIntersectionOfStraightLineSegments( x1, y1, x2, y2, maxX, minY, maxX, maxY,
&clippedX, &clippedY ) /* Right */
|| TestForIntersectionOfStraightLineSegments( x1, y1, x2, y2, minX, maxY, maxX, maxY,
&clippedX, &clippedY ) ) /* Bottom */
{
if( x2 != clippedX )
x2 = clippedX;
if( y2 != clippedY )
y2 = clippedY;
return false;
}
/* If we're here, something has gone terribly wrong. */
#if DEBUG_DUMP_CLIP_ERROR_COORDS
wxLogDebug( wxT(
"Line (%d,%d):(%d,%d) in rectangle (%d,%d,%d,%d) clipped to (%d,%d,%d,%d)" ),
tmpX1, tmpY1, tmpX2, tmpY2, minX, minY, maxX, maxY, x1, y1, x2, y2 );
#endif
return false;
}
else if( aClipBox->Inside( x2, y2 ) )
{
if( x1 == x2 ) /* Vertical line, clip Y. */
{
if( y2 < minY )
{
y2 = minY;
return false;
}
if( y2 > maxY )
{
y2 = maxY;
return false;
}
}
else if( y1 == y2 ) /* Horizontal line, clip X. */
{
if( x2 < minX )
{
x2 = minX;
return false;
}
if( x2 > maxX )
{
x2 = maxX;
return false;
}
}
if( TestForIntersectionOfStraightLineSegments( x1, y1, x2, y2, minX, minY, minX, maxY,
&clippedX, &clippedY ) /* Left */
|| TestForIntersectionOfStraightLineSegments( x1, y1, x2, y2, minX, minY, maxX, minY,
&clippedX, &clippedY ) /* Top */
|| TestForIntersectionOfStraightLineSegments( x1, y1, x2, y2, maxX, minY, maxX, maxY,
&clippedX, &clippedY ) /* Right */
|| TestForIntersectionOfStraightLineSegments( x1, y1, x2, y2, minX, maxY, maxX, maxY,
&clippedX, &clippedY ) ) /* Bottom */
{
if( x1 != clippedX )
x1 = clippedX;
if( y1 != clippedY )
y1 = clippedY;
return false;
}
/* If we're here, something has gone terribly wrong. */
#if DEBUG_DUMP_CLIP_ERROR_COORDS
wxLogDebug( wxT(
"Line (%d,%d):(%d,%d) in rectangle (%d,%d,%d,%d) clipped to (%d,%d,%d,%d)" ),
tmpX1, tmpY1, tmpX2, tmpY2, minX, minY, maxX, maxY, x1, y1, x2, y2 );
#endif
return false;
}
else
{
int* intersectX;
int* intersectY;
int intersectX1, intersectY1, intersectX2, intersectY2;
bool haveFirstPoint = false;
intersectX = &intersectX1;
intersectY = &intersectY1;
/* Left clip rectangle line. */
if( TestForIntersectionOfStraightLineSegments( x1, y1, x2, y2, minX, minY, minX, maxY,
intersectX, intersectY ) )
{
intersectX = &intersectX2;
intersectY = &intersectY2;
haveFirstPoint = true;
}
/* Top clip rectangle line. */
if( TestForIntersectionOfStraightLineSegments( x1, y1, x2, y2, minX, minY, maxX, minY,
intersectX, intersectY ) )
{
intersectX = &intersectX2;
intersectY = &intersectY2;
if( haveFirstPoint )
{
x1 = intersectX1;
y1 = intersectY1;
x2 = intersectX2;
y2 = intersectY2;
return false;
}
haveFirstPoint = true;
}
/* Right clip rectangle line. */
if( TestForIntersectionOfStraightLineSegments( x1, y1, x2, y2, maxX, minY, maxX, maxY,
intersectX, intersectY ) )
{
intersectX = &intersectX2;
intersectY = &intersectY2;
if( haveFirstPoint )
{
x1 = intersectX1;
y1 = intersectY1;
x2 = intersectX2;
y2 = intersectY2;
return false;
}
haveFirstPoint = true;
}
/* Bottom clip rectangle line. */
if( TestForIntersectionOfStraightLineSegments( x1, y1, x2, y2, minX, maxY, maxX, maxY,
intersectX, intersectY ) )
{
intersectX = &intersectX2;
intersectY = &intersectY2;
if( haveFirstPoint )
{
x1 = intersectX1;
y1 = intersectY1;
x2 = intersectX2;
y2 = intersectY2;
return false;
}
}
/* If we're here and only one line of the clip box has been intersected,
* something has gone terribly wrong. */
#if DEBUG_DUMP_CLIP_ERROR_COORDS
if( haveFirstPoint )
wxLogDebug( wxT(
"Line (%d,%d):(%d,%d) in rectangle (%d,%d,%d,%d) clipped to (%d,%d,%d,%d)" ),
tmpX1, tmpY1, tmpX2, tmpY2, minX, minY, maxX, maxY, x1, y1, x2, y2 );
#endif
}
/* Set this to one to verify that diagonal lines get clipped properly. */
#if DEBUG_DUMP_CLIP_COORDS
if( !( x1 == x2 || y1 == y2 ) )
wxLogDebug( wxT( "Clipped line (%d,%d):(%d,%d) from rectangle (%d,%d,%d,%d)" ),
tmpX1, tmpY1, tmpX2, tmpY2, minX, minY, maxX, maxY );
#endif
return true;
}
#endif // if defined( USE_WX_ZOOM )
2007-10-31 17:44:51 +00:00
/**
* Function clip_line
* @return bool - true when WHEN_OUTSIDE fires, else false.
2008-04-02 14:16:14 +00:00
*/
2007-10-31 17:44:51 +00:00
static inline bool clip_line( int& x1, int& y1, int& x2, int& y2 )
2007-10-31 06:40:15 +00:00
{
int temp;
if( x1 > x2 )
{
2008-04-02 14:16:14 +00:00
EXCHG( x1, x2 );
2007-10-31 06:40:15 +00:00
EXCHG( y1, y2 );
}
if( (x2 < xcliplo) || (x1 > xcliphi) )
{
WHEN_OUTSIDE;
}
if( y1 < y2 )
{
if( (y2 < ycliplo) || (y1 > ycliphi) )
{
WHEN_OUTSIDE;
}
if( y1 < ycliplo )
{
temp = USCALE( (x2 - x1), (ycliplo - y1), (y2 - y1) );
if( (x1 += temp) > xcliphi )
{
WHEN_OUTSIDE;
}
y1 = ycliplo;
WHEN_INSIDE;
}
if( y2 > ycliphi )
{
temp = USCALE( (x2 - x1), (y2 - ycliphi), (y2 - y1) );
if( (x2 -= temp) < xcliplo )
{
WHEN_OUTSIDE;
}
y2 = ycliphi;
WHEN_INSIDE;
}
if( x1 < xcliplo )
{
temp = USCALE( (y2 - y1), (xcliplo - x1), (x2 - x1) );
y1 += temp;
x1 = xcliplo;
2007-10-31 06:40:15 +00:00
WHEN_INSIDE;
}
if( x2 > xcliphi )
{
temp = USCALE( (y2 - y1), (x2 - xcliphi), (x2 - x1) );
y2 -= temp;
x2 = xcliphi;
2007-10-31 06:40:15 +00:00
WHEN_INSIDE;
}
}
else
{
if( (y1 < ycliplo) || (y2 > ycliphi) )
{
WHEN_OUTSIDE;
}
if( y1 > ycliphi )
{
temp = USCALE( (x2 - x1), (y1 - ycliphi), (y1 - y2) );
if( (x1 += temp) > xcliphi )
{
WHEN_OUTSIDE;
}
y1 = ycliphi;
WHEN_INSIDE;
}
if( y2 < ycliplo )
{
temp = USCALE( (x2 - x1), (ycliplo - y2), (y1 - y2) );
if( (x2 -= temp) < xcliplo )
{
WHEN_OUTSIDE;
}
y2 = ycliplo;
WHEN_INSIDE;
}
if( x1 < xcliplo )
{
temp = USCALE( (y1 - y2), (xcliplo - x1), (x2 - x1) );
y1 -= temp;
x1 = xcliplo;
2007-10-31 06:40:15 +00:00
WHEN_INSIDE;
}
if( x2 > xcliphi )
{
temp = USCALE( (y1 - y2), (x2 - xcliphi), (x2 - x1) );
y2 += temp;
x2 = xcliphi;
2007-10-31 06:40:15 +00:00
WHEN_INSIDE;
}
}
2008-04-02 14:16:14 +00:00
2007-10-31 17:44:51 +00:00
return false;
2007-10-31 06:40:15 +00:00
}
static void WinClipAndDrawLine( EDA_Rect* ClipBox, wxDC* DC,
int x1, int y1, int x2, int y2,
int Color, int width = 1 )
{
GRLastMoveToX = x2;
GRLastMoveToY = y2;
if( ClipBox )
{
xcliplo = ClipBox->GetX();
ycliplo = ClipBox->GetY();
xcliphi = ClipBox->GetRight();
ycliphi = ClipBox->GetBottom();
xcliplo -= width;
ycliplo -= width;
xcliphi += width;
ycliphi += width;
#if defined( USE_WX_ZOOM )
if( clipLine( ClipBox, x1, y1, x2, y2 ) )
#else
2007-10-31 17:44:51 +00:00
if( clip_line( x1, y1, x2, y2 ) )
#endif
2007-10-31 17:44:51 +00:00
return;
2007-10-31 06:40:15 +00:00
}
GRSetColorPen( DC, Color, width );
DC->DrawLine( x1, y1, x2, y2 );
}
/* Forcing a reset of the current pen.
* Must be called after changing the graphical device before any trace.
*/
2007-10-31 06:40:15 +00:00
void GRResetPenAndBrush( wxDC* DC )
{
2007-10-31 06:40:15 +00:00
GRSetBrush( DC, BLACK ); // Force no fill
2010-09-21 19:21:46 +00:00
s_DC_lastbrushcolor = -1;
s_DC_lastcolor = -1;
s_DC_lastDC = NULL;
}
2007-10-31 06:40:15 +00:00
2008-04-02 14:16:14 +00:00
/**
* Function GRSetColorPen
* sets a pen style, width, color, and alpha into the given device context.
*/
void GRSetColorPen( wxDC* DC, int Color, int width, wxPenStyle style )
{
if( width < 0 )
width = 0;
if( s_ForceBlackPen )
2008-04-02 14:16:14 +00:00
{
2007-10-31 06:40:15 +00:00
Color = BLACK;
2008-04-02 14:16:14 +00:00
}
if( s_DC_lastcolor != Color
|| s_DC_lastwidth != width
|| s_DC_lastpenstyle != style
|| s_DC_lastDC != DC )
2007-10-31 06:40:15 +00:00
{
wxPen pen;
2008-04-02 14:16:14 +00:00
wxColour wx_color = MakeColour( Color );
2008-04-02 14:16:14 +00:00
pen.SetColour( wx_color );
pen.SetWidth( width );
pen.SetStyle( style );
DC->SetPen( pen );
2010-09-21 19:21:46 +00:00
s_DC_lastcolor = Color;
s_DC_lastwidth = width;
s_DC_lastpenstyle = style;
s_DC_lastDC = DC;
2007-10-31 06:40:15 +00:00
}
}
2007-10-31 06:40:15 +00:00
void GRSetBrush( wxDC* DC, int Color, int fill )
{
if( s_ForceBlackPen )
2007-10-31 06:40:15 +00:00
Color = BLACK;
if( s_DC_lastbrushcolor != Color
|| s_DC_lastbrushfill != fill
|| s_DC_lastDC != DC )
2010-09-21 19:21:46 +00:00
{
wxBrush DrawBrush;
DrawBrush.SetColour( MakeColour( Color ) );
2010-09-21 19:21:46 +00:00
if( fill )
DrawBrush.SetStyle( wxSOLID );
else
DrawBrush.SetStyle( wxTRANSPARENT );
2010-09-21 19:21:46 +00:00
DC->SetBrush( DrawBrush );
2010-09-21 19:21:46 +00:00
s_DC_lastbrushcolor = Color;
s_DC_lastbrushfill = fill;
s_DC_lastDC = DC;
2010-09-21 19:21:46 +00:00
}
}
2007-10-31 06:40:15 +00:00
/** function GRForceBlackPen
* @param flagforce True to force a black pen whenever the asked color
*/
void GRForceBlackPen( bool flagforce )
{
s_ForceBlackPen = flagforce;
}
/** function GetGRForceBlackPenState
* @return s_ForceBlackPen (True if a black pen was forced)
*/
bool GetGRForceBlackPenState( void )
{
return s_ForceBlackPen;
}
2007-10-31 06:40:15 +00:00
/*************************************/
/* Set the device context draw mode. */
/*************************************/
2007-10-31 06:40:15 +00:00
void GRSetDrawMode( wxDC* DC, int draw_mode )
{
2007-10-31 06:40:15 +00:00
if( draw_mode & GR_OR )
#if defined(__WXMAC__) && (wxMAC_USE_CORE_GRAPHICS || wxCHECK_VERSION( 2, 9, 0 ) )
DC->SetLogicalFunction( wxCOPY );
#elif defined( USE_WX_GRAPHICS_CONTEXT )
2008-04-02 14:16:14 +00:00
DC->SetLogicalFunction( wxCOPY );
#else
2007-10-31 06:40:15 +00:00
DC->SetLogicalFunction( wxOR );
2008-04-02 14:16:14 +00:00
#endif
2007-10-31 06:40:15 +00:00
else if( draw_mode & GR_XOR )
#if defined( USE_WX_GRAPHICS_CONTEXT )
DC->SetLogicalFunction( wxCOPY );
#else
2007-10-31 06:40:15 +00:00
DC->SetLogicalFunction( wxXOR );
#endif
2007-10-31 06:40:15 +00:00
else if( draw_mode & GR_NXOR )
#if defined(__WXMAC__) && (wxMAC_USE_CORE_GRAPHICS || wxCHECK_VERSION( 2, 9, 0 ) )
DC->SetLogicalFunction( wxXOR );
#elif defined( USE_WX_GRAPHICS_CONTEXT )
DC->SetLogicalFunction( wxCOPY );
2009-03-26 19:27:50 +00:00
#else
DC->SetLogicalFunction( wxEQUIV );
#endif
else if( draw_mode & GR_INVERT )
#if defined( USE_WX_GRAPHICS_CONTEXT )
DC->SetLogicalFunction( wxCOPY );
#else
DC->SetLogicalFunction( wxINVERT );
2009-03-26 19:27:50 +00:00
#endif
else
2007-10-31 06:40:15 +00:00
DC->SetLogicalFunction( wxCOPY );
}
2007-10-31 06:40:15 +00:00
void GRPutPixel( EDA_Rect* ClipBox, wxDC* DC, int x, int y, int Color )
{
2007-10-31 06:40:15 +00:00
GRSPutPixel( ClipBox, DC, GRMapX( x ), GRMapY( y ), Color );
}
2007-10-31 06:40:15 +00:00
void GRSPutPixel( EDA_Rect* ClipBox, wxDC* DC, int x, int y, int Color )
{
if( ClipBox && !ClipBox->Inside( x, y ) )
return;
2007-10-31 06:40:15 +00:00
GRSetColorPen( DC, Color );
DC->DrawPoint( x, y );
}
/*
* Draw a line, in object space.
*/
void GRLine( EDA_Rect* ClipBox,
wxDC* DC,
int x1,
int y1,
int x2,
int y2,
int width,
int Color )
{
GRSLine( ClipBox, DC, GRMapX( x1 ), GRMapY( y1 ), GRMapX( x2 ),
GRMapY( y2 ), ZoomValue( width ), Color );
}
void GRLine( EDA_Rect* aClipBox,
wxDC* aDC,
wxPoint aStart,
wxPoint aEnd,
int aWidth,
int aColor )
2009-05-25 16:07:33 +00:00
{
GRSLine( aClipBox, aDC, GRMapX( aStart.x ), GRMapY( aStart.y ),
GRMapX( aEnd.x ), GRMapY( aEnd.y ),
ZoomValue( aWidth ), aColor );
2009-05-25 16:07:33 +00:00
}
2007-10-31 06:40:15 +00:00
/*
* Draw a dashed line, in screen space.
*/
2007-10-31 06:40:15 +00:00
void GRSDashedLine( EDA_Rect* ClipBox,
wxDC* DC,
int x1,
int y1,
int x2,
int y2,
int width,
int Color )
{
GRLastMoveToX = x2;
GRLastMoveToY = y2;
s_DC_lastcolor = -1;
GRSetColorPen( DC, Color, width, wxPENSTYLE_SHORT_DASH );
2007-10-31 06:40:15 +00:00
GRSLine( ClipBox, DC, x1, y1, x2, y2, width, Color );
2010-09-21 19:21:46 +00:00
s_DC_lastcolor = -1;
2007-10-31 06:40:15 +00:00
GRSetColorPen( DC, Color, width );
}
2007-10-31 06:40:15 +00:00
void GRSDashedLineTo( EDA_Rect* ClipBox,
wxDC* DC,
int x2,
int y2,
int width,
int Color )
{
2010-09-21 19:21:46 +00:00
s_DC_lastcolor = -1;
GRSetColorPen( DC, Color, width, wxPENSTYLE_SHORT_DASH );
2007-10-31 06:40:15 +00:00
GRSLine( ClipBox, DC, GRLastMoveToX, GRLastMoveToY, x2, y2, width, Color );
2010-09-21 19:21:46 +00:00
s_DC_lastcolor = -1;
2007-10-31 06:40:15 +00:00
GRSetColorPen( DC, Color, width );
GRLastMoveToX = x2;
GRLastMoveToY = y2;
}
2007-10-31 06:40:15 +00:00
/*
* Draw a dashed line, in object space.
*/
void GRDashedLineTo( EDA_Rect* ClipBox,
wxDC* DC,
int x2,
int y2,
int width,
int Color )
{
GRSDashedLineTo( ClipBox, DC, GRMapX( x2 ), GRMapY( y2 ),
ZoomValue( width ), Color );
}
2007-10-31 06:40:15 +00:00
void GRDashedLine( EDA_Rect* ClipBox,
wxDC* DC,
int x1,
int y1,
int x2,
int y2,
int width,
int Color )
{
GRSDashedLine( ClipBox, DC, GRMapX( x1 ), GRMapY( y1 ), GRMapX( x2 ),
GRMapY( y2 ), ZoomValue( width ), Color );
}
/*
* Move to a new position, in object space.
*/
2007-10-31 06:40:15 +00:00
void GRMoveTo( int x, int y )
{
2007-10-31 06:40:15 +00:00
GRLastMoveToX = GRMapX( x );
GRLastMoveToY = GRMapY( y );
}
2007-10-31 06:40:15 +00:00
/*
* Draw line to a new position, in object space.
*/
2007-10-31 06:40:15 +00:00
void GRLineTo( EDA_Rect* ClipBox, wxDC* DC, int x, int y, int width, int Color )
{
2007-10-31 06:40:15 +00:00
int GRLineToX, GRLineToY;
2007-10-31 06:40:15 +00:00
GRLineToX = GRMapX( x ); GRLineToY = GRMapY( y );
GRSLine( ClipBox,
DC,
GRLastMoveToX,
GRLastMoveToY,
GRLineToX,
GRLineToY,
ZoomValue( width ),
Color );
}
2007-10-31 06:40:15 +00:00
/*
* Draw a mixed line, in object space.
*/
2007-10-31 06:40:15 +00:00
void GRMixedLine( EDA_Rect* ClipBox,
wxDC* DC,
int x1,
int y1,
int x2,
int y2,
int width,
int Color )
{
GRSMixedLine( ClipBox, DC, GRMapX( x1 ), GRMapY( y1 ), GRMapX( x2 ),
GRMapY( y2 ), ZoomValue( width ), Color );
}
2007-10-31 06:40:15 +00:00
/*
* Draw a mixed line, in screen (Pixels) space.
* Currently, draw a line (not a mixed line)
* Perhaps this function is not very useful.
*/
2007-10-31 06:40:15 +00:00
void GRSMixedLine( EDA_Rect* ClipBox,
wxDC* DC,
int x1,
int y1,
int x2,
int y2,
int width,
int Color )
{
GRSetColorPen( DC, Color, width, wxPENSTYLE_DOT_DASH );
2007-10-31 06:40:15 +00:00
GRSLine( ClipBox, DC, x1, y1, x2, y2, width, Color );
GRSetColorPen( DC, Color, width );
}
/*
* Move to a new position, in screen (pixels) space.
*/
2007-10-31 06:40:15 +00:00
void GRSMoveTo( int x, int y )
{
2007-10-31 06:40:15 +00:00
GRLastMoveToX = x;
GRLastMoveToY = y;
}
2007-10-31 06:40:15 +00:00
/*
* Draw line to a new position, in screen (pixels) space.
*/
void GRSLine( EDA_Rect* ClipBox,
wxDC* DC,
int x1,
int y1,
int x2,
int y2,
int width,
int Color )
{
2007-10-31 06:40:15 +00:00
WinClipAndDrawLine( ClipBox, DC, x1, y1, x2, y2, Color, width );
GRLastMoveToX = x2;
GRLastMoveToY = y2;
}
/** Function GRLineArray
* draws an array of lines (not a polygon).
* @param aClipBox = the clip box
* @param aDC = the device context into which drawing should occur.
* @param aLines = a list of pair of coordinate in user space: a pair for each line.
* @param aWidth = the width of each line.
* @param aColor = an index into our color table of RGB colors.
* @see EDA_Colors and colors.h
*/
void GRLineArray( EDA_Rect* aClipBox, wxDC* aDC,
std::vector<wxPoint>& aLines,
int aWidth, int aColor )
{
for( unsigned i = 0; i < aLines.size(); i++ )
{
aLines[i].x = GRMapX( aLines[i].x );
aLines[i].y = GRMapY( aLines[i].y );
}
aWidth = ZoomValue( aWidth );
GRSLineArray( aClipBox, aDC, aLines, aWidth, aColor );
}
void GRSLineArray( EDA_Rect* aClipBox, wxDC* aDC,
std::vector<wxPoint>& aLines,
int aWidth, int aColor )
{
GRSetColorPen( aDC, aColor, aWidth );
#if defined( USE_WX_GRAPHICS_CONTEXT ) || defined(__WXMAC__)
wxGraphicsContext* gc = wxGraphicsContext::Create( aDC );
wxASSERT( gc );
gc->Clip( aClipBox->GetX(), aClipBox->GetY(), aClipBox->GetRight(), aClipBox->GetHeight() );
wxGraphicsPath path = gc->CreatePath();
for( unsigned i = 0; i < aLines.size(); )
{
path.MoveToPoint( aLines[i].x, aLines[i].y );
i++;
path.AddLineToPoint( aLines[i].x, aLines[i].y );
i++;
}
gc->StrokePath( path );
gc->ResetClip();
delete gc;
#else
for( unsigned i = 0; i < aLines.size(); )
{
WinClipAndDrawLine( aClipBox, aDC, aLines[i].x, aLines[i].y,
aLines[i + 1].x, aLines[i + 1].y, aColor, aWidth );
i++;
GRLastMoveToX = aLines[i].x;
GRLastMoveToY = aLines[i].y;
i++;
}
2007-10-31 06:40:15 +00:00
#endif
}
2007-10-31 06:40:15 +00:00
/*
* Draw segment with rounded ends in object space.
*/
void GRCSegm( EDA_Rect* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2,
int width, int aPenSize, int Color )
{
GRSCSegm( ClipBox, DC, GRMapX( x1 ), GRMapY( y1 ), GRMapX( x2 ),
GRMapY( y2 ), ZoomValue( width ), ZoomValue( aPenSize ), Color );
}
2007-10-31 06:40:15 +00:00
void GRCSegm( EDA_Rect* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2,
int width, int Color )
{
GRSCSegm( ClipBox, DC, GRMapX( x1 ), GRMapY( y1 ), GRMapX( x2 ),
GRMapY( y2 ), ZoomValue( width ), 0, Color );
}
void GRCSegm( EDA_Rect* aClipBox, wxDC* aDC, wxPoint aStart, wxPoint aEnd,
int aWidth, int aColor )
{
GRSCSegm( aClipBox, aDC, GRMapX( aStart.x ), GRMapY( aStart.y ),
GRMapX( aEnd.x ), GRMapY( aEnd.y ),
ZoomValue( aWidth ), 0, aColor );
}
2007-10-31 06:40:15 +00:00
/*
* Draw segment (full) with rounded ends in object space (real coords.).
*/
2007-10-31 06:40:15 +00:00
void GRFillCSegm( EDA_Rect* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2,
int width, int Color )
{
WinClipAndDrawLine( ClipBox, DC, GRMapX( x1 ), GRMapY( y1 ), GRMapX( x2 ),
GRMapY( y2 ), Color, ZoomValue( width ) );
}
void GRFilledSegment( EDA_Rect* aClipBox, wxDC* aDC, wxPoint aStart, wxPoint aEnd,
int aWidth, int aColor )
{
WinClipAndDrawLine( aClipBox, aDC, GRMapX( aStart.x ), GRMapY( aStart.y ),
GRMapX( aEnd.x ), GRMapY( aEnd.y ),
aColor, ZoomValue( aWidth ) );
}
/*
* Draw segment with rounded ends (SKETCH mode) in screen space
*/
void GRSCSegm( EDA_Rect* ClipBox,
wxDC* DC,
int x1,
int y1,
int x2,
int y2,
int width,
int aPenSize,
int Color )
2007-10-31 06:40:15 +00:00
{
long radius;
2007-12-22 07:16:45 +00:00
int dwx, dwy;
2007-10-31 06:40:15 +00:00
long dx, dy, dwx2, dwy2;
long sx1, sy1, ex1, ey1;
long sx2, sy2, ex2, ey2;
bool swap_ends = false;
2007-10-31 06:40:15 +00:00
GRLastMoveToX = x2;
GRLastMoveToY = y2;
if( ClipBox )
{
xcliplo = ClipBox->GetX();
ycliplo = ClipBox->GetY();
xcliphi = ClipBox->GetRight();
ycliphi = ClipBox->GetHeight();
xcliplo -= width;
ycliplo -= width;
xcliphi += width;
ycliphi += width;
#if defined( USE_WX_ZOOM )
if( clipLine( ClipBox, x1, y1, x2, y2 ) )
#else
2007-10-31 17:44:51 +00:00
if( clip_line( x1, y1, x2, y2 ) )
#endif
2007-10-31 17:44:51 +00:00
return;
2007-10-31 06:40:15 +00:00
}
if( width <= 2 ) /* single line or 2 pixels */
2007-10-31 06:40:15 +00:00
{
GRSetColorPen( DC, Color, width );
DC->DrawLine( x1, y1, x2, y2 );
return;
}
GRSetColorPen( DC, Color, aPenSize );
GRSetBrush( DC, Color, false );
2007-10-31 06:40:15 +00:00
radius = (width + 1) >> 1;
2008-04-02 14:16:14 +00:00
dx = x2 - x1;
2007-12-22 07:16:45 +00:00
dy = y2 - y1;
2008-04-02 14:16:14 +00:00
2007-10-31 06:40:15 +00:00
if( dx == 0 ) /* segment vertical */
{
dwx = radius;
2007-10-31 06:40:15 +00:00
if( dy >= 0 )
dwx = -dwx;
2008-04-02 14:16:14 +00:00
sx1 = x1 - dwx;
2007-12-22 07:16:45 +00:00
sy1 = y1;
2008-04-02 14:16:14 +00:00
ex1 = x2 - dwx;
2007-12-22 07:16:45 +00:00
ey1 = y2;
2008-04-02 14:16:14 +00:00
2007-10-31 06:40:15 +00:00
DC->DrawLine( sx1, sy1, ex1, ey1 );
2008-04-02 14:16:14 +00:00
sx2 = x1 + dwx;
2007-12-22 07:16:45 +00:00
sy2 = y1;
2008-04-02 14:16:14 +00:00
ex2 = x2 + dwx;
2007-12-22 07:16:45 +00:00
ey2 = y2;
2008-04-02 14:16:14 +00:00
2007-10-31 06:40:15 +00:00
DC->DrawLine( sx2, sy2, ex2, ey2 );
}
else if( dy == 0 ) /* segment horizontal */
{
dwy = radius;
2007-10-31 06:40:15 +00:00
if( dx < 0 )
dwy = -dwy;
2008-04-02 14:16:14 +00:00
2007-12-22 07:16:45 +00:00
sx1 = x1;
sy1 = y1 - dwy;
2008-04-02 14:16:14 +00:00
ex1 = x2;
2007-12-22 07:16:45 +00:00
ey1 = y2 - dwy;
2008-04-02 14:16:14 +00:00
2007-10-31 06:40:15 +00:00
DC->DrawLine( sx1, sy1, ex1, ey1 );
2008-04-02 14:16:14 +00:00
sx2 = x1;
2007-12-22 07:16:45 +00:00
sy2 = y1 + dwy;
2008-04-02 14:16:14 +00:00
ex2 = x2;
2007-12-22 07:16:45 +00:00
ey2 = y2 + dwy;
2008-04-02 14:16:14 +00:00
2007-10-31 06:40:15 +00:00
DC->DrawLine( sx2, sy2, ex2, ey2 );
}
else
{
if( ABS( dx ) == ABS( dy ) ) /* segment 45 degrees */
2007-10-31 06:40:15 +00:00
{
dwx = dwy = ( (width * 5) + 4 ) / 7; // = width / 2 * 0.707
2007-10-31 06:40:15 +00:00
if( dy < 0 )
{
if( dx <= 0 )
{
dwx = -dwx; swap_ends = true;
2007-10-31 06:40:15 +00:00
}
}
else // dy >= 0
2007-10-31 06:40:15 +00:00
{
if( dx > 0 )
{
dwy = -dwy; swap_ends = true;
2007-10-31 06:40:15 +00:00
}
else
swap_ends = true;
2007-10-31 06:40:15 +00:00
}
}
else
{
int delta_angle = ArcTangente( dy, dx );
2008-04-02 14:16:14 +00:00
dwx = 0;
2007-12-22 07:16:45 +00:00
dwy = width;
RotatePoint( &dwx, &dwy, -delta_angle );
2007-10-31 06:40:15 +00:00
}
2008-04-02 14:16:14 +00:00
dwx2 = dwx >> 1;
2007-12-22 07:16:45 +00:00
dwy2 = dwy >> 1;
2008-04-02 14:16:14 +00:00
sx1 = x1 - dwx2;
2007-12-22 07:16:45 +00:00
sy1 = y1 - dwy2;
2008-04-02 14:16:14 +00:00
ex1 = x2 - dwx2;
2007-12-22 07:16:45 +00:00
ey1 = y2 - dwy2;
2008-04-02 14:16:14 +00:00
2007-10-31 06:40:15 +00:00
DC->DrawLine( sx1, sy1, ex1, ey1 );
2008-04-02 14:16:14 +00:00
sx2 = x1 + dwx2;
2007-12-22 07:16:45 +00:00
sy2 = y1 + dwy2;
2008-04-02 14:16:14 +00:00
ex2 = x2 + dwx2;
2007-12-22 07:16:45 +00:00
ey2 = y2 + dwy2;
2008-04-02 14:16:14 +00:00
2007-10-31 06:40:15 +00:00
DC->DrawLine( sx2, sy2, ex2, ey2 );
}
if( swap_ends )
{
DC->DrawArc( sx2, sy2, sx1, sy1, x1, y1 );
DC->DrawArc( ex1, ey1, ex2, ey2, x2, y2 );
}
else
{
DC->DrawArc( sx1, sy1, sx2, sy2, x1, y1 );
DC->DrawArc( ex2, ey2, ex1, ey1, x2, y2 );
}
}
static bool IsGRSPolyDrawable( EDA_Rect* ClipBox, int n, wxPoint Points[] )
2007-10-31 06:40:15 +00:00
{
if( !ClipBox )
return true;
if( n <= 0 )
return false;
2007-10-31 06:40:15 +00:00
int Xmin, Xmax, Ymin, Ymax;
Xmin = Xmax = Points[0].x;
Ymin = Ymax = Points[0].y;
2007-10-31 06:40:15 +00:00
for( int ii = 1; ii < n; ii++ ) // calculate rectangle
2007-10-31 06:40:15 +00:00
{
Xmin = MIN( Xmin, Points[ii].x );
Xmax = MAX( Xmax, Points[ii].x );
Ymin = MIN( Ymin, Points[ii].y );
Ymax = MAX( Ymax, Points[ii].y );
2007-10-31 06:40:15 +00:00
}
xcliplo = ClipBox->GetX();
ycliplo = ClipBox->GetY();
xcliphi = ClipBox->GetRight();
ycliphi = ClipBox->GetBottom();
2007-10-31 06:40:15 +00:00
if( Xmax < xcliplo )
return false;
2007-10-31 06:40:15 +00:00
if( Xmin > xcliphi )
return false;
2007-10-31 06:40:15 +00:00
if( Ymax < ycliplo )
return false;
2007-10-31 06:40:15 +00:00
if( Ymin > ycliphi )
return false;
2007-10-31 06:40:15 +00:00
return true;
}
2007-10-31 06:40:15 +00:00
/*
* Draw a new polyline and fill it if Fill, in screen space.
*/
static void GRSPoly( EDA_Rect* ClipBox,
wxDC* DC,
int n,
wxPoint Points[],
bool Fill,
int width,
int Color,
int BgColor )
{
2007-10-31 06:40:15 +00:00
if( !IsGRSPolyDrawable( ClipBox, n, Points ) )
return;
2007-10-31 06:40:15 +00:00
GRSetColorPen( DC, Color, width );
2007-10-31 06:40:15 +00:00
if( Fill && ( n > 2 ) )
{
GRSetBrush( DC, BgColor, FILLED );
/* clip before send the filled polygon to wxDC, because under linux
* (GTK?) polygons having large coordinates are incorrectly drawn
*/
#ifdef USE_CLIP_FILLED_POLYGONS
ClipAndDrawFilledPoly( ClipBox, DC, Points, n );
#else
DC->DrawPolygon( n, Points ); // does not work very well under linux
#endif
2007-10-31 06:40:15 +00:00
}
else
{
wxPoint endPt = Points[n - 1];
2008-04-02 14:16:14 +00:00
2007-10-31 06:40:15 +00:00
GRSetBrush( DC, Color );
DC->DrawLines( n, Points );
// The last point is not drawn by DrawLine and DrawLines
// Add it if the polygon is not closed
if( endPt != Points[0] )
DC->DrawPoint( endPt.x, endPt.y );
2007-10-31 06:40:15 +00:00
}
}
/*
* Draw a new closed polyline and fill it if Fill, in screen space.
*/
static void GRSClosedPoly( EDA_Rect* ClipBox,
wxDC* DC,
int aPointCount,
wxPoint aPoints[],
bool Fill,
int width,
int Color,
int BgColor )
{
if( !IsGRSPolyDrawable( ClipBox, aPointCount, aPoints ) )
2007-10-31 06:40:15 +00:00
return;
2007-10-31 06:40:15 +00:00
GRSetColorPen( DC, Color, width );
if( Fill && ( aPointCount > 2 ) )
2007-10-31 06:40:15 +00:00
{
GRSMoveTo( aPoints[aPointCount - 1].x, aPoints[aPointCount - 1].y );
2007-10-31 06:40:15 +00:00
GRSetBrush( DC, BgColor, FILLED );
#ifdef USE_CLIP_FILLED_POLYGONS
ClipAndDrawFilledPoly( ClipBox, DC, aPoints, aPointCount );
#else
DC->DrawPolygon( aPointCount, aPoints ); // does not work very well under linux
#endif
2007-10-31 06:40:15 +00:00
}
else
{
GRSetBrush( DC, BgColor );
DC->DrawLines( aPointCount, aPoints );
/* Close the polygon. */
if( aPoints[aPointCount - 1] != aPoints[0] )
2007-10-31 06:40:15 +00:00
{
GRSLine( ClipBox,
DC,
aPoints[0].x,
aPoints[0].y,
aPoints[aPointCount - 1].x,
aPoints[aPointCount - 1].y,
width,
Color );
2007-10-31 06:40:15 +00:00
}
}
}
/*
* Draw a new polyline and fill it if Fill, in drawing space.
*/
void GRPoly( EDA_Rect* ClipBox, wxDC* DC, int n, wxPoint Points[],
bool Fill, int width, int Color, int BgColor )
{
for( int i = 0; i<n; ++i )
2007-10-31 06:40:15 +00:00
{
Points[i].x = GRMapX( Points[i].x );
Points[i].y = GRMapY( Points[i].y );
2007-10-31 06:40:15 +00:00
}
width = ZoomValue( width );
2007-10-31 06:40:15 +00:00
GRSPoly( ClipBox, DC, n, Points, Fill, width, Color, BgColor );
}
2007-10-31 06:40:15 +00:00
/*
* Draw a closed polyline and fill it if Fill, in object space.
*/
void GRClosedPoly( EDA_Rect* ClipBox, wxDC* DC, int n, wxPoint Points[],
bool Fill, int Color, int BgColor )
{
2007-10-31 06:40:15 +00:00
GRClosedPoly( ClipBox, DC, n, Points, Fill, 0, Color, BgColor );
}
2007-10-31 06:40:15 +00:00
void GRClosedPoly( EDA_Rect* ClipBox, wxDC* DC, int n, wxPoint Points[],
bool Fill, int width, int Color, int BgColor )
{
for( int i = 0; i<n; ++i )
2007-10-31 06:40:15 +00:00
{
Points[i].x = GRMapX( Points[i].x );
Points[i].y = GRMapY( Points[i].y );
2007-10-31 06:40:15 +00:00
}
width = ZoomValue( width );
2007-10-31 06:40:15 +00:00
GRSClosedPoly( ClipBox, DC, n, Points, Fill, width, Color, BgColor );
}
2007-10-31 06:40:15 +00:00
/*
* Draw a circle, in object space.
*/
2007-10-31 06:40:15 +00:00
void GRCircle( EDA_Rect* ClipBox, wxDC* DC, int x, int y, int r, int Color )
{
int cx = GRMapX( x );
int cy = GRMapY( y );
int radius = ZoomValue( r );
GRSCircle( ClipBox, DC, cx, cy, radius, 0, Color );
}
2010-09-28 14:42:05 +00:00
/*
* Draw a circle in object space.
*/
void GRCircle( EDA_Rect* ClipBox, wxDC* DC, int x, int y, int r, int width, int Color )
{
r = ZoomValue( r );
width = ZoomValue( width );
GRSCircle( ClipBox, DC, GRMapX( x ), GRMapY( y ), r, width, Color );
}
2010-09-28 14:42:05 +00:00
/*
* Draw a circle in object space.
*/
void GRCircle( EDA_Rect* aClipBox, wxDC* aDC, wxPoint aPos, int aRadius, int aWidth, int aColor )
{
aRadius = ZoomValue( aRadius );
aWidth = ZoomValue( aWidth );
2010-09-28 14:42:05 +00:00
GRSCircle( aClipBox, aDC, GRMapX( aPos.x ), GRMapY( aPos.y ), aRadius, aWidth, aColor );
}
2007-10-31 06:40:15 +00:00
/*
* Draw a filled circle, in object space.
*/
2007-10-31 06:40:15 +00:00
void GRFilledCircle( EDA_Rect* ClipBox, wxDC* DC, int x, int y, int r,
int width, int Color, int BgColor )
{
2007-10-31 06:40:15 +00:00
r = ZoomValue( r );
width = ZoomValue( width );
GRSFilledCircle( ClipBox, DC, GRMapX( x ), GRMapY( y ), r, width,
Color, BgColor );
}
2010-09-28 14:42:05 +00:00
/*
* Draw a filled circle, in object space.
*/
void GRFilledCircle( EDA_Rect* aClipBox, wxDC* aDC, wxPoint aPos, int aRadius, int aColor )
{
aRadius = ZoomValue( aRadius );
GRSFilledCircle( aClipBox, aDC, GRMapX( aPos.x ), GRMapY( aPos.y ), aRadius, 0,
aColor, aColor );
2010-09-28 14:42:05 +00:00
}
2007-10-31 06:40:15 +00:00
/*
* Draw a filled circle, in drawing space.
*/
2007-10-31 06:40:15 +00:00
void GRSFilledCircle( EDA_Rect* ClipBox, wxDC* DC, int x, int y, int r,
int width, int Color, int BgColor )
{
/* Clip circles off screen. */
2007-10-31 06:40:15 +00:00
if( ClipBox )
{
int x0, y0, xm, ym;
x0 = ClipBox->GetX();
y0 = ClipBox->GetY();
xm = ClipBox->GetRight();
ym = ClipBox->GetBottom();
if( x < (x0 - r) )
return;
if( y < (y0 - r) )
return;
if( x > (r + xm) )
return;
if( y > (r + ym) )
return;
}
GRSetColorPen( DC, Color, width );
GRSetBrush( DC, BgColor, FILLED );
DC->DrawEllipse( x - r, y - r, r + r, r + r );
}
/*
* Draw a circle in drawing space.
*/
void GRSCircle( EDA_Rect* ClipBox,
wxDC* DC,
int xc,
int yc,
int r,
int width,
int Color )
{
/* Clip circles off screen. */
2007-10-31 06:40:15 +00:00
if( ClipBox )
{
int x0, y0, xm, ym;
x0 = ClipBox->GetX();
y0 = ClipBox->GetY();
xm = ClipBox->GetRight();
ym = ClipBox->GetBottom();
if( xc < ( x0 - r - width ) )
2007-10-31 06:40:15 +00:00
return;
if( yc < ( y0 - r - width ) )
2007-10-31 06:40:15 +00:00
return;
if( xc > ( r + xm + width ) )
2007-10-31 06:40:15 +00:00
return;
if( yc > ( r + ym + width ) )
2007-10-31 06:40:15 +00:00
return;
}
GRSetColorPen( DC, Color, width );
GRSetBrush( DC, Color, false );
2007-10-31 06:40:15 +00:00
DC->DrawEllipse( xc - r, yc - r, r + r, r + r );
}
/*
* Draw an arc in user space.
*/
2007-10-31 06:40:15 +00:00
void GRArc1( EDA_Rect* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2,
int xc, int yc, int Color )
{
GRSArc1( ClipBox, DC, GRMapX( x1 ), GRMapY( y1 ), GRMapX( x2 ),
GRMapY( y2 ), GRMapX( xc ), GRMapY( yc ), 0, Color );
}
2007-10-31 06:40:15 +00:00
/*
* Draw an arc, width = width in user space.
*/
2007-10-31 06:40:15 +00:00
void GRArc1( EDA_Rect* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2,
int xc, int yc, int width, int Color )
{
GRSArc1( ClipBox, DC, GRMapX( x1 ), GRMapY( y1 ), GRMapX( x2 ),
GRMapY( y2 ), GRMapX( xc ), GRMapY( yc ), ZoomValue( width ),
Color );
}
void GRArc1( EDA_Rect* aClipBox, wxDC* aDC, wxPoint aStart, wxPoint aEnd,
wxPoint aCenter, int aWidth, int aColor )
{
GRSArc1( aClipBox, aDC, GRMapX( aStart.x ), GRMapY( aStart.y ),
GRMapX( aEnd.x ), GRMapY( aEnd.y ),
GRMapX( aCenter.x ), GRMapY( aCenter.y ), ZoomValue( aWidth ),
aColor );
}
/*
* Draw an arc, width = width, in screen space.
*/
2007-10-31 06:40:15 +00:00
void GRSArc1( EDA_Rect* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2,
int xc, int yc, int width, int Color )
{
/* Clip arcs off screen. */
2007-10-31 06:40:15 +00:00
if( ClipBox )
{
int x0, y0, xm, ym, r;
x0 = ClipBox->GetX();
y0 = ClipBox->GetY();
xm = ClipBox->GetRight();
ym = ClipBox->GetBottom();
r = (int) hypot( x1 - xc, y1 - yc );
if( xc < ( x0 - r ) )
2007-10-31 06:40:15 +00:00
return;
if( yc < ( y0 - r ) )
2007-10-31 06:40:15 +00:00
return;
if( xc > ( r + xm ) )
2007-10-31 06:40:15 +00:00
return;
if( yc > ( r + ym ) )
2007-10-31 06:40:15 +00:00
return;
}
GRSetColorPen( DC, Color, width );
GRSetBrush( DC, Color );
DC->DrawArc( x1, y1, x2, y2, xc, yc );
}
2007-10-31 06:40:15 +00:00
/*
* Draw an arc in screen space.
*/
void GRSArc( EDA_Rect* ClipBox,
wxDC* DC,
int xc,
int yc,
int StAngle,
int EndAngle,
int r,
int width,
int Color )
{
2007-10-31 06:40:15 +00:00
int x1, y1, x2, y2;
/* Clip arcs off screen. */
2007-10-31 06:40:15 +00:00
if( ClipBox )
{
int x0, y0, xm, ym;
x0 = ClipBox->GetX();
y0 = ClipBox->GetY();
xm = ClipBox->GetRight();
ym = ClipBox->GetBottom();
if( xc < ( x0 - r - width ) )
2007-10-31 06:40:15 +00:00
return;
if( yc < ( y0 - r - width ) )
2007-10-31 06:40:15 +00:00
return;
if( xc > ( r + xm + width ) )
2007-10-31 06:40:15 +00:00
return;
if( yc > ( r + ym + width ) )
2007-10-31 06:40:15 +00:00
return;
}
x1 = r;
y1 = 0;
2007-10-31 06:40:15 +00:00
RotatePoint( &x1, &y1, EndAngle );
x2 = r;
y2 = 0;
2007-10-31 06:40:15 +00:00
RotatePoint( &x2, &y2, StAngle );
2007-10-31 06:40:15 +00:00
GRSetColorPen( DC, Color, width );
GRSetBrush( DC, Color );
DC->DrawArc( xc + x1, yc - y1, xc + x2, yc - y2, xc, yc );
}
2007-10-31 06:40:15 +00:00
/*
* Draw an filled arc in screen space.
*/
void GRSFilledArc( EDA_Rect* ClipBox,
wxDC* DC,
int xc,
int yc,
int StAngle,
int EndAngle,
int r,
int width,
int Color,
int BgColor )
{
2007-10-31 06:40:15 +00:00
int x1, y1, x2, y2;
/* Clip arcs off screen */
2007-10-31 06:40:15 +00:00
if( ClipBox )
{
int x0, y0, xm, ym;
x0 = ClipBox->GetX();
y0 = ClipBox->GetY();
xm = ClipBox->GetRight();
ym = ClipBox->GetBottom();
if( xc < ( x0 - r - 1 ) )
2007-10-31 06:40:15 +00:00
return;
if( yc < ( y0 - r - 1 ) )
2007-10-31 06:40:15 +00:00
return;
if( xc > ( r + xm + 1 ) )
2007-10-31 06:40:15 +00:00
return;
if( yc > ( r + ym + 1 ) )
2007-10-31 06:40:15 +00:00
return;
}
x1 = r;
y1 = 0;
2007-10-31 06:40:15 +00:00
RotatePoint( &x1, &y1, EndAngle );
x2 = r;
y2 = 0;
2007-10-31 06:40:15 +00:00
RotatePoint( &x2, &y2, StAngle );
2007-10-31 06:40:15 +00:00
GRSetBrush( DC, BgColor, FILLED );
GRSetColorPen( DC, Color, width );
DC->DrawArc( xc + x1, yc - y1, xc + x2, yc - y2, xc, yc );
}
2007-10-31 06:40:15 +00:00
/*
* Draw a filled arc in drawing space.
*/
void GRFilledArc( EDA_Rect* ClipBox,
wxDC* DC,
int x,
int y,
int StAngle,
int EndAngle,
int r,
int width,
int Color,
int BgColor )
{
2007-10-31 06:40:15 +00:00
width = ZoomValue( width );
GRSFilledArc( ClipBox, DC, GRMapX( x ), GRMapY( y ), StAngle, EndAngle,
2007-10-31 06:40:15 +00:00
ZoomValue( r ), width, Color, BgColor );
}
2007-10-31 06:40:15 +00:00
void GRFilledArc( EDA_Rect* ClipBox, wxDC* DC, int x, int y,
int StAngle, int EndAngle, int r, int Color, int BgColor )
{
GRSFilledArc( ClipBox, DC, GRMapX( x ), GRMapY( y ), StAngle, EndAngle,
2007-10-31 06:40:15 +00:00
ZoomValue( r ), 0, Color, BgColor );
}
2007-10-31 06:40:15 +00:00
/*
* Draw an arc in drawing space.
*/
2007-10-31 06:40:15 +00:00
void GRArc( EDA_Rect* ClipBox, wxDC* DC, int xc, int yc, int StAngle,
int EndAngle, int r, int Color )
{
int x1, y1, x2, y2;
/* Clip arcs off screen */
2007-10-31 06:40:15 +00:00
if( ClipBox )
{
int radius = ZoomValue( r ) + 1;
2007-10-31 06:40:15 +00:00
int x0, y0, xm, ym, x, y;
x0 = ClipBox->GetX();
y0 = ClipBox->GetY();
xm = ClipBox->GetRight();
ym = ClipBox->GetBottom();
x = GRMapX( xc ); y = GRMapY( yc );
if( x < ( x0 - radius ) )
2007-10-31 06:40:15 +00:00
return;
if( y < ( y0 - radius ) )
2007-10-31 06:40:15 +00:00
return;
if( x > ( xm + radius ) )
2007-10-31 06:40:15 +00:00
return;
if( y > ( ym + radius ) )
2007-10-31 06:40:15 +00:00
return;
}
x1 = r;
y1 = 0;
2007-10-31 06:40:15 +00:00
RotatePoint( &x1, &y1, EndAngle );
x2 = r;
y2 = 0;
2007-10-31 06:40:15 +00:00
RotatePoint( &x2, &y2, StAngle );
GRSetColorPen( DC, Color );
GRSetBrush( DC, Color, false );
DC->DrawArc( GRMapX( xc + x1 ), GRMapY( yc - y1 ), GRMapX( xc + x2 ),
GRMapY( yc - y2 ), GRMapX( xc ), GRMapY( yc ) );
}
2007-10-31 06:40:15 +00:00
/*
* Draw an arc with width = width in drawing space.
*/
void GRArc( EDA_Rect* ClipBox,
wxDC* DC,
int x,
int y,
int StAngle,
int EndAngle,
int r,
int width,
int Color )
{
GRSArc( ClipBox, DC, GRMapX( x ), GRMapY( y ), StAngle, EndAngle,
ZoomValue( r ), ZoomValue( width ), Color );
}
2007-10-31 06:40:15 +00:00
/*
* Draw a rectangle in drawing space.
*/
void GRRect( EDA_Rect* aClipBox, wxDC* aDC, int x1, int y1, int x2, int y2, int aColor )
{
x1 = GRMapX( x1 );
y1 = GRMapY( y1 );
x2 = GRMapX( x2 );
y2 = GRMapY( y2 );
GRSRect( aClipBox, aDC, x1, y1, x2, y2, 0, aColor );
}
void GRRectPs( EDA_Rect* aClipBox, wxDC* aDC, const EDA_Rect& aRect, int aColor, wxPenStyle aStyle )
{
int x1 = GRMapX( aRect.GetX() );
int y1 = GRMapY( aRect.GetY() );
int x2 = GRMapX( aRect.GetRight() );
int y2 = GRMapY( aRect.GetBottom() );
GRSRect( aClipBox, aDC, x1, y1, x2, y2, 0, aColor, aStyle );
}
2007-10-31 06:40:15 +00:00
/*
* Draw a rectangle (thick lines) in drawing space.
*/
void GRRect( EDA_Rect* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2, int width, int Color )
{
x1 = GRMapX( x1 );
y1 = GRMapY( y1 );
x2 = GRMapX( x2 );
y2 = GRMapY( y2 );
2007-10-31 06:40:15 +00:00
width = ZoomValue( width );
2007-10-31 06:40:15 +00:00
GRSRect( ClipBox, DC, x1, y1, x2, y2, width, Color );
}
2007-10-31 06:40:15 +00:00
void GRRect( EDA_Rect* aClipBox, wxDC* aDC, const EDA_Rect& aRect, int aWidth, int aColor )
{
int x1 = GRMapX( aRect.GetX() );
int y1 = GRMapY( aRect.GetY() );
int x2 = GRMapX( aRect.GetRight() );
int y2 = GRMapY( aRect.GetBottom() );
int width = ZoomValue( aWidth );
GRSRect( aClipBox, aDC, x1, y1, x2, y2, width, aColor );
}
2007-10-31 06:40:15 +00:00
/*
* Draw a rectangle (filled with AreaColor) in drawing space.
*/
2007-10-31 06:40:15 +00:00
void GRFilledRect( EDA_Rect* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2,
int Color, int BgColor )
{
x1 = GRMapX( x1 );
y1 = GRMapY( y1 );
x2 = GRMapX( x2 );
y2 = GRMapY( y2 );
2007-10-31 06:40:15 +00:00
GRSFilledRect( ClipBox, DC, x1, y1, x2, y2, 0, Color, BgColor );
}
2007-10-31 06:40:15 +00:00
/*
* Draw a rectangle (filled with AreaColor) in drawing space.
*/
2007-10-31 06:40:15 +00:00
void GRFilledRect( EDA_Rect* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2,
int width, int Color, int BgColor )
{
x1 = GRMapX( x1 );
y1 = GRMapY( y1 );
x2 = GRMapX( x2 );
y2 = GRMapY( y2 );
2007-10-31 06:40:15 +00:00
width = ZoomValue( width );
2007-10-31 06:40:15 +00:00
GRSFilledRect( ClipBox, DC, x1, y1, x2, y2, width, Color, BgColor );
}
2007-10-31 06:40:15 +00:00
/*
* Draw a rectangle in screen space.
*/
void GRSRect( EDA_Rect* aClipBox, wxDC* aDC, int x1, int y1, int x2, int y2,
int aWidth, int aColor, wxPenStyle aStyle )
{
2007-10-31 06:40:15 +00:00
if( x1 > x2 )
EXCHG( x1, x2 );
if( y1 > y2 )
EXCHG( y1, y2 );
if( aClipBox )
2007-10-31 06:40:15 +00:00
{
int xmin = aClipBox->GetX();
int ymin = aClipBox->GetY();
int xmax = aClipBox->GetRight();
int ymax = aClipBox->GetBottom();
2007-10-31 06:40:15 +00:00
if( x1 > xmax )
return;
if( x2 < xmin )
return;
if( y1 > ymax )
return;
if( y2 < ymin )
return;
}
GRSetColorPen( aDC, aColor, aWidth, aStyle );
if( ( x1 == x2 ) || ( y1 == y2 ) )
aDC->DrawLine( x1, y1, x2, y2 );
2007-10-31 06:40:15 +00:00
else
{
GRSetBrush( aDC, BLACK );
aDC->DrawRectangle( x1, y1, x2 - x1, y2 - y1 );
2007-10-31 06:40:15 +00:00
}
}
void GRSFilledRect( EDA_Rect* ClipBox, wxDC* DC,
int x1, int y1, int x2, int y2,
int width, int Color, int BgColor )
{
2007-10-31 06:40:15 +00:00
if( x1 > x2 )
EXCHG( x1, x2 );
if( y1 > y2 )
EXCHG( y1, y2 );
if( ClipBox )
{
int xmin = ClipBox->GetX();
int ymin = ClipBox->GetY();
int xmax = ClipBox->GetRight();
int ymax = ClipBox->GetBottom();
if( x1 > xmax )
return;
if( x2 < xmin )
return;
if( y1 > ymax )
return;
if( y2 < ymin )
return;
// Clipping coordinates
if( x1 < xmin )
x1 = xmin - 1;
if( y1 < ymin )
y1 = ymin - 1;
if( x2 > xmax )
x2 = xmax + 1;
if( y2 > ymax )
y2 = ymax + 1;
}
GRSetColorPen( DC, Color, width );
if( ( x1 == x2 ) || ( y1 == y2 ) )
2007-10-31 06:40:15 +00:00
DC->DrawLine( x1, y1, x2, y2 );
else
{
GRSetBrush( DC, BgColor, FILLED );
DC->DrawRectangle( x1, y1, x2 - x1, y2 - y1 );
}
}
#ifdef USE_CLIP_FILLED_POLYGONS
/** Function ClipAndDrawFilledPoly
* Used to clip a polygon and draw it as Filled Polygon
* uses the Sutherland and Hodgman algo to clip the given poly against a
* rectangle. This rectangle is the drawing area this is useful under
* Linux (2009) because filled polygons are incorrectly drawn if they have
* too large coordinates (seems due to integer overflows in calculations)
* Could be removed in some years, if become unnecessary.
*/
2010-10-25 16:48:05 +00:00
/* Note: aClipBox == NULL is legal, so if aClipBox == NULL,
* the polygon is drawn, but not clipped
*/
#include "SutherlandHodgmanClipPoly.h"
void ClipAndDrawFilledPoly( EDA_Rect* aClipBox,
wxDC* aDC,
wxPoint aPoints[],
int n )
{
2010-10-25 16:48:05 +00:00
if( aClipBox == NULL )
{
aDC->DrawPolygon( n, aPoints );
return;
}
// A clip box exists: clip and draw the polygon.
static vector<wxPoint> clippedPolygon;
static pointVector inputPolygon, outputPolygon;
inputPolygon.clear();
outputPolygon.clear();
clippedPolygon.clear();
for( int ii = 0; ii < n; ii++ )
inputPolygon.push_back( PointF( (REAL) aPoints[ii].x,
(REAL) aPoints[ii].y ) );
RectF window( (REAL) aClipBox->GetX(), (REAL) aClipBox->GetY(),
(REAL) aClipBox->GetWidth(),
(REAL) aClipBox->GetHeight() );
SutherlandHodgman sh( window );
sh.Clip( inputPolygon, outputPolygon );
for( cpointIterator cit = outputPolygon.begin();
cit != outputPolygon.end();
++cit )
{
clippedPolygon.push_back( wxPoint( wxRound( cit->X ),
wxRound( cit->Y ) ) );
}
if( clippedPolygon.size() )
aDC->DrawPolygon( clippedPolygon.size(), &clippedPolygon[0] );
}
#endif
2009-06-25 20:45:27 +00:00
2009-06-25 20:45:27 +00:00
void GRBezier( EDA_Rect* ClipBox,
wxDC* DC,
int x1,
int y1,
int x2,
int y2,
int x3,
int y3,
int width,
int Color )
{
std::vector<wxPoint> Points = Bezier2Poly( x1, y1, x2, y2, x3, y3 );
GRPoly( ClipBox, DC, Points.size(), &Points[0], false, width, Color, 0 );
}
void GRBezier( EDA_Rect* ClipBox,
wxDC* DC,
int x1,
int y1,
int x2,
int y2,
int x3,
int y3,
int x4,
int y4,
int width,
int Color )
{
std::vector<wxPoint> Points = Bezier2Poly( x1, y1, x2, y2, x3, y3, x4, y4 );
GRPoly( ClipBox, DC, Points.size(), &Points[0], false, width, Color, 0 );
}