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