-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathStepKernel.cpp
More file actions
333 lines (296 loc) · 9.94 KB
/
Copy pathStepKernel.cpp
File metadata and controls
333 lines (296 loc) · 9.94 KB
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
#include "StepKernel.h"
#include <cmath>
#include <iostream>
#include <fstream>
#include <chrono>
#include <sstream>
#include <map>
#include <iomanip> // put_time
StepKernel::StepKernel()
{
}
StepKernel::~StepKernel()
{
}
StepKernel::EdgeCurve* StepKernel::create_edge_curve(StepKernel::Vertex * vert1, StepKernel::Vertex * vert2,bool dir)
{
// curve 1
auto line_point1 = new Point(entities, vert1->point->x, vert1->point->y, vert1->point->z);
double vx = vert2->point->x - vert1->point->x;
double vy = vert2->point->y - vert1->point->y;
double vz = vert2->point->z - vert1->point->z;
double dist = sqrt(vx * vx + vy * vy + vz * vz);
vx = vx / dist;
vy = vy / dist;
vz = vz / dist;
auto line_dir1 = new Direction(entities, vx, vy, vz);
auto line_vector1 = new Vector(entities, line_dir1, 1.0);
auto line1 = new Line(entities, line_point1, line_vector1);
auto surf_curve1 = new SurfaceCurve(entities, line1);
return new EdgeCurve(entities, vert1, vert2, surf_curve1, dir);
}
void StepKernel::build_tri_body(std::vector<double> tris,double tol, int &merged_edge_cnt)
{
auto point = new Point(entities, 0.0, 0.0, 0.0);
auto dir_1 = new Direction(entities, 0.0, 0.0, 1.0);
auto dir_2 = new Direction(entities, 1.0, 0.0, 0.0);
auto base_csys = new Csys3D(entities, dir_1, dir_2, point);
std::vector<Face*> faces;
std::map<std::tuple<double, double, double, double, double, double>, EdgeCurve*> edge_map;
for (int i = 0; i < tris.size() / 9; i++)
{
double p0[3] = { tris[i * 9 + 0],tris[i * 9 + 1] ,tris[i * 9 + 2] };
double p1[3] = { tris[i * 9 + 3],tris[i * 9 + 4] ,tris[i * 9 + 5] };
double p2[3] = { tris[i * 9 + 6],tris[i * 9 + 7] ,tris[i * 9 + 8] };
double d0[3] = { 1,0,0 };
d0[0] = p1[0] - p0[0];
d0[1] = p1[1] - p0[1];
d0[2] = p1[2] - p0[2];
double dist0 = sqrt(d0[0] * d0[0] + d0[1] * d0[1] + d0[2] * d0[2]);
if (dist0 < tol)
continue;
d0[0] = d0[0] / dist0;
d0[1] = d0[1] / dist0;
d0[2] = d0[2] / dist0;
double d1[3] = { 1,0,0 };
d1[0] = p2[0] - p0[0];
d1[1] = p2[1] - p0[1];
d1[2] = p2[2] - p0[2];
double dist1 = sqrt(d1[0] * d1[0] + d1[1] * d1[1] + d1[2] * d1[2]);
if (dist1 < tol)
continue;
d1[0] = d1[0] / dist1;
d1[1] = d1[1] / dist1;
d1[2] = d1[2] / dist1;
// now cross
// cross to get the thrid direction for the beam csys
double d2[3] = { d0[1] * d1[2] - d0[2] * d1[1], d0[2] * d1[0] - d0[0] * d1[2], d0[0] * d1[1] - d0[1] * d1[0] };
double dist2 = sqrt(d2[0] * d2[0] + d2[1] * d2[1] + d2[2] * d2[2]);
if (dist2 < tol)
continue;
d2[0] = d2[0] / dist2;
d2[1] = d2[1] / dist2;
d2[2] = d2[2] / dist2;
// correct the m direction
double d1_cor[3] = { d2[1] * d0[2] - d2[2] * d0[1], d2[2] * d0[0] - d2[0] * d0[2], d2[0] * d0[1] - d2[1] * d0[0] };
double d1_cor_len = sqrt(d1_cor[0] * d1_cor[0] + d1_cor[1] * d1_cor[1] + d1_cor[2] * d1_cor[2]);
d1[0] = d1_cor[0] / d1_cor_len;
d1[1] = d1_cor[1] / d1_cor_len;
d1[2] = d1_cor[2] / d1_cor_len;
// build the face
// the 3 vertex locations
auto point1 = new Point(entities, p0[0], p0[1], p0[2]);
auto vert1 = new Vertex(entities, point1);
auto point2 = new Point(entities, p1[0], p1[1], p1[2]);
auto vert2 = new Vertex(entities, point2);
auto point3 = new Point(entities, p2[0], p2[1], p2[2]);
auto vert3 = new Vertex(entities, point3);
EdgeCurve* edge_curve1 = 0;
bool edge1_dir = true;
get_edge_from_map(p0, p1, edge_map, vert1, vert2, edge_curve1, edge1_dir, merged_edge_cnt);
EdgeCurve* edge_curve2 = 0;
bool edge2_dir = true;
get_edge_from_map(p1, p2, edge_map, vert2, vert3, edge_curve2, edge2_dir, merged_edge_cnt);
EdgeCurve* edge_curve3 = 0;
bool edge3_dir = true;
get_edge_from_map(p2, p0, edge_map, vert3, vert1, edge_curve3, edge3_dir, merged_edge_cnt);
std::vector<OrientedEdge*> oriented_edges;
oriented_edges.push_back(new OrientedEdge(entities, edge_curve1, edge1_dir));
oriented_edges.push_back(new OrientedEdge(entities, edge_curve2, edge2_dir));
oriented_edges.push_back(new OrientedEdge(entities, edge_curve3, edge3_dir));
// create the plane
auto plane_point = new Point(entities, p0[0], p0[1], p0[2]);
auto plane_dir_1 = new Direction(entities, d2[0], d2[1], d2[2]);
auto plane_dir_2 = new Direction(entities, d0[0], d0[1], d0[2]);
auto plane_csys = new Csys3D(entities, plane_dir_1, plane_dir_2, plane_point);
auto plane = new Plane(entities, plane_csys);
// build the faces
auto edge_loop = new EdgeLoop(entities, oriented_edges);
std::vector<FaceBound*> face_bounds;
face_bounds.push_back(new FaceBound(entities, edge_loop, true));
faces.push_back(new Face(entities, face_bounds, plane, true));
}
// build the model
auto open_shell = new Shell(entities, faces);
std::vector<Shell*> shells;
shells.push_back(open_shell);
auto shell_model = new ShellModel(entities, shells);
auto manifold_shape = new ManifoldShape(entities, base_csys, shell_model);
}
void StepKernel::get_edge_from_map(
double p0[3],
double p1[3],
std::map<std::tuple<double, double, double, double, double, double>, StepKernel::EdgeCurve *> &edge_map,
StepKernel::Vertex * vert1,
StepKernel::Vertex * vert2,
EdgeCurve *& edge_curve,
bool &edge_dir,
int &merge_cnt)
{
edge_curve = 0;
edge_dir = true;
auto edge_tuple1_f = std::make_tuple(p0[0], p0[1], p0[2], p1[0], p1[1], p1[2]);
auto edge_tuple1_r = std::make_tuple(p1[0], p1[1], p1[2], p0[0], p0[1], p0[2]);
if (edge_map.count(edge_tuple1_f))
{
edge_curve = edge_map[edge_tuple1_f];
edge_dir = true;
merge_cnt++;
}
else if (edge_map.count(edge_tuple1_r))
{
edge_curve = edge_map[edge_tuple1_r];
edge_dir = false;
merge_cnt++;
}
if (!edge_curve)
{
edge_curve = create_edge_curve(vert1, vert2, true);
edge_map[edge_tuple1_f] = edge_curve;
}
}
void StepKernel::write_step(std::string file_name)
{
std::time_t tt = std ::chrono::system_clock::to_time_t(std::chrono::system_clock::now());
struct std::tm * ptm = std::localtime(&tt);
std::stringstream iso_time;
iso_time << std::put_time(ptm, "%FT%T");
std::ofstream stp_file;
stp_file.open(file_name);
if (!stp_file)
return;
std::string author = "slugdev";
std::string org = "org";
// header info
stp_file << "ISO-10303-21;\n";
stp_file << "HEADER;\n";
stp_file << "FILE_DESCRIPTION(('STP203'),'2;1');\n";
stp_file << "FILE_NAME('" << file_name << "','" << iso_time.str() << "',('" << author << "'),('" << org << "'),' ','stltostp',' ');\n";
stp_file << "FILE_SCHEMA(('CONFIG_CONTROL_DESIGN'));\n";
stp_file << "ENDSEC; \n";
// data section
stp_file << "DATA;\n";
for (auto e:entities )
e->serialize(stp_file);
// create the base csys
stp_file << "ENDSEC;\n";
stp_file << "END-ISO-10303-21;\n";
stp_file.close();
}
std::string StepKernel::read_line(std::ifstream &stp_file, bool skip_all_space)
{
std::string line_str;
bool leading_space = true;
while (stp_file)
{
char get_char = ' ';
stp_file.get(get_char);
if (get_char == ';')
break;
if (get_char == '\n' || get_char == '\r' || get_char == '\t')
continue;
if (leading_space && (get_char == ' ' || get_char == '\t'))
continue;
if (!skip_all_space)
leading_space = false;
line_str.push_back(get_char);
}
return line_str;
}
void StepKernel::read_step(std::string file_name)
{
std::ifstream stp_file;
stp_file.open(file_name);
if (!stp_file)
return;
// read the first line to get the iso stuff
std::string iso_line = read_line(stp_file, true);
bool data_section = false;
std::vector<Entity*> ents;
std::map<int,Entity*> ent_map;
std::vector<std::string> args;
while (stp_file)
{
std::string cur_str = read_line(stp_file, false);
if (cur_str == "DATA")
{
data_section = true;
continue;
}
if (!data_section)
continue;
if (cur_str == "ENDSEC")
{
data_section = false;
break;
}
// parse the id
int id = -1;
if (cur_str.size() > 0 && cur_str[0] == '#' && cur_str.find('='))
{
auto equal_pos = cur_str.find('=');
auto paren_pos = cur_str.find('(');
auto id_str = cur_str.substr(1, equal_pos - 1);
id = std::atoi(id_str.c_str());
auto func_start = cur_str.find_first_not_of("\t ", equal_pos+1);
auto func_end = cur_str.find_first_of("\t (", equal_pos + 1);
auto func_name = cur_str.substr(func_start, func_end - func_start);
// now parse the args
auto arg_end = cur_str.find_last_of(')');
auto arg_str = cur_str.substr(func_end + 1, arg_end - func_end - 1);
Entity* ent = 0;
if (func_name == "CARTESIAN_POINT")
ent = new Point(entities);
else if (func_name == "DIRECTION")
ent = new Direction(entities);
else if (func_name == "AXIS2_PLACEMENT_3D")
ent = new Csys3D(entities);
else if (func_name == "PLANE")
ent = new Plane(entities);
else if (func_name == "EDGE_LOOP")
ent = new EdgeLoop(entities);
else if (func_name == "FACE_BOUND")
ent = new FaceBound(entities);
else if (func_name == "FACE_OUTER_BOUND")
ent = new FaceBound(entities);
else if (func_name == "ADVANCED_FACE")
ent = new Face(entities);
else if (func_name == "FACE_SURFACE")
ent = new Face(entities);
else if (func_name == "OPEN_SHELL")
ent = new Shell(entities);
else if (func_name == "CLOSED_SHELL")
ent = new Shell(entities);
else if (func_name == "SHELL_BASED_SURFACE_MODEL")
ent = new ShellModel(entities);
else if (func_name == "MANIFOLD_SURFACE_SHAPE_REPRESENTATION")
ent = new ManifoldShape(entities);
else if (func_name == "VERTEX_POINT")
ent = new Vertex(entities);
else if (func_name == "SURFACE_CURVE")
ent = new SurfaceCurve(entities);
else if (func_name == "EDGE_CURVE")
ent = new EdgeCurve(entities);
else if (func_name == "ORIENTED_EDGE")
ent = new OrientedEdge(entities);
else if (func_name == "VECTOR")
ent = new Vector(entities);
else if (func_name == "LINE")
ent = new Line(entities);
if (ent)
{
ent->id = id;
ent_map[id] = ent;
ents.push_back(ent);
args.push_back(arg_str);
}
}
std::cout << cur_str << "\n";
}
// processes all the arguments
for (int i = 0; i < ents.size(); i++)
{
ents[i]->parse_args(ent_map,args[i]);
}
stp_file.close();
}