r450: Fixed tick-labels
[ctsim.git] / src / dlgreconstruct.cpp
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          dlgreconstruct.cpp
5 **   Purpose:       Reconstruction Animation Dialog
6 **   Programmer:    Kevin Rosenberg
7 **   Date Started:  August 2000
8 **
9 **  This is part of the CTSim program
10 **  Copyright (C) 1983-2000 Kevin Rosenberg
11 **
12 **  $Id: dlgreconstruct.cpp,v 1.14 2001/01/27 21:02:20 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 "dlgreconstruct.h"
30 #endif
31
32 // For compilers that support precompilation, includes "wx.h".
33 #include "wx/wxprec.h"
34
35 #ifdef __BORLANDC__
36 #pragma hdrstop
37 #endif
38
39 #include "wx/utils.h"
40 #include "wx/frame.h"
41 #include "wx/button.h"
42 #include "wx/stattext.h"
43 #include "wx/layout.h"
44 #include "wx/event.h"
45 #include "wx/intl.h"
46 #include "wx/settings.h"
47 #include "wx/dcclient.h"
48 #include "wx/timer.h"
49 #include "wx/image.h"
50
51 #include "dlgreconstruct.h"
52 #include <algorithm>
53 #include "ct.h"
54
55
56 static const int LAYOUT_X_MARGIN = 4;
57 static const int LAYOUT_Y_MARGIN = 4;
58
59
60 const int ReconstructDialog::ID_BTN_PAUSE = 19998;
61 const int ReconstructDialog::ID_BTN_STEP = 19999;
62 const int ReconstructDialog::MAX_IMAGE_X = 400;
63 const int ReconstructDialog::MAX_IMAGE_Y = 400;
64
65
66 BEGIN_EVENT_TABLE(ReconstructDialog, wxDialog)
67 EVT_BUTTON(wxID_CANCEL, ReconstructDialog::OnCancel)
68 EVT_BUTTON(ID_BTN_PAUSE, ReconstructDialog::OnPause)
69 EVT_BUTTON(ID_BTN_STEP, ReconstructDialog::OnStep)
70 EVT_CLOSE(ReconstructDialog::OnClose)
71 EVT_PAINT(ReconstructDialog::OnPaint)
72 END_EVENT_TABLE()
73
74 IMPLEMENT_CLASS(ReconstructDialog, wxDialog)
75
76
77 ReconstructDialog::ReconstructDialog (Reconstructor& rReconstruct, const Projections& rProj, ImageFile& rIF, const int iTrace, wxWindow *parent)
78 : wxDialog(parent, -1, "Reconstruction", wxDefaultPosition), m_rReconstructor(rReconstruct), m_rProjections(rProj), m_rImageFile(rIF), m_pSGPDriver(NULL), m_pSGP(NULL), m_iTrace(iTrace), m_pDC(NULL), m_btnAbort(0), m_btnPause(0), m_btnStep(0)
79 {
80     m_state = Continue;
81     m_iLastView = -1;
82     m_parentTop = parent;
83     while ( m_parentTop && m_parentTop->GetParent() )
84         m_parentTop = m_parentTop->GetParent();
85     
86     m_btnAbort = new wxButton(this, wxID_CANCEL, _("Cancel"));
87     wxLayoutConstraints* c = new wxLayoutConstraints;
88     c->right.SameAs(this, wxRight, 2*LAYOUT_X_MARGIN);
89     c->bottom.SameAs(this, wxBottom, 2*LAYOUT_Y_MARGIN);
90         
91     wxSize sizeBtn = wxButton::GetDefaultSize();
92     c->width.Absolute(sizeBtn.x);
93     c->height.Absolute(sizeBtn.y);
94         
95     m_btnAbort->SetConstraints(c);
96         
97     m_btnPause = new wxButton (this, ID_BTN_PAUSE, wxString("Pause"));
98     wxLayoutConstraints* cPause = new wxLayoutConstraints;
99     cPause->right.SameAs(this, wxRight, 3*LAYOUT_X_MARGIN + sizeBtn.x);
100     cPause->bottom.SameAs(this, wxBottom, 2*LAYOUT_Y_MARGIN);
101     cPause->width.Absolute(sizeBtn.x);
102     cPause->height.Absolute(sizeBtn.y);
103     m_btnPause->SetConstraints(cPause);
104         
105     m_btnStep = new wxButton (this, ID_BTN_STEP, wxString("Step"));
106     wxLayoutConstraints* cStep = new wxLayoutConstraints;
107     cStep->right.SameAs(this, wxRight, 5*LAYOUT_X_MARGIN + sizeBtn.x * 2);
108     cStep->bottom.SameAs(this, wxBottom, 2*LAYOUT_Y_MARGIN);
109     cStep->width.Absolute(sizeBtn.x);
110     cStep->height.Absolute(sizeBtn.y);
111     m_btnStep->SetConstraints(cStep);
112         
113     SetAutoLayout(TRUE);
114     Layout();
115         
116     m_nxGraph = 500;
117     m_nyGraph = 500;
118     wxSize sizeDlg (m_nxGraph, m_nyGraph);
119     m_nxImage = m_rImageFile.nx();
120     if (m_nxImage > MAX_IMAGE_X)
121                 m_nxImage = MAX_IMAGE_X;
122     m_nyImage = m_rImageFile.ny();
123     if (m_nyImage > MAX_IMAGE_Y)
124                 m_nyImage = MAX_IMAGE_Y;
125         
126     sizeDlg.x += m_nxImage;
127     sizeDlg.y = max (sizeDlg.y, m_nyImage);
128         
129     m_iClientX = sizeDlg.x;
130     m_iClientY = sizeDlg.y;
131     SetClientSize (sizeDlg);
132         
133     Centre(wxCENTER_FRAME | wxBOTH);
134         
135     if ( m_parentTop )
136                 m_parentTop->Enable(FALSE);
137         
138     Show(TRUE);
139     Enable(TRUE); // enable this window
140         
141     m_bitmap.Create (m_iClientX, m_iClientY); // save a copy of screen
142     m_pDC = dynamic_cast<wxDC*> (new wxClientDC (this));
143     int x, y;
144     this->GetClientSize(&x, &y);
145     m_pSGPDriver = new SGPDriver (m_pDC, x, y);
146     m_pSGP = new SGP (*m_pSGPDriver);
147         
148     wxYield();     // Update the display
149         
150     m_pSGPDriver->idWX()->SetFont(*wxSWISS_FONT);
151 }
152
153 void
154 ReconstructDialog::showView (int iViewNumber, bool bBackprojectView)
155 {
156         if ( iViewNumber < m_rProjections.nView() ) {
157                 m_iLastView = iViewNumber;
158                 ::wxYield();        // update the display
159                 m_pSGP->eraseWindow();
160                 m_btnPause->Refresh();
161                 m_btnStep->Refresh();
162                 m_btnAbort->Refresh();
163
164                 char szProgress [256];
165                 snprintf (szProgress, sizeof(szProgress), "Reconstructing View %d (%.1f%%)", iViewNumber, 100 * iViewNumber / static_cast<double>(m_rProjections.nView()));
166                 m_pSGP->setViewport (0, 0, 1, 1);
167                 m_pSGP->setWindow (0, 0, 1, 1);
168                 m_pSGP->setTextColor (C_LTRED, -1);
169                 double dCharHeight = m_pSGP->getCharHeight();
170                 m_pSGP->setTextSize (dCharHeight * 2);
171                 m_pSGP->moveAbs(0., m_pSGP->getCharHeight());
172                 m_pSGP->drawText (szProgress);
173                 m_pSGP->setTextSize (dCharHeight);
174                 
175                 // m_pSGP->setViewport (0.0, 0.1, 0.66, 1.); // viewport equiv now done in subroutine
176                 m_rReconstructor.reconstructView (iViewNumber, 1, m_pSGP, bBackprojectView);
177                 
178                 ImageFileArrayConst v = m_rImageFile.getArray();
179                 int xBase = m_nxGraph;
180                 int yBase = 0;
181                 if (m_nyGraph > m_nyImage)
182                         yBase = (m_nyGraph - m_nyImage) / 2;
183                 double minValue = v[0][0];
184                 double maxValue = v[0][0];
185                 for (int ix = 0; ix < m_nxImage; ix++) {
186                         for (int iy = 0; iy < m_nyImage; iy++) {
187                                 double dPixel = v[ix][iy];
188                                 if (dPixel < minValue)
189                                         minValue = dPixel;
190                                 else if (dPixel > maxValue)
191                                         maxValue = dPixel;
192                         }
193                 }
194                 unsigned char* imageData = new unsigned char [m_nxImage * m_nyImage * 3];
195                 double dScale = 255 / (maxValue - minValue);
196                 for (int ix2 = 0; ix2 < m_nxImage; ix2++) {
197                         for (int iy = 0; iy < m_nyImage; iy++) {
198                                 double dPixel = v[ix2][iy];
199                                 dPixel = (dPixel - minValue) * dScale;
200                                 int intensity = nearest<int>(dPixel);
201                                 intensity = clamp (intensity, 0, 255);
202                                 int baseAddr = ((m_nyImage - 1 - iy) * m_nxImage + ix2) * 3;
203                                 imageData[baseAddr] = imageData[baseAddr+1] = imageData[baseAddr+2] = intensity;
204                         }
205                 }
206                 wxImage image (m_nxImage, m_nyImage, imageData, true);
207                 wxBitmap bitmap = image.ConvertToBitmap();
208                 m_pSGP->getDriver().idWX()->DrawBitmap(bitmap, xBase, yBase, false);
209                 delete imageData;
210         }
211 }
212
213 bool
214 ReconstructDialog::reconstructView (int iViewNumber, bool bBackproject)
215 {
216         if (iViewNumber <= m_iLastView)  // have already done this view
217                 return true;
218         
219         if (iViewNumber < m_rProjections.nView()) {
220                 ::wxYield();        // update the display
221                 showView (iViewNumber, bBackproject);
222                 ::wxYield();        // update the display
223                 if (m_iTrace >= Trace::TRACE_PLOT) {
224                         ::wxUsleep(250);
225                 }
226         } else {
227                 m_state = Finished;    // so that we return TRUE below and 
228         }                        // that [Cancel] handler knew what to do
229         
230         ::wxYield();        // update the display
231         return m_state != Cancelled;
232 }
233
234
235 // EVENT HANDLERS
236
237 void ReconstructDialog::OnCancel (wxCommandEvent& event)
238 {
239         if ( m_state == Finished ) {
240                 // this means that the count down is already finished and we're being
241                 // shown as a modal dialog - so just let the default handler do the job
242                 event.Skip();
243         } else {
244                 // request to cancel was received, the next time Update() is called we
245                 // will handle it
246                 m_state = Cancelled;
247                 
248                 // update the button state immediately so that the user knows that the
249                 // request has been noticed
250                 m_btnAbort->Disable();
251         }
252 }
253
254
255 void 
256 ReconstructDialog::OnPause (wxCommandEvent& event)
257 {
258         if ( m_state == Finished ) {
259                 // this means that the count down is already finished and we're being
260                 // shown as a modal dialog - so just let the default handler do the job
261                 event.Skip();
262         } else if (m_state == Continue) {
263                 m_memoryDC.SelectObject (m_bitmap);       // in memoryDC
264                 m_pSGP->setDC (&m_memoryDC);
265                 m_memoryDC.SetFont (*wxSWISS_FONT);
266                 showView (m_iLastView, false);
267                 m_state = Paused;
268                 m_btnPause->SetLabel (wxString("Resume"));
269                 m_pSGP->setDC (m_pDC);
270                 m_memoryDC.SelectObject(wxNullBitmap);
271         } else if (m_state == Paused) {
272                 m_state = Continue;
273                 m_btnPause->SetLabel (wxString("Pause"));
274         }
275 }
276
277
278 void 
279 ReconstructDialog::OnStep (wxCommandEvent& event)
280 {
281         if ( m_state == Finished ) {
282                 event.Skip();
283         } else if (m_state == Continue) {
284                 m_memoryDC.SelectObject (m_bitmap);       // in memoryDC
285                 m_pSGP->setDC (&m_memoryDC);
286                 m_memoryDC.SetFont (*wxSWISS_FONT);
287                 showView (m_iLastView, false);
288                 m_state = Paused;
289                 m_btnPause->SetLabel (wxString("Resume"));
290                 m_pSGP->setDC (m_pDC);
291                 m_memoryDC.SelectObject(wxNullBitmap);
292                 Refresh();
293         } else if (m_state == Paused) {
294                 m_memoryDC.SelectObject (m_bitmap);       // in memoryDC
295                 m_pSGP->setDC (&m_memoryDC);
296                 m_memoryDC.SetFont (*wxSWISS_FONT);
297                 reconstructView (m_iLastView + 1);
298                 m_pSGP->setDC (m_pDC);
299                 m_memoryDC.SelectObject(wxNullBitmap);
300                 Refresh();
301         }
302 }
303
304 void ReconstructDialog::OnClose(wxCloseEvent& event)
305 {
306     if ( m_state == Uncancellable )
307                 event.Veto(TRUE);    // can't close this dialog
308     else if ( m_state == Finished )
309                 event.Skip(); // let the default handler close the window as we already terminated
310     else
311                 m_state = Cancelled;          // next Update() will notice it
312 }
313
314 void
315 ReconstructDialog::OnPaint (wxPaintEvent& event)
316 {
317         wxPaintDC paintDC (this);
318         if (m_state == Paused) {
319                 paintDC.DrawBitmap (m_bitmap, 0, 0, false);
320         }
321 }
322
323
324 /////////////////////////////////////////////////////
325 // destruction
326
327 ReconstructDialog::~ReconstructDialog()
328 {
329         if ( m_parentTop )
330                 m_parentTop->Enable(TRUE);
331         
332         delete m_pSGP;
333         delete m_pSGPDriver;
334         delete m_pDC;
335 }
336