forked from openscad/openscad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGLView.cc
823 lines (723 loc) · 28.5 KB
/
GLView.cc
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
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
#include "GLView.h"
#include "stdio.h"
#include "colormap.h"
#include "rendersettings.h"
#include "mathc99.h"
#include "printutils.h"
#include "renderer.h"
#ifdef _WIN32
#include <GL/wglew.h>
#elif !defined(__APPLE__)
#include <GL/glxew.h>
#endif
#ifdef ENABLE_OPENCSG
#include <opencsg.h>
#endif
GLView::GLView()
{
showedges = false;
showfaces = true;
showaxes = false;
showcrosshairs = false;
showscale = false;
renderer = NULL;
colorscheme = &ColorMap::inst()->defaultColorScheme();
cam = Camera();
far_far_away = RenderSettings::inst()->far_gl_clip_limit;
#ifdef ENABLE_OPENCSG
is_opencsg_capable = false;
has_shaders = false;
opencsg_support = true;
static int sId = 0;
this->opencsg_id = sId++;
for (int i = 0; i < 10; i++) this->shaderinfo[i] = 0;
#endif
}
void GLView::setRenderer(Renderer* r)
{
renderer = r;
}
/* update the color schemes of the Renderer attached to this GLView
to match the colorscheme of this GLView.*/
void GLView::updateColorScheme()
{
if (this->renderer) this->renderer->setColorScheme(*this->colorscheme);
}
/* change this GLView's colorscheme to the one given, and update the
Renderer attached to this GLView as well. */
void GLView::setColorScheme(const ColorScheme &cs)
{
this->colorscheme = &cs;
this->updateColorScheme();
}
void GLView::setColorScheme(const std::string &cs)
{
const ColorScheme *colorscheme = ColorMap::inst()->findColorScheme(cs);
if (colorscheme) {
setColorScheme(*colorscheme);
}
else {
PRINTB("WARNING: GLView: unknown colorscheme %s", cs);
}
}
void GLView::resizeGL(int w, int h)
{
#ifdef ENABLE_OPENCSG
shaderinfo[9] = w;
shaderinfo[10] = h;
#endif
cam.pixel_width = w;
cam.pixel_height = h;
glViewport(0, 0, w, h);
aspectratio = 1.0*w/h;
}
void GLView::setCamera(const Camera &cam)
{
this->cam = cam;
}
void GLView::setupCamera()
{
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
switch (this->cam.type) {
case Camera::GIMBAL: {
double eyeY = 0.0;
switch (this->cam.projection) {
case Camera::PERSPECTIVE: {
eyeY = cam.zoomValue();
gluPerspective(cam.fov, aspectratio, 0.1 * eyeY, 100 * eyeY);
break;
}
case Camera::ORTHOGONAL: {
eyeY = cam.zoomValue();
glOrtho(-eyeY/2*aspectratio, eyeY*aspectratio/2,
-eyeY/2, eyeY/2,
-far_far_away, +far_far_away);
break;
}
}
gluLookAt(0.0, -eyeY, 0.0,
0.0, 0.0, 0.0,
0.0, 0.0, 1.0);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glRotated(cam.object_rot.x(), 1.0, 0.0, 0.0);
glRotated(cam.object_rot.y(), 0.0, 1.0, 0.0);
glRotated(cam.object_rot.z(), 0.0, 0.0, 1.0);
break;
}
case Camera::VECTOR: {
switch (this->cam.projection) {
case Camera::PERSPECTIVE: {
double dist = (cam.center - cam.eye).norm();
gluPerspective(cam.fov, aspectratio, 0.1*dist, 100*dist);
break;
}
case Camera::ORTHOGONAL: {
double height = cam.zoomValue();
glOrtho(-height/2*aspectratio, height*aspectratio/2,
-height/2, height/2,
-far_far_away, +far_far_away);
break;
}
}
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
Vector3d dir(cam.eye - cam.center);
Vector3d up(0.0,0.0,1.0);
if (dir.cross(up).norm() < 0.001) { // View direction is ~parallel with up vector
up << 0.0,1.0,0.0;
}
gluLookAt(cam.eye[0], cam.eye[1], cam.eye[2],
cam.center[0], cam.center[1], cam.center[2],
up[0], up[1], up[2]);
break;
}
default:
break;
}
}
void GLView::paintGL()
{
glDisable(GL_LIGHTING);
Color4f bgcol = ColorMap::getColor(*this->colorscheme, BACKGROUND_COLOR);
Color4f bgcontrast = ColorMap::getContrastColor(bgcol);
glClearColor(bgcol[0], bgcol[1], bgcol[2], 1.0);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT);
setupCamera();
if (this->cam.type) {
// Only for GIMBAL cam
// The crosshair should be fixed at the center of the viewport...
if (showcrosshairs) GLView::showCrosshairs();
glTranslated(cam.object_trans.x(), cam.object_trans.y(), cam.object_trans.z());
// ...the axis lines need to follow the object translation.
if (showaxes) GLView::showAxes(bgcontrast);
// mark the scale along the axis lines
if (showscale) GLView::showScalemarkers(bgcontrast);
}
glEnable(GL_LIGHTING);
glDepthFunc(GL_LESS);
glCullFace(GL_BACK);
glDisable(GL_CULL_FACE);
glLineWidth(2);
glColor3d(1.0, 0.0, 0.0);
if (this->renderer) {
#if defined(ENABLE_OPENCSG)
// FIXME: This belongs in the OpenCSG renderer, but it doesn't know about this ID yet
OpenCSG::setContext(this->opencsg_id);
#endif
this->renderer->draw(showfaces, showedges);
}
// Only for GIMBAL
glDisable(GL_LIGHTING);
if (showaxes) GLView::showSmallaxes(bgcontrast);
}
#ifdef ENABLE_OPENCSG
void GLView::enable_opencsg_shaders()
{
const char *openscad_disable_gl20_env = getenv("OPENSCAD_DISABLE_GL20");
if (openscad_disable_gl20_env && !strcmp(openscad_disable_gl20_env, "0")) {
openscad_disable_gl20_env = NULL;
}
// All OpenGL 2 contexts are OpenCSG capable
if (GLEW_VERSION_2_0) {
if (!openscad_disable_gl20_env) {
this->is_opencsg_capable = true;
this->has_shaders = true;
}
}
// If OpenGL < 2, check for extensions
else {
if (GLEW_ARB_framebuffer_object) this->is_opencsg_capable = true;
else if (GLEW_EXT_framebuffer_object && GLEW_EXT_packed_depth_stencil) {
this->is_opencsg_capable = true;
}
#ifdef WIN32
else if (WGLEW_ARB_pbuffer && WGLEW_ARB_pixel_format) this->is_opencsg_capable = true;
#elif !defined(__APPLE__)
else if (GLXEW_SGIX_pbuffer && GLXEW_SGIX_fbconfig) this->is_opencsg_capable = true;
#endif
}
if (!GLEW_VERSION_2_0 || !this->is_opencsg_capable) {
display_opencsg_warning();
}
if (opencsg_support && this->has_shaders) {
/*
Uniforms:
1 color1 - face color
2 color2 - edge color
7 xscale
8 yscale
Attributes:
3 trig
4 pos_b
5 pos_c
6 mask
Other:
9 width
10 height
Outputs:
tp
tr
shading
*/
const char *vs_source =
"uniform float xscale, yscale;\n"
"attribute vec3 pos_b, pos_c;\n"
"attribute vec3 trig, mask;\n"
"varying vec3 tp, tr;\n"
"varying float shading;\n"
"void main() {\n"
" vec4 p0 = gl_ModelViewProjectionMatrix * gl_Vertex;\n"
" vec4 p1 = gl_ModelViewProjectionMatrix * vec4(pos_b, 1.0);\n"
" vec4 p2 = gl_ModelViewProjectionMatrix * vec4(pos_c, 1.0);\n"
" float a = distance(vec2(xscale*p1.x/p1.w, yscale*p1.y/p1.w), vec2(xscale*p2.x/p2.w, yscale*p2.y/p2.w));\n"
" float b = distance(vec2(xscale*p0.x/p0.w, yscale*p0.y/p0.w), vec2(xscale*p1.x/p1.w, yscale*p1.y/p1.w));\n"
" float c = distance(vec2(xscale*p0.x/p0.w, yscale*p0.y/p0.w), vec2(xscale*p2.x/p2.w, yscale*p2.y/p2.w));\n"
" float s = (a + b + c) / 2.0;\n"
" float A = sqrt(s*(s-a)*(s-b)*(s-c));\n"
" float ha = 2.0*A/a;\n"
" gl_Position = p0;\n"
" tp = mask * ha;\n"
" tr = trig;\n"
" vec3 normal, lightDir;\n"
" normal = normalize(gl_NormalMatrix * gl_Normal);\n"
" lightDir = normalize(vec3(gl_LightSource[0].position));\n"
" shading = abs(dot(normal, lightDir));\n"
"}\n";
/*
Inputs:
tp && tr - if any components of tp < tr, use color2 (edge color)
shading - multiplied by color1. color2 is is without lighting
*/
const char *fs_source =
"uniform vec4 color1, color2;\n"
"varying vec3 tp, tr, tmp;\n"
"varying float shading;\n"
"void main() {\n"
" gl_FragColor = vec4(color1.r * shading, color1.g * shading, color1.b * shading, color1.a);\n"
" if (tp.x < tr.x || tp.y < tr.y || tp.z < tr.z)\n"
" gl_FragColor = color2;\n"
"}\n";
GLuint vs = glCreateShader(GL_VERTEX_SHADER);
glShaderSource(vs, 1, (const GLchar**)&vs_source, NULL);
glCompileShader(vs);
GLuint fs = glCreateShader(GL_FRAGMENT_SHADER);
glShaderSource(fs, 1, (const GLchar**)&fs_source, NULL);
glCompileShader(fs);
GLuint edgeshader_prog = glCreateProgram();
glAttachShader(edgeshader_prog, vs);
glAttachShader(edgeshader_prog, fs);
glLinkProgram(edgeshader_prog);
shaderinfo[0] = edgeshader_prog;
shaderinfo[1] = glGetUniformLocation(edgeshader_prog, "color1");
shaderinfo[2] = glGetUniformLocation(edgeshader_prog, "color2");
shaderinfo[3] = glGetAttribLocation(edgeshader_prog, "trig");
shaderinfo[4] = glGetAttribLocation(edgeshader_prog, "pos_b");
shaderinfo[5] = glGetAttribLocation(edgeshader_prog, "pos_c");
shaderinfo[6] = glGetAttribLocation(edgeshader_prog, "mask");
shaderinfo[7] = glGetUniformLocation(edgeshader_prog, "xscale");
shaderinfo[8] = glGetUniformLocation(edgeshader_prog, "yscale");
GLenum err = glGetError();
if (err != GL_NO_ERROR) {
fprintf(stderr, "OpenGL Error: %s\n", gluErrorString(err));
}
GLint status;
glGetProgramiv(edgeshader_prog, GL_LINK_STATUS, &status);
if (status == GL_FALSE) {
int loglen;
char logbuffer[1000];
glGetProgramInfoLog(edgeshader_prog, sizeof(logbuffer), &loglen, logbuffer);
fprintf(stderr, "OpenGL Program Linker Error:\n%.*s", loglen, logbuffer);
} else {
int loglen;
char logbuffer[1000];
glGetProgramInfoLog(edgeshader_prog, sizeof(logbuffer), &loglen, logbuffer);
if (loglen > 0) {
fprintf(stderr, "OpenGL Program Link OK:\n%.*s", loglen, logbuffer);
}
glValidateProgram(edgeshader_prog);
glGetProgramInfoLog(edgeshader_prog, sizeof(logbuffer), &loglen, logbuffer);
if (loglen > 0) {
fprintf(stderr, "OpenGL Program Validation results:\n%.*s", loglen, logbuffer);
}
}
}
}
#endif
void GLView::initializeGL()
{
glEnable(GL_DEPTH_TEST);
glDepthRange(-far_far_away, +far_far_away);
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
GLfloat light_diffuse[] = {1.0, 1.0, 1.0, 1.0};
GLfloat light_position0[] = {-1.0, -1.0, +1.0, 0.0};
GLfloat light_position1[] = {+1.0, +1.0, -1.0, 0.0};
glLightfv(GL_LIGHT0, GL_DIFFUSE, light_diffuse);
glLightfv(GL_LIGHT0, GL_POSITION, light_position0);
glEnable(GL_LIGHT0);
glLightfv(GL_LIGHT1, GL_DIFFUSE, light_diffuse);
glLightfv(GL_LIGHT1, GL_POSITION, light_position1);
glEnable(GL_LIGHT1);
glEnable(GL_LIGHTING);
glEnable(GL_NORMALIZE);
glColorMaterial(GL_FRONT_AND_BACK, GL_AMBIENT_AND_DIFFUSE);
// The following line is reported to fix issue #71
glMateriali(GL_FRONT_AND_BACK, GL_SHININESS, 64);
glEnable(GL_COLOR_MATERIAL);
#ifdef ENABLE_OPENCSG
enable_opencsg_shaders();
#endif
}
void GLView::showSmallaxes(const Color4f &col)
{
// Fixme - this doesnt work in Vector Camera mode
float dpi = this->getDPI();
// Small axis cross in the lower left corner
glDepthFunc(GL_ALWAYS);
// Set up an orthographic projection of the axis cross in the corner
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glTranslatef(-0.8f, -0.8f, 0.0f);
double scale = 90;
glOrtho(-scale*dpi*aspectratio,scale*dpi*aspectratio,
-scale*dpi,scale*dpi,
-scale*dpi,scale*dpi);
gluLookAt(0.0, -1.0, 0.0,
0.0, 0.0, 0.0,
0.0, 0.0, 1.0);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glRotated(cam.object_rot.x(), 1.0, 0.0, 0.0);
glRotated(cam.object_rot.y(), 0.0, 1.0, 0.0);
glRotated(cam.object_rot.z(), 0.0, 0.0, 1.0);
glLineWidth(dpi);
glBegin(GL_LINES);
glColor3d(1.0, 0.0, 0.0);
glVertex3d(0, 0, 0); glVertex3d(10*dpi, 0, 0);
glColor3d(0.0, 1.0, 0.0);
glVertex3d(0, 0, 0); glVertex3d(0, 10*dpi, 0);
glColor3d(0.0, 0.0, 1.0);
glVertex3d(0, 0, 0); glVertex3d(0, 0, 10*dpi);
glEnd();
GLdouble mat_model[16];
glGetDoublev(GL_MODELVIEW_MATRIX, mat_model);
GLdouble mat_proj[16];
glGetDoublev(GL_PROJECTION_MATRIX, mat_proj);
GLint viewport[4];
glGetIntegerv(GL_VIEWPORT, viewport);
GLdouble xlabel_x, xlabel_y, xlabel_z;
gluProject(12*dpi, 0, 0, mat_model, mat_proj, viewport, &xlabel_x, &xlabel_y, &xlabel_z);
xlabel_x = round(xlabel_x); xlabel_y = round(xlabel_y);
GLdouble ylabel_x, ylabel_y, ylabel_z;
gluProject(0, 12*dpi, 0, mat_model, mat_proj, viewport, &ylabel_x, &ylabel_y, &ylabel_z);
ylabel_x = round(ylabel_x); ylabel_y = round(ylabel_y);
GLdouble zlabel_x, zlabel_y, zlabel_z;
gluProject(0, 0, 12*dpi, mat_model, mat_proj, viewport, &zlabel_x, &zlabel_y, &zlabel_z);
zlabel_x = round(zlabel_x); zlabel_y = round(zlabel_y);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glTranslated(-1, -1, 0);
glScaled(2.0/viewport[2], 2.0/viewport[3], 1);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glColor3f(col[0], col[1], col[2]);
float d = 3*dpi;
glBegin(GL_LINES);
// X Label
glVertex3d(xlabel_x-d, xlabel_y-d, 0); glVertex3d(xlabel_x+d, xlabel_y+d, 0);
glVertex3d(xlabel_x-d, xlabel_y+d, 0); glVertex3d(xlabel_x+d, xlabel_y-d, 0);
// Y Label
glVertex3d(ylabel_x-d, ylabel_y-d, 0); glVertex3d(ylabel_x+d, ylabel_y+d, 0);
glVertex3d(ylabel_x-d, ylabel_y+d, 0); glVertex3d(ylabel_x, ylabel_y, 0);
// Z Label
glVertex3d(zlabel_x-d, zlabel_y-d, 0); glVertex3d(zlabel_x+d, zlabel_y-d, 0);
glVertex3d(zlabel_x-d, zlabel_y+d, 0); glVertex3d(zlabel_x+d, zlabel_y+d, 0);
glVertex3d(zlabel_x-d, zlabel_y-d, 0); glVertex3d(zlabel_x+d, zlabel_y+d, 0);
// FIXME - depends on gimbal camera 'viewer distance'.. how to fix this
// for VectorCamera?
glEnd();
}
void GLView::showAxes(const Color4f &col)
{
double l = cam.zoomValue();
// FIXME: doesn't work under Vector Camera
// Large gray axis cross inline with the model
glLineWidth(this->getDPI());
glColor3f(col[0], col[1], col[2]);
glBegin(GL_LINES);
glVertex3d(0, 0, 0);
glVertex3d(+l, 0, 0);
glVertex3d(0, 0, 0);
glVertex3d(0, +l, 0);
glVertex3d(0, 0, 0);
glVertex3d(0, 0, +l);
glEnd();
glPushAttrib(GL_LINE_BIT);
glEnable(GL_LINE_STIPPLE);
glLineStipple(3, 0xAAAA);
glBegin(GL_LINES);
glVertex3d(0, 0, 0);
glVertex3d(-l, 0, 0);
glVertex3d(0, 0, 0);
glVertex3d(0, -l, 0);
glVertex3d(0, 0, 0);
glVertex3d(0, 0, -l);
glEnd();
glPopAttrib();
}
void GLView::showCrosshairs()
{
// FIXME: this might not work with Vector camera
glLineWidth(this->getDPI());
Color4f col = ColorMap::getColor(*this->colorscheme, CROSSHAIR_COLOR);
glColor3f(col[0], col[1], col[2]);
glBegin(GL_LINES);
for (double xf = -1; xf <= +1; xf += 2)
for (double yf = -1; yf <= +1; yf += 2) {
double vd = cam.zoomValue()/8;
glVertex3d(-xf*vd, -yf*vd, -vd);
glVertex3d(+xf*vd, +yf*vd, +vd);
}
glEnd();
}
void GLView::showScalemarkers(const Color4f &col)
{
// Add scale tics on large axes
double l = cam.zoomValue();
glLineWidth(this->getDPI());
glColor3f(col[0], col[1], col[2]);
// determine the log value to provide proportional tics
int log_l = (int)log10(l);
// j represents the increment for each minor tic
double j = 10;
// deal with 0 log values
if (l < 1.5){
j = pow(10,log_l-2);
} else {
j = pow(10,log_l-1);
}
int size_div_sm = 60; // divisor for l to determine minor tic size
int size_div = size_div_sm;
int line_cnt = 0;
for (double i=0;i<l;i+=j){ // i represents the position along the axis
if (line_cnt++ == 10){ // major tic
size_div = size_div_sm * .5; // resize to a major tic
line_cnt = 1; // reset the major tic counter
GLView::decodeMarkerValue(i, l, size_div_sm); // print number
} else { // minor tic
size_div = size_div_sm; // set the minor tic to the standard size
}
/*
* The length of each tic is proportional to the length of the axis
* (which changes with the zoom value.) l/size_div provides the
* proportional length
*
* Commented glVertex3d lines provide additional 'arms' for the tic
* the number of arms will (hopefully) eventually be driven via Preferences
*/
// positive axes
glBegin(GL_LINES);
// x
glVertex3d(i,0,0); glVertex3d(i,-l/size_div,0); // 1 arm
//glVertex3d(i,-l/size_div,0); glVertex3d(i,l/size_div,0); // 2 arms
//glVertex3d(i,0,-l/size_div); glVertex3d(i,0,l/size_div); // 4 arms (w/ 2 arms line)
// y
glVertex3d(0,i,0); glVertex3d(-l/size_div,i,0); // 1 arm
//glVertex3d(-l/size_div,i,0); glVertex3d(l/size_div,i,0); // 2 arms
//glVertex3d(0,i,-l/size_div); glVertex3d(0,i,l/size_div); // 4 arms (w/ 2 arms line)
// z
glVertex3d(0,0,i); glVertex3d(-l/size_div,0,i); // 1 arm
//glVertex3d(-l/size_div,0,i); glVertex3d(l/size_div,0,i); // 2 arms
//glVertex3d(0,-l/size_div,i); glVertex3d(0,l/size_div,i); // 4 arms (w/ 2 arms line)
glEnd();
// negative axes
glPushAttrib(GL_LINE_BIT);
glEnable(GL_LINE_STIPPLE);
glLineStipple(3, 0xAAAA);
glBegin(GL_LINES);
// x
glVertex3d(-i,0,0); glVertex3d(-i,-l/size_div,0); // 1 arm
//glVertex3d(-i,-l/size_div,0); glVertex3d(-i,l/size_div,0); // 2 arms
//glVertex3d(-i,0,-l/size_div); glVertex3d(-i,0,l/size_div); // 4 arms (w/ 2 arms line)
// y
glVertex3d(0,-i,0); glVertex3d(-l/size_div,-i,0); // 1 arm
//glVertex3d(-l/size_div,-i,0); glVertex3d(l/size_div,-i,0); // 2 arms
//glVertex3d(0,-i,-l/size_div); glVertex3d(0,-i,l/size_div); // 4 arms (w/ 2 arms line)
// z
glVertex3d(0,0,-i); glVertex3d(-l/size_div,0,-i); // 1 arm
//glVertex3d(-l/size_div,0,-i); glVertex3d(l/size_div,0,-i); // 2 arms
//glVertex3d(0,-l/size_div,-i); glVertex3d(0,l/size_div,-i); // 4 arms (w/ 2 arms line)
glEnd();
glPopAttrib();
}
}
void GLView::decodeMarkerValue(double i, double l, int size_div_sm)
{
// convert the axis position to a string
std::string digit = static_cast<std::ostringstream*>( &(std::ostringstream() << i) )->str();
// setup how far above the axis (or tic TBD) to draw the number
double dig_buf = (l/size_div_sm)/4;
// setup the size of the character box
double dig_w = (l/size_div_sm)/2;
double dig_h = (l/size_div_sm) + dig_buf;
// setup the distance between characters
double kern = dig_buf;
double dig_wk = (dig_w) + kern;
// set up ordering for different axes
int ax[6][3] = {
{0,1,2},
{1,0,2},
{1,2,0},
{0,1,2},
{1,0,2},
{1,2,0}};
// set up character vertex seqeunces for different axes
int or_2[6][6]={
{0,1,3,2,4,5},
{1,0,2,3,5,4},
{1,0,2,3,5,4},
{1,0,2,3,5,4},
{0,1,3,2,4,5},
{0,1,3,2,4,5}};
int or_3[6][7]={
{0,1,3,2,3,5,4},
{1,0,2,3,2,4,5},
{1,0,2,3,2,4,5},
{1,0,2,3,2,4,5},
{0,1,3,2,3,5,4},
{0,1,3,2,3,5,4}};
int or_4[6][5]={
{0,2,3,1,5},
{1,3,2,0,4},
{1,3,2,0,4},
{1,3,2,0,4},
{0,2,3,1,5},
{0,2,3,1,5}};
int or_5[6][6]={
{1,0,2,3,5,4},
{0,1,3,2,4,5},
{0,1,3,2,4,5},
{0,1,3,2,4,5},
{1,0,2,3,5,4},
{1,0,2,3,5,4}};
int or_6[6][6]={
{1,0,4,5,3,2},
{0,1,5,4,2,3},
{0,1,5,4,2,3},
{0,1,5,4,2,3},
{1,0,4,5,3,2},
{1,0,4,5,3,2}};
int or_7[6][3]={
{0,1,4},
{1,0,5},
{1,0,5},
{1,0,5},
{0,1,4},
{0,1,4}};
int or_9[6][5]={
{5,1,0,2,3},
{4,0,1,3,2},
{4,0,1,3,2},
{4,0,1,3,2},
{5,1,0,2,3},
{5,1,0,2,3}};
std::string stash_digit = digit;
// walk through axes
for (int di=0;di<6;di++){
// setup negative axes
double polarity = 1;
if (di>2){
polarity = -1;
digit = "-" + stash_digit;
}
// fix the axes that need to run the opposite direction
if (di>0 && di<4){
std::reverse(digit.begin(),digit.end());
}
// walk through and render the characters of the string
for(std::string::size_type char_num = 0; char_num < digit.size(); ++char_num){
// setup the vertices for the char rendering based on the axis and position
double dig_vrt[6][3] = {
{polarity*((i+((char_num)*dig_wk))-(dig_w/2)),dig_h,0},
{polarity*((i+((char_num)*dig_wk))+(dig_w/2)),dig_h,0},
{polarity*((i+((char_num)*dig_wk))-(dig_w/2)),dig_h/2+dig_buf,0},
{polarity*((i+((char_num)*dig_wk))+(dig_w/2)),dig_h/2+dig_buf,0},
{polarity*((i+((char_num)*dig_wk))-(dig_w/2)),dig_buf,0},
{polarity*((i+((char_num)*dig_wk))+(dig_w/2)),dig_buf,0}};
// convert the char into lines appropriate for the axis being used
// psuedo 7 segment vertices are:
// A--B
// | |
// C--D
// | |
// E--F
switch(digit[char_num]){
case '1':
glBegin(GL_LINES);
glVertex3d(dig_vrt[0][ax[di][0]],dig_vrt[0][ax[di][1]],dig_vrt[0][ax[di][2]]); //a
glVertex3d(dig_vrt[4][ax[di][0]],dig_vrt[4][ax[di][1]],dig_vrt[4][ax[di][2]]); //e
glEnd();
break;
case '2':
glBegin(GL_LINE_STRIP);
glVertex3d(dig_vrt[or_2[di][0]][ax[di][0]],dig_vrt[or_2[di][0]][ax[di][1]],dig_vrt[or_2[di][0]][ax[di][2]]); //a
glVertex3d(dig_vrt[or_2[di][1]][ax[di][0]],dig_vrt[or_2[di][1]][ax[di][1]],dig_vrt[or_2[di][1]][ax[di][2]]); //b
glVertex3d(dig_vrt[or_2[di][2]][ax[di][0]],dig_vrt[or_2[di][2]][ax[di][1]],dig_vrt[or_2[di][2]][ax[di][2]]); //d
glVertex3d(dig_vrt[or_2[di][3]][ax[di][0]],dig_vrt[or_2[di][3]][ax[di][1]],dig_vrt[or_2[di][3]][ax[di][2]]); //c
glVertex3d(dig_vrt[or_2[di][4]][ax[di][0]],dig_vrt[or_2[di][4]][ax[di][1]],dig_vrt[or_2[di][4]][ax[di][2]]); //e
glVertex3d(dig_vrt[or_2[di][5]][ax[di][0]],dig_vrt[or_2[di][5]][ax[di][1]],dig_vrt[or_2[di][5]][ax[di][2]]); //f
glEnd();
break;
case '3':
glBegin(GL_LINE_STRIP);
glVertex3d(dig_vrt[or_3[di][0]][ax[di][0]],dig_vrt[or_3[di][0]][ax[di][1]],dig_vrt[or_3[di][0]][ax[di][2]]); //a
glVertex3d(dig_vrt[or_3[di][1]][ax[di][0]],dig_vrt[or_3[di][1]][ax[di][1]],dig_vrt[or_3[di][1]][ax[di][2]]); //b
glVertex3d(dig_vrt[or_3[di][2]][ax[di][0]],dig_vrt[or_3[di][2]][ax[di][1]],dig_vrt[or_3[di][2]][ax[di][2]]); //d
glVertex3d(dig_vrt[or_3[di][3]][ax[di][0]],dig_vrt[or_3[di][3]][ax[di][1]],dig_vrt[or_3[di][3]][ax[di][2]]); //c
glVertex3d(dig_vrt[or_3[di][4]][ax[di][0]],dig_vrt[or_3[di][4]][ax[di][1]],dig_vrt[or_3[di][4]][ax[di][2]]); //d
glVertex3d(dig_vrt[or_3[di][5]][ax[di][0]],dig_vrt[or_3[di][5]][ax[di][1]],dig_vrt[or_3[di][5]][ax[di][2]]); //f
glVertex3d(dig_vrt[or_3[di][6]][ax[di][0]],dig_vrt[or_3[di][6]][ax[di][1]],dig_vrt[or_3[di][6]][ax[di][2]]); //e
glEnd();
break;
case '4':
glBegin(GL_LINE_STRIP);
glVertex3d(dig_vrt[or_4[di][0]][ax[di][0]],dig_vrt[or_4[di][0]][ax[di][1]],dig_vrt[or_4[di][0]][ax[di][2]]); //a
glVertex3d(dig_vrt[or_4[di][1]][ax[di][0]],dig_vrt[or_4[di][1]][ax[di][1]],dig_vrt[or_4[di][1]][ax[di][2]]); //c
glVertex3d(dig_vrt[or_4[di][2]][ax[di][0]],dig_vrt[or_4[di][2]][ax[di][1]],dig_vrt[or_4[di][2]][ax[di][2]]); //d
glVertex3d(dig_vrt[or_4[di][3]][ax[di][0]],dig_vrt[or_4[di][3]][ax[di][1]],dig_vrt[or_4[di][3]][ax[di][2]]); //b
glVertex3d(dig_vrt[or_4[di][4]][ax[di][0]],dig_vrt[or_4[di][4]][ax[di][1]],dig_vrt[or_4[di][4]][ax[di][2]]); //f
glEnd();
break;
case '5':
glBegin(GL_LINE_STRIP);
glVertex3d(dig_vrt[or_5[di][0]][ax[di][0]],dig_vrt[or_5[di][0]][ax[di][1]],dig_vrt[or_5[di][0]][ax[di][2]]); //b
glVertex3d(dig_vrt[or_5[di][1]][ax[di][0]],dig_vrt[or_5[di][1]][ax[di][1]],dig_vrt[or_5[di][1]][ax[di][2]]); //a
glVertex3d(dig_vrt[or_5[di][2]][ax[di][0]],dig_vrt[or_5[di][2]][ax[di][1]],dig_vrt[or_5[di][2]][ax[di][2]]); //c
glVertex3d(dig_vrt[or_5[di][3]][ax[di][0]],dig_vrt[or_5[di][3]][ax[di][1]],dig_vrt[or_5[di][3]][ax[di][2]]); //d
glVertex3d(dig_vrt[or_5[di][4]][ax[di][0]],dig_vrt[or_5[di][4]][ax[di][1]],dig_vrt[or_5[di][4]][ax[di][2]]); //f
glVertex3d(dig_vrt[or_5[di][5]][ax[di][0]],dig_vrt[or_5[di][5]][ax[di][1]],dig_vrt[or_5[di][5]][ax[di][2]]); //e
glEnd();
break;
case '6':
glBegin(GL_LINE_STRIP);
glVertex3d(dig_vrt[or_6[di][0]][ax[di][0]],dig_vrt[or_6[di][0]][ax[di][1]],dig_vrt[or_6[di][0]][ax[di][2]]); //b
glVertex3d(dig_vrt[or_6[di][1]][ax[di][0]],dig_vrt[or_6[di][1]][ax[di][1]],dig_vrt[or_6[di][1]][ax[di][2]]); //a
glVertex3d(dig_vrt[or_6[di][2]][ax[di][0]],dig_vrt[or_6[di][2]][ax[di][1]],dig_vrt[or_6[di][2]][ax[di][2]]); //e
glVertex3d(dig_vrt[or_6[di][3]][ax[di][0]],dig_vrt[or_6[di][3]][ax[di][1]],dig_vrt[or_6[di][3]][ax[di][2]]); //f
glVertex3d(dig_vrt[or_6[di][4]][ax[di][0]],dig_vrt[or_6[di][4]][ax[di][1]],dig_vrt[or_6[di][4]][ax[di][2]]); //d
glVertex3d(dig_vrt[or_6[di][5]][ax[di][0]],dig_vrt[or_6[di][5]][ax[di][1]],dig_vrt[or_6[di][5]][ax[di][2]]); //c
glEnd();
break;
case '7':
glBegin(GL_LINE_STRIP);
glVertex3d(dig_vrt[or_7[di][0]][ax[di][0]],dig_vrt[or_7[di][0]][ax[di][1]],dig_vrt[or_7[di][0]][ax[di][2]]); //a
glVertex3d(dig_vrt[or_7[di][1]][ax[di][0]],dig_vrt[or_7[di][1]][ax[di][1]],dig_vrt[or_7[di][1]][ax[di][2]]); //b
glVertex3d(dig_vrt[or_7[di][2]][ax[di][0]],dig_vrt[or_7[di][2]][ax[di][1]],dig_vrt[or_7[di][2]][ax[di][2]]); //e
glEnd();
break;
case '8':
glBegin(GL_LINE_STRIP);
glVertex3d(dig_vrt[2][ax[di][0]],dig_vrt[2][ax[di][1]],dig_vrt[2][ax[di][2]]); //c
glVertex3d(dig_vrt[3][ax[di][0]],dig_vrt[3][ax[di][1]],dig_vrt[3][ax[di][2]]); //d
glVertex3d(dig_vrt[1][ax[di][0]],dig_vrt[1][ax[di][1]],dig_vrt[1][ax[di][2]]); //b
glVertex3d(dig_vrt[0][ax[di][0]],dig_vrt[0][ax[di][1]],dig_vrt[0][ax[di][2]]); //a
glVertex3d(dig_vrt[4][ax[di][0]],dig_vrt[4][ax[di][1]],dig_vrt[4][ax[di][2]]); //e
glVertex3d(dig_vrt[5][ax[di][0]],dig_vrt[5][ax[di][1]],dig_vrt[5][ax[di][2]]); //f
glVertex3d(dig_vrt[3][ax[di][0]],dig_vrt[3][ax[di][1]],dig_vrt[3][ax[di][2]]); //d
glEnd();
break;
case '9':
glBegin(GL_LINE_STRIP);
glVertex3d(dig_vrt[or_9[di][0]][ax[di][0]],dig_vrt[or_9[di][0]][ax[di][1]],dig_vrt[or_9[di][0]][ax[di][2]]); //f
glVertex3d(dig_vrt[or_9[di][1]][ax[di][0]],dig_vrt[or_9[di][1]][ax[di][1]],dig_vrt[or_9[di][1]][ax[di][2]]); //b
glVertex3d(dig_vrt[or_9[di][2]][ax[di][0]],dig_vrt[or_9[di][2]][ax[di][1]],dig_vrt[or_9[di][2]][ax[di][2]]); //a
glVertex3d(dig_vrt[or_9[di][3]][ax[di][0]],dig_vrt[or_9[di][3]][ax[di][1]],dig_vrt[or_9[di][3]][ax[di][2]]); //c
glVertex3d(dig_vrt[or_9[di][4]][ax[di][0]],dig_vrt[or_9[di][4]][ax[di][1]],dig_vrt[or_9[di][4]][ax[di][2]]); //d
glEnd();
break;
case '0':
glBegin(GL_LINE_LOOP);
glVertex3d(dig_vrt[0][ax[di][0]],dig_vrt[0][ax[di][1]],dig_vrt[0][ax[di][2]]); //a
glVertex3d(dig_vrt[1][ax[di][0]],dig_vrt[1][ax[di][1]],dig_vrt[1][ax[di][2]]); //b
glVertex3d(dig_vrt[5][ax[di][0]],dig_vrt[5][ax[di][1]],dig_vrt[5][ax[di][2]]); //f
glVertex3d(dig_vrt[4][ax[di][0]],dig_vrt[4][ax[di][1]],dig_vrt[4][ax[di][2]]); //e
glEnd();
break;
case '-':
glBegin(GL_LINES);
glVertex3d(dig_vrt[2][ax[di][0]],dig_vrt[2][ax[di][1]],dig_vrt[2][ax[di][2]]); //c
glVertex3d(dig_vrt[3][ax[di][0]],dig_vrt[3][ax[di][1]],dig_vrt[3][ax[di][2]]); //d
glEnd();
break;
case '.':
glBegin(GL_LINES);
glVertex3d(dig_vrt[4][ax[di][0]],dig_vrt[4][ax[di][1]],dig_vrt[4][ax[di][2]]); //e
glVertex3d(dig_vrt[5][ax[di][0]],dig_vrt[5][ax[di][1]],dig_vrt[5][ax[di][2]]); //f
glEnd();
break;
}
}
}
}