]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxVtkSceneManager.cxx
#2692 bbGEditor Feature New Normal - Name of the package in the box type for BBS...
[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->getBBTKPackage()+":";
1444                         script += model->getBBTKType();
1445                         script += " ";
1446                         script += model->getBBTKName();
1447                         script += "\n";
1448
1449                         std::vector<GPortModel*> inputs = model->getInputPorts();
1450                         for (int j = 0; j < (int) inputs.size(); j++) {
1451                                 GPortModel* inputPort = inputs[j];
1452                                 if (inputPort->isValueSet()) {
1453                                         script += LineNumber(wln, lnNmbr);
1454                                         script += "  set ";
1455                                         script += model->getBBTKName();
1456                                         script += ".";
1457                                         script += inputPort->getBBTKName();
1458                                         script += " ";
1459                                         script += inputPort->getValue();
1460                                         script += "\n";
1461                                 }
1462                         }
1463
1464                         script += LineNumber(wln, lnNmbr);
1465                         script += "\n";
1466
1467                 }
1468
1469                 script += LineNumber(wln, lnNmbr);
1470                 script += "\n";
1471
1472
1473                 std::string complexInputs="";
1474
1475                 for (i = 0; i < (int) connections.size(); i++) {
1476                         //script += LineNumber(wln, lnNmbr);
1477                         //script += "connect ";
1478                         int id = connections[i];
1479                         GObjectController *control = _controllers[id];
1480                         GConnectorModel *model = (GConnectorModel*) control->getModel();
1481
1482
1483                         //Connection info
1484                         GPortModel *start = model->getStartPort();
1485                         GBoxModel *startBox = start->getParentBox();
1486
1487                         GPortModel *end = model->getEndPort();
1488                         GBoxModel *endBox = end->getParentBox();
1489
1490                         if (startBox->getGObjectType() == GCOMPLEXINPUTPORT)
1491                         {
1492                                         complexInputs += "input ";
1493                                         complexInputs += startBox->getBBTKName();
1494
1495                                         complexInputs += " ";
1496                                         complexInputs += endBox->getBBTKName();
1497                                         complexInputs += ".";
1498                                         complexInputs += end->getBBTKName();
1499
1500                                         complexInputs += " ";
1501                                         complexInputs += "\" \"";
1502
1503                                         complexInputs += "\n";
1504                         }
1505                         else
1506                         {
1507                                         script += "connect ";
1508                                         script += startBox->getBBTKName();
1509                                         script += ".";
1510                                         script += start->getBBTKName();
1511
1512                                         script += " ";
1513
1514                                         //End Connection info
1515                                         script += endBox->getBBTKName();
1516                                         script += ".";
1517                                         script += end->getBBTKName();
1518
1519                                         script += "\n";
1520                         }
1521
1522                         script += "\n";
1523                 }
1524
1525                 script += LineNumber(wln, lnNmbr);
1526                 script += "\n";
1527
1528                 script += "\n";
1529                 script += "# Complex input ports\n";
1530                 script += complexInputs;
1531
1532                 if((_MessageKind!=" ")&&(_MessageLevel!=" ")){
1533                         script += LineNumber(wln, lnNmbr);
1534                         script += "message ";
1535                         script += _MessageKind;
1536                         script += " ";
1537                         script += _MessageLevel;
1538                         script += "\n";
1539                 }
1540
1541                 for (i = 0; i < (int) execBoxes.size(); i++) {
1542                         script += LineNumber(wln, lnNmbr);
1543                         script += "exec ";
1544                         int id = execBoxes[i];
1545                         GObjectController *control = _controllers[id];
1546                         GBlackBoxModel *model = (GBlackBoxModel*) control->getModel();
1547
1548                         script += model->getBBTKName();
1549                         script += "\n";
1550                 }
1551
1552         }
1553
1554         return script;
1555 }
1556
1557 //=========================================================================
1558
1559 std::string wxVtkSceneManager::saveComplexBoxBBS() {
1560         std::cout<<"wxVtkSceneManager::saveComplexBoxBBS"<<std::endl;
1561         std::vector<std::string> packages;
1562         std::vector<int> boxes;
1563         std::vector<int> connections;
1564         std::vector<int> execBoxes;
1565
1566         std::map<int, GObjectController*>::iterator it;
1567
1568         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
1569                 GObjectController *desc = it->second;
1570                 int type = desc->getGObjectType();
1571
1572                 if (type == GBLACKBOX) {
1573                         GBlackBoxModel *mod = (GBlackBoxModel*) desc->getModel();
1574
1575                         std::string pkg = mod->getBBTKPackage();
1576                         bool existsPkg = false;
1577                         for (int t = 0; t < (int) packages.size() && existsPkg == false; t++) {
1578                                 if (packages[t] == pkg) {
1579                                         existsPkg = true;
1580                                 }
1581                         }
1582                         if (!existsPkg) {
1583                                 packages.push_back(pkg);
1584                         }
1585
1586                         boxes.push_back(it->first);
1587                         if (mod->isExecutable()) {
1588                                 execBoxes.push_back(it->first);
1589                         }
1590                 } else if (type == GCONNECTOR) {
1591                         connections.push_back(it->first);
1592                 }
1593         }
1594
1595         std::string script = "";
1596
1597         script += "include std\n"; // EED
1598         script += "include itkvtk\n"; // EED
1599         int i;
1600         for (i = 0; i < (int) packages.size(); i++) {
1601                 script += "include ";
1602                 script += packages[i];
1603                 script += "\n";
1604         }
1605         script += "\n";
1606
1607         // Definition of a complex box
1608         script += "define ";
1609         script += _cbName + " " + _cbPackageName;
1610         script += "\n";
1611         script += "\n";
1612
1613         script += "author \"";
1614         script += _Author;
1615         script += "\"\n";
1616
1617         script += "description \"";
1618         script += _Description;
1619         script += "\"\n";
1620         script += "\n";
1621
1622         script += "category \"";
1623         script += _Category;
1624         script += "\"\n";
1625         script += "\n";
1626
1627         // Create boxes
1628         for (i = 0; i < (int) boxes.size(); i++) {
1629                 script += "new ";
1630                 int id = boxes[i];
1631                 GObjectController *control = _controllers[id];
1632                 GBlackBoxModel *model = (GBlackBoxModel*) control->getModel();
1633
1634                 script += model->getBBTKType();
1635                 script += " ";
1636                 script += model->getBBTKName();
1637                 script += "\n";
1638
1639                 std::vector<GPortModel*> inputs = model->getInputPorts();
1640                 for (int j = 0; j < (int) inputs.size(); j++) {
1641                         GPortModel* inputPort = inputs[j];
1642                         if (inputPort->isValueSet()) {
1643                                 script += "  set ";
1644                                 script += model->getBBTKName();
1645                                 script += ".";
1646                                 script += inputPort->getBBTKName();
1647                                 script += " ";
1648                                 script += inputPort->getValue();
1649                                 script += "\n";
1650                         }
1651                 }
1652                 script += "\n";
1653
1654         }
1655
1656         // Create connections in the script. If the connection is made with a complex port, it is created the input or output
1657
1658         std::string complexInputs = "";
1659         std::string complexOutputs = "";
1660         script += "\n";
1661
1662         for (i = 0; i < (int) connections.size(); i++) {
1663                 int id = connections[i];
1664                 GObjectController *control = _controllers[id];
1665                 GConnectorModel *model = (GConnectorModel*) control->getModel();
1666
1667                 //Connection info
1668                 GPortModel *start = model->getStartPort();
1669                 GBoxModel *startBox = start->getParentBox();
1670
1671                 GPortModel *end = model->getEndPort();
1672                 GBoxModel *endBox = end->getParentBox();
1673
1674                 if (startBox->getGObjectType() == GCOMPLEXINPUTPORT) {
1675                         complexInputs += "input ";
1676                         complexInputs += startBox->getBBTKName();
1677
1678                         complexInputs += " ";
1679                         complexInputs += endBox->getBBTKName();
1680                         complexInputs += ".";
1681                         complexInputs += end->getBBTKName();
1682
1683                         complexInputs += " ";
1684                         complexInputs += "\" \"";
1685
1686                         complexInputs += "\n";
1687                 } else if (endBox->getGObjectType() == GCOMPLEXOUTPUTPORT) {
1688                         complexOutputs += "output ";
1689                         complexOutputs += endBox->getBBTKName();
1690
1691                         complexOutputs += " ";
1692                         complexOutputs += startBox->getBBTKName();
1693                         complexOutputs += ".";
1694                         complexOutputs += start->getBBTKName();
1695
1696                         complexOutputs += " ";
1697                         complexOutputs += "\" \"";
1698
1699                         complexOutputs += "\n";
1700                 } else {
1701                         script += "connect ";
1702                         script += startBox->getBBTKName();
1703                         script += ".";
1704                         script += start->getBBTKName();
1705
1706                         script += " ";
1707
1708                         //End Connection info
1709                         script += endBox->getBBTKName();
1710                         script += ".";
1711                         script += end->getBBTKName();
1712
1713                         script += "\n";
1714                 }
1715         }
1716
1717         script += "\n";
1718         script += "# Complex input ports\n";
1719         script += complexInputs;
1720
1721         script += "\n";
1722         script += "# Complex output ports\n";
1723         script += complexOutputs;
1724
1725         script += "\n";
1726
1727         script += "message ";
1728         script += _MessageKind;
1729         script += " ";
1730         script += _MessageLevel;
1731         script += "\n";
1732
1733         for (i = 0; i < (int) execBoxes.size(); i++) {
1734                 script += "exec ";
1735                 int id = execBoxes[i];
1736                 GObjectController *control = _controllers[id];
1737                 GBlackBoxModel *model = (GBlackBoxModel*) control->getModel();
1738
1739                 script += model->getBBTKName();
1740                 script += "\n";
1741         }
1742
1743         script += "\n";
1744         script += "endefine";
1745         script += "\n";
1746
1747         return script;
1748 }
1749
1750 //=========================================================================
1751
1752 void wxVtkSceneManager::deleteAllBoxes() {
1753         std::map<int, GObjectController*>::iterator it;
1754         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
1755                 GObjectController *cont = it->second;
1756                 cont->removeFromScene();
1757                 unregisterController((InteractorStyleMaracas*) cont);
1758         }
1759         _selectedObjects.clear();
1760         _controllers.clear();
1761 }
1762
1763 //=========================================================================
1764
1765
1766 void wxVtkSceneManager::refresh() {
1767         _baseView->Refresh();
1768 }
1769 //=========================================================================
1770
1771 void wxVtkSceneManager::refreshScene() {
1772         _baseView->RefreshView();
1773 }
1774
1775 //=========================================================================
1776
1777 void wxVtkSceneManager::centerView() {
1778         double temp[3];
1779         _baseView->GetRenderer()->GetActiveCamera()->GetFocalPoint(temp);
1780         _baseView->GetRenderer()->GetActiveCamera()->SetFocalPoint(0, 0, temp[2]);
1781         _baseView->GetRenderer()->GetActiveCamera()->GetPosition(temp);
1782         _baseView->GetRenderer()->GetActiveCamera()->SetPosition(0, 0, temp[2]);
1783 }
1784
1785 //=========================================================================
1786
1787 void wxVtkSceneManager::saveDiagram(std::string &content) {
1788         char buffer[50];
1789
1790         content += "CATEGORY:";
1791         content += GetCategory();
1792         content += "\n";
1793
1794         content += "DESCRIPTION:";
1795         content += GetDescription();
1796         content += "\n";
1797
1798         content += "AUTHOR:";
1799         content += GetAuthor();
1800         content += "\n";
1801
1802         //Print info IF COMPLEX BOX
1803         content += "COMPLEXBOX:";
1804         if (_isComplexBox) {
1805                 content += "TRUE\n";
1806                 //ups1
1807                 content += "COMPLEXBOXNAME:";
1808                 content += GetCbName();
1809                 content += "\n";
1810
1811                 content += "PACKAGENAME:";
1812                 content += GetCbPackageName();
1813                 content += "\n";
1814
1815                 /* CHANGE TO THE VERSION 1.4 RaC2012 2nd HackFest
1816                  * External inputs are possible for applications and complex boxes
1817                 //Print info complex input ports
1818                 std::vector<int> inputs = getComplexInputPorts();
1819                 int insize = inputs.size();
1820                 content += "COMPLEXINPUTS:";
1821                 sprintf(buffer, "%d", insize);
1822                 content += buffer;
1823                 content += "\n";
1824
1825                 for (int i = 0; i < insize; i++) {
1826                         int id = inputs[i];
1827                         GObjectController *cont = _controllers[id];
1828                         cont->getModel()->save(content);
1829                 }
1830                 */
1831
1832                 //Print info complex output ports
1833                 std::vector<int> outputs = getComplexOutputPorts();
1834                 int outsize = outputs.size();
1835                 content += "COMPLEXOUTPUTS:";
1836                 sprintf(buffer, "%d", outsize);
1837                 content += buffer;
1838                 content += "\n";
1839
1840                 for (int i = 0; i < outsize; i++) {
1841                         int id = outputs[i];
1842                         GObjectController *cont = _controllers[id];
1843                         cont->getModel()->save(content);
1844                 }
1845         } // _isComplexBox
1846         else {
1847                 content += "FALSE\n";
1848         }
1849
1850         // CHANGE TO THE VERSION 1.4 RaC2012 2nd HackFest
1851         // External inputs are possible for applications and complex boxes
1852         std::vector<int> inputs = getComplexInputPorts();
1853         int insize = inputs.size();
1854         content += "COMPLEXINPUTS:";
1855         sprintf(buffer, "%d", insize);
1856         content += buffer;
1857         content += "\n";
1858
1859         for (int i = 0; i < insize; i++) {
1860                 int id = inputs[i];
1861                 GObjectController *cont = _controllers[id];
1862                 cont->getModel()->save(content);
1863         }
1864
1865         //Print boxes
1866         std::vector<int> boxes = getBlackBoxes();
1867         int bsize = boxes.size();
1868         content += "BOXES:";
1869         sprintf(buffer, "%d", bsize);
1870         content += buffer;
1871         content += "\n";
1872         
1873         for (int i = 0; i < bsize; i++) {
1874                 int id = boxes[i];
1875                 std::cout<<"id "<<id<<std::endl;//CFT
1876                 GObjectController *cont = _controllers[id];
1877                 std::cout<<"nombre: "<<cont->getStatusText()<<std::endl;//CFT
1878                 std::cout<<"tipo: "<<cont->getModel()->getBBTKType()<<std::endl;//CFT
1879                 //boxesDiagram[i] = cont->getModel()->getBBTKType();//CFT
1880                 std::cout<<"nname: "<<cont->getModel()->getBBTKName()<<std::endl;//CFT
1881                 std::cout<<"categorie: "<<GetCategory()<<std::endl;//CFT
1882                 std::cout<<"type: "<<cont->getModel()->getGObjectType()<<std::endl;//CFT
1883                 cont->getModel()->save(content);
1884         }
1885
1886         //Print connections
1887         std::vector<int> connections = getConnections();
1888         int csize = connections.size();
1889         content += "CONNECTIONS:";
1890         sprintf(buffer, "%d", csize);
1891         content += buffer;
1892         content += "\n";
1893
1894         for (int i = 0; i < csize; i++) {
1895                 int id = connections[i];
1896                 GObjectController *cont = _controllers[id];
1897                 cont->getModel()->save(content);
1898         }
1899
1900 }
1901
1902 //=========================================================================
1903 void wxVtkSceneManager::getCleanLine(stringstream &inputStream, std::string &line)
1904 {
1905         getline(inputStream, line,'\n');
1906         int size = line.length();
1907     if (size>0)
1908         {
1909                 if ( line[ size-1 ]==13  )
1910                 {
1911                         line.erase(size-1,1);
1912                 } // if line
1913         } // if size
1914 }
1915         
1916 //=========================================================================
1917 void wxVtkSceneManager::loadDiagram(stringstream &inputStream) 
1918 {
1919
1920         int size;
1921         std::string version = "<void>";
1922         std::string line = "";
1923         char delims[] = ":";
1924         char *result = NULL;
1925         char poort[POORT_MAX_LINE_SIZE_INTERPRETER];
1926
1927         getCleanLine(inputStream, line);
1928
1929         bool start = false;
1930         while (!inputStream.eof()) {
1931                 if (line == "" || line[0] == '#') {
1932                         line="";
1933                         getCleanLine(inputStream, line);
1934                         
1935                         if (line == "# - BBTKGEditor v 1.0 BBG BlackBox Diagram file") {
1936                                 version = line.substr(18, 3);
1937                         }
1938                         if (line == "# - BBTKGEditor v 1.1 BBG BlackBox Diagram file") {
1939                                 version = line.substr(18, 3);
1940                         }
1941                         if (line == "# - BBTKGEditor v 1.2 BBG BlackBox Diagram file") {
1942                                 version = line.substr(18, 3);
1943                         }
1944                         if (line == "# - BBTKGEditor v 1.3 BBG BlackBox Diagram file") {
1945                                 version = line.substr(18, 3);
1946                         }
1947                         if (line == "# - BBTKGEditor v 1.4 BBG BlackBox Diagram file") {
1948                                 version = line.substr(18, 3);
1949                         }
1950                 } else if (line == "APP_START") {
1951                         start = true;
1952                         break;
1953                 }
1954         }
1955
1956
1957         if (start) {
1958
1959                 if ((version != "1.0") && (version != "1.1")) {
1960                         getCleanLine(inputStream, line);//CATEGORY:<category of the box>
1961                         char categoryTmp[30];
1962                         strcpy(categoryTmp, line.c_str());
1963                         result = strtok(categoryTmp, delims);
1964                         result = strtok(NULL, delims);
1965                         SetCategory(result);
1966
1967                         getCleanLine(inputStream, line);//DESCRIPTION:<description of the box>
1968                         char descriptionTmp[1024];
1969                         strcpy(descriptionTmp, line.c_str());
1970                         result = strtok(descriptionTmp, delims);
1971                         result = strtok(NULL, delims);
1972                         SetDescription(result);
1973
1974                         getCleanLine(inputStream, line);//AUTHOR:<author>
1975                         char authorTmp[255];
1976                         strcpy(authorTmp, line.c_str());
1977                         result = strtok(authorTmp, delims);
1978                         result = strtok(NULL, delims);
1979                         SetAuthor(result);
1980                 }
1981
1982                 //----------
1983                 getCleanLine(inputStream, line);//COMPLEX_BOX:TRUE|FALSE
1984                 char complexTmp[30];
1985                 strcpy(complexTmp, line.c_str());
1986                 result = strtok(complexTmp, delims);
1987                 result = strtok(NULL, delims);
1988                 std::string isComplexBox(result);
1989
1990                 if (isComplexBox == "TRUE") {
1991                         _isComplexBox = true;
1992
1993                         if ((version != "1.0") && (version != "1.1")) {
1994                                 getCleanLine(inputStream, line);//COMPLEXNAME:<name of the complex box>
1995                                 char complexboxnameTmp[255];
1996                                 strcpy(complexboxnameTmp, line.c_str());
1997                                 result = strtok(complexboxnameTmp, delims);
1998                                 result = strtok(NULL, delims);
1999                                 SetCbName(result);
2000
2001                                 getCleanLine(inputStream, line);//PACKAGENAME:<name of the package of the box>
2002                                 char packagenameTmp[255];
2003                                 strcpy(packagenameTmp, line.c_str());
2004                                 result = strtok(packagenameTmp, delims);
2005                                 result = strtok(NULL, delims);
2006                                 SetCbPackageName(result);
2007                         }
2008
2009                         if(version < "1.4")
2010                         {
2011                                 //-----------------------
2012                                 //- COMPLEX INPUT PORTS
2013                                 //-----------------------
2014                                 getCleanLine(inputStream, line);//COMPLEXINPUTS:num
2015                                 char inputs[30];
2016                                 strcpy(inputs, line.c_str());
2017                                 result = strtok(inputs, delims);
2018                                 result = strtok(NULL, delims);
2019
2020                                 int numInputs;
2021                                 std::istringstream inps(result);
2022                                 inps >> numInputs;
2023
2024                                 for (int i = 0; i < numInputs; i++) {
2025                                         //----------
2026                                         getCleanLine(inputStream, line);//COMPLEX_PORT
2027                                         getCleanLine(inputStream, line);//name
2028                                         std::string inputPortName(line);
2029
2030                                         //----------
2031                                         getCleanLine(inputStream, line);//xInic:yInic:zInic
2032                                         char coord[80];
2033                                         strcpy(coord, line.c_str());
2034                                         result = strtok(coord, delims);//xInic
2035                                         std::string xInic(result);
2036                                         result = strtok(NULL, delims);//yInic
2037                                         std::string yInic(result);
2038                                         result = strtok(NULL, delims);//zInic
2039                                         std::string zInic(result);
2040
2041                                         double xIn, yIn, zIn;
2042                                         std::istringstream xSt(xInic);
2043                                         xSt >> xIn;
2044                                         std::istringstream ySt(yInic);
2045                                         ySt >> yIn;
2046                                         std::istringstream zSt(zInic);
2047                                         zSt >> zIn;
2048
2049                                         if (version<="1.2")
2050                                         {
2051                                                 if (zIn==900) zIn=GPOSITION_Z;
2052                                         }
2053
2054                                         getCleanLine(inputStream, line);//FIN_COMPLEX_PORT
2055
2056                                         configGComBoxInputOutputPort(true, inputPortName, xIn, yIn, zIn);
2057
2058                                 } // for input complex box
2059                         }
2060
2061
2062
2063                         //-----------------------
2064                         //- COMPLEX OUTPUT PORTS
2065                         //-----------------------
2066
2067                         getCleanLine(inputStream, line);//COMPLEXOUTPUTS:num
2068                         char outputs[30];
2069                         strcpy(outputs, line.c_str());
2070                         result = strtok(outputs, delims);
2071                         result = strtok(NULL, delims);
2072
2073                         int numOutputs;
2074                         std::istringstream outps(result);
2075                         outps >> numOutputs;
2076
2077                         for (int i = 0; i < numOutputs; i++) {
2078                                 //----------
2079                                 getCleanLine(inputStream, line);//COMPLEX_PORT
2080                                 getCleanLine(inputStream, line);//name
2081                                 std::string outputPortName(line);
2082
2083                                 //----------
2084                                 getCleanLine(inputStream, line);//xInic:yInic:zInic
2085                                 char coord[80];
2086                                 strcpy(coord, line.c_str());
2087                                 result = strtok(coord, delims);//xInic
2088                                 std::string xInic(result);
2089                                 result = strtok(NULL, delims);//yInic
2090                                 std::string yInic(result);
2091                                 result = strtok(NULL, delims);//zInic
2092                                 std::string zInic(result);
2093
2094                                 double xIn, yIn, zIn;
2095                                 std::istringstream xSt(xInic);
2096                                 xSt >> xIn;
2097                                 std::istringstream ySt(yInic);
2098                                 ySt >> yIn;
2099                                 std::istringstream zSt(zInic);
2100                                 zSt >> zIn;
2101
2102                                 if (version<="1.2")
2103                                 {
2104                                         if (zIn==900) zIn=GPOSITION_Z;
2105                                 }
2106                                 
2107                                 getCleanLine(inputStream, line);//FIN_COMPLEX_PORT
2108
2109                                 configGComBoxInputOutputPort(false, outputPortName, xIn, yIn, zIn);
2110
2111                         } // for output complex box
2112
2113                 } // complex box
2114
2115                 // RaC2012 2nd Hackfest
2116                 if(version >= "1.4")
2117                 {
2118                         //-----------------------
2119                         //- EXTERNAL INPUT PORTS
2120                         //-----------------------
2121                         getCleanLine(inputStream, line);//COMPLEXINPUTS:num
2122                         char inputs[30];
2123                         strcpy(inputs, line.c_str());
2124                         result = strtok(inputs, delims);
2125                         result = strtok(NULL, delims);
2126
2127                         int numInputs;
2128                         std::istringstream inps(result);
2129                         inps >> numInputs;
2130
2131                         for (int i = 0; i < numInputs; i++) {
2132                                 //----------
2133                                 getCleanLine(inputStream, line);//COMPLEX_PORT
2134                                 getCleanLine(inputStream, line);//name
2135                                 std::string inputPortName(line);
2136
2137                                 //----------
2138                                 getCleanLine(inputStream, line);//xInic:yInic:zInic
2139                                 char coord[80];
2140                                 strcpy(coord, line.c_str());
2141                                 result = strtok(coord, delims);//xInic
2142                                 std::string xInic(result);
2143                                 result = strtok(NULL, delims);//yInic
2144                                 std::string yInic(result);
2145                                 result = strtok(NULL, delims);//zInic
2146                                 std::string zInic(result);
2147
2148                                 double xIn, yIn, zIn;
2149                                 std::istringstream xSt(xInic);
2150                                 xSt >> xIn;
2151                                 std::istringstream ySt(yInic);
2152                                 ySt >> yIn;
2153                                 std::istringstream zSt(zInic);
2154                                 zSt >> zIn;
2155
2156                                 if (version<="1.2")
2157                                 {
2158                                         if (zIn==900) zIn=GPOSITION_Z;
2159                                 }
2160                                 
2161                                 getCleanLine(inputStream, line);//FIN_COMPLEX_PORT
2162                                 configGComBoxInputOutputPort(true, inputPortName, xIn, yIn, zIn);
2163
2164                         } // for external input
2165                 }
2166
2167
2168                 //----------
2169                 getCleanLine(inputStream, line);//BOXES:num
2170                 char boxes[9];
2171                 strcpy(boxes, line.c_str());
2172                 result = strtok(boxes, delims);
2173                 result = strtok(NULL, delims);
2174
2175                 int numBoxes;
2176                 std::istringstream is(result);
2177                 is >> numBoxes;
2178
2179                 for (int i = 0; i < numBoxes; i++) {
2180                         //----------
2181                         getCleanLine(inputStream, line);//BOX
2182                         getCleanLine(inputStream, line);//package:type:name
2183                         char box[150];
2184                         strcpy(box, line.c_str());
2185                         result = strtok(box, delims);//package
2186                         std::string package(result);
2187                         result = strtok(NULL, delims);//type
2188                         std::string type(result);
2189                         result = strtok(NULL, delims);//name
2190                         std::string name(result);
2191
2192
2193                         getCleanLine(inputStream, line);//ISEXEC:TRUE|FALSE
2194                         char exec[15];
2195                         strcpy(exec, line.c_str());
2196                         result = strtok(exec, delims);//ISEXEC
2197                         result = strtok(NULL, delims);//TRUE|FALSE
2198                         std::string isExec(result);
2199
2200                         //----------
2201                         getCleanLine(inputStream, line);//xInic:yInic:zInic
2202                         char coord[80];
2203                         strcpy(coord, line.c_str());
2204                         result = strtok(coord, delims);//xInic
2205                         std::string xInic(result);
2206                         result = strtok(NULL, delims);//yInic
2207                         std::string yInic(result);
2208                         result = strtok(NULL, delims);//zInic
2209                         std::string zInic(result);
2210
2211                         double xIn, yIn, zIn;
2212                         std::istringstream xSt(xInic);
2213                         xSt >> xIn;
2214                         std::istringstream ySt(yInic);
2215                         ySt >> yIn;
2216                         std::istringstream zSt(zInic);
2217                         zSt >> zIn;
2218
2219                         
2220                         if (version<="1.2")
2221                         {
2222                                 if (zIn==900) zIn=GPOSITION_Z;
2223                         }
2224                         
2225                         
2226                         //----------
2227                         getCleanLine(inputStream, line);//xEnd:yEnd:zEnd
2228                         strcpy(coord, line.c_str());
2229                         result = strtok(coord, delims);//xEnd
2230                         std::string xEnd(result);
2231                         result = strtok(NULL, delims);//yEnd
2232                         std::string yEnd(result);
2233                         result = strtok(NULL, delims);//zEnd
2234                         std::string zEnd(result);
2235
2236                         double xEn, yEn, zEn;
2237                         std::istringstream xEt(xEnd);
2238                         xEt >> xEn;
2239                         std::istringstream yEt(yEnd);
2240                         yEt >> yEn;
2241                         std::istringstream zEt(zEnd);
2242                         zEt >> zEn;
2243
2244                         if (version<="1.2")
2245                         {
2246                                 if (zEn==900) zEn=GPOSITION_Z;
2247                         }
2248                         
2249                         
2250                         bool boxExecutable = false;
2251                         if (isExec == "TRUE") {
2252                                 boxExecutable = true;
2253                         }
2254
2255                         int idBox = createGBlackBox(xIn, yIn, package, type);
2256                         configGBlackBox(idBox, xIn, yIn, zIn, name, boxExecutable, xEn, yEn, zEn);
2257
2258                         GObjectController *cont = _controllers[idBox];
2259                         GBlackBoxModel *bbmod = (GBlackBoxModel*) cont->getModel();
2260
2261                         //----------
2262                         getCleanLine(inputStream, line);//PORT o FIN_BOX
2263                         std::string port = line.substr(0, 4);
2264                         while (port == "PORT") 
2265                         {
2266                                 getCleanLine(inputStream, line);//name:value
2267                                 if (line.length()>=POORT_MAX_LINE_SIZE_INTERPRETER-1)
2268                                 {
2269                                         line=line.substr(0, POORT_MAX_LINE_SIZE_INTERPRETER-1);
2270                                 }
2271                                 
2272                                 strcpy(poort, line.c_str());
2273                                 result = strtok(poort, delims);//name
2274                                 std::string name(result);
2275                                 
2276                                 //EED 16 oct 2012 Adding at the end character " if necesary in the value definition
2277                                 result = strtok(NULL, delims);//value
2278                                 if (( result[0]=='"' ) && ( result[ strlen(result)-1 ]!='"' )  )
2279                                 {
2280                                         std::string tmpString=" ";
2281                                         tmpString[0]=34;         // character "
2282                                         strcat(result,tmpString.c_str());
2283                                 }
2284                                 std::string value(result);
2285
2286                                 bbmod->setValueToInput(name, value);
2287
2288                                 getCleanLine(inputStream, line);//PORT o FIN_BOX
2289                                 port = line.substr(0, 4);
2290                         } // while
2291
2292                         //EED                           bbmod->notifyObservers(_idManager);
2293                 } // for boxes
2294
2295                 /// CONNECTIONS
2296                 //----------
2297                 getCleanLine(inputStream, line);//CONNECTIONS:num
2298                 char conns[30];
2299                 strcpy(conns, line.c_str());
2300                 result = strtok(conns, delims);
2301                 result = strtok(NULL, delims);
2302
2303                 int numConns;
2304                 std::istringstream isCons(result);
2305                 isCons >> numConns;
2306                 
2307                 
2308                 for (int i = 0; i < numConns; i++) {
2309                         //----------
2310                         getCleanLine(inputStream, line);//CONNECTION
2311                         getCleanLine(inputStream, line);//Startbox.PortName:EndBox.PortName
2312
2313                         char connec[200];
2314                         strcpy(connec, line.c_str());
2315                         result = strtok(connec, delims);
2316                         std::string nameStartBox(result);
2317                         result = strtok(NULL, delims);
2318                         std::string nameStartPort(result);
2319                         result = strtok(NULL, delims);
2320                         std::string nameEndBox(result);
2321                         result = strtok(NULL, delims);
2322                         std::string nameEndPort(result);
2323
2324
2325                         int idCon = configGConnetion(nameStartBox, nameStartPort,nameEndBox, nameEndPort);
2326
2327                         if (version != "1.0") {
2328                                 //Readding control points of the manualContour
2329                                 GConnectorController *tempp             = (GConnectorController*) _controllers[idCon];
2330                                 GConnectorModel *conMod                 = (GConnectorModel*) tempp->getModel();
2331                                 vtkGConnectorView *conView              = (vtkGConnectorView*) tempp->getView();
2332                                 getCleanLine(inputStream, line); //NumberOfControlPoints:##
2333                                 strcpy(conns, line.c_str());
2334                                 result = strtok(conns, delims);
2335                                 result = strtok(NULL, delims);
2336
2337                                 int numberOfControlPoints;
2338                                 std::istringstream isCons(result);
2339                                 isCons >> numberOfControlPoints;
2340
2341                                 for (int ii = 0; ii < numberOfControlPoints; ii++) {
2342                                         getCleanLine(inputStream, line); //XX:YY:ZZ
2343                                         char connec[200];
2344                                         strcpy(connec, line.c_str());
2345
2346                                         double px, py, pz;
2347                                         result = strtok(connec, delims);
2348                                         std::istringstream isPointX(result);
2349                                         isPointX >> px;
2350                                         result = strtok(NULL, delims);
2351                                         std::istringstream isPointY(result);
2352                                         isPointY >> py;
2353                                         result = strtok(NULL, delims);
2354                                         std::istringstream isPointZ(result);
2355                                         isPointZ >> pz;
2356                 
2357                                         if (version<="1.2")
2358                                         {
2359                                                 if (pz==900) pz=GPOSITION_Z;
2360                                         }
2361                                         
2362                                         conMod->getManualContourModel()->InsertPoint_id(ii + 1, px, py, pz);
2363                                         conView->getManualContourView()->AddPoint();
2364                                 }
2365                         }// version !=1.0
2366                 } // for numConns
2367         } // start      
2368 }
2369 //=========================================================================
2370
2371
2372 //=========================================================================
2373 void wxVtkSceneManager::configGComBoxInputOutputPort(bool inputoutput,
2374                 std::string portName, double xIn, double yIn, double zIn) 
2375 {
2376         int idPort;
2377         if (inputoutput == true) {
2378                 idPort = createGComplexBoxInputPort(portName);
2379         } else {
2380                 idPort = createGComplexBoxOutputPort(portName);
2381         }
2382         GObjectController *cont = _controllers[idPort];
2383         GBoxModel *cbmod = (GBoxModel*) cont->getModel();
2384         cbmod->setInicPoint(xIn, yIn, zIn);
2385         cbmod->notifyObservers(_idManager);
2386 }
2387 //=========================================================================
2388
2389
2390 //=========================================================================
2391 GBoxModel* wxVtkSceneManager::findGBox(std::string boxname) 
2392 {
2393         int j;
2394         int idB;
2395         GBoxModel *bMod;
2396         GBoxModel *boxModel = NULL;
2397         std::vector<int> lstB = getBlackBoxes();
2398         for (j = 0; j < (int) lstB.size(); j++) {
2399                 idB = lstB[j];
2400                 bMod = (GBoxModel*) _controllers[idB]->getModel();
2401                 if (_controllers[idB]->getModel()->getBBTKName() == boxname) 
2402                 {
2403                         boxModel = bMod;
2404                 }
2405         } // for
2406
2407
2408
2409         if (boxModel == NULL) {
2410                 std::vector<int> lstInputs = getComplexInputPorts();
2411                 for (j = 0; j < (int) lstInputs.size(); j++) {
2412                         idB = lstInputs[j];
2413                         bMod = (GBoxModel*) _controllers[idB]->getModel();
2414                         if (_controllers[idB]->getModel()->getBBTKName() == boxname) 
2415                         {
2416                                 boxModel = bMod;
2417                         }
2418                 } // for
2419
2420                 if(_isComplexBox)
2421                 {
2422                 std::vector<int> lstOutputs = getComplexOutputPorts();
2423                 for (j = 0; j < (int) lstOutputs.size(); j++) {
2424                         int idB = lstOutputs[j];
2425                         bMod = (GBoxModel*) _controllers[idB]->getModel();
2426                         if (_controllers[idB]->getModel()->getBBTKName() == boxname) 
2427                         {
2428                                 boxModel = bMod;
2429                         }
2430                 } // for
2431                 }
2432
2433         } // inputs/outputs
2434
2435         return boxModel;
2436 }
2437
2438 //=========================================================================
2439
2440
2441 int wxVtkSceneManager::configGConnetion(std::string nameStartBox,
2442                 std::string nameStartPort, std::string nameEndBox,
2443                 std::string nameEndPort) {
2444
2445         GBoxModel *boxModel;
2446         GPortModel *startP = NULL;
2447         GPortModel *endP = NULL;
2448
2449         boxModel = findGBox(nameStartBox);
2450         if(boxModel == NULL)
2451         {
2452                 printf("RaC: ERROR in wxVtkSceneManager::configGConnetion A box to connect start port %s is null. Box name is probably wrong.\n", nameStartPort.c_str());
2453         }
2454         if (boxModel != NULL) {
2455                 startP = boxModel->getOutputPort(nameStartPort);
2456                 if(startP == NULL){
2457                         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() );
2458                 }
2459         }
2460
2461         boxModel = findGBox(nameEndBox);
2462         if(boxModel == NULL)
2463         {
2464                  printf("RaC: ERROR in wxVtkSceneManager::configGConnetion A box to connect start port %s is null. Box name is probably wrong.\n", nameStartPort.c_str());
2465         }
2466         if (boxModel != NULL) {
2467                 endP = boxModel->getInputPort(nameEndPort);
2468                 if(endP == NULL){
2469                         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());
2470                 }
2471         }
2472
2473         //ups2
2474         int idCon = createGConnector(startP);
2475
2476         _worldState = NOTHING_HAPPENS;
2477         GConnectorController *tempp = (GConnectorController*) _controllers[idCon];
2478
2479         GConnectorModel *conMod = (GConnectorModel*) tempp->getModel();
2480         vtkGConnectorView *conView = (vtkGConnectorView*) tempp->getView();
2481         tempp->endContourCreation();
2482         conMod->setEndPort(endP);
2483         conView->updateStartEndPoints();
2484         return idCon;
2485 }
2486
2487 //=========================================================================
2488
2489 bool wxVtkSceneManager::boxExist(std::string boxname) {
2490         bool ok = false;
2491         std::map<int, GObjectController*>::iterator it;
2492         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2493                 GObjectController *cont = it->second;
2494                 if (cont->getModel()->getBBTKName() == boxname) {
2495                         ok = true;
2496                 }
2497         }
2498         return ok;
2499 }
2500
2501 //=========================================================================
2502
2503 std::vector<int> wxVtkSceneManager::getBlackBoxes() {
2504         std::vector<int> vect;
2505         std::map<int, GObjectController*>::iterator it;
2506         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2507                 GObjectController *cont = it->second;
2508                 if (cont->getGObjectType() == GBLACKBOX) {
2509                         vect.push_back(cont->getId());
2510                 }
2511         }
2512         return vect;
2513 }
2514
2515 //=========================================================================
2516
2517 std::vector<int> wxVtkSceneManager::getComplexInputPorts() {
2518         std::vector<int> vect;
2519         std::map<int, GObjectController*>::iterator it;
2520         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2521                 GObjectController *cont = it->second;
2522                 if (cont->getGObjectType() == GCOMPLEXINPUTPORT) {
2523                         vect.push_back(cont->getId());
2524                 }
2525         }
2526         return vect;
2527 }
2528
2529 //=========================================================================
2530
2531 std::vector<int> wxVtkSceneManager::getComplexOutputPorts() {
2532         std::vector<int> vect;
2533         std::map<int, GObjectController*>::iterator it;
2534         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2535                 GObjectController *cont = it->second;
2536                 if (cont->getGObjectType() == GCOMPLEXOUTPUTPORT) {
2537                         vect.push_back(cont->getId());
2538                 }
2539         }
2540         return vect;
2541 }
2542
2543 //=========================================================================
2544
2545 std::vector<int> wxVtkSceneManager::getConnections() {
2546         std::vector<int> vect;
2547         std::map<int, GObjectController*>::iterator it;
2548         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2549                 GObjectController *cont = it->second;
2550                 if (cont->getGObjectType() == GCONNECTOR) {
2551                         vect.push_back(cont->getId());
2552                 }
2553         }
2554         return vect;
2555 }
2556
2557 //=========================================================================
2558
2559 bool wxVtkSceneManager::isComplexBox() {
2560         return _isComplexBox;
2561 }
2562
2563 //=========================================================================
2564
2565 void wxVtkSceneManager::setComplexBox(bool val) {
2566         _isComplexBox = val;
2567 }
2568
2569 //=========================================================================
2570
2571 int wxVtkSceneManager::addObjectController(GObjectController* objController) {
2572         //Register the controller of the new object
2573         registerController((InteractorStyleMaracas*) objController);
2574         //Add the object to the objects list
2575         int newId = _contLastId;//_controllers.size();
2576         objController->setId(newId);
2577         _controllers[newId] = objController;
2578         //std::cout << "DFCH: int wxVtkSceneManager::addObjectController(GObjectController* objController) ---- _contLastId = " << _contLastId << std::endl;
2579         _contLastId++;
2580         return newId;
2581 }
2582
2583 //=========================================================================
2584
2585 void wxVtkSceneManager::DuplicateObjects(std::map<int, GObjectController*> objectsMap) {
2586
2587         std::map<int, int> oldIdNewIdBoxes;
2588         std::vector<int> connections;
2589
2590         std::vector<int> newBoxesID;
2591
2592         std::map<int, GObjectController*>::iterator it;
2593         for (it = objectsMap.begin(); it != objectsMap.end(); ++it) {
2594             GObjectController *cont = it->second;
2595             int type = cont->getGObjectType();
2596
2597             if (type == GBLACKBOX) {
2598                 // Copy black box
2599                 double xInic, yInic, zInic;
2600                 GBlackBoxModel* copyBox = (GBlackBoxModel*) cont->getModel();
2601                 copyBox->getInicPoint(xInic, yInic, zInic);
2602                 int idBox = createGBlackBox(0, 0, copyBox->getBBTKPackage(),
2603                         copyBox->getBBTKType());
2604
2605                 int idcB = copyBox->getObjectId();
2606                 oldIdNewIdBoxes[idcB] = idBox;
2607                 cont = _controllers[idBox];
2608                 GBlackBoxModel* newbox = (GBlackBoxModel*) cont->getModel();
2609                 newbox->setInicPoint(xInic, yInic, zInic);
2610                 int num = newbox->getNumInputPorts();
2611                 for (int j = 0; j < num; j++) {
2612                     newbox->setValueToInputPort(j, copyBox->getValueInputPort(j));
2613                 }
2614                 newbox->move(xInic + 20, yInic + 20, zInic);
2615                 newbox->notifyObservers(_idManager);
2616                 newBoxesID.push_back(newbox->getObjectId());
2617
2618             } else if (type == GCONNECTOR) {
2619                 int idCon = cont->getId();
2620                 connections.push_back(idCon);
2621             }
2622
2623         }
2624
2625         for (int i = 0; i < (int) connections.size(); i++) {
2626             int objId = connections[i];
2627             GObjectController *cont = objectsMap[objId];
2628             GConnectorModel* connectModel = (GConnectorModel*) cont->getModel();
2629
2630             GPortModel* startPort = connectModel->getStartPort();
2631             int startPortIndex = startPort->getPosInBox();
2632             GPortModel* endPort = connectModel->getEndPort();
2633             int endPortIndex = endPort->getPosInBox();
2634
2635             GBlackBoxModel* startPortParentBox =
2636                     (GBlackBoxModel*) startPort->getParentBox();
2637             GBlackBoxModel* endPortParentBox =
2638                     (GBlackBoxModel*) endPort->getParentBox();
2639
2640             int idNewStartBox = oldIdNewIdBoxes[startPortParentBox->getObjectId()];
2641             int idNewEndBox = oldIdNewIdBoxes[endPortParentBox->getObjectId()];
2642
2643             GBlackBoxModel* newStartBox =
2644                     (GBlackBoxModel*) _controllers[idNewStartBox]->getModel();
2645             GBlackBoxModel* newEndBox =
2646                     (GBlackBoxModel*) _controllers[idNewEndBox]->getModel();
2647
2648             GPortModel* newStartPort = newStartBox->getOutputPort(startPortIndex);
2649             GPortModel* newEndPort = newEndBox->getInputPort(endPortIndex);
2650
2651             // Creates connection
2652             int idCon = createGConnector(newStartPort);
2653             GConnectorController *tempp =
2654                     (GConnectorController*) _controllers[idCon];
2655             GConnectorModel *conMod = (GConnectorModel*) tempp->getModel();
2656             vtkGConnectorView *conView = (vtkGConnectorView*) tempp->getView();
2657             tempp->endContourCreation();
2658             conMod->setEndPort(newEndPort);
2659             conView->updateStartEndPoints();
2660         }
2661
2662         /// the new selected boxes are the duplicate ones
2663
2664         UnSelectBlackBoxes();
2665         for (int i = 0; i < newBoxesID.size(); i++) {
2666             _selectedObjects.push_back(newBoxesID.at(i));
2667         }
2668
2669         for (int i = 0; i < (int) _selectedObjects.size(); i++) {
2670             int id = _selectedObjects[i];
2671             GObjectController* cont = _controllers[id];
2672
2673             cont->getView()->setState(SELECTED);
2674             cont->getModel()->notifyObservers(_idManager);
2675
2676         }
2677     }
2678
2679
2680 //=========================================================================
2681
2682 int wxVtkSceneManager::getNumSelectedObjects() {
2683         return _selectedObjects.size();
2684 }
2685
2686 //=========================================================================
2687
2688 std::map<int, GObjectController*> wxVtkSceneManager::getSelectedObjects() {
2689         std::map<int, GObjectController*> mapSelected;
2690
2691         std::map<int, GObjectController*>::iterator it;
2692         for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2693                 GObjectController *cont = it->second;
2694                 if (cont->getGObjectType() == GBLACKBOX && cont->getView()->getState()
2695                                 == SELECTED) {
2696                         mapSelected[cont->getId()] = cont;
2697                 }
2698         }
2699
2700         std::map<int, GObjectController*>::iterator it2;
2701         for (it2 = _controllers.begin(); it2 != _controllers.end(); ++it2) {
2702                 GObjectController *cont = it2->second;
2703                 if (cont->getGObjectType() == GCONNECTOR) {
2704                         GConnectorModel* cmod = (GConnectorModel*) cont->getModel();
2705                         GBoxModel* endPortParentBox = cmod->getEndPort()->getParentBox();
2706                         GBoxModel* startPortParentBox =
2707                                         cmod->getStartPort()->getParentBox();
2708
2709                         std::map<int, GObjectController*>::iterator iterOBJ1 =
2710                                         mapSelected.find(startPortParentBox->getObjectId());
2711                         std::map<int, GObjectController*>::iterator iterOBJ2 =
2712                                         mapSelected.find(endPortParentBox->getObjectId());
2713
2714                         if (iterOBJ1 != mapSelected.end() && iterOBJ2 != mapSelected.end()) {
2715                                 int ID = cont->getId();
2716                                 mapSelected[ID] = cont;
2717                         }
2718                 }
2719         }
2720         return mapSelected;
2721 }
2722
2723 //=========================================================================
2724
2725 void wxVtkSceneManager::addObjects(std::map<int, GObjectController*> objectsMap) {
2726
2727         std::map<int, int> oldIdNewIdBoxes;
2728         std::vector<int> connections;
2729
2730         std::map<int, GObjectController*>::iterator it;
2731         for (it = objectsMap.begin(); it != objectsMap.end(); ++it) {
2732                 GObjectController *cont = it->second;
2733                 int type = cont->getGObjectType();
2734
2735                 if (type == GBLACKBOX) {
2736                         // Copy black box
2737                         double xInic, yInic, zInic;
2738                         GBlackBoxModel* copyBox = (GBlackBoxModel*) cont->getModel();
2739                         copyBox->getInicPoint(xInic, yInic, zInic);
2740                         int idBox = createGBlackBox(0, 0, copyBox->getBBTKPackage(),copyBox->getBBTKType());
2741
2742                         int idcB = copyBox->getObjectId();
2743                         oldIdNewIdBoxes[idcB] = idBox;
2744                         cont = _controllers[idBox];
2745                         GBlackBoxModel* newbox = (GBlackBoxModel*) cont->getModel();
2746                         newbox->setInicPoint(xInic, yInic, zInic);
2747                         int num = newbox->getNumInputPorts();
2748                         for (int j = 0; j < num; j++) 
2749                         {
2750                                 newbox->setValueToInputPort(j, copyBox->getValueInputPort(j));
2751                         }// for j
2752                         newbox->notifyObservers(_idManager);
2753                 } else if (type == GCONNECTOR) {
2754                         int idCon = cont->getId();
2755                         connections.push_back(idCon);
2756                 }
2757
2758         }
2759
2760         for (int i = 0; i < (int) connections.size(); i++) {
2761                 int objId = connections[i];
2762                 GObjectController *cont = objectsMap[objId];
2763                 GConnectorModel* connectModel = (GConnectorModel*) cont->getModel();
2764
2765                 GPortModel* startPort = connectModel->getStartPort();
2766                 int startPortIndex = startPort->getPosInBox();
2767                 GPortModel* endPort = connectModel->getEndPort();
2768                 int endPortIndex = endPort->getPosInBox();
2769
2770                 GBlackBoxModel* startPortParentBox =
2771                                 (GBlackBoxModel*) startPort->getParentBox();
2772                 GBlackBoxModel* endPortParentBox =
2773                                 (GBlackBoxModel*) endPort->getParentBox();
2774
2775                 int idNewStartBox = oldIdNewIdBoxes[startPortParentBox->getObjectId()];
2776                 int idNewEndBox = oldIdNewIdBoxes[endPortParentBox->getObjectId()];
2777
2778                 GBlackBoxModel* newStartBox =
2779                                 (GBlackBoxModel*) _controllers[idNewStartBox]->getModel();
2780                 GBlackBoxModel* newEndBox =
2781                                 (GBlackBoxModel*) _controllers[idNewEndBox]->getModel();
2782
2783                 GPortModel* newStartPort = newStartBox->getOutputPort(startPortIndex);
2784                 GPortModel* newEndPort = newEndBox->getInputPort(endPortIndex);
2785
2786                 // Creates connection
2787                 int idCon = createGConnector(newStartPort);
2788                 GConnectorController *tempp =
2789                                 (GConnectorController*) _controllers[idCon];
2790                 GConnectorModel *conMod = (GConnectorModel*) tempp->getModel();
2791                 vtkGConnectorView *conView = (vtkGConnectorView*) tempp->getView();
2792                 tempp->endContourCreation();
2793                 conMod->setEndPort(newEndPort);
2794                 conView->updateStartEndPoints();
2795         }
2796
2797         std::map<int, int>::iterator itIds;
2798         for (itIds = oldIdNewIdBoxes.begin(); itIds != oldIdNewIdBoxes.end(); ++itIds) {
2799                 int idOld = itIds->first;
2800                 int idNew = itIds->second;
2801
2802                 GBlackBoxModel* oldBox =
2803                                 (GBlackBoxModel*) objectsMap[idOld]->getModel();
2804                 GBlackBoxModel* newBox =
2805                                 (GBlackBoxModel*) _controllers[idNew]->getModel();
2806
2807                 std::vector<int> oldInputConnections = oldBox->getConnectedInputs();
2808                 std::vector<int> oldOutputConnections = oldBox->getConnectedOutputs();
2809                 std::vector<int> newInputConnections = newBox->getConnectedInputs();
2810                 std::vector<int> newOutputConnections = newBox->getConnectedOutputs();
2811
2812                 for (int k = 0; k < (int) oldInputConnections.size(); k++) {
2813                         bool exist = false;
2814                         //EED                           int toCreate=-1;
2815                         for (int l = 0; l < (int) newInputConnections.size() && !exist; l++) {
2816                                 if (oldInputConnections[k] == newInputConnections[l]) {
2817                                         exist = true;
2818                                 }
2819                         }
2820
2821                         if (exist == false) {
2822                                 //Create complex input
2823                                 int posInBox = oldInputConnections[k];
2824                                 GPortModel* inputPort = oldBox->getInputPort(posInBox);
2825                                 std::string inputPortName = inputPort->getBBTKName();
2826                                 int idInputPort = createGComplexBoxInputPort(inputPortName);
2827                                 GObjectController *cont = _controllers[idInputPort];
2828                                 GBoxModel *cbmod = (GBoxModel*) cont->getModel();
2829                                 double xIn, yIn, zIn;
2830                                 inputPort->getInicPoint(xIn, yIn, zIn);
2831                                 yIn += 20;
2832                                 cbmod->setInicPoint(xIn, yIn, zIn);
2833                                 cbmod->notifyObservers(_idManager);
2834
2835                                 GPortModel* inputPortEnd = newBox->getInputPort(posInBox);
2836
2837                                 // Creates connection
2838                                 int idCon = createGConnector(cbmod->getOutputPort(0));
2839                                 GConnectorController *tempp =
2840                                                 (GConnectorController*) _controllers[idCon];
2841                                 GConnectorModel *conMod = (GConnectorModel*) tempp->getModel();
2842                                 vtkGConnectorView *conView =
2843                                                 (vtkGConnectorView*) tempp->getView();
2844                                 tempp->endContourCreation();
2845                                 conMod->setEndPort(inputPortEnd);
2846                                 conView->updateStartEndPoints();
2847
2848                         }
2849
2850                 }
2851
2852                 for (int k = 0; k < (int) oldOutputConnections.size(); k++) {
2853                         bool exist = false;
2854                         //EED                           int toCreate=-1;
2855                         for (int l = 0; l < (int) newOutputConnections.size() && !exist; l++) {
2856                                 if (oldOutputConnections[k] == newOutputConnections[l]) {
2857                                         exist = true;
2858                                 }
2859                         }
2860
2861                         if (exist == false) {
2862                                 //Create complex output
2863                                 int posInBox = oldOutputConnections[k];
2864                                 GPortModel* outputPort = oldBox->getOutputPort(posInBox);
2865                                 std::string outputPortName = outputPort->getBBTKName();
2866                                 int idOutputPort = createGComplexBoxOutputPort(outputPortName);
2867                                 GObjectController *cont = _controllers[idOutputPort];
2868                                 GBoxModel *cbmod = (GBoxModel*) cont->getModel();
2869                                 double xIn, yIn, zIn;
2870                                 outputPort->getInicPoint(xIn, yIn, zIn);
2871                                 yIn -= 20;
2872                                 cbmod->setInicPoint(xIn, yIn, zIn);
2873                                 cbmod->notifyObservers(_idManager);
2874
2875                                 GPortModel* outputPortEnd = newBox->getOutputPort(posInBox);
2876
2877                                 // Creates connection
2878                                 int idCon = createGConnector(outputPortEnd);
2879                                 GConnectorController *tempp =
2880                                                 (GConnectorController*) _controllers[idCon];
2881                                 GConnectorModel *conMod = (GConnectorModel*) tempp->getModel();
2882                                 vtkGConnectorView *conView =
2883                                                 (vtkGConnectorView*) tempp->getView();
2884                                 tempp->endContourCreation();
2885                                 conMod->setEndPort(cbmod->getInputPort(0));
2886                                 conView->updateStartEndPoints();
2887
2888                         }
2889
2890                 }
2891
2892         }
2893
2894 }
2895
2896 //=========================================================================
2897 void wxVtkSceneManager::SetCbName(std::string cbName) {
2898         _cbName = cbName;
2899         if (_cbName == "") {
2900                 _cbName = "<complex box name>";
2901         }
2902 }
2903
2904 //=========================================================================
2905 std::string wxVtkSceneManager::GetCbName() {
2906         return _cbName;
2907 }
2908
2909 //=========================================================================
2910 void wxVtkSceneManager::SetCbPackageName(std::string packagename) {
2911         _cbPackageName = packagename;
2912         if (_cbPackageName == "") {
2913                 _cbPackageName = "<package name of the complex box>";
2914         }
2915 }
2916
2917 //=========================================================================
2918 std::string wxVtkSceneManager::GetCbPackageName() {
2919         return _cbPackageName;
2920 }
2921
2922 //=========================================================================
2923 void wxVtkSceneManager::SetAuthor(std::string author) {
2924         _Author = author;
2925         if (_Author == "") {
2926                 _Author = "<author of the box>";
2927         }
2928 }
2929
2930 //=========================================================================
2931 std::string wxVtkSceneManager::GetAuthor() {
2932         return _Author;
2933 }
2934
2935 //=========================================================================
2936 void wxVtkSceneManager::SetCategory(std::string category) {
2937         _Category = category;
2938         if (_Category == "") {
2939                 _Category = "<category of the box>";
2940         }
2941 }
2942
2943 //=========================================================================
2944 std::string wxVtkSceneManager::GetCategory() {
2945         return _Category;
2946 }
2947
2948 //=========================================================================
2949 void wxVtkSceneManager::SetDescription(std::string description) {
2950         _Description = description;
2951         if (_Description == "") {
2952                 _Description = "<description of the box>";
2953         }
2954 }
2955
2956 //=========================================================================
2957 std::string wxVtkSceneManager::GetDescription() {
2958         return _Description;
2959 }
2960
2961 //=========================================================================
2962
2963 void wxVtkSceneManager::SetMessageKind(std::string kind) {
2964                 _MessageKind = kind;
2965         
2966 }
2967                                 
2968 //=========================================================================
2969
2970 std::string wxVtkSceneManager::GetMessageKind(){
2971                 return _MessageKind;
2972 }
2973
2974 //=========================================================================
2975
2976 void wxVtkSceneManager::SetMessageLevel(std::string Level){
2977                 _MessageLevel = Level;
2978 }
2979
2980 //=========================================================================
2981
2982 std::string wxVtkSceneManager::GetMessageLevel(){
2983                 return _MessageLevel;
2984 }
2985
2986 //=========================================================================
2987
2988 std::vector< std::string> wxVtkSceneManager::GetExternalInputsNames()
2989 {
2990
2991         std::vector< std::string> extInputs;
2992         std::map<int, GObjectController*>::iterator it;
2993         for (it = _controllers.begin(); it != _controllers.end(); ++it)
2994         {
2995                 GObjectController *cont = it->second;
2996                 if (cont->getGObjectType() == GCOMPLEXINPUTPORT)
2997                 {
2998                         extInputs.push_back(cont->getModel()->getBBTKName());
2999                 }
3000         }
3001         return extInputs;
3002 }
3003
3004 //=========================================================================
3005
3006
3007
3008 void wxVtkSceneManager::printAll(int com , int sta ){
3009         
3010          int tmpState = sta ;
3011         if ( tmpState == NOTHING_HAPPENS ) {
3012             std::cout << "CONTROLER STATE---->NOTHING_HAPPENS\n" ;
3013         }
3014         if ( tmpState == HIGHLIGHTED ) {
3015             std::cout << "CONTROLER STATE---->HIGHLIGHTED\n" ;
3016         }
3017         if ( tmpState == POSSIBLE_CONNECTION ) {
3018             std::cout << "CONTROLER STATE---->POSSIBLE_CONNECTION\n" ;
3019         }
3020         if ( tmpState == SELECTED_POSSIBLE_CONNECTION ) {
3021             std::cout << "CONTROLER STATE---->SELECTED_POSSIBLE_CONNECTION\n" ;
3022         }
3023         if ( tmpState == CLICKED ) {
3024             std::cout << "CONTROLER STATE---->CLICKED\n" ;
3025         }
3026         if ( tmpState == DRAG ) {
3027             std::cout << "CONTROLER STATE---->DRAG\n" ;
3028         }
3029         if ( tmpState == SELECTED ) {
3030             std::cout << "CONTROLER STATE---->SELECTED\n" ;
3031         }
3032         if ( tmpState == CREATING_CONTOUR ) {
3033             std::cout << "CONTROLER STATE---->CREATING_CONTOUR\n" ;
3034         }   
3035          
3036          // :P 
3037
3038         int command = com ;
3039         if ( command == INIT_CREATION_CONTOUR ) {
3040             std::cout << "COMMAND ----> INIT_CREATION_CONTOUR \n" ;
3041         }
3042         if ( command == FIN_CREATION_CONTOUR ) {
3043             std::cout << "COMMAND ----> FIN_CREATION_CONTOUR \n" ;
3044         }
3045         if ( command == ADD_TO_SELECTED ) {
3046             std::cout << "COMMAND ----> ADD_TO_SELECTED \n" ;
3047         }
3048         if ( command == DRAG_OBJECTS ) {
3049             std::cout << "COMMAND ----> DRAG_OBJECTS \n" ;
3050         }
3051         if ( command == EDIT_BLACKBOX ) {
3052             std::cout << "COMMAND ----> EDIT_BLACKBOX \n" ;
3053         }
3054         if ( command == REMOVE_FROM_SELECTED ) {
3055             std::cout << "COMMAND ----> REMOVE_FROM_SELECTED \n" ;
3056         }
3057         
3058     }
3059
3060
3061 } // EO namespace bbtk
3062
3063 // EOF
3064