KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
HPGL_plotter.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) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
33/* Some HPGL commands:
34 * Note: the HPGL unit is 25 micrometers
35 * All commands MUST be terminated by a semi-colon or a linefeed.
36 * Spaces can NOT be substituted for required commas in the syntax of a command.
37 *
38 *
39 * AA (Arc Absolute): Angle is a floating point # (requires non integer value)
40 * Draws an arc with the center at (X,Y).
41 * A positive angle creates a counter-clockwise arc.
42 * If the chord angle is specified,
43 * this will be the number of degrees used for stepping around the arc.
44 * If no value is given then a default value of five degrees is used.
45 * AA x, y, a {,b};
46 *
47 * AR (Arc Relative):
48 * AR Dx, Dy, a {, b};
49 *
50 * CA (Alternate Character Set):
51 * CA {n};
52 *
53 * CI (Circle):
54 * CI r {,b};
55 *
56 * CP (Character Plot):
57 * CP {h, v};
58 * h [-127.9999 .. 127.9999] Number of characters horizontally
59 * v [-127.9999 .. 127.9999] Number of characters vertically
60 *
61 * CS (Standard Character Set):
62 * CS {n};
63 *
64 * DR (Relative Direction for Label Text):
65 * DR s, a;
66 *
67 * DI (Absolute Direction for Label Text):
68 * DI {s, a};
69 *
70 * DT (Define Terminator - this character becomes unavailable except to terminate a label string.
71 * Default is ^C control-C):
72 * DT t;
73 *
74 * EA (rEctangle Absolute - Unfilled, from current position to diagonal x,y):
75 * EA x, y;
76 *
77 * ER (rEctangle Relative - Unfilled, from current position to diagonal x,y):
78 * ER x,y;
79 *
80 * FT (Fill Type):
81 * FT {s {,l {a}}};
82 *
83 * IM (Input Mask):
84 * IM {f};
85 *
86 * IN (Initialize): This command instructs the controller to begin processing the HPGL plot file.
87 * Without this, the commands in the file are received but never executed.
88 * If multiple IN s are found during execution of the file,
89 * the controller performs a Pause/Cancel operation.
90 * All motion from the previous job, yet to be executed, is lost,
91 * and the new information is executed.
92 * IN;
93 *
94 * IP Input P1 and P2:
95 * IP {P1x, P1y {, P2x, P2y}};
96 *
97 * IW (Input Window):
98 * IW {XUL, YUL, XOR, YOR};
99 *
100 * LB (Label):
101 * LB c1 .. cn t;
102 *
103 * PA (Plot Absolute): Moves to an absolute HPGL position and sets absolute mode for
104 * future PU and PD commands. If no arguments follow the command,
105 * only absolute mode is set.
106 * PA {x1, y1 {{PU|PD|,} ..., ..., xn, yn}};
107 * P1x, P1y, P2x, P2y [Integer in ASCII]
108 *
109 * PD (Pen Down): Executes <current pen> pen then moves to the requested position
110 * if one is specified. This position is dependent on whether absolute
111 * or relative mode is set. This command performs no motion in 3-D mode,
112 * but the outputs and feedrates are affected.
113 * PD {x, y};
114 *
115 * PM Polygon mode
116 * associated commands:
117 * PM2 End polygon mode
118 * FP Fill polygon
119 * EP Draw polygon outline
120 *
121 * PR (Plot Relative): Moves to the relative position specified and sets relative mode
122 * for future PU and PD commands.
123 * If no arguments follow the command, only relative mode is set.
124 * PR {Dx1, Dy1 {{PU|PD|,} ..., ..., Dxn, Dyn}};
125 *
126 * PS (Paper Size):
127 * PS {n};
128 *
129 * PT (Pen Thickness): in mm
130 * PT {l};
131 *
132 * PU (Pen Up): Executes <current pen> pen then moves to the requested position
133 * if one is specified. This position is dependent on whether absolute
134 * or relative mode is set.
135 * This command performs no motion in 3-D mode, but the outputs
136 * and feedrates are affected.
137 * PU {x, y};
138 *
139 * RA (Rectangle Absolute - Filled, from current position to diagonal x,y):
140 * RA x, y;
141 *
142 * RO (Rotate Coordinate System):
143 * RO;
144 *
145 * RR (Rectangle Relative - Filled, from current position to diagonal x,y):
146 * RR x, y;
147 *
148 * SA (Select Alternate Set):
149 * SA;
150 *
151 * SC (Scale):
152 * SC {Xmin, Xmax, Ymin, Ymax};
153 *
154 * SI (Absolute Character Size):
155 * SI b, h;
156 * b [-127.9999 .. 127.9999, keine 0]
157 * h [-127.9999 .. 127.9999, keine 0]
158 *
159 * SL (Character Slant):
160 * SL {a};
161 * a [-3.5 .. -0.5, 0.5 .. 3.5]
162*
163 * SP (Select Pen): Selects a new pen or tool for use.
164 * If no pen number or a value of zero is given,
165 * the controller performs an EOF (end of file command).
166 * Once an EOF is performed, no motion is executed,
167 * until a new IN command is received.
168 * SP n;
169 *
170 * SR (Relative Character Size):
171 * SR {b, h};
172 * b [-127.9999 .. 127.9999, keine 0]
173 * h [-127.9999 .. 127.9999, keine 0]
174 *
175 * SS (Select Standard Set):
176 * SS;
177 *
178 * TL (Tick Length):
179 * TL {tp {, tm}};
180 *
181 * UC (User Defined Character):
182 * UC {i,} x1, y1, {i,} x2, y2, ... {i,} xn, yn;
183 *
184 * VS (Velocity Select):
185 * VS {v {, n}};
186 * v [1 .. 40] in cm/s
187 * n [1 .. 8]
188 *
189 * XT (X Tick):
190 * XT;
191 *
192 * YT (Y Tick):
193 * YT;
194 */
195
196#include <cstdio>
197
198#include <string_utils.h>
200#include <math/util.h> // for KiROUND
201#include <trigo.h>
202#include <fmt/format.h>
203
205
206
208static double dpoint_dist( const VECTOR2D& a, const VECTOR2D& b );
209
210
211// The hpgl command to close a polygon def, fill it and plot outline:
212// PM 2; ends the polygon definition and closes it if not closed
213// FP; fills the polygon
214// EP; draws the polygon outline. It usually gives a better look to the filled polygon
215static std::string hpgl_end_polygon_cmd = "PM 2; FP; EP;\n";
216
217
218// HPGL scale factor (1 Plotter Logical Unit = 1/40mm = 25 micrometers)
219// PLUsPERDECIMIL = (25.4 / 10000) / 0.025
220static const double PLUsPERDECIMIL = 0.1016;
221
222
224 m_arcTargetChordLength( 0 ),
225 m_arcMinChordDegrees( 5.0, DEGREES_T ),
226 m_lineStyle( LINE_STYLE::SOLID ),
227 m_useUserCoords( false ),
228 m_fitUserCoords( false ),
229 m_current_item( nullptr )
230{
231 SetPenSpeed( 40 ); // Default pen speed = 40 cm/s; Pen speed is *always* in cm
232 SetPenNumber( 1 ); // Default pen num = 1
233 SetPenDiameter( 0.0 );
234}
235
236
237void HPGL_PLOTTER::SetViewport( const VECTOR2I& aOffset, double aIusPerDecimil,
238 double aScale, bool aMirror )
239{
240 m_plotOffset = aOffset;
241 m_plotScale = aScale;
242 m_IUsPerDecimil = aIusPerDecimil;
243 m_iuPerDeviceUnit = PLUsPERDECIMIL / aIusPerDecimil;
244
245 // Compute the paper size in IUs.
247 m_paperSize.x *= 10.0 * aIusPerDecimil;
248 m_paperSize.y *= 10.0 * aIusPerDecimil;
249 m_plotMirror = aMirror;
250}
251
252
254{
256}
257
258
259bool HPGL_PLOTTER::StartPlot( const wxString& aPageNumber )
260{
261 wxASSERT( m_outputFile );
262 fmt::print( m_outputFile, "IN;VS{};PU;PA;SP{};\n", m_penSpeed, m_penNumber );
263
264 // Set HPGL Pen Thickness (in mm) (useful in polygon fill command)
265 double penThicknessMM = userToDeviceSize( m_penDiameter ) / 40;
266 fmt::print( m_outputFile, "PT {:.1f};\n", penThicknessMM );
267
268 return true;
269}
270
271
273{
274 wxASSERT( m_outputFile );
275
276 fmt::print( m_outputFile, "PU;\n" );
277
278 flushItem();
280
281 if( m_items.size() > 0 )
282 {
283 if( m_useUserCoords )
284 {
285 if( m_fitUserCoords )
286 {
287 BOX2D bbox = m_items.front().bbox;
288
289 for( HPGL_ITEM const& item : m_items )
290 bbox.Merge( item.bbox );
291
292 fmt::print( m_outputFile, "SC{:.0f},{:.0f},{:.0f},{:.0f};\n",
293 bbox.GetX(),
294 bbox.GetX() + bbox.GetWidth(),
295 bbox.GetY(),
296 bbox.GetY() + bbox.GetHeight() );
297 }
298 else
299 {
300 VECTOR2D pagesize_device( m_paperSize * m_iuPerDeviceUnit );
301 fmt::print( m_outputFile, "SC{:.0f},{:.0f},{:.0f},{:.0f};\n",
302 0.0,
303 pagesize_device.x,
304 0.0,
305 pagesize_device.y );
306 }
307 }
308
309 VECTOR2D loc = m_items.begin()->loc_start;
310 bool pen_up = true;
311 LINE_STYLE current_dash = LINE_STYLE::SOLID;
312 int current_pen = m_penNumber;
313
314 for( HPGL_ITEM const& item : m_items )
315 {
316 if( item.loc_start != loc || pen_up )
317 {
318 if( !pen_up )
319 {
320 fmt::print( m_outputFile, "PU;" );
321 pen_up = true;
322 }
323
324 fmt::print( m_outputFile, "PA {:.0f},{:.0f};", item.loc_start.x, item.loc_start.y );
325 }
326
327 if( item.dashType != current_dash )
328 {
329 current_dash = item.dashType;
330 fmt::print( m_outputFile, "{}", lineStyleCommand( item.dashType ) );
331 }
332
333 if( item.pen != current_pen )
334 {
335 if( !pen_up )
336 {
337 fmt::print( m_outputFile, "PU;" );
338 pen_up = true;
339 }
340
341 fmt::print( m_outputFile, "SP{};", item.pen );
342 current_pen = item.pen;
343 }
344
345 if( pen_up && !item.lift_before )
346 {
347 fmt::print( m_outputFile, "PD;" );
348 pen_up = false;
349 }
350 else if( !pen_up && item.lift_before )
351 {
352 fmt::print( m_outputFile, "PU;" );
353 pen_up = true;
354 }
355
356 fmt::print( m_outputFile, "{}", item.content );
357
358 if( !item.pen_returns )
359 {
360 // Assume commands drop the pen
361 pen_up = false;
362 }
363
364 if( item.lift_after )
365 {
366 fmt::print( m_outputFile, "PU;" );
367 pen_up = true;
368 }
369 else
370 {
371 loc = item.loc_end;
372 }
373
374 fmt::print( m_outputFile, "\n" );
375 }
376 }
377
378 fmt::print( m_outputFile, "PU;PA;SP0;\n" );
379 fclose( m_outputFile );
380 m_outputFile = nullptr;
381 return true;
382}
383
384
385void HPGL_PLOTTER::SetPenDiameter( double diameter )
386{
387 m_penDiameter = diameter;
388}
389
390
391void HPGL_PLOTTER::Rect( const VECTOR2I& p1, const VECTOR2I& p2, FILL_T aFill, int aWidth )
392{
393 wxASSERT( m_outputFile );
394
395 // EA command seems to always fill the rectangle, so plot as a polygon instead
396 std::vector<VECTOR2I> cornerList;
397
398 cornerList.emplace_back( p1.x, p1.y );
399 cornerList.emplace_back( p2.x, p1.y );
400 cornerList.emplace_back( p2.x, p2.y );
401 cornerList.emplace_back( p1.x, p2.y );
402 cornerList.emplace_back( p1.x, p1.y );
403
404 PlotPoly( cornerList, aFill, aWidth, nullptr );
405}
406
407
408void HPGL_PLOTTER::Circle( const VECTOR2I& aCenter, int aDiameter, FILL_T aFill, int aWidth )
409{
410 wxASSERT( m_outputFile );
411 double radius = userToDeviceSize( aDiameter / 2 );
412 VECTOR2D center_dev = userToDeviceCoordinates( aCenter );
413 SetCurrentLineWidth( aWidth );
414
415 double const circumf = 2.0 * M_PI * radius;
416 double const target_chord_length = m_arcTargetChordLength;
417 EDA_ANGLE chord_angle = ANGLE_360 * target_chord_length / circumf;
418
419 chord_angle = std::clamp( chord_angle, m_arcMinChordDegrees, ANGLE_45 );
420
421 if( aFill == FILL_T::FILLED_SHAPE )
422 {
423 // Draw the filled area
424 MoveTo( aCenter );
425 startOrAppendItem( center_dev, fmt::format( "PM 0;CI {:g},{:g};{}",
426 radius,
427 chord_angle.AsDegrees(),
430 m_current_item->bbox.Merge( BOX2D( center_dev - radius,
431 VECTOR2D( 2 * radius, 2 * radius ) ) );
432 PenFinish();
433 }
434
435 if( radius > 0 )
436 {
437 MoveTo( aCenter );
438 startOrAppendItem( center_dev, fmt::format( "CI {:g},{:g};",
439 radius,
440 chord_angle.AsDegrees() ) );
442 m_current_item->bbox.Merge( BOX2D( center_dev - radius,
443 VECTOR2D( 2 * radius, 2 * radius ) ) );
444 PenFinish();
445 }
446}
447
448
449void HPGL_PLOTTER::PlotPoly( const std::vector<VECTOR2I>& aCornerList, FILL_T aFill, int aWidth,
450 void* aData )
451{
452 if( aFill == FILL_T::NO_FILL && aWidth <= 0 )
453 return;
454
455 if( aCornerList.size() <= 1 )
456 return;
457
458 // Width less than zero is occasionally used to create background-only
459 // polygons. Don't set that as the plotter line width, that'll cause
460 // trouble. Also, later, skip plotting the outline if this is the case.
461 if( aWidth > 0 )
462 {
463 SetCurrentLineWidth( aWidth );
464 }
465
466 MoveTo( aCornerList[0] );
467 startItem( userToDeviceCoordinates( aCornerList[0] ) );
468
469 if( aFill != FILL_T::NO_FILL )
470 {
471 // Draw the filled area
473
474 m_current_item->content += std::string( "PM 0;\n" ); // Start polygon
475
476 for( unsigned ii = 1; ii < aCornerList.size(); ++ii )
477 LineTo( aCornerList[ii] );
478
479 int ii = aCornerList.size() - 1;
480
481 if( aCornerList[ii] != aCornerList[0] )
482 LineTo( aCornerList[0] );
483
484 m_current_item->content += hpgl_end_polygon_cmd; // Close, fill polygon and draw outlines
486 }
487 else if( aWidth != 0 )
488 {
489 // Plot only the polygon outline.
490 for( unsigned ii = 1; ii < aCornerList.size(); ii++ )
491 LineTo( aCornerList[ii] );
492
493 // Always close polygon if filled.
494 if( aFill != FILL_T::NO_FILL )
495 {
496 int ii = aCornerList.size() - 1;
497
498 if( aCornerList[ii] != aCornerList[0] )
499 LineTo( aCornerList[0] );
500 }
501 }
502
503 PenFinish();
504}
505
506
507void HPGL_PLOTTER::PenTo( const VECTOR2I& pos, char plume )
508{
509 wxASSERT( m_outputFile );
510
511 if( plume == 'Z' )
512 {
513 m_penState = 'Z';
514 flushItem();
515 return;
516 }
517
518 VECTOR2D pos_dev = userToDeviceCoordinates( pos );
520
521 if( plume == 'U' )
522 {
523 m_penState = 'U';
524 flushItem();
525 }
526 else if( plume == 'D' )
527 {
528 m_penState = 'D';
529 startOrAppendItem( lastpos_dev, fmt::format( "PA {:.0f},{:.0f};", pos_dev.x, pos_dev.y ) );
530 m_current_item->loc_end = pos_dev;
531 m_current_item->bbox.Merge( pos_dev );
532 }
533
534 m_penLastpos = pos;
535}
536
537
538void HPGL_PLOTTER::SetDash( int aLineWidth, LINE_STYLE aLineStyle )
539{
540 m_lineStyle = aLineStyle;
541 flushItem();
542}
543
544
546 int width, OUTLINE_MODE tracemode, void* aData )
547{
548 wxASSERT( m_outputFile );
549
550 // Suppress overlap if pen is too big
551 if( m_penDiameter >= width )
552 {
553 MoveTo( start );
554 FinishTo( end );
555 }
556 else
557 {
558 segmentAsOval( start, end, width, tracemode );
559 }
560}
561
562
563void HPGL_PLOTTER::Arc( const VECTOR2D& aCenter, const EDA_ANGLE& aStartAngle,
564 const EDA_ANGLE& aAngle, double aRadius, FILL_T aFill, int aWidth )
565{
566 if( aRadius <= 0 )
567 return;
568
569 // Avoid integer overflow when calculating the center point
570 if( std::abs( aAngle.AsDegrees() ) < 5 )
571 {
572 polyArc( aCenter, aStartAngle, aAngle, aRadius, aFill, aWidth );
573 return;
574 }
575
576 double const radius_device = userToDeviceSize( aRadius );
577 double const circumf_device = 2.0 * M_PI * radius_device;
578 double const target_chord_length = m_arcTargetChordLength;
579 EDA_ANGLE chord_angle = ANGLE_360 * target_chord_length / circumf_device;
580
581 chord_angle = std::max( m_arcMinChordDegrees, std::min( chord_angle, ANGLE_45 ) );
582
583 VECTOR2D centre_device = userToDeviceCoordinates( aCenter );
584 EDA_ANGLE angle = aAngle;
585
586 if( !m_plotMirror )
587 angle = -angle;
588
589 EDA_ANGLE startAngle = -aStartAngle;
590
591 // Calculate arc start point:
592 VECTOR2I cmap( KiROUND( aCenter.x + aRadius * startAngle.Cos() ),
593 KiROUND( aCenter.y - aRadius * startAngle.Sin() ) );
594 VECTOR2D cmap_dev = userToDeviceCoordinates( cmap );
595
596 startOrAppendItem( cmap_dev, fmt::format( "AA {:.0f},{:.0f},{:g},{:g}",
597 centre_device.x,
598 centre_device.y,
599 angle.AsDegrees(),
600 chord_angle.AsDegrees() ) );
601
602 // TODO We could compute the final position and full bounding box instead...
603 m_current_item->bbox.Merge( BOX2D( centre_device - radius_device,
604 VECTOR2D( radius_device * 2, radius_device * 2 ) ) );
606 flushItem();
607}
608
609
610void HPGL_PLOTTER::FlashPadOval( const VECTOR2I& aPos, const VECTOR2I& aSize,
611 const EDA_ANGLE& aOrient, OUTLINE_MODE aTraceMode, void* aData )
612{
613 wxASSERT( m_outputFile );
614
615 VECTOR2I size( aSize );
616 EDA_ANGLE orient( aOrient );
617
618 // The pad will be drawn as an oblong shape with size.y > size.x (Oval vertical orientation 0).
619 if( size.x > size.y )
620 {
621 std::swap( size.x, size.y );
622 orient += ANGLE_90;
623 }
624
625 if( aTraceMode == FILLED )
626 {
627 int deltaxy = size.y - size.x; // distance between centers of the oval
628
629 FlashPadRect( aPos, VECTOR2I( size.x, deltaxy + KiROUND( m_penDiameter ) ), orient,
630 aTraceMode, aData );
631
632 VECTOR2I pt( 0, deltaxy / 2 );
633 RotatePoint( pt, orient );
634 FlashPadCircle( pt + aPos, size.x, aTraceMode, aData );
635
636 pt = VECTOR2I( 0, -deltaxy / 2 );
637 RotatePoint( pt, orient );
638 FlashPadCircle( pt + aPos, size.x, aTraceMode, aData );
639 }
640 else // Plot in outline mode.
641 {
642 sketchOval( aPos, size, orient, KiROUND( m_penDiameter ) );
643 }
644}
645
646
647void HPGL_PLOTTER::FlashPadCircle( const VECTOR2I& pos, int diametre,
648 OUTLINE_MODE trace_mode, void* aData )
649{
650 wxASSERT( m_outputFile );
651 VECTOR2D pos_dev = userToDeviceCoordinates( pos );
652 int radius = diametre / 2;
653
654 if( trace_mode == FILLED )
655 {
656 // if filled mode, the pen diameter is removed from diameter
657 // to keep the pad size
658 radius -= KiROUND( m_penDiameter ) / 2;
659
660 if( radius < 0 )
661 radius = 0;
662 }
663
664 double rsize = userToDeviceSize( radius );
665
666 if( trace_mode == FILLED ) // Plot in filled mode.
667 {
668 // A filled polygon uses always the current point to start the polygon.
669 // Gives a correct current starting point for the circle
670 MoveTo( VECTOR2I( pos.x + radius, pos.y ) );
671
672 // Plot filled area and its outline
674 fmt::format( "PM 0; PA {:.0f},{:.0f};CI {:.0f};{}",
675 pos_dev.x, pos_dev.y, rsize, hpgl_end_polygon_cmd ) );
678 }
679 else
680 {
681 // Draw outline only:
682 startOrAppendItem( pos_dev, fmt::format( "CI {:.0f};", rsize ) );
685 }
686
687 PenFinish();
688}
689
690
691void HPGL_PLOTTER::FlashPadRect( const VECTOR2I& aPos, const VECTOR2I& aPadSize,
692 const EDA_ANGLE& aOrient, OUTLINE_MODE aTraceMode, void* aData )
693{
694 // Build rect polygon:
695 std::vector<VECTOR2I> corners;
696
697 int dx = aPadSize.x / 2;
698 int dy = aPadSize.y / 2;
699
700 if( aTraceMode == FILLED )
701 {
702 // in filled mode, the pen diameter is removed from size
703 // to compensate the extra size due to this pen size
704 dx -= KiROUND( m_penDiameter ) / 2;
705 dx = std::max( dx, 0);
706 dy -= KiROUND( m_penDiameter ) / 2;
707 dy = std::max( dy, 0);
708 }
709
710
711 corners.emplace_back( - dx, - dy );
712 corners.emplace_back( - dx, + dy );
713 corners.emplace_back( + dx, + dy );
714 corners.emplace_back( + dx, - dy );
715
716 // Close polygon
717 corners.emplace_back( - dx, - dy );
718
719 for( unsigned ii = 0; ii < corners.size(); ii++ )
720 {
721 RotatePoint( corners[ii], aOrient );
722 corners[ii] += aPos;
723 }
724
725 PlotPoly( corners, aTraceMode == FILLED ? FILL_T::FILLED_SHAPE : FILL_T::NO_FILL );
726}
727
728
729void HPGL_PLOTTER::FlashPadRoundRect( const VECTOR2I& aPadPos, const VECTOR2I& aSize,
730 int aCornerRadius, const EDA_ANGLE& aOrient,
731 OUTLINE_MODE aTraceMode, void* aData )
732{
733 SHAPE_POLY_SET outline;
734
735 VECTOR2I size = aSize;
736
737 if( aTraceMode == FILLED )
738 {
739 // In filled mode, the pen diameter is removed from size to keep the pad size.
740 size.x -= KiROUND( m_penDiameter ) / 2;
741 size.x = std::max( size.x, 0);
742 size.y -= KiROUND( m_penDiameter ) / 2;
743 size.y = std::max( size.y, 0);
744
745 // keep aCornerRadius to a value < min size x,y < 2:
746 aCornerRadius = std::min( aCornerRadius, std::min( size.x, size.y ) /2 );
747 }
748
749 TransformRoundChamferedRectToPolygon( outline, aPadPos, size, aOrient, aCornerRadius, 0.0, 0,
751
752 // TransformRoundRectToPolygon creates only one convex polygon
753 std::vector<VECTOR2I> cornerList;
754 SHAPE_LINE_CHAIN& poly = outline.Outline( 0 );
755 cornerList.reserve( poly.PointCount() );
756
757 for( int ii = 0; ii < poly.PointCount(); ++ii )
758 cornerList.emplace_back( poly.CPoint( ii ).x, poly.CPoint( ii ).y );
759
760 if( cornerList.back() != cornerList.front() )
761 cornerList.push_back( cornerList.front() );
762
763 PlotPoly( cornerList, aTraceMode == FILLED ? FILL_T::FILLED_SHAPE : FILL_T::NO_FILL );
764}
765
766
767void HPGL_PLOTTER::FlashPadCustom( const VECTOR2I& aPadPos, const VECTOR2I& aSize,
768 const EDA_ANGLE& aOrient, SHAPE_POLY_SET* aPolygons,
769 OUTLINE_MODE aTraceMode, void* aData )
770{
771 std::vector<VECTOR2I> cornerList;
772
773 for( int cnt = 0; cnt < aPolygons->OutlineCount(); ++cnt )
774 {
775 SHAPE_LINE_CHAIN& poly = aPolygons->Outline( cnt );
776
777 cornerList.clear();
778 cornerList.reserve( poly.PointCount() );
779
780 for( int ii = 0; ii < poly.PointCount(); ++ii )
781 cornerList.emplace_back( poly.CPoint( ii ).x, poly.CPoint( ii ).y );
782
783 if( cornerList.back() != cornerList.front() )
784 cornerList.push_back( cornerList.front() );
785
786 PlotPoly( cornerList, aTraceMode == FILLED ? FILL_T::FILLED_SHAPE : FILL_T::NO_FILL );
787 }
788}
789
790
791void HPGL_PLOTTER::FlashPadTrapez( const VECTOR2I& aPadPos, const VECTOR2I* aCorners,
792 const EDA_ANGLE& aPadOrient, OUTLINE_MODE aTraceMode,
793 void* aData )
794{
795 std::vector<VECTOR2I> cornerList;
796 cornerList.reserve( 5 );
797
798 for( int ii = 0; ii < 4; ii++ )
799 {
800 VECTOR2I coord( aCorners[ii] );
801 RotatePoint( coord, aPadOrient );
802 coord += aPadPos;
803 cornerList.push_back( coord );
804 }
805
806 // Close polygon
807 cornerList.push_back( cornerList.front() );
808
809 PlotPoly( cornerList, aTraceMode == FILLED ? FILL_T::FILLED_SHAPE : FILL_T::NO_FILL );
810}
811
812
813void HPGL_PLOTTER::FlashRegularPolygon( const VECTOR2I& aShapePos, int aRadius, int aCornerCount,
814 const EDA_ANGLE& aOrient, OUTLINE_MODE aTraceMode,
815 void* aData )
816{
817 // Do nothing
818 wxASSERT( 0 );
819}
820
821
823{
824 return startOrAppendItem( location );
825}
826
827
829{
830 m_current_item = nullptr;
831}
832
833
834bool HPGL_PLOTTER::startOrAppendItem( const VECTOR2D& location, std::string const& content )
835{
836 if( m_current_item == nullptr )
837 {
838 HPGL_ITEM item;
839 item.loc_start = location;
840 item.loc_end = location;
841 item.bbox = BOX2D( location );
842 item.pen = m_penNumber;
843 item.dashType = m_lineStyle;
844 item.content = content;
845 m_items.push_back( item );
846 m_current_item = &m_items.back();
847 return true;
848 }
849 else
850 {
851 m_current_item->content += content;
852 return false;
853 }
854}
855
856
857void HPGL_PLOTTER::sortItems( std::list<HPGL_ITEM>& items )
858{
859 if( items.size() < 2 )
860 return;
861
862 std::list<HPGL_ITEM> target;
863
864 // Plot items are sorted to improve print time on mechanical plotters. This
865 // means
866 // 1) Avoid excess pen-switching - once a pen is selected, keep printing
867 // with it until no more items using that pen remain.
868 // 2) Within the items for one pen, avoid bouncing back and forth around
869 // the page; items should be sequenced with nearby items.
870 //
871 // This is essentially a variant of the Traveling Salesman Problem where
872 // the cities are themselves edges that must be traversed. This is of course
873 // a famously NP-Hard problem and this particular variant has a monstrous
874 // number of "cities". For now, we're using a naive nearest-neighbor search,
875 // which is less than optimal but (usually!) better than nothing, very
876 // simple to implement, and fast enough.
877 //
878 // Items are moved one at a time from `items` into `target`, searching
879 // each time for the first one matching the above criteria. Then, all of
880 // `target` is moved back into `items`.
881
882 // Get the first one started
883 HPGL_ITEM last_item = items.front();
884 items.pop_front();
885 target.emplace_back( last_item );
886
887 while( !items.empty() )
888 {
889 auto best_it = items.begin();
890 double best_dist = dpoint_dist( last_item.loc_end, best_it->loc_start );
891
892 for( auto search_it = best_it; search_it != items.end(); search_it++ )
893 {
894 // Immediately forget an item as "best" if another one is a better pen match
895 if( best_it->pen != last_item.pen && search_it->pen == last_item.pen )
896 {
897 best_it = search_it;
898 continue;
899 }
900
901 double const dist = dpoint_dist( last_item.loc_end, search_it->loc_start );
902
903 if( dist < best_dist )
904 {
905 best_it = search_it;
906 best_dist = dist;
907 continue;
908 }
909 }
910
911 target.emplace_back( *best_it );
912 last_item = *best_it;
913 items.erase( best_it );
914 }
915
916 items.splice( items.begin(), target );
917}
918
919
921{
922 switch( aLineStyle )
923 {
924 case LINE_STYLE::DASH: return "LT 2 4 1;";
925 case LINE_STYLE::DOT: return "LT 1 1 1;";
926 case LINE_STYLE::DASHDOT: return "LT 4 6 1;";
927 case LINE_STYLE::DASHDOTDOT: return "LT 7 8 1;";
928 default: return "LT;";
929 }
930}
931
932
933static double dpoint_dist( const VECTOR2D& a, const VECTOR2D& b )
934{
935 VECTOR2D diff = a - b;
936 return sqrt( diff.x * diff.x + diff.y * diff.y );
937}
static std::string hpgl_end_polygon_cmd
static const double PLUsPERDECIMIL
static double dpoint_dist(const VECTOR2D &a, const VECTOR2D &b)
Compute the distance between two VECTOR2D points.
@ ERROR_INSIDE
Definition: approximation.h:34
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
Definition: box2.h:990
BOX2< VECTOR2D > BOX2D
Definition: box2.h:923
constexpr coord_type GetY() const
Definition: box2.h:208
constexpr size_type GetWidth() const
Definition: box2.h:214
constexpr coord_type GetX() const
Definition: box2.h:207
constexpr BOX2< Vec > & Merge(const BOX2< Vec > &aRect)
Modify the position and size of the rectangle in order to contain aRect.
Definition: box2.h:658
constexpr size_type GetHeight() const
Definition: box2.h:215
double Sin() const
Definition: eda_angle.h:170
double AsDegrees() const
Definition: eda_angle.h:113
double Cos() const
Definition: eda_angle.h:189
virtual void FlashPadRoundRect(const VECTOR2I &aPadPos, const VECTOR2I &aSize, int aCornerRadius, const EDA_ANGLE &aOrient, OUTLINE_MODE aTraceMode, void *aData) override
HPGL_ITEM * m_current_item
Definition: plotter_hpgl.h:228
virtual void SetDash(int aLineWidth, LINE_STYLE aLineStyle) override
HPGL supports dashed lines.
virtual void SetPenSpeed(int speed)
Definition: plotter_hpgl.h:88
bool startItem(const VECTOR2D &location)
Start a new HPGL_ITEM if necessary, keeping the current one if it exists.
double m_arcTargetChordLength
Definition: plotter_hpgl.h:221
void flushItem()
Flush the current HPGL_ITEM and clear out the current item pointer.
virtual void FlashPadTrapez(const VECTOR2I &aPadPos, const VECTOR2I *aCorners, const EDA_ANGLE &aPadOrient, OUTLINE_MODE aTraceMode, void *aData) override
Flash a trapezoidal pad.
void SetTargetChordLength(double chord_len)
Set the target length of chords used to draw approximated circles and arcs.
virtual void SetPenNumber(int number)
Definition: plotter_hpgl.h:93
static void sortItems(std::list< HPGL_ITEM > &items)
Sort a list of HPGL items to improve plotting speed on mechanical plotters.
virtual void FlashPadCircle(const VECTOR2I &aPadPos, int aDiameter, OUTLINE_MODE aTraceMode, void *aData) override
virtual bool StartPlot(const wxString &aPageNumber) override
At the start of the HPGL plot pen speed and number are requested.
LINE_STYLE m_lineStyle
Definition: plotter_hpgl.h:223
EDA_ANGLE m_arcMinChordDegrees
Definition: plotter_hpgl.h:222
virtual void SetCurrentLineWidth(int width, void *aData=nullptr) override
HPGL doesn't handle line thickness or color.
Definition: plotter_hpgl.h:75
virtual void FlashRegularPolygon(const VECTOR2I &aShapePos, int aDiameter, int aCornerCount, const EDA_ANGLE &aOrient, OUTLINE_MODE aTraceMode, void *aData) override
Flash a regular polygon.
virtual void PlotPoly(const std::vector< VECTOR2I > &aCornerList, FILL_T aFill, int aWidth=USE_DEFAULT_LINE_WIDTH, void *aData=nullptr) override
Draw a polygon ( filled or not ).
static const char * lineStyleCommand(LINE_STYLE aLineStyle)
Return the plot command corresponding to a line type.
virtual void Rect(const VECTOR2I &p1, const VECTOR2I &p2, FILL_T aFill, int aWidth=USE_DEFAULT_LINE_WIDTH) override
virtual void SetViewport(const VECTOR2I &aOffset, double aIusPerDecimil, double aScale, bool aMirror) override
Set the plot offset and scaling for the current plot.
bool m_useUserCoords
Definition: plotter_hpgl.h:224
std::list< HPGL_ITEM > m_items
Definition: plotter_hpgl.h:227
virtual void FlashPadCustom(const VECTOR2I &aPadPos, const VECTOR2I &aSize, const EDA_ANGLE &aOrient, SHAPE_POLY_SET *aPolygons, OUTLINE_MODE aTraceMode, void *aData) override
virtual void SetPenDiameter(double diameter)
virtual void FlashPadOval(const VECTOR2I &aPadPos, const VECTOR2I &aSize, const EDA_ANGLE &aPadOrient, OUTLINE_MODE aTraceMode, void *aData) override
bool startOrAppendItem(const VECTOR2D &location, const std::string &content="")
Start a new HPGL_ITEM with the given string if necessary, or append the string to the current item.
double m_penDiameter
Definition: plotter_hpgl.h:220
virtual void Arc(const VECTOR2D &aCenter, const EDA_ANGLE &aStartAngle, const EDA_ANGLE &aAngle, double aRadius, FILL_T aFill, int aWidth=USE_DEFAULT_LINE_WIDTH) override
Plot an arc.
virtual void PenTo(const VECTOR2I &pos, char plume) override
Moveto/lineto primitive, moves the 'pen' to the specified direction.
bool m_fitUserCoords
Definition: plotter_hpgl.h:225
virtual void ThickSegment(const VECTOR2I &start, const VECTOR2I &end, int width, OUTLINE_MODE tracemode, void *aData) override
virtual void Circle(const VECTOR2I &aCenter, int aDiameter, FILL_T aFill, int aWidth=USE_DEFAULT_LINE_WIDTH) override
virtual bool EndPlot() override
HPGL end of plot: sort and emit graphics, pen return and release.
virtual void FlashPadRect(const VECTOR2I &aPadPos, const VECTOR2I &aSize, const EDA_ANGLE &aOrient, OUTLINE_MODE aTraceMode, void *aData) override
const VECTOR2D & GetSizeMils() const
Definition: page_info.h:144
PAGE_INFO m_pageInfo
Definition: plotter.h:682
bool m_plotMirror
Definition: plotter.h:662
static const int USE_DEFAULT_LINE_WIDTH
Definition: plotter.h:109
virtual void polyArc(const VECTOR2D &aCentre, const EDA_ANGLE &aStartAngle, const EDA_ANGLE &aAngle, double aRadius, FILL_T aFill, int aWidth=USE_DEFAULT_LINE_WIDTH)
Generic fallback: arc rendered as a polyline.
Definition: plotter.cpp:181
void MoveTo(const VECTOR2I &pos)
Definition: plotter.h:247
void FinishTo(const VECTOR2I &pos)
Definition: plotter.h:257
double m_iuPerDeviceUnit
Definition: plotter.h:659
VECTOR2I m_plotOffset
Definition: plotter.h:661
VECTOR2I m_penLastpos
Definition: plotter.h:675
virtual VECTOR2D userToDeviceCoordinates(const VECTOR2I &aCoordinate)
Modify coordinates according to the orientation, scale factor, and offsets trace.
Definition: plotter.cpp:91
VECTOR2I m_paperSize
Definition: plotter.h:683
virtual VECTOR2D userToDeviceSize(const VECTOR2I &size)
Modify size according to the plotter scale factors (VECTOR2I version, returns a VECTOR2D).
Definition: plotter.cpp:116
void sketchOval(const VECTOR2I &aPos, const VECTOR2I &aSize, const EDA_ANGLE &aOrient, int aWidth)
Definition: plotter.cpp:500
int GetPlotterArcHighDef() const
Definition: plotter.h:212
char m_penState
Definition: plotter.h:674
double m_plotScale
Plot scale - chosen by the user (even implicitly with 'fit in a4')
Definition: plotter.h:651
FILE * m_outputFile
Output file.
Definition: plotter.h:668
void LineTo(const VECTOR2I &pos)
Definition: plotter.h:252
void PenFinish()
Definition: plotter.h:263
void segmentAsOval(const VECTOR2I &start, const VECTOR2I &end, int width, OUTLINE_MODE tracemode)
Convert a thick segment and plot it as an oval.
Definition: plotter.cpp:485
double m_IUsPerDecimil
Definition: plotter.h:657
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
int PointCount() const
Return the number of points (vertices) in this line chain.
const VECTOR2I & CPoint(int aIndex) const
Return a reference to a given point in the line chain.
Represent a set of closed polygons.
SHAPE_LINE_CHAIN & Outline(int aIndex)
Return the reference to aIndex-th outline in the set.
int OutlineCount() const
Return the number of outlines in the set.
void TransformRoundChamferedRectToPolygon(SHAPE_POLY_SET &aBuffer, const VECTOR2I &aPosition, const VECTOR2I &aSize, const EDA_ANGLE &aRotation, int aCornerRadius, double aChamferRatio, int aChamferCorners, int aInflate, int aError, ERROR_LOC aErrorLoc)
Convert a rectangle with rounded corners and/or chamfered corners to a polygon.
static constexpr EDA_ANGLE ANGLE_90
Definition: eda_angle.h:403
@ DEGREES_T
Definition: eda_angle.h:31
static constexpr EDA_ANGLE ANGLE_45
Definition: eda_angle.h:402
static constexpr EDA_ANGLE ANGLE_360
Definition: eda_angle.h:407
@ SOLID
Definition: eda_shape.h:70
FILL_T
Definition: eda_shape.h:56
static const bool FILLED
Definition: gr_basic.cpp:30
EDA_ANGLE abs(const EDA_ANGLE &aAngle)
Definition: eda_angle.h:390
OUTLINE_MODE
Definition: outline_mode.h:25
Plotting engine (HPGL)
LINE_STYLE
Dashed line types.
Definition: stroke_params.h:46
bool pen_returns
Whether the pen returns to its original state after the command.
Definition: plotter_hpgl.h:202
BOX2D bbox
Bounding box of this item.
Definition: plotter_hpgl.h:190
LINE_STYLE dashType
Pen number for this command.
Definition: plotter_hpgl.h:205
bool lift_after
Whether the pen must be lifted after the command.
Definition: plotter_hpgl.h:198
std::string content
Line style for this command.
Definition: plotter_hpgl.h:206
bool lift_before
Whether the command should be executed with the pen lifted.
Definition: plotter_hpgl.h:193
VECTOR2D loc_start
Location the pen should start at.
Definition: plotter_hpgl.h:183
VECTOR2D loc_end
Location the pen will be at when it finishes.
Definition: plotter_hpgl.h:187
int radius
VECTOR2I end
VECTOR2I location
void RotatePoint(int *pX, int *pY, const EDA_ANGLE &aAngle)
Calculate the new point of coord coord pX, pY, for a rotation center 0, 0.
Definition: trigo.cpp:229
VECTOR2< int32_t > VECTOR2I
Definition: vector2d.h:695
VECTOR2< double > VECTOR2D
Definition: vector2d.h:694