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
|
/*
* 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/>.
*/
#include <iostream>
using std::cout;
using std::endl;
#include <fstream>
#include <iomanip>
using namespace std;
#include "drill.hpp"
#include <cstring>
#include <boost/scoped_array.hpp>
#include <boost/foreach.hpp>
using std::pair;
ExcellonProcessor::ExcellonProcessor( string drillfile, const ivalue_t board_width ) : board_width(board_width)
{
bDoSVG = false;
project = gerbv_create_project();
const char* cfilename = drillfile.c_str();
boost::scoped_array<char> filename( new char[strlen(cfilename) + 1] );
strcpy(filename.get(), cfilename);
gerbv_open_layer_from_filename(project, filename.get());
if( project->file[0] == NULL) throw drill_exception();
preamble = string("G94 ( Inches per minute feed rate. )\n") +
"G20 ( Units == INCHES. )\n" +
"G90 ( Absolute coordinates. )\n";
postamble = string("M9 ( Coolant off. )\n") +
"M2 ( Program end. )\n\n";
}
void
ExcellonProcessor::set_svg_exporter( shared_ptr<SVG_Exporter> svgexpo )
{
this->svgexpo = svgexpo;
bDoSVG = true;
}
void
ExcellonProcessor::add_header( string header )
{
this->header.push_back(header);
}
void
ExcellonProcessor::export_ngc( const string of_name, shared_ptr<Driller> driller, bool mirrored, bool mirror_absolute )
{
ivalue_t double_mirror_axis = mirror_absolute ? 0 : board_width;
//SVG EXPORTER
int rad = 1.;
// open output file
std::ofstream of; of.open( of_name.c_str() );
shared_ptr<const map<int,drillbit> > bits = get_bits();
shared_ptr<const map<int,icoords> > holes = get_holes();
// write header to .ngc file
BOOST_FOREACH( string s, header )
{
of << "( " << s << " )" << endl;
}
of << endl;
of << "( This file uses " << bits->size() << " drill bit sizes. )\n\n";
of.setf( ios_base::fixed );
of.precision(5);
of << setw(7);
// preamble
of << preamble
<< "S" << left << driller->speed << " ( RPM spindle speed. )\n"
<< endl;
for( map<int,drillbit>::const_iterator it = bits->begin(); it != bits->end(); it++ ) {
of << "G00 Z" << driller->zchange << " ( Retract )\n"
<< "T" << it->first << endl
<< "M5 ( Spindle stop. )\n"
<< "M6 ( Tool change. )\n"
<< "(MSG, CHANGE TOOL BIT: to drill size " << it->second.diameter << " " << it->second.unit << ")\n"
<< "M0 ( Temporary machine stop. )\n"
<< "M3 ( Spindle on clockwise. )\n"
<< endl;
const icoords drill_coords = holes->at(it->first);
icoords::const_iterator coord_iter = drill_coords.begin();
//SVG EXPORTER
if (bDoSVG) {
//set a random color
svgexpo->set_rand_color();
//draw first circle
svgexpo->circle( (double_mirror_axis - coord_iter->first), coord_iter->second, rad);
svgexpo->stroke();
}
of << "G81 R" << driller->zsafe << " Z" << driller->zwork << " F" << driller->feed
<< " X" << (mirrored?double_mirror_axis - coord_iter->first:coord_iter->first) << " Y" << coord_iter->second << endl;
++coord_iter;
while( coord_iter != drill_coords.end() ) {
of << "X" << (mirrored?double_mirror_axis - coord_iter->first:coord_iter->first) << " Y" << coord_iter->second << endl;
//SVG EXPORTER
if (bDoSVG) {
//make a whole
svgexpo->circle( (double_mirror_axis - coord_iter->first), coord_iter->second, rad);
svgexpo->stroke();
}
++coord_iter;
}
of << "\n\n";
}
// retract, end
of << "G00 Z" << driller->zchange << " ( All done -- retract )\n" << endl;
of << "M9 ( Coolant off. )\n";
of << "M2 ( Program end. )\n\n";
of.close();
}
void ExcellonProcessor::millhole(std::ofstream &of,float x, float y, shared_ptr<Cutter> cutter,float holediameter)
{
g_assert(cutter);
double cutdiameter=cutter->tool_diameter;
if(cutdiameter*1.001>=holediameter)
{
of<<"G0 X"<< x<<" Y" << y<< endl;
//of<<"G1 Z"<<cutter->zwork<<endl;
//of<<"G0 Z"<<cutter->zsafe<<endl<<endl;
of<<"G1 Z#50"<<endl;
of<<"G0 Z#51"<<endl<<endl;
}
else
{
float millr=(holediameter-cutdiameter)/2.;
of<<"G0 X"<< x+millr<<" Y" << y<< endl;
double z_step = cutter->stepsize;
//z_step=0.01;
double z = cutter->zwork + z_step * abs( int( cutter->zwork / z_step ) );
if( !cutter->do_steps ) {
z=cutter->zwork;
z_step=1; //dummy to exit the loop
}
int stepcount=abs( int( cutter->zwork / z_step )) ;
while( z >= cutter->zwork )
{
//of<<"G1 Z"<<z<<endl;
of<<"G1 Z[#50+"<<stepcount<<"*#52]"<<endl;
of<<"G2 I"<<-millr<<" J0"<<endl;
z -= z_step;
stepcount--;
}
of<<"G0 Z"<<cutter->zsafe<<endl<<endl;
}
}
//mill larger holes by using a smaller mill-head
void
ExcellonProcessor::export_ngc( const string outputname, shared_ptr<Cutter> target, bool mirrored, bool mirror_absolute )
{
g_assert( mirrored == true );
g_assert( mirror_absolute == false );
cerr << "Currently Drilling "<< endl;
// open output file
std::ofstream of; of.open( outputname.c_str() );
shared_ptr<const map<int,drillbit> > bits = get_bits();
shared_ptr<const map<int,icoords> > holes = get_holes();
// write header to .ngc file
BOOST_FOREACH( string s, header )
{
of << "( " << s << " )" << endl;
}
of << endl;
//of << "( This file uses " << bits->size() << " drill bit sizes. )\n\n";
of << "( This file uses a mill head of "<<target->tool_diameter<<" to drill the "<<bits->size() <<"bit sizes. )\n\n";
of.setf( ios_base::fixed );
of.precision(5);
of << setw(7);
// preamble
of << preamble
<< "S" << left << target->speed << " ( RPM spindle speed. )\n"
<< endl;
of<<"F"<<target->feed<<endl;
of<<"#50="<<target->zwork<<" ; zwork"<<endl;
of<<"#51="<<target->zsafe<<" ; zsafe"<<endl;
of<<"#52="<<target->stepsize<<" ; stepsize"<<endl;
for( map<int,drillbit>::const_iterator it = bits->begin(); it != bits->end(); it++ ) {
float diameter=it->second.diameter;
//cerr<<"bit:"<<diameter<<endl;
const icoords drill_coords = holes->at(it->first);
icoords::const_iterator coord_iter = drill_coords.begin();
millhole(of, board_width - coord_iter->first, coord_iter->second, target,diameter);
++coord_iter;
while( coord_iter != drill_coords.end() ) {
millhole(of, board_width - coord_iter->first, coord_iter->second, target,diameter);
++coord_iter;
}
}
// retract, end
of << "G00 Z" << target->zchange << " ( All done -- retract )\n" << endl;
of << postamble;
of.close();
}
void
ExcellonProcessor::parse_bits()
{
bits = shared_ptr< map<int,drillbit> >( new map<int,drillbit>() );
for( gerbv_drill_list_t* currentDrill = project->file[0]->image->drill_stats->drill_list; currentDrill;
currentDrill = currentDrill->next ) {
drillbit curBit;
curBit.diameter = currentDrill->drill_size;
curBit.unit = string( currentDrill->drill_unit );
curBit.drill_count = currentDrill->drill_count;
bits->insert( pair<int,drillbit>(currentDrill->drill_num, curBit) );
}
}
void
ExcellonProcessor::parse_holes()
{
if(!bits)
parse_bits();
holes = shared_ptr< map<int,icoords> >( new map<int,icoords>() );
for (gerbv_net_t* currentNet = project->file[0]->image->netlist; currentNet; currentNet = currentNet->next) {
if(currentNet->aperture != 0)
(*holes)[currentNet->aperture].push_back( icoordpair(currentNet->start_x, currentNet->start_y) );
}
}
shared_ptr<const map<int,drillbit> >
ExcellonProcessor::get_bits()
{
if(!bits)
parse_bits();
return bits;
}
shared_ptr<const map<int,icoords> >
ExcellonProcessor::get_holes()
{
if(!holes)
parse_holes();
return holes;
}
ExcellonProcessor::~ExcellonProcessor()
{
gerbv_destroy_project(project);
}
void ExcellonProcessor::set_preamble(string _preamble)
{
preamble=_preamble;
}
void ExcellonProcessor::set_postamble(string _postamble)
{
postamble=_postamble;
}
|