53 { |
69 { |
54 QString s = QFileDialog::getOpenFileName(this, "Choose file to open", ".", "3D data (*.vrt *.edg *.stl)"); |
70 QString s = QFileDialog::getOpenFileName(this, "Choose file to open", ".", "3D data (*.vrt *.edg *.stl)"); |
55 if (!s.isNull()) |
71 if (!s.isNull()) |
56 addFile(s); |
72 addFile(s); |
57 } |
73 } |
58 setSceneBoundingBox(min, max); |
|
59 |
74 |
60 if (!handled) |
75 if (!handled) |
61 QGLViewer::keyPressEvent(e); |
76 QGLViewer::keyPressEvent(e); |
62 } |
77 } |
63 |
78 |
64 GLuint VEFViewer::readVertexFile(QString s) |
79 void VEFViewer::readVertexFile(QString s) |
65 { |
80 { |
66 FILE* file; |
81 FILE* file; |
67 if ((file = fopen(s.toLocal8Bit().data(), "r")) == NULL) |
82 if ((file = fopen(s.toLocal8Bit().data(), "r")) == NULL) |
68 { |
83 { |
69 qDebug() << "Could not open file " << s << " for reading"; |
84 qDebug() << "Could not open file " << s << " for reading"; |
70 return 0; |
85 return; |
71 } |
86 } |
72 |
87 |
73 GLuint list = glGenLists(1); |
88 QFileInfo fi(s); |
74 glNewList(list, GL_COMPILE); |
89 modelList->addItem(new QVerticesLWI(fi.baseName(), file, this)); |
|
90 fclose(file); |
|
91 } |
|
92 |
|
93 void VEFViewer::readEdgeFile(QString s) |
|
94 { |
|
95 FILE* file; |
|
96 if ((file = fopen(s.toLocal8Bit().data(), "r")) == NULL) |
|
97 { |
|
98 qDebug() << "Could not open file " << s << " for reading"; |
|
99 return; |
|
100 } |
|
101 |
|
102 QFileInfo fi(s); |
|
103 modelList->addItem(new QEdgesLWI(fi.baseName(), file, this)); |
|
104 fclose(file); |
|
105 } |
|
106 |
|
107 void VEFViewer::readSTLFile(QString s) |
|
108 { |
|
109 FILE* file; |
|
110 if ((file = fopen(s.toLocal8Bit().data(), "r")) == NULL) |
|
111 { |
|
112 qDebug() << "Could not open file " << s << " for reading"; |
|
113 return; |
|
114 } |
|
115 |
|
116 QFileInfo fi(s); |
|
117 modelList->addItem(new QFacesLWI(fi.baseName(), file, this)); |
|
118 fclose(file); |
|
119 } |
|
120 |
|
121 |
|
122 void VEFViewer::updateMinMax(float x, float y, float z) |
|
123 { |
|
124 if (x < min.x) min.x = x; |
|
125 if (y < min.y) min.y = y; |
|
126 if (z < min.z) min.z = z; |
|
127 |
|
128 if (x > max.x) max.x = x; |
|
129 if (y > max.y) max.y = y; |
|
130 if (z > max.z) max.z = z; |
|
131 |
|
132 updateWeightedCenter(x, y, z); |
|
133 } |
|
134 |
|
135 void VEFViewer::updateWeightedCenter(float x, float y, float z) |
|
136 { |
|
137 vertex_count++; |
|
138 center.x = float(vertex_count - 1)/vertex_count * center.x + x/vertex_count; |
|
139 center.y = float(vertex_count - 1)/vertex_count * center.y + y/vertex_count; |
|
140 center.z = float(vertex_count - 1)/vertex_count * center.z + z/vertex_count; |
|
141 } |
|
142 |
|
143 |
|
144 // QVertices |
|
145 void QVerticesLWI::display() const |
|
146 { |
|
147 glColor3f(.5, .65, .65); |
|
148 glCallList(display_list); |
|
149 } |
|
150 |
|
151 QVerticesLWI::QVerticesLWI(QString name, FILE* file, VEFViewer* v): |
|
152 QDisplayListLWI(name) |
|
153 { |
|
154 display_list = glGenLists(1); |
|
155 glNewList(display_list, GL_COMPILE); |
75 glBegin(GL_POINTS); |
156 glBegin(GL_POINTS); |
76 |
157 |
77 float x,y,z; |
158 float x,y,z; |
78 int result = fscanf(file, "%f %f %f", &x, &y, &z); |
159 int result = fscanf(file, "%f %f %f", &x, &y, &z); |
79 while(result != EOF) |
160 while(result != EOF) |
80 { |
161 { |
81 glVertex3f(x,y,z); |
162 glVertex3f(x,y,z); |
82 updateMinMax(x,y,z); |
163 v->updateMinMax(x,y,z); |
83 result = fscanf(file, "%f %f %f", &x, &y, &z); |
164 result = fscanf(file, "%f %f %f", &x, &y, &z); |
84 } |
165 } |
85 |
166 |
86 glEnd(); |
167 glEnd(); |
87 glEndList(); |
168 glEndList(); |
88 fclose(file); |
169 } |
89 |
170 |
90 return list; |
171 |
91 } |
172 // QFaces |
92 |
173 void QFacesLWI::display() const |
93 GLuint VEFViewer::readEdgeFile(QString s) |
174 { |
94 { |
175 glColor3f(0., .4, .6); |
95 } |
176 glCallList(display_list); |
96 |
177 } |
97 GLuint VEFViewer::readSTLFile(QString s) |
178 |
98 { |
179 QFacesLWI::QFacesLWI(QString name, FILE* file, VEFViewer* v): |
99 FILE* file; |
180 QDisplayListLWI(name) |
100 if ((file = fopen(s.toLocal8Bit().data(), "r")) == NULL) |
181 { |
101 { |
182 display_list = glGenLists(1); |
102 qDebug() << "Could not open file " << s << " for reading"; |
183 glNewList(display_list, GL_COMPILE); |
103 return 0; |
|
104 } |
|
105 |
|
106 GLuint list = glGenLists(1); |
|
107 glNewList(list, GL_COMPILE); |
|
108 glBegin(GL_TRIANGLES); |
184 glBegin(GL_TRIANGLES); |
109 |
185 |
110 float nx,ny,nz; |
186 float nx,ny,nz; |
111 float x0,y0,z0; |
187 float x0,y0,z0; |
112 float x1,y1,z1; |
188 float x1,y1,z1; |
113 float x2,y2,z2; |
189 float x2,y2,z2; |
114 |
190 |
115 int result = readFacet(file, nx,ny,nz, x0,y0,z0, x1,y1,z1, x2,y2,z2); |
191 int result = readFacet(file, nx,ny,nz, x0,y0,z0, x1,y1,z1, x2,y2,z2); |
116 //while(result != EOF) |
192 while(result != EOF) |
117 //{ |
193 { |
118 glNormal3f(nx,ny,nz); |
194 glNormal3f(nx,ny,nz); |
119 |
195 |
120 glVertex3f(x0,y0,z0); |
196 glVertex3f(x0,y0,z0); |
121 glVertex3f(x1,y1,z1); |
197 glVertex3f(x1,y1,z1); |
122 glVertex3f(x2,y2,z2); |
198 glVertex3f(x2,y2,z2); |
123 |
199 |
|
200 #if 0 |
124 std::cout << "Adding triangle" << std::endl; |
201 std::cout << "Adding triangle" << std::endl; |
125 std::cout << nx << " " << ny << " " << nz << std::endl; |
202 std::cout << nx << " " << ny << " " << nz << std::endl; |
126 std::cout << x0 << " " << y0 << " " << z0 << std::endl; |
203 std::cout << x0 << " " << y0 << " " << z0 << std::endl; |
127 std::cout << x1 << " " << y1 << " " << z1 << std::endl; |
204 std::cout << x1 << " " << y1 << " " << z1 << std::endl; |
128 std::cout << x2 << " " << y2 << " " << z2 << std::endl; |
205 std::cout << x2 << " " << y2 << " " << z2 << std::endl; |
|
206 #endif |
129 |
207 |
130 updateMinMax(x0,y0,z0); |
208 v->updateMinMax(x0,y0,z0); |
131 updateMinMax(x1,y1,z1); |
209 v->updateMinMax(x1,y1,z1); |
132 updateMinMax(x2,y2,z2); |
210 v->updateMinMax(x2,y2,z2); |
133 |
211 |
134 // result = readFacet(file, nx,ny,nz, x0,y0,z0, x1,y1,z1, x2,y2,z2); |
212 result = readFacet(file, nx,ny,nz, x0,y0,z0, x1,y1,z1, x2,y2,z2); |
135 //} |
213 } |
136 |
214 |
137 glEnd(); |
215 glEnd(); |
138 glEndList(); |
216 glEndList(); |
139 fclose(file); |
217 } |
140 |
218 |
141 return list; |
219 int QFacesLWI::readFacet(FILE* file, |
142 } |
|
143 |
|
144 int VEFViewer::readFacet(FILE* file, |
|
145 float& nx, float& ny, float& nz, |
220 float& nx, float& ny, float& nz, |
146 float& x0, float& y0, float& z0, |
221 float& x0, float& y0, float& z0, |
147 float& x1, float& y1, float& z1, |
222 float& x1, float& y1, float& z1, |
148 float& x2, float& y2, float& z2) |
223 float& x2, float& y2, float& z2) |
149 { |
224 { |
150 int result = fscanf(file, "facet normal %f %f %f\n", &nx, &ny, &nz); |
225 |
151 result = fscanf(file, "outer loop\n"); |
226 |
152 result = fscanf(file, "vertex %f %f %f\n", &x0, &y0, &z0); |
227 int result = fscanf(file, "%*s %*s %f %f %f", &nx, &ny, &nz); |
153 result = fscanf(file, "vertex %f %f %f\n", &x1, &y1, &z1); |
228 result = fscanf(file, "%*s %*s"); |
154 result = fscanf(file, "vertex %f %f %f\n", &x2, &y2, &z2); |
229 result = fscanf(file, "%*s %f %f %f", &x0, &y0, &z0); |
155 result = fscanf(file, "endloop\n"); |
230 result = fscanf(file, "%*s %f %f %f", &x1, &y1, &z1); |
156 result = fscanf(file, "endfacet\n"); |
231 result = fscanf(file, "%*s %f %f %f", &x2, &y2, &z2); |
|
232 result = fscanf(file, "%*s"); |
|
233 result = fscanf(file, "%*s"); |
157 return result; |
234 return result; |
158 } |
235 } |
159 |
236 |
160 void VEFViewer::updateMinMax(float x, float y, float z) |
237 // QEdges |
161 { |
238 void QEdgesLWI::display() const |
162 if (x < min.x) min.x = x; |
239 { |
163 if (y < min.y) min.y = y; |
240 glColor3f(.6, .2, .6); |
164 if (z < min.z) min.z = z; |
241 glCallList(display_list); |
165 |
242 } |
166 if (x > max.x) max.x = x; |
243 |
167 if (y > max.y) max.y = y; |
244 QEdgesLWI::QEdgesLWI(QString name, FILE* file, VEFViewer* v): |
168 if (z > max.z) max.z = z; |
245 QDisplayListLWI(name) |
169 } |
246 { |
170 |
247 display_list = glGenLists(1); |
|
248 glNewList(display_list, GL_COMPILE); |
|
249 glBegin(GL_LINES); |
|
250 |
|
251 float nx,ny,nz; |
|
252 float x0,y0,z0; |
|
253 float x1,y1,z1; |
|
254 |
|
255 int result = readEdge(file, x0,y0,z0, x1,y1,z1); |
|
256 while(result != EOF) |
|
257 { |
|
258 glVertex3f(x0,y0,z0); |
|
259 glVertex3f(x1,y1,z1); |
|
260 |
|
261 v->updateMinMax(x0,y0,z0); |
|
262 v->updateMinMax(x1,y1,z1); |
|
263 |
|
264 result = readEdge(file, x0,y0,z0, x1,y1,z1); |
|
265 } |
|
266 |
|
267 glEnd(); |
|
268 glEndList(); |
|
269 } |
|
270 |
|
271 int QEdgesLWI::readEdge (FILE* file, |
|
272 float& x0, float& y0, float& z0, |
|
273 float& x1, float& y1, float& z1) |
|
274 { |
|
275 int result = fscanf(file, "%f %f %f", &x0, &y0, &z0); |
|
276 result = fscanf(file, "%f %f %f", &x1, &y1, &z1); |
|
277 |
|
278 std::cout << x0 << ' ' << y0 << ' ' << z0 << std::endl; |
|
279 std::cout << x1 << ' ' << y1 << ' ' << z1 << std::endl; |
|
280 return result; |
|
281 } |
|
282 |
|
283 |