forked from steptools/AdditiveNC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
269 lines (264 loc) · 10.9 KB
/
Program.cs
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
//
// Copyright (c) 1991-2015 by STEP Tools Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
using System;
using System.Collections.Generic;
using System.Text;
namespace AdditiveNC
{
class Program
{
//Some simple classes to make data formatting a smidge easier.
class GeomData
{
public GeomMetaData MetaData = new GeomMetaData();
}
class point
{
public int x =-1;
public int y =-1;
public point(int inx, int iny) { x = inx; y = iny; }
}
class GeomMetaData
{
public double power = -1;
public double speed = -1;
public double focus = -1;
}
class CLIHatches : GeomData
{
public int id = -1;
public int numberofhatches = -1;
public List<CLIHatch> hatches = new List<CLIHatch>();
}
class CLIHatch : IFormattable
{
public int startx = -1;
public int starty = -1;
public int endx = -1;
public int endy = -1;
public String ToString(string format, IFormatProvider formatprovider) { return String.Format("{0},{1} - {2},{3}", startx, starty, endx, endy); }
}
class Polyline : GeomData
{
public int id = -1;
public int direction = -1;
public int numberofpoints = -1;
public List<point> points = new List<point>();
}
class Layer
{
public int height = -1;
public List<GeomData> operations = new List<GeomData>();
}
static void Main(string[] args)
{
if(args.Length < 1)
{
Console.WriteLine("Usage: {0} [filename]", System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName);
return;
}
double unitsmultiplier = 1; //Units default to mm.
List<Layer> layers = parseFile(args[0],ref unitsmultiplier);
Dictionary<double, int> dict = new Dictionary<double,int>();
foreach (Layer layer in layers)
{
foreach (GeomData op in layer.operations)
{
if (!dict.ContainsKey(op.MetaData.focus))
dict.Add(op.MetaData.focus, 1);
else dict[op.MetaData.focus]++;
}
}
double[] i=new double[dict.Keys.Count];
dict.Keys.CopyTo(i,0);
CreateNCFile(layers,args[0]+".NC",unitsmultiplier,i);
}
static List<Layer> parseFile(String filename,ref double unitsmultiplier)
{
Queue<string> lines = new Queue<string>(System.IO.File.ReadAllLines(filename));
string line = lines.Dequeue();
while (!(line.Contains("$$GEOMETRYSTART"))) //Parse header
{
if (line.Contains("$$UNITS/"))
{
unitsmultiplier = Convert.ToDouble(line.Substring("$$UNITS/".Length));
}
line = lines.Dequeue();
}
List<Layer> layers = new List<Layer>();
while ((!line.Contains("$$GEOMETRYEND"))) //Parse Geometry
{
if (line.Contains("$$LAYER"))
{
Layer foo = parselayer(lines);
foo.height = Convert.ToInt32(line.Substring("$$LAYER/".Length));
Console.WriteLine("Layer added with {0} operations", foo.operations.Count);
layers.Add(foo);
}
line = lines.Dequeue();
}
Console.WriteLine("{0} Layers processed.", layers.Count);
return layers;
}
static Layer parselayer(Queue<string> lines)
{
Layer thisLayer = new Layer();
while ((!(lines.Peek().Contains("$$LAYER")||lines.Peek().Contains("$$GEOMETRYEND"))) && (!lines.Peek().Equals(""))) //don't want to take more than we need.
{
GeomMetaData gmd = new GeomMetaData();
string line = lines.Dequeue();
gmd.power = Convert.ToDouble(line.Substring("$$POWER/".Length));
line = lines.Dequeue();
gmd.speed = Convert.ToDouble(line.Substring("$$SPEED/".Length));
line = lines.Dequeue();
gmd.focus = Convert.ToDouble(line.Substring("$$FOCUS/".Length));
line = lines.Dequeue();
GeomData tmp;
if (line.Contains("$$POLYLINE"))
{
tmp=parsepolyline(line);
}
else if (line.Contains("$$HATCHES"))
{
tmp = parsehatches(line);
}
else tmp = new GeomData(); //Error case?
tmp.MetaData = gmd;
thisLayer.operations.Add(tmp);
}
return thisLayer;
}
static Polyline parsepolyline(String line)
{
Polyline p = new Polyline();
List<String> values = new List<String>(line.Split(','));
//Parse ID
if (values[0].Contains("$$POLYLINE/"))
{
values[0] = values[0].Substring("$$POLYLINE/".Length);
}
p.id = Convert.ToInt32(values[0]);
values.RemoveAt(0);
//Parse Direction
p.direction = Convert.ToInt32(values[0]);
values.RemoveAt(0);
//Parse count.
p.numberofpoints = Convert.ToInt32(values[0]);
values.RemoveAt(0);
for (int i = 0; i < p.numberofpoints; i++)
{
int x = Convert.ToInt32(values[0]);
int y = Convert.ToInt32(values[1]);
point tmpoint = new point(x, y);
p.points.Add(tmpoint);
values.RemoveRange(0, 2);
}
return p;
}
static CLIHatches parsehatches(String line)
{
CLIHatches h = new CLIHatches();
List<String> values = new List<String>(line.Split(','));
if (values[0].Contains("$$HATCHES/"))
{
values[0] = values[0].Substring("$$HATCHES/".Length);
}
h.id = Convert.ToInt32(values[0]);
values.RemoveAt(0);
//Parse count.
h.numberofhatches = Convert.ToInt32(values[0]);
values.RemoveAt(0);
for (int i = 0; i < h.numberofhatches; i++)
{
CLIHatch hatch = new CLIHatch();
hatch.startx = Convert.ToInt32(values[0]);
hatch.starty = Convert.ToInt32(values[1]);
hatch.endx = Convert.ToInt32(values[2]);
hatch.endy = Convert.ToInt32(values[3]);
h.hatches.Add(hatch);
values.RemoveRange(0, 4);
}
return h;
}
static void CreateNCFile(List<Layer> layers, string outname, double unitsmultiplier, double[] focii)
{
STEPNCLib.AptStepMaker asm = new STEPNCLib.AptStepMaker();
asm.NewProjectWithCCandWP(outname,4,"Main");
asm.Millimeters();
int toolcount=1;
Dictionary<double, int> focustoolmap = new Dictionary<double,int>(); //Map focus to tools.
foreach (double focus in focii) //Make tools.
{
asm.DefineTool(focus,1,1,1,1,1,1);
asm.SELCTLTool(toolcount);
asm.SetToolIdentifier(Convert.ToString(toolcount), Convert.ToString(toolcount));
//asm.ToolGeometry("ROD.stp", Convert.ToString(toolcount));
focustoolmap[focus] = toolcount;
toolcount++;
}
int i=0;
foreach(Layer layer in layers)
{
asm.NestWorkplan(String.Format("Layer {0}",i));
foreach(GeomData operation in layer.operations)
{
asm.LoadTool(focustoolmap[operation.MetaData.focus]);
if(operation is CLIHatches)
{
asm.Workingstep(String.Format("Layer {0} Hatching", i));
asm.Rapid();
bool firstop = true;
CLIHatches tmp = operation as CLIHatches;
foreach(CLIHatch hatch in tmp.hatches)
{
if(firstop)
{
asm.GoToXYZ("HatchStart", hatch.startx * unitsmultiplier, hatch.starty * unitsmultiplier, layer.height * unitsmultiplier);
asm.Feedrate(operation.MetaData.speed);
asm.SpindleSpeed(operation.MetaData.power);
firstop = false;
}
else asm.GoToXYZ("HatchStart", hatch.startx * unitsmultiplier, hatch.starty * unitsmultiplier, layer.height * unitsmultiplier);
asm.GoToXYZ("HatchEnd", hatch.endx * unitsmultiplier, hatch.endy * unitsmultiplier, layer.height * unitsmultiplier);
}
}
if(operation is Polyline)
{
asm.Workingstep(String.Format("Layer {0} Polyline",i));
bool firstop = true;
asm.Rapid();
Polyline tmp = operation as Polyline;
for(var j=0;j<tmp.numberofpoints;j++)
{
if(firstop)
{
asm.GoToXYZ(String.Format("PolylinePt{0}", j), tmp.points[j].x * unitsmultiplier, tmp.points[j].y * unitsmultiplier, layer.height * unitsmultiplier);
asm.SpindleSpeed(operation.MetaData.power);
asm.Feedrate(operation.MetaData.speed);
firstop = false;
}
else asm.GoToXYZ(String.Format("PolylinePt{0}",j), tmp.points[j].x*unitsmultiplier, tmp.points[j].y*unitsmultiplier, layer.height*unitsmultiplier);
}
}
}
i++;
asm.EndWorkplan();
}
asm.SaveAsModules(outname);
return;
}
}
}