This repository was archived by the owner on Feb 9, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathview.cpp
330 lines (258 loc) · 8.16 KB
/
view.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
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
#include "view.h"
#include <limits>
#ifdef WIN32
#include <windows.h>
#endif
#include <GL/glut.h>
#include <QKeyEvent>
#include <QDebug>
#include <QWidget>
#include "canonMotion.hpp"
void View::keyPressEvent(QKeyEvent *e) {
int keyInt = e->key();
Qt::Key key = static_cast<Qt::Key>(keyInt);
if (key == Qt::Key_unknown) {
qDebug() << "Unknown key from a macro probably";
return;
}
// the user have clicked just and only the special keys Ctrl, Shift, Alt, Meta.
if (key == Qt::Key_Control ||
key == Qt::Key_Shift ||
key == Qt::Key_Alt ||
key == Qt::Key_Meta)
{
// qDebug() << "Single click of special key: Ctrl, Shift, Alt or Meta";
// qDebug() << "New KeySequence:" << QKeySequence(keyInt).toString(QKeySequence::NativeText);
// return;
}
// check for a combination of user clicks
Qt::KeyboardModifiers modifiers = e->modifiers();
QString keyText = e->text();
// if the keyText is empty than it's a special key like F1, F5, ...
// qDebug() << "Pressed Key:" << keyText;
QList<Qt::Key> modifiersList;
if (modifiers & Qt::ShiftModifier)
keyInt += Qt::SHIFT;
if (modifiers & Qt::ControlModifier)
keyInt += Qt::CTRL;
if (modifiers & Qt::AltModifier)
keyInt += Qt::ALT;
if (modifiers & Qt::MetaModifier)
keyInt += Qt::META;
QString seq = QKeySequence(keyInt).toString(QKeySequence::NativeText);
// qDebug() << "KeySequence:" << seq;
return; // skip built in command if overridden by shortcut
/*
switch (e->key()) {
case Qt::Key_S :
break;
case Qt::Key_P :
break;
case Qt::Key_C :
resetCamView();
break;
default:
QGLViewer::keyPressEvent(e);
}
*/
QGLViewer::keyPressEvent(e);
}
View::View(QWidget *parent) : QGLViewer(parent) {
setAttribute(Qt::WA_DeleteOnClose);
lines.reserve(20000);
}
View::~View() {
// qDebug() << "View::~View()";
}
void View::close() {
// qDebug() << "View::close()";
// savePrefs();
QGLViewer::close();
}
void View::clear() {
//QMutexLocker locker(&mutex);
// reset bounding box
aabb[0] = std::numeric_limits<double>::max();
aabb[1] = std::numeric_limits<double>::max();
aabb[2] = std::numeric_limits<double>::max();
aabb[3] = std::numeric_limits<double>::min();
aabb[4] = std::numeric_limits<double>::min();
aabb[5] = std::numeric_limits<double>::min();
//setSceneRadius(1);
lines.clear();
dirty = false;
updateGLViewer();
}
void View::resetCamView() {
camera()->setPosition(initialCameraPosition);
camera()->setOrientation(initialCameraOrientation);
updateGLViewer();
}
void View::init() {
setShortcut(DISPLAY_FPS, Qt::CTRL+Qt::Key_F);
setShortcut(DRAW_GRID, 0);
setManipulatedFrame(new ManipulatedFrame());
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glEnable(GL_DEPTH_TEST);
glDrawBuffer(GL_BACK);
//glDisable(GL_CULL_FACE);
//glLineStipple(2, 0xFFFF);
glDisable(GL_LIGHTING);
glClearColor(0.0,0.0,0.25,0);
//glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
//glLineWidth(3);
setGridIsDrawn();
setFPSIsDisplayed();
setAxisIsDrawn();
setMouseBinding(Qt::AltModifier, Qt::RightButton, SHOW_ENTIRE_SCENE, true, Qt::MidButton);
clear();
//startAnimation();
}
void View::initializeGL() {
QGLViewer::initializeGL();
//camera()->setZNearCoefficient(0.000001);
//camera()->setZClippingCoefficient(1000.0);
}
void View::appendCanonLine(canonLine *l) {
//QMutexLocker locker(&mutex);
lines.push_back(l);
dirty = true; // for updateGLViewer()
if (l->isMotion()) {
Point pos1 = l->point(0);
Point pos2 = l->point(1);
double oaabbmin[3], oaabbmax[3];
oaabbmin[0] = qMin(pos1.x, pos2.x);
oaabbmin[1] = qMin(pos1.y, pos2.y);
oaabbmin[2] = qMin(pos1.z, pos2.z);
oaabbmax[0] = qMax(pos1.x, pos2.x);
oaabbmax[1] = qMax(pos1.y, pos2.y);
oaabbmax[2] = qMax(pos1.z, pos2.z);
for (int i = 0; i < 3; ++i) {
aabb[ i] = qMin(aabb[ i], oaabbmin[i]);
aabb[3+i] = qMax(aabb[3+i], oaabbmax[i]);
}
//qDebug() << "getAABB()" << aabb[0] << aabb[1] << aabb[2] << aabb[3] << aabb[4] << aabb[5];
}
}
void View::drawObjects(bool simplified = false) {
Q_UNUSED(simplified);
if (lines.size() == 0)
return;
//int nbSteps = 600;
//int nbSub = 50;
// QMutexLocker locker(&mutex);
/*
if (simplified) {
nbSteps = 60;
nbSub = 2;
}*/
// qDebug() << "lines.size: " << lines.size();
double step_size = 0.1;
if (simplified)
step_size = 0.75;
double inv_ds = 1.0 / step_size;
int skip_dyn = 1;
double line_width = 3.0;
if (lines.size() > 10000) { // skip some segments in big gcode files
skip_dyn = 2;
line_width = 2.0; // thinner lines
}
if (lines.size() > 100000) {
skip_dyn = 4;
line_width = 1.0;
}
int skip = (simplified) ? skip_dyn * 2 : skip_dyn;
//glEnable(GL_MULTISAMPLE);
//glEnable(GL_LINE_SMOOTH);
//glHint(GL_LINE_SMOOTH_HINT, GL_NICEST);
//glHint(GL_MULTISAMPLE_FILTER_HINT_NV, GL_NICEST);
/*
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glHint (GL_LINE_SMOOTH_HINT, GL_DONT_CARE);
*/
for (unsigned long i = 0; i < lines.size(); i+=skip) {
g2m::canonLine *l = lines[i];
if (l->isMotion()) {
double move_length = l->length();
int n_samples = std::max((int)(move_length * inv_ds ), 2);
double interval_size = move_length /(double)(n_samples-1);
if (l->getMotionType() == TRAVERSE) {
glColor3f(0.0, 128.0/255.0 , 0.0/255.0);
glLineWidth(2);
} else {
glColor3f(255.0/255.0, 215.0/255.0, 94.0/255.0);
glLineWidth(line_width);
}
glBegin(GL_LINES);
for (double m = 0; m <= n_samples-1; m+=0.5) {
Point pos1 = l->point( (double)(m) * interval_size);
glVertex3f(pos1.x, pos1.y, pos1.z);
Point pos2 = l->point( std::min(1.0, (double)(m+0.5) * interval_size));
glVertex3f(pos2.x, pos2.y, pos2.z);
}
glEnd();
}
//glDisable(GL_BLEND);
}
glLineWidth(2);
glColor3f(255.0, 0.0/255.0 , 0.0/255.0);
glBegin(GL_LINES);
// Top
glVertex3f(aabb[0], aabb[1], aabb[2]);
glVertex3f(aabb[3], aabb[1], aabb[2]);
glVertex3f(aabb[3], aabb[1], aabb[2]);
glVertex3f(aabb[3], aabb[1], aabb[5]);
glVertex3f(aabb[3], aabb[1], aabb[5]);
glVertex3f(aabb[0], aabb[1], aabb[5]);
glVertex3f(aabb[0], aabb[1], aabb[5]);
glVertex3f(aabb[0], aabb[1], aabb[2]);
// Bottom
glVertex3f(aabb[0], aabb[4], aabb[2]);
glVertex3f(aabb[3], aabb[4], aabb[2]);
glVertex3f(aabb[3], aabb[4], aabb[2]);
glVertex3f(aabb[3], aabb[4], aabb[5]);
glVertex3f(aabb[3], aabb[4], aabb[5]);
glVertex3f(aabb[0], aabb[4], aabb[5]);
glVertex3f(aabb[0], aabb[4], aabb[5]);
glVertex3f(aabb[0], aabb[4], aabb[2]);
// Sides
glVertex3f(aabb[0], aabb[1], aabb[2]);
glVertex3f(aabb[0], aabb[4], aabb[2]);
glVertex3f(aabb[3], aabb[1], aabb[2]);
glVertex3f(aabb[3], aabb[4], aabb[2]);
glVertex3f(aabb[3], aabb[1], aabb[5]);
glVertex3f(aabb[3], aabb[4], aabb[5]);
glVertex3f(aabb[0], aabb[1], aabb[5]);
glVertex3f(aabb[0], aabb[4], aabb[5]);
glEnd();
Vec qmin, qmax;
qmin.x = aabb[0];
qmin.y = aabb[1];
qmin.z = aabb[2];
qmax.x = aabb[3];
qmax.y = aabb[4];
qmax.z = aabb[5];
setSceneBoundingBox(qmin, qmax);
Vec c((aabb[0] + aabb[3])/2, (aabb[1] + aabb[4])/2, (aabb[2] + aabb[5])/2);
setSceneCenter(c);
}
void View::draw() {
drawObjects();
}
void View::fastDraw() {
drawObjects(true);
}
void View::postDraw() {
QGLViewer::postDraw();
}
void View::update() {
// qDebug() << "View::update";
if (_autoZoom)
showEntireScene();
if (dirty) {
dirty = false;
updateGLViewer();
}
}