]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxVtkSceneManager.cxx
Solved text message issue, when pointed a correct connection. bug 1371
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / wxVtkSceneManager.cxx
1 /*=========================================================================
2  Program:   bbtk
3  Module:    $RCSfile$
4  Language:  C++
5  Date:      $Date$
6  Version:   $Revision$
7  =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11  * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12  * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13  *
14  *  This software is governed by the CeCILL-B license under French law and
15  *  abiding by the rules of distribution of free software. You can  use,
16  *  modify and/ or redistribute the software under the terms of the CeCILL-B
17  *  license as circulated by CEA, CNRS and INRIA at the following URL
18  *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
19  *  or in the file LICENSE.txt.
20  *
21  *  As a counterpart to the access to the source code and  rights to copy,
22  *  modify and redistribute granted by the license, users are provided only
23  *  with a limited warranty  and the software's author,  the holder of the
24  *  economic rights,  and the successive licensors  have only  limited
25  *  liability.
26  *
27  *  The fact that you are presently reading this means that you have had
28  *  knowledge of the CeCILL-B license and that you accept its terms.
29  * ------------------------------------------------------------------------ */
30
31 /**
32  *  \file
33  *  \brief Class bbtk::wxVtkSceneManager .
34  */
35
36 #include "wxVtkSceneManager.h"
37
38 #include <vtkPolygon.h>
39 #include <vtkUnstructuredGrid.h>
40
41 namespace bbtk {
42
43 //=========================================================================
44 wxVtkSceneManager::wxVtkSceneManager(wxGEditorTabPanel *parent,
45                 wxVtk3DBaseView *baseView, int idManager) {
46         _cbName = "ComplexBoxName";
47         _cbPackageName = "PackageName";
48         _Author = "Author ??";
49         _Category = "<VOID>";
50         _Description = "Description ??";
51
52         _parent = parent;
53         _numBoxes = 0;
54         _idManager = idManager;
55         _baseView = baseView;
56         _startDragging = false;
57         _isComplexBox = false;
58
59         if (_baseView != NULL) {
60                 //EED02JUIN2010
61                 printf(
62                                 "RaC-EED 21-06-2010 %p wxVtkSceneManager::wxVtkSceneManager If you comment this line, the drag and drop functionnality is not initialized.\n",
63                                 this);
64 #ifdef __APPLE__
65                 _baseView->GetWxVTKRenderWindowInteractor()->SetDropTarget((wxDropTarget*)parent);
66 #endif
67
68                 configureBaseView();
69                 _worldState = NOTHING_HAPPENS;
70                 registerController(this);
71
72         }
73         _idConnectionInCreation = -1;
74         _contLastId = 0;
75
76 }
77
78 //=========================================================================
79
80 void wxVtkSceneManager::disconnectDrop() {
81         printf("EED %p ~wxVtkSceneManager::disconnectDrop()\n", this);
82         //EED02JUIN2010         _baseView->GetWxVTKRenderWindowInteractor()->SetDropTarget(NULL);
83         //      _baseView->GetWxVTKRenderWindowInteractor()->SetDropTarget( new tmpClasswxTextDropTarget() );
84 }
85
86 //=========================================================================
87
88 wxVtkSceneManager::~wxVtkSceneManager() {
89         //FCY memory leaks
90         printf("EED %p ~wxVtkSceneManager()\n", this);
91         disconnectDrop();
92         delete _baseView;
93 }
94
95 //=========================================================================
96
97 void wxVtkSceneManager::configureBaseView() {
98         printf("EED wxVtkSceneManager::configureBaseView 0\n");
99         vtkInteractorStyleBaseView2D *interactorstylebaseview =
100                         vtkInteractorStyleBaseView2D::New();
101
102         _baseView->SetInteractorStyleBaseView(interactorstylebaseview);
103
104         // Important to activate the 2D interaction system
105         wxVTKRenderWindowInteractor *iren =
106                         _baseView->GetWxVTKRenderWindowInteractor();
107         interactorstylebaseview->SetInteractor(iren);
108         iren->SetInteractorStyle(interactorstylebaseview);
109         interactorstylebaseview->SetwxVtkBaseView(_baseView);
110
111         _baseView->GetRenderer()->GetActiveCamera()->ParallelProjectionOn();
112         _baseView->GetRenderer()->ResetCamera(-100, 100, -100, 100, 800, 1100);
113
114         _baseView->GetRenderer()->SetBackground(0.9, 0.9, 0.9);
115         _baseView->GetRenderer()->GradientBackgroundOn();
116         _baseView->Refresh();
117
118         // Actos Port_Text
119         _textActor = vtkTextActor3D::New();
120         _textActor->SetPosition(-9999, -9999, 900);
121         _textActor->SetInput("<void>");
122         _textActor->GetTextProperty()->SetFontSize(60);
123         _textActor->GetTextProperty()->BoldOn();
124         _textActor->GetTextProperty()->SetColor(PORTTEXT_NH_R, PORTTEXT_NH_G,
125                         PORTTEXT_NH_B);
126
127         _baseView->GetRenderer()->AddActor(_textActor);
128
129         // Actor  Fill_Port_Text
130
131         //------------
132         double xInic = 0;
133         double yInic = 0;
134         double zInic = 900;
135
136         vtkPolygon *aPolygon = vtkPolygon::New();
137         _fillObjectActor = vtkActor::New();
138
139         _pts = vtkPoints::New();
140
141         double w = 100, h = 10, b = h / 15, t = 3;
142         _pts->SetNumberOfPoints(21);
143         _pts->InsertPoint(0, xInic + w * 0.33 - t / 2, yInic, zInic);
144         _pts->InsertPoint(1, xInic + w * 0.33, yInic - t, zInic);
145         _pts->InsertPoint(2, xInic + w * 0.33 + t / 2, yInic, zInic);
146         _pts->InsertPoint(3, xInic + w * 0.33 + t / 2, yInic, zInic);
147         _pts->InsertPoint(4, xInic + w - b * 4, yInic + b * 0, zInic);
148
149         _pts->InsertPoint(5, xInic + w - b * 4, yInic + b * 0, zInic);
150         _pts->InsertPoint(6, xInic + w - b * 2, yInic + b * 1, zInic);
151         _pts->InsertPoint(7, xInic + w - b * 1, yInic + b * 2, zInic);
152         _pts->InsertPoint(8, xInic + w - b * 0, yInic + b * 4, zInic);
153
154         _pts->InsertPoint(9, xInic + w - b * 0, yInic + h - b * 4, zInic);
155         _pts->InsertPoint(10, xInic + w - b * 1, yInic + h - b * 2, zInic);
156         _pts->InsertPoint(11, xInic + w - b * 2, yInic + h - b * 1, zInic);
157         _pts->InsertPoint(12, xInic + w - b * 4, yInic + h - b * 0, zInic);
158
159         _pts->InsertPoint(13, xInic + b * 4, yInic + h - b * 0, zInic);
160         _pts->InsertPoint(14, xInic + b * 2, yInic + h - b * 1, zInic);
161         _pts->InsertPoint(15, xInic + b * 1, yInic + h - b * 2, zInic);
162         _pts->InsertPoint(16, xInic + b * 0, yInic + h - b * 4, zInic);
163
164         _pts->InsertPoint(17, xInic + b * 0, yInic + b * 4, zInic);
165         _pts->InsertPoint(18, xInic + b * 1, yInic + b * 2, zInic);
166         _pts->InsertPoint(19, xInic + b * 2, yInic + b * 1, zInic);
167         _pts->InsertPoint(20, xInic + b * 4, yInic + b * 0, zInic);
168
169         aPolygon->GetPointIds()->SetNumberOfIds(21);
170         for (int i = 0; i < 21; i++) {
171                 aPolygon->GetPointIds()->SetId(i, i);
172         }
173
174         vtkUnstructuredGrid *aPolygonGrid = vtkUnstructuredGrid::New();
175         aPolygonGrid->Allocate(1, 1);
176         aPolygonGrid->InsertNextCell(aPolygon->GetCellType(),
177                         aPolygon->GetPointIds());
178         aPolygonGrid->SetPoints(_pts);
179         _aPolygonMapper = vtkDataSetMapper::New();
180         _aPolygonMapper->SetInput(aPolygonGrid);
181         _fillObjectActor->SetMapper(_aPolygonMapper);
182         _fillObjectActor->GetProperty()->SetColor(PORTFILL_NH_R, PORTFILL_NH_G,
183                         PORTFILL_NH_B);
184         _fillObjectActor->GetProperty()->SetOpacity(0);
185         _aPolygonMapper->Modified();
186
187         _baseView->GetRenderer()->AddActor(_fillObjectActor);
188         printf("EED wxVtkSceneManager::configureBaseView 1\n");
189 }
190
191 //=========================================================================
192
193 std::string wxVtkSceneManager::generateANewNameForABox() {
194         std::stringstream boxname;
195         if (_numBoxes < 10) {
196                 boxname << "Box0" << _numBoxes;
197         } else {
198                 boxname << "Box" << _numBoxes;
199         }
200         _numBoxes++;
201         return boxname.str();
202 }
203
204 //=========================================================================
205
206 std::string wxVtkSceneManager::findANewNameForABox() {
207         std::string boxname = generateANewNameForABox();
208
209         while (boxExist(boxname) == true) {
210                 boxname = generateANewNameForABox();
211         } // while
212
213         return boxname;
214 }
215
216 //=========================================================================
217 void wxVtkSceneManager::configGBlackBox(int idBox, double xIn, double yIn,
218                 double zIn, std::string name, bool boxExecutable, double xEn,
219                 double yEn, double zEn) {
220         GObjectController *cont = _controllers[idBox];
221         GBlackBoxModel *bbmod = (GBlackBoxModel*) cont->getModel();
222         bbmod->setBBTKName(name);
223         bbmod->setInicPoint(xIn, yIn, zIn);
224         bbmod->setFinalPoint(xEn, yEn, zEn);
225         bbmod->setExecutable(boxExecutable);
226
227         bbmod->notifyObservers(_idManager);
228
229 }
230
231 //=========================================================================
232
233 int wxVtkSceneManager::createGBlackBox(int x, int y, std::string packageName,
234                 std::string boxType) {
235         _worldState = NOTHING_HAPPENS;
236         //EED           int windowWidth                                                 = _baseView->GetRenWin()->GetSize()[0];
237         int windowHeight = _baseView->GetRenWin()->GetSize()[1];
238
239         int type = GBLACKBOX;
240
241         //Create the MVC Objects
242
243         GBlackBoxModel
244                         *model =
245                                         (GBlackBoxModel*) GObjectsMVCFactory::getInstance()->createGObjectModel(
246                                                         type);
247         vtkGObjectView *view =
248                         GObjectsMVCFactory::getInstance()->createGObjectView(type);
249         GObjectController* controller =
250                         GObjectsMVCFactory::getInstance()->createGObjectController(type);
251
252         BlackBoxDescriptor::Pointer descriptor =
253                         GObjectsMVCFactory::getInstance()->getBlackBoxDescriptor(
254                                         packageName, boxType);
255
256         //Prepares the initial model
257         //The coordinates obtained are the following. Top-Left:x=0,y=0 Bottom-Right:x=width,y=height
258
259         double xx = x;
260         double yy = windowHeight - y;
261
262         //z value is not important yet, because it is only used a parallel projection
263         double zz = 900;
264         _baseView->TransCoordScreenToWorld(xx, yy, zz);
265         model->setInicPoint(xx, yy, zz);
266
267         std::stringstream stream;
268
269         std::string newBoxName;
270         newBoxName = findANewNameForABox();
271
272         stream << newBoxName;
273
274         std::string arraystring = stream.str();
275
276         model->setBBTKName(arraystring);
277         model->setBBTKType(boxType);
278         model->setBBTKPackage(packageName);
279
280         model->addObserver(view);
281         model->addObserver(this);
282
283         //Iterate and create the input ports
284         std::map<std::string, BlackBoxInputDescriptor*> descriptorInMap =
285                         descriptor->GetInputDescriptorMap();
286         std::map<std::string, BlackBoxInputDescriptor*>::iterator itInput;
287
288         int i = 0;
289         for (itInput = descriptorInMap.begin(); itInput != descriptorInMap.end(); ++itInput) {
290                 BlackBoxInputDescriptor *desc = itInput->second;
291                 createGInputPort(GINPUTPORT, i, model, desc);
292                 i++;
293         }
294
295         //Iterate and create the output ports
296         std::map<std::string, BlackBoxOutputDescriptor*> descriptorOutMap =
297                         descriptor->GetOutputDescriptorMap();
298         std::map<std::string, BlackBoxOutputDescriptor*>::iterator itOutput;
299
300         i = 0;
301         for (itOutput = descriptorOutMap.begin(); itOutput
302                         != descriptorOutMap.end(); ++itOutput) {
303                 BlackBoxOutputDescriptor *desc = itOutput->second;
304                 createGOutputPort(GOUTPUTPORT, i, model, desc);
305                 i++;
306         }
307
308         //Associates the view with the correspondent renderer and the  model.
309         //(NOTE: Refresh is only made by the view)
310         view->setModel(model);
311         view->setBaseView(_baseView);
312         view->initVtkObjects();
313
314         //Associates the controller with the correspondent model and view
315         controller->setModelAndView(model, view);
316
317         //Resgiter change to the observers of the actual model
318         model->notifyObservers(_idManager);
319
320         int newId = addObjectController(controller);
321
322         return newId;
323
324 }
325
326 //=========================================================================
327
328 int wxVtkSceneManager::createGComplexBoxInputPort(std::string inputName) {
329         //EED           int windowWidth=_baseView->GetRenWin()->GetSize()[0];
330         int windowHeight = _baseView->GetRenWin()->GetSize()[1];
331
332         int type = GCOMPLEXINPUTPORT;
333
334         //Create the MVC Objects
335
336         GComplexBoxPortModel
337                         *model =
338                                         (GComplexBoxPortModel*) GObjectsMVCFactory::getInstance()->createGObjectModel(
339                                                         type);
340         vtkGObjectView *view =
341                         GObjectsMVCFactory::getInstance()->createGObjectView(type);
342         GObjectController* controller =
343                         GObjectsMVCFactory::getInstance()->createGObjectController(type);
344
345         //Prepares the initial model
346
347         double xx = 5;
348         double yy = windowHeight - 5;
349
350         //z value is not important yet, because it is only used a parallel projection
351         double zz = 900;
352         printf("EED  wxVtkSceneManager::createGComplexBoxInputPort 900-450\n");
353
354         _baseView->TransCoordScreenToWorld(xx, yy, zz);
355         model->setInicPoint(xx, yy, zz);
356
357         model->setBBTKName(inputName);
358         model->setBBTKType("ComplexInputPort");
359         model->setComplexPortType(type);
360
361         model->addObserver(view);
362         model->addObserver(this);
363
364         //create the output port
365         GPortController* portController = createGPort(GOUTPUTPORT, inputName,
366                         "ComplexInputPort", 0, model);
367         model->addOutputPort((GPortModel*) portController->getModel());
368
369         //Associates the view with the correspondent renderer and the  model.
370         //(NOTE: Refresh is only made by the view)
371         view->setModel(model);
372         view->setBaseView(_baseView);
373         view->initVtkObjects();
374
375         //Associates the controller with the correspondent model and view
376         controller->setModelAndView(model, view);
377
378         //Resgiter change to the observers of the actual model
379         model->notifyObservers(_idManager);
380
381         int newId = addObjectController(controller);
382         return newId;
383 }
384
385 //=========================================================================
386
387 int wxVtkSceneManager::createGComplexBoxOutputPort(std::string outputName) {
388         //EED           int windowWidth=_baseView->GetRenWin()->GetSize()[0];
389         int windowHeight = _baseView->GetRenWin()->GetSize()[1];
390
391         int type = GCOMPLEXOUTPUTPORT;
392
393         //Create the MVC Objects
394
395         GComplexBoxPortModel
396                         *model =
397                                         (GComplexBoxPortModel*) GObjectsMVCFactory::getInstance()->createGObjectModel(
398                                                         type);
399         vtkGObjectView *view =
400                         GObjectsMVCFactory::getInstance()->createGObjectView(type);
401         GObjectController *controller =
402                         GObjectsMVCFactory::getInstance()->createGObjectController(type);
403
404         //Prepares the initial model
405
406         double xx = 5;
407         double yy = windowHeight - 5;
408
409         //z value is not important yet, because it is only used a parallel projection
410         double zz = 900;
411
412         printf("EED  wxVtkSceneManager::createGComplexBoxOutputPort 900-450\n");
413
414         _baseView->TransCoordScreenToWorld(xx, yy, zz);
415         model->setInicPoint(xx, yy, zz);
416
417         model->setBBTKName(outputName);
418         model->setBBTKType("ComplexOutputPort");
419         model->setComplexPortType(type);
420
421         model->addObserver(view);
422         model->addObserver(this);
423
424         //create the output port
425         GPortController* portController = createGPort(GINPUTPORT, outputName,
426                         "ComplexInputPort", 0, model);
427         model->addInputPort((GPortModel*) portController->getModel());
428
429         //Associates the view with the correspondent renderer and the  model.
430         //(NOTE: Refresh is only made by the view)
431         view->setModel(model);
432         view->setBaseView(_baseView);
433         view->initVtkObjects();
434
435         //Associates the controller with the correspondent model and view
436         controller->setModelAndView(model, view);
437
438         //Resgiter change to the observers of the actual model
439         model->notifyObservers(_idManager);
440
441         int newId = addObjectController(controller);
442         return newId;
443 }
444
445 //=========================================================================
446
447 int wxVtkSceneManager::createGInputPort(int portType, int posinBox,
448                 GBoxModel *blackBox, BlackBoxInputDescriptor *desc) {
449         GPortController* portController = createGPort(portType, desc->GetName(),
450                         desc->GetTypeName(), posinBox, blackBox);
451         blackBox->addInputPort((GPortModel*) portController->getModel());
452         return portController->getId();
453 }
454
455 //=========================================================================
456
457 int wxVtkSceneManager::createGOutputPort(int portType, int posinBox,
458                 GBoxModel *blackBox, BlackBoxOutputDescriptor *desc) {
459         GPortController* portController = createGPort(portType, desc->GetName(),
460                         desc->GetTypeName(), posinBox, blackBox);
461         blackBox->addOutputPort((GPortModel*) portController->getModel());
462         return portController->getId();
463 }
464
465 //=========================================================================
466
467 GPortController* wxVtkSceneManager::createGPort(int portType,
468                 std::string bbtkName, std::string bbtkType, int posInBox,
469                 GBoxModel *blackBox) {
470         int type = GPORT;
471
472         //Create the MVC Objects
473         GPortModel
474                         *model =
475                                         (GPortModel*) GObjectsMVCFactory::getInstance()->createGObjectModel(
476                                                         type);
477         vtkGObjectView *view =
478                         GObjectsMVCFactory::getInstance()->createGObjectView(type);
479         GObjectController* controller =
480                         GObjectsMVCFactory::getInstance()->createGObjectController(type);
481
482         model->registerInBox(blackBox, portType, posInBox);
483
484         model->setBBTKType(bbtkType);
485         model->setBBTKName(bbtkName);
486
487         model->addObserver(view);
488         model->addObserver(this);
489
490         //Associates the view with the correspondent renderer and the  model.
491         //(NOTE: Refresh is only made by the view)
492         view->setModel(model);
493         view->setBaseView(_baseView);
494         view->initVtkObjects();
495
496         //Associates the controller with the correspondent model and view
497         controller->setModelAndView(model, view);
498
499         model->notifyObservers(_idManager);
500
501         addObjectController(controller);
502
503         return (GPortController*) controller;
504 }
505
506 //=========================================================================
507
508 int wxVtkSceneManager::createGConnector(GPortModel* startPort) {
509         int type = GCONNECTOR;
510
511         manualConnectorContourController* manContourControl =
512                         new manualConnectorContourController();
513         manualConnectorContourView* manContourView =
514                         new manualConnectorContourView();
515         manualContourModel* manContourModel = new manualContourModel();
516
517         GConnectorController* connectorcontroller = new GConnectorController();
518         GConnectorModel* connectorModel = new GConnectorModel();
519         vtkGConnectorView* connectorView = new vtkGConnectorView();
520         connectorModel->setGObjectType(type);
521
522         manContourModel->SetCloseContour(false);
523         connectorModel->setStartPort(startPort);
524
525         manContourView->SetModel(manContourModel);
526         manContourView->SetWxVtkBaseView(_baseView);
527         manContourView->SetRange(0.5);
528         manContourView->SetZ(900);
529
530         manContourView->SetColorNormalContour(0, 0, 1);
531         manContourView->SetColorEditContour(0.5, 0.5, 0.5);
532         manContourView->SetColorSelectContour(1, 0.8, 0);
533         
534         /**
535          * JGRR AND CM
536          * Width increased from 2 to 5, it simplifies line handling and spline control :P
537          * @param WidthLine  
538          */ 
539         manContourView->SetWidthLine( 3 ) ;
540         manContourView->SetShowText(false);
541
542         manContourControl->SetModelView(manContourModel, manContourView);
543
544         manContourControl->CreateNewManualContour();
545
546         manContourView->RefreshContour();
547
548         double x, y, z;
549         connectorModel->getInicPoint(x, y, z);
550
551         manContourControl->SetState(1);
552         manContourModel->SetCloseContour(false);
553
554         manContourModel->AddPoint(x, y, z);
555         manContourView->AddPoint();
556
557         manContourModel->AddPoint(x, y, z);
558         manContourView->AddPoint();
559
560         int bak = manContourControl->GetNumberOfPointsManualContour() - 1;
561         manContourControl->_bakIdPoint = bak;
562         manContourView->Refresh();
563
564         manContourControl->SetMoving(false);
565
566         connectorcontroller->setModelAndView(connectorModel, connectorView);
567
568         int newId = addObjectController(connectorcontroller);
569
570         connectorcontroller->setManualContourController(manContourControl);
571         connectorModel->setManualContourModel(manContourModel);
572         connectorView->setManualContourView(manContourView);
573         connectorView->setModel(connectorModel);
574         connectorView->setBaseView(_baseView);
575
576         connectorModel->addObserver(connectorView);
577         connectorModel->addObserver(this);
578
579         return newId;
580 }
581
582 //=========================================================================
583
584 void wxVtkSceneManager::registerController(InteractorStyleMaracas *param) {
585         vtkInteractorStyleBaseView
586                         * baseViewControlManager =
587                                         (vtkInteractorStyleBaseView*) _baseView->GetInteractorStyleBaseView();
588         baseViewControlManager->AddInteractorStyleMaracas(param);
589 }
590
591 //=========================================================================
592
593 void wxVtkSceneManager::unregisterController(InteractorStyleMaracas *param) {
594         vtkInteractorStyleBaseView
595                         * baseViewControlManager =
596                                         (vtkInteractorStyleBaseView*) _baseView->GetInteractorStyleBaseView();
597         baseViewControlManager->RemoveInteractorStyleMaracas(param);
598 }
599
600 //=========================================================================
601
602 vtkRenderer* wxVtkSceneManager::getRenderer() {
603         return _baseView->GetRenderer();
604 }
605
606 //=========================================================================
607
608 vtkRenderWindow* wxVtkSceneManager::getRenderWindow() {
609         return _baseView->GetRenWin();
610 }
611 //=========================================================================
612
613
614 //=========================================================================
615 int wxVtkSceneManager::GetIndexInSelected(int idControler) {
616         int index = -1;
617         for (int i = 0; i < (int) _selectedObjects.size(); i++) {
618                 if (_selectedObjects[i] == idControler) {
619                         index = i;
620                         break;
621                 }
622         }
623         return index;
624 }
625 //=========================================================================
626
627 void wxVtkSceneManager::update(int idController, int command) {
628
629         if (command != NO_COMMAND) {
630                 if (command == ADD_TO_SELECTED) {
631                         //EEDBorrame                            GObjectController* cont = _controllers[idController];
632
633                         if (GetIndexInSelected(idController) == -1) {
634                                 _selectedObjects.push_back(idController);
635                         }
636
637                         //EEDBorrame
638                         //                              bool foundID=false;
639                         //                              for (int i=0; i<(int)_selectedObjects.size() && foundID==false; i++)
640                         //                              {
641                         //                                      if(_selectedObjects[i]==idController)
642                         //                                      {
643                         //                                              foundID = true;
644                         //                                      }
645                         //                              }
646                         //                              if(!foundID)
647                         //                              {
648                         //                                      _selectedObjects.push_back(idController);
649                         //                              }
650
651                 } else if (command == REMOVE_FROM_SELECTED) {
652                         int index = GetIndexInSelected(idController);
653                         if (index >= 0) {
654                                 _selectedObjects.erase(_selectedObjects.begin() + index);
655                         }
656                 } else if (command == INIT_CREATION_CONTOUR) {
657
658                 // JGRR & CM WH
659                 typedef std::map<int , GObjectController*>::iterator TIterator ;
660                 TIterator iter ;
661                 TIterator iter_end ;
662                 // Find current item in the controller
663                 iter = _controllers.find( idController ) ;
664                 iter_end = _controllers.end( ) ;
665                 // If item exist 
666                 if ( iter != iter_end ) {
667                     GObjectController* gobjc = iter->second ;
668
669                     std::string bbtkType = gobjc->getModel( )->getBBTKType( ) ;
670                     // And if the item is a port
671                     if ( gobjc->getModel( )->getGObjectType( ) == GPORT ) {
672                         TIterator c_it = _controllers.begin( ) ;
673                         // Go through all componets 
674                         for ( c_it ; c_it != iter_end ; c_it++ ) {
675                             GObjectController* obc = c_it->second ;
676                             int obc_type = obc->getModel( )->getGObjectType( ) ;
677                             std::string obc_bbtkType = obc->getModel( )->getBBTKType( ) ;
678                             // if the component is a port and the type is the same of that selected
679                             if ( ( obc_type == GPORT ) && ( obc_bbtkType == bbtkType ) ) {
680                                 // Highliht element 
681                                 obc->getView( )->setState( POSSIBLE_CONNECTION ) ;                             
682                                 //obc->getView( )->setState( HIGHLIGHTED ) ;
683                             }
684                         }
685                     }
686                 }
687
688                 // EO JGRR & CM WH  
689                      
690                         _worldState = INIT_CREATION_CONTOUR;
691                         GObjectController* cont = _controllers[idController];
692                         GPortModel* startOutputPort = (GPortModel*) cont->getModel();
693
694                         // The last one is the controller of the connector
695                         std::map<int, GObjectController*>::iterator it2;
696
697                         for (it2 = _controllers.begin(); it2 != _controllers.end(); ++it2) {
698                                 GObjectController *cont = it2->second;
699                                 if (cont->getGObjectType() == GPORT) {
700                                         GPortModel* port = (GPortModel*) cont->getModel();
701                                         if (port->getPortType() == GINPUTPORT) {
702                                                 cont->SetActive(true);
703                                         } else {
704                                                 cont->getView()->setState(NOTHING_HAPPENS);
705                                                 cont->getModel()->notifyObservers(_idManager);
706                                                 cont->SetActive(false);
707                                         }
708                                 } else {
709                                         cont->getView()->setState(NOTHING_HAPPENS);
710                                         cont->getModel()->notifyObservers(_idManager);
711                                         cont->SetActive(false);
712                                 }
713                         }
714                         _selectedObjects.clear();
715                         _idConnectionInCreation = createGConnector(startOutputPort);
716                 } else if (command == FIN_CREATION_CONTOUR && _worldState
717                                 == INIT_CREATION_CONTOUR) {
718                         _worldState = NOTHING_HAPPENS;
719                         //int id = _controllers.size()-1;
720                         GObjectController *cont = _controllers[_idConnectionInCreation];
721                         GConnectorModel *modelContour = (GConnectorModel*) cont->getModel();
722                         GObjectController *finPort = _controllers[idController];
723
724                         if (finPort->getGObjectType() == GPORT) {
725                                 GPortModel* modelPort = (GPortModel*) finPort->getModel();
726                                 modelContour->setEndPort(modelPort);
727
728                                 // JGRR CM                     
729                                 typedef std::map<int, GObjectController*>::iterator TIterator;
730                                 TIterator c_it = _controllers.begin();
731                                 TIterator iter_end = _controllers.end();
732                                 // Go through all componets 
733                                 for (c_it; c_it != iter_end; c_it++) {
734                                     GObjectController* obc = c_it->second;
735                                     int obc_type = obc->getModel()->getGObjectType();
736                                     int obc_state = obc->getView()->getState();
737                                     // if the component is a port and the type is the same of that selected
738                                     if ((obc_type == GPORT) && (obc_state == POSSIBLE_CONNECTION)) {
739                                         // Return element to neutral state if not selected
740                                         obc->getView()->setState(NOTHING_HAPPENS);
741                                     }
742                                     if ((obc_type == GPORT) && (obc_state == SELECTED_POSSIBLE_CONNECTION)) {
743                                         // Change element to connected state
744                                         obc->getView()->setState(HIGHLIGHTED);
745
746                                     }
747
748                                 }
749                                 // EO JGRR CM                                
750                     
751                                 _parent->saveTempDiagram();
752                         }
753
754                         manualConnectorContourController
755                                         * manCont =
756                                                         ((GConnectorController*) cont)->getManualContourController();
757                         manualConnectorContourView
758                                         * connView =
759                                                         (manualConnectorContourView*) manCont->GetManualViewBaseContour();
760                         connView->Refresh();
761
762                         std::map<int, GObjectController*>::iterator it2;
763
764                         for (it2 = _controllers.begin(); it2 != _controllers.end(); ++it2) {
765                                 GObjectController *cont = it2->second;
766                                 if (cont->getView() != NULL) {
767                                         cont->getView()->setState(NOTHING_HAPPENS);
768                                         cont->getModel()->notifyObservers(_idManager);
769                                 }
770                                 cont->SetActive(true);
771                         }
772                 }
773
774         }
775
776 }
777
778 //=========================================================================
779
780 bool wxVtkSceneManager::OnMouseMove() {
781         int X, Y;
782         bool okStatusMessage = false;
783         bool okPortMessage = false;
784         wxVTKRenderWindowInteractor *wxVTKiren;
785         wxVTKiren
786                         = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
787         wxVTKiren->GetEventPosition(X, Y);
788
789         if (_worldState == DRAG_OBJECTS) {
790                 for (int i = 0; i < (int) _selectedObjects.size(); i++) {
791                         int id = _selectedObjects[i];
792                         GObjectController* cont = _controllers[id];
793                         if (_startDragging) {
794                                 cont->getView()->setStartDragging(true);
795                         }
796                         cont->getView()->moveObject(X, Y);
797                         cont->getView()->setState(DRAG);
798                         cont->getModel()->notifyObservers(_idManager);
799                 }
800
801                 std::map<int, GObjectController*>::iterator it;
802
803                 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
804                         GObjectController *desc = it->second;
805                         if (desc->getGObjectType() == GCONNECTOR) {
806                                 vtkGConnectorView* vconn = (vtkGConnectorView*) desc->getView();
807                                 vconn->updateStartEndPoints();
808                         }
809                 }
810
811                 _startDragging = false;
812
813         } else if (_worldState == NOTHING_HAPPENS || _worldState
814                         == INIT_CREATION_CONTOUR) {
815                 std::map<int, GObjectController*>::iterator it;
816                 double px, py, pz;
817                 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
818                         GObjectController *desc = it->second;
819                         int type = desc->getGObjectType();
820                         int state = desc->getView()->getState();
821                         desc->getModel()->getCenter(px, py, pz);
822
823                         // JGRR & CM
824                         if ((state == HIGHLIGHTED) || (state == SELECTED_POSSIBLE_CONNECTION )) {
825                         // EO JGRR & CM    
826                                 okStatusMessage = true;
827                                 updateStatusBar(desc->getStatusText());
828                                 if (type == GBLACKBOX) {
829                                         GBlackBoxModel *mod = (GBlackBoxModel*) desc->getModel();
830                                         _parent->displayBlackBoxInfo(mod->getBBTKPackage(),
831                                                         mod->getBBTKType());
832                                 } // if GBLACKBOX
833                                 if (type == GPORT) {
834                                         // PortText
835                                         okPortMessage = true;
836                                         py = py + 5;
837                                         _textActor->SetInput(desc->getStatusText().c_str());
838                                         _textActor->SetScale(0.1);
839                                         _textActor->SetPosition(px - 25, py + 1, pz + 2);
840
841                                         // FillPortText
842                                         px = px - 33;
843                                         py = py;
844                                         _fillObjectActor->SetScale(1);
845                                         _fillObjectActor->GetProperty()->SetOpacity(0.50);
846                                         _fillObjectActor->SetPosition(px, py, 1);
847                                         _aPolygonMapper->Modified();
848                                 } // if GPORT
849
850                         } // for controllers it
851                 }
852         }
853         if (okStatusMessage == false) {
854                 updateStatusBar("");
855         }
856
857         if (okPortMessage == false) {
858                 _textActor->SetScale(0.0001);
859                 _fillObjectActor->SetScale(0.0001);
860         }
861         return true;
862 }
863
864 //=========================================================================
865
866 bool wxVtkSceneManager::OnLeftButtonDown() {
867
868         if (_worldState == INIT_CREATION_CONTOUR) {
869                 bool isOverPort = false;
870                 std::map<int, GObjectController*>::iterator it;
871                 for (it = _controllers.begin(); it != _controllers.end() && isOverPort
872                                 == false; ++it) {
873                         GObjectController *desc = it->second;
874                         if (desc->getGObjectType() == GPORT) {
875                                 GPortModel *portmod = (GPortModel*) desc->getModel();
876                                 vtkGObjectView *portView = desc->getView();
877                                 if (portmod->getPortType() == GINPUTPORT
878                                                 && portView->getState() == HIGHLIGHTED) {
879                                         isOverPort = true;
880                                  } // if
881                                 // JGRR & CM                    
882                                 if ( portmod->getPortType( ) == GINPUTPORT &&  portView->getState( ) == SELECTED_POSSIBLE_CONNECTION   ) {
883                                     isOverPort = true ;
884                                     portView->setState( HIGHLIGHTED);
885                                 }                    
886                                 // EO JGRR & CM 
887
888                         } // if
889                 } // for
890
891                 if (isOverPort == false) {
892                         CancelConnection();
893                         UnSelectBlackBoxes();
894                 } // isOverPort
895         
896
897         } else { //_worldState
898
899                 _worldState = DRAG_OBJECTS;
900                 _startDragging = true;
901
902                 int shiftkey =
903                                 _vtkInteractorStyleBaseView->GetInteractor()->GetShiftKey();
904                 int ctrlkey =
905                                 _vtkInteractorStyleBaseView->GetInteractor()->GetControlKey();
906                 ctrlkey = ctrlkey + shiftkey;
907
908                 GObjectController *cont = GetGBlackBoxControlerPointedByMouse();
909
910                 if (GetGBlackBoxControlerPointedByMouse() != NULL) {
911                         int state = cont->getView()->getState();
912                         if ((ctrlkey == 0) && (state == HIGHLIGHTED)) {
913                                 UnSelectBlackBoxes();
914                         }
915                 }
916                 for (int i = 0; i < (int) _selectedObjects.size(); i++) {
917                         int id = _selectedObjects[i];
918                         GObjectController* cont = _controllers[id];
919                         cont->getView()->setState(DRAG);
920                         cont->getModel()->notifyObservers(_idManager);
921                 } // for
922                 
923         } // if _selectedObjects.size
924
925
926         return true;
927 }
928
929 //=========================================================================
930
931 bool wxVtkSceneManager::OnLeftButtonUp() {
932         if (_worldState == DRAG_OBJECTS) {
933                 _worldState = NOTHING_HAPPENS;
934
935                 for (int i = 0; i < (int) _selectedObjects.size(); i++) {
936                         int id = _selectedObjects[i];
937                         GObjectController* cont = _controllers[id];
938                         cont->getView()->setState(SELECTED);
939                         cont->getModel()->notifyObservers(_idManager);
940                 }
941         }
942         return true;
943 }
944
945 //=========================================================================
946 void wxVtkSceneManager::CancelConnection() {
947         if (_worldState == INIT_CREATION_CONTOUR) {
948                 _worldState = NOTHING_HAPPENS;
949                 //int lastId = _controllers.size()-1;
950
951                 GConnectorController *connector =
952                                 (GConnectorController*) _controllers[_idConnectionInCreation];
953                 connector->removeFromScene();
954                 unregisterController(connector);
955                 _controllers.erase(_idConnectionInCreation);
956
957                 std::map<int, GObjectController*>::iterator it;
958                 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
959                         GObjectController *desc = it->second;
960                         desc->SetActive(true);
961                         desc->getView()->setState(NOTHING_HAPPENS);
962                         desc->getModel()->notifyObservers(_idManager);
963                 } // for
964         }// if
965 }
966
967 //=========================================================================
968
969 bool wxVtkSceneManager::OnRightButtonUp() {
970         if (_worldState == INIT_CREATION_CONTOUR) {
971                 CancelConnection();
972         }
973         UnSelectBlackBoxes();
974         return true;
975 }
976
977  ///JLGR 21-05-2012
978
979 bool wxVtkSceneManager::OnMiddleButtonDown() {
980
981
982         this->_vtkInteractorStyleBaseView->StartPan();
983
984         return true;
985     }
986
987 bool wxVtkSceneManager::OnMiddleButtonUp() {
988
989
990         this->_vtkInteractorStyleBaseView->EndPan();
991
992
993         return true;
994     }
995
996
997 //=========================================================================
998
999 GObjectController *wxVtkSceneManager::GetGBlackBoxControlerPointedByMouse() {
1000         GObjectController *result = NULL;
1001         int X, Y;
1002         wxVTKRenderWindowInteractor *wxVTKiren;
1003         wxVTKiren
1004                         = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
1005         wxVTKiren->GetEventPosition(X, Y);
1006
1007         std::map<int, GObjectController*>::iterator it;
1008
1009         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
1010                 GObjectController *cont = it->second;
1011                 int type = cont->getGObjectType();
1012
1013                 if (cont->getView()->isPointInside(X, Y) == true) {
1014                         if (type == GBLACKBOX) {
1015                                 result = cont;
1016                         } // if type
1017                 } // if isPointInside
1018         } // for it
1019         return result;
1020 }
1021
1022 //=========================================================================
1023 void wxVtkSceneManager::UnSelectBlackBoxes() {
1024         for (int i = 0; i < (int) _selectedObjects.size(); i++) {
1025                 int id = _selectedObjects[i];
1026                 GObjectController* control = _controllers[id];
1027                 control->getView()->setState(NOTHING_HAPPENS);
1028         }// for _selectedObjects
1029         _selectedObjects.clear();
1030 }
1031
1032 //=========================================================================
1033 bool wxVtkSceneManager::OnLeftDClick() {
1034         GObjectController *cont = GetGBlackBoxControlerPointedByMouse();
1035         if (cont != NULL) {
1036                 UnSelectBlackBoxes();
1037                 _parent->editBlackBox((GBlackBoxModel*) cont->getModel());
1038         }
1039
1040         /*EED Borrame
1041
1042          int X,Y;
1043          wxVTKRenderWindowInteractor *wxVTKiren;
1044          wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
1045          wxVTKiren->GetEventPosition(X,Y);
1046
1047          std::map<int, GObjectController*>::iterator it;
1048
1049          bool clickOnObject = false;
1050
1051          for(it = _controllers.begin(); it != _controllers.end() && clickOnObject==false; ++it)
1052          {
1053          GObjectController *cont = it->second;
1054          int type = cont->getGObjectType();
1055
1056          if(cont->getView()->isPointInside(X,Y))
1057          {
1058          if(type==GBLACKBOX)
1059          {
1060          for (int i=0; i< (int)_selectedObjects.size(); i++)
1061          {
1062          int id = _selectedObjects[i];
1063          GObjectController* control = _controllers[id];
1064          control->getView()->setState(NOTHING_HAPPENS);
1065          }
1066          _selectedObjects.clear();
1067
1068          GBlackBoxModel *bbmodel = (GBlackBoxModel*)cont->getModel();
1069          _parent->editBlackBox(bbmodel);
1070          }
1071          clickOnObject = true;
1072          }
1073          }
1074
1075          if(clickOnObject==false)
1076          {
1077          //_parent->editDiagramParameters(this);
1078          }
1079          */
1080         return true;
1081 }
1082
1083 //=========================================================================
1084
1085 bool wxVtkSceneManager::OnChar() {
1086         char keyCode = _vtkInteractorStyleBaseView->GetInteractor()-> GetKeyCode();
1087         int ctrlkey = _vtkInteractorStyleBaseView->GetInteractor()->GetControlKey();
1088         
1089         // KeyCode 127 : Delete Key
1090         // KeyCode 8 : Backspace Key
1091         if (keyCode == 8 || keyCode == 127) {
1092                 if (_selectedObjects.size() > 0) {
1093                         for (int i = 0; i < (int) _selectedObjects.size(); i++) {
1094                                 int id = _selectedObjects[i];
1095                                 std::map<int, GObjectController*>::iterator it;
1096                                 it = _controllers.find(id);
1097                                 if (it != _controllers.end()) {
1098                                         deleteObject(id);
1099                                 }
1100                         }
1101                         _selectedObjects.clear();
1102                 }
1103         }
1104         ctrlkey+=keyCode;
1105         /// Duplicate 
1106              if(ctrlkey==5){                
1107                 if(_selectedObjects.size()){
1108                     std::cout<<"objects to copy :";
1109                     for(int i=0;i<_selectedObjects.size();i++){
1110                        std::cout<<_selectedObjects.at(i)<<" ";
1111                     }
1112                     DuplicateObjects(getSelectedObjects());   
1113                 }else{
1114                     std::cout<<"No objects to copy\n";
1115                 }
1116             }  
1117
1118         return true;
1119 }
1120
1121 //=========================================================================
1122
1123 void wxVtkSceneManager::AddControlerToBeRemove(
1124                 std::vector<int> *controllersToRemove, int id) {
1125
1126         int i;
1127         bool ok = true;
1128         for (i = 0; i < (int) controllersToRemove->size(); i++) {
1129                 if (id == (*controllersToRemove)[i]) {
1130                         ok = false;
1131                 }
1132         }
1133
1134         if (ok == true) {
1135                 controllersToRemove->push_back(id);
1136         }
1137
1138 }
1139
1140 //=========================================================================
1141
1142 void wxVtkSceneManager::deleteObject(int id) {
1143         GObjectController *control = _controllers[id];
1144         std::vector<int> controllersToRemove;
1145
1146         if (control->getGObjectType() == GBLACKBOX || control->getGObjectType()
1147                         == GCOMPLEXINPUTPORT || control->getGObjectType()
1148                         == GCOMPLEXOUTPUTPORT) {
1149                 GBoxModel *bbmod = (GBoxModel*) control->getModel();
1150                 std::vector<GPortModel*> inputs = bbmod->getInputPorts();
1151
1152                 bool boxConnected = false;
1153
1154                 // Add box input controllers to be removed
1155                 for (int i = 0; i < (int) inputs.size(); i++) {
1156                         AddControlerToBeRemove(&controllersToRemove,
1157                                         inputs[i]->getObjectId());
1158                         if (inputs[i]->isConnected()) {
1159                                 boxConnected = true;
1160                         }
1161                 }
1162
1163                 std::vector<GPortModel*> outputs = bbmod->getOutputPorts();
1164
1165                 // Add box output controllers to be removed
1166                 for (int i = 0; i < (int) outputs.size(); i++) {
1167                         AddControlerToBeRemove(&controllersToRemove,
1168                                         outputs[i]->getObjectId());
1169                         if (outputs[i]->isConnected()) {
1170                                 boxConnected = true;
1171                         }
1172                 }
1173
1174                 // Add connection controllers to be removed
1175                 std::map<int, GObjectController*>::iterator it;
1176                 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
1177                         GObjectController *cont = it->second;
1178                         int type = cont->getGObjectType();
1179                         if (type == GCONNECTOR) {
1180                                 GConnectorModel *conMod = (GConnectorModel*) cont->getModel();
1181                                 if (conMod->getStartPort() != NULL
1182                                                 && conMod->getStartPort()->getParentBox()->getObjectId()
1183                                                                 == bbmod->getObjectId()) {
1184                                         AddControlerToBeRemove(&controllersToRemove,
1185                                                         conMod->getObjectId());
1186                                 }
1187                                 if (conMod->getEndPort() != NULL
1188                                                 && conMod->getEndPort()->getParentBox()->getObjectId()
1189                                                                 == bbmod->getObjectId()) {
1190                                         AddControlerToBeRemove(&controllersToRemove,
1191                                                         conMod->getObjectId());
1192                                 }
1193                         }
1194                 }
1195
1196                 // Add box controller to be removed
1197                 AddControlerToBeRemove(&controllersToRemove, bbmod->getObjectId());
1198         } else if (control->getGObjectType() == GCONNECTOR) {
1199                 GConnectorModel *conMod = (GConnectorModel*) control->getModel();
1200                 AddControlerToBeRemove(&controllersToRemove, conMod->getObjectId());
1201         }
1202
1203         std::map<int, GObjectController*>::iterator it;
1204
1205         for (int i = 0; i < (int) controllersToRemove.size(); i++) {
1206                 int key = controllersToRemove[i];
1207                 it = _controllers.find(key);
1208                 GObjectController *cont = _controllers[key];
1209                 if (cont != NULL) {
1210                         cont->removeFromScene();
1211                         unregisterController((InteractorStyleMaracas*) cont);
1212                         _controllers.erase(it);
1213                 }//if
1214         }// for
1215         _parent->saveTempDiagram();
1216 }
1217
1218 //=========================================================================
1219
1220 void wxVtkSceneManager::displayBlackBoxInfo(std::string packageName,
1221                 std::string boxName) {
1222         _parent->displayBlackBoxInfo(packageName, boxName);
1223 }
1224
1225 //=========================================================================
1226
1227 void wxVtkSceneManager::updateStatusBar(std::string textStatus) {
1228         _parent->updateStatusBar(textStatus);
1229 }
1230
1231 //=========================================================================
1232 std::string wxVtkSceneManager::LineNumber(bool withLineNumber, int &value) {
1233         std::string result = "";
1234         if (withLineNumber == true) {
1235                 value++;
1236                 stringstream StrStream;
1237                 StrStream << value;
1238                 std::string strValue = StrStream.str();
1239                 if (value < 10) {
1240                         result += "  ";
1241                 } else if (value < 100) {
1242                         result += " ";
1243                 }
1244
1245                 result += strValue + ": ";
1246         }
1247         return result;
1248 }
1249 //=========================================================================
1250 //DFCH
1251 bool wxVtkSceneManager::MakeBoxExecutable() {
1252         std::map<int, GObjectController*> selected = getSelectedObjects();
1253         if( selected.empty() )
1254                 return false;
1255         bool ret = false;
1256         std::map<int, GObjectController*>::iterator it;
1257         for (it = selected.begin(); it != selected.end(); ++it) {
1258                 GObjectController* lastSelected = it->second;
1259                 if (lastSelected) {
1260                         vtkGObjectView* view = (vtkGObjectView*) lastSelected->getView();
1261                         GBlackBoxModel *bbmodel =
1262                                         (GBlackBoxModel*) lastSelected->getModel();
1263                         view->setState(HIGHLIGHTED);
1264                         if (bbmodel->isExecutable()) {
1265                                 bbmodel->setExecutable(false);
1266                         } else {
1267                                 bbmodel->setExecutable(true);
1268                         }
1269                         bbmodel->notifyObservers(lastSelected->getId());
1270                         ret = true;
1271                 }
1272         }
1273         return ret;
1274 }
1275 //DFCH
1276
1277 //=========================================================================
1278
1279 std::string wxVtkSceneManager::getDiagramBBS(bool wln) {
1280         bool existsExec = false;
1281
1282         std::vector<std::string> packages;
1283         std::vector<int> boxes;
1284         std::vector<int> connections;
1285         std::vector<int> execBoxes;
1286
1287         std::map<int, GObjectController*>::iterator it;
1288
1289         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
1290                 GObjectController *desc = it->second;
1291                 int type = desc->getGObjectType();
1292
1293                 if (type == GBLACKBOX) {
1294                         GBlackBoxModel *mod = (GBlackBoxModel*) desc->getModel();
1295
1296                         std::string pkg = mod->getBBTKPackage();
1297                         bool existsPkg = false;
1298                         for (int t = 0; t < (int) packages.size() && existsPkg == false; t++) {
1299                                 if (packages[t] == pkg) {
1300                                         existsPkg = true;
1301                                 }
1302                         }
1303                         if (!existsPkg) {
1304                                 packages.push_back(pkg);
1305                         }
1306
1307                         boxes.push_back(it->first);
1308                         if (mod->isExecutable()) {
1309                                 execBoxes.push_back(it->first);
1310                                 existsExec = true;
1311                         }
1312                 } else if (type == GCONNECTOR) {
1313                         connections.push_back(it->first);
1314                 }
1315         }
1316
1317         int lnNmbr = 0;
1318         std::string script = "";
1319         script += LineNumber(wln, lnNmbr) + "# BBTK GEditor Script\n";
1320         script += LineNumber(wln, lnNmbr) + "# ----------------------\n";
1321         script += LineNumber(wln, lnNmbr) + "\n";
1322         if (existsExec) {
1323                 script += LineNumber(wln, lnNmbr) + "include std\n"; // EED
1324                 script += LineNumber(wln, lnNmbr) + "include itkvtk\n"; // EED
1325                 int i;
1326                 for (i = 0; i < (int) packages.size(); i++) {
1327                         script += LineNumber(wln, lnNmbr);
1328                         script += "include ";
1329                         script += packages[i];
1330                         script += "\n";
1331                 }
1332
1333                 script += LineNumber(wln, lnNmbr);
1334                 script += "\n";
1335
1336                 //ups2
1337
1338                 script += LineNumber(wln, lnNmbr);
1339                 script += "author \"";
1340                 script += _Author;
1341                 script += "\"\n";
1342
1343                 script += LineNumber(wln, lnNmbr);
1344                 script += "description \"";
1345                 script += _Description;
1346                 script += "\"\n";
1347
1348                 script += LineNumber(wln, lnNmbr);
1349                 script += "category \"";
1350                 script += _Category;
1351                 script += "\"\n";
1352
1353                 script += LineNumber(wln, lnNmbr);
1354                 script += "\n";
1355
1356                 // script+="include std\n"; // JPR
1357
1358                 for (i = 0; i < (int) boxes.size(); i++) {
1359                         script += LineNumber(wln, lnNmbr);
1360                         script += "new ";
1361                         int id = boxes[i];
1362                         GObjectController *control = _controllers[id];
1363                         GBlackBoxModel *model = (GBlackBoxModel*) control->getModel();
1364
1365                         script += model->getBBTKType();
1366                         script += " ";
1367                         script += model->getBBTKName();
1368                         script += "\n";
1369
1370                         std::vector<GPortModel*> inputs = model->getInputPorts();
1371                         for (int j = 0; j < (int) inputs.size(); j++) {
1372                                 GPortModel* inputPort = inputs[j];
1373                                 if (inputPort->isValueSet()) {
1374                                         script += LineNumber(wln, lnNmbr);
1375                                         script += "  set ";
1376                                         script += model->getBBTKName();
1377                                         script += ".";
1378                                         script += inputPort->getBBTKName();
1379                                         script += " ";
1380                                         script += inputPort->getValue();
1381                                         script += "\n";
1382                                 }
1383                         }
1384
1385                         script += LineNumber(wln, lnNmbr);
1386                         script += "\n";
1387
1388                 }
1389
1390                 script += LineNumber(wln, lnNmbr);
1391                 script += "\n";
1392
1393                 for (i = 0; i < (int) connections.size(); i++) {
1394                         script += LineNumber(wln, lnNmbr);
1395                         script += "connect ";
1396                         int id = connections[i];
1397                         GObjectController *control = _controllers[id];
1398                         GConnectorModel *model = (GConnectorModel*) control->getModel();
1399
1400                         //Start Connection info
1401                         GPortModel *start = model->getStartPort();
1402                         script += start->getParentBox()->getBBTKName();
1403                         script += ".";
1404                         script += start->getBBTKName();
1405
1406                         script += " ";
1407
1408                         //End Connection info
1409                         GPortModel *end = model->getEndPort();
1410                         script += end->getParentBox()->getBBTKName();
1411                         script += ".";
1412                         script += end->getBBTKName();
1413
1414                         script += "\n";
1415                 }
1416
1417                 script += LineNumber(wln, lnNmbr);
1418                 script += "\n";
1419                 for (i = 0; i < (int) execBoxes.size(); i++) {
1420                         script += LineNumber(wln, lnNmbr);
1421                         script += "exec ";
1422                         int id = execBoxes[i];
1423                         GObjectController *control = _controllers[id];
1424                         GBlackBoxModel *model = (GBlackBoxModel*) control->getModel();
1425
1426                         script += model->getBBTKName();
1427                         script += "\n";
1428                 }
1429
1430         }
1431
1432         return script;
1433 }
1434
1435 //=========================================================================
1436
1437 std::string wxVtkSceneManager::saveComplexBoxBBS() {
1438         std::vector<std::string> packages;
1439         std::vector<int> boxes;
1440         std::vector<int> connections;
1441         std::vector<int> execBoxes;
1442
1443         std::map<int, GObjectController*>::iterator it;
1444
1445         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
1446                 GObjectController *desc = it->second;
1447                 int type = desc->getGObjectType();
1448
1449                 if (type == GBLACKBOX) {
1450                         GBlackBoxModel *mod = (GBlackBoxModel*) desc->getModel();
1451
1452                         std::string pkg = mod->getBBTKPackage();
1453                         bool existsPkg = false;
1454                         for (int t = 0; t < (int) packages.size() && existsPkg == false; t++) {
1455                                 if (packages[t] == pkg) {
1456                                         existsPkg = true;
1457                                 }
1458                         }
1459                         if (!existsPkg) {
1460                                 packages.push_back(pkg);
1461                         }
1462
1463                         boxes.push_back(it->first);
1464                         if (mod->isExecutable()) {
1465                                 execBoxes.push_back(it->first);
1466                         }
1467                 } else if (type == GCONNECTOR) {
1468                         connections.push_back(it->first);
1469                 }
1470         }
1471
1472         std::string script = "";
1473
1474         script += "include std\n"; // EED
1475         script += "include itkvtk\n"; // EED
1476         int i;
1477         for (i = 0; i < (int) packages.size(); i++) {
1478                 script += "include ";
1479                 script += packages[i];
1480                 script += "\n";
1481         }
1482         script += "\n";
1483
1484         // Definition of a complex box
1485         script += "define ";
1486         script += _cbName + " " + _cbPackageName;
1487         script += "\n";
1488         script += "\n";
1489
1490         script += "author \"";
1491         script += _Author;
1492         script += "\"\n";
1493
1494         script += "description \"";
1495         script += _Description;
1496         script += "\"\n";
1497         script += "\n";
1498
1499         script += "category \"";
1500         script += _Category;
1501         script += "\"\n";
1502         script += "\n";
1503
1504         // Create boxes
1505         for (i = 0; i < (int) boxes.size(); i++) {
1506                 script += "new ";
1507                 int id = boxes[i];
1508                 GObjectController *control = _controllers[id];
1509                 GBlackBoxModel *model = (GBlackBoxModel*) control->getModel();
1510
1511                 script += model->getBBTKType();
1512                 script += " ";
1513                 script += model->getBBTKName();
1514                 script += "\n";
1515
1516                 std::vector<GPortModel*> inputs = model->getInputPorts();
1517                 for (int j = 0; j < (int) inputs.size(); j++) {
1518                         GPortModel* inputPort = inputs[j];
1519                         if (inputPort->isValueSet()) {
1520                                 script += "  set ";
1521                                 script += model->getBBTKName();
1522                                 script += ".";
1523                                 script += inputPort->getBBTKName();
1524                                 script += " ";
1525                                 script += inputPort->getValue();
1526                                 script += "\n";
1527                         }
1528                 }
1529                 script += "\n";
1530
1531         }
1532
1533         // Create connections in the script. If the connection is made with a complex port, it is created the input or output
1534
1535         std::string complexInputs = "";
1536         std::string complexOutputs = "";
1537         script += "\n";
1538
1539         for (i = 0; i < (int) connections.size(); i++) {
1540                 int id = connections[i];
1541                 GObjectController *control = _controllers[id];
1542                 GConnectorModel *model = (GConnectorModel*) control->getModel();
1543
1544                 //Connection info
1545                 GPortModel *start = model->getStartPort();
1546                 GBoxModel *startBox = start->getParentBox();
1547
1548                 GPortModel *end = model->getEndPort();
1549                 GBoxModel *endBox = end->getParentBox();
1550
1551                 if (startBox->getGObjectType() == GCOMPLEXINPUTPORT) {
1552                         complexInputs += "input ";
1553                         complexInputs += startBox->getBBTKName();
1554
1555                         complexInputs += " ";
1556                         complexInputs += endBox->getBBTKName();
1557                         complexInputs += ".";
1558                         complexInputs += end->getBBTKName();
1559
1560                         complexInputs += " ";
1561                         complexInputs += "\" \"";
1562
1563                         complexInputs += "\n";
1564                 } else if (endBox->getGObjectType() == GCOMPLEXOUTPUTPORT) {
1565                         complexOutputs += "output ";
1566                         complexOutputs += endBox->getBBTKName();
1567
1568                         complexOutputs += " ";
1569                         complexOutputs += startBox->getBBTKName();
1570                         complexOutputs += ".";
1571                         complexOutputs += start->getBBTKName();
1572
1573                         complexOutputs += " ";
1574                         complexOutputs += "\" \"";
1575
1576                         complexOutputs += "\n";
1577                 } else {
1578                         script += "connect ";
1579                         script += startBox->getBBTKName();
1580                         script += ".";
1581                         script += start->getBBTKName();
1582
1583                         script += " ";
1584
1585                         //End Connection info
1586                         script += endBox->getBBTKName();
1587                         script += ".";
1588                         script += end->getBBTKName();
1589
1590                         script += "\n";
1591                 }
1592         }
1593
1594         script += "\n";
1595
1596         for (i = 0; i < (int) execBoxes.size(); i++) {
1597                 script += "exec ";
1598                 int id = execBoxes[i];
1599                 GObjectController *control = _controllers[id];
1600                 GBlackBoxModel *model = (GBlackBoxModel*) control->getModel();
1601
1602                 script += model->getBBTKName();
1603                 script += "\n";
1604         }
1605
1606         script += "\n";
1607         script += "# Complex input ports\n";
1608         script += complexInputs;
1609
1610         script += "\n";
1611         script += "# Complex output ports\n";
1612         script += complexOutputs;
1613
1614         script += "\n";
1615         script += "endefine";
1616         script += "\n";
1617
1618         return script;
1619 }
1620
1621 //=========================================================================
1622
1623 void wxVtkSceneManager::deleteAllBoxes() {
1624         std::map<int, GObjectController*>::iterator it;
1625         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
1626                 GObjectController *cont = it->second;
1627                 cont->removeFromScene();
1628                 unregisterController((InteractorStyleMaracas*) cont);
1629         }
1630         _selectedObjects.clear();
1631         _controllers.clear();
1632         refreshScene();
1633 }
1634
1635 //=========================================================================
1636
1637
1638 void wxVtkSceneManager::refresh() {
1639         _baseView->Refresh();
1640 }
1641 //=========================================================================
1642
1643 void wxVtkSceneManager::refreshScene() {
1644         _baseView->RefreshView();
1645 }
1646
1647 //=========================================================================
1648
1649 void wxVtkSceneManager::centerView() {
1650         double temp[3];
1651         _baseView->GetRenderer()->GetActiveCamera()->GetFocalPoint(temp);
1652         _baseView->GetRenderer()->GetActiveCamera()->SetFocalPoint(0, 0, temp[2]);
1653         _baseView->GetRenderer()->GetActiveCamera()->GetPosition(temp);
1654         _baseView->GetRenderer()->GetActiveCamera()->SetPosition(0, 0, temp[2]);
1655         _baseView->RefreshView();
1656
1657 }
1658
1659 //=========================================================================
1660
1661 void wxVtkSceneManager::saveDiagram(std::string &content) {
1662         char buffer[50];
1663
1664         content += "CATEGORY:";
1665         content += GetCategory();
1666         content += "\n";
1667
1668         content += "DESCRIPTION:";
1669         content += GetDescription();
1670         content += "\n";
1671
1672         content += "AUTHOR:";
1673         content += GetAuthor();
1674         content += "\n";
1675
1676         //Print info IF COMPLEX BOX
1677         content += "COMPLEXBOX:";
1678         if (_isComplexBox) {
1679                 content += "TRUE\n";
1680                 //ups1
1681                 content += "COMPLEXBOXNAME:";
1682                 content += GetCbName();
1683                 content += "\n";
1684
1685                 content += "PACKAGENAME:";
1686                 content += GetCbPackageName();
1687                 content += "\n";
1688
1689                 //Print info complex input ports
1690                 std::vector<int> inputs = getComplexInputPorts();
1691                 int insize = inputs.size();
1692                 content += "COMPLEXINPUTS:";
1693                 sprintf(buffer, "%d", insize);
1694                 content += buffer;
1695                 content += "\n";
1696
1697                 for (int i = 0; i < insize; i++) {
1698                         int id = inputs[i];
1699                         GObjectController *cont = _controllers[id];
1700                         cont->getModel()->save(content);
1701                 }
1702
1703                 //Print info complex output ports
1704                 std::vector<int> outputs = getComplexOutputPorts();
1705                 int outsize = outputs.size();
1706                 content += "COMPLEXOUTPUTS:";
1707                 sprintf(buffer, "%d", outsize);
1708                 content += buffer;
1709                 content += "\n";
1710
1711                 for (int i = 0; i < outsize; i++) {
1712                         int id = outputs[i];
1713                         GObjectController *cont = _controllers[id];
1714                         cont->getModel()->save(content);
1715                 }
1716         } // _isComplexBox
1717         else {
1718                 content += "FALSE\n";
1719         }
1720
1721         //Print boxes
1722         std::vector<int> boxes = getBlackBoxes();
1723         int bsize = boxes.size();
1724         content += "BOXES:";
1725         sprintf(buffer, "%d", bsize);
1726         content += buffer;
1727         content += "\n";
1728
1729         for (int i = 0; i < bsize; i++) {
1730                 int id = boxes[i];
1731                 GObjectController *cont = _controllers[id];
1732                 cont->getModel()->save(content);
1733         }
1734
1735         //Print connections
1736         std::vector<int> connections = getConnections();
1737         int csize = connections.size();
1738         content += "CONNECTIONS:";
1739         sprintf(buffer, "%d", csize);
1740         content += buffer;
1741         content += "\n";
1742
1743         for (int i = 0; i < csize; i++) {
1744                 int id = connections[i];
1745                 GObjectController *cont = _controllers[id];
1746                 cont->getModel()->save(content);
1747         }
1748
1749 }
1750
1751 //=========================================================================
1752
1753 void wxVtkSceneManager::loadDiagram(stringstream &inputStream) {
1754
1755         std::string version = "<void>";
1756         std::string line = "";
1757         char delims[] = ":";
1758         char *result = NULL;
1759
1760         getline(inputStream, line);
1761
1762         bool start = false;
1763         while (!inputStream.eof()) {
1764                 if (line == "" || line[0] == '#') {
1765                         getline(inputStream, line);
1766                         if (line == "# - BBTKGEditor v 1.0 BBG BlackBox Diagram file") {
1767                                 version = line.substr(18, 3);
1768                         }
1769                         if (line == "# - BBTKGEditor v 1.1 BBG BlackBox Diagram file") {
1770                                 version = line.substr(18, 3);
1771                         }
1772                         if (line == "# - BBTKGEditor v 1.2 BBG BlackBox Diagram file") {
1773                                 version = line.substr(18, 3);
1774                         }
1775                 } else if (line == "APP_START") {
1776                         start = true;
1777                         break;
1778                 }
1779         }
1780
1781         printf("EED wxVtkSceneManager::loadDiagram  version=%s\n", version.c_str());
1782
1783         if (start) {
1784
1785                 if ((version != "1.0") && (version != "1.1")) {
1786                         getline(inputStream, line);//CATEGORY:<category of the box>
1787                         char categoryTmp[30];
1788                         strcpy(categoryTmp, line.c_str());
1789                         result = strtok(categoryTmp, delims);
1790                         result = strtok(NULL, delims);
1791                         SetCategory(result);
1792
1793                         getline(inputStream, line);//DESCRIPTION:<description of the box>
1794                         char descriptionTmp[1024];
1795                         strcpy(descriptionTmp, line.c_str());
1796                         result = strtok(descriptionTmp, delims);
1797                         result = strtok(NULL, delims);
1798                         SetDescription(result);
1799
1800                         getline(inputStream, line);//AUTHOR:<author>
1801                         char authorTmp[255];
1802                         strcpy(authorTmp, line.c_str());
1803                         result = strtok(authorTmp, delims);
1804                         result = strtok(NULL, delims);
1805                         SetAuthor(result);
1806                 }
1807
1808                 //----------
1809                 getline(inputStream, line);//COMPLEX_BOX:TRUE|FALSE
1810                 char complexTmp[30];
1811                 strcpy(complexTmp, line.c_str());
1812                 result = strtok(complexTmp, delims);
1813                 result = strtok(NULL, delims);
1814                 std::string isComplexBox(result);
1815
1816                 if (isComplexBox == "TRUE") {
1817                         _isComplexBox = true;
1818
1819                         if ((version != "1.0") && (version != "1.1")) {
1820                                 getline(inputStream, line);//COMPLEXNAME:<name of the complex box>
1821                                 char complexboxnameTmp[255];
1822                                 strcpy(complexboxnameTmp, line.c_str());
1823                                 result = strtok(complexboxnameTmp, delims);
1824                                 result = strtok(NULL, delims);
1825                                 SetCbName(result);
1826
1827                                 getline(inputStream, line);//PACKAGENAME:<name of the package of the box>
1828                                 char packagenameTmp[255];
1829                                 strcpy(packagenameTmp, line.c_str());
1830                                 result = strtok(packagenameTmp, delims);
1831                                 result = strtok(NULL, delims);
1832                                 SetCbPackageName(result);
1833                         }
1834
1835                         //-----------------------
1836                         //- COMPLEX INPUT PORTS
1837                         //-----------------------
1838                         getline(inputStream, line);//COMPLEXINPUTS:num
1839                         char inputs[30];
1840                         strcpy(inputs, line.c_str());
1841                         result = strtok(inputs, delims);
1842                         result = strtok(NULL, delims);
1843
1844                         int numInputs;
1845                         std::istringstream inps(result);
1846                         inps >> numInputs;
1847
1848                         for (int i = 0; i < numInputs; i++) {
1849                                 //----------
1850                                 getline(inputStream, line);//COMPLEX_PORT
1851                                 getline(inputStream, line);//name
1852                                 std::string inputPortName(line);
1853
1854                                 //----------
1855                                 getline(inputStream, line);//xInic:yInic:zInic
1856                                 char coord[80];
1857                                 strcpy(coord, line.c_str());
1858                                 result = strtok(coord, delims);//xInic
1859                                 std::string xInic(result);
1860                                 result = strtok(NULL, delims);//yInic
1861                                 std::string yInic(result);
1862                                 result = strtok(NULL, delims);//zInic
1863                                 std::string zInic(result);
1864
1865                                 double xIn, yIn, zIn;
1866                                 std::istringstream xSt(xInic);
1867                                 xSt >> xIn;
1868                                 std::istringstream ySt(yInic);
1869                                 ySt >> yIn;
1870                                 std::istringstream zSt(zInic);
1871                                 zSt >> zIn;
1872
1873                                 getline(inputStream, line);//FIN_COMPLEX_PORT
1874
1875                                 configGComBoxInputOutputPort(true, inputPortName, xIn, yIn, zIn);
1876
1877                         } // for input complex box
1878
1879
1880                         //-----------------------
1881                         //- COMPLEX OUTPUT PORTS
1882                         //-----------------------
1883
1884                         getline(inputStream, line);//COMPLEXOUTPUTS:num
1885                         char outputs[30];
1886                         strcpy(outputs, line.c_str());
1887                         result = strtok(outputs, delims);
1888                         result = strtok(NULL, delims);
1889
1890                         int numOutputs;
1891                         std::istringstream outps(result);
1892                         outps >> numOutputs;
1893
1894                         for (int i = 0; i < numOutputs; i++) {
1895                                 //----------
1896                                 getline(inputStream, line);//COMPLEX_PORT
1897                                 getline(inputStream, line);//name
1898                                 std::string outputPortName(line);
1899
1900                                 //----------
1901                                 getline(inputStream, line);//xInic:yInic:zInic
1902                                 char coord[80];
1903                                 strcpy(coord, line.c_str());
1904                                 result = strtok(coord, delims);//xInic
1905                                 std::string xInic(result);
1906                                 result = strtok(NULL, delims);//yInic
1907                                 std::string yInic(result);
1908                                 result = strtok(NULL, delims);//zInic
1909                                 std::string zInic(result);
1910
1911                                 double xIn, yIn, zIn;
1912                                 std::istringstream xSt(xInic);
1913                                 xSt >> xIn;
1914                                 std::istringstream ySt(yInic);
1915                                 ySt >> yIn;
1916                                 std::istringstream zSt(zInic);
1917                                 zSt >> zIn;
1918
1919                                 getline(inputStream, line);//FIN_COMPLEX_PORT
1920
1921                                 configGComBoxInputOutputPort(false, outputPortName, xIn, yIn,
1922                                                 zIn);
1923
1924                         } // for output complex box
1925
1926                 } // complex box
1927
1928                 //----------
1929                 getline(inputStream, line);//BOXES:num
1930                 char boxes[9];
1931                 strcpy(boxes, line.c_str());
1932                 result = strtok(boxes, delims);
1933                 result = strtok(NULL, delims);
1934
1935                 int numBoxes;
1936                 std::istringstream is(result);
1937                 is >> numBoxes;
1938
1939                 for (int i = 0; i < numBoxes; i++) {
1940                         //----------
1941                         getline(inputStream, line);//BOX
1942                         getline(inputStream, line);//package:type:name
1943                         char box[150];
1944                         strcpy(box, line.c_str());
1945                         result = strtok(box, delims);//package
1946                         std::string package(result);
1947                         result = strtok(NULL, delims);//type
1948                         std::string type(result);
1949                         result = strtok(NULL, delims);//name
1950                         std::string name(result);
1951
1952                         getline(inputStream, line);//ISEXEC:TRUE|FALSE
1953                         char exec[15];
1954                         strcpy(exec, line.c_str());
1955                         result = strtok(exec, delims);//ISEXEC
1956                         result = strtok(NULL, delims);//TRUE|FALSE
1957                         std::string isExec(result);
1958
1959                         //----------
1960                         getline(inputStream, line);//xInic:yInic:zInic
1961                         char coord[80];
1962                         strcpy(coord, line.c_str());
1963                         result = strtok(coord, delims);//xInic
1964                         std::string xInic(result);
1965                         result = strtok(NULL, delims);//yInic
1966                         std::string yInic(result);
1967                         result = strtok(NULL, delims);//zInic
1968                         std::string zInic(result);
1969
1970                         double xIn, yIn, zIn;
1971                         std::istringstream xSt(xInic);
1972                         xSt >> xIn;
1973                         std::istringstream ySt(yInic);
1974                         ySt >> yIn;
1975                         std::istringstream zSt(zInic);
1976                         zSt >> zIn;
1977
1978                         //----------
1979                         getline(inputStream, line);//xEnd:yEnd:zEnd
1980                         strcpy(coord, line.c_str());
1981                         result = strtok(coord, delims);//xEnd
1982                         std::string xEnd(result);
1983                         result = strtok(NULL, delims);//yEnd
1984                         std::string yEnd(result);
1985                         result = strtok(NULL, delims);//zEnd
1986                         std::string zEnd(result);
1987
1988                         double xEn, yEn, zEn;
1989                         std::istringstream xEt(xEnd);
1990                         xEt >> xEn;
1991                         std::istringstream yEt(yEnd);
1992                         yEt >> yEn;
1993                         std::istringstream zEt(zEnd);
1994                         zEt >> zEn;
1995
1996                         bool boxExecutable = false;
1997                         if (isExec == "TRUE") {
1998                                 boxExecutable = true;
1999                         }
2000
2001                         int idBox = createGBlackBox(xIn, yIn, package, type);
2002                         configGBlackBox(idBox, xIn, yIn, zIn, name, boxExecutable, xEn,
2003                                         yEn, zEn);
2004
2005                         GObjectController *cont = _controllers[idBox];
2006                         GBlackBoxModel *bbmod = (GBlackBoxModel*) cont->getModel();
2007
2008                         //----------
2009                         getline(inputStream, line);//PORT o FIN_BOX
2010                         std::string port = line.substr(0, 4);
2011                         while (port == "PORT") {
2012                                 getline(inputStream, line);//name:value
2013                                 char poort[150];
2014                                 strcpy(poort, line.c_str());
2015                                 result = strtok(poort, delims);//name
2016                                 std::string name(result);
2017                                 result = strtok(NULL, delims);//value
2018                                 std::string value(result);
2019
2020                                 bbmod->setValueToInput(name, value);
2021
2022                                 getline(inputStream, line);//PORT o FIN_BOX
2023                                 port = line.substr(0, 4);
2024                         } // while
2025
2026                         //EED                           bbmod->notifyObservers(_idManager);
2027                 } // for boxes
2028
2029                 /// CONNECTIONS
2030                 //----------
2031                 getline(inputStream, line);//CONNECTIONS:num
2032                 char conns[30];
2033                 strcpy(conns, line.c_str());
2034                 result = strtok(conns, delims);
2035                 result = strtok(NULL, delims);
2036
2037                 int numConns;
2038                 std::istringstream isCons(result);
2039                 isCons >> numConns;
2040
2041                 for (int i = 0; i < numConns; i++) {
2042                         //----------
2043                         getline(inputStream, line);//CONNECTION
2044                         getline(inputStream, line);//Startbox.PortName:EndBox.PortName
2045
2046                         char connec[200];
2047                         strcpy(connec, line.c_str());
2048                         result = strtok(connec, delims);
2049                         std::string nameStartBox(result);
2050                         result = strtok(NULL, delims);
2051                         std::string nameStartPort(result);
2052                         result = strtok(NULL, delims);
2053                         std::string nameEndBox(result);
2054                         result = strtok(NULL, delims);
2055                         std::string nameEndPort(result);
2056
2057                         int idCon = configGConnetion(nameStartBox, nameStartPort,
2058                                         nameEndBox, nameEndPort);
2059
2060                         if (version != "1.0") {
2061                                 //Readding control points of the manualContour
2062                                 //ups1
2063                                 GConnectorController *tempp =
2064                                                 (GConnectorController*) _controllers[idCon];
2065                                 GConnectorModel *conMod = (GConnectorModel*) tempp->getModel();
2066                                 vtkGConnectorView *conView =
2067                                                 (vtkGConnectorView*) tempp->getView();
2068                                 getline(inputStream, line); //NumberOfControlPoints:##
2069                                 strcpy(conns, line.c_str());
2070                                 result = strtok(conns, delims);
2071                                 result = strtok(NULL, delims);
2072
2073                                 int numberOfControlPoints;
2074                                 std::istringstream isCons(result);
2075                                 isCons >> numberOfControlPoints;
2076
2077                                 for (int ii = 0; ii < numberOfControlPoints; ii++) {
2078                                         getline(inputStream, line); //XX:YY:ZZ
2079                                         char connec[200];
2080                                         strcpy(connec, line.c_str());
2081
2082                                         double px, py, pz;
2083                                         result = strtok(connec, delims);
2084                                         std::istringstream isPointX(result);
2085                                         isPointX >> px;
2086                                         result = strtok(NULL, delims);
2087                                         std::istringstream isPointY(result);
2088                                         isPointY >> py;
2089                                         result = strtok(NULL, delims);
2090                                         std::istringstream isPointZ(result);
2091                                         isPointZ >> pz;
2092
2093                                         conMod->getManualContourModel()->InsertPoint_id(ii + 1, px,
2094                                                         py, pz);
2095                                         conView->getManualContourView()->AddPoint();
2096                                 }
2097                         }// version !=1.0
2098
2099                 } // for numConns
2100
2101         } // start
2102
2103         refresh();
2104 }
2105 //=========================================================================
2106
2107
2108 //=========================================================================
2109 void wxVtkSceneManager::configGComBoxInputOutputPort(bool inputoutput,
2110                 std::string portName, double xIn, double yIn, double zIn) {
2111         int idPort;
2112         if (inputoutput == true) {
2113                 idPort = createGComplexBoxInputPort(portName);
2114         } else {
2115                 idPort = createGComplexBoxOutputPort(portName);
2116         }
2117         GObjectController *cont = _controllers[idPort];
2118         GBoxModel *cbmod = (GBoxModel*) cont->getModel();
2119         cbmod->setInicPoint(xIn, yIn, zIn);
2120         cbmod->notifyObservers(_idManager);
2121 }
2122 //=========================================================================
2123
2124
2125 //=========================================================================
2126 GBoxModel* wxVtkSceneManager::findGBox(std::string boxname) {
2127         int j;
2128         int idB;
2129         GBoxModel *bMod;
2130         GBoxModel *boxModel = NULL;
2131         std::vector<int> lstB = getBlackBoxes();
2132         for (j = 0; j < (int) lstB.size(); j++) {
2133                 idB = lstB[j];
2134                 bMod = (GBoxModel*) _controllers[idB]->getModel();
2135                 if (_controllers[idB]->getModel()->getBBTKName() == boxname) {
2136                         boxModel = bMod;
2137                 }
2138         } // for
2139
2140         if ((_isComplexBox) && (boxModel == NULL)) {
2141                 std::vector<int> lstInputs = getComplexInputPorts();
2142                 for (j = 0; j < (int) lstInputs.size(); j++) {
2143                         idB = lstInputs[j];
2144                         bMod = (GBoxModel*) _controllers[idB]->getModel();
2145                         if (_controllers[idB]->getModel()->getBBTKName() == boxname) {
2146                                 boxModel = bMod;
2147                         }
2148                 } // for
2149
2150                 std::vector<int> lstOutputs = getComplexOutputPorts();
2151                 for (j = 0; j < (int) lstOutputs.size(); j++) {
2152                         int idB = lstOutputs[j];
2153                         bMod = (GBoxModel*) _controllers[idB]->getModel();
2154                         if (_controllers[idB]->getModel()->getBBTKName() == boxname) {
2155                                 boxModel = bMod;
2156                         }
2157                 } // for
2158
2159         } // complex box
2160
2161         return boxModel;
2162 }
2163
2164 //=========================================================================
2165
2166
2167 int wxVtkSceneManager::configGConnetion(std::string nameStartBox,
2168                 std::string nameStartPort, std::string nameEndBox,
2169                 std::string nameEndPort) {
2170
2171         GBoxModel *boxModel;
2172         GPortModel *startP = NULL;
2173         GPortModel *endP = NULL;
2174
2175         boxModel = findGBox(nameStartBox);
2176         if (boxModel != NULL) {
2177                 startP = boxModel->getOutputPort(nameStartPort);
2178         }
2179
2180         boxModel = findGBox(nameEndBox);
2181         if (boxModel != NULL) {
2182                 endP = boxModel->getInputPort(nameEndPort);
2183         }
2184
2185         //ups2
2186         int idCon = createGConnector(startP);
2187         _worldState = NOTHING_HAPPENS;
2188         GConnectorController *tempp = (GConnectorController*) _controllers[idCon];
2189
2190         GConnectorModel *conMod = (GConnectorModel*) tempp->getModel();
2191         vtkGConnectorView *conView = (vtkGConnectorView*) tempp->getView();
2192         tempp->endContourCreation();
2193         conMod->setEndPort(endP);
2194         conView->updateStartEndPoints();
2195         return idCon;
2196 }
2197
2198 //=========================================================================
2199
2200 bool wxVtkSceneManager::boxExist(std::string boxname) {
2201         bool ok = false;
2202         std::map<int, GObjectController*>::iterator it;
2203         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2204                 GObjectController *cont = it->second;
2205                 if (cont->getModel()->getBBTKName() == boxname) {
2206                         ok = true;
2207                 }
2208         }
2209         return ok;
2210 }
2211
2212 //=========================================================================
2213
2214 std::vector<int> wxVtkSceneManager::getBlackBoxes() {
2215         std::vector<int> vect;
2216         std::map<int, GObjectController*>::iterator it;
2217         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2218                 GObjectController *cont = it->second;
2219                 if (cont->getGObjectType() == GBLACKBOX) {
2220                         vect.push_back(cont->getId());
2221                 }
2222         }
2223         return vect;
2224 }
2225
2226 //=========================================================================
2227
2228 std::vector<int> wxVtkSceneManager::getComplexInputPorts() {
2229         std::vector<int> vect;
2230         std::map<int, GObjectController*>::iterator it;
2231         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2232                 GObjectController *cont = it->second;
2233                 if (cont->getGObjectType() == GCOMPLEXINPUTPORT) {
2234                         vect.push_back(cont->getId());
2235                 }
2236         }
2237         return vect;
2238 }
2239
2240 //=========================================================================
2241
2242 std::vector<int> wxVtkSceneManager::getComplexOutputPorts() {
2243         std::vector<int> vect;
2244         std::map<int, GObjectController*>::iterator it;
2245         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2246                 GObjectController *cont = it->second;
2247                 if (cont->getGObjectType() == GCOMPLEXOUTPUTPORT) {
2248                         vect.push_back(cont->getId());
2249                 }
2250         }
2251         return vect;
2252 }
2253
2254 //=========================================================================
2255
2256 std::vector<int> wxVtkSceneManager::getConnections() {
2257         std::vector<int> vect;
2258         std::map<int, GObjectController*>::iterator it;
2259         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2260                 GObjectController *cont = it->second;
2261                 if (cont->getGObjectType() == GCONNECTOR) {
2262                         vect.push_back(cont->getId());
2263                 }
2264         }
2265         return vect;
2266 }
2267
2268 //=========================================================================
2269
2270 bool wxVtkSceneManager::isComplexBox() {
2271         return _isComplexBox;
2272 }
2273
2274 //=========================================================================
2275
2276 void wxVtkSceneManager::setComplexBox(bool val) {
2277         _isComplexBox = val;
2278 }
2279
2280 //=========================================================================
2281
2282 int wxVtkSceneManager::addObjectController(GObjectController* objController) {
2283         //Register the controller of the new object
2284         registerController((InteractorStyleMaracas*) objController);
2285         //Add the object to the objects list
2286         int newId = _contLastId;//_controllers.size();
2287         objController->setId(newId);
2288         _controllers[newId] = objController;
2289         //std::cout << "DFCH: int wxVtkSceneManager::addObjectController(GObjectController* objController) ---- _contLastId = " << _contLastId << std::endl;
2290         _contLastId++;
2291         return newId;
2292 }
2293
2294 //=========================================================================
2295
2296 void wxVtkSceneManager::DuplicateObjects(std::map<int, GObjectController*> objectsMap) {
2297
2298         std::map<int, int> oldIdNewIdBoxes;
2299         std::vector<int> connections;
2300
2301         std::vector<int> newBoxesID;
2302
2303         std::map<int, GObjectController*>::iterator it;
2304         for (it = objectsMap.begin(); it != objectsMap.end(); ++it) {
2305             GObjectController *cont = it->second;
2306             int type = cont->getGObjectType();
2307
2308             if (type == GBLACKBOX) {
2309                 // Copy black box
2310                 double xInic, yInic, zInic;
2311                 GBlackBoxModel* copyBox = (GBlackBoxModel*) cont->getModel();
2312                 copyBox->getInicPoint(xInic, yInic, zInic);
2313                 int idBox = createGBlackBox(0, 0, copyBox->getBBTKPackage(),
2314                         copyBox->getBBTKType());
2315
2316                 int idcB = copyBox->getObjectId();
2317                 oldIdNewIdBoxes[idcB] = idBox;
2318                 cont = _controllers[idBox];
2319                 GBlackBoxModel* newbox = (GBlackBoxModel*) cont->getModel();
2320                 newbox->setInicPoint(xInic, yInic, zInic);
2321                 int num = newbox->getNumInputPorts();
2322                 for (int j = 0; j < num; j++) {
2323                     newbox->setValueToInputPort(j, copyBox->getValueInputPort(j));
2324                 }
2325                 newbox->move(xInic + 20, yInic + 20, zInic);
2326                 newbox->notifyObservers(_idManager);
2327                 newBoxesID.push_back(newbox->getObjectId());
2328
2329             } else if (type == GCONNECTOR) {
2330                 int idCon = cont->getId();
2331                 connections.push_back(idCon);
2332             }
2333
2334         }
2335
2336         for (int i = 0; i < (int) connections.size(); i++) {
2337             int objId = connections[i];
2338             GObjectController *cont = objectsMap[objId];
2339             GConnectorModel* connectModel = (GConnectorModel*) cont->getModel();
2340
2341             GPortModel* startPort = connectModel->getStartPort();
2342             int startPortIndex = startPort->getPosInBox();
2343             GPortModel* endPort = connectModel->getEndPort();
2344             int endPortIndex = endPort->getPosInBox();
2345
2346             GBlackBoxModel* startPortParentBox =
2347                     (GBlackBoxModel*) startPort->getParentBox();
2348             GBlackBoxModel* endPortParentBox =
2349                     (GBlackBoxModel*) endPort->getParentBox();
2350
2351             int idNewStartBox = oldIdNewIdBoxes[startPortParentBox->getObjectId()];
2352             int idNewEndBox = oldIdNewIdBoxes[endPortParentBox->getObjectId()];
2353
2354             GBlackBoxModel* newStartBox =
2355                     (GBlackBoxModel*) _controllers[idNewStartBox]->getModel();
2356             GBlackBoxModel* newEndBox =
2357                     (GBlackBoxModel*) _controllers[idNewEndBox]->getModel();
2358
2359             GPortModel* newStartPort = newStartBox->getOutputPort(startPortIndex);
2360             GPortModel* newEndPort = newEndBox->getInputPort(endPortIndex);
2361
2362             // Creates connection
2363             int idCon = createGConnector(newStartPort);
2364             GConnectorController *tempp =
2365                     (GConnectorController*) _controllers[idCon];
2366             GConnectorModel *conMod = (GConnectorModel*) tempp->getModel();
2367             vtkGConnectorView *conView = (vtkGConnectorView*) tempp->getView();
2368             tempp->endContourCreation();
2369             conMod->setEndPort(newEndPort);
2370             conView->updateStartEndPoints();
2371         }
2372
2373         /// the new selected boxes are the duplicate ones
2374
2375         UnSelectBlackBoxes();
2376         for (int i = 0; i < newBoxesID.size(); i++) {
2377             _selectedObjects.push_back(newBoxesID.at(i));
2378         }
2379
2380         for (int i = 0; i < (int) _selectedObjects.size(); i++) {
2381             int id = _selectedObjects[i];
2382             GObjectController* cont = _controllers[id];
2383
2384             cont->getView()->setState(SELECTED);
2385             cont->getModel()->notifyObservers(_idManager);
2386
2387         }
2388         refreshScene();
2389     }
2390
2391
2392 //=========================================================================
2393
2394 int wxVtkSceneManager::getNumSelectedObjects() {
2395         return _selectedObjects.size();
2396 }
2397
2398 //=========================================================================
2399
2400 std::map<int, GObjectController*> wxVtkSceneManager::getSelectedObjects() {
2401         std::map<int, GObjectController*> mapSelected;
2402
2403         std::map<int, GObjectController*>::iterator it;
2404         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2405                 GObjectController *cont = it->second;
2406                 if (cont->getGObjectType() == GBLACKBOX && cont->getView()->getState()
2407                                 == SELECTED) {
2408                         mapSelected[cont->getId()] = cont;
2409                 }
2410         }
2411
2412         std::map<int, GObjectController*>::iterator it2;
2413         for (it2 = _controllers.begin(); it2 != _controllers.end(); ++it2) {
2414                 GObjectController *cont = it2->second;
2415                 if (cont->getGObjectType() == GCONNECTOR) {
2416                         GConnectorModel* cmod = (GConnectorModel*) cont->getModel();
2417                         GBoxModel* endPortParentBox = cmod->getEndPort()->getParentBox();
2418                         GBoxModel* startPortParentBox =
2419                                         cmod->getStartPort()->getParentBox();
2420
2421                         std::map<int, GObjectController*>::iterator iterOBJ1 =
2422                                         mapSelected.find(startPortParentBox->getObjectId());
2423                         std::map<int, GObjectController*>::iterator iterOBJ2 =
2424                                         mapSelected.find(endPortParentBox->getObjectId());
2425
2426                         if (iterOBJ1 != mapSelected.end() && iterOBJ2 != mapSelected.end()) {
2427                                 int ID = cont->getId();
2428                                 mapSelected[ID] = cont;
2429                         }
2430                 }
2431         }
2432         return mapSelected;
2433 }
2434
2435 //=========================================================================
2436
2437 void wxVtkSceneManager::addObjects(std::map<int, GObjectController*> objectsMap) {
2438
2439         std::map<int, int> oldIdNewIdBoxes;
2440         std::vector<int> connections;
2441
2442         std::map<int, GObjectController*>::iterator it;
2443         for (it = objectsMap.begin(); it != objectsMap.end(); ++it) {
2444                 GObjectController *cont = it->second;
2445                 int type = cont->getGObjectType();
2446
2447                 if (type == GBLACKBOX) {
2448                         // Copy black box
2449                         double xInic, yInic, zInic;
2450                         GBlackBoxModel* copyBox = (GBlackBoxModel*) cont->getModel();
2451                         copyBox->getInicPoint(xInic, yInic, zInic);
2452                         int idBox = createGBlackBox(0, 0, copyBox->getBBTKPackage(),
2453                                         copyBox->getBBTKType());
2454
2455                         int idcB = copyBox->getObjectId();
2456                         oldIdNewIdBoxes[idcB] = idBox;
2457                         cont = _controllers[idBox];
2458                         GBlackBoxModel* newbox = (GBlackBoxModel*) cont->getModel();
2459                         newbox->setInicPoint(xInic, yInic, zInic);
2460                         int num = newbox->getNumInputPorts();
2461                         for (int j = 0; j < num; j++) {
2462                                 newbox->setValueToInputPort(j, copyBox->getValueInputPort(j));
2463                         }
2464                         newbox->notifyObservers(_idManager);
2465                 } else if (type == GCONNECTOR) {
2466                         int idCon = cont->getId();
2467                         connections.push_back(idCon);
2468                 }
2469
2470         }
2471
2472         for (int i = 0; i < (int) connections.size(); i++) {
2473                 int objId = connections[i];
2474                 GObjectController *cont = objectsMap[objId];
2475                 GConnectorModel* connectModel = (GConnectorModel*) cont->getModel();
2476
2477                 GPortModel* startPort = connectModel->getStartPort();
2478                 int startPortIndex = startPort->getPosInBox();
2479                 GPortModel* endPort = connectModel->getEndPort();
2480                 int endPortIndex = endPort->getPosInBox();
2481
2482                 GBlackBoxModel* startPortParentBox =
2483                                 (GBlackBoxModel*) startPort->getParentBox();
2484                 GBlackBoxModel* endPortParentBox =
2485                                 (GBlackBoxModel*) endPort->getParentBox();
2486
2487                 int idNewStartBox = oldIdNewIdBoxes[startPortParentBox->getObjectId()];
2488                 int idNewEndBox = oldIdNewIdBoxes[endPortParentBox->getObjectId()];
2489
2490                 GBlackBoxModel* newStartBox =
2491                                 (GBlackBoxModel*) _controllers[idNewStartBox]->getModel();
2492                 GBlackBoxModel* newEndBox =
2493                                 (GBlackBoxModel*) _controllers[idNewEndBox]->getModel();
2494
2495                 GPortModel* newStartPort = newStartBox->getOutputPort(startPortIndex);
2496                 GPortModel* newEndPort = newEndBox->getInputPort(endPortIndex);
2497
2498                 // Creates connection
2499                 int idCon = createGConnector(newStartPort);
2500                 GConnectorController *tempp =
2501                                 (GConnectorController*) _controllers[idCon];
2502                 GConnectorModel *conMod = (GConnectorModel*) tempp->getModel();
2503                 vtkGConnectorView *conView = (vtkGConnectorView*) tempp->getView();
2504                 tempp->endContourCreation();
2505                 conMod->setEndPort(newEndPort);
2506                 conView->updateStartEndPoints();
2507         }
2508
2509         std::map<int, int>::iterator itIds;
2510         for (itIds = oldIdNewIdBoxes.begin(); itIds != oldIdNewIdBoxes.end(); ++itIds) {
2511                 int idOld = itIds->first;
2512                 int idNew = itIds->second;
2513
2514                 GBlackBoxModel* oldBox =
2515                                 (GBlackBoxModel*) objectsMap[idOld]->getModel();
2516                 GBlackBoxModel* newBox =
2517                                 (GBlackBoxModel*) _controllers[idNew]->getModel();
2518
2519                 std::vector<int> oldInputConnections = oldBox->getConnectedInputs();
2520                 std::vector<int> oldOutputConnections = oldBox->getConnectedOutputs();
2521                 std::vector<int> newInputConnections = newBox->getConnectedInputs();
2522                 std::vector<int> newOutputConnections = newBox->getConnectedOutputs();
2523
2524                 for (int k = 0; k < (int) oldInputConnections.size(); k++) {
2525                         bool exist = false;
2526                         //EED                           int toCreate=-1;
2527                         for (int l = 0; l < (int) newInputConnections.size() && !exist; l++) {
2528                                 if (oldInputConnections[k] == newInputConnections[l]) {
2529                                         exist = true;
2530                                 }
2531                         }
2532
2533                         if (exist == false) {
2534                                 //Create complex input
2535                                 int posInBox = oldInputConnections[k];
2536                                 GPortModel* inputPort = oldBox->getInputPort(posInBox);
2537                                 std::string inputPortName = inputPort->getBBTKName();
2538                                 int idInputPort = createGComplexBoxInputPort(inputPortName);
2539                                 GObjectController *cont = _controllers[idInputPort];
2540                                 GBoxModel *cbmod = (GBoxModel*) cont->getModel();
2541                                 double xIn, yIn, zIn;
2542                                 inputPort->getInicPoint(xIn, yIn, zIn);
2543                                 yIn += 20;
2544                                 cbmod->setInicPoint(xIn, yIn, zIn);
2545                                 cbmod->notifyObservers(_idManager);
2546
2547                                 GPortModel* inputPortEnd = newBox->getInputPort(posInBox);
2548
2549                                 // Creates connection
2550                                 int idCon = createGConnector(cbmod->getOutputPort(0));
2551                                 GConnectorController *tempp =
2552                                                 (GConnectorController*) _controllers[idCon];
2553                                 GConnectorModel *conMod = (GConnectorModel*) tempp->getModel();
2554                                 vtkGConnectorView *conView =
2555                                                 (vtkGConnectorView*) tempp->getView();
2556                                 tempp->endContourCreation();
2557                                 conMod->setEndPort(inputPortEnd);
2558                                 conView->updateStartEndPoints();
2559
2560                         }
2561
2562                 }
2563
2564                 for (int k = 0; k < (int) oldOutputConnections.size(); k++) {
2565                         bool exist = false;
2566                         //EED                           int toCreate=-1;
2567                         for (int l = 0; l < (int) newOutputConnections.size() && !exist; l++) {
2568                                 if (oldOutputConnections[k] == newOutputConnections[l]) {
2569                                         exist = true;
2570                                 }
2571                         }
2572
2573                         if (exist == false) {
2574                                 //Create complex output
2575                                 int posInBox = oldOutputConnections[k];
2576                                 GPortModel* outputPort = oldBox->getOutputPort(posInBox);
2577                                 std::string outputPortName = outputPort->getBBTKName();
2578                                 int idOutputPort = createGComplexBoxOutputPort(outputPortName);
2579                                 GObjectController *cont = _controllers[idOutputPort];
2580                                 GBoxModel *cbmod = (GBoxModel*) cont->getModel();
2581                                 double xIn, yIn, zIn;
2582                                 outputPort->getInicPoint(xIn, yIn, zIn);
2583                                 yIn -= 20;
2584                                 cbmod->setInicPoint(xIn, yIn, zIn);
2585                                 cbmod->notifyObservers(_idManager);
2586
2587                                 GPortModel* outputPortEnd = newBox->getOutputPort(posInBox);
2588
2589                                 // Creates connection
2590                                 int idCon = createGConnector(outputPortEnd);
2591                                 GConnectorController *tempp =
2592                                                 (GConnectorController*) _controllers[idCon];
2593                                 GConnectorModel *conMod = (GConnectorModel*) tempp->getModel();
2594                                 vtkGConnectorView *conView =
2595                                                 (vtkGConnectorView*) tempp->getView();
2596                                 tempp->endContourCreation();
2597                                 conMod->setEndPort(cbmod->getInputPort(0));
2598                                 conView->updateStartEndPoints();
2599
2600                         }
2601
2602                 }
2603
2604         }
2605
2606 }
2607
2608 //=========================================================================
2609 void wxVtkSceneManager::SetCbName(std::string cbName) {
2610         _cbName = cbName;
2611         if (_cbName == "") {
2612                 _cbName = "<complex box name>";
2613         }
2614 }
2615
2616 //=========================================================================
2617 std::string wxVtkSceneManager::GetCbName() {
2618         return _cbName;
2619 }
2620
2621 //=========================================================================
2622 void wxVtkSceneManager::SetCbPackageName(std::string packagename) {
2623         _cbPackageName = packagename;
2624         if (_cbPackageName == "") {
2625                 _cbPackageName = "<package name of the complex box>";
2626         }
2627 }
2628
2629 //=========================================================================
2630 std::string wxVtkSceneManager::GetCbPackageName() {
2631         return _cbPackageName;
2632 }
2633
2634 //=========================================================================
2635 void wxVtkSceneManager::SetAuthor(std::string author) {
2636         _Author = author;
2637         if (_Author == "") {
2638                 _Author = "<author of the box>";
2639         }
2640 }
2641
2642 //=========================================================================
2643 std::string wxVtkSceneManager::GetAuthor() {
2644         return _Author;
2645 }
2646
2647 //=========================================================================
2648 void wxVtkSceneManager::SetCategory(std::string category) {
2649         _Category = category;
2650         if (_Category == "") {
2651                 _Category = "<category of the box>";
2652         }
2653 }
2654
2655 //=========================================================================
2656 std::string wxVtkSceneManager::GetCategory() {
2657         return _Category;
2658 }
2659
2660 //=========================================================================
2661 void wxVtkSceneManager::SetDescription(std::string description) {
2662         _Description = description;
2663         if (_Description == "") {
2664                 _Description = "<description of the box>";
2665         }
2666 }
2667
2668 //=========================================================================
2669 std::string wxVtkSceneManager::GetDescription() {
2670         return _Description;
2671 }
2672
2673 //=========================================================================
2674
2675
2676 void wxVtkSceneManager::printAll(int com , int sta ){
2677         
2678          int tmpState = sta ;
2679         if ( tmpState == NOTHING_HAPPENS ) {
2680             std::cout << "CONTROLER STATE---->NOTHING_HAPPENS\n" ;
2681         }
2682         if ( tmpState == HIGHLIGHTED ) {
2683             std::cout << "CONTROLER STATE---->HIGHLIGHTED\n" ;
2684         }
2685         if ( tmpState == POSSIBLE_CONNECTION ) {
2686             std::cout << "CONTROLER STATE---->POSSIBLE_CONNECTION\n" ;
2687         }
2688         if ( tmpState == SELECTED_POSSIBLE_CONNECTION ) {
2689             std::cout << "CONTROLER STATE---->SELECTED_POSSIBLE_CONNECTION\n" ;
2690         }
2691         if ( tmpState == CLICKED ) {
2692             std::cout << "CONTROLER STATE---->CLICKED\n" ;
2693         }
2694         if ( tmpState == DRAG ) {
2695             std::cout << "CONTROLER STATE---->DRAG\n" ;
2696         }
2697         if ( tmpState == SELECTED ) {
2698             std::cout << "CONTROLER STATE---->SELECTED\n" ;
2699         }
2700         if ( tmpState == CREATING_CONTOUR ) {
2701             std::cout << "CONTROLER STATE---->CREATING_CONTOUR\n" ;
2702         }   
2703          
2704          // :P 
2705
2706         int command = com ;
2707         if ( command == INIT_CREATION_CONTOUR ) {
2708             std::cout << "COMMAND ----> INIT_CREATION_CONTOUR \n" ;
2709         }
2710         if ( command == FIN_CREATION_CONTOUR ) {
2711             std::cout << "COMMAND ----> FIN_CREATION_CONTOUR \n" ;
2712         }
2713         if ( command == ADD_TO_SELECTED ) {
2714             std::cout << "COMMAND ----> ADD_TO_SELECTED \n" ;
2715         }
2716         if ( command == DRAG_OBJECTS ) {
2717             std::cout << "COMMAND ----> DRAG_OBJECTS \n" ;
2718         }
2719         if ( command == EDIT_BLACKBOX ) {
2720             std::cout << "COMMAND ----> EDIT_BLACKBOX \n" ;
2721         }
2722         if ( command == REMOVE_FROM_SELECTED ) {
2723             std::cout << "COMMAND ----> REMOVE_FROM_SELECTED \n" ;
2724         }
2725         
2726     }
2727
2728
2729 } // EO namespace bbtk
2730
2731 // EOF
2732