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