-
Notifications
You must be signed in to change notification settings - Fork 99
/
tile.cpp
135 lines (113 loc) · 4.22 KB
/
tile.cpp
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
/*
* This file is part of pcb2gcode.
*
* Copyright (C) 2015 Nicola Corna <[email protected]>
*
* 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 "tile.hpp"
#include <iostream>
#include <boost/format.hpp>
using boost::format;
#include "units.hpp"
Tiling::Tiling( TileInfo tileInfo, double cfactor, int tileVar ) :
tileInfo( tileInfo ), cfactor( cfactor ), tileVar(tileVar) {}
void Tiling::header( std::ofstream &of )
{
if( tileInfo.enabled )
{
switch( tileInfo.software )
{
case Software::LINUXCNC:
of << "\no" << tileVar << " sub ( Main subroutine )\n\n";
break;
case Software::MACH3:
case Software::MACH4:
tileSequence( of );
of << gCodeEnd << "\nO" << tileVar << " ( Main subroutine )\n\n";
break;
case Software::CUSTOM:
break;
}
}
}
void Tiling::footer( std::ofstream &of )
{
if( tileInfo.enabled )
{
switch( tileInfo.software )
{
case Software::LINUXCNC:
of << "\no" << tileVar << " endsub\n\n";
tileSequence( of );
of << gCodeEnd;
break;
case Software::MACH3:
case Software::MACH4:
of << "\nM99\n\n";
break;
case Software::CUSTOM:
break;
}
}
if( !tileInfo.enabled || tileInfo.software == Software::CUSTOM )
of << gCodeEnd;
}
void Tiling::tileSequence( std::ofstream &of )
{
const char *callSub[] = { "o%1$d call", "M98 P%1$d", "M98 P%1$d" };
const char *setX0[] = { "G92 X[#5420-[%1$f]]", "G00 X%1$f\nG92 X0", "G00 X%1$f\nG92 X0" };
const char *setY0[] = { "G92 Y[#5421-[%1$f]]", "G00 Y%1$f\nG92 Y0", "G00 Y%1$f\nG92 Y0" };
for( unsigned int i = 0; i < tileInfo.tileY; i++ )
{
of << ( format( callSub[tileInfo.software] ) % tileVar ) << "\n";
for( unsigned int j = 0; j < tileInfo.tileX - 1; j++ )
{
of << ( format( setX0[tileInfo.software] ) %
( i % 2 == 0 ? tileInfo.boardWidth * cfactor : -tileInfo.boardWidth * cfactor ) ) << "\n";
of << ( format( callSub[tileInfo.software] ) % tileVar ) << "\n";
}
if( i < tileInfo.tileY - 1 )
of << str( format( setY0[tileInfo.software] ) % ( tileInfo.boardHeight * cfactor ) ) << "\n";
}
of << ( format( setY0[tileInfo.software] ) % ( -tileInfo.boardHeight * cfactor * ( tileInfo.tileY - 1 ) ) ) << "\n";
if( tileInfo.tileY % 2 )
of << ( format( setX0[tileInfo.software] ) % ( -tileInfo.boardWidth * cfactor * ( tileInfo.tileX - 1 ) ) ) << "\n";
}
Tiling::TileInfo Tiling::generateTileInfo( const boost::program_options::variables_map& options,
double boardHeight, double boardWidth )
{
TileInfo tileInfo;
tileInfo.enabled = options["tile-x"].as<int>() > 1 || options["tile-y"].as<int>() > 1;
tileInfo.tileX = options["tile-x"].as<int>();
tileInfo.tileY = options["tile-y"].as<int>();
tileInfo.boardHeight = boardHeight;
tileInfo.boardWidth = boardWidth;
if( !options.count("software") ) {
tileInfo.software = Software::CUSTOM;
} else {
tileInfo.software = options["software"].as<Software::Software>();
}
if( tileInfo.software == Software::CUSTOM )
{
tileInfo.forXNum = tileInfo.tileX;
tileInfo.forYNum = tileInfo.tileY;
}
else
{
tileInfo.forXNum = 1;
tileInfo.forYNum = 1;
}
return tileInfo;
}