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
|
/*
* This file is part of pcb2gcode.
*
* Copyright (C) 2009, 2010 Patrick Birnzain <pbirnzain@users.sourceforge.net>
*
* pcb2gcode 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.
*
* pcb2gcode 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 pcb2gcode. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef DRILL_H
#define DRILL_H
#include <map>
using std::map;
#include <string>
using std::string;
#include <vector>
using std::vector;
#include <map>
using std::map;
#include <boost/shared_ptr.hpp>
using boost::shared_ptr;
extern "C" {
#include <gerbv.h>
}
#include "coord.hpp"
#include <boost/exception/all.hpp>
class drill_exception : virtual std::exception, virtual boost::exception {};
#include "mill.hpp"
#include "svg_exporter.hpp"
class drillbit
{
public:
double diameter;
string unit;
int drill_count;
};
//! Reads Excellon drill files and directly creates RS274-NGC gcode output.
/*! While we could easily add different input and output formats for the layerfiles
* to pcb2gcode, i've decided to ditch the importer/exporter scheme here.
* We'll very likely not encounter any drill files that gerbv can't read, and
* still rather likely never export to anything other than a ngc g-code file.
* Also, i'm lazy, and if I turn out to be wrong splitting the code won't be much effort anyway.
*/
class ExcellonProcessor
{
public:
ExcellonProcessor( const string drillfile, const ivalue_t board_width );
~ExcellonProcessor();
void add_header( string );
void set_preamble(string);
void set_postamble(string);
//SVG EXPORTER
void set_svg_exporter( shared_ptr<SVG_Exporter> svgexpo );
void export_ngc( const string of_name, shared_ptr<Driller> target, bool mirrored, bool mirror_absolute );
void export_ngc( const string of_name, shared_ptr<Cutter> target, bool mirrored, bool mirror_absolute );
shared_ptr<const map<int,drillbit> > get_bits();
shared_ptr<const map<int,icoords> > get_holes();
private:
void parse_holes();
void parse_bits();
const ivalue_t board_width;
bool bDoSVG;
shared_ptr<SVG_Exporter> svgexpo;
shared_ptr< map<int,drillbit> > bits;
shared_ptr< map<int,icoords> > holes;
gerbv_project_t* project;
vector<string> header;
string preamble,postamble;
private: //methods
void millhole(std::ofstream &of,float x, float y, shared_ptr<Cutter> cutter,float holediameter);
};
#endif // DRILL_H
|