1 /*=========================================================================
7 =========================================================================*/
9 /* ---------------------------------------------------------------------
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
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.
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
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 * ------------------------------------------------------------------------ */
33 * \brief Class bbtk::wxVtkSceneManager .
36 #include "wxVtkSceneManager.h"
38 #include <vtkPolygon.h>
39 #include <vtkUnstructuredGrid.h>
43 //=========================================================================
44 wxVtkSceneManager::wxVtkSceneManager(wxGEditorTabPanel *parent,
45 wxVtk3DBaseView *baseView, int idManager) {
46 _cbName = "ComplexBoxName";
47 _cbPackageName = "PackageName";
48 _Author = "Author ??";
50 _Description = "Description ??";
54 _idManager = idManager;
56 _startDragging = false;
57 _isComplexBox = false;
59 if (_baseView != NULL) {
62 "RaC-EED 21-06-2010 %p wxVtkSceneManager::wxVtkSceneManager If you comment this line, the drag and drop functionnality is not initialized.\n",
65 _baseView->GetWxVTKRenderWindowInteractor()->SetDropTarget((wxDropTarget*)parent);
69 _worldState = NOTHING_HAPPENS;
70 registerController(this);
73 _idConnectionInCreation = -1;
78 //=========================================================================
80 void wxVtkSceneManager::disconnectDrop() {
81 printf("EED %p ~wxVtkSceneManager::disconnectDrop()\n", this);
82 //EED02JUIN2010 _baseView->GetWxVTKRenderWindowInteractor()->SetDropTarget(NULL);
83 // _baseView->GetWxVTKRenderWindowInteractor()->SetDropTarget( new tmpClasswxTextDropTarget() );
86 //=========================================================================
88 wxVtkSceneManager::~wxVtkSceneManager() {
90 printf("EED %p ~wxVtkSceneManager()\n", this);
95 //=========================================================================
97 void wxVtkSceneManager::configureBaseView() {
98 printf("EED wxVtkSceneManager::configureBaseView 0\n");
99 vtkInteractorStyleBaseView2D *interactorstylebaseview =
100 vtkInteractorStyleBaseView2D::New();
102 _baseView->SetInteractorStyleBaseView(interactorstylebaseview);
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);
111 _baseView->GetRenderer()->GetActiveCamera()->ParallelProjectionOn();
112 _baseView->GetRenderer()->ResetCamera(-100, 100, -100, 100, 800, 1100);
114 _baseView->GetRenderer()->SetBackground(0.9, 0.9, 0.9);
115 _baseView->GetRenderer()->GradientBackgroundOn();
116 _baseView->Refresh();
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,
127 _baseView->GetRenderer()->AddActor(_textActor);
129 // Actor Fill_Port_Text
136 vtkPolygon *aPolygon = vtkPolygon::New();
137 _fillObjectActor = vtkActor::New();
139 _pts = vtkPoints::New();
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);
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);
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);
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);
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);
169 aPolygon->GetPointIds()->SetNumberOfIds(21);
170 for (int i = 0; i < 21; i++) {
171 aPolygon->GetPointIds()->SetId(i, i);
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,
184 _fillObjectActor->GetProperty()->SetOpacity(0);
185 _aPolygonMapper->Modified();
187 _baseView->GetRenderer()->AddActor(_fillObjectActor);
188 printf("EED wxVtkSceneManager::configureBaseView 1\n");
191 //=========================================================================
193 std::string wxVtkSceneManager::generateANewNameForABox() {
194 std::stringstream boxname;
195 if (_numBoxes < 10) {
196 boxname << "Box0" << _numBoxes;
198 boxname << "Box" << _numBoxes;
201 return boxname.str();
204 //=========================================================================
206 std::string wxVtkSceneManager::findANewNameForABox() {
207 std::string boxname = generateANewNameForABox();
209 while (boxExist(boxname) == true) {
210 boxname = generateANewNameForABox();
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);
227 bbmod->notifyObservers(_idManager);
231 //=========================================================================
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];
239 int type = GBLACKBOX;
241 //Create the MVC Objects
245 (GBlackBoxModel*) GObjectsMVCFactory::getInstance()->createGObjectModel(
247 vtkGObjectView *view =
248 GObjectsMVCFactory::getInstance()->createGObjectView(type);
249 GObjectController* controller =
250 GObjectsMVCFactory::getInstance()->createGObjectController(type);
252 BlackBoxDescriptor::Pointer descriptor =
253 GObjectsMVCFactory::getInstance()->getBlackBoxDescriptor(
254 packageName, boxType);
256 //Prepares the initial model
257 //The coordinates obtained are the following. Top-Left:x=0,y=0 Bottom-Right:x=width,y=height
260 double yy = windowHeight - y;
262 //z value is not important yet, because it is only used a parallel projection
264 _baseView->TransCoordScreenToWorld(xx, yy, zz);
265 model->setInicPoint(xx, yy, zz);
267 std::stringstream stream;
269 std::string newBoxName;
270 newBoxName = findANewNameForABox();
272 stream << newBoxName;
274 std::string arraystring = stream.str();
276 model->setBBTKName(arraystring);
277 model->setBBTKType(boxType);
278 model->setBBTKPackage(packageName);
280 model->addObserver(view);
281 model->addObserver(this);
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;
289 for (itInput = descriptorInMap.begin(); itInput != descriptorInMap.end(); ++itInput) {
290 BlackBoxInputDescriptor *desc = itInput->second;
291 createGInputPort(GINPUTPORT, i, model, desc);
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;
301 for (itOutput = descriptorOutMap.begin(); itOutput
302 != descriptorOutMap.end(); ++itOutput) {
303 BlackBoxOutputDescriptor *desc = itOutput->second;
304 createGOutputPort(GOUTPUTPORT, i, model, desc);
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();
314 //Associates the controller with the correspondent model and view
315 controller->setModelAndView(model, view);
317 //Resgiter change to the observers of the actual model
318 model->notifyObservers(_idManager);
320 int newId = addObjectController(controller);
326 //=========================================================================
328 int wxVtkSceneManager::createGComplexBoxInputPort(std::string inputName) {
329 //EED int windowWidth=_baseView->GetRenWin()->GetSize()[0];
330 int windowHeight = _baseView->GetRenWin()->GetSize()[1];
332 int type = GCOMPLEXINPUTPORT;
334 //Create the MVC Objects
338 (GComplexBoxPortModel*) GObjectsMVCFactory::getInstance()->createGObjectModel(
340 vtkGObjectView *view =
341 GObjectsMVCFactory::getInstance()->createGObjectView(type);
342 GObjectController* controller =
343 GObjectsMVCFactory::getInstance()->createGObjectController(type);
345 //Prepares the initial model
348 double yy = windowHeight - 5;
350 //z value is not important yet, because it is only used a parallel projection
352 printf("EED wxVtkSceneManager::createGComplexBoxInputPort 900-450\n");
354 _baseView->TransCoordScreenToWorld(xx, yy, zz);
355 model->setInicPoint(xx, yy, zz);
357 model->setBBTKName(inputName);
358 model->setBBTKType("ComplexInputPort");
359 model->setComplexPortType(type);
361 model->addObserver(view);
362 model->addObserver(this);
364 //create the output port
365 GPortController* portController = createGPort(GOUTPUTPORT, inputName,
366 "ComplexInputPort", 0, model);
367 model->addOutputPort((GPortModel*) portController->getModel());
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();
375 //Associates the controller with the correspondent model and view
376 controller->setModelAndView(model, view);
378 //Resgiter change to the observers of the actual model
379 model->notifyObservers(_idManager);
381 int newId = addObjectController(controller);
385 //=========================================================================
387 int wxVtkSceneManager::createGComplexBoxOutputPort(std::string outputName) {
388 //EED int windowWidth=_baseView->GetRenWin()->GetSize()[0];
389 int windowHeight = _baseView->GetRenWin()->GetSize()[1];
391 int type = GCOMPLEXOUTPUTPORT;
393 //Create the MVC Objects
397 (GComplexBoxPortModel*) GObjectsMVCFactory::getInstance()->createGObjectModel(
399 vtkGObjectView *view =
400 GObjectsMVCFactory::getInstance()->createGObjectView(type);
401 GObjectController *controller =
402 GObjectsMVCFactory::getInstance()->createGObjectController(type);
404 //Prepares the initial model
407 double yy = windowHeight - 5;
409 //z value is not important yet, because it is only used a parallel projection
412 printf("EED wxVtkSceneManager::createGComplexBoxOutputPort 900-450\n");
414 _baseView->TransCoordScreenToWorld(xx, yy, zz);
415 model->setInicPoint(xx, yy, zz);
417 model->setBBTKName(outputName);
418 model->setBBTKType("ComplexOutputPort");
419 model->setComplexPortType(type);
421 model->addObserver(view);
422 model->addObserver(this);
424 //create the output port
425 GPortController* portController = createGPort(GINPUTPORT, outputName,
426 "ComplexInputPort", 0, model);
427 model->addInputPort((GPortModel*) portController->getModel());
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();
435 //Associates the controller with the correspondent model and view
436 controller->setModelAndView(model, view);
438 //Resgiter change to the observers of the actual model
439 model->notifyObservers(_idManager);
441 int newId = addObjectController(controller);
445 //=========================================================================
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();
455 //=========================================================================
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();
465 //=========================================================================
467 GPortController* wxVtkSceneManager::createGPort(int portType,
468 std::string bbtkName, std::string bbtkType, int posInBox,
469 GBoxModel *blackBox) {
472 //Create the MVC Objects
475 (GPortModel*) GObjectsMVCFactory::getInstance()->createGObjectModel(
477 vtkGObjectView *view =
478 GObjectsMVCFactory::getInstance()->createGObjectView(type);
479 GObjectController* controller =
480 GObjectsMVCFactory::getInstance()->createGObjectController(type);
482 model->registerInBox(blackBox, portType, posInBox);
484 model->setBBTKType(bbtkType);
485 model->setBBTKName(bbtkName);
487 model->addObserver(view);
488 model->addObserver(this);
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();
496 //Associates the controller with the correspondent model and view
497 controller->setModelAndView(model, view);
499 model->notifyObservers(_idManager);
501 addObjectController(controller);
503 return (GPortController*) controller;
506 //=========================================================================
508 int wxVtkSceneManager::createGConnector(GPortModel* startPort) {
509 int type = GCONNECTOR;
511 manualConnectorContourController* manContourControl =
512 new manualConnectorContourController();
513 manualConnectorContourView* manContourView =
514 new manualConnectorContourView();
515 manualContourModel* manContourModel = new manualContourModel();
517 GConnectorController* connectorcontroller = new GConnectorController();
518 GConnectorModel* connectorModel = new GConnectorModel();
519 vtkGConnectorView* connectorView = new vtkGConnectorView();
520 connectorModel->setGObjectType(type);
522 manContourModel->SetCloseContour(false);
523 connectorModel->setStartPort(startPort);
525 manContourView->SetModel(manContourModel);
526 manContourView->SetWxVtkBaseView(_baseView);
527 manContourView->SetRange(0.5);
528 manContourView->SetZ(900);
530 manContourView->SetColorNormalContour(0, 0, 1);
531 manContourView->SetColorEditContour(0.5, 0.5, 0.5);
532 manContourView->SetColorSelectContour(1, 0.8, 0);
536 * Width increased from 2 to 5, it simplifies line handling and spline control :P
539 manContourView->SetWidthLine( 5 ) ;
540 manContourView->SetShowText(false);
542 manContourControl->SetModelView(manContourModel, manContourView);
544 manContourControl->CreateNewManualContour();
546 manContourView->RefreshContour();
549 connectorModel->getInicPoint(x, y, z);
551 manContourControl->SetState(1);
552 manContourModel->SetCloseContour(false);
554 manContourModel->AddPoint(x, y, z);
555 manContourView->AddPoint();
557 manContourModel->AddPoint(x, y, z);
558 manContourView->AddPoint();
560 int bak = manContourControl->GetNumberOfPointsManualContour() - 1;
561 manContourControl->_bakIdPoint = bak;
562 manContourView->Refresh();
564 manContourControl->SetMoving(false);
566 connectorcontroller->setModelAndView(connectorModel, connectorView);
568 int newId = addObjectController(connectorcontroller);
570 connectorcontroller->setManualContourController(manContourControl);
571 connectorModel->setManualContourModel(manContourModel);
572 connectorView->setManualContourView(manContourView);
573 connectorView->setModel(connectorModel);
574 connectorView->setBaseView(_baseView);
576 connectorModel->addObserver(connectorView);
577 connectorModel->addObserver(this);
582 //=========================================================================
584 void wxVtkSceneManager::registerController(InteractorStyleMaracas *param) {
585 vtkInteractorStyleBaseView
586 * baseViewControlManager =
587 (vtkInteractorStyleBaseView*) _baseView->GetInteractorStyleBaseView();
588 baseViewControlManager->AddInteractorStyleMaracas(param);
591 //=========================================================================
593 void wxVtkSceneManager::unregisterController(InteractorStyleMaracas *param) {
594 vtkInteractorStyleBaseView
595 * baseViewControlManager =
596 (vtkInteractorStyleBaseView*) _baseView->GetInteractorStyleBaseView();
597 baseViewControlManager->RemoveInteractorStyleMaracas(param);
600 //=========================================================================
602 vtkRenderer* wxVtkSceneManager::getRenderer() {
603 return _baseView->GetRenderer();
606 //=========================================================================
608 vtkRenderWindow* wxVtkSceneManager::getRenderWindow() {
609 return _baseView->GetRenWin();
611 //=========================================================================
614 //=========================================================================
615 int wxVtkSceneManager::GetIndexInSelected(int idControler) {
617 for (int i = 0; i < (int) _selectedObjects.size(); i++) {
618 if (_selectedObjects[i] == idControler) {
625 //=========================================================================
627 void wxVtkSceneManager::update(int idController, int command) {
629 if (command != NO_COMMAND) {
630 if (command == ADD_TO_SELECTED) {
631 //EEDBorrame GObjectController* cont = _controllers[idController];
633 if (GetIndexInSelected(idController) == -1) {
634 _selectedObjects.push_back(idController);
638 // bool foundID=false;
639 // for (int i=0; i<(int)_selectedObjects.size() && foundID==false; i++)
641 // if(_selectedObjects[i]==idController)
648 // _selectedObjects.push_back(idController);
651 } else if (command == REMOVE_FROM_SELECTED) {
652 int index = GetIndexInSelected(idController);
654 _selectedObjects.erase(_selectedObjects.begin() + index);
656 } else if (command == INIT_CREATION_CONTOUR) {
659 typedef std::map<int , GObjectController*>::iterator TIterator ;
662 // Find current item in the controller
663 iter = _controllers.find( idController ) ;
664 iter_end = _controllers.end( ) ;
666 if ( iter != iter_end ) {
667 GObjectController* gobjc = iter->second ;
669 std::string bbtkType = gobjc->getModel( )->getBBTKType( ) ;
670 // And if the item is a port
671 if ( gobjc->getModel( )->getGObjectType( ) == GPORT ) {
672 TIterator c_it = _controllers.begin( ) ;
673 // Go through all componets
674 for ( c_it ; c_it != iter_end ; c_it++ ) {
675 GObjectController* obc = c_it->second ;
676 int obc_type = obc->getModel( )->getGObjectType( ) ;
677 std::string obc_bbtkType = obc->getModel( )->getBBTKType( ) ;
678 // if the component is a port and the type is the same of that selected
679 if ( ( obc_type == GPORT ) && ( obc_bbtkType == bbtkType ) ) {
681 obc->getView( )->setState( POSSIBLE_CONNECTION ) ;
682 //obc->getView( )->setState( HIGHLIGHTED ) ;
690 _worldState = INIT_CREATION_CONTOUR;
691 GObjectController* cont = _controllers[idController];
692 GPortModel* startOutputPort = (GPortModel*) cont->getModel();
694 // The last one is the controller of the connector
695 std::map<int, GObjectController*>::iterator it2;
697 for (it2 = _controllers.begin(); it2 != _controllers.end(); ++it2) {
698 GObjectController *cont = it2->second;
699 if (cont->getGObjectType() == GPORT) {
700 GPortModel* port = (GPortModel*) cont->getModel();
701 if (port->getPortType() == GINPUTPORT) {
702 cont->SetActive(true);
704 cont->getView()->setState(NOTHING_HAPPENS);
705 cont->getModel()->notifyObservers(_idManager);
706 cont->SetActive(false);
709 cont->getView()->setState(NOTHING_HAPPENS);
710 cont->getModel()->notifyObservers(_idManager);
711 cont->SetActive(false);
714 _selectedObjects.clear();
715 _idConnectionInCreation = createGConnector(startOutputPort);
716 } else if (command == FIN_CREATION_CONTOUR && _worldState
717 == INIT_CREATION_CONTOUR) {
718 _worldState = NOTHING_HAPPENS;
719 //int id = _controllers.size()-1;
720 GObjectController *cont = _controllers[_idConnectionInCreation];
721 GConnectorModel *modelContour = (GConnectorModel*) cont->getModel();
722 GObjectController *finPort = _controllers[idController];
724 if (finPort->getGObjectType() == GPORT) {
725 GPortModel* modelPort = (GPortModel*) finPort->getModel();
726 modelContour->setEndPort(modelPort);
729 typedef std::map<int, GObjectController*>::iterator TIterator;
730 TIterator c_it = _controllers.begin();
731 TIterator iter_end = _controllers.end();
732 // Go through all componets
733 for (c_it; c_it != iter_end; c_it++) {
734 GObjectController* obc = c_it->second;
735 int obc_type = obc->getModel()->getGObjectType();
736 int obc_state = obc->getView()->getState();
737 // if the component is a port and the type is the same of that selected
738 if ((obc_type == GPORT) && (obc_state == POSSIBLE_CONNECTION)) {
739 // Return element to neutral state if not selected
740 obc->getView()->setState(NOTHING_HAPPENS);
742 if ((obc_type == GPORT) && (obc_state == SELECTED_POSSIBLE_CONNECTION)) {
743 // Change element to connected state
744 obc->getView()->setState(HIGHLIGHTED);
751 _parent->saveTempDiagram();
754 manualConnectorContourController
756 ((GConnectorController*) cont)->getManualContourController();
757 manualConnectorContourView
759 (manualConnectorContourView*) manCont->GetManualViewBaseContour();
762 std::map<int, GObjectController*>::iterator it2;
764 for (it2 = _controllers.begin(); it2 != _controllers.end(); ++it2) {
765 GObjectController *cont = it2->second;
766 if (cont->getView() != NULL) {
767 cont->getView()->setState(NOTHING_HAPPENS);
768 cont->getModel()->notifyObservers(_idManager);
770 cont->SetActive(true);
778 //=========================================================================
780 bool wxVtkSceneManager::OnMouseMove() {
782 bool okStatusMessage = false;
783 bool okPortMessage = false;
784 wxVTKRenderWindowInteractor *wxVTKiren;
786 = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
787 wxVTKiren->GetEventPosition(X, Y);
789 if (_worldState == DRAG_OBJECTS) {
790 for (int i = 0; i < (int) _selectedObjects.size(); i++) {
791 int id = _selectedObjects[i];
792 GObjectController* cont = _controllers[id];
793 if (_startDragging) {
794 cont->getView()->setStartDragging(true);
796 cont->getView()->moveObject(X, Y);
797 cont->getView()->setState(DRAG);
798 cont->getModel()->notifyObservers(_idManager);
801 std::map<int, GObjectController*>::iterator it;
803 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
804 GObjectController *desc = it->second;
805 if (desc->getGObjectType() == GCONNECTOR) {
806 vtkGConnectorView* vconn = (vtkGConnectorView*) desc->getView();
807 vconn->updateStartEndPoints();
811 _startDragging = false;
813 } else if (_worldState == NOTHING_HAPPENS || _worldState
814 == INIT_CREATION_CONTOUR) {
815 std::map<int, GObjectController*>::iterator it;
817 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
818 GObjectController *desc = it->second;
819 int type = desc->getGObjectType();
820 int state = desc->getView()->getState();
821 desc->getModel()->getCenter(px, py, pz);
823 if (state == HIGHLIGHTED) {
824 okStatusMessage = true;
825 updateStatusBar(desc->getStatusText());
826 if (type == GBLACKBOX) {
827 GBlackBoxModel *mod = (GBlackBoxModel*) desc->getModel();
828 _parent->displayBlackBoxInfo(mod->getBBTKPackage(),
833 okPortMessage = true;
835 _textActor->SetInput(desc->getStatusText().c_str());
836 _textActor->SetScale(0.1);
837 _textActor->SetPosition(px - 25, py + 1, pz + 2);
842 _fillObjectActor->SetScale(1);
843 _fillObjectActor->GetProperty()->SetOpacity(0.50);
844 _fillObjectActor->SetPosition(px, py, 1);
845 _aPolygonMapper->Modified();
848 } // for controllers it
851 if (okStatusMessage == false) {
855 if (okPortMessage == false) {
856 _textActor->SetScale(0.0001);
857 _fillObjectActor->SetScale(0.0001);
862 //=========================================================================
864 bool wxVtkSceneManager::OnLeftButtonDown() {
866 if (_worldState == INIT_CREATION_CONTOUR) {
867 bool isOverPort = false;
868 std::map<int, GObjectController*>::iterator it;
869 for (it = _controllers.begin(); it != _controllers.end() && isOverPort
871 GObjectController *desc = it->second;
872 if (desc->getGObjectType() == GPORT) {
873 GPortModel *portmod = (GPortModel*) desc->getModel();
874 vtkGObjectView *portView = desc->getView();
875 if (portmod->getPortType() == GINPUTPORT
876 && portView->getState() == HIGHLIGHTED) {
880 if ( portmod->getPortType( ) == GINPUTPORT && portView->getState( ) == SELECTED_POSSIBLE_CONNECTION ) {
882 portView->setState( HIGHLIGHTED);
889 if (isOverPort == false) {
891 UnSelectBlackBoxes();
895 } else { //_worldState
897 _worldState = DRAG_OBJECTS;
898 _startDragging = true;
901 _vtkInteractorStyleBaseView->GetInteractor()->GetShiftKey();
903 _vtkInteractorStyleBaseView->GetInteractor()->GetControlKey();
904 ctrlkey = ctrlkey + shiftkey;
906 GObjectController *cont = GetGBlackBoxControlerPointedByMouse();
908 if (GetGBlackBoxControlerPointedByMouse() != NULL) {
909 int state = cont->getView()->getState();
910 if ((ctrlkey == 0) && (state == HIGHLIGHTED)) {
911 UnSelectBlackBoxes();
914 for (int i = 0; i < (int) _selectedObjects.size(); i++) {
915 int id = _selectedObjects[i];
916 GObjectController* cont = _controllers[id];
917 cont->getView()->setState(DRAG);
918 cont->getModel()->notifyObservers(_idManager);
921 } // if _selectedObjects.size
927 //=========================================================================
929 bool wxVtkSceneManager::OnLeftButtonUp() {
930 if (_worldState == DRAG_OBJECTS) {
931 _worldState = NOTHING_HAPPENS;
933 for (int i = 0; i < (int) _selectedObjects.size(); i++) {
934 int id = _selectedObjects[i];
935 GObjectController* cont = _controllers[id];
936 cont->getView()->setState(SELECTED);
937 cont->getModel()->notifyObservers(_idManager);
943 //=========================================================================
944 void wxVtkSceneManager::CancelConnection() {
945 if (_worldState == INIT_CREATION_CONTOUR) {
946 _worldState = NOTHING_HAPPENS;
947 //int lastId = _controllers.size()-1;
949 GConnectorController *connector =
950 (GConnectorController*) _controllers[_idConnectionInCreation];
951 connector->removeFromScene();
952 unregisterController(connector);
953 _controllers.erase(_idConnectionInCreation);
955 std::map<int, GObjectController*>::iterator it;
956 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
957 GObjectController *desc = it->second;
958 desc->SetActive(true);
959 desc->getView()->setState(NOTHING_HAPPENS);
960 desc->getModel()->notifyObservers(_idManager);
965 //=========================================================================
967 bool wxVtkSceneManager::OnRightButtonUp() {
968 if (_worldState == INIT_CREATION_CONTOUR) {
971 UnSelectBlackBoxes();
977 bool wxVtkSceneManager::OnMiddleButtonDown() {
980 this->_vtkInteractorStyleBaseView->StartPan();
985 bool wxVtkSceneManager::OnMiddleButtonUp() {
988 this->_vtkInteractorStyleBaseView->EndPan();
995 //=========================================================================
997 GObjectController *wxVtkSceneManager::GetGBlackBoxControlerPointedByMouse() {
998 GObjectController *result = NULL;
1000 wxVTKRenderWindowInteractor *wxVTKiren;
1002 = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
1003 wxVTKiren->GetEventPosition(X, Y);
1005 std::map<int, GObjectController*>::iterator it;
1007 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
1008 GObjectController *cont = it->second;
1009 int type = cont->getGObjectType();
1011 if (cont->getView()->isPointInside(X, Y) == true) {
1012 if (type == GBLACKBOX) {
1015 } // if isPointInside
1020 //=========================================================================
1021 void wxVtkSceneManager::UnSelectBlackBoxes() {
1022 for (int i = 0; i < (int) _selectedObjects.size(); i++) {
1023 int id = _selectedObjects[i];
1024 GObjectController* control = _controllers[id];
1025 control->getView()->setState(NOTHING_HAPPENS);
1026 }// for _selectedObjects
1027 _selectedObjects.clear();
1030 //=========================================================================
1031 bool wxVtkSceneManager::OnLeftDClick() {
1032 GObjectController *cont = GetGBlackBoxControlerPointedByMouse();
1034 UnSelectBlackBoxes();
1035 _parent->editBlackBox((GBlackBoxModel*) cont->getModel());
1041 wxVTKRenderWindowInteractor *wxVTKiren;
1042 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
1043 wxVTKiren->GetEventPosition(X,Y);
1045 std::map<int, GObjectController*>::iterator it;
1047 bool clickOnObject = false;
1049 for(it = _controllers.begin(); it != _controllers.end() && clickOnObject==false; ++it)
1051 GObjectController *cont = it->second;
1052 int type = cont->getGObjectType();
1054 if(cont->getView()->isPointInside(X,Y))
1058 for (int i=0; i< (int)_selectedObjects.size(); i++)
1060 int id = _selectedObjects[i];
1061 GObjectController* control = _controllers[id];
1062 control->getView()->setState(NOTHING_HAPPENS);
1064 _selectedObjects.clear();
1066 GBlackBoxModel *bbmodel = (GBlackBoxModel*)cont->getModel();
1067 _parent->editBlackBox(bbmodel);
1069 clickOnObject = true;
1073 if(clickOnObject==false)
1075 //_parent->editDiagramParameters(this);
1081 //=========================================================================
1083 bool wxVtkSceneManager::OnChar() {
1084 char keyCode = _vtkInteractorStyleBaseView->GetInteractor()-> GetKeyCode();
1085 int ctrlkey = _vtkInteractorStyleBaseView->GetInteractor()->GetControlKey();
1087 // KeyCode 127 : Delete Key
1088 // KeyCode 8 : Backspace Key
1089 if (keyCode == 8 || keyCode == 127) {
1090 if (_selectedObjects.size() > 0) {
1091 for (int i = 0; i < (int) _selectedObjects.size(); i++) {
1092 int id = _selectedObjects[i];
1093 std::map<int, GObjectController*>::iterator it;
1094 it = _controllers.find(id);
1095 if (it != _controllers.end()) {
1099 _selectedObjects.clear();
1105 if(_selectedObjects.size()){
1106 std::cout<<"objects to copy :";
1107 for(int i=0;i<_selectedObjects.size();i++){
1108 std::cout<<_selectedObjects.at(i)<<" ";
1110 DuplicateObjects(getSelectedObjects());
1112 std::cout<<"No objects to copy\n";
1119 //=========================================================================
1121 void wxVtkSceneManager::AddControlerToBeRemove(
1122 std::vector<int> *controllersToRemove, int id) {
1126 for (i = 0; i < (int) controllersToRemove->size(); i++) {
1127 if (id == (*controllersToRemove)[i]) {
1133 controllersToRemove->push_back(id);
1138 //=========================================================================
1140 void wxVtkSceneManager::deleteObject(int id) {
1141 GObjectController *control = _controllers[id];
1142 std::vector<int> controllersToRemove;
1144 if (control->getGObjectType() == GBLACKBOX || control->getGObjectType()
1145 == GCOMPLEXINPUTPORT || control->getGObjectType()
1146 == GCOMPLEXOUTPUTPORT) {
1147 GBoxModel *bbmod = (GBoxModel*) control->getModel();
1148 std::vector<GPortModel*> inputs = bbmod->getInputPorts();
1150 bool boxConnected = false;
1152 // Add box input controllers to be removed
1153 for (int i = 0; i < (int) inputs.size(); i++) {
1154 AddControlerToBeRemove(&controllersToRemove,
1155 inputs[i]->getObjectId());
1156 if (inputs[i]->isConnected()) {
1157 boxConnected = true;
1161 std::vector<GPortModel*> outputs = bbmod->getOutputPorts();
1163 // Add box output controllers to be removed
1164 for (int i = 0; i < (int) outputs.size(); i++) {
1165 AddControlerToBeRemove(&controllersToRemove,
1166 outputs[i]->getObjectId());
1167 if (outputs[i]->isConnected()) {
1168 boxConnected = true;
1172 // Add connection controllers to be removed
1173 std::map<int, GObjectController*>::iterator it;
1174 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
1175 GObjectController *cont = it->second;
1176 int type = cont->getGObjectType();
1177 if (type == GCONNECTOR) {
1178 GConnectorModel *conMod = (GConnectorModel*) cont->getModel();
1179 if (conMod->getStartPort() != NULL
1180 && conMod->getStartPort()->getParentBox()->getObjectId()
1181 == bbmod->getObjectId()) {
1182 AddControlerToBeRemove(&controllersToRemove,
1183 conMod->getObjectId());
1185 if (conMod->getEndPort() != NULL
1186 && conMod->getEndPort()->getParentBox()->getObjectId()
1187 == bbmod->getObjectId()) {
1188 AddControlerToBeRemove(&controllersToRemove,
1189 conMod->getObjectId());
1194 // Add box controller to be removed
1195 AddControlerToBeRemove(&controllersToRemove, bbmod->getObjectId());
1196 } else if (control->getGObjectType() == GCONNECTOR) {
1197 GConnectorModel *conMod = (GConnectorModel*) control->getModel();
1198 AddControlerToBeRemove(&controllersToRemove, conMod->getObjectId());
1201 std::map<int, GObjectController*>::iterator it;
1203 for (int i = 0; i < (int) controllersToRemove.size(); i++) {
1204 int key = controllersToRemove[i];
1205 it = _controllers.find(key);
1206 GObjectController *cont = _controllers[key];
1208 cont->removeFromScene();
1209 unregisterController((InteractorStyleMaracas*) cont);
1210 _controllers.erase(it);
1213 _parent->saveTempDiagram();
1216 //=========================================================================
1218 void wxVtkSceneManager::displayBlackBoxInfo(std::string packageName,
1219 std::string boxName) {
1220 _parent->displayBlackBoxInfo(packageName, boxName);
1223 //=========================================================================
1225 void wxVtkSceneManager::updateStatusBar(std::string textStatus) {
1226 _parent->updateStatusBar(textStatus);
1229 //=========================================================================
1230 std::string wxVtkSceneManager::LineNumber(bool withLineNumber, int &value) {
1231 std::string result = "";
1232 if (withLineNumber == true) {
1234 stringstream StrStream;
1236 std::string strValue = StrStream.str();
1239 } else if (value < 100) {
1243 result += strValue + ": ";
1247 //=========================================================================
1249 bool wxVtkSceneManager::MakeBoxExecutable() {
1250 std::map<int, GObjectController*> selected = getSelectedObjects();
1251 if( selected.empty() )
1254 std::map<int, GObjectController*>::iterator it;
1255 for (it = selected.begin(); it != selected.end(); ++it) {
1256 GObjectController* lastSelected = it->second;
1258 vtkGObjectView* view = (vtkGObjectView*) lastSelected->getView();
1259 GBlackBoxModel *bbmodel =
1260 (GBlackBoxModel*) lastSelected->getModel();
1261 view->setState(HIGHLIGHTED);
1262 if (bbmodel->isExecutable()) {
1263 bbmodel->setExecutable(false);
1265 bbmodel->setExecutable(true);
1267 bbmodel->notifyObservers(lastSelected->getId());
1275 //=========================================================================
1277 std::string wxVtkSceneManager::getDiagramBBS(bool wln) {
1278 bool existsExec = false;
1280 std::vector<std::string> packages;
1281 std::vector<int> boxes;
1282 std::vector<int> connections;
1283 std::vector<int> execBoxes;
1285 std::map<int, GObjectController*>::iterator it;
1287 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
1288 GObjectController *desc = it->second;
1289 int type = desc->getGObjectType();
1291 if (type == GBLACKBOX) {
1292 GBlackBoxModel *mod = (GBlackBoxModel*) desc->getModel();
1294 std::string pkg = mod->getBBTKPackage();
1295 bool existsPkg = false;
1296 for (int t = 0; t < (int) packages.size() && existsPkg == false; t++) {
1297 if (packages[t] == pkg) {
1302 packages.push_back(pkg);
1305 boxes.push_back(it->first);
1306 if (mod->isExecutable()) {
1307 execBoxes.push_back(it->first);
1310 } else if (type == GCONNECTOR) {
1311 connections.push_back(it->first);
1316 std::string script = "";
1317 script += LineNumber(wln, lnNmbr) + "# BBTK GEditor Script\n";
1318 script += LineNumber(wln, lnNmbr) + "# ----------------------\n";
1319 script += LineNumber(wln, lnNmbr) + "\n";
1321 script += LineNumber(wln, lnNmbr) + "include std\n"; // EED
1322 script += LineNumber(wln, lnNmbr) + "include itkvtk\n"; // EED
1324 for (i = 0; i < (int) packages.size(); i++) {
1325 script += LineNumber(wln, lnNmbr);
1326 script += "include ";
1327 script += packages[i];
1331 script += LineNumber(wln, lnNmbr);
1336 script += LineNumber(wln, lnNmbr);
1337 script += "author \"";
1341 script += LineNumber(wln, lnNmbr);
1342 script += "description \"";
1343 script += _Description;
1346 script += LineNumber(wln, lnNmbr);
1347 script += "category \"";
1348 script += _Category;
1351 script += LineNumber(wln, lnNmbr);
1354 // script+="include std\n"; // JPR
1356 for (i = 0; i < (int) boxes.size(); i++) {
1357 script += LineNumber(wln, lnNmbr);
1360 GObjectController *control = _controllers[id];
1361 GBlackBoxModel *model = (GBlackBoxModel*) control->getModel();
1363 script += model->getBBTKType();
1365 script += model->getBBTKName();
1368 std::vector<GPortModel*> inputs = model->getInputPorts();
1369 for (int j = 0; j < (int) inputs.size(); j++) {
1370 GPortModel* inputPort = inputs[j];
1371 if (inputPort->isValueSet()) {
1372 script += LineNumber(wln, lnNmbr);
1374 script += model->getBBTKName();
1376 script += inputPort->getBBTKName();
1378 script += inputPort->getValue();
1383 script += LineNumber(wln, lnNmbr);
1388 script += LineNumber(wln, lnNmbr);
1391 for (i = 0; i < (int) connections.size(); i++) {
1392 script += LineNumber(wln, lnNmbr);
1393 script += "connect ";
1394 int id = connections[i];
1395 GObjectController *control = _controllers[id];
1396 GConnectorModel *model = (GConnectorModel*) control->getModel();
1398 //Start Connection info
1399 GPortModel *start = model->getStartPort();
1400 script += start->getParentBox()->getBBTKName();
1402 script += start->getBBTKName();
1406 //End Connection info
1407 GPortModel *end = model->getEndPort();
1408 script += end->getParentBox()->getBBTKName();
1410 script += end->getBBTKName();
1415 script += LineNumber(wln, lnNmbr);
1417 for (i = 0; i < (int) execBoxes.size(); i++) {
1418 script += LineNumber(wln, lnNmbr);
1420 int id = execBoxes[i];
1421 GObjectController *control = _controllers[id];
1422 GBlackBoxModel *model = (GBlackBoxModel*) control->getModel();
1424 script += model->getBBTKName();
1433 //=========================================================================
1435 std::string wxVtkSceneManager::saveComplexBoxBBS() {
1436 std::vector<std::string> packages;
1437 std::vector<int> boxes;
1438 std::vector<int> connections;
1439 std::vector<int> execBoxes;
1441 std::map<int, GObjectController*>::iterator it;
1443 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
1444 GObjectController *desc = it->second;
1445 int type = desc->getGObjectType();
1447 if (type == GBLACKBOX) {
1448 GBlackBoxModel *mod = (GBlackBoxModel*) desc->getModel();
1450 std::string pkg = mod->getBBTKPackage();
1451 bool existsPkg = false;
1452 for (int t = 0; t < (int) packages.size() && existsPkg == false; t++) {
1453 if (packages[t] == pkg) {
1458 packages.push_back(pkg);
1461 boxes.push_back(it->first);
1462 if (mod->isExecutable()) {
1463 execBoxes.push_back(it->first);
1465 } else if (type == GCONNECTOR) {
1466 connections.push_back(it->first);
1470 std::string script = "";
1472 script += "include std\n"; // EED
1473 script += "include itkvtk\n"; // EED
1475 for (i = 0; i < (int) packages.size(); i++) {
1476 script += "include ";
1477 script += packages[i];
1482 // Definition of a complex box
1483 script += "define ";
1484 script += _cbName + " " + _cbPackageName;
1488 script += "author \"";
1492 script += "description \"";
1493 script += _Description;
1497 script += "category \"";
1498 script += _Category;
1503 for (i = 0; i < (int) boxes.size(); i++) {
1506 GObjectController *control = _controllers[id];
1507 GBlackBoxModel *model = (GBlackBoxModel*) control->getModel();
1509 script += model->getBBTKType();
1511 script += model->getBBTKName();
1514 std::vector<GPortModel*> inputs = model->getInputPorts();
1515 for (int j = 0; j < (int) inputs.size(); j++) {
1516 GPortModel* inputPort = inputs[j];
1517 if (inputPort->isValueSet()) {
1519 script += model->getBBTKName();
1521 script += inputPort->getBBTKName();
1523 script += inputPort->getValue();
1531 // Create connections in the script. If the connection is made with a complex port, it is created the input or output
1533 std::string complexInputs = "";
1534 std::string complexOutputs = "";
1537 for (i = 0; i < (int) connections.size(); i++) {
1538 int id = connections[i];
1539 GObjectController *control = _controllers[id];
1540 GConnectorModel *model = (GConnectorModel*) control->getModel();
1543 GPortModel *start = model->getStartPort();
1544 GBoxModel *startBox = start->getParentBox();
1546 GPortModel *end = model->getEndPort();
1547 GBoxModel *endBox = end->getParentBox();
1549 if (startBox->getGObjectType() == GCOMPLEXINPUTPORT) {
1550 complexInputs += "input ";
1551 complexInputs += startBox->getBBTKName();
1553 complexInputs += " ";
1554 complexInputs += endBox->getBBTKName();
1555 complexInputs += ".";
1556 complexInputs += end->getBBTKName();
1558 complexInputs += " ";
1559 complexInputs += "\" \"";
1561 complexInputs += "\n";
1562 } else if (endBox->getGObjectType() == GCOMPLEXOUTPUTPORT) {
1563 complexOutputs += "output ";
1564 complexOutputs += endBox->getBBTKName();
1566 complexOutputs += " ";
1567 complexOutputs += startBox->getBBTKName();
1568 complexOutputs += ".";
1569 complexOutputs += start->getBBTKName();
1571 complexOutputs += " ";
1572 complexOutputs += "\" \"";
1574 complexOutputs += "\n";
1576 script += "connect ";
1577 script += startBox->getBBTKName();
1579 script += start->getBBTKName();
1583 //End Connection info
1584 script += endBox->getBBTKName();
1586 script += end->getBBTKName();
1594 for (i = 0; i < (int) execBoxes.size(); i++) {
1596 int id = execBoxes[i];
1597 GObjectController *control = _controllers[id];
1598 GBlackBoxModel *model = (GBlackBoxModel*) control->getModel();
1600 script += model->getBBTKName();
1605 script += "# Complex input ports\n";
1606 script += complexInputs;
1609 script += "# Complex output ports\n";
1610 script += complexOutputs;
1613 script += "endefine";
1619 //=========================================================================
1621 void wxVtkSceneManager::deleteAllBoxes() {
1622 std::map<int, GObjectController*>::iterator it;
1623 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
1624 GObjectController *cont = it->second;
1625 cont->removeFromScene();
1626 unregisterController((InteractorStyleMaracas*) cont);
1628 _selectedObjects.clear();
1629 _controllers.clear();
1633 //=========================================================================
1636 void wxVtkSceneManager::refresh() {
1637 _baseView->Refresh();
1639 //=========================================================================
1641 void wxVtkSceneManager::refreshScene() {
1642 _baseView->RefreshView();
1645 //=========================================================================
1647 void wxVtkSceneManager::centerView() {
1649 _baseView->GetRenderer()->GetActiveCamera()->GetFocalPoint(temp);
1650 _baseView->GetRenderer()->GetActiveCamera()->SetFocalPoint(0, 0, temp[2]);
1651 _baseView->GetRenderer()->GetActiveCamera()->GetPosition(temp);
1652 _baseView->GetRenderer()->GetActiveCamera()->SetPosition(0, 0, temp[2]);
1653 _baseView->RefreshView();
1657 //=========================================================================
1659 void wxVtkSceneManager::saveDiagram(std::string &content) {
1662 content += "CATEGORY:";
1663 content += GetCategory();
1666 content += "DESCRIPTION:";
1667 content += GetDescription();
1670 content += "AUTHOR:";
1671 content += GetAuthor();
1674 //Print info IF COMPLEX BOX
1675 content += "COMPLEXBOX:";
1676 if (_isComplexBox) {
1677 content += "TRUE\n";
1679 content += "COMPLEXBOXNAME:";
1680 content += GetCbName();
1683 content += "PACKAGENAME:";
1684 content += GetCbPackageName();
1687 //Print info complex input ports
1688 std::vector<int> inputs = getComplexInputPorts();
1689 int insize = inputs.size();
1690 content += "COMPLEXINPUTS:";
1691 sprintf(buffer, "%d", insize);
1695 for (int i = 0; i < insize; i++) {
1697 GObjectController *cont = _controllers[id];
1698 cont->getModel()->save(content);
1701 //Print info complex output ports
1702 std::vector<int> outputs = getComplexOutputPorts();
1703 int outsize = outputs.size();
1704 content += "COMPLEXOUTPUTS:";
1705 sprintf(buffer, "%d", outsize);
1709 for (int i = 0; i < outsize; i++) {
1710 int id = outputs[i];
1711 GObjectController *cont = _controllers[id];
1712 cont->getModel()->save(content);
1716 content += "FALSE\n";
1720 std::vector<int> boxes = getBlackBoxes();
1721 int bsize = boxes.size();
1722 content += "BOXES:";
1723 sprintf(buffer, "%d", bsize);
1727 for (int i = 0; i < bsize; i++) {
1729 GObjectController *cont = _controllers[id];
1730 cont->getModel()->save(content);
1734 std::vector<int> connections = getConnections();
1735 int csize = connections.size();
1736 content += "CONNECTIONS:";
1737 sprintf(buffer, "%d", csize);
1741 for (int i = 0; i < csize; i++) {
1742 int id = connections[i];
1743 GObjectController *cont = _controllers[id];
1744 cont->getModel()->save(content);
1749 //=========================================================================
1751 void wxVtkSceneManager::loadDiagram(stringstream &inputStream) {
1753 std::string version = "<void>";
1754 std::string line = "";
1755 char delims[] = ":";
1756 char *result = NULL;
1758 getline(inputStream, line);
1761 while (!inputStream.eof()) {
1762 if (line == "" || line[0] == '#') {
1763 getline(inputStream, line);
1764 if (line == "# - BBTKGEditor v 1.0 BBG BlackBox Diagram file") {
1765 version = line.substr(18, 3);
1767 if (line == "# - BBTKGEditor v 1.1 BBG BlackBox Diagram file") {
1768 version = line.substr(18, 3);
1770 if (line == "# - BBTKGEditor v 1.2 BBG BlackBox Diagram file") {
1771 version = line.substr(18, 3);
1773 } else if (line == "APP_START") {
1779 printf("EED wxVtkSceneManager::loadDiagram version=%s\n", version.c_str());
1783 if ((version != "1.0") && (version != "1.1")) {
1784 getline(inputStream, line);//CATEGORY:<category of the box>
1785 char categoryTmp[30];
1786 strcpy(categoryTmp, line.c_str());
1787 result = strtok(categoryTmp, delims);
1788 result = strtok(NULL, delims);
1789 SetCategory(result);
1791 getline(inputStream, line);//DESCRIPTION:<description of the box>
1792 char descriptionTmp[1024];
1793 strcpy(descriptionTmp, line.c_str());
1794 result = strtok(descriptionTmp, delims);
1795 result = strtok(NULL, delims);
1796 SetDescription(result);
1798 getline(inputStream, line);//AUTHOR:<author>
1799 char authorTmp[255];
1800 strcpy(authorTmp, line.c_str());
1801 result = strtok(authorTmp, delims);
1802 result = strtok(NULL, delims);
1807 getline(inputStream, line);//COMPLEX_BOX:TRUE|FALSE
1808 char complexTmp[30];
1809 strcpy(complexTmp, line.c_str());
1810 result = strtok(complexTmp, delims);
1811 result = strtok(NULL, delims);
1812 std::string isComplexBox(result);
1814 if (isComplexBox == "TRUE") {
1815 _isComplexBox = true;
1817 if ((version != "1.0") && (version != "1.1")) {
1818 getline(inputStream, line);//COMPLEXNAME:<name of the complex box>
1819 char complexboxnameTmp[255];
1820 strcpy(complexboxnameTmp, line.c_str());
1821 result = strtok(complexboxnameTmp, delims);
1822 result = strtok(NULL, delims);
1825 getline(inputStream, line);//PACKAGENAME:<name of the package of the box>
1826 char packagenameTmp[255];
1827 strcpy(packagenameTmp, line.c_str());
1828 result = strtok(packagenameTmp, delims);
1829 result = strtok(NULL, delims);
1830 SetCbPackageName(result);
1833 //-----------------------
1834 //- COMPLEX INPUT PORTS
1835 //-----------------------
1836 getline(inputStream, line);//COMPLEXINPUTS:num
1838 strcpy(inputs, line.c_str());
1839 result = strtok(inputs, delims);
1840 result = strtok(NULL, delims);
1843 std::istringstream inps(result);
1846 for (int i = 0; i < numInputs; i++) {
1848 getline(inputStream, line);//COMPLEX_PORT
1849 getline(inputStream, line);//name
1850 std::string inputPortName(line);
1853 getline(inputStream, line);//xInic:yInic:zInic
1855 strcpy(coord, line.c_str());
1856 result = strtok(coord, delims);//xInic
1857 std::string xInic(result);
1858 result = strtok(NULL, delims);//yInic
1859 std::string yInic(result);
1860 result = strtok(NULL, delims);//zInic
1861 std::string zInic(result);
1863 double xIn, yIn, zIn;
1864 std::istringstream xSt(xInic);
1866 std::istringstream ySt(yInic);
1868 std::istringstream zSt(zInic);
1871 getline(inputStream, line);//FIN_COMPLEX_PORT
1873 configGComBoxInputOutputPort(true, inputPortName, xIn, yIn, zIn);
1875 } // for input complex box
1878 //-----------------------
1879 //- COMPLEX OUTPUT PORTS
1880 //-----------------------
1882 getline(inputStream, line);//COMPLEXOUTPUTS:num
1884 strcpy(outputs, line.c_str());
1885 result = strtok(outputs, delims);
1886 result = strtok(NULL, delims);
1889 std::istringstream outps(result);
1890 outps >> numOutputs;
1892 for (int i = 0; i < numOutputs; i++) {
1894 getline(inputStream, line);//COMPLEX_PORT
1895 getline(inputStream, line);//name
1896 std::string outputPortName(line);
1899 getline(inputStream, line);//xInic:yInic:zInic
1901 strcpy(coord, line.c_str());
1902 result = strtok(coord, delims);//xInic
1903 std::string xInic(result);
1904 result = strtok(NULL, delims);//yInic
1905 std::string yInic(result);
1906 result = strtok(NULL, delims);//zInic
1907 std::string zInic(result);
1909 double xIn, yIn, zIn;
1910 std::istringstream xSt(xInic);
1912 std::istringstream ySt(yInic);
1914 std::istringstream zSt(zInic);
1917 getline(inputStream, line);//FIN_COMPLEX_PORT
1919 configGComBoxInputOutputPort(false, outputPortName, xIn, yIn,
1922 } // for output complex box
1927 getline(inputStream, line);//BOXES:num
1929 strcpy(boxes, line.c_str());
1930 result = strtok(boxes, delims);
1931 result = strtok(NULL, delims);
1934 std::istringstream is(result);
1937 for (int i = 0; i < numBoxes; i++) {
1939 getline(inputStream, line);//BOX
1940 getline(inputStream, line);//package:type:name
1942 strcpy(box, line.c_str());
1943 result = strtok(box, delims);//package
1944 std::string package(result);
1945 result = strtok(NULL, delims);//type
1946 std::string type(result);
1947 result = strtok(NULL, delims);//name
1948 std::string name(result);
1950 getline(inputStream, line);//ISEXEC:TRUE|FALSE
1952 strcpy(exec, line.c_str());
1953 result = strtok(exec, delims);//ISEXEC
1954 result = strtok(NULL, delims);//TRUE|FALSE
1955 std::string isExec(result);
1958 getline(inputStream, line);//xInic:yInic:zInic
1960 strcpy(coord, line.c_str());
1961 result = strtok(coord, delims);//xInic
1962 std::string xInic(result);
1963 result = strtok(NULL, delims);//yInic
1964 std::string yInic(result);
1965 result = strtok(NULL, delims);//zInic
1966 std::string zInic(result);
1968 double xIn, yIn, zIn;
1969 std::istringstream xSt(xInic);
1971 std::istringstream ySt(yInic);
1973 std::istringstream zSt(zInic);
1977 getline(inputStream, line);//xEnd:yEnd:zEnd
1978 strcpy(coord, line.c_str());
1979 result = strtok(coord, delims);//xEnd
1980 std::string xEnd(result);
1981 result = strtok(NULL, delims);//yEnd
1982 std::string yEnd(result);
1983 result = strtok(NULL, delims);//zEnd
1984 std::string zEnd(result);
1986 double xEn, yEn, zEn;
1987 std::istringstream xEt(xEnd);
1989 std::istringstream yEt(yEnd);
1991 std::istringstream zEt(zEnd);
1994 bool boxExecutable = false;
1995 if (isExec == "TRUE") {
1996 boxExecutable = true;
1999 int idBox = createGBlackBox(xIn, yIn, package, type);
2000 configGBlackBox(idBox, xIn, yIn, zIn, name, boxExecutable, xEn,
2003 GObjectController *cont = _controllers[idBox];
2004 GBlackBoxModel *bbmod = (GBlackBoxModel*) cont->getModel();
2007 getline(inputStream, line);//PORT o FIN_BOX
2008 std::string port = line.substr(0, 4);
2009 while (port == "PORT") {
2010 getline(inputStream, line);//name:value
2012 strcpy(poort, line.c_str());
2013 result = strtok(poort, delims);//name
2014 std::string name(result);
2015 result = strtok(NULL, delims);//value
2016 std::string value(result);
2018 bbmod->setValueToInput(name, value);
2020 getline(inputStream, line);//PORT o FIN_BOX
2021 port = line.substr(0, 4);
2024 //EED bbmod->notifyObservers(_idManager);
2029 getline(inputStream, line);//CONNECTIONS:num
2031 strcpy(conns, line.c_str());
2032 result = strtok(conns, delims);
2033 result = strtok(NULL, delims);
2036 std::istringstream isCons(result);
2039 for (int i = 0; i < numConns; i++) {
2041 getline(inputStream, line);//CONNECTION
2042 getline(inputStream, line);//Startbox.PortName:EndBox.PortName
2045 strcpy(connec, line.c_str());
2046 result = strtok(connec, delims);
2047 std::string nameStartBox(result);
2048 result = strtok(NULL, delims);
2049 std::string nameStartPort(result);
2050 result = strtok(NULL, delims);
2051 std::string nameEndBox(result);
2052 result = strtok(NULL, delims);
2053 std::string nameEndPort(result);
2055 int idCon = configGConnetion(nameStartBox, nameStartPort,
2056 nameEndBox, nameEndPort);
2058 if (version != "1.0") {
2059 //Readding control points of the manualContour
2061 GConnectorController *tempp =
2062 (GConnectorController*) _controllers[idCon];
2063 GConnectorModel *conMod = (GConnectorModel*) tempp->getModel();
2064 vtkGConnectorView *conView =
2065 (vtkGConnectorView*) tempp->getView();
2066 getline(inputStream, line); //NumberOfControlPoints:##
2067 strcpy(conns, line.c_str());
2068 result = strtok(conns, delims);
2069 result = strtok(NULL, delims);
2071 int numberOfControlPoints;
2072 std::istringstream isCons(result);
2073 isCons >> numberOfControlPoints;
2075 for (int ii = 0; ii < numberOfControlPoints; ii++) {
2076 getline(inputStream, line); //XX:YY:ZZ
2078 strcpy(connec, line.c_str());
2081 result = strtok(connec, delims);
2082 std::istringstream isPointX(result);
2084 result = strtok(NULL, delims);
2085 std::istringstream isPointY(result);
2087 result = strtok(NULL, delims);
2088 std::istringstream isPointZ(result);
2091 conMod->getManualContourModel()->InsertPoint_id(ii + 1, px,
2093 conView->getManualContourView()->AddPoint();
2103 //=========================================================================
2106 //=========================================================================
2107 void wxVtkSceneManager::configGComBoxInputOutputPort(bool inputoutput,
2108 std::string portName, double xIn, double yIn, double zIn) {
2110 if (inputoutput == true) {
2111 idPort = createGComplexBoxInputPort(portName);
2113 idPort = createGComplexBoxOutputPort(portName);
2115 GObjectController *cont = _controllers[idPort];
2116 GBoxModel *cbmod = (GBoxModel*) cont->getModel();
2117 cbmod->setInicPoint(xIn, yIn, zIn);
2118 cbmod->notifyObservers(_idManager);
2120 //=========================================================================
2123 //=========================================================================
2124 GBoxModel* wxVtkSceneManager::findGBox(std::string boxname) {
2128 GBoxModel *boxModel = NULL;
2129 std::vector<int> lstB = getBlackBoxes();
2130 for (j = 0; j < (int) lstB.size(); j++) {
2132 bMod = (GBoxModel*) _controllers[idB]->getModel();
2133 if (_controllers[idB]->getModel()->getBBTKName() == boxname) {
2138 if ((_isComplexBox) && (boxModel == NULL)) {
2139 std::vector<int> lstInputs = getComplexInputPorts();
2140 for (j = 0; j < (int) lstInputs.size(); j++) {
2142 bMod = (GBoxModel*) _controllers[idB]->getModel();
2143 if (_controllers[idB]->getModel()->getBBTKName() == boxname) {
2148 std::vector<int> lstOutputs = getComplexOutputPorts();
2149 for (j = 0; j < (int) lstOutputs.size(); j++) {
2150 int idB = lstOutputs[j];
2151 bMod = (GBoxModel*) _controllers[idB]->getModel();
2152 if (_controllers[idB]->getModel()->getBBTKName() == boxname) {
2162 //=========================================================================
2165 int wxVtkSceneManager::configGConnetion(std::string nameStartBox,
2166 std::string nameStartPort, std::string nameEndBox,
2167 std::string nameEndPort) {
2169 GBoxModel *boxModel;
2170 GPortModel *startP = NULL;
2171 GPortModel *endP = NULL;
2173 boxModel = findGBox(nameStartBox);
2174 if (boxModel != NULL) {
2175 startP = boxModel->getOutputPort(nameStartPort);
2178 boxModel = findGBox(nameEndBox);
2179 if (boxModel != NULL) {
2180 endP = boxModel->getInputPort(nameEndPort);
2184 int idCon = createGConnector(startP);
2185 _worldState = NOTHING_HAPPENS;
2186 GConnectorController *tempp = (GConnectorController*) _controllers[idCon];
2188 GConnectorModel *conMod = (GConnectorModel*) tempp->getModel();
2189 vtkGConnectorView *conView = (vtkGConnectorView*) tempp->getView();
2190 tempp->endContourCreation();
2191 conMod->setEndPort(endP);
2192 conView->updateStartEndPoints();
2196 //=========================================================================
2198 bool wxVtkSceneManager::boxExist(std::string boxname) {
2200 std::map<int, GObjectController*>::iterator it;
2201 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2202 GObjectController *cont = it->second;
2203 if (cont->getModel()->getBBTKName() == boxname) {
2210 //=========================================================================
2212 std::vector<int> wxVtkSceneManager::getBlackBoxes() {
2213 std::vector<int> vect;
2214 std::map<int, GObjectController*>::iterator it;
2215 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2216 GObjectController *cont = it->second;
2217 if (cont->getGObjectType() == GBLACKBOX) {
2218 vect.push_back(cont->getId());
2224 //=========================================================================
2226 std::vector<int> wxVtkSceneManager::getComplexInputPorts() {
2227 std::vector<int> vect;
2228 std::map<int, GObjectController*>::iterator it;
2229 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2230 GObjectController *cont = it->second;
2231 if (cont->getGObjectType() == GCOMPLEXINPUTPORT) {
2232 vect.push_back(cont->getId());
2238 //=========================================================================
2240 std::vector<int> wxVtkSceneManager::getComplexOutputPorts() {
2241 std::vector<int> vect;
2242 std::map<int, GObjectController*>::iterator it;
2243 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2244 GObjectController *cont = it->second;
2245 if (cont->getGObjectType() == GCOMPLEXOUTPUTPORT) {
2246 vect.push_back(cont->getId());
2252 //=========================================================================
2254 std::vector<int> wxVtkSceneManager::getConnections() {
2255 std::vector<int> vect;
2256 std::map<int, GObjectController*>::iterator it;
2257 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2258 GObjectController *cont = it->second;
2259 if (cont->getGObjectType() == GCONNECTOR) {
2260 vect.push_back(cont->getId());
2266 //=========================================================================
2268 bool wxVtkSceneManager::isComplexBox() {
2269 return _isComplexBox;
2272 //=========================================================================
2274 void wxVtkSceneManager::setComplexBox(bool val) {
2275 _isComplexBox = val;
2278 //=========================================================================
2280 int wxVtkSceneManager::addObjectController(GObjectController* objController) {
2281 //Register the controller of the new object
2282 registerController((InteractorStyleMaracas*) objController);
2283 //Add the object to the objects list
2284 int newId = _contLastId;//_controllers.size();
2285 objController->setId(newId);
2286 _controllers[newId] = objController;
2288 << "DFCH: int wxVtkSceneManager::addObjectController(GObjectController* objController) ---- _contLastId = "
2289 << _contLastId << std::endl;
2294 //=========================================================================
2296 void wxVtkSceneManager::DuplicateObjects(std::map<int, GObjectController*> objectsMap) {
2298 std::map<int, int> oldIdNewIdBoxes;
2299 std::vector<int> connections;
2301 std::vector<int> newBoxesID;
2303 std::map<int, GObjectController*>::iterator it;
2304 for (it = objectsMap.begin(); it != objectsMap.end(); ++it) {
2305 GObjectController *cont = it->second;
2306 int type = cont->getGObjectType();
2308 if (type == GBLACKBOX) {
2310 double xInic, yInic, zInic;
2311 GBlackBoxModel* copyBox = (GBlackBoxModel*) cont->getModel();
2312 copyBox->getInicPoint(xInic, yInic, zInic);
2313 int idBox = createGBlackBox(0, 0, copyBox->getBBTKPackage(),
2314 copyBox->getBBTKType());
2316 int idcB = copyBox->getObjectId();
2317 oldIdNewIdBoxes[idcB] = idBox;
2318 cont = _controllers[idBox];
2319 GBlackBoxModel* newbox = (GBlackBoxModel*) cont->getModel();
2320 newbox->setInicPoint(xInic, yInic, zInic);
2321 int num = newbox->getNumInputPorts();
2322 for (int j = 0; j < num; j++) {
2323 newbox->setValueToInputPort(j, copyBox->getValueInputPort(j));
2325 newbox->move(xInic + 20, yInic + 20, zInic);
2326 newbox->notifyObservers(_idManager);
2327 newBoxesID.push_back(newbox->getObjectId());
2329 } else if (type == GCONNECTOR) {
2330 int idCon = cont->getId();
2331 connections.push_back(idCon);
2336 for (int i = 0; i < (int) connections.size(); i++) {
2337 int objId = connections[i];
2338 GObjectController *cont = objectsMap[objId];
2339 GConnectorModel* connectModel = (GConnectorModel*) cont->getModel();
2341 GPortModel* startPort = connectModel->getStartPort();
2342 int startPortIndex = startPort->getPosInBox();
2343 GPortModel* endPort = connectModel->getEndPort();
2344 int endPortIndex = endPort->getPosInBox();
2346 GBlackBoxModel* startPortParentBox =
2347 (GBlackBoxModel*) startPort->getParentBox();
2348 GBlackBoxModel* endPortParentBox =
2349 (GBlackBoxModel*) endPort->getParentBox();
2351 int idNewStartBox = oldIdNewIdBoxes[startPortParentBox->getObjectId()];
2352 int idNewEndBox = oldIdNewIdBoxes[endPortParentBox->getObjectId()];
2354 GBlackBoxModel* newStartBox =
2355 (GBlackBoxModel*) _controllers[idNewStartBox]->getModel();
2356 GBlackBoxModel* newEndBox =
2357 (GBlackBoxModel*) _controllers[idNewEndBox]->getModel();
2359 GPortModel* newStartPort = newStartBox->getOutputPort(startPortIndex);
2360 GPortModel* newEndPort = newEndBox->getInputPort(endPortIndex);
2362 // Creates connection
2363 int idCon = createGConnector(newStartPort);
2364 GConnectorController *tempp =
2365 (GConnectorController*) _controllers[idCon];
2366 GConnectorModel *conMod = (GConnectorModel*) tempp->getModel();
2367 vtkGConnectorView *conView = (vtkGConnectorView*) tempp->getView();
2368 tempp->endContourCreation();
2369 conMod->setEndPort(newEndPort);
2370 conView->updateStartEndPoints();
2373 /// the new selected boxes are the duplicate ones
2375 UnSelectBlackBoxes();
2376 for (int i = 0; i < newBoxesID.size(); i++) {
2377 _selectedObjects.push_back(newBoxesID.at(i));
2380 for (int i = 0; i < (int) _selectedObjects.size(); i++) {
2381 int id = _selectedObjects[i];
2382 GObjectController* cont = _controllers[id];
2384 cont->getView()->setState(SELECTED);
2385 cont->getModel()->notifyObservers(_idManager);
2392 //=========================================================================
2394 int wxVtkSceneManager::getNumSelectedObjects() {
2395 return _selectedObjects.size();
2398 //=========================================================================
2400 std::map<int, GObjectController*> wxVtkSceneManager::getSelectedObjects() {
2401 std::map<int, GObjectController*> mapSelected;
2403 std::map<int, GObjectController*>::iterator it;
2404 for (it = _controllers.begin(); it != _controllers.end(); ++it) {
2405 GObjectController *cont = it->second;
2406 if (cont->getGObjectType() == GBLACKBOX && cont->getView()->getState()
2408 mapSelected[cont->getId()] = cont;
2412 std::map<int, GObjectController*>::iterator it2;
2413 for (it2 = _controllers.begin(); it2 != _controllers.end(); ++it2) {
2414 GObjectController *cont = it2->second;
2415 if (cont->getGObjectType() == GCONNECTOR) {
2416 GConnectorModel* cmod = (GConnectorModel*) cont->getModel();
2417 GBoxModel* endPortParentBox = cmod->getEndPort()->getParentBox();
2418 GBoxModel* startPortParentBox =
2419 cmod->getStartPort()->getParentBox();
2421 std::map<int, GObjectController*>::iterator iterOBJ1 =
2422 mapSelected.find(startPortParentBox->getObjectId());
2423 std::map<int, GObjectController*>::iterator iterOBJ2 =
2424 mapSelected.find(endPortParentBox->getObjectId());
2426 if (iterOBJ1 != mapSelected.end() && iterOBJ2 != mapSelected.end()) {
2427 int ID = cont->getId();
2428 mapSelected[ID] = cont;
2435 //=========================================================================
2437 void wxVtkSceneManager::addObjects(std::map<int, GObjectController*> objectsMap) {
2439 std::map<int, int> oldIdNewIdBoxes;
2440 std::vector<int> connections;
2442 std::map<int, GObjectController*>::iterator it;
2443 for (it = objectsMap.begin(); it != objectsMap.end(); ++it) {
2444 GObjectController *cont = it->second;
2445 int type = cont->getGObjectType();
2447 if (type == GBLACKBOX) {
2449 double xInic, yInic, zInic;
2450 GBlackBoxModel* copyBox = (GBlackBoxModel*) cont->getModel();
2451 copyBox->getInicPoint(xInic, yInic, zInic);
2452 int idBox = createGBlackBox(0, 0, copyBox->getBBTKPackage(),
2453 copyBox->getBBTKType());
2455 int idcB = copyBox->getObjectId();
2456 oldIdNewIdBoxes[idcB] = idBox;
2457 cont = _controllers[idBox];
2458 GBlackBoxModel* newbox = (GBlackBoxModel*) cont->getModel();
2459 newbox->setInicPoint(xInic, yInic, zInic);
2460 int num = newbox->getNumInputPorts();
2461 for (int j = 0; j < num; j++) {
2462 newbox->setValueToInputPort(j, copyBox->getValueInputPort(j));
2464 newbox->notifyObservers(_idManager);
2465 } else if (type == GCONNECTOR) {
2466 int idCon = cont->getId();
2467 connections.push_back(idCon);
2472 for (int i = 0; i < (int) connections.size(); i++) {
2473 int objId = connections[i];
2474 GObjectController *cont = objectsMap[objId];
2475 GConnectorModel* connectModel = (GConnectorModel*) cont->getModel();
2477 GPortModel* startPort = connectModel->getStartPort();
2478 int startPortIndex = startPort->getPosInBox();
2479 GPortModel* endPort = connectModel->getEndPort();
2480 int endPortIndex = endPort->getPosInBox();
2482 GBlackBoxModel* startPortParentBox =
2483 (GBlackBoxModel*) startPort->getParentBox();
2484 GBlackBoxModel* endPortParentBox =
2485 (GBlackBoxModel*) endPort->getParentBox();
2487 int idNewStartBox = oldIdNewIdBoxes[startPortParentBox->getObjectId()];
2488 int idNewEndBox = oldIdNewIdBoxes[endPortParentBox->getObjectId()];
2490 GBlackBoxModel* newStartBox =
2491 (GBlackBoxModel*) _controllers[idNewStartBox]->getModel();
2492 GBlackBoxModel* newEndBox =
2493 (GBlackBoxModel*) _controllers[idNewEndBox]->getModel();
2495 GPortModel* newStartPort = newStartBox->getOutputPort(startPortIndex);
2496 GPortModel* newEndPort = newEndBox->getInputPort(endPortIndex);
2498 // Creates connection
2499 int idCon = createGConnector(newStartPort);
2500 GConnectorController *tempp =
2501 (GConnectorController*) _controllers[idCon];
2502 GConnectorModel *conMod = (GConnectorModel*) tempp->getModel();
2503 vtkGConnectorView *conView = (vtkGConnectorView*) tempp->getView();
2504 tempp->endContourCreation();
2505 conMod->setEndPort(newEndPort);
2506 conView->updateStartEndPoints();
2509 std::map<int, int>::iterator itIds;
2510 for (itIds = oldIdNewIdBoxes.begin(); itIds != oldIdNewIdBoxes.end(); ++itIds) {
2511 int idOld = itIds->first;
2512 int idNew = itIds->second;
2514 GBlackBoxModel* oldBox =
2515 (GBlackBoxModel*) objectsMap[idOld]->getModel();
2516 GBlackBoxModel* newBox =
2517 (GBlackBoxModel*) _controllers[idNew]->getModel();
2519 std::vector<int> oldInputConnections = oldBox->getConnectedInputs();
2520 std::vector<int> oldOutputConnections = oldBox->getConnectedOutputs();
2521 std::vector<int> newInputConnections = newBox->getConnectedInputs();
2522 std::vector<int> newOutputConnections = newBox->getConnectedOutputs();
2524 for (int k = 0; k < (int) oldInputConnections.size(); k++) {
2526 //EED int toCreate=-1;
2527 for (int l = 0; l < (int) newInputConnections.size() && !exist; l++) {
2528 if (oldInputConnections[k] == newInputConnections[l]) {
2533 if (exist == false) {
2534 //Create complex input
2535 int posInBox = oldInputConnections[k];
2536 GPortModel* inputPort = oldBox->getInputPort(posInBox);
2537 std::string inputPortName = inputPort->getBBTKName();
2538 int idInputPort = createGComplexBoxInputPort(inputPortName);
2539 GObjectController *cont = _controllers[idInputPort];
2540 GBoxModel *cbmod = (GBoxModel*) cont->getModel();
2541 double xIn, yIn, zIn;
2542 inputPort->getInicPoint(xIn, yIn, zIn);
2544 cbmod->setInicPoint(xIn, yIn, zIn);
2545 cbmod->notifyObservers(_idManager);
2547 GPortModel* inputPortEnd = newBox->getInputPort(posInBox);
2549 // Creates connection
2550 int idCon = createGConnector(cbmod->getOutputPort(0));
2551 GConnectorController *tempp =
2552 (GConnectorController*) _controllers[idCon];
2553 GConnectorModel *conMod = (GConnectorModel*) tempp->getModel();
2554 vtkGConnectorView *conView =
2555 (vtkGConnectorView*) tempp->getView();
2556 tempp->endContourCreation();
2557 conMod->setEndPort(inputPortEnd);
2558 conView->updateStartEndPoints();
2564 for (int k = 0; k < (int) oldOutputConnections.size(); k++) {
2566 //EED int toCreate=-1;
2567 for (int l = 0; l < (int) newOutputConnections.size() && !exist; l++) {
2568 if (oldOutputConnections[k] == newOutputConnections[l]) {
2573 if (exist == false) {
2574 //Create complex output
2575 int posInBox = oldOutputConnections[k];
2576 GPortModel* outputPort = oldBox->getOutputPort(posInBox);
2577 std::string outputPortName = outputPort->getBBTKName();
2578 int idOutputPort = createGComplexBoxOutputPort(outputPortName);
2579 GObjectController *cont = _controllers[idOutputPort];
2580 GBoxModel *cbmod = (GBoxModel*) cont->getModel();
2581 double xIn, yIn, zIn;
2582 outputPort->getInicPoint(xIn, yIn, zIn);
2584 cbmod->setInicPoint(xIn, yIn, zIn);
2585 cbmod->notifyObservers(_idManager);
2587 GPortModel* outputPortEnd = newBox->getOutputPort(posInBox);
2589 // Creates connection
2590 int idCon = createGConnector(outputPortEnd);
2591 GConnectorController *tempp =
2592 (GConnectorController*) _controllers[idCon];
2593 GConnectorModel *conMod = (GConnectorModel*) tempp->getModel();
2594 vtkGConnectorView *conView =
2595 (vtkGConnectorView*) tempp->getView();
2596 tempp->endContourCreation();
2597 conMod->setEndPort(cbmod->getInputPort(0));
2598 conView->updateStartEndPoints();
2608 //=========================================================================
2609 void wxVtkSceneManager::SetCbName(std::string cbName) {
2611 if (_cbName == "") {
2612 _cbName = "<complex box name>";
2616 //=========================================================================
2617 std::string wxVtkSceneManager::GetCbName() {
2621 //=========================================================================
2622 void wxVtkSceneManager::SetCbPackageName(std::string packagename) {
2623 _cbPackageName = packagename;
2624 if (_cbPackageName == "") {
2625 _cbPackageName = "<package name of the complex box>";
2629 //=========================================================================
2630 std::string wxVtkSceneManager::GetCbPackageName() {
2631 return _cbPackageName;
2634 //=========================================================================
2635 void wxVtkSceneManager::SetAuthor(std::string author) {
2637 if (_Author == "") {
2638 _Author = "<author of the box>";
2642 //=========================================================================
2643 std::string wxVtkSceneManager::GetAuthor() {
2647 //=========================================================================
2648 void wxVtkSceneManager::SetCategory(std::string category) {
2649 _Category = category;
2650 if (_Category == "") {
2651 _Category = "<category of the box>";
2655 //=========================================================================
2656 std::string wxVtkSceneManager::GetCategory() {
2660 //=========================================================================
2661 void wxVtkSceneManager::SetDescription(std::string description) {
2662 _Description = description;
2663 if (_Description == "") {
2664 _Description = "<description of the box>";
2668 //=========================================================================
2669 std::string wxVtkSceneManager::GetDescription() {
2670 return _Description;
2673 //=========================================================================
2676 void wxVtkSceneManager::printAll(int com , int sta ){
2678 int tmpState = sta ;
2679 if ( tmpState == NOTHING_HAPPENS ) {
2680 std::cout << "CONTROLER STATE---->NOTHING_HAPPENS\n" ;
2682 if ( tmpState == HIGHLIGHTED ) {
2683 std::cout << "CONTROLER STATE---->HIGHLIGHTED\n" ;
2685 if ( tmpState == POSSIBLE_CONNECTION ) {
2686 std::cout << "CONTROLER STATE---->POSSIBLE_CONNECTION\n" ;
2688 if ( tmpState == SELECTED_POSSIBLE_CONNECTION ) {
2689 std::cout << "CONTROLER STATE---->SELECTED_POSSIBLE_CONNECTION\n" ;
2691 if ( tmpState == CLICKED ) {
2692 std::cout << "CONTROLER STATE---->CLICKED\n" ;
2694 if ( tmpState == DRAG ) {
2695 std::cout << "CONTROLER STATE---->DRAG\n" ;
2697 if ( tmpState == SELECTED ) {
2698 std::cout << "CONTROLER STATE---->SELECTED\n" ;
2700 if ( tmpState == CREATING_CONTOUR ) {
2701 std::cout << "CONTROLER STATE---->CREATING_CONTOUR\n" ;
2707 if ( command == INIT_CREATION_CONTOUR ) {
2708 std::cout << "COMMAND ----> INIT_CREATION_CONTOUR \n" ;
2710 if ( command == FIN_CREATION_CONTOUR ) {
2711 std::cout << "COMMAND ----> FIN_CREATION_CONTOUR \n" ;
2713 if ( command == ADD_TO_SELECTED ) {
2714 std::cout << "COMMAND ----> ADD_TO_SELECTED \n" ;
2716 if ( command == DRAG_OBJECTS ) {
2717 std::cout << "COMMAND ----> DRAG_OBJECTS \n" ;
2719 if ( command == EDIT_BLACKBOX ) {
2720 std::cout << "COMMAND ----> EDIT_BLACKBOX \n" ;
2722 if ( command == REMOVE_FROM_SELECTED ) {
2723 std::cout << "COMMAND ----> REMOVE_FROM_SELECTED \n" ;
2729 } // EO namespace bbtk