]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualContourBaseControler.cpp
no message
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / manualContour / manualContourBaseControler.cpp
1 #include "manualContourBaseControler.h"
2
3
4 // ----------------------------------------------------------------------------
5 // ----------------------------------------------------------------------------
6 // ----------------------------------------------------------------------------
7
8 manualContourBaseControler::manualContourBaseControler()
9 {
10         _manViewBaseCont        = NULL;
11         _manContModel           = NULL;
12         _state                          = 0;
13         _z                                      = 900;
14         _editable                       = true;
15         _posibleToMove          = true;
16         _moving                         = false;
17         _created                        = false;
18         _keyBoardMoving         = false;
19 }
20 // ----------------------------------------------------------------------------
21 manualContourBaseControler::~manualContourBaseControler()
22 {
23 }
24
25 // ----------------------------------------------------------------------------
26 manualContourBaseControler * manualContourBaseControler :: Clone()  // virtual
27 {
28         manualContourBaseControler * clone = new manualContourBaseControler();
29         CopyAttributesTo(clone);
30         return clone;
31 }
32
33 // ---------------------------------------------------------------------------
34
35 void manualContourBaseControler::CopyAttributesTo( manualContourBaseControler * cloneObject)
36 {
37         // Fathers object
38         InteractorStyleMaracas::CopyAttributesTo(cloneObject);
39         cloneObject->SetZ( this->GetZ() );
40         cloneObject->SetState( this->GetState() );
41         cloneObject->SetEditable( this->IsEditable() );
42         cloneObject->SetPosibleToMove( this->GetPosibleToMove() );
43         cloneObject->SetMoving( this->IsMoving() );
44         cloneObject->SetCompleteCreation( this->GetIfCompleteCreation() );
45         cloneObject->SetKeyBoardMoving( this->GetKeyBoardMoving() );
46 }
47
48 // ----------------------------------------------------------------------------
49 void manualContourBaseControler::Configure() //virtual
50 {
51 }
52
53 // ----------------------------------------------------------------------------
54 bool manualContourBaseControler::OnChar()
55 {
56         if ( _vtkInteractorStyleBaseView!=NULL )
57         {
58                 char keyCode = _vtkInteractorStyleBaseView->GetInteractor()-> GetKeyCode();
59
60                 int X,Y;
61                 wxVTKRenderWindowInteractor *_wxVTKiren;
62                 _wxVTKiren= _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
63                 _wxVTKiren->GetEventPosition(X, Y);
64                 //int Z = GetZ(); // JPRx
65                 // Delete Point
66                 if ((keyCode==8) || (keyCode==127))
67                 {
68
69                         if (!GetManualViewBaseContour()->GetPosibleSelected()==true)
70                         {
71                                 DeleteActualMousePoint(X,Y);
72                         }
73                         GetManualViewBaseContour()->Refresh();
74                         this->_vtkInteractorStyleBaseView->SetRefresh_waiting();
75                 }
76                 else
77                 {
78                         // Magnet
79                         if (keyCode==32)
80                         {
81                                 Magnet(X,Y);
82                                 GetManualViewBaseContour()->Refresh();
83                                 this->_vtkInteractorStyleBaseView->SetRefresh_waiting();
84                         }
85                         else if( !IsEditable() )
86                         {
87                                 if ( keyCode == 'L' )
88                                 {
89                                         GetManualViewBaseContour()->MoveContour( -1, 0 );
90                                         SetKeyBoardMoving( true );
91                                 }
92                                 else if ( keyCode == 'R' )
93                                 {
94                                         GetManualViewBaseContour()->MoveContour( 1, 0 );
95                                         SetKeyBoardMoving( true );
96                                 }
97                                 else if ( keyCode == 'U' )
98                                 {
99                                         GetManualViewBaseContour()->MoveContour( 0, -1 );
100                                         SetKeyBoardMoving( true );
101                                 }
102                                 else if ( keyCode == 'D' )
103                                 {
104                                         GetManualViewBaseContour()->MoveContour( 0, 1 );
105                                         SetKeyBoardMoving( true );
106                                 }
107                                 else if ( keyCode == 'W' )//Diagonal left down
108                                 {
109                                         GetManualViewBaseContour()->MoveContour( -1, 1 );
110                                         SetKeyBoardMoving( true );
111                                 }
112                                 else if ( keyCode == 'Q' )//Diagonal left up
113                                 {
114                                         GetManualViewBaseContour()->MoveContour( -1, -1 );
115                                         SetKeyBoardMoving( true );
116                                 }
117                                 else if( keyCode == 'P' )//Diagonal right up
118                                 {
119                                         GetManualViewBaseContour()->MoveContour( 1, -1 );
120                                         SetKeyBoardMoving( true );
121                                 }
122                                 else if( keyCode == 'M' )//Diagonal right down
123                                 {
124                                         GetManualViewBaseContour()->MoveContour( 1, 1 );
125                                         SetKeyBoardMoving( true );
126                                 }
127                                 if( GetKeyBoardMoving() )
128                                 {
129                                         GetManualViewBaseContour()->Refresh();
130                                         this->_vtkInteractorStyleBaseView->SetRefresh_waiting();
131                                 }
132                         }
133                 }
134         }
135         return true;
136 }
137 // ----------------------------------------------------------------------------
138 bool manualContourBaseControler::OnMouseMove()
139 {
140         
141         if ( _vtkInteractorStyleBaseView!=NULL)
142         {
143                 int X,Y;
144                 wxVTKRenderWindowInteractor *_wxVTKiren;
145                 _wxVTKiren= _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
146                 _wxVTKiren->GetEventPosition( X , Y );
147
148
149                 if ( (_vtkInteractorStyleBaseView->GetInteractor()->GetControlKey()==0) &&
150                         (_vtkInteractorStyleBaseView->GetInteractor()->GetShiftKey()==0) ) {
151                         MouseMove(X,Y);
152                 }
153         }
154         return true;
155 }
156 // ----------------------------------------------------------------------------
157 bool manualContourBaseControler::OnLeftButtonDown()
158 {
159         SetKeyBoardMoving( false );
160         if ( _vtkInteractorStyleBaseView!=NULL )
161         {
162                 int X,Y;
163                 wxVTKRenderWindowInteractor *wxVTKiren;
164                 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
165                 wxVTKiren->GetEventPosition(X,Y);
166
167                 MouseClickLeft(X,Y);
168         }
169         return true;
170 }
171 // ----------------------------------------------------------------------------
172 bool manualContourBaseControler::OnLeftButtonUp()
173 {
174         if ( _vtkInteractorStyleBaseView!=NULL )
175         {
176                 int X,Y;
177                 wxVTKRenderWindowInteractor *wxVTKiren;
178                 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
179                 wxVTKiren->GetEventPosition(X,Y);
180                 MouseReleaseLeft(X,Y);
181         }
182         return true;
183 }
184 // ----------------------------------------------------------------------------
185 bool manualContourBaseControler::OnLeftDClick()
186 {
187         if ( _vtkInteractorStyleBaseView!=NULL )
188         {
189                 int X,Y;
190                 wxVTKRenderWindowInteractor *wxVTKiren;
191                 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
192                 wxVTKiren->GetEventPosition(X,Y);
193
194                 this->MouseDLeft(X,Y);
195         }
196         return true;
197 }
198 // ----------------------------------------------------------------------------
199 bool manualContourBaseControler::OnMiddleButtonDown()
200 {
201 //      SetKeyBoardMoving( false );
202         if ( _vtkInteractorStyleBaseView!=NULL )
203         {
204                 int X,Y;
205                 wxVTKRenderWindowInteractor *wxVTKiren;
206                 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
207                 wxVTKiren->GetEventPosition(X,Y);
208                 GetManualViewBaseContour()->InitMove( X, Y,GetZ());
209         }
210         return true;
211 }
212 // ----------------------------------------------------------------------------
213 bool manualContourBaseControler::OnMiddleButtonUp()
214 {
215         return true;
216 }
217 // ----------------------------------------------------------------------------
218 bool manualContourBaseControler::OnRightButtonDown()
219 {
220         if( _vtkInteractorStyleBaseView!= NULL )
221         {
222                 int X,Y;
223                 wxVTKRenderWindowInteractor *wxVTKiren;
224                 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
225                 wxVTKiren->GetEventPosition(X, Y);
226
227                 SetCompleteCreation( true );
228                 SetKeyBoardMoving( false );
229                 this->GetManualContourModel()->SetCloseContour(true);
230                 MouseClickRight(X,Y);
231         }
232         return true;
233 }
234 // ----------------------------------------------------------------------------
235 bool manualContourBaseControler::OnRightButtonUp()
236 {
237         return true;
238 }
239 // ----------------------------------------------------------------------------
240 void manualContourBaseControler::SetModelView(manualContourModel *manContModel, manualViewBaseContour *manViewBaseCont){
241         _manContModel           =       manContModel;
242         _manViewBaseCont        =       manViewBaseCont;
243         _manViewBaseCont->SetEditable( &_editable );
244 }
245 // ----------------------------------------------------------------------------
246 manualContourModel* manualContourBaseControler::GetManualContourModel()
247 {
248         return _manContModel;
249 }
250 // ----------------------------------------------------------------------------
251 manualViewBaseContour* manualContourBaseControler::GetManualViewBaseContour()
252 {
253         return _manViewBaseCont;
254 }
255 // ----------------------------------------------------------------------------
256 void manualContourBaseControler::MouseClickLeft(int x, int y) // virtual
257 {
258
259 }
260 // ----------------------------------------------------------------------------
261 void manualContourBaseControler::MouseClickRight(int x, int y)
262 {
263 //      if (_state==1)
264 //      {
265 //              _state=0;
266 //      }
267         SetEditable( false );
268         SetPosibleToMove( false );
269         _state = 0;
270
271 //EED 24Avril2009       _state=7;
272 }
273 // ----------------------------------------------------------------------------
274 void manualContourBaseControler::MouseReleaseLeft(int x, int y)
275 {
276         if (_state==5){ _state = 0; }
277         if (_state==6){ _state = 0; }
278         if (_state==7){ _state = 0; }
279         SetMoving( false );
280         GetManualViewBaseContour()->SelectPosibleContour(x,y,GetZ());
281         if( GetIfCompleteCreation() && IsEditable() && !GetManualViewBaseContour()->GetPosibleSelected() && (GetManualViewBaseContour()->GetIdPoint(x,y,GetZ())==-1)  )
282         {
283                 SetEditable( false );
284                 SetPosibleToMove( false );
285         }
286 }
287 // ----------------------------------------------------------------------------
288 void manualContourBaseControler::MouseDLeft(int x, int y )
289 {
290         if (_state==0)
291         {
292                 int z=GetZ();
293                 GetManualViewBaseContour()->SelectPosibleContour(x,y,z);
294                 GetManualViewBaseContour()->SelectPosiblePoint(x,y,z);
295                 if ( GetManualViewBaseContour()->GetPosibleSelected() )
296                 {
297                         _editable = true;
298                 }
299         }
300 }
301 // ----------------------------------------------------------------------------
302 void manualContourBaseControler::MouseMove(int x, int y) // virtual
303 {
304 }
305 // ----------------------------------------------------------------------------
306 void manualContourBaseControler::SetState(int state)
307 {
308         _state=state;
309 }
310 // ----------------------------------------------------------------------------
311 int manualContourBaseControler::GetState()
312 {
313         return _state;
314 }
315 // ----------------------------------------------------------------------------
316 bool manualContourBaseControler::IsEditable( )
317 {
318         return _editable;
319 }
320 // ----------------------------------------------------------------------------
321 void manualContourBaseControler::SetEditable(  bool condition  )
322 {
323         if (GetManualViewBaseContour()!=NULL) {
324                 if( !condition )
325                 {
326                         GetManualViewBaseContour()->RemoveControlPoints();
327                 }
328                 GetManualViewBaseContour()->SetSelected( condition );
329         }
330         _editable = condition;
331 }
332
333 // ----------------------------------------------------------------------------
334 bool manualContourBaseControler::GetPosibleToMove()
335 {
336         return _posibleToMove;
337 }
338 // ----------------------------------------------------------------------------
339 void manualContourBaseControler::SetPosibleToMove( bool condition )
340 {
341         _posibleToMove = condition;
342 }
343 // ----------------------------------------------------------------------------
344 bool manualContourBaseControler::IsMoving()
345 {
346         return _moving;
347 }
348 // ----------------------------------------------------------------------------
349 void manualContourBaseControler::SetMoving( bool condition )
350 {
351         _moving = condition;
352 }
353 // ----------------------------------------------------------------------------
354 void manualContourBaseControler::SetCompleteCreation( bool condition )
355 {
356         _created = condition;
357 }
358 // ----------------------------------------------------------------------------
359 bool manualContourBaseControler::GetIfCompleteCreation ( )
360 {
361         return _created;
362 }
363 // ----------------------------------------------------------------------------
364 void manualContourBaseControler::SetKeyBoardMoving( bool condition )
365 {
366         _keyBoardMoving = condition;
367 }
368 // ----------------------------------------------------------------------------
369 bool manualContourBaseControler::GetKeyBoardMoving(  )
370 {
371         return _keyBoardMoving;
372 }
373 // ----------------------------------------------------------------------------
374 void manualContourBaseControler::CreateNewManualContour(){
375         _manViewBaseCont->CreateNewContour();
376 }
377 // ----------------------------------------------------------------------------
378 int     manualContourBaseControler::GetNumberOfPointsManualContour(){
379         return _manViewBaseCont->GetNumberOfPoints();
380 }
381 // ----------------------------------------------------------------------------
382
383 //JSTG - 25-02-08 -------------------------------------------------------------
384 int     manualContourBaseControler::GetNumberOfPointsSplineManualContour(){
385         //return _manViewBaseCont->GetNumberOfPointsSpline();
386         return _manContModel->GetNumberOfPointsSpline();
387 }
388 // ----------------------------------------------------------------------------
389
390 double* manualContourBaseControler::GetVectorPointsXManualContour(){
391         return _manViewBaseCont->GetVectorPointsXManualContour();
392 }
393 // ----------------------------------------------------------------------------
394 double* manualContourBaseControler::GetVectorPointsYManualContour(){
395         return _manViewBaseCont->GetVectorPointsYManualContour();
396 }
397 // ----------------------------------------------------------------------------
398 void manualContourBaseControler::DeleteContour(){
399         _manViewBaseCont->DeleteContour();
400         _manContModel->DeleteAllPoints();
401 }
402 // ----------------------------------------------------------------------------
403 void manualContourBaseControler::DeleteActualMousePoint(int x, int y)// virtual
404 {
405         if ((_manContModel!=NULL) && (_manViewBaseCont!=NULL) )
406         {
407                 int id=_manViewBaseCont->GetIdPoint(x,y,GetZ());
408                 if ((id!=-1) && (_manContModel->GetSizeLstPoints()>2) ){
409                         _manContModel->DeletePoint(id);
410                         _manViewBaseCont->DeletePoint(id);
411                 }
412         }
413         _state = 0;
414 }
415
416 // ----------------------------------------------------------------------------
417 void manualContourBaseControler::Magnet(int x, int y)
418 {
419         if( IsEditable())
420         {
421                 /*int id= */ _manViewBaseCont->GetIdPoint(x,y,GetZ()); // JPRx
422                 if (GetManualContourModel()!=NULL){
423                         double  xx      = x;
424                         double  yy      = y;
425                         double  zz      = GetZ();
426                         GetManualViewBaseContour()->TransfromCoordViewWorld(xx,yy,zz);
427                         int                     id      = GetManualContourModel()->GetIdPoint(xx,yy,zz,32000,-1);
428                         if (id!=-1)
429                         {
430                                 manualPoint     *mp     = GetManualContourModel()->GetManualPoint(id);
431                                 mp->SetPoint(xx,yy,zz);
432                         }
433         //              GetManualViewBaseContour()->UpdateViewPoint(id);
434                 }
435                 _state = 0;
436         }
437 }
438
439 // ----------------------------------------------------------------------------
440 void manualContourBaseControler::SetZ(int z)
441 {
442         _z=z;
443 }
444 // ----------------------------------------------------------------------------
445 int manualContourBaseControler::GetZ()
446 {
447         return _z;
448 }
449 // ----------------------------------------------------------------------------
450 void manualContourBaseControler::AddPoint(int x, int y, int z) // virtual
451 {
452         if (GetManualContourModel()!=NULL){
453                 double  xx      = x;
454                 double  yy      = y;
455                 double  zz      = z;
456                 GetManualViewBaseContour()->TransfromCoordViewWorld(xx,yy,zz);
457                 /*int   id              =*/  GetManualContourModel()->AddPoint(xx,yy,zz);  // JPRx
458                 GetManualViewBaseContour()->AddPoint();
459 //              GetManualViewBaseContour()->UpdateViewPoint(id);
460         }
461 }
462 // ----------------------------------------------------------------------------
463 void manualContourBaseControler::InsertPoint(int x,int y,int z)  // virtual
464 {
465 //EEDzz
466         int id=-1;
467         if (GetManualContourModel()!=NULL){
468                 double                          xx              = x;
469                 double                          yy              = y;
470                 double                          zz              = z;
471                 GetManualViewBaseContour()->TransfromCoordViewWorld(xx,yy,zz);
472                 if (GetManualContourModel()->GetSizeLstPoints()>1){
473                         id = GetManualContourModel()->InsertPoint(xx,yy,zz);
474                         GetManualViewBaseContour()->InsertPoint(id);
475 //                      GetManualViewBaseContour()->UpdateViewPoint(id);
476                 } else {
477                         GetManualContourModel()->AddPoint(xx,yy,zz);
478                         GetManualViewBaseContour()->AddPoint();
479 //                      AddPoint(x,y,z);
480 //                      GetManualViewBaseContour()->UpdateViewPoint(id);
481                 }
482         }
483 }
484
485 // ----------------------------------------------------------------------------
486 void manualContourBaseControler::SetPoint( int id ,int x , int y , int z){ // virtual
487         if ((GetManualViewBaseContour()!=NULL) && (id>=0)){
488                 double xx = x;
489                 double yy = y;
490                 double zz = z;
491                 GetManualViewBaseContour()->TransfromCoordViewWorld(xx,yy,zz);
492                 manualPoint             *mp             = _manContModel->GetManualPoint(id);
493                 mp->SetPoint(xx,yy,zz);
494                 GetManualViewBaseContour()->UpdateViewPoint(id);
495         }
496 }
497 // ----------------------------------------------------------------------------
498 void manualContourBaseControler::SetPointX( int id ,int x  ){
499         if ((GetManualViewBaseContour()!=NULL) && (id>=0)){
500                 double xx = x;
501                 double yy = 0;
502                 double zz = 0;
503                 GetManualViewBaseContour()->TransfromCoordViewWorld(xx,yy,zz);
504                 manualPoint             *mp             = _manContModel->GetManualPoint(id);
505                 mp->SetPointX(xx);
506                 GetManualViewBaseContour()->UpdateViewPoint(id);
507         }
508 }
509 // ----------------------------------------------------------------------------
510 void manualContourBaseControler::SetPointY( int id ,int y  ){
511         if ((GetManualViewBaseContour()!=NULL) && (id>=0)){
512                 double xx = 0;
513                 double yy = y;
514                 double zz = 0;
515                 GetManualViewBaseContour()->TransfromCoordViewWorld(xx,yy,zz);
516                 manualPoint             *mp             = _manContModel->GetManualPoint(id);
517                 mp->SetPointY(yy);
518                 GetManualViewBaseContour()->UpdateViewPoint(id);
519         }
520 }
521 // ----------------------------------------------------------------------------
522 void manualContourBaseControler::SetPointZ( int id ,int z  ){
523         if ((GetManualViewBaseContour()!=NULL) && (id>=0)){
524                 double xx = 0;
525                 double yy = 0;
526                 double zz = z;
527                 GetManualViewBaseContour()->TransfromCoordViewWorld(xx,yy,zz);
528                 manualPoint             *mp             = _manContModel->GetManualPoint(id);
529                 mp->SetPointZ(zz);
530                 GetManualViewBaseContour()->UpdateViewPoint(id);
531         }
532 }
533 // ----------------------------------------------------------------------------
534 void manualContourBaseControler::ResetContour() // virtual
535 {
536         this->DeleteContour();
537         GetManualViewBaseContour()->CreateNewContour();
538         this->SetState(0);
539 }
540