2012-05-03 18:37:56 +00:00
|
|
|
/**
|
|
|
|
* @file class_plotter.cpp
|
|
|
|
* @brief KiCad: Base of all the plot routines
|
|
|
|
* the class PLOTTER handle basic functions to plot schematic and boards
|
|
|
|
* with different plot formats.
|
|
|
|
*
|
|
|
|
* There are currently engines for:
|
|
|
|
* HPGL
|
|
|
|
* POSTSCRIPT
|
|
|
|
* GERBER
|
|
|
|
* DXF
|
2012-09-15 12:13:03 +00:00
|
|
|
* an SVG 'plot' is also provided along with the 'print' function by wx, but
|
2012-05-03 18:37:56 +00:00
|
|
|
* is not handled here.
|
|
|
|
*/
|
2009-08-29 10:20:48 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
2009-08-29 10:20:48 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <trigo.h>
|
|
|
|
#include <wxstruct.h>
|
|
|
|
#include <base_struct.h>
|
|
|
|
#include <common.h>
|
|
|
|
#include <plot_common.h>
|
|
|
|
#include <worksheet.h>
|
|
|
|
#include <macros.h>
|
|
|
|
#include <class_base_screen.h>
|
|
|
|
#include <drawtxt.h>
|
2009-08-29 10:20:48 +00:00
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
PLOTTER::PLOTTER( )
|
2009-08-29 10:20:48 +00:00
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
plotScale = 1;
|
|
|
|
defaultPenWidth = 0;
|
2012-09-15 12:13:03 +00:00
|
|
|
currentPenWidth = -1; // To-be-set marker
|
2012-05-03 18:37:56 +00:00
|
|
|
penState = 'Z'; // End-of-path idle
|
2012-09-15 12:13:03 +00:00
|
|
|
plotMirror = false; // Mirror flag
|
2012-05-03 18:37:56 +00:00
|
|
|
outputFile = 0;
|
2012-09-15 12:13:03 +00:00
|
|
|
colorMode = false; // Starts as a BW plot
|
2012-05-03 18:37:56 +00:00
|
|
|
negativeMode = false;
|
2009-08-29 10:20:48 +00:00
|
|
|
}
|
|
|
|
|
2013-02-06 11:54:51 +00:00
|
|
|
PLOTTER::~PLOTTER()
|
|
|
|
{
|
|
|
|
// Emergency cleanup, but closing the file is
|
|
|
|
// usually made in EndPlot().
|
|
|
|
if( outputFile )
|
|
|
|
{
|
|
|
|
fclose( outputFile );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-13 18:54:33 +00:00
|
|
|
/*
|
|
|
|
* Open or create the plot file aFullFilename
|
|
|
|
* return true if success, false if the file connot be created/opened
|
|
|
|
*
|
|
|
|
* Virtual because some plotters use ascii files, some others binary files (PDF)
|
|
|
|
* The base class open the file in text mode
|
|
|
|
*/
|
|
|
|
bool PLOTTER::OpenFile( const wxString& aFullFilename )
|
|
|
|
{
|
|
|
|
filename = aFullFilename;
|
|
|
|
|
|
|
|
wxASSERT( !outputFile );
|
|
|
|
|
|
|
|
// Open the file in text mode (not suitable for all plotters
|
|
|
|
// but only for most of them
|
|
|
|
outputFile = wxFopen( filename, wxT( "wt" ) );
|
|
|
|
|
|
|
|
if( outputFile == NULL )
|
|
|
|
return false ;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2009-08-29 10:20:48 +00:00
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
/**
|
|
|
|
* Modifies coordinates according to the orientation,
|
|
|
|
* scale factor, and offsets trace. Also convert from a wxPoint to DPOINT,
|
|
|
|
* since some output engines needs floating point coordinates.
|
2009-11-23 15:16:50 +00:00
|
|
|
*/
|
2012-05-03 18:37:56 +00:00
|
|
|
DPOINT PLOTTER::userToDeviceCoordinates( const wxPoint& pos )
|
2009-08-29 10:20:48 +00:00
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
double x = (pos.x - plotOffset.x) * plotScale * iuPerDeviceUnit;
|
|
|
|
double y;
|
2009-08-29 10:20:48 +00:00
|
|
|
|
2010-12-11 18:40:39 +00:00
|
|
|
if( plotMirror )
|
2012-05-03 18:37:56 +00:00
|
|
|
y = ( pos.y - plotOffset.y ) * plotScale * iuPerDeviceUnit ;
|
2009-08-29 10:20:48 +00:00
|
|
|
else
|
2012-05-03 18:37:56 +00:00
|
|
|
y = ( paperSize.y - ( pos.y - plotOffset.y )
|
|
|
|
* plotScale ) * iuPerDeviceUnit ;
|
2012-09-15 12:13:03 +00:00
|
|
|
return DPOINT( x, y );
|
2009-08-29 10:20:48 +00:00
|
|
|
}
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
/**
|
|
|
|
* Modifies size according to the plotter scale factors
|
|
|
|
* (wxSize version, returns a DPOINT)
|
|
|
|
*/
|
|
|
|
DPOINT PLOTTER::userToDeviceSize( const wxSize& size )
|
|
|
|
{
|
|
|
|
return DPOINT( size.x * plotScale * iuPerDeviceUnit,
|
|
|
|
size.y * plotScale * iuPerDeviceUnit );
|
|
|
|
}
|
2009-08-29 10:20:48 +00:00
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
/**
|
|
|
|
* Modifies size according to the plotter scale factors
|
|
|
|
* (simple double version)
|
|
|
|
*/
|
|
|
|
double PLOTTER::userToDeviceSize( double size )
|
|
|
|
{
|
|
|
|
return size * plotScale * iuPerDeviceUnit;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-09-15 12:13:03 +00:00
|
|
|
/**
|
|
|
|
* Generic fallback: arc rendered as a polyline
|
2012-05-03 18:37:56 +00:00
|
|
|
*/
|
|
|
|
void PLOTTER::Arc( const wxPoint& centre, int StAngle, int EndAngle, int radius,
|
2009-11-23 15:16:50 +00:00
|
|
|
FILL_T fill, int width )
|
2009-08-29 10:20:48 +00:00
|
|
|
{
|
|
|
|
wxPoint start, end;
|
2012-09-15 12:13:03 +00:00
|
|
|
const int delta = 50; // increment (in 0.1 degrees) to draw circles
|
2009-08-29 10:20:48 +00:00
|
|
|
double alpha;
|
|
|
|
|
|
|
|
if( StAngle > EndAngle )
|
|
|
|
EXCHG( StAngle, EndAngle );
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
SetCurrentLineWidth( width );
|
2009-08-29 10:20:48 +00:00
|
|
|
/* Please NOTE the different sign due to Y-axis flip */
|
2012-05-03 18:37:56 +00:00
|
|
|
alpha = DEG2RAD( StAngle / 10.0 );
|
2009-11-23 15:16:50 +00:00
|
|
|
start.x = centre.x + (int) ( radius * cos( -alpha ) );
|
|
|
|
start.y = centre.y + (int) ( radius * sin( -alpha ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
MoveTo( start );
|
2009-08-29 10:20:48 +00:00
|
|
|
for( int ii = StAngle + delta; ii < EndAngle; ii += delta )
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
alpha = DEG2RAD( ii / 10.0 );
|
2009-11-23 15:16:50 +00:00
|
|
|
end.x = centre.x + (int) ( radius * cos( -alpha ) );
|
|
|
|
end.y = centre.y + (int) ( radius * sin( -alpha ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
LineTo( end );
|
2009-08-29 10:20:48 +00:00
|
|
|
}
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
alpha = DEG2RAD( EndAngle / 10.0 );
|
2009-11-23 15:16:50 +00:00
|
|
|
end.x = centre.x + (int) ( radius * cos( -alpha ) );
|
|
|
|
end.y = centre.y + (int) ( radius * sin( -alpha ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
FinishTo( end );
|
2009-08-29 10:20:48 +00:00
|
|
|
}
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
/**
|
|
|
|
* Fallback: if it doesn't handle bitmaps, we plot a rectangle
|
|
|
|
*/
|
2012-09-15 12:13:03 +00:00
|
|
|
void PLOTTER::PlotImage(const wxImage & aImage, const wxPoint& aPos,
|
2012-05-03 18:37:56 +00:00
|
|
|
double aScaleFactor )
|
2009-08-29 10:20:48 +00:00
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
wxSize size( aImage.GetWidth() * aScaleFactor,
|
|
|
|
aImage.GetHeight() * aScaleFactor );
|
2009-08-29 10:20:48 +00:00
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
wxPoint start = aPos;
|
|
|
|
start.x -= size.x / 2;
|
|
|
|
start.y -= size.y / 2;
|
2009-08-29 10:20:48 +00:00
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
wxPoint end = start;
|
|
|
|
end.x += size.x;
|
|
|
|
end.y += size.y;
|
|
|
|
|
|
|
|
Rect( start, end, NO_FILL );
|
2009-08-29 10:20:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
/**
|
|
|
|
* Plot a square centered on the position. Building block for markers
|
|
|
|
*/
|
|
|
|
void PLOTTER::markerSquare( const wxPoint& position, int radius )
|
2009-08-29 10:20:48 +00:00
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
double r = KiROUND( radius / 1.4142 );
|
|
|
|
std::vector< wxPoint > corner_list;
|
2011-04-20 08:13:21 +00:00
|
|
|
wxPoint corner;
|
2012-05-03 18:37:56 +00:00
|
|
|
corner.x = position.x + r;
|
|
|
|
corner.y = position.y + r;
|
2011-04-20 08:13:21 +00:00
|
|
|
corner_list.push_back( corner );
|
2012-05-03 18:37:56 +00:00
|
|
|
corner.x = position.x + r;
|
|
|
|
corner.y = position.y - r;
|
2011-04-20 08:13:21 +00:00
|
|
|
corner_list.push_back( corner );
|
2012-05-03 18:37:56 +00:00
|
|
|
corner.x = position.x - r;
|
|
|
|
corner.y = position.y - r;
|
2011-04-20 08:13:21 +00:00
|
|
|
corner_list.push_back( corner );
|
2012-05-03 18:37:56 +00:00
|
|
|
corner.x = position.x - r;
|
|
|
|
corner.y = position.y + r;
|
2011-04-20 08:13:21 +00:00
|
|
|
corner_list.push_back( corner );
|
2012-05-03 18:37:56 +00:00
|
|
|
corner.x = position.x + r;
|
|
|
|
corner.y = position.y + r;
|
2011-04-20 08:13:21 +00:00
|
|
|
corner_list.push_back( corner );
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
PlotPoly( corner_list, NO_FILL );
|
2009-08-29 10:20:48 +00:00
|
|
|
}
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
/**
|
|
|
|
* Plot a circle centered on the position. Building block for markers
|
|
|
|
*/
|
|
|
|
void PLOTTER::markerCircle( const wxPoint& position, int radius )
|
|
|
|
{
|
|
|
|
Circle( position, radius * 2, NO_FILL );
|
|
|
|
}
|
2009-08-29 10:20:48 +00:00
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
/**
|
|
|
|
* Plot a lozenge centered on the position. Building block for markers
|
|
|
|
*/
|
|
|
|
void PLOTTER::markerLozenge( const wxPoint& position, int radius )
|
2009-08-29 10:20:48 +00:00
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
std::vector< wxPoint > corner_list;
|
2011-04-20 08:13:21 +00:00
|
|
|
wxPoint corner;
|
|
|
|
corner.x = position.x;
|
|
|
|
corner.y = position.y + radius;
|
|
|
|
corner_list.push_back( corner );
|
|
|
|
corner.x = position.x + radius;
|
|
|
|
corner.y = position.y,
|
|
|
|
corner_list.push_back( corner );
|
|
|
|
corner.x = position.x;
|
|
|
|
corner.y = position.y - radius;
|
|
|
|
corner_list.push_back( corner );
|
|
|
|
corner.x = position.x - radius;
|
|
|
|
corner.y = position.y;
|
|
|
|
corner_list.push_back( corner );
|
|
|
|
corner.x = position.x;
|
|
|
|
corner.y = position.y + radius;
|
|
|
|
corner_list.push_back( corner );
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
PlotPoly( corner_list, NO_FILL );
|
2009-08-29 10:20:48 +00:00
|
|
|
}
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
/**
|
|
|
|
* Plot a - bar centered on the position. Building block for markers
|
|
|
|
*/
|
|
|
|
void PLOTTER::markerHBar( const wxPoint& pos, int radius )
|
|
|
|
{
|
|
|
|
MoveTo( wxPoint( pos.x - radius, pos.y ) );
|
|
|
|
FinishTo( wxPoint( pos.x + radius, pos.y ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Plot a / bar centered on the position. Building block for markers
|
|
|
|
*/
|
|
|
|
void PLOTTER::markerSlash( const wxPoint& pos, int radius )
|
|
|
|
{
|
|
|
|
MoveTo( wxPoint( pos.x - radius, pos.y - radius ) );
|
|
|
|
FinishTo( wxPoint( pos.x + radius, pos.y + radius ) );
|
|
|
|
}
|
2009-08-29 10:20:48 +00:00
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
/**
|
|
|
|
* Plot a \ bar centered on the position. Building block for markers
|
|
|
|
*/
|
|
|
|
void PLOTTER::markerBackSlash( const wxPoint& pos, int radius )
|
|
|
|
{
|
|
|
|
MoveTo( wxPoint( pos.x + radius, pos.y - radius ) );
|
|
|
|
FinishTo( wxPoint( pos.x - radius, pos.y + radius ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Plot a | bar centered on the position. Building block for markers
|
|
|
|
*/
|
|
|
|
void PLOTTER::markerVBar( const wxPoint& pos, int radius )
|
|
|
|
{
|
|
|
|
MoveTo( wxPoint( pos.x, pos.y - radius ) );
|
|
|
|
FinishTo( wxPoint( pos.x, pos.y + radius ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Draw a pattern shape number aShapeId, to coord x0, y0.
|
2009-11-23 15:16:50 +00:00
|
|
|
* x0, y0 = coordinates tables
|
|
|
|
* Diameter diameter = (coord table) hole
|
|
|
|
* AShapeId = index (used to generate forms characters)
|
2009-08-29 10:20:48 +00:00
|
|
|
*/
|
2012-05-03 18:37:56 +00:00
|
|
|
void PLOTTER::Marker( const wxPoint& position, int diametre, unsigned aShapeId )
|
2009-08-29 10:20:48 +00:00
|
|
|
{
|
2009-11-23 15:16:50 +00:00
|
|
|
int radius = diametre / 2;
|
2012-09-15 12:13:03 +00:00
|
|
|
/* Marker are composed by a series of 'parts' superimposed; not every
|
2012-05-03 18:37:56 +00:00
|
|
|
combination make sense, obviously. Since they are used in order I
|
|
|
|
tried to keep the uglier/more complex constructions at the end.
|
|
|
|
Also I avoided the |/ |\ -/ -\ construction because they're *very*
|
|
|
|
ugly... if needed they could be added anyway... I'd like to see
|
|
|
|
a board with more than 58 drilling/slotting tools!
|
|
|
|
If Visual C++ supported the 0b literals they would be optimally
|
|
|
|
and easily encoded as an integer array. We have to do with octal */
|
|
|
|
static const unsigned char marker_patterns[MARKER_COUNT] = {
|
2012-09-15 12:13:03 +00:00
|
|
|
// Bit order: O Square Lozenge - | \ /
|
2012-05-03 18:37:56 +00:00
|
|
|
// First choice: simple shapes
|
|
|
|
0003, // X
|
|
|
|
0100, // O
|
|
|
|
0014, // +
|
|
|
|
0040, // Sq
|
|
|
|
0020, // Lz
|
|
|
|
// Two simple shapes
|
|
|
|
0103, // X O
|
|
|
|
0017, // X +
|
|
|
|
0043, // X Sq
|
|
|
|
0023, // X Lz
|
|
|
|
0114, // O +
|
|
|
|
0140, // O Sq
|
|
|
|
0120, // O Lz
|
|
|
|
0054, // + Sq
|
|
|
|
0034, // + Lz
|
|
|
|
0060, // Sq Lz
|
|
|
|
// Three simple shapes
|
|
|
|
0117, // X O +
|
|
|
|
0143, // X O Sq
|
|
|
|
0123, // X O Lz
|
|
|
|
0057, // X + Sq
|
|
|
|
0037, // X + Lz
|
|
|
|
0063, // X Sq Lz
|
|
|
|
0154, // O + Sq
|
|
|
|
0134, // O + Lz
|
|
|
|
0074, // + Sq Lz
|
|
|
|
// Four simple shapes
|
|
|
|
0174, // O Sq Lz +
|
|
|
|
0163, // X O Sq Lz
|
|
|
|
0157, // X O Sq +
|
|
|
|
0137, // X O Lz +
|
|
|
|
0077, // X Sq Lz +
|
|
|
|
// This draws *everything *
|
|
|
|
0177, // X O Sq Lz +
|
|
|
|
// Here we use the single bars... so the cross is forbidden
|
|
|
|
0110, // O -
|
|
|
|
0104, // O |
|
|
|
|
0101, // O /
|
|
|
|
0050, // Sq -
|
|
|
|
0044, // Sq |
|
|
|
|
0041, // Sq /
|
|
|
|
0030, // Lz -
|
|
|
|
0024, // Lz |
|
|
|
|
0021, // Lz /
|
|
|
|
0150, // O Sq -
|
|
|
|
0144, // O Sq |
|
|
|
|
0141, // O Sq /
|
|
|
|
0130, // O Lz -
|
|
|
|
0124, // O Lz |
|
|
|
|
0121, // O Lz /
|
|
|
|
0070, // Sq Lz -
|
|
|
|
0064, // Sq Lz |
|
|
|
|
0061, // Sq Lz /
|
|
|
|
0170, // O Sq Lz -
|
|
|
|
0164, // O Sq Lz |
|
|
|
|
0161, // O Sq Lz /
|
|
|
|
// Last resort: the backlash component (easy to confound)
|
|
|
|
0102, // \ O
|
|
|
|
0042, // \ Sq
|
|
|
|
0022, // \ Lz
|
|
|
|
0142, // \ O Sq
|
|
|
|
0122, // \ O Lz
|
|
|
|
0062, // \ Sq Lz
|
|
|
|
0162 // \ O Sq Lz
|
|
|
|
};
|
|
|
|
if( aShapeId >= MARKER_COUNT )
|
2009-08-29 10:20:48 +00:00
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
// Fallback shape
|
|
|
|
markerCircle( position, radius );
|
2012-09-15 12:13:03 +00:00
|
|
|
}
|
|
|
|
else
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
|
|
|
// Decode the pattern and draw the corresponding parts
|
|
|
|
unsigned char pat = marker_patterns[aShapeId];
|
2012-09-15 12:13:03 +00:00
|
|
|
if( pat & 0001 )
|
|
|
|
markerSlash( position, radius );
|
|
|
|
if( pat & 0002 )
|
|
|
|
markerBackSlash( position, radius );
|
|
|
|
if( pat & 0004 )
|
|
|
|
markerVBar( position, radius );
|
|
|
|
if( pat & 0010 )
|
|
|
|
markerHBar( position, radius );
|
|
|
|
if( pat & 0020 )
|
|
|
|
markerLozenge( position, radius );
|
|
|
|
if( pat & 0040 )
|
|
|
|
markerSquare( position, radius );
|
|
|
|
if( pat & 0100 )
|
|
|
|
markerCircle( position, radius );
|
2009-08-29 10:20:48 +00:00
|
|
|
}
|
2012-05-03 18:37:56 +00:00
|
|
|
|
2009-08-29 10:20:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
/**
|
2012-09-15 12:13:03 +00:00
|
|
|
* Convert a thick segment and plot it as an oval
|
2012-05-03 18:37:56 +00:00
|
|
|
*/
|
|
|
|
void PLOTTER::segmentAsOval( const wxPoint& start, const wxPoint& end, int width,
|
|
|
|
EDA_DRAW_MODE_T tracemode )
|
2009-08-29 10:20:48 +00:00
|
|
|
{
|
|
|
|
wxPoint center( (start.x + end.x) / 2, (start.y + end.y) / 2 );
|
|
|
|
wxSize size( end.x - start.x, end.y - start.y );
|
|
|
|
int orient;
|
|
|
|
|
|
|
|
if( size.y == 0 )
|
|
|
|
orient = 0;
|
|
|
|
else if( size.x == 0 )
|
|
|
|
orient = 900;
|
|
|
|
else
|
2013-02-11 00:41:49 +00:00
|
|
|
orient = -(int) ( RAD2DEG( atan2( (double)size.y, (double)size.x ) ) * 10.0 );
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
size.x = (int) sqrt( ( (double) size.x * size.x )
|
|
|
|
+ ( (double) size.y * size.y ) ) + width;
|
2009-08-29 10:20:48 +00:00
|
|
|
size.y = width;
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
FlashPadOval( center, size, orient, tracemode );
|
2009-08-29 10:20:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
void PLOTTER::sketchOval( const wxPoint& pos, const wxSize& aSize, int orient,
|
|
|
|
int width )
|
2009-08-29 10:20:48 +00:00
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
SetCurrentLineWidth( width );
|
|
|
|
width = currentPenWidth;
|
2009-11-23 15:16:50 +00:00
|
|
|
int radius, deltaxy, cx, cy;
|
2012-05-03 18:37:56 +00:00
|
|
|
wxSize size( aSize );
|
2009-11-23 15:16:50 +00:00
|
|
|
|
2009-08-29 10:20:48 +00:00
|
|
|
if( size.x > size.y )
|
|
|
|
{
|
2009-11-23 15:16:50 +00:00
|
|
|
EXCHG( size.x, size.y );
|
|
|
|
orient += 900;
|
2009-08-29 10:20:48 +00:00
|
|
|
if( orient >= 3600 )
|
|
|
|
orient -= 3600;
|
|
|
|
}
|
2009-11-23 15:16:50 +00:00
|
|
|
|
|
|
|
deltaxy = size.y - size.x; /* distance between centers of the oval */
|
|
|
|
radius = ( size.x - width ) / 2;
|
|
|
|
cx = -radius;
|
|
|
|
cy = -deltaxy / 2;
|
2009-08-29 10:20:48 +00:00
|
|
|
RotatePoint( &cx, &cy, orient );
|
2012-05-03 18:37:56 +00:00
|
|
|
MoveTo( wxPoint( cx + pos.x, cy + pos.y ) );
|
2009-11-23 15:16:50 +00:00
|
|
|
cx = -radius;
|
|
|
|
cy = deltaxy / 2;
|
2009-08-29 10:20:48 +00:00
|
|
|
RotatePoint( &cx, &cy, orient );
|
2012-05-03 18:37:56 +00:00
|
|
|
FinishTo( wxPoint( cx + pos.x, cy + pos.y ) );
|
2009-08-29 10:20:48 +00:00
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
cx = radius;
|
|
|
|
cy = -deltaxy / 2;
|
2009-08-29 10:20:48 +00:00
|
|
|
RotatePoint( &cx, &cy, orient );
|
2012-05-03 18:37:56 +00:00
|
|
|
MoveTo( wxPoint( cx + pos.x, cy + pos.y ) );
|
2009-11-23 15:16:50 +00:00
|
|
|
cx = radius;
|
|
|
|
cy = deltaxy / 2;
|
2009-08-29 10:20:48 +00:00
|
|
|
RotatePoint( &cx, &cy, orient );
|
2012-05-03 18:37:56 +00:00
|
|
|
FinishTo( wxPoint( cx + pos.x, cy + pos.y ) );
|
2009-08-29 10:20:48 +00:00
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
cx = 0;
|
|
|
|
cy = deltaxy / 2;
|
2009-08-29 10:20:48 +00:00
|
|
|
RotatePoint( &cx, &cy, orient );
|
2012-05-03 18:37:56 +00:00
|
|
|
Arc( wxPoint( cx + pos.x, cy + pos.y ),
|
2009-08-29 10:20:48 +00:00
|
|
|
orient + 1800, orient + 3600,
|
2009-11-23 15:16:50 +00:00
|
|
|
radius, NO_FILL );
|
|
|
|
cx = 0;
|
|
|
|
cy = -deltaxy / 2;
|
2009-08-29 10:20:48 +00:00
|
|
|
RotatePoint( &cx, &cy, orient );
|
2012-05-03 18:37:56 +00:00
|
|
|
Arc( wxPoint( cx + pos.x, cy + pos.y ),
|
2009-08-29 10:20:48 +00:00
|
|
|
orient, orient + 1800,
|
2009-11-23 15:16:50 +00:00
|
|
|
radius, NO_FILL );
|
2009-08-29 10:20:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Plot 1 segment like a track segment
|
|
|
|
*/
|
2012-05-03 18:37:56 +00:00
|
|
|
void PLOTTER::ThickSegment( const wxPoint& start, const wxPoint& end, int width,
|
|
|
|
EDA_DRAW_MODE_T tracemode )
|
2009-08-29 10:20:48 +00:00
|
|
|
{
|
|
|
|
switch( tracemode )
|
|
|
|
{
|
|
|
|
case FILLED:
|
2012-01-03 17:14:17 +00:00
|
|
|
case LINE:
|
2012-05-03 18:37:56 +00:00
|
|
|
SetCurrentLineWidth( tracemode==FILLED ? width : -1 );
|
|
|
|
MoveTo( start );
|
|
|
|
FinishTo( end );
|
2009-08-29 10:20:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SKETCH:
|
2012-05-03 18:37:56 +00:00
|
|
|
SetCurrentLineWidth( -1 );
|
|
|
|
segmentAsOval( start, end, width, tracemode );
|
2009-08-29 10:20:48 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
void PLOTTER::ThickArc( const wxPoint& centre, int StAngle, int EndAngle, int radius,
|
|
|
|
int width, EDA_DRAW_MODE_T tracemode )
|
2009-08-29 10:20:48 +00:00
|
|
|
{
|
|
|
|
switch( tracemode )
|
|
|
|
{
|
2012-01-03 17:14:17 +00:00
|
|
|
case LINE:
|
2012-05-03 18:37:56 +00:00
|
|
|
SetCurrentLineWidth( -1 );
|
|
|
|
Arc( centre, StAngle, EndAngle, radius, NO_FILL, -1 );
|
2009-08-29 10:20:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FILLED:
|
2012-05-03 18:37:56 +00:00
|
|
|
Arc( centre, StAngle, EndAngle, radius, NO_FILL, width );
|
2009-08-29 10:20:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SKETCH:
|
2012-05-03 18:37:56 +00:00
|
|
|
SetCurrentLineWidth( -1 );
|
|
|
|
Arc( centre, StAngle, EndAngle,
|
|
|
|
radius - ( width - currentPenWidth ) / 2, NO_FILL, -1 );
|
|
|
|
Arc( centre, StAngle, EndAngle,
|
|
|
|
radius + ( width - currentPenWidth ) / 2, NO_FILL, -1 );
|
2009-08-29 10:20:48 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
void PLOTTER::ThickRect( const wxPoint& p1, const wxPoint& p2, int width,
|
|
|
|
EDA_DRAW_MODE_T tracemode )
|
2009-08-29 10:20:48 +00:00
|
|
|
{
|
|
|
|
switch( tracemode )
|
|
|
|
{
|
2012-01-03 17:14:17 +00:00
|
|
|
case LINE:
|
2012-05-03 18:37:56 +00:00
|
|
|
Rect( p1, p2, NO_FILL, -1 );
|
2009-08-29 10:20:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FILLED:
|
2012-05-03 18:37:56 +00:00
|
|
|
Rect( p1, p2, NO_FILL, width );
|
2009-08-29 10:20:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SKETCH:
|
2012-05-03 18:37:56 +00:00
|
|
|
SetCurrentLineWidth( -1 );
|
|
|
|
wxPoint offsetp1( p1.x - (width - currentPenWidth) / 2,
|
|
|
|
p1.y - (width - currentPenWidth) / 2 );
|
|
|
|
wxPoint offsetp2( p2.x + (width - currentPenWidth) / 2,
|
|
|
|
p2.y + (width - currentPenWidth) / 2 );
|
|
|
|
Rect( offsetp1, offsetp2, NO_FILL, -1 );
|
|
|
|
offsetp1.x += (width - currentPenWidth);
|
|
|
|
offsetp1.y += (width - currentPenWidth);
|
|
|
|
offsetp2.x -= (width - currentPenWidth);
|
|
|
|
offsetp2.y -= (width - currentPenWidth);
|
|
|
|
Rect( offsetp1, offsetp2, NO_FILL, -1 );
|
2009-08-29 10:20:48 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
void PLOTTER::ThickCircle( const wxPoint& pos, int diametre, int width,
|
|
|
|
EDA_DRAW_MODE_T tracemode )
|
2009-08-29 10:20:48 +00:00
|
|
|
{
|
|
|
|
switch( tracemode )
|
|
|
|
{
|
2012-01-03 17:14:17 +00:00
|
|
|
case LINE:
|
2012-05-03 18:37:56 +00:00
|
|
|
Circle( pos, diametre, NO_FILL, -1 );
|
2009-08-29 10:20:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FILLED:
|
2012-05-03 18:37:56 +00:00
|
|
|
Circle( pos, diametre, NO_FILL, width );
|
2009-08-29 10:20:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SKETCH:
|
2012-05-03 18:37:56 +00:00
|
|
|
SetCurrentLineWidth( -1 );
|
|
|
|
Circle( pos, diametre - width + currentPenWidth, NO_FILL, -1 );
|
|
|
|
Circle( pos, diametre + width - currentPenWidth, NO_FILL, -1 );
|
2009-08-29 10:20:48 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-22 21:57:50 +00:00
|
|
|
void PLOTTER::SetPageSettings( const PAGE_INFO& aPageSettings )
|
2009-08-29 10:20:48 +00:00
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
wxASSERT( !outputFile );
|
2011-12-22 21:57:50 +00:00
|
|
|
pageInfo = aPageSettings;
|
2009-08-29 10:20:48 +00:00
|
|
|
}
|
2011-12-22 21:57:50 +00:00
|
|
|
|