r563: *** empty log message ***
[ctsim.git] / src / graph3dview.cpp
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          graph3dview.cpp
5 **   Purpose:       3d graph view classes
6 **   Programmer:    Kevin Rosenberg
7 **   Date Started:  Jan 2001
8 **
9 **  This is part of the CTSim program
10 **  Copyright (c) 1983-2001 Kevin Rosenberg
11 **
12 **  $Id: graph3dview.cpp,v 1.14 2001/02/20 22:11:27 kevin Exp $
13 **
14 **  This program is free software; you can redistribute it and/or modify
15 **  it under the terms of the GNU General Public License (version 2) as
16 **  published by the Free Software Foundation.
17 **
18 **  This program is distributed in the hope that it will be useful,
19 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
20 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 **  GNU General Public License for more details.
22 **
23 **  You should have received a copy of the GNU General Public License
24 **  along with this program; if not, write to the Free Software
25 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26 ******************************************************************************/
27
28 #ifdef __GNUG__
29 #pragma implementation
30 #pragma interface
31 #endif
32
33 // For compilers that support precompilation, includes "wx.h".
34 #include "wx/wxprec.h"
35
36 #ifdef __BORLANDC__
37 #pragma hdrstop
38 #endif
39
40 #ifndef WX_PRECOMP
41 #include "wx/wx.h"
42 #endif
43
44 #if wxUSE_GLCANVAS
45
46 #if !wxUSE_GLCANVAS
47 #error Please set wxUSE_GLCANVAS to 1 in setup.h.
48 #endif
49
50 #include "wx/timer.h"
51 #include "wx/glcanvas.h"
52
53 #include <GL/gl.h>
54 #include <GL/glu.h>
55
56 #include "ct.h"
57 #include "ctsim.h"
58 #include "docs.h"
59 #include "views.h"
60 #include "dialogs.h"
61 #include "dlgprojections.h"
62 #include "dlgreconstruct.h"
63 #include "backprojectors.h"
64 #include "reconstruct.h"
65 #include "timer.h"
66
67 #if defined(MSVC) || HAVE_SSTREAM
68 #include <sstream>
69 #else
70 #include <sstream_subst>
71 #endif
72
73 void 
74 Graph3dFileView::intensityToColor (double dIntensity, GLfloat* vecColor)
75 {
76   if (dIntensity < 0 || dIntensity > 1) {
77     vecColor[0] = vecColor[1] = vecColor[2] = 1;
78     return;
79   }
80   
81   float fRange = dIntensity * 5;
82   int iRange = static_cast<int>(floor (fRange));
83   float fFrac = fRange - iRange;
84   
85   // Rainbow: Purple->Blue->Cyan->Green->Yellow->Red = (1,0,1)-(0,0,1)-(0,1,1)-(0,1,0)-(1,1,0)-(1,0,0)
86   switch (iRange) {
87   case 0:
88     vecColor[0] = 1.0f - fFrac; vecColor[1] = 0.0f; vecColor[2] = 1.0f;
89     break;
90   case 1:
91     vecColor[0] = 0.0f; vecColor[1] = fFrac; vecColor[2] = 1.0f;
92     break;
93   case 2:
94     vecColor[0] = 0.0f; vecColor[1] = 1.0f; vecColor[2] = 1.0f - fFrac;
95     break;
96   case 3:
97     vecColor[0] = fFrac; vecColor[1] = 1.0f; vecColor[2] = 0.0f;
98     break;
99   case 4:
100     vecColor[0] = 1.0f; vecColor[1] = 1.0f - fFrac; vecColor[2] = 0.0f;
101     break;
102   case 5:
103     vecColor[0] = 1.0f; vecColor[1] = 0.0f; vecColor[2] = 0.0f;
104     break;
105   }
106 }
107
108 //***********************************************************************
109 // Function: CalculateVectorNormal
110 //
111 // Purpose: Given three points of a 3D plane, this function calculates
112 //          the normal vector of that plane.
113 //
114 // Parameters:
115 //     fVert1[]   == array for 1st point (3 elements are x, y, and z).
116 //     fVert2[]   == array for 2nd point (3 elements are x, y, and z).
117 //     fVert3[]   == array for 3rd point (3 elements are x, y, and z).
118 //
119 // Returns:
120 //     fNormalX   == X vector for the normal vector
121 //     fNormalY   == Y vector for the normal vector
122 //     fNormalZ   == Z vector for the normal vector
123 //*************************************************************************
124
125 void 
126 CalculateVectorNormal (GLfloat fVert1[], GLfloat fVert2[], 
127                        GLfloat fVert3[], GLfloat *fNormalX,
128                        GLfloat *fNormalY, GLfloat *fNormalZ)
129 {
130   GLfloat Qx = fVert2[0] - fVert1[0];
131   GLfloat Qy = fVert2[1] - fVert1[1];
132   GLfloat Qz = fVert2[2] - fVert1[2];
133   GLfloat Px = fVert3[0] - fVert1[0];
134   GLfloat Py = fVert3[1] - fVert1[1];
135   GLfloat Pz = fVert3[2] - fVert1[2];
136   
137   *fNormalX = Py*Qz - Pz*Qy;
138   *fNormalY = Pz*Qx - Px*Qz;
139   *fNormalZ = Px*Qy - Py*Qx;
140   
141
142
143 void 
144 CalculateVectorNormal (GLdouble fVert1[], GLdouble fVert2[], 
145                        GLdouble fVert3[], GLdouble *fNormalX,
146                        GLdouble *fNormalY, GLdouble *fNormalZ)
147 {
148   GLdouble Qx = fVert2[0] - fVert1[0];
149   GLdouble Qy = fVert2[1] - fVert1[1];
150   GLdouble Qz = fVert2[2] - fVert1[2];
151   GLdouble Px = fVert3[0] - fVert1[0];
152   GLdouble Py = fVert3[1] - fVert1[1];
153   GLdouble Pz = fVert3[2] - fVert1[2];
154   
155   *fNormalX = Py*Qz - Pz*Qy;
156   *fNormalY = Pz*Qx - Px*Qz;
157   *fNormalZ = Px*Qy - Py*Qx;
158   
159
160
161 IMPLEMENT_DYNAMIC_CLASS(Graph3dFileView, wxView)
162
163 BEGIN_EVENT_TABLE(Graph3dFileView, wxView)
164 EVT_MENU(IFMENU_FILE_PROPERTIES, Graph3dFileView::OnProperties)
165 EVT_MENU(GRAPH3D_VIEW_LIGHTING, Graph3dFileView::OnLighting)
166 EVT_MENU(GRAPH3D_VIEW_COLOR, Graph3dFileView::OnColor)
167 EVT_MENU(GRAPH3D_VIEW_SMOOTH, Graph3dFileView::OnSmooth)
168 EVT_MENU(GRAPH3D_VIEW_SURFACE, Graph3dFileView::OnSurface)
169 EVT_MENU(GRAPH3D_VIEW_SCALE_MINMAX, Graph3dFileView::OnScaleSet)
170 EVT_MENU(GRAPH3D_VIEW_SCALE_AUTO, Graph3dFileView::OnScaleAuto)
171 EVT_MENU(GRAPH3D_VIEW_SCALE_FULL, Graph3dFileView::OnScaleFull)
172 END_EVENT_TABLE()
173
174 Graph3dFileView::Graph3dFileView ()
175   : m_pFileMenu(NULL), m_pViewMenu(NULL), m_pCanvas(NULL), m_pFrame(NULL)
176 {
177   m_bDoubleBuffer = true;
178   m_bSmooth = true;
179   m_bLighting = true;
180   m_bSurface = true;
181   m_bLighting = true;
182   m_bColor = false;
183   m_dXRotate = -45;
184   m_dYRotate = 0;
185   m_dZRotate = -45;
186   m_bColorScaleMinSet = false;
187   m_bColorScaleMaxSet = false;
188 }
189
190 Graph3dFileView::~Graph3dFileView()
191 {
192   GetDocumentManager()->FileHistoryRemoveMenu (m_pFileMenu);
193   GetDocumentManager()->ActivateView(this, false, true);
194 }
195
196 bool 
197 Graph3dFileView::OnCreate (wxDocument *doc, long WXUNUSED(flags) )
198 {
199   m_pFrame = CreateChildFrame(doc, this);
200   (m_pFrame);
201   
202   int width, height;
203   m_pFrame->GetClientSize (&width, &height);
204   m_pFrame->SetTitle("Graph3dFileView");
205   m_pCanvas = CreateCanvas (m_pFrame);
206   
207   m_pFrame->Show (true);
208   m_pCanvas->SetCurrent();
209   
210   InitGL();
211   
212   int x, y;  // X requires a forced resize
213   m_pFrame->GetSize(&x, &y);
214   m_pFrame->SetSize(-1, -1, x, y);
215   m_pFrame->SetFocus();
216   m_pFrame->Show(true);
217   Activate(true);
218   
219   m_pViewMenu->Check (GRAPH3D_VIEW_COLOR, m_bColor);
220   m_pViewMenu->Check (GRAPH3D_VIEW_LIGHTING, m_bLighting);
221   m_pViewMenu->Check (GRAPH3D_VIEW_SMOOTH, m_bSmooth);
222   m_pViewMenu->Check (GRAPH3D_VIEW_SURFACE, m_bSurface);
223   return true;
224
225
226 Graph3dFileCanvas* 
227 Graph3dFileView::CreateCanvas (wxFrame* parent)
228 {
229   Graph3dFileCanvas* pCanvas;
230   int width, height;
231   parent->GetClientSize (&width, &height);
232   
233   pCanvas = new Graph3dFileCanvas (this, parent, wxPoint(0, 0), wxSize(200, 200), 0);
234   
235   pCanvas->SetBackgroundColour(*wxWHITE);
236   pCanvas->Clear();
237   
238   return pCanvas;
239 }
240
241
242 void
243 Graph3dFileView::DrawSurface()
244 {
245   if (m_bSmooth) {
246     glShadeModel (GL_SMOOTH);
247   } else {
248     glShadeModel (GL_FLAT);
249   }
250   
251   if (m_bLighting) {
252     glEnable (GL_LIGHTING);
253   } else {
254     glDisable (GL_LIGHTING);
255   }
256   
257   if (m_bSurface)
258     glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
259   else
260     glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
261   
262   InitMaterials(); 
263   
264   if (! GetDocument())
265     return;
266   
267   unsigned int nx = GetDocument()->nx();
268   unsigned int ny = GetDocument()->ny();
269   glRotated (m_dZRotate, 0.0, 1.0, 0.0);
270   glRotated (m_dXRotate, 0.0, 0.0, 1.0);
271   glRotated (m_dYRotate, 1.0, 0.0, 0.0);
272   glTranslated (-static_cast<double>(nx - 1) / 2, 0.0, -static_cast<double>(ny - 1) / 2);
273   glCallList (DISPLAYLIST_SURFACE);
274 }
275
276 void
277 Graph3dFileView::CreateDisplayList()
278 {
279   if (! GetDocument())
280     return;
281   
282   unsigned int nx = GetDocument()->nx();
283   unsigned int ny = GetDocument()->ny();
284   const ImageFileArrayConst v = GetDocument()->getArray();
285   if (nx == 0 || ny == 0 || ! v)
286     return;
287   
288   glNewList (DISPLAYLIST_SURFACE, GL_COMPILE);
289   
290   double dMin = m_dColorScaleMin;
291   double dIntensityScale = m_dColorScaleMax - m_dColorScaleMin;
292   double actOffset = m_dGraphMin;
293   double actScale = 0.4 * sqrt(nx*nx+ny*ny) / (m_dGraphMax - m_dGraphMin);
294   double dXOffset = -(static_cast<double>(nx) - 1) / 2.;
295   double dYOffset = -(static_cast<double>(ny) - 1) / 2.;
296   dXOffset = 0;
297   dYOffset = 0;
298
299   if (! m_bColor)
300     glColor3f (1.0f, 1.0f, 1.0f);
301   
302   double dXPos = -dXOffset;
303   for (unsigned ix = 0; ix < nx - 1; ix++, dXPos++) {
304         double dYPos = -dYOffset;
305     glBegin(GL_QUAD_STRIP);
306     double p1[3], p2[3], p3[3];
307     double n1[3]; 
308     p1[0] = dXPos;  p1[1] = actScale * (v[ix][0] + actOffset); p1[2] = dYPos;
309     p2[0] = dXPos+1; p2[1] = actScale * (v[ix+1][0] + actOffset); p2[2] = dYPos; 
310     p3[0] = dXPos; p3[1] = actScale * (v[ix][1] + actOffset); p3[2] = dYPos + 1;
311     CalculateVectorNormal (p1, p2, p3, &n1[0], &n1[1], &n1[2]);
312     double dIntensity1, dIntensity2;
313     if (m_bColor) {
314       dIntensity1 = (v[ix][0] - dMin) / dIntensityScale;
315       dIntensity2 = (v[ix+1][0] - dMin) / dIntensityScale;
316     }
317     float vecColor[3];
318     if (m_bColor) {
319       intensityToColor (dIntensity1, vecColor);
320       glColor3fv (vecColor);
321     }
322     glVertex3dv (p1); 
323     glNormal3dv (n1);                                   
324     if (m_bColor) {
325       intensityToColor (dIntensity2, vecColor);
326       glColor3fv (vecColor);
327     }
328     glVertex3dv (p2); 
329     glNormal3dv (n1);                                   
330     double lastP[3];
331     lastP[0] = ix; lastP[1] = actScale * (v[ix][0] + actOffset); lastP[2] = 0; 
332     for (unsigned int iy = 1; iy < ny - 1; iy++, dYPos++) {       
333       p1[0] = dXPos; p1[1] = actScale * (v[ix][iy] + actOffset); p1[2] = dYPos;
334       p2[0] = dXPos+1;  p2[1] = actScale * (v[ix+1][iy] + actOffset); p2[2] = dYPos;
335       CalculateVectorNormal (p1, p2, lastP, &n1[0], &n1[1], &n1[2]);
336       lastP[0] = p1[0]; lastP[1] = p1[1]; lastP[2] = p1[2];
337       if (m_bColor) {
338         dIntensity1 = (v[ix][iy] - dMin) / dIntensityScale;
339         dIntensity2 = (v[ix+1][iy] - dMin) / dIntensityScale;
340       }
341       if (m_bColor) {
342         intensityToColor (dIntensity1, vecColor);
343         glColor3fv (vecColor);
344       }
345       glVertex3dv (p1); glNormal3dv (n1);                                       
346       if (m_bColor) {
347         intensityToColor (dIntensity2, vecColor);
348         glColor3fv (vecColor);
349       }
350       glVertex3dv (p2); glNormal3dv (n1);                                       
351     }                   
352     glEnd(); // QUAD_STRIP
353   }
354   glEndList();
355 }
356
357
358 void
359 Graph3dFileView::OnProperties (wxCommandEvent& event)
360 {
361   std::ostringstream os;
362   *theApp->getLog() << ">>>>\n" << os.str().c_str() << "<<<<\n";
363   wxMessageDialog dialogMsg (getFrameForChild(), os.str().c_str(), "Imagefile Properties", wxOK | wxICON_INFORMATION);
364   dialogMsg.ShowModal();
365 }
366
367 void
368 Graph3dFileView::OnLighting (wxCommandEvent& event)
369 {
370   m_bLighting = ! m_bLighting;
371   m_pViewMenu->Check (GRAPH3D_VIEW_LIGHTING, m_bLighting);
372   
373   m_pCanvas->Refresh();
374 }
375
376 void
377 Graph3dFileView::OnSurface (wxCommandEvent& event)
378 {
379   m_bSurface = ! m_bSurface;
380   m_pViewMenu->Check (GRAPH3D_VIEW_SURFACE, m_bSurface);
381   m_pCanvas->Refresh();
382 }
383
384 void
385 Graph3dFileView::OnColor (wxCommandEvent& event)
386 {
387   m_bColor = ! m_bColor;
388   m_pViewMenu->Check (GRAPH3D_VIEW_COLOR, m_bColor);
389   OnUpdate (this, NULL);
390 }
391
392 void
393 Graph3dFileView::OnSmooth (wxCommandEvent& event)
394 {
395   m_bSmooth = ! m_bSmooth;
396   m_pViewMenu->Check (GRAPH3D_VIEW_SMOOTH, m_bSmooth);
397   m_pCanvas->Refresh();
398 }
399
400
401
402 void 
403 Graph3dFileView::OnDraw (wxDC* dc)
404 {
405   if (! m_pCanvas)
406     return;
407   m_pCanvas->SetCurrent();
408
409 #ifndef __WXMOTIF__
410   //  if (! m_pCanvas->GetContext()) return;
411 #endif
412   
413   Draw();
414   std::ostringstream os;
415   os << "Xangle=" << m_dXRotate << ", Yangle=" << m_dYRotate << ", Zangle=" << m_dZRotate;
416   m_pStatusBar->SetStatusText (os.str().c_str());
417   m_pCanvas->SwapBuffers();
418 }
419
420
421 void 
422 Graph3dFileView::Draw ()
423 {
424   glClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT );
425   glPushMatrix();
426   DrawSurface();  
427   glPopMatrix();
428   glFlush();
429 }
430
431
432 void
433 Graph3dFileView::InitMaterials()
434 {
435   if (! GetDocument())
436     return;
437   int nx = GetDocument()->nx();
438   int ny = GetDocument()->ny();
439   
440 #if 1
441   static float ambient[] = {0.1f, 0.1f, 0.1f, 1.0f};
442   static float diffuse[] = {1.0f, 1.0f, 1.0f, 1.0f};
443   static float position0[] = {-nx/2, -ny/2, -ny/2, 0.0f, 0.0f};
444   static float position1[] = {-nx/2, -ny/2, ny/2, 0.0f};
445   static float ambient1[] = {0.5f, 0.5f, 0.5f, 1.0f};
446   static float diffuse1[] = {1.0f, 1.0f, 1.0f, 1.0f};
447   //  static float position0[] = {0.0f, 0.0f, 20.0f, 0.0f};
448   //  static float position1[] = {0.0f, 0.0f, -20.0f, 0.0f};
449   static float front_mat_shininess[] = {5.0f};
450   static float front_mat_specular[] = {0.1f, 0.1f, 0.1f, 1.0f};
451   static float front_mat_diffuse[] = {0.3f, 0.3f, 0.3f, 1.0f};
452   /*
453   static float back_mat_shininess[] = {60.0f};
454   static float back_mat_specular[] = {0.2f, 0.2f, 0.2f, 1.0f};
455   static float back_mat_diffuse[] = {1.0f, 1.0f, 1.0f, 1.0f};
456   */
457   static float lmodel_ambient[] = {1.0f, 1.0f, 1.0f, 1.0f};
458   static float lmodel_twoside[] = {GL_FALSE};
459   
460   glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
461   glHint(GL_LINE_SMOOTH, GL_DONT_CARE);
462   glEnable(GL_NORMALIZE);
463   
464   glLightfv (GL_LIGHT0, GL_AMBIENT, ambient);
465   glLightfv (GL_LIGHT0, GL_DIFFUSE, diffuse);
466   glLightfv (GL_LIGHT0, GL_POSITION, position0);
467   glEnable (GL_LIGHT0);
468   
469   glLightfv (GL_LIGHT1, GL_AMBIENT, ambient1);
470   glLightfv (GL_LIGHT1, GL_DIFFUSE, diffuse1);
471   glLightfv (GL_LIGHT1, GL_POSITION, position1);
472   glEnable (GL_LIGHT1);
473   
474   glLightModelfv (GL_LIGHT_MODEL_AMBIENT, lmodel_ambient);
475   glLightModelfv (GL_LIGHT_MODEL_TWO_SIDE, lmodel_twoside);
476   
477   glMaterialfv (GL_FRONT_AND_BACK, GL_SHININESS, front_mat_shininess);
478   glMaterialfv (GL_FRONT_AND_BACK, GL_SPECULAR, front_mat_specular);
479   glMaterialfv (GL_FRONT_AND_BACK, GL_DIFFUSE, front_mat_diffuse);
480   
481   glColorMaterial (GL_FRONT_AND_BACK, GL_DIFFUSE);
482   //  glColorMaterial (GL_FRONT_AND_BACK, GL_SPECULAR);
483   glEnable(GL_COLOR_MATERIAL);
484 #else
485   GLfloat impLPos[]  = {1.0f, 1.0f, 1.0f, 0.0f};
486   
487   GLfloat defaultLightAmb   [] = {.2f, .2f, .2f, 1.0f};
488   GLfloat defaultLightDiff  [] = {.2f, .2f, .2f, 1.0f};
489   GLfloat defaultLightSpec  [] = { .3f, .3f, .3f, 1.0f};
490   
491   GLfloat defaultGlobalAmb [] = {.3f, .3f, .3f, 1.0f};
492   GLfloat defaultGlobalDiff[] = {.3f, .3f, .3f, 1.0f};
493   
494   GLfloat defaultMatShine[] = {  30.0f };
495   GLfloat defaultMatSpec[]  = { .4f, .4f, .4f, 1.0f};
496   GLfloat defaultMatAmb[]   = { .3f, .3f, .3f, 1.0f};
497   GLfloat defaultMatDiff[]  = { .5f, .5f, .5f, 1.0f};
498   
499   GLfloat brassMatAmb[]   = { .33f, .22f, .03f, 1.0f};
500   GLfloat brassMatDiff[]  = { .78f, .57f, .11f, 1.0f};
501   GLfloat brassMatSpec[]  = { .99f, .91f, .81f, 1.0f};
502   GLfloat brassMatShine[] = {  27.8f };
503   
504   GLfloat emeraldMatAmb[]   = { .02f1, .1745f , .021f, 1.0f };
505   GLfloat emeraldMatDiff[]  = { .075f, .6142f , .075f, 1.0f };
506   GLfloat emeraldMatSpec[]  = { .633f, .7278f , .633f, 1.0f };
507   GLfloat emeraldMatShine[] = {  76.8f };
508   
509   GLfloat slateMatAmb[]   = { .02f, .02f , .02f, 1.0f };
510   GLfloat slateMatDiff[]  = { .02f, .01f , .01f, 1.0f };
511   GLfloat slateMatSpec[]  = { .4f,  .4f ,  .4f , 1.0f };
512   GLfloat slateMatShine[] = { .768f };
513   
514   //       double opnX = nx, opnY = ny, opnZ = z;
515   //       eyeX = 1; eyeY = 1, eyeZ = 1;
516   
517   impLPos[0] = nx/2.; impLPos[1]= ny/2.; impLPos[2] = 0.;
518   //opnListNum = 1;
519   //impGraphicsFlag = IMP__3D;
520   
521   //       glutInitDisplayMode (GLUT_DOUBLE| GLUT_RGB | GLUT_DEPTH | GLUT_ACCUM);
522   //       glutInitWindowSize (IMP_WIN_X, IMP_WIN_Y);
523   //  glutInitWindowPosition (100, 100);
524   //       glutCreateWindow ("- imp3D graphics -" );
525   
526   glClearColor (0.0f, 0.0f, 0.0f, 0.0f);
527   
528   glShadeModel (GL_SMOOTH);
529   glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
530   glHint(GL_LINE_SMOOTH, GL_DONT_CARE);
531   glEnable(GL_NORMALIZE);
532   
533   
534   glEnable(GL_DEPTH_TEST);
535   
536   glLightfv(GL_LIGHT0, GL_AMBIENT, defaultLightAmb);
537   glLightfv(GL_LIGHT0, GL_DIFFUSE, defaultLightDiff);
538   glLightfv(GL_LIGHT0, GL_SPECULAR,defaultLightSpec);
539   
540   glLightfv(GL_LIGHT1, GL_AMBIENT, defaultLightAmb);
541   glLightfv(GL_LIGHT1, GL_DIFFUSE, defaultLightDiff);
542   glLightfv(GL_LIGHT1, GL_SPECULAR,defaultLightSpec);
543   
544   glLightfv(GL_LIGHT2, GL_AMBIENT , defaultLightAmb);
545   glLightfv(GL_LIGHT2, GL_DIFFUSE , defaultLightDiff);
546   glLightfv(GL_LIGHT2, GL_SPECULAR, defaultLightSpec);
547   
548   glLightfv(GL_LIGHT0, GL_POSITION,impLPos);
549   glLightfv(GL_LIGHT1, GL_POSITION,impLPos);
550   glLightfv(GL_LIGHT2, GL_POSITION,impLPos);
551   
552   glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT  , defaultMatAmb);
553   glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE  , defaultMatDiff);
554   glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR , defaultMatSpec);
555   glMaterialfv(GL_FRONT_AND_BACK, GL_SHININESS, defaultMatShine);
556   
557   glLightModelfv(GL_LIGHT_MODEL_AMBIENT, defaultGlobalAmb);
558   
559   glColorMaterial(GL_FRONT_AND_BACK, GL_DIFFUSE);
560   
561   glEnable(GL_COLOR_MATERIAL);
562   
563   glEnable(GL_LIGHTING);
564   glEnable(GL_LIGHT1);
565   glEnable(GL_LIGHT2);
566   glEnable(GL_LIGHT0);
567 #endif
568   
569 }
570
571
572 void 
573 Graph3dFileView::InitGL ()
574 {
575   glClearColor (0.0f, 0.0f, 0.0f, 0.0f);
576   
577   glDisable (GL_CULL_FACE);
578   glEnable (GL_DEPTH_TEST);
579   
580 }
581
582 void 
583 Graph3dFileView::OnUpdate (wxView *WXUNUSED(sender), wxObject *WXUNUSED(hint) )
584 {
585   if (! GetDocument())
586     return;
587   
588   int nx = GetDocument()->nx();
589   int ny = GetDocument()->ny();
590   const ImageFileArrayConst v = GetDocument()->getArray();
591   if (v != NULL && nx != 0 && ny != 0) {
592     double min = v[0][0];
593     double max = min;
594     for (unsigned int ix = 0; ix < nx; ix++)
595       for (unsigned int iy = 0; iy < ny; iy++) {
596         double dVal = v[ix][iy];
597         if (min > dVal)
598           min = dVal;
599         else if (max < dVal)
600           max = dVal;
601       }
602       m_dGraphMin = min;
603       m_dGraphMax = max;
604       if (! m_bColorScaleMinSet)
605         m_dColorScaleMin = min;
606       if (! m_bColorScaleMaxSet)
607         m_dColorScaleMax = max;  
608   }
609   
610   double dRadius = maxValue<int> (nx, ny) * SQRT2 / 2;
611   glMatrixMode(GL_PROJECTION);
612   glLoadIdentity();
613   glOrtho (-dRadius, dRadius, -dRadius, dRadius, dRadius*5, -dRadius*5);
614   
615   glMatrixMode(GL_MODELVIEW);
616   glLoadIdentity();
617 #if 1
618   GLfloat eyep[3], lookp[3], up[3];
619   eyep[0] = -nx/2; eyep[1] = 0; eyep[2] = -ny/2;
620   lookp[0] = 0; lookp[1] = 0, lookp[2] = 0;
621   up[0] = 0; up[1] = 1; up[2] = 0;
622   gluLookAt (eyep[0], eyep[1], eyep[2], lookp[0], lookp[1], lookp[2], up[0], up[1], up[2]);
623 #endif
624   
625   CreateDisplayList();
626   
627   if (m_pCanvas)
628     m_pCanvas->Refresh();
629 }
630
631 bool 
632 Graph3dFileView::OnClose (bool deleteWindow)
633 {
634   if (! GetDocument() || ! GetDocument()->Close())
635     return false;
636   
637   Activate (false);
638   if (m_pCanvas) {
639     m_pCanvas->setView(NULL);
640     m_pCanvas = NULL;
641   }
642   wxString s(theApp->GetAppName());
643   if (m_pFrame)
644     m_pFrame->SetTitle(s);
645   
646   SetFrame(NULL);
647   
648   if (deleteWindow) {
649     delete m_pFrame;
650     m_pFrame = NULL;
651   }
652   
653   return true;
654 }
655
656 void 
657 Graph3dFileView::OnScaleAuto (wxCommandEvent& event)
658 {
659 #if 0
660   const ImageFile& rIF = GetDocument()->getImageFile();
661   double min, max, mean, mode, median, stddev;
662   rIF.statistics(min, max, mean, mode, median, stddev);
663   DialogAutoScaleParameters dialogAutoScale (getFrameForChild(), mean, mode, median, stddev, m_dAutoScaleFactor);
664   int iRetVal = dialogAutoScale.ShowModal();
665   if (iRetVal == wxID_OK) {
666     m_bMinSpecified = true;
667     m_bMaxSpecified = true;
668     double dMin, dMax;
669     if (dialogAutoScale.getMinMax (&dMin, &dMax)) {
670       m_dMinPixel = dMin;
671       m_dMaxPixel = dMax;
672       m_dAutoScaleFactor = dialogAutoScale.getAutoScaleFactor();
673       OnUpdate (this, NULL);
674     }
675   }
676 #endif
677 }
678
679 void 
680 Graph3dFileView::OnScaleSet (wxCommandEvent& event)
681 {
682   if (! GetDocument())
683     return;
684   
685   unsigned int nx = GetDocument()->nx();
686   unsigned int ny = GetDocument()->ny();
687   const ImageFileArrayConst v = GetDocument()->getArray();
688   double dMin, dMax;
689   if (! m_bColorScaleMinSet && ! m_bColorScaleMaxSet) {
690     dMax = dMin = v[0][0];
691     for (unsigned ix = 0; ix < nx; ix++)
692       for (unsigned int iy = 0; iy < ny; iy++)
693         if (v[ix][iy] < dMin)
694           dMin = v[ix][iy];
695         else if (v[ix][iy] > dMax)
696           dMax = v[ix][iy];
697   }
698   if (m_bColorScaleMinSet)
699     dMin = m_dColorScaleMin;
700   if (m_bColorScaleMaxSet)
701     dMax = m_dColorScaleMax;
702   
703   DialogGetMinMax dialogMinMax (getFrameForChild(), "Set Color Scale Minimum & Maximum", dMin, dMax);
704   int retVal = dialogMinMax.ShowModal();
705   if (retVal == wxID_OK) {
706     m_bColorScaleMinSet = true;
707     m_bColorScaleMaxSet = true;
708     m_dColorScaleMin = dialogMinMax.getMinimum();
709     m_dColorScaleMax = dialogMinMax.getMaximum();
710     OnUpdate (this, NULL);
711   }
712 }
713
714 void 
715 Graph3dFileView::OnScaleFull (wxCommandEvent& event)
716 {
717   if (m_bColorScaleMinSet || m_bColorScaleMaxSet) {
718     m_bColorScaleMinSet = false;
719     m_bColorScaleMaxSet = false;
720     OnUpdate (this, NULL);
721   }
722 }
723
724 #if CTSIM_MDI
725 wxDocMDIChildFrame*
726 #else
727 wxDocChildFrame*
728 #endif
729 Graph3dFileView::CreateChildFrame (wxDocument *doc, wxView *view)
730 {
731 #if CTSIM_MDI
732   wxDocMDIChildFrame* subframe = new wxDocMDIChildFrame (doc, view, theApp->getMainFrame(), -1, "Graph3dFile Frame", wxPoint(-1, -1), wxSize(0, 0), wxDEFAULT_FRAME_STYLE);
733 #else
734   wxDocChildFrame* subframe = new wxDocChildFrame (doc, view, theApp->getMainFrame(), -1, "Graph3dFile Frame", wxPoint(-1, -1), wxSize(0, 0), wxDEFAULT_FRAME_STYLE);
735 #endif
736   theApp->setIconForFrame (subframe);
737   
738   m_pStatusBar = new wxStatusBar (subframe, -1);
739   subframe->SetStatusBar (m_pStatusBar);
740   
741   m_pFileMenu = new wxMenu;
742   
743   m_pFileMenu->Append(MAINMENU_FILE_CREATE_PHANTOM, "Cr&eate Phantom...\tCtrl-P");
744   m_pFileMenu->Append(MAINMENU_FILE_CREATE_FILTER, "Create &Filter...\tCtrl-F");
745   m_pFileMenu->Append(wxID_OPEN, "&Open...\tCtrl-O");
746   m_pFileMenu->Append(wxID_CLOSE, "&Close\tCtrl-W");
747   
748   m_pFileMenu->AppendSeparator();
749   m_pFileMenu->Append(IFMENU_FILE_PROPERTIES, "P&roperties");
750   
751   m_pFileMenu->AppendSeparator();
752   m_pFileMenu->Append(wxID_PRINT, "&Print...");
753   m_pFileMenu->Append(wxID_PRINT_SETUP, "Print &Setup...");
754   m_pFileMenu->Append(wxID_PREVIEW, "Print Preview");
755 #ifdef CTSIM_MDI
756   m_pFileMenu->AppendSeparator();
757   m_pFileMenu->Append(MAINMENU_FILE_EXIT, "E&xit");
758 #endif
759   GetDocumentManager()->FileHistoryAddFilesToMenu(m_pFileMenu);
760   GetDocumentManager()->FileHistoryUseMenu(m_pFileMenu);
761   
762   m_pViewMenu = new wxMenu;
763   m_pViewMenu->Append(GRAPH3D_VIEW_SURFACE, "Su&rface\tCtrl-R", "", true);
764   m_pViewMenu->Append(GRAPH3D_VIEW_SMOOTH, "S&mooth\tCtrl-M", "", true);
765   m_pViewMenu->Append(GRAPH3D_VIEW_COLOR, "Co&lor\tCtrl-L", "", true);
766   m_pViewMenu->Append(GRAPH3D_VIEW_LIGHTING, "Li&ghting\tCtrl-G", "", true);
767   m_pViewMenu->AppendSeparator();
768   m_pViewMenu->Append(GRAPH3D_VIEW_SCALE_MINMAX, "Color Scale S&et Min/Max...\tCtrl-E");
769   m_pViewMenu->Append(GRAPH3D_VIEW_SCALE_AUTO, "Color Scale &Auto...\tCtrl-A");
770   m_pViewMenu->Append(GRAPH3D_VIEW_SCALE_FULL, "Color F&ull Scale\tCtrl-U");
771   
772   
773   wxMenu *help_menu = new wxMenu;
774   help_menu->Append(MAINMENU_HELP_CONTENTS, "&Contents\tF1");
775   help_menu->Append(MAINMENU_HELP_ABOUT, "&About");
776   
777   wxMenuBar *menu_bar = new wxMenuBar;
778   
779   menu_bar->Append(m_pFileMenu, "&File");
780   menu_bar->Append(m_pViewMenu, "&View");
781   menu_bar->Append(help_menu, "&Help");
782   
783   subframe->SetMenuBar(menu_bar);
784   
785   subframe->Centre(wxBOTH);
786
787   wxAcceleratorEntry accelEntries[7];
788   accelEntries[0].Set (wxACCEL_CTRL, static_cast<int>('R'), GRAPH3D_VIEW_SURFACE);
789   accelEntries[1].Set (wxACCEL_CTRL, static_cast<int>('L'), GRAPH3D_VIEW_COLOR);
790   accelEntries[2].Set (wxACCEL_CTRL, static_cast<int>('G'), GRAPH3D_VIEW_LIGHTING);
791   accelEntries[3].Set (wxACCEL_CTRL, static_cast<int>('M'), GRAPH3D_VIEW_SMOOTH);
792   accelEntries[4].Set (wxACCEL_CTRL, static_cast<int>('E'), GRAPH3D_VIEW_SCALE_MINMAX);
793   accelEntries[5].Set (wxACCEL_CTRL, static_cast<int>('A'), GRAPH3D_VIEW_SCALE_AUTO);
794   accelEntries[6].Set (wxACCEL_CTRL, static_cast<int>('U'), GRAPH3D_VIEW_SCALE_FULL);
795   wxAcceleratorTable accelTable (7, accelEntries);
796   subframe->SetAcceleratorTable (accelTable);
797
798   return subframe;
799 }
800
801
802
803 BEGIN_EVENT_TABLE(Graph3dFileCanvas, wxGLCanvas)
804 EVT_SIZE(Graph3dFileCanvas::OnSize)
805 EVT_PAINT(Graph3dFileCanvas::OnPaint)
806 EVT_CHAR(Graph3dFileCanvas::OnChar)
807 EVT_MOUSE_EVENTS(Graph3dFileCanvas::OnMouseEvent)
808 EVT_ERASE_BACKGROUND(Graph3dFileCanvas::OnEraseBackground)
809 END_EVENT_TABLE()
810
811
812
813
814 Graph3dFileCanvas::Graph3dFileCanvas (Graph3dFileView* view, wxWindow *parent, const wxPoint& pos, 
815                                       const wxSize& size, long style):
816 wxGLCanvas (parent, -1, pos, size, style, _T("Graph3dCanvas")
817                         ), m_pView(view)
818 {
819   parent->Show (true);
820   SetCurrent();
821 #if 0
822   // Make sure server supports the vertex array extension 
823   char* extensions = (char *) glGetString( GL_EXTENSIONS );
824   if (!extensions || !strstr( extensions, "GL_EXT_vertex_array" )) {
825     m_pView->m_bUseVertexArrays = GL_FALSE;
826   }
827 #endif
828 }
829
830
831 Graph3dFileCanvas::~Graph3dFileCanvas()
832 {
833 }
834
835 void 
836 Graph3dFileCanvas::OnDraw (wxDC& dc)
837 {
838   if (m_pView)
839     m_pView->OnDraw(& dc);
840 }
841
842 void 
843 Graph3dFileCanvas::OnSize (wxSizeEvent& event)
844 {
845 #ifndef __WXMOTIF__
846   if (!GetContext()) return;
847 #endif
848   
849   SetCurrent();
850   int width, height;
851   GetClientSize (&width, &height);
852   Reshape (width, height);
853 }
854
855 void 
856 Graph3dFileCanvas::OnChar(wxKeyEvent& event)
857 {
858   if (! m_pView)
859     return;
860   
861   wxCommandEvent dummyEvent;
862   switch (event.KeyCode()) {
863   case WXK_LEFT:
864         m_pView->m_dZRotate += 15.0;
865     Refresh (false);
866     break;
867   case WXK_RIGHT:
868     m_pView->m_dZRotate -= 15.0;
869     Refresh (false);
870     break;
871   case WXK_UP:
872     m_pView->m_dXRotate += 15.0;
873     Refresh (false);
874     break;
875   case WXK_DOWN:
876     m_pView->m_dXRotate -= 15.0;
877     Refresh (false);
878     break;
879   case 'y': case 'Y':
880     m_pView->m_dYRotate += 15.0;
881     Refresh (false);
882     break;
883   case 't': case 'T':
884     m_pView->m_dYRotate -= 15.0;
885     Refresh (false);
886     break;
887   case 'r': case 'R':
888     m_pView->OnSurface (dummyEvent);
889     break;
890   case 's': case 'S':
891     m_pView->OnSmooth (dummyEvent);
892     break;
893   case 'l': case 'L':
894     m_pView->OnLighting (dummyEvent);
895     break;
896   case 'c': case 'C':
897     m_pView->OnColor (dummyEvent);
898     break;
899   default:
900     event.Skip();
901     return;
902   }
903 }
904
905 void
906 Graph3dFileCanvas::Reshape (int width, int height)
907 {
908   glViewport (0, 0, (GLint)width, (GLint)height);
909 }
910
911
912 void 
913 Graph3dFileCanvas::OnMouseEvent(wxMouseEvent& event)
914 {
915   static int dragging = 0;
916   static float last_x, last_y;
917   
918   if (! m_pView)
919     return;
920   
921   if(event.LeftIsDown()) {
922     if(! dragging) {
923       dragging = 1;
924     } else {
925       m_pView->m_dXRotate -= (event.GetY() - last_y)*1.0;
926       m_pView->m_dZRotate += (event.GetX() - last_x)*1.0;
927       Refresh (false);
928     }
929     last_x = event.GetX();
930     last_y = event.GetY();
931   } else
932     dragging = 0;
933 }
934
935 void 
936 Graph3dFileCanvas::OnEraseBackground(wxEraseEvent& event)
937 {
938   // Do nothing: avoid flashing.
939 }
940
941
942 #endif // wxUSE_GLCANVAS