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