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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
|
/*
* OpenSCAD (www.openscad.at)
* Copyright (C) 2009 Clifford Wolf <clifford@clifford.at>
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#define INCLUDE_ABSTRACT_NODE_DETAILS
#include "openscad.h"
#include <QMenu>
#include <QMenuBar>
#include <QSplitter>
#include <QFileDialog>
#include <QApplication>
MainWindow::MainWindow(const char *filename)
{
root_ctx.functions_p = &builtin_functions;
root_ctx.modules_p = &builtin_modules;
root_module = NULL;
root_node = NULL;
root_raw_term = NULL;
root_norm_term = NULL;
root_chain = NULL;
#ifdef ENABLE_CGAL
root_N = NULL;
#endif
if (filename) {
this->filename = QString(filename);
setWindowTitle(this->filename);
} else {
setWindowTitle("New Document");
}
{
QMenu *menu = menuBar()->addMenu("&File");
menu->addAction("&New", this, SLOT(actionNew()));
menu->addAction("&Open...", this, SLOT(actionOpen()));
menu->addAction("&Save", this, SLOT(actionSave()));
menu->addAction("Save &As...", this, SLOT(actionSaveAs()));
menu->addAction("&Quit", this, SLOT(close()));
}
{
QMenu *menu = menuBar()->addMenu("&Design");
menu->addAction("&Compile", this, SLOT(actionCompile()), QKeySequence(Qt::Key_F5));
#ifdef ENABLE_CGAL
menu->addAction("Compile and &Render (CGAL)", this, SLOT(actionRenderCGAL()), QKeySequence(Qt::Key_F6));
#endif
menu->addAction("Display &AST...", this, SLOT(actionDisplayAST()));
menu->addAction("Display CSG &Tree...", this, SLOT(actionDisplayCSGTree()));
menu->addAction("Display CSG &Products...", this, SLOT(actionDisplayCSGProducts()));
menu->addAction("Export as &STL...", this, SLOT(actionExportSTL()));
menu->addAction("Export as &OFF...", this, SLOT(actionExportOFF()));
}
{
QMenu *menu = menuBar()->addMenu("&View");
#ifdef ENABLE_OPENCSG
actViewModeOpenCSG = menu->addAction("OpenCSG", this, SLOT(viewModeOpenCSG()));
actViewModeOpenCSG->setCheckable(true);
#endif
#ifdef ENABLE_CGAL
actViewModeCGALSurface = menu->addAction("CGAL Surfaces", this, SLOT(viewModeCGALSurface()));
actViewModeCGALGrid = menu->addAction("CGAL Grid Only", this, SLOT(viewModeCGALGrid()));
actViewModeCGALSurface->setCheckable(true);
actViewModeCGALGrid->setCheckable(true);
#endif
actViewModeThrownTogether = menu->addAction("Thrown Together", this, SLOT(viewModeThrownTogether()));
actViewModeThrownTogether->setCheckable(true);
menu->addSeparator();
menu->addAction("Top");
menu->addAction("Bottom");
menu->addAction("Left");
menu->addAction("Right");
menu->addAction("Front");
menu->addAction("Back");
menu->addAction("Diagonal");
menu->addSeparator();
menu->addAction("Perspective");
menu->addAction("Orthogonal");
}
s1 = new QSplitter(Qt::Horizontal, this);
editor = new QTextEdit(s1);
s2 = new QSplitter(Qt::Vertical, s1);
screen = new GLView(s2);
console = new QTextEdit(s2);
console->setReadOnly(true);
console->append("OpenSCAD (www.openscad.at)");
console->append("Copyright (C) 2009 Clifford Wolf <clifford@clifford.at>");
console->append("");
console->append("This program is free software; you can redistribute it and/or modify");
console->append("it under the terms of the GNU General Public License as published by");
console->append("the Free Software Foundation; either version 2 of the License, or");
console->append("(at your option) any later version.");
console->append("");
editor->setTabStopWidth(30);
if (filename) {
QString text;
FILE *fp = fopen(filename, "rt");
if (!fp) {
console->append(QString("Failed to open file: %1 (%2)").arg(QString(filename), QString(strerror(errno))));
} else {
char buffer[513];
int rc;
while ((rc = fread(buffer, 1, 512, fp)) > 0) {
buffer[rc] = 0;
text += buffer;
}
fclose(fp);
console->append(QString("Loaded design `%1'.").arg(QString(filename)));
}
editor->setPlainText(text);
}
#ifdef ENABLE_OPENCSG
viewModeOpenCSG();
#else
viewModeThrownTogether();
#endif
setCentralWidget(s1);
}
MainWindow::~MainWindow()
{
if (root_module)
delete root_module;
if (root_node)
delete root_node;
#ifdef ENABLE_CGAL
if (root_N)
delete root_N;
#endif
}
void MainWindow::actionNew()
{
filename = QString();
setWindowTitle("New Document");
editor->setPlainText("");
}
void MainWindow::actionOpen()
{
QString new_filename = QFileDialog::getOpenFileName(this, "Open File", "", "OpenSCAD Designs (*.scad)");
if (!new_filename.isEmpty())
{
filename = new_filename;
setWindowTitle(filename);
QString text;
FILE *fp = fopen(filename.toAscii().data(), "rt");
if (!fp) {
console->append(QString("Failed to open file: %1 (%2)").arg(QString(filename), QString(strerror(errno))));
} else {
char buffer[513];
int rc;
while ((rc = fread(buffer, 1, 512, fp)) > 0) {
buffer[rc] = 0;
text += buffer;
}
fclose(fp);
console->append(QString("Loaded design `%1'.").arg(QString(filename)));
}
editor->setPlainText(text);
}
}
void MainWindow::actionSave()
{
FILE *fp = fopen(filename.toAscii().data(), "wt");
if (!fp) {
console->append(QString("Failed to open file for writing: %1 (%2)").arg(QString(filename), QString(strerror(errno))));
} else {
fprintf(fp, "%s", editor->toPlainText().toAscii().data());
fclose(fp);
console->append(QString("Saved design `%1'.").arg(QString(filename)));
}
}
void MainWindow::actionSaveAs()
{
QString new_filename = QFileDialog::getSaveFileName(this, "Save File", filename, "OpenSCAD Designs (*.scad)");
if (!new_filename.isEmpty()) {
filename = new_filename;
setWindowTitle(filename);
actionSave();
}
}
void MainWindow::actionCompile()
{
console->append("Parsing design (AST generation)...");
QApplication::processEvents();
if (root_module) {
delete root_module;
root_module = NULL;
}
root_module = parse(editor->toPlainText().toAscii().data(), false);
if (!root_module) {
console->append("Compilation failed!");
return;
}
console->append("Compiling design (CSG Tree generation)...");
QApplication::processEvents();
if (root_node) {
delete root_node;
root_node = NULL;
}
AbstractNode::idx_counter = 1;
root_node = root_module->evaluate(&root_ctx, QVector<QString>(), QVector<Value>(), QVector<AbstractNode*>());
if (!root_node) {
console->append("Compilation failed!");
return;
}
console->append("Compiling design (CSG Products generation)...");
QApplication::processEvents();
if (root_raw_term) {
root_raw_term->unlink();
root_raw_term = NULL;
}
double m[16];
root_raw_term = root_node->render_csg_term(m);
if (!root_raw_term) {
console->append("Compilation failed!");
return;
}
console->append("Compiling design (CSG Products normalization)...");
QApplication::processEvents();
if (root_norm_term) {
root_norm_term->unlink();
root_norm_term = NULL;
}
if (root_chain) {
delete root_chain;
root_chain = NULL;
}
root_norm_term = root_raw_term->link();
while (1) {
CSGTerm *n = root_norm_term->normalize();
root_norm_term->unlink();
if (root_norm_term == n)
break;
root_norm_term = n;
}
if (!root_norm_term) {
console->append("Compilation failed!");
return;
}
root_chain = new CSGChain();
root_chain->import(root_norm_term);
screen->updateGL();
console->append("Compilation finished.");
}
#ifdef ENABLE_CGAL
static void report_func(const class AbstractNode*, void *vp, int mark)
{
MainWindow *m = (MainWindow*)vp;
QString msg;
msg.sprintf("CSG rendering progress: %.2f%%", (mark*100.0) / progress_report_count);
QApplication::processEvents();
m->console->append(msg);
}
void MainWindow::actionRenderCGAL()
{
actionCompile();
if (!root_module || !root_node)
return;
if (root_N) {
delete root_N;
root_N = NULL;
}
progress_report_prep(root_node, report_func, this);
root_N = new CGAL_Nef_polyhedron(root_node->render_cgal_nef_polyhedron());
progress_report_fin();
if (!actViewModeCGALSurface->isChecked() && !actViewModeCGALGrid->isChecked()) {
viewModeCGALSurface();
} else {
screen->updateGL();
}
}
#endif /* ENABLE_CGAL */
void MainWindow::actionDisplayAST()
{
QTextEdit *e = new QTextEdit(NULL);
e->setTabStopWidth(30);
e->setWindowTitle("AST Dump");
if (root_module) {
e->setPlainText(root_module->dump("", ""));
} else {
e->setPlainText("No AST to dump. Please try compiling first...");
}
e->show();
e->resize(600, 400);
}
void MainWindow::actionDisplayCSGTree()
{
QTextEdit *e = new QTextEdit(NULL);
e->setTabStopWidth(30);
e->setWindowTitle("CSG Tree Dump");
if (root_node) {
e->setPlainText(root_node->dump(""));
} else {
e->setPlainText("No CSG to dump. Please try compiling first...");
}
e->show();
e->resize(600, 400);
}
void MainWindow::actionDisplayCSGProducts()
{
QTextEdit *e = new QTextEdit(NULL);
e->setTabStopWidth(30);
e->setWindowTitle("CSG Products Dump");
e->setPlainText(QString("\nCSG before normalization:\n%1\n\n\nCSG after normalization:\n%2\n\n\nCSG rendering chain:\n%3\n").arg(root_raw_term ? root_raw_term->dump() : "N/A", root_norm_term ? root_norm_term->dump() : "N/A", root_chain ? root_chain->dump() : "N/A"));
e->show();
e->resize(600, 400);
}
void MainWindow::actionExportSTL()
{
console->append(QString("Function %1 is not implemented yet!").arg(QString(__PRETTY_FUNCTION__)));
}
void MainWindow::actionExportOFF()
{
console->append(QString("Function %1 is not implemented yet!").arg(QString(__PRETTY_FUNCTION__)));
}
void MainWindow::viewModeActionsUncheck()
{
#ifdef ENABLE_OPENCSG
actViewModeOpenCSG->setChecked(false);
#endif
#ifdef ENABLE_CGAL
actViewModeCGALSurface->setChecked(false);
actViewModeCGALGrid->setChecked(false);
#endif
actViewModeThrownTogether->setChecked(false);
}
#ifdef ENABLE_OPENCSG
#include <GL/glut.h>
class DLPrim : public OpenCSG::Primitive
{
public:
DLPrim(OpenCSG::Operation operation, unsigned int convexity) :
OpenCSG::Primitive(operation, convexity), id(0), color(0) { }
virtual void render() {
if (id)
glCallList(id);
}
unsigned int id;
unsigned int color;
};
static void renderGLviaOpenCSG(void *vp)
{
MainWindow *m = (MainWindow*)vp;
static int glew_initialized = 0;
if (!glew_initialized) {
glew_initialized = 1;
glewInit();
}
glPushMatrix();
glLoadIdentity();
GLfloat light_diffuse[] = {1.0, 1.0, 1.0, 1.0};
GLfloat light_position[] = {-0.3, -1.0, 0.3, 0.0};
glLightfv(GL_LIGHT0, GL_DIFFUSE, light_diffuse);
glLightfv(GL_LIGHT0, GL_POSITION, light_position);
glEnable(GL_LIGHT0);
glColorMaterial(GL_FRONT_AND_BACK, GL_AMBIENT_AND_DIFFUSE);
glEnable(GL_COLOR_MATERIAL);
glEnable(GL_LIGHTING);
glPopMatrix();
if (m->root_chain) {
std::vector<OpenCSG::Primitive*> primitives;
for (int i = 0;; i++)
{
bool last = i == m->root_chain->polysets.size();
if (last || m->root_chain->types[i] == CSGTerm::UNION)
{
OpenCSG::render(primitives, OpenCSG::Goldfeather, OpenCSG::NoDepthComplexitySampling);
glDepthFunc(GL_EQUAL);
for (unsigned int j = 0; j < primitives.size(); j++) {
DLPrim *p = (DLPrim*)primitives[j];
if (p->color)
glColor3f(0.0, 0.8, 0);
else
glColor3f(0.8, 0, 0);
glCallList(p->id);
glDeleteLists(p->id, 1);
delete p;
}
glDepthFunc(GL_LESS);
primitives.clear();
}
if (last)
break;
DLPrim *prim = new DLPrim(m->root_chain->types[i] == CSGTerm::DIFFERENCE ? OpenCSG::Subtraction : OpenCSG::Intersection, 1);
prim->id = glGenLists(1);
prim->color = m->root_chain->types[i] == CSGTerm::DIFFERENCE ? 1 : 0;
glNewList(prim->id, GL_COMPILE);
m->root_chain->polysets[i]->render_surface(PolySet::COLOR_NONE);
glEndList();
primitives.push_back(prim);
}
} else {
DLPrim *box = new DLPrim(OpenCSG::Intersection, 1);
box->id = glGenLists(1);
glNewList(box->id, GL_COMPILE);
glutSolidCube(1.8);
glEndList();
DLPrim *sphere = new DLPrim(OpenCSG::Subtraction, 1);
sphere->id = glGenLists(1);
sphere->color = 1;
glNewList(sphere->id, GL_COMPILE);
glutSolidSphere(1.2, 20, 20);
glEndList();
std::vector<OpenCSG::Primitive*> primitives;
primitives.push_back(box);
primitives.push_back(sphere);
OpenCSG::render(primitives, OpenCSG::Goldfeather, OpenCSG::NoDepthComplexitySampling);
glDepthFunc(GL_EQUAL);
for (unsigned int i = 0; i < primitives.size(); i++) {
DLPrim *p = (DLPrim*)primitives[i];
if (p->color)
glColor3f(0.0, 0.8, 0);
else
glColor3f(0.8, 0, 0);
glCallList(p->id);
glDeleteLists(p->id, 1);
delete primitives[i];
}
glDepthFunc(GL_LESS);
}
}
void MainWindow::viewModeOpenCSG()
{
viewModeActionsUncheck();
actViewModeOpenCSG->setChecked(true);
screen->renderfunc = renderGLviaOpenCSG;
screen->renderfunc_vp = this;
screen->updateGL();
}
#endif /* ENABLE_OPENCSG */
#ifdef ENABLE_CGAL
#include <CGAL/Nef_3/OGL_helper.h>
static void renderGLviaCGAL(void *vp)
{
MainWindow *m = (MainWindow*)vp;
if (m->root_N) {
CGAL::OGL::Polyhedron P;
CGAL::OGL::Nef3_Converter<CGAL_Nef_polyhedron>::convert_to_OGLPolyhedron(*m->root_N, &P);
P.init();
if (m->actViewModeCGALSurface->isChecked())
P.set_style(CGAL::OGL::SNC_BOUNDARY);
if (m->actViewModeCGALGrid->isChecked())
P.set_style(CGAL::OGL::SNC_SKELETON);
P.draw();
}
}
void MainWindow::viewModeCGALSurface()
{
viewModeActionsUncheck();
actViewModeCGALSurface->setChecked(true);
screen->renderfunc = renderGLviaCGAL;
screen->renderfunc_vp = this;
screen->updateGL();
}
void MainWindow::viewModeCGALGrid()
{
viewModeActionsUncheck();
actViewModeCGALGrid->setChecked(true);
screen->renderfunc = renderGLviaCGAL;
screen->renderfunc_vp = this;
screen->updateGL();
}
#endif /* ENABLE_CGAL */
static void renderGLThrownTogether(void *vp)
{
MainWindow *m = (MainWindow*)vp;
if (m->root_chain) {
glDepthFunc(GL_LEQUAL);
for (int i = 0; i < m->root_chain->polysets.size(); i++) {
if (m->root_chain->types[i] == CSGTerm::DIFFERENCE) {
m->root_chain->polysets[i]->render_surface(PolySet::COLOR_CUTOUT);
m->root_chain->polysets[i]->render_edges(PolySet::COLOR_CUTOUT);
} else {
m->root_chain->polysets[i]->render_surface(PolySet::COLOR_MATERIAL);
m->root_chain->polysets[i]->render_edges(PolySet::COLOR_MATERIAL);
}
}
}
}
void MainWindow::viewModeThrownTogether()
{
viewModeActionsUncheck();
actViewModeThrownTogether->setChecked(true);
screen->renderfunc = renderGLThrownTogether;
screen->renderfunc_vp = this;
screen->updateGL();
}
|