2008-03-22 05:55:06 +00:00
|
|
|
/******************************************/
|
|
|
|
/* Kicad: Common plot Postscript Routines */
|
|
|
|
/******************************************/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
#include "trigo.h"
|
|
|
|
#include "wxstruct.h"
|
|
|
|
#include "base_struct.h"
|
|
|
|
#include "common.h"
|
|
|
|
#include "plot_common.h"
|
|
|
|
#include "macros.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "kicad_string.h"
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
/*************************************************************************************/
|
2009-08-29 10:20:48 +00:00
|
|
|
void PS_PLOTTER::set_viewport( wxPoint offset,
|
2009-06-28 16:50:42 +00:00
|
|
|
double aScale, int orient )
|
2007-05-06 16:03:28 +00:00
|
|
|
/*************************************************************************************/
|
2007-08-20 13:28:34 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
/* Set the plot offset for the current plotting */
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-06-28 16:50:42 +00:00
|
|
|
wxASSERT(!output_file);
|
|
|
|
plot_orient_options = orient;
|
|
|
|
plot_offset = offset;
|
|
|
|
plot_scale = aScale;
|
|
|
|
device_scale = 1; /* PS references in decimils */
|
|
|
|
set_default_line_width(100); /* epaisseur du trait standard en 1/1000 pouce */
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************************/
|
2009-08-29 10:20:48 +00:00
|
|
|
void PS_PLOTTER::set_default_line_width( int width )
|
2007-05-06 16:03:28 +00:00
|
|
|
/*************************************************************************************/
|
2007-08-20 13:28:34 +00:00
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
/* Set the default line width (in 1/1000 inch) for the current plotting
|
2007-08-20 13:28:34 +00:00
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-06-28 16:50:42 +00:00
|
|
|
default_pen_width = width; // epaisseur du trait standard en 1/1000 pouce
|
|
|
|
current_pen_width = -1;
|
2007-05-28 18:09:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***************************************/
|
2009-08-29 10:20:48 +00:00
|
|
|
void PS_PLOTTER::set_current_line_width( int width )
|
2007-05-28 18:09:49 +00:00
|
|
|
/***************************************/
|
2007-08-20 13:28:34 +00:00
|
|
|
|
2007-05-28 18:09:49 +00:00
|
|
|
/* Set the Current line width (in 1/1000 inch) for the next plot
|
2007-08-20 13:28:34 +00:00
|
|
|
*/
|
2007-05-28 18:09:49 +00:00
|
|
|
{
|
2009-06-28 16:50:42 +00:00
|
|
|
wxASSERT(output_file);
|
2008-03-22 05:55:06 +00:00
|
|
|
int pen_width;
|
2007-05-28 18:09:49 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
if( width >= 0 )
|
2008-03-22 05:55:06 +00:00
|
|
|
pen_width = width;
|
|
|
|
else
|
2009-06-28 16:50:42 +00:00
|
|
|
pen_width = default_pen_width;
|
2007-08-20 13:28:34 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
if( pen_width != current_pen_width )
|
2009-08-28 18:03:22 +00:00
|
|
|
fprintf( output_file, "%g setlinewidth\n",
|
2009-06-28 16:50:42 +00:00
|
|
|
user_to_device_size(pen_width));
|
2007-08-20 13:28:34 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
current_pen_width = pen_width;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2007-08-20 13:28:34 +00:00
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
/******************************/
|
2009-08-29 10:20:48 +00:00
|
|
|
void PS_PLOTTER::set_color( int color )
|
2007-05-06 16:03:28 +00:00
|
|
|
/******************************/
|
|
|
|
|
2007-08-20 13:28:34 +00:00
|
|
|
/* Print the postscript set color command:
|
|
|
|
* r g b setrgbcolor,
|
|
|
|
* r, g, b = color values (= 0 .. 1.0 )
|
|
|
|
*
|
|
|
|
* color = color index in ColorRefs[]
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-06-28 16:50:42 +00:00
|
|
|
wxASSERT(output_file);
|
2009-08-21 19:13:55 +00:00
|
|
|
|
|
|
|
/* Return at invalid color index */
|
|
|
|
if(color < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(color_mode)
|
|
|
|
{
|
|
|
|
if (negative_mode)
|
|
|
|
{
|
|
|
|
fprintf( output_file, "%.3g %.3g %.3g setrgbcolor\n",
|
|
|
|
(double) 1.0-ColorRefs[color].m_Red / 255,
|
|
|
|
(double) 1.0-ColorRefs[color].m_Green / 255,
|
|
|
|
(double) 1.0-ColorRefs[color].m_Blue / 255 );
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
fprintf( output_file, "%.3g %.3g %.3g setrgbcolor\n",
|
|
|
|
(double) ColorRefs[color].m_Red / 255,
|
|
|
|
(double) ColorRefs[color].m_Green / 255,
|
|
|
|
(double) ColorRefs[color].m_Blue / 255 );
|
|
|
|
}
|
|
|
|
}
|
2009-08-28 18:03:22 +00:00
|
|
|
else
|
|
|
|
/* B/W Mode - Use BLACK or WHITE for all items
|
|
|
|
* note the 2 colors are used in B&W mode, mainly by Pcbnew to draw holes in white on pads in black
|
|
|
|
*/
|
2009-06-28 16:50:42 +00:00
|
|
|
{
|
2009-08-28 18:03:22 +00:00
|
|
|
int bwcolor = WHITE;
|
|
|
|
if( color != WHITE )
|
|
|
|
bwcolor = BLACK;
|
2009-08-21 19:13:55 +00:00
|
|
|
if (negative_mode)
|
|
|
|
fprintf( output_file, "%.3g %.3g %.3g setrgbcolor\n",
|
2009-08-28 18:03:22 +00:00
|
|
|
(double) 1.0-ColorRefs[bwcolor].m_Red / 255,
|
|
|
|
(double) 1.0-ColorRefs[bwcolor].m_Green / 255,
|
|
|
|
(double) 1.0-ColorRefs[bwcolor].m_Blue / 255 );
|
2009-08-21 19:13:55 +00:00
|
|
|
else
|
|
|
|
fprintf( output_file, "%.3g %.3g %.3g setrgbcolor\n",
|
2009-08-28 18:03:22 +00:00
|
|
|
(double) ColorRefs[bwcolor].m_Red / 255,
|
|
|
|
(double) ColorRefs[bwcolor].m_Green / 255,
|
|
|
|
(double) ColorRefs[bwcolor].m_Blue / 255 );
|
2009-06-28 16:50:42 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2009-08-29 10:20:48 +00:00
|
|
|
void PS_PLOTTER::set_dash( bool dashed )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-06-28 16:50:42 +00:00
|
|
|
wxASSERT(output_file);
|
|
|
|
if (dashed)
|
|
|
|
fputs("dashedline\n", stderr);
|
|
|
|
else
|
|
|
|
fputs("solidline\n", stderr);
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2008-06-30 13:47:55 +00:00
|
|
|
/***************************************************************/
|
2009-08-29 10:20:48 +00:00
|
|
|
void PS_PLOTTER::rect( wxPoint p1, wxPoint p2, FILL_T fill, int width )
|
2008-06-30 13:47:55 +00:00
|
|
|
/***************************************************************/
|
|
|
|
{
|
2009-06-28 16:50:42 +00:00
|
|
|
user_to_device_coordinates( p1 );
|
|
|
|
user_to_device_coordinates( p2 );
|
2008-06-30 13:47:55 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
set_current_line_width( width );
|
|
|
|
fprintf( output_file, "%d %d %d %d rect%d\n", p1.x, p1.y,
|
2008-08-05 16:06:45 +00:00
|
|
|
p2.x-p1.x, p2.y-p1.y, fill );
|
2008-06-30 13:47:55 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
/******************************************************/
|
2009-08-29 10:20:48 +00:00
|
|
|
void PS_PLOTTER::circle( wxPoint pos, int diametre, FILL_T fill, int width )
|
2007-05-06 16:03:28 +00:00
|
|
|
/******************************************************/
|
|
|
|
{
|
2009-06-28 16:50:42 +00:00
|
|
|
wxASSERT(output_file);
|
|
|
|
user_to_device_coordinates( pos );
|
|
|
|
double rayon = user_to_device_size(diametre / 2.0);
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
if( rayon < 1 )
|
|
|
|
rayon = 1;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
set_current_line_width( width );
|
|
|
|
fprintf(output_file, "%d %d %g cir%d\n", pos.x, pos.y, rayon, fill);
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-05-28 18:09:49 +00:00
|
|
|
/**************************************************************************************/
|
2009-08-29 10:20:48 +00:00
|
|
|
void PS_PLOTTER::arc( wxPoint centre, int StAngle, int EndAngle, int rayon,
|
2009-06-28 16:50:42 +00:00
|
|
|
FILL_T fill, int width )
|
2007-05-28 18:09:49 +00:00
|
|
|
/**************************************************************************************/
|
2007-08-20 13:28:34 +00:00
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
/* Plot an arc:
|
2007-08-20 13:28:34 +00:00
|
|
|
* StAngle, EndAngle = start and end arc in 0.1 degree
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-06-28 16:50:42 +00:00
|
|
|
wxASSERT(output_file);
|
2008-03-22 05:55:06 +00:00
|
|
|
if( rayon <= 0 )
|
|
|
|
return;
|
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
set_current_line_width( width );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
|
|
// Calcul des coord du point de depart :
|
2009-06-28 16:50:42 +00:00
|
|
|
user_to_device_coordinates( centre );
|
|
|
|
rayon = user_to_device_size(rayon);
|
|
|
|
if( plot_orient_options == PLOT_MIROIR )
|
|
|
|
fprintf( output_file, "%d %d %d %g %g arc%d\n", centre.x, centre.y,
|
|
|
|
rayon, (double) -EndAngle / 10, (double) -StAngle / 10,
|
2008-08-05 16:06:45 +00:00
|
|
|
fill);
|
2008-03-22 05:55:06 +00:00
|
|
|
else
|
2009-06-28 16:50:42 +00:00
|
|
|
fprintf( output_file, "%d %d %d %g %g arc%d\n", centre.x, centre.y,
|
|
|
|
rayon, (double) StAngle / 10, (double) EndAngle / 10,
|
2008-08-05 16:06:45 +00:00
|
|
|
fill);
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-05-28 18:09:49 +00:00
|
|
|
/*****************************************************************/
|
2009-08-29 10:20:48 +00:00
|
|
|
void PS_PLOTTER::poly( int nb_segm, int* coord, FILL_T fill, int width )
|
2007-08-20 13:28:34 +00:00
|
|
|
/*****************************************************************/
|
|
|
|
|
2009-09-04 08:05:13 +00:00
|
|
|
/** Function poly
|
|
|
|
* @brief Draw a polygon ( a filled polygon if fill == 1 ) in POSTSCRIPT format
|
2007-09-22 14:31:20 +00:00
|
|
|
* @param nb_segm = corner count
|
|
|
|
* @param coord = corner list (a corner uses 2 int = X coordinate followed by Y coordinate
|
2008-11-22 20:50:30 +00:00
|
|
|
* @param fill :if true : filled polygon
|
2007-09-22 14:31:20 +00:00
|
|
|
* @param width = line width
|
2007-08-20 13:28:34 +00:00
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-06-28 16:50:42 +00:00
|
|
|
wxASSERT(output_file);
|
2008-03-22 05:55:06 +00:00
|
|
|
wxPoint pos;
|
|
|
|
|
|
|
|
if( nb_segm <= 1 )
|
|
|
|
return;
|
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
set_current_line_width( width );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
|
|
pos.x = coord[0];
|
|
|
|
pos.y = coord[1];
|
2009-06-28 16:50:42 +00:00
|
|
|
user_to_device_coordinates( pos );
|
|
|
|
fprintf( output_file, "newpath\n%d %d moveto\n", pos.x, pos.y );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
for(int ii = 1; ii < nb_segm; ii++ )
|
2008-03-22 05:55:06 +00:00
|
|
|
{
|
|
|
|
pos.x = coord[2 * ii];
|
|
|
|
pos.y = coord[2 * ii + 1];
|
2009-06-28 16:50:42 +00:00
|
|
|
user_to_device_coordinates( pos );
|
|
|
|
fprintf( output_file, "%d %d lineto\n", pos.x, pos.y );
|
2008-03-22 05:55:06 +00:00
|
|
|
}
|
|
|
|
|
2009-09-04 08:05:13 +00:00
|
|
|
// Close path
|
2009-06-28 16:50:42 +00:00
|
|
|
fprintf(output_file, "poly%d\n", fill);
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************/
|
2009-08-29 10:20:48 +00:00
|
|
|
void PS_PLOTTER::pen_to( wxPoint pos, char plume )
|
2007-08-20 13:28:34 +00:00
|
|
|
/*************************************/
|
|
|
|
|
|
|
|
/* Routine to draw to a new position
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-06-28 16:50:42 +00:00
|
|
|
wxASSERT(output_file);
|
2009-05-28 17:39:40 +00:00
|
|
|
if( plume == 'Z' ) {
|
2009-06-28 16:50:42 +00:00
|
|
|
if (pen_state != 'Z') {
|
|
|
|
fputs( "stroke\n", output_file );
|
|
|
|
pen_state = 'Z';
|
|
|
|
pen_lastpos.x = -1;
|
|
|
|
pen_lastpos.y = -1;
|
2009-05-28 17:39:40 +00:00
|
|
|
}
|
2008-03-22 05:55:06 +00:00
|
|
|
return;
|
2009-05-28 17:39:40 +00:00
|
|
|
}
|
2008-03-22 05:55:06 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
user_to_device_coordinates( pos );
|
|
|
|
if (pen_state == 'Z') {
|
|
|
|
fputs( "newpath\n", output_file );
|
2008-03-22 05:55:06 +00:00
|
|
|
}
|
2009-06-28 16:50:42 +00:00
|
|
|
if (pen_state != plume || pos != pen_lastpos)
|
|
|
|
fprintf( output_file, "%d %d %sto\n", pos.x, pos.y, (plume=='D')?"line":"move" );
|
|
|
|
pen_state = plume;
|
|
|
|
pen_lastpos = pos;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-20 13:28:34 +00:00
|
|
|
/***********************************************************/
|
2009-08-29 10:20:48 +00:00
|
|
|
void PS_PLOTTER::start_plot( FILE *fout)
|
2007-05-06 16:03:28 +00:00
|
|
|
/***********************************************************/
|
2007-08-20 13:28:34 +00:00
|
|
|
|
|
|
|
/* The code within this function (and the CloseFilePS function)
|
|
|
|
* creates postscript files whose contents comply with Adobe's
|
|
|
|
* Document Structuring Convention, as documented by assorted
|
|
|
|
* details described within the following URLs:
|
2008-03-22 05:55:06 +00:00
|
|
|
*
|
2007-08-20 13:28:34 +00:00
|
|
|
* http://en.wikipedia.org/wiki/Document_Structuring_Conventions
|
|
|
|
* http://partners.adobe.com/public/developer/en/ps/5001.DSC_Spec.pdf
|
2008-03-22 05:55:06 +00:00
|
|
|
*
|
|
|
|
*
|
2007-08-20 13:28:34 +00:00
|
|
|
* BBox is the boundary box (position and size of the "client rectangle"
|
|
|
|
* for drawings (page - margins) in mils (0.001 inch)
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-06-28 16:50:42 +00:00
|
|
|
wxASSERT(!output_file);
|
2008-03-22 05:55:06 +00:00
|
|
|
wxString msg;
|
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
output_file = fout;
|
2008-03-22 05:55:06 +00:00
|
|
|
static const char* PSMacro[] = {
|
|
|
|
"/line {\n",
|
|
|
|
" newpath\n",
|
|
|
|
" moveto\n",
|
|
|
|
" lineto\n",
|
|
|
|
" stroke\n",
|
2008-06-30 13:47:55 +00:00
|
|
|
"} bind def\n",
|
2008-08-05 16:06:45 +00:00
|
|
|
"/cir0 { newpath 0 360 arc stroke } bind def\n",
|
|
|
|
"/cir1 { newpath 0 360 arc gsave fill grestore stroke } bind def\n",
|
|
|
|
"/cir2 { newpath 0 360 arc gsave fill grestore stroke } bind def\n",
|
|
|
|
"/arc0 { newpath arc stroke } bind def\n",
|
|
|
|
"/arc1 { newpath 4 index 4 index moveto arc closepath gsave fill grestore stroke } bind def\n",
|
|
|
|
"/arc2 { newpath 4 index 4 index moveto arc closepath gsave fill grestore stroke } bind def\n",
|
|
|
|
"/poly0 { stroke } bind def\n",
|
|
|
|
"/poly1 { closepath gsave fill grestore stroke } bind def\n",
|
|
|
|
"/poly2 { closepath gsave fill grestore stroke } bind def\n",
|
|
|
|
"/rect0 { rectstroke } bind def\n",
|
|
|
|
"/rect1 { rectfill } bind def\n",
|
|
|
|
"/rect2 { rectfill } bind def\n",
|
2009-05-28 17:39:40 +00:00
|
|
|
"/linemode0 { 0 setlinecap 0 setlinejoin 0 setlinewidth } bind def\n",
|
|
|
|
"/linemode1 { 1 setlinecap 1 setlinejoin } bind def\n",
|
2009-06-28 16:50:42 +00:00
|
|
|
"/dashedline { [50 50] 0 setdash } bind def\n",
|
|
|
|
"/solidline { [] 0 setdash } bind def\n",
|
2008-03-22 05:55:06 +00:00
|
|
|
"gsave\n",
|
2009-06-28 16:50:42 +00:00
|
|
|
"0.0072 0.0072 scale\n", // Configure postscript for decimils
|
2009-05-28 17:39:40 +00:00
|
|
|
"linemode1\n",
|
2008-03-22 05:55:06 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
const double DECIMIL_TO_INCH = 0.0001;
|
2008-03-22 05:55:06 +00:00
|
|
|
time_t time1970 = time( NULL );
|
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
fputs( "%!PS-Adobe-3.0\n", output_file ); // Print header
|
2008-03-22 05:55:06 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
fprintf( output_file, "%%%%Creator: %s\n", CONV_TO_UTF8( creator ) );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
|
|
// A "newline" character ("\n") is not included in the following string,
|
|
|
|
// because it is provided by the ctime() function.
|
2009-06-28 16:50:42 +00:00
|
|
|
fprintf( output_file, "%%%%CreationDate: %s", ctime( &time1970 ) );
|
|
|
|
fprintf( output_file, "%%%%Title: %s\n", CONV_TO_UTF8( filename ) );
|
|
|
|
fprintf( output_file, "%%%%Pages: 1\n");
|
|
|
|
fprintf( output_file, "%%%%PageOrder: Ascend\n" );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
// Print boundary box en 1/72 pouce, box is in decimils
|
|
|
|
const double CONV_SCALE = DECIMIL_TO_INCH * 72;
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
|
|
// The coordinates of the lower left corner of the boundary
|
|
|
|
// box need to be "rounded down", but the coordinates of its
|
|
|
|
// upper right corner need to be "rounded up" instead.
|
2009-06-28 16:50:42 +00:00
|
|
|
fprintf( output_file, "%%%%BoundingBox: 0 0 %d %d\n",
|
2009-08-28 18:03:22 +00:00
|
|
|
(int) ceil( paper_size.y * CONV_SCALE),
|
2009-06-28 16:50:42 +00:00
|
|
|
(int) ceil( paper_size.x * CONV_SCALE));
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
|
|
// Specify the size of the sheet and the name associated with that size.
|
|
|
|
// (If the "User size" option has been selected for the sheet size,
|
|
|
|
// identify the sheet size as "Custom" (rather than as "User"), but
|
|
|
|
// otherwise use the name assigned by KiCad for each sheet size.)
|
|
|
|
//
|
|
|
|
// (The Document Structuring Convention also supports sheet weight,
|
|
|
|
// sheet colour, and sheet type properties being specified within a
|
|
|
|
// %%DocumentMedia comment, but they are not being specified here;
|
|
|
|
// a zero and two null strings are subsequently provided instead.)
|
|
|
|
//
|
|
|
|
// (NOTE: m_Size.y is *supposed* to be listed before m_Size.x;
|
|
|
|
// the order in which they are specified is not wrong!)
|
2009-07-01 14:59:34 +00:00
|
|
|
// Also note sheet->m_Size is given in mils, not in decimils and must be
|
|
|
|
// sheet->m_Size * 10 in decimils
|
2009-06-28 16:50:42 +00:00
|
|
|
if( sheet->m_Name.Cmp( wxT( "User" ) ) == 0 )
|
|
|
|
fprintf( output_file, "%%%%DocumentMedia: Custom %d %d 0 () ()\n",
|
|
|
|
wxRound( sheet->m_Size.y * CONV_SCALE ),
|
|
|
|
wxRound( sheet->m_Size.x * CONV_SCALE ) );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
else // ( if sheet->m_Name does not equal "User" )
|
|
|
|
fprintf( output_file, "%%%%DocumentMedia: %s %d %d 0 () ()\n",
|
|
|
|
CONV_TO_UTF8( sheet->m_Name ),
|
2009-07-01 14:59:34 +00:00
|
|
|
wxRound( sheet->m_Size.y * 10 * CONV_SCALE ),
|
|
|
|
wxRound( sheet->m_Size.x * 10 * CONV_SCALE ) );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
fprintf( output_file, "%%%%Orientation: Landscape\n" );
|
|
|
|
|
|
|
|
fprintf( output_file, "%%%%EndComments\n" );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
|
|
// Now specify various other details.
|
|
|
|
|
|
|
|
// The following string has been specified here (rather than within
|
|
|
|
// PSMacro[]) to highlight that it has been provided to ensure that the
|
|
|
|
// contents of the postscript file comply with the details specified
|
|
|
|
// within the Document Structuring Convention.
|
2009-06-28 16:50:42 +00:00
|
|
|
fprintf( output_file, "%%%%Page: 1 1\n" );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
for(int ii = 0; PSMacro[ii] != NULL; ii++ )
|
2008-03-22 05:55:06 +00:00
|
|
|
{
|
2009-06-28 16:50:42 +00:00
|
|
|
fputs( PSMacro[ii], output_file );
|
2008-03-22 05:55:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// (If support for creating postscript files with a portrait orientation
|
|
|
|
// is ever provided, determine whether it would be necessary to provide
|
|
|
|
// an "else" command and then an appropriate "sprintf" command here.)
|
2009-06-28 16:50:42 +00:00
|
|
|
fprintf( output_file, "%d 0 translate 90 rotate\n", paper_size.y);
|
2008-03-22 05:55:06 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
// Apply the scale adjustments
|
2009-08-28 18:03:22 +00:00
|
|
|
if (plot_scale_adjX != 1.0 || plot_scale_adjY != 1.0)
|
2009-06-28 16:50:42 +00:00
|
|
|
fprintf( output_file, "%g %g scale\n",
|
|
|
|
plot_scale_adjX, plot_scale_adjY);
|
2008-03-22 05:55:06 +00:00
|
|
|
|
2008-12-22 21:06:44 +00:00
|
|
|
// Set default line width ( g_Plot_DefaultPenWidth is in user units )
|
2009-08-28 18:03:22 +00:00
|
|
|
fprintf( output_file, "%g setlinewidth\n",
|
2009-06-28 16:50:42 +00:00
|
|
|
user_to_device_size(default_pen_width) );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************/
|
2009-08-29 10:20:48 +00:00
|
|
|
void PS_PLOTTER::end_plot()
|
2007-05-06 16:03:28 +00:00
|
|
|
/******************************************/
|
|
|
|
{
|
2009-06-28 16:50:42 +00:00
|
|
|
wxASSERT(output_file);
|
|
|
|
fputs( "showpage\ngrestore\n%%EOF\n", output_file );
|
|
|
|
fclose( output_file );
|
|
|
|
output_file = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************************/
|
2009-08-29 10:20:48 +00:00
|
|
|
void PS_PLOTTER::flash_pad_oval( wxPoint pos, wxSize size, int orient,
|
2009-06-28 16:50:42 +00:00
|
|
|
GRTraceMode modetrace )
|
|
|
|
/************************************************************************************/
|
|
|
|
|
|
|
|
/* Trace 1 pastille PAD_OVAL en position pos_X,Y:
|
|
|
|
* dimensions dx,dy,
|
|
|
|
* orientation orient
|
|
|
|
* La forme est tracee comme un segment
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
wxASSERT(output_file);
|
|
|
|
int x0, y0, x1, y1, delta;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
// la pastille est ramenee a une pastille ovale avec dy > dx
|
|
|
|
if( size.x > size.y )
|
|
|
|
{
|
|
|
|
EXCHG( size.x, size.y );
|
|
|
|
orient += 900;
|
|
|
|
if( orient >= 3600 )
|
|
|
|
orient -= 3600;
|
|
|
|
}
|
|
|
|
|
|
|
|
delta = size.y - size.x ;
|
|
|
|
x0 = 0;
|
|
|
|
y0 = -delta / 2;
|
|
|
|
x1 = 0;
|
|
|
|
y1 = delta / 2;
|
|
|
|
RotatePoint( &x0, &y0, orient );
|
|
|
|
RotatePoint( &x1, &y1, orient );
|
|
|
|
|
|
|
|
if( modetrace == FILLED )
|
|
|
|
thick_segment( wxPoint( pos.x + x0, pos.y + y0 ),
|
|
|
|
wxPoint( pos.x + x1, pos.y + y1 ), size.x, modetrace );
|
|
|
|
else
|
|
|
|
sketch_oval(pos, size, orient, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************/
|
2009-08-29 10:20:48 +00:00
|
|
|
void PS_PLOTTER::flash_pad_circle(wxPoint pos, int diametre,
|
2009-06-28 16:50:42 +00:00
|
|
|
GRTraceMode modetrace)
|
|
|
|
/*******************************************************************************/
|
|
|
|
/* Trace 1 pastille RONDE (via,pad rond) en position pos_X,Y
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
wxASSERT(output_file);
|
|
|
|
if( modetrace == FILLED )
|
|
|
|
{
|
|
|
|
set_current_line_width( 0 );
|
|
|
|
circle(pos, diametre, FILLED_SHAPE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
set_current_line_width(-1);
|
|
|
|
int w = current_pen_width;
|
|
|
|
circle(pos, diametre-2*w, NO_FILL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************/
|
2009-08-29 10:20:48 +00:00
|
|
|
void PS_PLOTTER::flash_pad_rect(wxPoint pos, wxSize size,
|
2009-06-28 16:50:42 +00:00
|
|
|
int orient, GRTraceMode trace_mode)
|
|
|
|
/**************************************************************************/
|
|
|
|
/*
|
|
|
|
* Trace 1 pad rectangulaire d'orientation quelconque
|
|
|
|
* donne par son centre, ses dimensions,
|
|
|
|
* et son orientation orient
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
wxASSERT(output_file);
|
|
|
|
|
|
|
|
set_current_line_width(-1);
|
|
|
|
int w = current_pen_width;
|
|
|
|
size.x -= w;
|
|
|
|
if( size.x < 1 )
|
|
|
|
size.x = 1;
|
|
|
|
size.y -= w;
|
|
|
|
if( size.y < 1 )
|
|
|
|
size.y = 1;
|
|
|
|
|
|
|
|
int dx = size.x / 2;
|
|
|
|
int dy = size.y / 2;
|
|
|
|
|
|
|
|
int coord[10] = {
|
|
|
|
pos.x - dx, pos.y + dy,
|
|
|
|
pos.x - dx, pos.y - dy,
|
|
|
|
pos.x + dx, pos.y - dy,
|
|
|
|
pos.x + dx, pos.y + dy,
|
|
|
|
0, 0
|
|
|
|
};
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
for(int ii = 0; ii < 4; ii++ )
|
|
|
|
{
|
|
|
|
RotatePoint( &coord[ii*2], &coord[ii*2+1], pos.x, pos.y, orient );
|
|
|
|
}
|
|
|
|
coord[8] = coord[0];
|
|
|
|
coord[9] = coord[1];
|
|
|
|
poly(5, coord, trace_mode==FILLED?FILLED_SHAPE:NO_FILL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************/
|
2009-08-29 10:20:48 +00:00
|
|
|
void PS_PLOTTER::flash_pad_trapez( wxPoint centre, wxSize size, wxSize delta,
|
2009-06-28 16:50:42 +00:00
|
|
|
int orient, GRTraceMode modetrace )
|
|
|
|
/*******************************************************************/
|
|
|
|
/*
|
|
|
|
* Trace 1 pad trapezoidal donne par :
|
|
|
|
* son centre centre
|
|
|
|
* ses dimensions size
|
|
|
|
* les variations delta ( 1 des deux au moins doit etre nulle)
|
|
|
|
* son orientation orient en 0.1 degres
|
|
|
|
* le mode de trace (FILLED, SKETCH, FILAIRE)
|
|
|
|
*
|
|
|
|
* Le trace n'est fait que pour un trapeze, c.a.d que deltaX ou deltaY
|
|
|
|
* = 0.
|
|
|
|
*
|
|
|
|
* les notation des sommets sont ( vis a vis de la table tracante )
|
|
|
|
*
|
|
|
|
* " 0 ------------- 3 "
|
|
|
|
* " . . "
|
|
|
|
* " . O . "
|
|
|
|
* " . . "
|
|
|
|
* " 1 ---- 2 "
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* exemple de Disposition pour deltaY > 0, deltaX = 0
|
|
|
|
* " 1 ---- 2 "
|
|
|
|
* " . . "
|
|
|
|
* " . O . "
|
|
|
|
* " . . "
|
|
|
|
* " 0 ------------- 3 "
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* exemple de Disposition pour deltaY = 0, deltaX > 0
|
|
|
|
* " 0 "
|
|
|
|
* " . . "
|
|
|
|
* " . . "
|
|
|
|
* " . 3 "
|
|
|
|
* " . . "
|
|
|
|
* " . O . "
|
|
|
|
* " . . "
|
|
|
|
* " . 2 "
|
|
|
|
* " . . "
|
|
|
|
* " . . "
|
|
|
|
* " 1 "
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
wxASSERT(output_file);
|
|
|
|
set_current_line_width(-1);
|
|
|
|
int w = current_pen_width;
|
|
|
|
int dx, dy;
|
|
|
|
int ddx, ddy;
|
|
|
|
|
|
|
|
dx = (size.x-w) / 2;
|
|
|
|
dy = (size.y-w) / 2;
|
|
|
|
ddx = delta.x / 2;
|
|
|
|
ddy = delta.y / 2;
|
|
|
|
|
2009-08-28 18:03:22 +00:00
|
|
|
int coord[10] = {
|
2009-06-28 16:50:42 +00:00
|
|
|
-dx - ddy, +dy + ddx,
|
|
|
|
-dx + ddy, -dy - ddx,
|
|
|
|
+dx - ddy, -dy + ddx,
|
|
|
|
+dx + ddy, +dy - ddx,
|
|
|
|
0, 0
|
|
|
|
};
|
|
|
|
|
|
|
|
for(int ii = 0; ii < 4; ii++ )
|
|
|
|
{
|
|
|
|
RotatePoint( &coord[ii*2], &coord[ii*2+1], orient );
|
|
|
|
coord[ii*2] += centre.x;
|
|
|
|
coord[ii*2+1] += centre.y;
|
|
|
|
}
|
2009-09-04 08:05:13 +00:00
|
|
|
coord[8] = coord[0];
|
|
|
|
coord[9] = coord[1];
|
2009-06-28 16:50:42 +00:00
|
|
|
poly(5, coord, modetrace==FILLED?FILLED_SHAPE:NO_FILL);
|
2008-03-22 05:55:06 +00:00
|
|
|
}
|