]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualViewContour.cpp
#3138 creaMaracasVisu Feature New Normal - branch vtk7itk4wx3
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / manualContour / manualViewContour.cpp
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 #include "manualViewContour.h"
27
28 // ----------------------------------------------------------------------------
29 // ----------------------------------------------------------------------------
30 // ----------------------------------------------------------------------------
31
32 manualViewContour::manualViewContour()
33 {
34         _id_viewPoint_for_text  = 0;
35         _initialConoturModel    = new manualContourModel();     
36         _minX                                   = 99999;
37         _minY                                   = 99999;
38         _maxX                                   = -99999;
39         _maxY                                   = -99999;
40         
41 }
42 // ----------------------------------------------------------------------------
43 manualViewContour::~manualViewContour()
44 {
45         delete _initialConoturModel;
46 }
47 // ----------------------------------------------------------------------------
48
49 // ----------------------------------------------------------------------------
50 manualViewContour * manualViewContour :: Clone()
51 {
52         manualViewContour * clone = new manualViewContour();
53         CopyAttributesTo(clone);
54         return clone;
55 }
56
57 // ---------------------------------------------------------------------------
58
59 void manualViewContour::CopyAttributesTo( manualViewContour * cloneObject)
60 {
61         // Call to Fathers object
62         manualViewBaseContour::CopyAttributesTo(cloneObject);
63 }
64
65 // ---------------------------------------------------------------------------
66
67 int manualViewContour::GetType() // virtual
68 {
69         return 1;
70 }
71
72 // ----------------------------------------------------------------------------
73
74 void manualViewContour::Save(FILE *pFile)
75 {
76         manualViewBaseContour::Save(pFile);
77 }
78
79 // ----------------------------------------------------------------------------
80 void manualViewContour::Open(FILE *pFile)
81 {
82 }
83
84 // ----------------------------------------------------------------------------
85 bool manualViewContour::ShowLineVersion()   // virtual
86 {
87         bool result = false;
88     int np      = GetNumberOfPoints( );
89         if (np==2) 
90         {
91                 result=true;
92         }
93         return result;
94 }
95
96 // ----------------------------------------------------------------------------
97 void manualViewContour::RefreshContour() // virtual
98 {
99         int i,nps;
100 //JSTG 25-02-08 --------------------
101         //double t,delta, x,y,z;
102         double x,y,z;
103         double xx,yy,zz;
104 //----------------------------------
105         if ( ShowLineVersion()==true ) 
106         {
107                 SetCellArray(false);
108                 manualPoint *mpA = _manContModel->GetManualPoint(0);
109                 manualPoint *mpB = _manContModel->GetManualPoint(1);            
110                 if ( _pts!=NULL )
111                 {
112                         xx              = mpA->GetX() * _spc[0];
113                         yy              = mpA->GetY() * _spc[1];
114                         zz              = mpA->GetZ() * _spc[2];
115                         _minX   = xx;
116                         _minY   = yy;
117                         _maxX   = xx;
118                         _maxY   = yy;
119                         _pts->SetPoint(0 , xx , yy , zz  );
120                         xx=mpB->GetX() * _spc[0];
121                         yy=mpB->GetY() * _spc[1];
122                         zz=mpB->GetZ() * _spc[2];
123                         if (xx<_minX) _minX=xx;
124                         if (yy<_minY) _minY=yy;
125                         if (xx>_maxX) _maxX=xx;
126                         if (yy>_maxY) _maxY=yy;
127                         _pts->SetPoint(1 , xx , yy , zz  );
128                 } // if _pts!=NULL
129         } else {
130                 SetCellArray(true);
131                 _manContModel->UpdateSpline();
132                 //nps = GetNumberOfPointsSpline();
133                 nps = _manContModel->GetNumberOfPointsSpline();
134                 //delta=( double ) ( np  ) / ( double ) ( nps-1  );             //JSTG 25-02-08
135
136                 //EED 27 Juin 2012
137                 //Boundaring box        
138                 _minX = 99999;
139                 _minY = 99999;
140                 _maxX = -99999;
141                 _maxY = -99999;
142                 if ( _pts!=NULL )
143                 {
144                     int np      = GetNumberOfPoints( );
145                         if (np>=2  )
146                         {
147                                 for( i = 0; i < nps; i++ )
148                                 {
149         //JSTG 25-02-08 ------------------------------------------------
150                                         //t = delta * (double)i;
151                                         //_manContModel->GetSplinePoint(t,x,y,z);
152                                         _manContModel->GetSpline_i_Point(i,&x,&y,&z);
153         //--------------------------------------------------------------
154                 // EED 27 sep 2006
155                 //                      _pts->SetPoint(i, x,y,z );
156                                         xx = x*_spc[0];
157                                         yy = y*_spc[1];
158                                         zz = z*_spc[2];
159                                         _pts->SetPoint(i,xx,yy,zz );
160
161                             //EED 27 Juin 2012
162                                         //Boundaring box
163                                         if (xx < _minX) { _minX = xx; }
164                                         if (yy < _minY) { _minY = yy; }
165                                         if (xx > _maxX) { _maxX = xx; }
166                                         if (yy > _maxY) { _maxY = yy; }
167                                 }// for
168                         }else{
169                                         _pts->SetPoint(0, 0 , 0 , 0);
170                                         _pts->SetPoint(1, 0 , 0 , 0);
171                         } // if
172                 } // _pts!=NULL
173         } //np==2
174         _minX = _minX-1.0;
175         _minY = _minY-1.0;
176         _maxX = _maxX+1.0;
177         _maxY = _maxY+1.0;
178
179 //EED 2017-03-02
180         if (_pts!=NULL) 
181         {
182                 _pts->Modified();
183         }
184 }
185
186 // ----------------------------------------------------------------------------
187 void manualViewContour::RefreshText()  // virtual
188 {
189
190         if ((_textActor!=NULL) && ( _textActor->GetProperty()->GetOpacity()!=0 )){
191                 int size = GetNumberOfPoints();
192                 char text[50];
193                 char resultText[250];
194                 strcpy(resultText, "000");
195                 char resultText2[250];
196                 strcpy(resultText2, "000");
197                 double spcP[3];
198                 spcP[0]=1;
199                 spcP[1]=1;
200                 spcP[2]=1;
201
202 //CMRU 19-08-09 ----------------------------------
203                 std::string label;
204                 label = _manContModel->GetLabel();
205 // ------------------------------------
206         
207                 if (size==2)
208                 {
209                         strcpy(resultText,"L= ");
210                         gcvt ( this->_manContModel->GetPathSize( spcP ), 5, text );
211                         strcat(resultText,text);
212                         strcat(resultText,"p");
213
214 //CMRU 19-08-09 ----------------------------------
215                         strcat(resultText," ");
216                         strcat(resultText,label.c_str());
217
218                         strcpy(resultText2,"L= ");
219                         gcvt ( this->_manContModel->GetPathSize( _spc ), 5, text );
220                         strcat(resultText2,text);
221                         strcat(resultText2,"u");
222
223 //------------------------------------------------
224                 }
225                 if (size>2)
226                 {
227                         if (_manContModel->IfCloseContour()==true)
228                         {
229                                 strcpy(resultText,"P= ");
230                                 gcvt ( this->_manContModel->GetPathSize( spcP ), 5, text );
231                                 strcat(resultText,text);
232                                 strcat(resultText,"p");
233
234                                 gcvt ( this->_manContModel->GetPathArea( spcP ), 5, text );
235                                 strcat(resultText,"   A= ");
236                                 strcat(resultText,text);
237                                 strcat(resultText,"p^2 ");
238
239
240                                 strcpy(resultText2,"P= ");
241                                 gcvt ( this->_manContModel->GetPathSize( _spc ), 5, text );
242                                 strcat(resultText2,text);
243                                 strcat(resultText2,"u");
244
245                                 gcvt ( this->_manContModel->GetPathArea( _spc ), 5, text );
246                                 strcat(resultText2,"   A= ");
247                                 strcat(resultText2,text);
248                                 strcat(resultText2,"u^2 ");
249
250                         } else {
251                                 strcpy(resultText,"L= ");
252                                 gcvt ( this->_manContModel->GetPathSize( spcP ), 5, text );
253                                 strcat(resultText,text);
254                                 strcat(resultText,"p");
255
256                                 strcpy(resultText2,"L= ");
257                                 gcvt ( this->_manContModel->GetPathSize( _spc ), 5, text );
258                                 strcat(resultText2,text);
259                                 strcat(resultText2,"u");
260
261                         }
262 //CMRU 19-08-09 ----------------------------------
263                         strcat(resultText,label.c_str());
264 //------------------------------------------------
265                 }
266
267                 _textActor->SetInput(resultText);
268                 _textActor2->SetInput(resultText2);
269                 
270                 if (size>=1){
271
272                         int i;
273                         for (i=0; i<size; i++)
274                         {
275                                 if (_lstViewPoints[i]->GetPosibleSelected()==true)
276                                 {
277                                         _id_viewPoint_for_text = i;
278                                 }
279                         }
280
281                         if (_id_viewPoint_for_text>=size) 
282                         {
283                                 _id_viewPoint_for_text=0;
284                         }
285                         
286                         double px = _manContModel->GetManualPoint(_id_viewPoint_for_text)->GetX();
287                         double py = _manContModel->GetManualPoint(_id_viewPoint_for_text)->GetY();
288
289                         //EED 27 sep 2006
290                         px=px*_spc[0];
291                         py=py*_spc[1];
292
293                         _textActor->SetPosition(px+GetRange()+1,py);
294                         _textActor2->SetPosition(px+GetRange()+1,py+2);
295                 }
296         }
297 }
298
299 // ----------------------------------------------------------------------------
300 bool manualViewContour::ifTouchContour(int x,int y,int z)
301 {
302         bool result     = false;
303         double xx       = x;
304         double yy       = y;
305         double zz       = z;
306         double ppA[3];
307         double ppB[3];
308         double d1,d2,d3;
309         TransfromCoordViewWorld(xx,yy,zz);
310 //EED 27 sep 2006
311         xx = xx * _spc[0];
312         yy = yy * _spc[1];
313         zz = zz * _spc[2];
314         if ( (xx>=_minX) &&  (yy>=_minY) && (xx<=_maxX) && (yy<=_maxY)) 
315         {  // inside the boundaring box
316                 if ( ShowLineVersion()==true )
317                 {
318                         manualPoint *mpA = _manContModel->GetManualPoint(0);
319                         manualPoint *mpB = _manContModel->GetManualPoint(1);
320                         _pts->GetPoint(0, ppA);
321                         double dirVec[3];
322                         // direction of the segment
323             dirVec[0] = mpB->GetX() - mpA->GetX();                      
324             dirVec[1] = mpB->GetY() - mpA->GetY();                      
325             dirVec[2] = mpB->GetZ() - mpA->GetZ();                      
326                         // proj = mpA + k*dirVec
327                         double num;
328                         double den = 0.0 ;
329                         num     = dirVec[0]*( xx-mpA->GetX() );
330                         num     = num + dirVec[1]*( yy-mpA->GetY() );
331                         num     = num + dirVec[2]*( zz-mpA->GetZ() );
332                         den=dirVec[0]*dirVec[0] + dirVec[1]*dirVec[1] + dirVec[2]*dirVec[2];
333                         double k;
334                         if (den!=0) 
335                         {
336                                 k = num/den;
337                         } else {
338                                 k = 99999999;
339                         }
340                         // projection of th point xx,yy,zz  in segment mpA,mpB
341                         double projX = mpA->GetX() + k*dirVec[0];
342                         double projY = mpA->GetY() + k*dirVec[1];
343                         double projZ = mpA->GetZ() + k*dirVec[2];
344
345                         // distance [projX,projY,projZ]   and   (xx,yy,zz]
346                         double d1= sqrt(  (projX-xx)*(projX-xx) + (projY-yy)*(projY-yy) +(projZ-zz)*(projZ-zz) );
347                         if (d1<=1)
348                         { 
349                                 result=true;
350                         } // if d1
351                 } else {
352                         unsigned int i, nps,nps_t;
353                         nps       = _sizePointsContour;
354                         if (this->_manContModel->IfCloseContour()==true)
355                         {
356                                 nps_t = nps;
357                         } else {
358                                 nps_t = nps-1;
359                         } // if close
360                         for( i = 0; i < nps_t; i++ ) 
361                         {
362                                 _pts->GetPoint(i%nps, ppA);
363                                 _pts->GetPoint((i+1)%nps, ppB);
364                                 d1 = sqrt( (ppA[0]-xx)*(ppA[0]-xx) + (ppA[1]-yy)*(ppA[1]-yy) + (ppA[2]-zz)*(ppA[2]-zz));
365                                 d2 = sqrt( (ppB[0]-xx)*(ppB[0]-xx) + (ppB[1]-yy)*(ppB[1]-yy) + (ppB[2]-zz)*(ppB[2]-zz));
366                                 d3 = sqrt( (ppB[0]-ppA[0])*(ppB[0]-ppA[0]) + (ppB[1]-ppA[1])*(ppB[1]-ppA[1]) + (ppB[2]-ppA[2])*(ppB[2]-ppA[2]));
367                                 if (  ((d1+d2)>=d3) &&  ((d1+d2)<=d3*1.3) ) 
368                                 {
369                                         result  = true;
370                                         i               = nps;
371                                 } // if
372                         } // for i
373                 } // if GetSizeLstPoints()==2
374         } // if min max
375         return result;
376 }
377
378 // ----------------------------------------------------------------------------
379 void manualViewContour::DeletePoint(int id) // virtual
380 {
381         if (_lstViewPoints.size()>2)
382         {
383                 manualViewBaseContour::DeletePoint( id );
384         }
385 }
386 // ----------------------------------------------------------------------------
387
388 void manualViewContour::ClearPoint(int id)
389 {
390         manualViewBaseContour::DeletePoint( id );
391 }
392
393 //-------------------------------------------------------------------
394 void manualViewContour::InitMove(int x, int y, int z)
395 {
396         _initialConoturModel->DeleteAllPoints();
397
398         manualPoint *mp = NULL;
399         double XX=x;
400         double YY=y;
401         double ZZ=z;
402         TransfromCoordViewWorld(XX,YY,ZZ);
403
404         int i, manualPointsSZ = _manContModel->GetSizeLstPoints();
405         for ( i=0; i<manualPointsSZ; i++ )
406         {
407                 mp = _manContModel->GetManualPoint( i );
408                 this->_initialConoturModel->AddPoint( mp->GetX() - XX, mp->GetY() - YY, mp->GetZ() );
409         }
410 }
411
412 //-------------------------------------------------------------------
413 void manualViewContour::MoveContour(int x, int y, int z)
414 {
415         manualPoint *mpOrigin = NULL;
416         manualPoint *mpMoving = NULL;
417         double XX = x;
418         double YY = y;
419         double ZZ = z;
420
421         TransfromCoordViewWorld(XX,YY,ZZ);
422
423         int i, manualPointsSZ = _manContModel->GetSizeLstPoints();
424         for ( i=0; i<manualPointsSZ; i++ )
425         {
426                 mpOrigin = _manContModel->GetManualPoint( i );
427                 mpMoving = _initialConoturModel->GetManualPoint(i);
428                 mpOrigin->SetPoint( mpMoving->GetX()+XX, mpMoving->GetY() + YY, mpMoving->GetZ() );
429         }
430         UpdateViewPoints();
431 }
432
433 //-------------------------------------------------------------------
434 void manualViewContour::MoveContour(int horizontalUnits, int verticalUnits )
435 {
436         manualPoint *mpOrigin = NULL;
437
438         int i, manualPointsSZ = _manContModel->GetSizeLstPoints();
439         for ( i=0; i<manualPointsSZ; i++ )
440         {
441                 mpOrigin = _manContModel->GetManualPoint( i );
442                 mpOrigin->SetPoint( mpOrigin->GetX()+horizontalUnits, mpOrigin->GetY()+verticalUnits, mpOrigin->GetZ() );
443         }
444         UpdateViewPoints();
445 }