KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_plot_params.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
25#include <charconv>
26#include <layer_ids.h>
27#include <lset.h>
28#include <string_utils.h>
29#include <pcb_plot_params.h>
31#include <plotters/plotter.h>
34
35
36#define PLOT_LINEWIDTH_DEFAULT ( DEFAULT_TEXT_WIDTH * IU_PER_MM )
37
38#define HPGL_PEN_DIAMETER_MIN 0
39#define HPGL_PEN_DIAMETER_MAX 100.0 // Unit = mil
40#define HPGL_PEN_SPEED_MIN 1 // this param is always in cm/s
41#define HPGL_PEN_SPEED_MAX 99 // this param is always in cm/s
42#define HPGL_PEN_NUMBER_MIN 1
43#define HPGL_PEN_NUMBER_MAX 16
44
45#define SVG_PRECISION_MIN 3U
46#define SVG_PRECISION_MAX 6U
47#define SVG_PRECISION_DEFAULT 4
48
49
50// default trailing digits in Gerber coordinates, when units are mm
51// This is also the max usable precision (i.e. internal Pcbnew Units)
52static const int gbrDefaultPrecision = 6;
53
54
55using namespace PCBPLOTPARAMS_T;
56
57
58static const char* getTokenName( T aTok )
59{
60 return PCB_PLOT_PARAMS_LEXER::TokenName( aTok );
61}
62
63
64static bool setInt( int* aTarget, int aValue, int aMin, int aMax )
65{
66 int temp = aValue;
67
68 if( aValue < aMin )
69 temp = aMin;
70 else if( aValue > aMax )
71 temp = aMax;
72
73 *aTarget = temp;
74 return ( temp == aValue );
75}
76
77
78static bool setDouble( double* aTarget, double aValue, double aMin, double aMax )
79{
80 double temp = aValue;
81
82 if( aValue < aMin )
83 temp = aMin;
84 else if( aValue > aMax )
85 temp = aMax;
86
87 *aTarget = temp;
88 return ( temp == aValue );
89}
90
91
93{
100 m_dashedLineDashRatio = 12.0; // From ISO 128-2
101 m_dashedLineGapRatio = 3.0; // From ISO 128-2
102
103 // we used 0.1mils for SVG step before, but nm precision is more accurate, so we use nm
105 m_plotDrawingSheet = false;
107 m_DXFPolygonMode = true;
108 m_DXFUnits = DXF_UNITS::INCHES;
109 m_useAuxOrigin = false;
110 m_HPGLPenNum = 1;
111 m_HPGLPenSpeed = 20; // this param is always in cm/s
112 m_HPGLPenDiam = 15; // in mils
113 m_negative = false;
114 m_A4Output = false;
115 m_plotReference = true;
116 m_plotValue = true;
117 m_plotFPText = true;
118 m_plotInvisibleText = false;
123 m_plotPadNumbers = false;
125 m_format = PLOT_FORMAT::GERBER;
126 m_mirror = false;
127 m_drillMarks = DRILL_MARKS::SMALL_DRILL_SHAPE;
128 m_autoScale = false;
129 m_scale = 1.0;
131 m_fineScaleAdjustX = 1.0;
132 m_fineScaleAdjustY = 1.0;
133 m_widthAdjust = 0.;
134 m_textMode = PLOT_TEXT_MODE::DEFAULT;
135 m_outputDirectory.clear();
138 | LSET::AllCuMask();
139
142 m_PDFMetadata = true;
143
144 // This parameter controls if the NPTH pads will be plotted or not
145 // it is a "local" parameter
146 m_skipNPTH_Pads = false;
147
148 // line width to plot items in outline mode.
150
151 m_default_colors = std::make_shared<COLOR_SETTINGS>();
153
154 m_blackAndWhite = true;
155}
156
157
159{
160 // Currently Gerber files use mm.
161 // accepted precision is only 6 (max value, this is the resolution of Pcbnew)
162 // or 5, min value for professional boards, when 6 creates problems
163 // to board makers.
164
167}
168
169
170void PCB_PLOT_PARAMS::SetSvgPrecision( unsigned aPrecision )
171{
172 m_svgPrecision = std::clamp( aPrecision, SVG_PRECISION_MIN, SVG_PRECISION_MAX );
173}
174
175
177 int aNestLevel, int aControl ) const
178{
179 aFormatter->Print( aNestLevel, "(pcbplotparams\n" );
180
181 aFormatter->Print( aNestLevel+1, "(layerselection 0x%s)\n",
182 m_layerSelection.FmtHex().c_str() );
183
184 aFormatter->Print( aNestLevel+1, "(plot_on_all_layers_selection 0x%s)\n",
186
187 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "disableapertmacros",
189
190 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "usegerberextensions",
192
193 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "usegerberattributes",
195
196 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "usegerberadvancedattributes",
198
199 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "creategerberjobfile",
201
202 // save this option only if it is not the default value,
203 // to avoid incompatibility with older Pcbnew version
205 aFormatter->Print( aNestLevel+1, "(gerberprecision %d)\n", m_gerberPrecision );
206
207 aFormatter->Print( aNestLevel+1, "(dashed_line_dash_ratio %f)\n", GetDashedLineDashRatio() );
208 aFormatter->Print( aNestLevel+1, "(dashed_line_gap_ratio %f)\n", GetDashedLineGapRatio() );
209
210 // SVG options
211 aFormatter->Print( aNestLevel+1, "(svgprecision %d)\n", m_svgPrecision );
212
213 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "plotframeref", m_plotDrawingSheet );
214 aFormatter->Print( aNestLevel+1, "(mode %d)\n", GetPlotMode() == SKETCH ? 2 : 1 );
215 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "useauxorigin", m_useAuxOrigin );
216
217 // HPGL options
218 aFormatter->Print( aNestLevel+1, "(hpglpennumber %d)\n", m_HPGLPenNum );
219 aFormatter->Print( aNestLevel+1, "(hpglpenspeed %d)\n", m_HPGLPenSpeed );
220 aFormatter->Print( aNestLevel+1, "(hpglpendiameter %f)\n", m_HPGLPenDiam );
221
222 // PDF options
223 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1,
224 getTokenName( T_pdf_front_fp_property_popups ),
226 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1,
227 getTokenName( T_pdf_back_fp_property_popups ),
229 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1,
230 getTokenName( T_pdf_metadata ),
232
233 // DXF options
234 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, getTokenName( T_dxfpolygonmode ),
236 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, getTokenName( T_dxfimperialunits ),
237 m_DXFUnits == DXF_UNITS::INCHES );
238 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, getTokenName( T_dxfusepcbnewfont ),
239 m_textMode != PLOT_TEXT_MODE::NATIVE );
240
241 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, getTokenName( T_psnegative ),
242 m_negative );
243 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, getTokenName( T_psa4output ),
244 m_A4Output );
245
246 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "plotinvisibletext", m_plotInvisibleText );
247 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "sketchpadsonfab", m_sketchPadsOnFabLayers );
248 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "plotpadnumbers", m_plotPadNumbers );
249 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "hidednponfab", m_hideDNPFPsOnFabLayers );
250 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "sketchdnponfab", m_sketchDNPFPsOnFabLayers );
251 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "crossoutdnponfab", m_crossoutDNPFPsOnFabLayers );
252 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "subtractmaskfromsilk", m_subtractMaskFromSilk );
253 aFormatter->Print( aNestLevel+1, "(outputformat %d)\n", static_cast<int>( m_format ) );
254 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "mirror", m_mirror );
255 aFormatter->Print( aNestLevel+1, "(drillshape %d)\n", (int)m_drillMarks );
256 aFormatter->Print( aNestLevel+1, "(scaleselection %d)\n", m_scaleSelection );
257 aFormatter->Print( aNestLevel+1, "(outputdirectory \"%s\")",
258 (const char*) m_outputDirectory.utf8_str() );
259 aFormatter->Print( 0, "\n" );
260 aFormatter->Print( aNestLevel, ")\n" );
261}
262
263
265{
266 aParser->Parse( this );
267}
268
269
270bool PCB_PLOT_PARAMS::IsSameAs( const PCB_PLOT_PARAMS &aPcbPlotParams ) const
271{
272 if( m_layerSelection != aPcbPlotParams.m_layerSelection )
273 return false;
274
276 return false;
277
279 return false;
280
282 return false;
283
284 if( m_useGerberX2format != aPcbPlotParams.m_useGerberX2format )
285 return false;
286
288 return false;
289
290 if( m_createGerberJobFile != aPcbPlotParams.m_createGerberJobFile )
291 return false;
292
293 if( m_gerberPrecision != aPcbPlotParams.m_gerberPrecision )
294 return false;
295
296 if( m_dashedLineDashRatio != aPcbPlotParams.m_dashedLineDashRatio )
297 return false;
298
299 if( m_dashedLineGapRatio != aPcbPlotParams.m_dashedLineGapRatio )
300 return false;
301
302 if( m_plotDrawingSheet != aPcbPlotParams.m_plotDrawingSheet )
303 return false;
304
305 if( m_plotMode != aPcbPlotParams.m_plotMode )
306 return false;
307
308 if( m_DXFPolygonMode != aPcbPlotParams.m_DXFPolygonMode )
309 return false;
310
311 if( m_DXFUnits != aPcbPlotParams.m_DXFUnits )
312 return false;
313
314 if( m_svgPrecision != aPcbPlotParams.m_svgPrecision )
315 return false;
316
317 if( m_useAuxOrigin != aPcbPlotParams.m_useAuxOrigin )
318 return false;
319
320 if( m_HPGLPenNum != aPcbPlotParams.m_HPGLPenNum )
321 return false;
322
323 if( m_HPGLPenSpeed != aPcbPlotParams.m_HPGLPenSpeed )
324 return false;
325
326 if( m_HPGLPenDiam != aPcbPlotParams.m_HPGLPenDiam )
327 return false;
328
329 if( m_negative != aPcbPlotParams.m_negative )
330 return false;
331
333 return false;
334
336 return false;
337
338 if( m_PDFMetadata != aPcbPlotParams.m_PDFMetadata )
339 return false;
340
341 if( m_A4Output != aPcbPlotParams.m_A4Output )
342 return false;
343
344 if( m_plotReference != aPcbPlotParams.m_plotReference )
345 return false;
346
347 if( m_plotValue != aPcbPlotParams.m_plotValue )
348 return false;
349
350 if( m_plotFPText != aPcbPlotParams.m_plotFPText )
351 return false;
352
353 if( m_plotInvisibleText != aPcbPlotParams.m_plotInvisibleText )
354 return false;
355
357 return false;
358
359 if( m_plotPadNumbers != aPcbPlotParams.m_plotPadNumbers )
360 return false;
361
363 return false;
364
366 return false;
367
369 return false;
370
371 if( m_subtractMaskFromSilk != aPcbPlotParams.m_subtractMaskFromSilk )
372 return false;
373
374 if( m_format != aPcbPlotParams.m_format )
375 return false;
376
377 if( m_mirror != aPcbPlotParams.m_mirror )
378 return false;
379
380 if( m_drillMarks != aPcbPlotParams.m_drillMarks )
381 return false;
382
383 if( m_scaleSelection != aPcbPlotParams.m_scaleSelection )
384 return false;
385
386 if( m_autoScale != aPcbPlotParams.m_autoScale )
387 return false;
388
389 if( m_scale != aPcbPlotParams.m_scale )
390 return false;
391
392 if( m_fineScaleAdjustX != aPcbPlotParams.m_fineScaleAdjustX )
393 return false;
394
395 if( m_fineScaleAdjustY != aPcbPlotParams.m_fineScaleAdjustY )
396 return false;
397
398 if( m_widthAdjust != aPcbPlotParams.m_widthAdjust )
399 return false;
400
401 if( m_textMode != aPcbPlotParams.m_textMode )
402 return false;
403
404 if( m_blackAndWhite != aPcbPlotParams.m_blackAndWhite )
405 return false;
406
407 if( !m_outputDirectory.IsSameAs( aPcbPlotParams.m_outputDirectory ) )
408 return false;
409
410 return true;
411}
412
413
415{
417}
418
419
421{
423}
424
425
427 PCB_PLOT_PARAMS_LEXER( aReader )
428{
429}
430
431
432PCB_PLOT_PARAMS_PARSER::PCB_PLOT_PARAMS_PARSER( char* aLine, const wxString& aSource ) :
433 PCB_PLOT_PARAMS_LEXER( aLine, aSource )
434{
435}
436
437
439{
440 T token;
441
442 while( ( token = NextTok() ) != T_RIGHT )
443 {
444 if( token == T_EOF)
445 Unexpected( T_EOF );
446
447 if( token == T_LEFT )
448 token = NextTok();
449
450 if( token == T_pcbplotparams )
451 continue;
452
453 bool skip_right = false;
454
455 switch( token )
456 {
457 case T_layerselection:
458 {
459 token = NeedSYMBOLorNUMBER();
460
461 const std::string& cur = CurStr();
462
463 if( token == T_NUMBER ) // pretty 3 format had legacy Cu stack.
464 {
465 // It's not possible to convert a legacy Cu layer number to a new Cu layer
466 // number without knowing the number or total Cu layers in the legacy board.
467 // We do not have that information here, so simply set all layers ON. User
468 // can turn them off in the UI.
469 aPcbPlotParams->m_layerSelection = LSET( { F_SilkS, B_SilkS } ) | LSET::AllCuMask();
470 }
471 else if( cur.find_first_of( "0x" ) == 0 ) // pretty ver. 4.
472 {
473 // skip the leading 2 0x bytes.
474 aPcbPlotParams->m_layerSelection.ParseHex( cur.c_str() + 2, cur.size() - 2 );
475 }
476 else
477 {
478 Expecting( "integer or hex layerSelection" );
479 }
480
481 break;
482 }
483
484 case T_plot_on_all_layers_selection:
485 {
486 token = NeedSYMBOLorNUMBER();
487
488 const std::string& cur = CurStr();
489
490 if( cur.find_first_of( "0x" ) == 0 )
491 {
492 // skip the leading 2 0x bytes.
493 aPcbPlotParams->m_plotOnAllLayersSelection.ParseHex( cur.c_str() + 2,
494 cur.size() - 2 );
495 }
496 else
497 {
498 Expecting( "hex plot_on_all_layers_selection" );
499 }
500
501 break;
502 }
503
504 case T_disableapertmacros:
505 aPcbPlotParams->m_gerberDisableApertMacros = parseBool();
506 break;
507
508 case T_usegerberextensions:
509 aPcbPlotParams->m_useGerberProtelExtensions = parseBool();
510 break;
511
512 case T_usegerberattributes:
513 aPcbPlotParams->m_useGerberX2format = parseBool();
514 break;
515
516 case T_usegerberadvancedattributes:
517 aPcbPlotParams->m_includeGerberNetlistInfo = parseBool();
518 break;
519
520 case T_creategerberjobfile:
521 aPcbPlotParams->m_createGerberJobFile = parseBool();
522 break;
523
524 case T_gerberprecision:
525 aPcbPlotParams->m_gerberPrecision = parseInt( gbrDefaultPrecision - 1,
527 break;
528
529 case T_dashed_line_dash_ratio:
530 aPcbPlotParams->m_dashedLineDashRatio = parseDouble();
531 break;
532
533 case T_dashed_line_gap_ratio:
534 aPcbPlotParams->m_dashedLineGapRatio = parseDouble();
535 break;
536
537 case T_svgprecision:
539 break;
540
541 case T_svguseinch:
542 parseBool(); // Unused. For compatibility
543 break;
544
545 case T_psa4output:
546 aPcbPlotParams->m_A4Output = parseBool();
547 break;
548
549 case T_excludeedgelayer:
550 if( !parseBool() )
551 aPcbPlotParams->m_plotOnAllLayersSelection.set( Edge_Cuts );
552
553 break;
554
555 case T_plotframeref:
556 aPcbPlotParams->m_plotDrawingSheet = parseBool();
557 break;
558
559 case T_viasonmask:
560 aPcbPlotParams->m_plotViaOnMaskLayer = parseBool();
561 break;
562
563 case T_mode:
564 aPcbPlotParams->SetPlotMode( parseInt( 0, 2 ) > 1 ? SKETCH : FILLED );
565 break;
566
567 case T_useauxorigin:
568 aPcbPlotParams->m_useAuxOrigin = parseBool();
569 break;
570
571 case T_hpglpennumber:
573 break;
574
575 case T_hpglpenspeed:
577 break;
578
579 case T_hpglpendiameter:
580 aPcbPlotParams->m_HPGLPenDiam = parseDouble();
581 break;
582
583 case T_hpglpenoverlay:
584 // No more used. just here for compatibility with old versions
586 break;
587
588 case T_pdf_front_fp_property_popups:
589 aPcbPlotParams->m_PDFFrontFPPropertyPopups = parseBool();
590 break;
591
592 case T_pdf_back_fp_property_popups:
593 aPcbPlotParams->m_PDFFrontFPPropertyPopups = parseBool();
594 break;
595
596 case T_pdf_metadata:
597 aPcbPlotParams->m_PDFMetadata = parseBool();
598 break;
599
600 case T_dxfpolygonmode:
601 aPcbPlotParams->m_DXFPolygonMode = parseBool();
602 break;
603
604 case T_dxfimperialunits:
605 aPcbPlotParams->m_DXFUnits = parseBool() ? DXF_UNITS::INCHES
606 : DXF_UNITS::MILLIMETERS;
607 break;
608
609 case T_dxfusepcbnewfont:
610 aPcbPlotParams->m_textMode = parseBool() ? PLOT_TEXT_MODE::DEFAULT
611 : PLOT_TEXT_MODE::NATIVE;
612 break;
613
614 case T_pscolor:
615 NeedSYMBOL(); // This actually was never used...
616 break;
617
618 case T_psnegative:
619 aPcbPlotParams->m_negative = parseBool();
620 break;
621
622 case T_plotinvisibletext:
623 aPcbPlotParams->m_plotInvisibleText = parseBool();
624 break;
625
626 case T_sketchpadsonfab:
627 aPcbPlotParams->m_sketchPadsOnFabLayers= parseBool();
628 break;
629
630 case T_plotpadnumbers:
631 aPcbPlotParams->m_plotPadNumbers = parseBool();
632 break;
633
634 case T_hidednponfab:
635 aPcbPlotParams->m_hideDNPFPsOnFabLayers = parseBool();
636 break;
637
638 case T_sketchdnponfab:
639 aPcbPlotParams->m_sketchDNPFPsOnFabLayers = parseBool();
640 break;
641
642 case T_crossoutdnponfab:
643 aPcbPlotParams->m_crossoutDNPFPsOnFabLayers = parseBool();
644 break;
645
646 case T_subtractmaskfromsilk:
647 aPcbPlotParams->m_subtractMaskFromSilk = parseBool();
648 break;
649
650 case T_outputformat:
651 aPcbPlotParams->m_format = static_cast<PLOT_FORMAT>(
652 parseInt( static_cast<int>( PLOT_FORMAT::FIRST_FORMAT ),
653 static_cast<int>( PLOT_FORMAT::LAST_FORMAT ) ) );
654 break;
655
656 case T_mirror:
657 aPcbPlotParams->m_mirror = parseBool();
658 break;
659
660 case T_drillshape:
661 aPcbPlotParams->m_drillMarks = static_cast<DRILL_MARKS> ( parseInt( 0, 2 ) );
662 break;
663
664 case T_scaleselection:
665 aPcbPlotParams->m_scaleSelection = parseInt( 0, 4 );
666 break;
667
668 case T_outputdirectory:
669 NeedSYMBOLorNUMBER(); // a dir name can be like a number
670 aPcbPlotParams->m_outputDirectory = From_UTF8( CurText() );
671 break;
672
673 default:
674 skipCurrent(); // skip unknown or outdated plot parameter
675 skip_right = true; // the closing right token is already read.
676 break;
677 }
678
679 if( ! skip_right )
680 NeedRIGHT();
681 }
682}
683
684
686{
687 T token = NeedSYMBOL();
688
689 switch( token )
690 {
691 case T_false:
692 case T_no:
693 return false;
694
695 case T_true:
696 case T_yes:
697 return true;
698
699 default:
700 Expecting( "true, false, yes, or no" );
701 return false;
702 }
703}
704
705
706int PCB_PLOT_PARAMS_PARSER::parseInt( int aMin, int aMax )
707{
708 T token = NextTok();
709
710 if( token != T_NUMBER )
711 Expecting( T_NUMBER );
712
713 int val = atoi( CurText() );
714
715 if( val < aMin )
716 val = aMin;
717 else if( val > aMax )
718 val = aMax;
719
720 return val;
721}
722
723
725{
726 T token = NextTok();
727
728 if( token != T_NUMBER )
729 Expecting( T_NUMBER );
730
731 return DSNLEXER::parseDouble();
732}
733
734
736{
737 int curr_level = 0;
738 T token;
739
740 while( ( token = NextTok() ) != T_EOF )
741 {
742 if( token == T_LEFT )
743 curr_level--;
744
745 if( token == T_RIGHT )
746 {
747 curr_level++;
748
749 if( curr_level > 0 )
750 return;
751 }
752 }
753}
constexpr EDA_IU_SCALE pcbIUScale
Definition: base_units.h:108
BASE_SET & set(size_t pos)
Definition: base_set.h:115
double parseDouble()
Parse the current token as an ASCII numeric string with possible leading whitespace into a double pre...
Definition: dsnlexer.cpp:844
An abstract class from which implementation specific LINE_READERs may be derived to read single lines...
Definition: richio.h:93
LSET is a set of PCB_LAYER_IDs.
Definition: lset.h:36
int ParseHex(const char *aStart, int aCount)
Convert the output of FmtHex() and replaces this set's values with those given in the input string.
Definition: lset.cpp:358
static LSET AllCuMask(int aCuLayerCount=MAX_CU_LAYERS)
Return a mask holding the requested number of Cu PCB_LAYER_IDs.
Definition: lset.cpp:676
std::string FmtHex() const
Return a hex string showing contents of this LSEQ.
Definition: lset.cpp:314
An interface used to output 8 bit text in a convenient way.
Definition: richio.h:322
int PRINTF_FUNC Print(int nestLevel, const char *fmt,...)
Format and write text to the output stream.
Definition: richio.cpp:458
The parser for PCB_PLOT_PARAMS.
void skipCurrent()
Skip the current token level.
int parseInt(int aMin, int aMax)
Parse an integer and constrains it between two values.
PCB_PLOT_PARAMS_PARSER(LINE_READER *aReader)
double parseDouble()
Parse a double precision floating point number.
void Parse(PCB_PLOT_PARAMS *aPcbPlotParams)
Parameters and options when plotting/printing a board.
bool m_sketchPadsOnFabLayers
Plots pads outlines on fab layers.
int m_HPGLPenNum
HPGL only: pen number selection(1 to 9)
bool m_crossoutDNPFPsOnFabLayers
double m_dashedLineGapRatio
std::optional< bool > m_plotViaOnMaskLayer
int m_gerberPrecision
Precision of coordinates in Gerber: accepted 5 or 6 when units are in mm, 6 or 7 in inches (but Pcbne...
std::shared_ptr< COLOR_SETTINGS > m_default_colors
Pointer to color settings to be used for plotting.
OUTLINE_MODE m_plotMode
Used to disable NPTH pads plotting on copper layers.
bool m_A4Output
In polygon mode, each item to plot is converted to a polygon and all polygons are merged.
int m_scaleSelection
Scale ratio index (UI only)
DXF_UNITS m_DXFUnits
PLOT_TEXT_MODE m_textMode
Holes can be not plotted, have a small mark, or be plotted in actual size.
bool m_plotValue
Enable plotting of part values.
wxString m_outputDirectory
Output directory for plot files (usually relative to the board file)
bool m_PDFMetadata
Generate PDF metadata for SUBJECT and AUTHOR.
bool m_autoScale
Autoscale the plot to fit an A4 (landscape?) sheet.
bool m_useGerberProtelExtensions
On gerbers 'scrape' away the solder mask from silkscreen (trim silks)
int m_HPGLPenSpeed
HPGL only: pen speed, always in cm/s (1 to 99 cm/s)
bool GetCreateGerberJobFile() const
bool m_useAuxOrigin
Plot gerbers using auxiliary (drill) origin instead of absolute coordinates.
double m_scale
When true set the scale to fit the board in the page.
int m_widthAdjust
Compensation for PS printers/plotters that do not strictly obey line width settings.
bool SetHPGLPenDiameter(double aValue)
bool m_PDFFrontFPPropertyPopups
Generate PDF property popup menus for footprints.
double m_fineScaleAdjustX
Compensation for printer scale errors (and therefore.
LSET m_plotOnAllLayersSelection
double m_dashedLineDashRatio
void Format(OUTPUTFORMATTER *aFormatter, int aNestLevel, int aControl=0) const
void SetGerberPrecision(int aPrecision)
bool m_blackAndWhite
Plot in negative color (supported only by some drivers)
bool SetHPGLPenSpeed(int aValue)
bool m_plotInvisibleText
Force plotting of fields marked invisible.
PLOT_FORMAT m_format
bool m_createGerberJobFile
generate the auxiliary "job file" in gerber format
bool m_plotReference
Enable plotting of part references.
double m_fineScaleAdjustY
expected to be very near 1.0).
double m_HPGLPenDiam
HPGL only: pen diameter in MILS, useful to fill areas However, it is in mm in hpgl files.
bool m_gerberDisableApertMacros
Disable aperture macros in Gerber format (only for broken Gerber readers).
void Parse(PCB_PLOT_PARAMS_PARSER *aParser)
bool m_subtractMaskFromSilk
Deprecated; only used for reading legacy files.
COLOR_SETTINGS * m_colors
bool GetUseGerberX2format() const
bool m_mirror
Global scale factor, 1.0 plots a board at actual size.
bool IsSameAs(const PCB_PLOT_PARAMS &aPcbPlotParams) const
Compare current settings to aPcbPlotParams, including not saved parameters in brd file.
bool m_includeGerberNetlistInfo
Include netlist info (only in Gerber X2 format) (chapter ? in revision ?)
unsigned m_svgPrecision
Precision of coordinates in SVG: accepted 3 - 6; 6 is the internal resolution of Pcbnew.
bool GetIncludeGerberNetlistInfo() const
void SetPlotMode(OUTLINE_MODE aPlotMode)
double GetDashedLineGapRatio() const
bool m_PDFBackFPPropertyPopups
on front and/or back of board
bool m_sketchDNPFPsOnFabLayers
double GetDashedLineDashRatio() const
void SetSvgPrecision(unsigned aPrecision)
DRILL_MARKS m_drillMarks
Plot pad numbers when sketching pads on fab layers.
bool m_useGerberX2format
Include attributes from the Gerber X2 format (chapter 5 in revision J2)
bool m_negative
Mirror the plot around the X axis.
bool m_plotDrawingSheet
Plot in black and white only.
OUTLINE_MODE GetPlotMode() const
LSET m_layerSelection
Plot format type (chooses the driver to be used)
bool m_plotPadNumbers
FILLED or SKETCH for filled objects.
static bool setDouble(double *aResult, double aValue, double aMin, double aMax)
static bool setInt(int *aResult, int aValue, int aMin, int aMax)
static const char * getTokenName(T aTok)
static const bool FILLED
Definition: gr_basic.cpp:30
@ Edge_Cuts
Definition: layer_ids.h:112
@ F_Paste
Definition: layer_ids.h:104
@ B_Mask
Definition: layer_ids.h:98
@ F_Mask
Definition: layer_ids.h:97
@ B_Paste
Definition: layer_ids.h:105
@ F_SilkS
Definition: layer_ids.h:100
@ B_SilkS
Definition: layer_ids.h:101
void FormatBool(OUTPUTFORMATTER *aOut, int aNestLevel, const wxString &aKey, bool aValue, char aSuffix)
Writes a boolean to the formatter, in the style (aKey [yes|no])
@ SKETCH
Definition: outline_mode.h:26
#define HPGL_PEN_NUMBER_MAX
static bool setDouble(double *aTarget, double aValue, double aMin, double aMax)
#define SVG_PRECISION_MIN
#define HPGL_PEN_SPEED_MAX
static bool setInt(int *aTarget, int aValue, int aMin, int aMax)
#define HPGL_PEN_DIAMETER_MIN
static const char * getTokenName(T aTok)
#define HPGL_PEN_DIAMETER_MAX
static const int gbrDefaultPrecision
#define HPGL_PEN_SPEED_MIN
#define HPGL_PEN_NUMBER_MIN
#define SVG_PRECISION_MAX
#define SVG_PRECISION_DEFAULT
DRILL_MARKS
Plots and prints can show holes in pads and vias 3 options are available:
PLOT_FORMAT
The set of supported output plot formats.
Definition: plotter.h:65
wxString From_UTF8(const char *cstring)
constexpr int mmToIU(double mm) const
Definition: base_units.h:88