2009-11-23 15:16:50 +00:00
|
|
|
/***********************************/
|
2009-06-30 10:43:20 +00:00
|
|
|
/* Kicad: Common plot DXF Routines */
|
2009-11-23 15:16:50 +00:00
|
|
|
/***********************************/
|
2009-06-30 10:43:20 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
#include "gr_basic.h"
|
|
|
|
#include "trigo.h"
|
|
|
|
#include "wxstruct.h"
|
|
|
|
#include "base_struct.h"
|
|
|
|
#include "plot_common.h"
|
|
|
|
#include "macros.h"
|
|
|
|
#include "kicad_string.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* Set the plot offset for the current plotting
|
|
|
|
*/
|
2009-11-23 15:16:50 +00:00
|
|
|
void DXF_PLOTTER::set_viewport( wxPoint offset,
|
|
|
|
double aScale, int orient )
|
2009-06-30 10:43:20 +00:00
|
|
|
{
|
|
|
|
wxASSERT( !output_file );
|
|
|
|
plot_offset = offset;
|
|
|
|
plot_scale = aScale;
|
|
|
|
device_scale = 1;
|
|
|
|
set_default_line_width( 0 ); /* No line width on DXF */
|
|
|
|
plot_orient_options = 0; /* No mirroring on DXF */
|
|
|
|
current_color = BLACK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-31 16:59:32 +00:00
|
|
|
bool DXF_PLOTTER::start_plot( FILE* fout )
|
2009-06-30 10:43:20 +00:00
|
|
|
{
|
|
|
|
wxASSERT( !output_file );
|
|
|
|
output_file = fout;
|
|
|
|
/* DXF HEADER - Boilerplate */
|
2009-11-23 15:16:50 +00:00
|
|
|
fputs( "0\nSECTION\n2\nHEADER\n9\n$ANGBASE\n50\n0.0\n9\n$ANGDIR\n70\n0\n0\nENDSEC\n0\nSECTION\n2\nTABLES\n0\nTABLE\n2\nLTYPE\n70\n1\n0\nLTYPE\n2\nCONTINUOUS\n70\n0\n3\nSolid line\n72\n65\n73\n0\n40\n0.0\n0\nENDTAB\n",
|
|
|
|
output_file );
|
2009-06-30 10:43:20 +00:00
|
|
|
/* Layer table - one layer per color */
|
|
|
|
fprintf( output_file, "0\nTABLE\n2\nLAYER\n70\n%d\n", NBCOLOR );
|
|
|
|
for( int i = 0; i<NBCOLOR; i++ )
|
|
|
|
{
|
2009-07-01 05:20:11 +00:00
|
|
|
wxString cname = ColorRefs[i].m_Name;
|
2009-06-30 10:43:20 +00:00
|
|
|
fprintf( output_file, "0\nLAYER\n2\n%s\n70\n0\n62\n%d\n6\nCONTINUOUS\n",
|
2009-07-01 05:20:11 +00:00
|
|
|
CONV_TO_UTF8( cname ), i + 1 );
|
2009-06-30 10:43:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* End of layer table, begin entities */
|
|
|
|
fputs( "0\nENDTAB\n0\nENDSEC\n0\nSECTION\n2\nENTITIES\n", output_file );
|
2010-03-31 16:59:32 +00:00
|
|
|
|
|
|
|
return true;
|
2009-06-30 10:43:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-31 16:59:32 +00:00
|
|
|
bool DXF_PLOTTER::end_plot()
|
2009-06-30 10:43:20 +00:00
|
|
|
{
|
|
|
|
wxASSERT( output_file );
|
|
|
|
/* DXF FOOTER */
|
|
|
|
fputs( "0\nENDSEC\n0\nEOF\n", output_file );
|
|
|
|
fclose( output_file );
|
2010-03-31 16:59:32 +00:00
|
|
|
output_file = NULL;
|
|
|
|
|
|
|
|
return true;
|
2009-06-30 10:43:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* color = color index in ColorRefs[]
|
|
|
|
*/
|
2009-11-23 15:16:50 +00:00
|
|
|
void DXF_PLOTTER::set_color( int color )
|
2009-06-30 10:43:20 +00:00
|
|
|
{
|
|
|
|
wxASSERT( output_file );
|
2009-11-23 15:16:50 +00:00
|
|
|
if( ( color >= 0 && color_mode )
|
|
|
|
|| ( color == BLACK )
|
|
|
|
|| ( color == WHITE ) )
|
2009-06-30 10:43:20 +00:00
|
|
|
{
|
|
|
|
current_color = color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-29 10:20:48 +00:00
|
|
|
void DXF_PLOTTER::rect( wxPoint p1, wxPoint p2, FILL_T fill, int width )
|
2009-06-30 10:43:20 +00:00
|
|
|
{
|
|
|
|
wxASSERT( output_file );
|
|
|
|
move_to( p1 );
|
|
|
|
line_to( wxPoint( p1.x, p2.y ) );
|
|
|
|
line_to( wxPoint( p2.x, p2.y ) );
|
|
|
|
line_to( wxPoint( p2.x, p1.y ) );
|
|
|
|
finish_to( wxPoint( p1.x, p1.y ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-29 10:20:48 +00:00
|
|
|
void DXF_PLOTTER::circle( wxPoint centre, int diameter, FILL_T fill, int width )
|
2009-06-30 10:43:20 +00:00
|
|
|
{
|
|
|
|
wxASSERT( output_file );
|
2009-11-23 15:16:50 +00:00
|
|
|
double radius = user_to_device_size( diameter / 2 );
|
2009-06-30 10:43:20 +00:00
|
|
|
user_to_device_coordinates( centre );
|
2009-11-23 15:16:50 +00:00
|
|
|
if( radius > 0 )
|
2009-06-30 10:43:20 +00:00
|
|
|
{
|
2009-07-01 05:20:11 +00:00
|
|
|
wxString cname = ColorRefs[current_color].m_Name;
|
2010-02-10 17:27:45 +00:00
|
|
|
if (!fill) {
|
|
|
|
fprintf( output_file, "0\nCIRCLE\n8\n%s\n10\n%d.0\n20\n%d.0\n40\n%g\n",
|
|
|
|
CONV_TO_UTF8( cname ),
|
|
|
|
centre.x, centre.y, radius );
|
|
|
|
}
|
|
|
|
if (fill == FILLED_SHAPE) {
|
|
|
|
int r = (int)(radius*0.5);
|
|
|
|
fprintf( output_file, "0\nPOLYLINE\n");
|
|
|
|
fprintf( output_file, "8\n%s\n66\n1\n70\n1\n", CONV_TO_UTF8( cname ));
|
|
|
|
fprintf( output_file, "40\n%g\n41\n%g\n", radius,radius);
|
|
|
|
fprintf( output_file, "0\nVERTEX\n8\n%s\n", CONV_TO_UTF8( cname ));
|
|
|
|
fprintf( output_file, "10\n%d.0\n 20\n%d.0\n42\n1.0\n", centre.x-r,centre.y);
|
|
|
|
fprintf( output_file, "0\nVERTEX\n8\n%s\n", CONV_TO_UTF8( cname ));
|
|
|
|
fprintf( output_file, "10\n%d.0\n 20\n%d.0\n42\n1.0\n", centre.x+r,centre.y);
|
|
|
|
fprintf( output_file, "0\nSEQEND\n");
|
|
|
|
}
|
|
|
|
}
|
2009-06-30 10:43:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
/* Draw a polygon (closed if completed) in DXF format
|
|
|
|
* coord = coord table tops
|
|
|
|
* nb = number of coord (coord 1 = 2 elements: X and Y table)
|
|
|
|
* fill: if != 0 filled polygon
|
2009-06-30 10:43:20 +00:00
|
|
|
*/
|
2009-11-23 15:16:50 +00:00
|
|
|
void DXF_PLOTTER::poly( int nb, int* coord, FILL_T fill, int width )
|
2009-06-30 10:43:20 +00:00
|
|
|
{
|
|
|
|
wxASSERT( output_file );
|
|
|
|
if( nb <= 1 )
|
|
|
|
return;
|
|
|
|
|
|
|
|
move_to( wxPoint( coord[0], coord[1] ) );
|
|
|
|
for( int ii = 1; ii < nb; ii++ )
|
|
|
|
line_to( wxPoint( coord[ii * 2], coord[(ii * 2) + 1] ) );
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
/* Close polygon. */
|
2009-06-30 10:43:20 +00:00
|
|
|
if( fill )
|
|
|
|
{
|
|
|
|
int ii = (nb - 1) * 2;
|
2009-11-23 15:16:50 +00:00
|
|
|
if( ( coord[ii] != coord[0] ) || ( coord[ii + 1] != coord[1] ) )
|
2009-06-30 10:43:20 +00:00
|
|
|
line_to( wxPoint( coord[0], coord[1] ) );
|
|
|
|
}
|
|
|
|
pen_finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2009-11-23 15:16:50 +00:00
|
|
|
* Move the pen up (pen = 'U') or down (feather = 'D') at position x, y
|
|
|
|
* Unit to unit DRAWING
|
|
|
|
* If pen = 'Z' without lifting pen displacement
|
2009-06-30 10:43:20 +00:00
|
|
|
*/
|
2009-11-23 15:16:50 +00:00
|
|
|
void DXF_PLOTTER::pen_to( wxPoint pos, char plume )
|
2009-06-30 10:43:20 +00:00
|
|
|
{
|
|
|
|
wxASSERT( output_file );
|
|
|
|
if( plume == 'Z' )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
user_to_device_coordinates( pos );
|
|
|
|
|
|
|
|
if( pen_lastpos != pos && plume == 'D' )
|
|
|
|
{
|
|
|
|
/* DXF LINE */
|
2009-07-01 05:20:11 +00:00
|
|
|
wxString cname = ColorRefs[current_color].m_Name;
|
2009-06-30 10:43:20 +00:00
|
|
|
fprintf( output_file, "0\nLINE\n8\n%s\n10\n%d.0\n20\n%d.0\n11\n%d.0\n21\n%d.0\n",
|
2009-07-01 05:20:11 +00:00
|
|
|
CONV_TO_UTF8( cname ),
|
2009-06-30 10:43:20 +00:00
|
|
|
pen_lastpos.x, pen_lastpos.y, pos.x, pos.y );
|
|
|
|
}
|
|
|
|
pen_lastpos = pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-29 10:20:48 +00:00
|
|
|
void DXF_PLOTTER::set_dash( bool dashed )
|
2009-06-30 10:43:20 +00:00
|
|
|
{
|
|
|
|
/* NOP for now */
|
|
|
|
wxASSERT( output_file );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Function Plot a filled segment (track)
|
|
|
|
* @param start = starting point
|
|
|
|
* @param end = ending point
|
|
|
|
* @param aWidth = segment width (thickness)
|
|
|
|
* @param aPlotMode = FILLED, SKETCH ..
|
|
|
|
*/
|
2009-11-23 15:16:50 +00:00
|
|
|
void DXF_PLOTTER::thick_segment( wxPoint start, wxPoint end, int width,
|
|
|
|
GRTraceMode tracemode )
|
2009-06-30 10:43:20 +00:00
|
|
|
{
|
|
|
|
wxASSERT( output_file );
|
|
|
|
|
|
|
|
if( tracemode == FILAIRE ) /* just a line is Ok */
|
|
|
|
{
|
|
|
|
move_to( start );
|
|
|
|
finish_to( end );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
segment_as_oval( start, end, width, tracemode );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
/* Plot an arc in DXF format.
|
|
|
|
* center = center coord
|
|
|
|
* StAngle, EndAngle = angle of beginning and end
|
|
|
|
* Radius = radius of the arc
|
2009-06-30 10:43:20 +00:00
|
|
|
*/
|
2009-11-23 15:16:50 +00:00
|
|
|
void DXF_PLOTTER::arc( wxPoint centre, int StAngle, int EndAngle, int radius,
|
|
|
|
FILL_T fill, int width )
|
2009-06-30 10:43:20 +00:00
|
|
|
{
|
|
|
|
wxASSERT( output_file );
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
if( radius <= 0 )
|
2009-06-30 10:43:20 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
user_to_device_coordinates( centre );
|
2009-12-02 21:44:03 +00:00
|
|
|
radius = wxRound( user_to_device_size( radius ) );
|
2009-06-30 10:43:20 +00:00
|
|
|
|
|
|
|
/* DXF ARC */
|
2009-07-01 05:20:11 +00:00
|
|
|
wxString cname = ColorRefs[current_color].m_Name;
|
2009-11-23 15:16:50 +00:00
|
|
|
fprintf( output_file,
|
|
|
|
"0\nARC\n8\n%s\n10\n%d.0\n20\n%d.0\n40\n%d.0\n50\n%d.0\n51\n%d.0\n",
|
2009-07-01 05:20:11 +00:00
|
|
|
CONV_TO_UTF8( cname ),
|
2009-11-23 15:16:50 +00:00
|
|
|
centre.x, centre.y, radius,
|
2009-06-30 10:43:20 +00:00
|
|
|
StAngle / 10, EndAngle / 10 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
/* Plot oval pad at position. */
|
2009-08-29 10:20:48 +00:00
|
|
|
void DXF_PLOTTER::flash_pad_oval( wxPoint pos, wxSize size, int orient,
|
2009-06-30 10:43:20 +00:00
|
|
|
GRTraceMode trace_mode )
|
|
|
|
{
|
|
|
|
wxASSERT( output_file );
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
/* The chip is reduced to an oval tablet with size.y > size.x
|
|
|
|
* (Oval vertical orientation 0) */
|
2009-06-30 10:43:20 +00:00
|
|
|
if( size.x > size.y )
|
|
|
|
{
|
2009-11-23 15:16:50 +00:00
|
|
|
EXCHG( size.x, size.y );
|
|
|
|
orient += 900;
|
2009-06-30 10:43:20 +00:00
|
|
|
if( orient >= 3600 )
|
|
|
|
orient -= 3600;
|
|
|
|
}
|
|
|
|
sketch_oval( pos, size, orient, -1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
/* Plot round pad or via. */
|
2009-08-29 10:20:48 +00:00
|
|
|
void DXF_PLOTTER::flash_pad_circle( wxPoint pos, int diametre,
|
2009-06-30 10:43:20 +00:00
|
|
|
GRTraceMode trace_mode )
|
|
|
|
{
|
|
|
|
wxASSERT( output_file );
|
|
|
|
circle( pos, diametre, NO_FILL );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2009-11-23 15:16:50 +00:00
|
|
|
* Plot rectangular pad vertical or horizontal (rectangular Pad)
|
2009-06-30 10:43:20 +00:00
|
|
|
*/
|
2009-11-23 15:16:50 +00:00
|
|
|
void DXF_PLOTTER::flash_pad_rect( wxPoint pos, wxSize padsize,
|
|
|
|
int orient, GRTraceMode trace_mode )
|
2009-06-30 10:43:20 +00:00
|
|
|
{
|
|
|
|
wxASSERT( output_file );
|
|
|
|
wxSize size;
|
|
|
|
int ox, oy, fx, fy;
|
|
|
|
|
|
|
|
size.x = padsize.x / 2; size.y = padsize.y / 2;
|
|
|
|
|
|
|
|
if( size.x < 0 )
|
|
|
|
size.x = 0;
|
|
|
|
if( size.y < 0 )
|
|
|
|
size.y = 0;
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
/* If a dimension is zero, the trace is reduced to 1 line. */
|
2009-06-30 10:43:20 +00:00
|
|
|
if( size.x == 0 )
|
|
|
|
{
|
2009-11-23 15:16:50 +00:00
|
|
|
ox = pos.x;
|
|
|
|
oy = pos.y - size.y;
|
2009-06-30 10:43:20 +00:00
|
|
|
RotatePoint( &ox, &oy, pos.x, pos.y, orient );
|
2009-11-23 15:16:50 +00:00
|
|
|
fx = pos.x;
|
|
|
|
fy = pos.y + size.y;
|
2009-06-30 10:43:20 +00:00
|
|
|
RotatePoint( &fx, &fy, pos.x, pos.y, orient );
|
|
|
|
move_to( wxPoint( ox, oy ) );
|
|
|
|
finish_to( wxPoint( fx, fy ) );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if( size.y == 0 )
|
|
|
|
{
|
2009-11-23 15:16:50 +00:00
|
|
|
ox = pos.x - size.x;
|
|
|
|
oy = pos.y;
|
2009-06-30 10:43:20 +00:00
|
|
|
RotatePoint( &ox, &oy, pos.x, pos.y, orient );
|
2009-11-23 15:16:50 +00:00
|
|
|
fx = pos.x + size.x;
|
|
|
|
fy = pos.y;
|
2009-06-30 10:43:20 +00:00
|
|
|
RotatePoint( &fx, &fy, pos.x, pos.y, orient );
|
|
|
|
move_to( wxPoint( ox, oy ) );
|
|
|
|
finish_to( wxPoint( fx, fy ) );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
ox = pos.x - size.x;
|
|
|
|
oy = pos.y - size.y;
|
2009-06-30 10:43:20 +00:00
|
|
|
RotatePoint( &ox, &oy, pos.x, pos.y, orient );
|
|
|
|
move_to( wxPoint( ox, oy ) );
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
fx = pos.x - size.x;
|
|
|
|
fy = pos.y + size.y;
|
2009-06-30 10:43:20 +00:00
|
|
|
RotatePoint( &fx, &fy, pos.x, pos.y, orient );
|
|
|
|
line_to( wxPoint( fx, fy ) );
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
fx = pos.x + size.x;
|
|
|
|
fy = pos.y + size.y;
|
2009-06-30 10:43:20 +00:00
|
|
|
RotatePoint( &fx, &fy, pos.x, pos.y, orient );
|
|
|
|
line_to( wxPoint( fx, fy ) );
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
fx = pos.x + size.x;
|
|
|
|
fy = pos.y - size.y;
|
2009-06-30 10:43:20 +00:00
|
|
|
RotatePoint( &fx, &fy, pos.x, pos.y, orient );
|
|
|
|
line_to( wxPoint( fx, fy ) );
|
|
|
|
|
|
|
|
finish_to( wxPoint( ox, oy ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2009-11-23 15:16:50 +00:00
|
|
|
* Plot trapezoidal pad.
|
|
|
|
* pos its center, pos.y
|
|
|
|
* Dimensions dim X and dimy
|
|
|
|
* DeltaX and variations deltaY
|
|
|
|
* Orientation and 0.1 degrees east
|
|
|
|
* Plot mode (FILLED, SKETCH, WIRED)
|
|
|
|
* The evidence is that a trapezoid, ie that deltaX or deltaY
|
|
|
|
* = 0.
|
2009-06-30 10:43:20 +00:00
|
|
|
*
|
2009-11-23 15:16:50 +00:00
|
|
|
* The rating of the vertexes are (vis a vis the plotter)
|
2009-06-30 10:43:20 +00:00
|
|
|
* 0 ------------- 3
|
2009-11-23 15:16:50 +00:00
|
|
|
* . .
|
|
|
|
* . .
|
|
|
|
* . .
|
2009-06-30 10:43:20 +00:00
|
|
|
* 1 --- 2
|
|
|
|
*/
|
2009-11-23 15:16:50 +00:00
|
|
|
|
|
|
|
void DXF_PLOTTER::flash_pad_trapez( wxPoint pos, wxSize size, wxSize delta,
|
|
|
|
int orient, GRTraceMode trace_mode )
|
2009-06-30 10:43:20 +00:00
|
|
|
{
|
|
|
|
wxASSERT( output_file );
|
2009-11-23 15:16:50 +00:00
|
|
|
wxPoint polygone[4]; /* coord of vertex or center of the pad */
|
|
|
|
wxPoint coord[4]; /* coord actual corners of a trapezoidal trace */
|
|
|
|
int moveX, moveY; /* change pen position by X and Y axis to
|
|
|
|
* fill the trapezoid */
|
2009-06-30 10:43:20 +00:00
|
|
|
moveX = moveY = 0;
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
size.x /= 2;
|
|
|
|
size.y /= 2;
|
|
|
|
delta.x /= 2;
|
|
|
|
delta.y /= 2;
|
|
|
|
|
|
|
|
polygone[0].x = -size.x - delta.y;
|
|
|
|
polygone[0].y = +size.y + delta.x;
|
|
|
|
polygone[1].x = -size.x + delta.y;
|
|
|
|
polygone[1].y = -size.y - delta.x;
|
|
|
|
polygone[2].x = +size.x - delta.y;
|
|
|
|
polygone[2].y = -size.y + delta.x;
|
|
|
|
polygone[3].x = +size.x + delta.y;
|
|
|
|
polygone[3].y = +size.y - delta.x;
|
2009-06-30 10:43:20 +00:00
|
|
|
|
|
|
|
for( int ii = 0; ii < 4; ii++ )
|
|
|
|
{
|
|
|
|
coord[ii].x = polygone[ii].x + pos.x;
|
|
|
|
coord[ii].y = polygone[ii].y + pos.y;
|
|
|
|
RotatePoint( &coord[ii], pos, orient );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Plot edge:
|
|
|
|
move_to( coord[0] );
|
|
|
|
line_to( coord[1] );
|
|
|
|
line_to( coord[2] );
|
|
|
|
line_to( coord[3] );
|
|
|
|
finish_to( coord[0] );
|
|
|
|
}
|