1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687
|
/*
VeroRoute - Qt based Veroboard/Perfboard/PCB layout & routing application.
Copyright (C) 2017 Alex Lawrow ( dralx@users.sourceforge.net )
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "Version.h"
#include "Board.h"
#include "GWriter.h"
#include <QPolygonF>
#include <QFileDialog>
#include <QTimeZone>
#include <QtGlobal>
Q_DECL_CONSTEXPR static const bool FULL_LINE = false; // Set to true to force each Gerber line to be written in long format
Q_DECL_CONSTEXPR static const bool XNC_FORMAT = true; // true ==> XNC Format, false ==> Excellon Format 1 or 2
Q_DECL_CONSTEXPR static const bool EXCELLON2_FORMAT = true; // true ==> Excellon Format 2, false ==> Excellon Format 1. Ignored if XNC_FORMAT.
// Wrapper for a stream to a Gerber file
void GStream::Clear()
{
m_eType = GFILE::GBL;
m_ePen = GPEN::NONE;
m_penWidth = 0;
m_ePenList.clear();
m_ePolarity = GPOLARITY::UNKNOWN;
m_pBoard = nullptr;
m_bVias = false;
m_iLastX = INT_MAX;
m_iLastY = INT_MAX;
m_bMetric = false;
ClearBuffers(false); // false ==> skip GetOK() checks
}
void GStream::Close()
{
if ( m_file.isOpen() )
m_file.close();
}
bool GStream::Open(const QString& fileName, GFILE eType, bool bMetric, const Board& board, bool bVias, bool bSOIC, bool bSOIC16, bool bConfirmEachFile)
{
Clear();
m_eType = eType;
m_bMetric = bMetric;
m_pBoard = &board;
m_bVias = bVias;
m_bSOIC = bSOIC;
m_bSOIC16 = bSOIC16;
QString str(fileName);
QString suffix;
switch( m_eType )
{
case GFILE::GKO: suffix = ".GKO"; break;
case GFILE::GBL: suffix = ".GBL"; break;
case GFILE::GBS: suffix = ".GBS"; break;
case GFILE::GBO: suffix = ".GBO"; break;
case GFILE::GTL: suffix = ".GTL"; break;
case GFILE::GTS: suffix = ".GTS"; break;
case GFILE::GTO: suffix = ".GTO"; break;
case GFILE::DRL: suffix = ".DRL"; break;
}
str += suffix;
if ( bConfirmEachFile )
{
// Ask user to confirm each Gerber file (to get write permission from Android)
str = StringHelper::GetTidyFileName(str);
QFileDialog fileDialog(nullptr, str);
fileDialog.setAcceptMode(QFileDialog::AcceptSave);
fileDialog.setNameFilter(suffix);
fileDialog.setDefaultSuffix(suffix);
if ( fileDialog.exec() )
{
QStringList fileNames = fileDialog.selectedFiles();
if ( !fileNames.isEmpty() ) str = fileNames.at(0);
}
}
m_file.setFileName( str ) ;
const bool bOK = m_file.open(QIODevice::WriteOnly);
if ( m_file.isOpen() )
m_os.setDevice(&m_file);
return bOK;
}
void GStream::WriteHeader(const QString& UTC) // Write header for current stream
{
if ( !m_file.isOpen() ) return;
assert( m_pBoard->GetGRIDPIXELS() == 1000 ); // ==> 4 decimal places per inch
QString strLayer = "Layer: ";
QString strProgram = "VeroRoute V" + QString(szVEROROUTE_VERSION);
QString strUTC = QString::fromStdString( UTC.toStdString() );
QString strGen = QString("Gerber Generator version 1.1");
switch(m_eType)
{
case GFILE::GKO: strLayer += "BoardOutline"; break;
case GFILE::GBL: strLayer += "BottomLayer"; break;
case GFILE::GBS: strLayer += "BottomSolderMaskLayer"; break;
case GFILE::GBO: strLayer += "BottomSilkLayer"; break;
case GFILE::GTL: strLayer += "TopLayer"; break;
case GFILE::GTS: strLayer += "TopSolderMaskLayer"; break;
case GFILE::GTO: strLayer += "TopSilkLayer"; break;
case GFILE::DRL: strLayer += ( m_pBoard->GetHoleType() == HOLETYPE::PTH ) ? "Drill_PTH" : "Drill_NPTH"; break;
}
Comment(strLayer);
Comment(strProgram);
Comment(strUTC);
Comment(strGen);
if ( m_eType == GFILE::DRL )
{
m_os << "M48"; EndLine(); // M48 is start of header
if ( m_bMetric )
{
m_os << "METRIC"; // Millimetres // Excellon only lists 3.2, 4.2, or 3.3 metric formats (so 4.6 format can only work for XNC format) !!!
if ( !XNC_FORMAT ) m_os << ",LZ,0000.000000"; // Leading zeros INCLUDED. 4 integer and 6 decimal
EndLine();
}
else
{
m_os << "INCH"; // Inches
if ( !XNC_FORMAT ) m_os << ",LZ,00.0000"; // Leading zeros INCLUDED. 2 integer and 4 decimal
EndLine();
}
MakeDrills();
m_os << "%"; EndLine(); // Rewind Stop. Often used instead of M95 for end of header.
m_os << ( XNC_FORMAT || EXCELLON2_FORMAT ? "G05" : "G81" ); EndLine(); // Turn on drill
if ( !XNC_FORMAT ) { m_os << "G90"; EndLine(); } // Absolute mode
}
else
{
Comment("Scale: 100 percent, Rotated: No, Reflected: No");
if ( m_bMetric )
{
Comment("Dimensions in mm");
Comment("Leading zeros omitted, Absolute positions, 4 integer and 6 decimal");
m_os << "%MOMM*%"; QtEndline(); // MOMM ==> Millimetres
m_os << "%FSLAX46Y46*%"; QtEndline();
}
else
{
Comment("Dimensions in inches");
Comment("Leading zeros omitted, Absolute positions, 2 integer and 4 decimal");
m_os << "%MOIN*%"; QtEndline(); // MOIN ==> Inches
m_os << "%FSLAX24Y24*%"; QtEndline();
}
MakeApertures();
}
LinearInterpolation();
SetPolarity(GPOLARITY::DARK, false); // false ==> skip GetOK() checks
}
void GStream::WriteFooter()
{
if ( !m_file.isOpen() ) return;
switch( m_eType )
{
case GFILE::DRL: m_os << "M30"; EndLine(); return; // End of file
default: m_os << "M02"; EndLine(); return; // End of file
}
}
void GStream::MakeDrills()
{
assert( m_file.isOpen() && m_eType == GFILE::DRL );
int holeDefault; // Default hole width
std::list<int> holes; m_pBoard->GetHoleWidths_MIL(holes, holeDefault);
const int viahole = m_pBoard->GetVIAHOLE_MIL();
// Build drill list
int code = 1; // Start with drill T01
for (const auto& hole : holes)
m_ePenList.push_back( GPenInfo(GPEN::PAD_HLE, hole, code++, "Pad Hole = ", hole != holeDefault) );
if ( m_bVias )
m_ePenList.push_back( GPenInfo(GPEN::VIA_HLE, viahole, code++, "Via Hole = ") );
// Write drill list to file
const bool bLZ( !XNC_FORMAT ); // true ==> Include leading zeros
for (const auto& o : m_ePenList)
{
QString codeStr("T");
if ( o.m_iCode < 10 ) codeStr += "0"; // Add leading zero
codeStr += QString::fromStdString( std::to_string(o.m_iCode) );
if ( m_bMetric )
{
m_os << ";" << o.m_comment << MilToMM(o.m_iWidth, bLZ) << " MM"; EndLine();
m_os << codeStr << "C" << MilToMM(o.m_iWidth, bLZ); EndLine();
}
else
{
m_os << ";" << o.m_comment << MilToInch(o.m_iWidth, bLZ) << " INCH"; EndLine();
m_os << codeStr << "C" << MilToInch(o.m_iWidth, bLZ); EndLine();
}
}
}
void GStream::MakeApertures() // Make "pens" for current stream
{
assert( m_file.isOpen() && m_eType != GFILE::DRL);
int padDefault; // Default pad width
std::list<int> pads; m_pBoard->GetPadWidths_MIL(pads, padDefault);
const int via = m_pBoard->GetVIAPAD_MIL();
const int trk = m_pBoard->GetTRACK_MIL();
const int tag = m_pBoard->GetTAG_MIL();
const int gap = m_pBoard->GetGAP_MIL();
const int msk = m_pBoard->GetMASK_MIL();
const int slk = m_pBoard->GetSILK_MIL();
const int gko = 10; // Draw border in 10 mil pen
const int trkIC = m_pBoard->GetTRACK_IC_MIL();
const int minIC = m_pBoard->GetMIN_IC_MIL();
// Build aperture list
int code = 10; // Start with aperture D10
switch( m_eType )
{
case GFILE::GKO:
m_ePenList.push_back( GPenInfo(GPEN::GKO, gko, code++, "") );
break;
case GFILE::GBL:
case GFILE::GTL:
for (const auto& pad : pads)
m_ePenList.push_back( GPenInfo(GPEN::PAD, pad, code++, " is for pads", pad != padDefault) );
if ( m_bVias )
m_ePenList.push_back( GPenInfo(GPEN::VIA, via, code++, " is for via-pads") );
if ( true )
m_ePenList.push_back( GPenInfo(GPEN::TRK, trk, code++, " is for tracks") );
if ( true )
m_ePenList.push_back( GPenInfo(GPEN::TAG, tag, code++, " is for tracks") );
if ( m_eType == GFILE::GTL && m_bSOIC )
{
m_ePenList.push_back( GPenInfo(GPEN::TRK_IC, trkIC, code++, " is for SOIC tracks") );
if ( m_bSOIC16 )
m_ePenList.push_back( GPenInfo(GPEN::MIN_IC, minIC, code++, " is for thin SOIC tracks") );
}
// Ground fill pens ...
if ( !m_pBoard->GetGroundFill() ) break;
for (const auto& pad : pads)
m_ePenList.push_back( GPenInfo(GPEN::PAD_GAP, pad + 2 * gap, code++, " is for separating pads from fill", pad != padDefault) );
if ( m_bVias )
m_ePenList.push_back( GPenInfo(GPEN::VIA_GAP, via + 2 * gap, code++, " is for separating via-pads from fill") );
if ( true )
m_ePenList.push_back( GPenInfo(GPEN::TRK_GAP, trk + 2 * gap, code++, " is for separating tracks from fill") );
if ( m_eType == GFILE::GTL && m_bSOIC )
{
m_ePenList.push_back( GPenInfo(GPEN::TRK_IC_GAP, trkIC + 2 * gap, code++, " is for separating SOIC tracks from fill") );
if ( m_bSOIC16 )
m_ePenList.push_back( GPenInfo(GPEN::MIN_IC_GAP, minIC + 2 * gap, code++, " is for separating thin SOIC tracks from fill") );
}
break;
case GFILE::GBS:
case GFILE::GTS:
for (const auto& pad : pads)
m_ePenList.push_back( GPenInfo(GPEN::PAD_MSK, pad + 2 * msk, code++, " is for pads", pad != padDefault) );
if ( m_bVias )
m_ePenList.push_back( GPenInfo(GPEN::VIA_MSK, via + 2 * msk, code++, " is for via-pads") );
break;
case GFILE::GTO:
case GFILE::GBO:
m_ePenList.push_back( GPenInfo(GPEN::SLK, slk, code++, "") );
break;
case GFILE::DRL: break;
}
// Write aperture list to file
for (const auto& o : m_ePenList)
{
QString codeStr("D");
assert(o.m_iCode >= 10);
if ( o.m_iCode < 10 ) codeStr += "0"; // Add leading zero
codeStr += QString::fromStdString( std::to_string(o.m_iCode) );
if ( !o.m_comment.isEmpty() )
{
QString str = "Aperture " + codeStr + o.m_comment;
Comment( str );
}
if ( m_bMetric )
m_os << "%AD" << codeStr << "C," << MilToMM(o.m_iWidth) << "*%";
else
m_os << "%AD" << codeStr << "C," << MilToInch(o.m_iWidth) << "*%";
QtEndline();
}
}
void GStream::LinearInterpolation()
{
if ( !m_file.isOpen() || m_eType == GFILE::DRL ) return;
m_os << "G01";
EndLine();
}
void GStream::Comment(const QString& str)
{
if ( !m_file.isOpen() ) return;
if ( m_eType == GFILE::DRL )
m_os << ";" << str;
else
m_os << "G04 " << str << " ";
EndLine();
}
void GStream::EndLine()
{
if ( !m_file.isOpen() ) return;
if ( m_eType != GFILE::DRL )
m_os << "*";
QtEndline();
}
void GStream::QtEndline()
{
if ( !m_file.isOpen() ) return;
#if QT_VERSION >= QT_VERSION_CHECK(5,14,0)
m_os << Qt::endl;
#else
m_os << endl;
#endif
}
bool GStream::GetOK() const
{
if ( m_pBoard == nullptr ) return false;
switch( m_eType )
{
case GFILE::GKO: return m_pBoard->GetCurrentLayer() == 0;
case GFILE::GBL: return m_pBoard->GetCurrentLayer() == 0 || m_pBoard->GetLyrs() == 1;
case GFILE::GBS: return m_pBoard->GetCurrentLayer() == 0 || m_pBoard->GetLyrs() == 1;
case GFILE::GBO: return m_pBoard->GetCurrentLayer() == 0 || m_pBoard->GetLyrs() == 1;
case GFILE::GTL: return m_pBoard->GetCurrentLayer() == 1 || m_pBoard->GetLyrs() == 1;
case GFILE::GTS: return m_pBoard->GetCurrentLayer() == 1 || m_pBoard->GetLyrs() == 1;
case GFILE::GTO: return m_pBoard->GetCurrentLayer() == 1 || m_pBoard->GetLyrs() == 1;
default: return m_pBoard->GetCurrentLayer() == 0 && m_eType == GFILE::DRL;
}
}
void GStream::SetPolarity(GPOLARITY ePolarity, bool bCheckOK)
{
if ( !m_file.isOpen() || m_ePolarity == ePolarity || m_eType == GFILE::DRL ) return;
if ( bCheckOK && !GetOK() ) return;
m_ePolarity = ePolarity;
switch( m_ePolarity )
{
case GPOLARITY::UNKNOWN: return;
case GPOLARITY::DARK: m_os << "%LPD*%"; QtEndline(); return;
case GPOLARITY::CLEAR: m_os << "%LPC*%"; QtEndline(); return;
}
}
void GStream::Drill(const QPoint& p)
{
if ( !GetOK() || !m_file.isOpen() || m_eType != GFILE::DRL ) return;
m_os << "X"; WriteDrillOrdinate( p.x() );
m_os << "Y"; WriteDrillOrdinate( p.y() );
QtEndline();;
}
void GStream::AddPad(const QPointF& pF, GPEN ePen, int w) // Add to m_pads buffer for later writing to file
{
if ( !GetOK() ) return;
QPoint p;
GetQPoint(pF, p);
m_pads.push_back( new Curve(p, ePen, w) );
}
void GStream::AddViaPad(const QPointF& pF, GPEN ePen) // Add to m_viapads buffer for later writing to file
{
if ( !GetOK() ) return;
QPoint p;
GetQPoint(pF, p);
m_viapads.push_back( new Curve(p, ePen) );
}
void GStream::AddTrack(const QPolygonF& pF, GPEN ePen) // Add to m_tracks buffer for later writing to file
{
if ( !GetOK() ) return;
QPolygon p;
GetQPolygon(pF, p);
m_tracks.push_back( new Curve(p, ePen) );
}
void GStream::AddVariTrack(const QPolygonF& pF, GPEN ePenHV, GPEN ePen) // Add to m_tracks buffer for later writing to file
{
if ( !GetOK() ) return;
QPolygon p;
GetQPolygon(pF, p);
QPolygon temp;
auto A = p.cbegin();
auto B = A; ++B;
for (; B != p.cend(); A++, B++)
{
temp.clear();
temp << *A << *B;
const bool bHV = ( A->x() == B->x() || A->y() == B->y() );
m_tracks.push_back( new Curve(temp, bHV ? ePenHV : ePen) );
}
}
void GStream::AddLoop(const QPolygonF& pF, GPEN ePen) // Add to m_loops buffer for later writing to file
{
if ( !GetOK() ) return;
assert( pF.size() >= 3 );
if ( pF.size() < 3 ) return; // Loop must have at least 3 points
QPolygon p;
GetQPolygon(pF, p);
m_loops.push_back( new Curve(p, ePen) );
}
void GStream::AddRegion(const QPolygonF& pF) // Add to m_regions buffer for later writing to file
{
if ( !GetOK() ) return;
assert( pF.size() >= 3 );
if ( pF.size() < 3 ) return; // Region must have at least 3 points
QPolygon p;
GetQPolygon(pF, p);
m_regions.push_back( new Curve(p, GPEN::NONE) );
}
void GStream::AddHole(const QPointF& pF, GPEN ePen, int w) // Add to m_holes buffer for later writing to file
{
if ( !GetOK() ) return;
QPoint p;
GetQPoint(pF, p);
m_holes.push_back( new Curve(p, ePen, w) );
}
void GStream::ClearBuffers(bool bCheckOK)
{
if ( bCheckOK && !GetOK() ) return;
m_pads.Clear();
m_viapads.Clear();
m_tracks.Clear();
m_loops.Clear();
m_regions.Clear();
m_holes.Clear();
}
void GStream::DrawBuffers()
{
if ( !GetOK() ) return;
m_regions.Sort();
m_loops.Sort();
m_tracks.SpliceAll(); // Includes a Sort(). Only tracks (not loops) are spliced
m_pads.Sort();
m_viapads.Sort();
m_holes.Sort();
for (const auto& o : m_regions) Region(*o);
for (const auto& o : m_loops) OutLine(*o, true); // true ==> closed
for (const auto& o : m_tracks) OutLine(*o, false); // false ==> not closed
for (const auto& o : m_pads) OutLine(*o, false); // false ==> not closed
for (const auto& o : m_viapads) OutLine(*o, false); // false ==> not closed
for (const auto& o : m_holes) OutLine(*o, false); // false ==> not closed
}
void GStream::Region(const Curve& curve) // A filled closed curve (with zero width pen)
{
if ( !m_file.isOpen() || m_eType == GFILE::DRL ) return;
assert( curve.m_ePen == GPEN::NONE );
if ( curve.size() < 3 ) return; // Region must have >= 3 points
m_os << "G36"; EndLine(); // "Begin region"
OutLine(curve, true); // true ==> force close
m_os << "G37"; EndLine(); // "End region"
}
void GStream::OutLine(const Curve& curve, bool bForceClose) // Outline of a curve
{
if ( curve.empty() ) return;
SetPen(curve.m_ePen, curve.m_width);
const size_t N = curve.size();
if ( N == 1 ) return Flash( curve.front() );
if ( N == 2 ) return Line( curve.front(), curve.back() );
const auto& front = curve.front();
Move(front); // Move pen to start of curve
auto iter = curve.begin(); ++iter;
for (auto iterEnd = curve.end(); iter != iterEnd; ++iter)
Draw(*iter); // Draw line to next point in curve
if ( bForceClose && front != curve.back() ) Draw( front );
}
void GStream::SetPen(GPEN ePen, int w)
{
if ( !m_file.isOpen() ) return;
assert( m_pBoard );
int penWidth(w);
const bool bCustom = ( penWidth != 0 );
if ( bCustom )
{
switch( ePen )
{
case GPEN::PAD:
case GPEN::PAD_HLE: break;
case GPEN::PAD_GAP: penWidth += 2 * m_pBoard->GetGAP_MIL(); break;
case GPEN::PAD_MSK: penWidth += 2 * m_pBoard->GetMASK_MIL(); break;
default: assert(0); // Only pads support variable width at the moment
}
}
if ( m_ePen == ePen && m_penWidth == penWidth ) return; // No change
m_ePen = ePen;
m_penWidth = penWidth;
if ( m_ePen == GPEN::NONE ) return;
for (const auto& o : m_ePenList)
{
if ( o.m_ePen == ePen && ( o.m_iWidth == penWidth || ( !bCustom && !o.m_bCustom ) ) )
{
m_os << ( m_eType == GFILE::DRL ? "T" : "D" );
if ( o.m_iCode < 10 ) m_os << "0"; // Add leading zero
m_os << o.m_iCode; EndLine();
return;
}
}
assert(0); // No such pen
}
void GStream::Flash(const QPoint& p)
{
if ( !m_file.isOpen() ) return;
if ( m_eType == GFILE::DRL ) return Drill(p);
WriteXY(p, FULL_LINE);
m_os << "D03"; // Always specify D03 code
EndLine();
}
void GStream::Move(const QPoint& p)
{
if ( !m_file.isOpen() || m_eType == GFILE::DRL ) return;
if ( m_iLastX == p.x() && m_iLastY == p.y() ) return;
WriteXY(p, FULL_LINE);
m_os << "D02"; // Always specify D02 code
EndLine();
}
void GStream::Draw(const QPoint& p)
{
if ( !m_file.isOpen() || m_eType == GFILE::DRL ) return;
if ( m_iLastX == p.x() && m_iLastY == p.y() ) return;
WriteXY(p, FULL_LINE);
m_os << "D01"; // Always specify D01 code
EndLine();
}
void GStream::Line(const QPoint& pA, const QPoint& pB)
{
Move(pA);
Draw(pB);
}
void GStream::WriteXY(const QPoint& p, bool bFullLine)
{
// p has deciMil units (since GRIDPIXELS == 1000 for Gerber Export)
if ( !m_file.isOpen() ) return;
const int ix = ( m_bMetric ) ? ( 2540 * p.x() ) : p.x(); // metric ==> convert deciMil to nanometres
const int iy = ( m_bMetric ) ? ( 2540 * p.y() ) : p.y(); // metric ==> convert deciMil to nanometres
if ( bFullLine || m_iLastX != p.x() ) m_os << "X" << ix;
if ( bFullLine || m_iLastY != p.y() ) m_os << "Y" << iy;
m_iLastX = p.x();
m_iLastY = p.y();
}
void GStream::WriteDrillOrdinate(int iDeciMils)
{
if ( !m_file.isOpen() || m_eType != GFILE::DRL ) return;
m_os << ( iDeciMils >= 0 ? "+" : "-" ); // Write sign
if ( XNC_FORMAT )
{
if ( m_bMetric )
m_os << MilToMM(iDeciMils/10, false); // false ==> no leading zeros
else
m_os << MilToInch(iDeciMils/10, false); // false ==> no leading zeros
return;
}
if ( m_bMetric ) // Writes mm in format AAAABBBBBB
{
// Millimetres in 4.6 format, 1 deciMil = 0000.002540 mm
const int iAbs = abs(2540 * iDeciMils); // Absolute value in nanometres
if ( iAbs < 1000000000 ) m_os << "0";
if ( iAbs < 100000000 ) m_os << "0";
if ( iAbs < 10000000 ) m_os << "0";
if ( iAbs < 1000000 ) m_os << "0";
if ( iAbs < 100000 ) m_os << "0";
if ( iAbs < 10000 ) m_os << "0";
if ( iAbs < 1000 ) m_os << "0";
if ( iAbs < 100 ) m_os << "0";
if ( iAbs < 10 ) m_os << "0";
m_os << iAbs;
}
else // Writes inches in format AABBBB
{
// Inches in 2.4 format, 1 deciMil = 00.0001 inches
const int iAbs = abs(iDeciMils); // Absolute value in deciMil
if ( iAbs < 100000 ) m_os << "0";
if ( iAbs < 10000 ) m_os << "0";
if ( iAbs < 1000 ) m_os << "0";
if ( iAbs < 100 ) m_os << "0";
if ( iAbs < 10 ) m_os << "0";
m_os << iAbs;
}
}
QString GStream::MilToInch(int iMil, bool bLZ) const // Get inches in format AA.BBBB (for defining drills and apertures)
{
QString str;
const int i = iMil * 10; // deciMil
const int inches = i / 10000;
const int remain = i - 10000 * inches;
assert( inches < 100 && remain < 10000 ); // i.e. AA.BBBB
if ( bLZ && inches < 10 ) str += "0"; // bLZ ==> Add leading zeros
str += QString::fromStdString( std::to_string(inches) + "." );
if ( remain < 1000 ) str += "0";
if ( remain < 100 ) str += "0";
if ( remain < 10 ) str += "0";
str += QString::fromStdString( std::to_string(remain) );
return str;
}
QString GStream::MilToMM(int iMil, bool bLZ) const // Get mm in format AAAA.BBBBBB (for defining drills and apertures)
{
QString str;
const int i = iMil * 25400; // nanometres
const int mm = i / 1000000;
const int remain = i - 1000000 * mm;
assert( mm < 10000 && remain < 1000000 ); // i.e. AAAA.BBBBBB
if ( bLZ && mm < 1000 ) str += "0"; // bLZ ==> Add leading zeros
if ( bLZ && mm < 100 ) str += "0"; // bLZ ==> Add leading zeros
if ( bLZ && mm < 10 ) str += "0"; // bLZ ==> Add leading zeros
str += QString::fromStdString( std::to_string(mm) + "." );
if ( remain < 100000 ) str += "0";
if ( remain < 10000 ) str += "0";
if ( remain < 1000 ) str += "0";
if ( remain < 100 ) str += "0";
if ( remain < 10 ) str += "0";
str += QString::fromStdString( std::to_string(remain) );
return str;
}
void GStream::GetQPoint(const QPointF& in, QPoint& out) const
{
// GRIDPIXELS == 100 means each integer ordinate is 1 mil
assert( m_pBoard && m_pBoard->GetGRIDPIXELS() == 1000 ); // Confirm each integer ordinate == 0.0001 inches
int gndL, gndR, gndT, gndB;
m_pBoard->GetGroundFillBounds(gndL, gndR, gndT, gndB);
const int iEdge = static_cast<int>( m_pBoard->GetEdgeWidth() );
const int iHeight(gndB - gndT + (iEdge<<1));
out.setX( static_cast<int>(in.x()) );
out.setY( iHeight - static_cast<int>(in.y()) ); // Gerber y-axis goes up screen
}
void GStream::GetQPolygon(const QPolygonF& in, QPolygon& out) const
{
out.resize( in.size() );
for (int i = 0, iSize = in.size(); i < iSize; i++) GetQPoint(in[i], out[i]);
}
// Wrapper for handling a set of Gerber files
bool GWriter::Open(const QString& fileName, const Board& board, bool bVias, bool bSOIC, bool bSOIC16, bool bTwoLayerGerber, bool bMetric, bool bConfirmEachFile)
{
QDateTime local(QDateTime::currentDateTime());
QString UTC = local.toTimeSpec(Qt::UTC).toString(Qt::ISODate);
// Open all Gerber files for writing
bool bOK(!fileName.isEmpty());
for (int i = 0; i < NUM_STREAMS && bOK; i++)
{
if ( GFILE(i) == GFILE::GBO ) continue; // Don't write this layer yet
// Produce all files (even for single layer export).
// Files that are not needed will be empty. This is to avoid zombie files.
// e.g. User does 2 layer export, then later does single layer export with the same Gerber prefix.
// We want the second export to wipe the GTL and GTS data from the first export.
bool bDoFileClose(false);
// For single layer export, we'll open the GTL and GTS files, then immediately close them so nothing will be written to them.
if ( GFILE(i) == GFILE::GTL ) bDoFileClose = !bTwoLayerGerber;
if ( GFILE(i) == GFILE::GTS ) bDoFileClose = !bTwoLayerGerber;
bOK = m_os[i].Open(fileName, GFILE(i), bMetric, board, bVias, bSOIC, bSOIC16, bConfirmEachFile);
if ( bDoFileClose )
m_os[i].Close();
else
m_os[i].WriteHeader(UTC);
}
if ( !bOK ) Close();
return bOK;
}
void GWriter::Close() // Write footers, and close all file streams
{
for (int i = 0; i < NUM_STREAMS; i++)
{
m_os[i].WriteFooter();
m_os[i].Close();
}
}
GStream& GWriter::GetStream(GFILE eType)
{
return m_os[static_cast<size_t>(eType)];
}
|