]> Creatis software - bbtkGEditor.git/commitdiff
*** empty log message ***
authordavila <>
Sun, 5 Sep 2010 09:42:01 +0000 (09:42 +0000)
committerdavila <>
Sun, 5 Sep 2010 09:42:01 +0000 (09:42 +0000)
lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.cxx
lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxVtkSceneManager.cxx

index 83db82fb31b6627cd8b873d1d6a2d18197f4709f..16cce2b3927f6d8813ad216166b91e7152e57327 100644 (file)
@@ -45,8 +45,6 @@ namespace bbtk
                : wxFrame(parent, -1, _T("bbtkGEditor"),wxDefaultPosition, wxSize(1200,800))
        {
 
-               printf ("EED %p wxGUIEditorGraphicBBS()\n" , this );
-
                _frameAUIMgr = new wxAuiManager(this);
                
 
@@ -562,7 +560,6 @@ namespace bbtk
                wxFileDialog * openFileDialog = new wxFileDialog(this,wxT("Open diagram"),wxEmptyString,wxT(""),wxT("*.bbg"),wxOPEN|wxFILE_MUST_EXIST);
                if (openFileDialog->ShowModal() == wxID_OK)
                {
-printf("EED %p wxGUIEditorGraphicBBS::OnOpenDiagram 1\n", this);
                        wxString fileName = openFileDialog->GetPath();
                        
                        ifstream inputStream;
@@ -576,7 +573,6 @@ printf("EED %p wxGUIEditorGraphicBBS::OnOpenDiagram 1\n", this);
                        _tabsMgr->loadDiagram(inputStream);
                        
                        inputStream.close();
-printf("EED %p wxGUIEditorGraphicBBS::OnOpenDiagram 2\n", this);
                }
                refreshGUIControls();
        }
index dbd299cbb2adf6799062798f62901d476a52b4f5..e6b41ad69b3c5c33412548d2548841e16bea89aa 100644 (file)
@@ -43,7 +43,6 @@ namespace bbtk
        //=========================================================================
        wxVtkSceneManager::wxVtkSceneManager(wxGEditorTabPanel *parent, wxVtk3DBaseView *baseView,int idManager)
        {
-               printf ("EED %p wxVtkSceneManager()\n" , this );
                _parent = parent;
                _numBoxes=0;
                _idManager=idManager;
@@ -110,32 +109,23 @@ namespace bbtk
 
        int wxVtkSceneManager::createGBlackBox(int x, int y, std::string packageName, std::string boxType)
        {
-printf("EED %p wxVtkSceneManager::createGBlackBox 1\n",this);
-
                _worldState = NOTHING_HAPPENS;
-printf("EED %p wxVtkSceneManager::createGBlackBox 1.1\n",this);
                int windowWidth=_baseView->GetRenWin()->GetSize()[0];
-printf("EED %p wxVtkSceneManager::createGBlackBox 1.2\n",this);
                int windowHeight=_baseView->GetRenWin()->GetSize()[1];
-printf("EED %p wxVtkSceneManager::createGBlackBox 1.3\n",this);
 
                int type = GBLACKBOX;
 
                //Create the MVC Objects
                
                GBlackBoxModel *model = (GBlackBoxModel*)GObjectsMVCFactory::getInstance()->createGObjectModel(type);
-printf("EED %p wxVtkSceneManager::createGBlackBox 1.4\n",this);
                vtkGObjectView *view = GObjectsMVCFactory::getInstance()->createGObjectView(type);
-printf("EED %p wxVtkSceneManager::createGBlackBox 1.5\n",this);
                GObjectController* controller = GObjectsMVCFactory::getInstance()->createGObjectController(type);
-printf("EED %p wxVtkSceneManager::createGBlackBox 1.6 >%s<  >%s<\n",this, packageName.c_str(), boxType.c_str() );
                
                BlackBoxDescriptor::Pointer descriptor = GObjectsMVCFactory::getInstance()->getBlackBoxDescriptor(packageName, boxType);
                
                //Prepares the initial model
                //The coordinates obtained are the following. Top-Left:x=0,y=0 Bottom-Right:x=width,y=height  
 
-printf("EED %p wxVtkSceneManager::createGBlackBox 2\n",this);
                double xx = x;
                double yy = windowHeight-y;
                
@@ -148,7 +138,6 @@ printf("EED %p wxVtkSceneManager::createGBlackBox 2\n",this);
                _numBoxes++;
                std::stringstream stream;
                
-printf("EED %p wxVtkSceneManager::createGBlackBox 3\n",this);
                if(_numBoxes<10)
                {
                        stream << "Box0" << _numBoxes;
@@ -178,7 +167,6 @@ printf("EED %p wxVtkSceneManager::createGBlackBox 3\n",this);
                        i++;
                }
 
-printf("EED %p wxVtkSceneManager::createGBlackBox 4\n",this);
                //Iterate and create the output ports
                std::map<std::string, BlackBoxOutputDescriptor*> descriptorOutMap = descriptor->GetOutputDescriptorMap();
                std::map<std::string, BlackBoxOutputDescriptor*>::iterator itOutput;
@@ -197,7 +185,6 @@ printf("EED %p wxVtkSceneManager::createGBlackBox 4\n",this);
                view->setModel(model);
                view->setBaseView(_baseView);
                view->initVtkObjects();
-printf("EED %p wxVtkSceneManager::createGBlackBox 5\n",this);
                
                //Associates the controller with the correspondent model and view
                controller->setModelAndView(model,view);
@@ -206,7 +193,7 @@ printf("EED %p wxVtkSceneManager::createGBlackBox 5\n",this);
                model->notifyObservers(_idManager);
                
                int newId = addObjectController(controller);
-printf("EED %p wxVtkSceneManager::createGBlackBox 6\n",this);
+
                return newId;
 
        }
@@ -1290,14 +1277,12 @@ printf("EED %p wxVtkSceneManager::createGBlackBox 6\n",this);
 
        void wxVtkSceneManager::saveDiagram(std::string &content)
        {
-printf("EED %p wxVtkSceneManager::saveDiagram 1\n",this);
                char buffer [50];
 
                //Print info IF COMPLEX BOX
                content+="COMPLEXBOX:";
                if(_isComplexBox)
                {
-printf("EED %p wxVtkSceneManager::saveDiagram 2\n",this);
                        content+="TRUE\n";
 
                        //Print info complex input ports
@@ -1343,7 +1328,6 @@ printf("EED %p wxVtkSceneManager::saveDiagram 2\n",this);
                content+=buffer;
                content+="\n";
                
-printf("EED %p wxVtkSceneManager::saveDiagram 3\n",this);
                for(int i = 0;i<bsize;i++)
                {
                        int id = boxes[i];
@@ -1359,7 +1343,6 @@ printf("EED %p wxVtkSceneManager::saveDiagram 3\n",this);
                content+=buffer;
                content+="\n";
                
-printf("EED %p wxVtkSceneManager::saveDiagram 4\n",this);
                for(int i = 0;i<csize;i++)
                {
                        int id = connections[i];
@@ -1373,7 +1356,6 @@ printf("EED %p wxVtkSceneManager::saveDiagram 4\n",this);
 
        void wxVtkSceneManager::loadDiagram(ifstream &inputStream)
        {
-printf("EED %p wxVtkSceneManager::loadDiagram 1\n",this);
 
                std::string line="";    
                char delims[] = ":";
@@ -1389,7 +1371,6 @@ printf("EED %p wxVtkSceneManager::loadDiagram 1\n",this);
                        }
                        else if(line=="APP_START")
                        {
-printf("EED %p wxVtkSceneManager::loadDiagram 2\n",this);
                                start = true;
                                break;
                        }
@@ -1398,10 +1379,9 @@ printf("EED %p wxVtkSceneManager::loadDiagram 2\n",this);
                if(start)
                {
 
-printf("EED %p wxVtkSceneManager::loadDiagram 3\n",this);
                        //----------
                        getline(inputStream,line);//COMPLEX_BOX:TRUE|FALSE
-                       char complex[20];
+                       char complex[30];
                        strcpy( complex, line.c_str() );
                        result = strtok( complex, delims );
                        result = strtok( NULL, delims );
@@ -1409,14 +1389,13 @@ printf("EED %p wxVtkSceneManager::loadDiagram 3\n",this);
 
                        if(isComplexBox=="TRUE")
                        {
-printf("EED %p wxVtkSceneManager::loadDiagram 4\n",this);
                                _isComplexBox=true;
 
                                //-----------------------
                                //- COMPLEX INPUT PORTS
                                //-----------------------
                                getline(inputStream,line);//COMPLEXINPUTS:num
-                               char inputs[18];
+                               char inputs[30];
                                strcpy( inputs, line.c_str() );
                                result = strtok( inputs, delims );
                                result = strtok( NULL, delims );
@@ -1466,7 +1445,7 @@ printf("EED %p wxVtkSceneManager::loadDiagram 4\n",this);
                                //-----------------------
 
                                getline(inputStream,line);//COMPLEXOUTPUTS:num
-                               char outputs[18];
+                               char outputs[30];
                                strcpy( outputs, line.c_str() );
                                result = strtok( outputs, delims );
                                result = strtok( NULL, delims );
@@ -1513,31 +1492,22 @@ printf("EED %p wxVtkSceneManager::loadDiagram 4\n",this);
                        } // complex box
 
                        //----------
-printf("EED %p wxVtkSceneManager::loadDiagram 4.1\n",this);
                        getline(inputStream,line);//BOXES:num
-printf("EED %p wxVtkSceneManager::loadDiagram 4.2\n",this);
                        char boxes[9];
-printf("EED %p wxVtkSceneManager::loadDiagram 4.3\n",this);
                        strcpy( boxes, line.c_str() );
-printf("EED %p wxVtkSceneManager::loadDiagram 4.4\n",this);
                        result = strtok( boxes, delims );
-printf("EED %p wxVtkSceneManager::loadDiagram 4.5\n",this);
                        result = strtok( NULL, delims );
-printf("EED %p wxVtkSceneManager::loadDiagram 4.6\n",this);
                                        
                        int numBoxes;
-printf("EED %p wxVtkSceneManager::loadDiagram 4.7\n",this);
                        std::istringstream is(result);
-printf("EED %p wxVtkSceneManager::loadDiagram 4.8\n",this);
                        is >> numBoxes;
                        
-printf("EED %p wxVtkSceneManager::loadDiagram 5\n",this);
                        for(int i = 0;i<numBoxes;i++)
                        {
                                //----------
                                getline(inputStream,line);//BOX
                                getline(inputStream,line);//package:type:name
-                               char box[100];
+                               char box[150];
                                strcpy( box, line.c_str() );
                                result = strtok( box, delims );//package
                                std::string package(result);
@@ -1571,7 +1541,6 @@ printf("EED %p wxVtkSceneManager::loadDiagram 5\n",this);
                                ySt >> yIn;
                                std::istringstream zSt(zInic);
                                zSt >> zIn;
-printf("EED %p wxVtkSceneManager::loadDiagram 6\n",this);
                                                
                                //----------
                                getline(inputStream,line);//xEnd:yEnd:zEnd
@@ -1582,7 +1551,6 @@ printf("EED %p wxVtkSceneManager::loadDiagram 6\n",this);
                                std::string yEnd(result);
                                result = strtok( NULL, delims );//zEnd
                                std::string zEnd(result);
-printf("EED %p wxVtkSceneManager::loadDiagram 6.1\n",this);
 
                                double xEn, yEn, zEn;
                                std::istringstream xEt(xEnd);
@@ -1592,19 +1560,12 @@ printf("EED %p wxVtkSceneManager::loadDiagram 6.1\n",this);
                                std::istringstream zEt(zEnd);
                                zEt >> zEn;
 
-printf("EED %p wxVtkSceneManager::loadDiagram 6.2\n",this);
                                int idBox = createGBlackBox(0,0,package,type);
-printf("EED %p wxVtkSceneManager::loadDiagram 6.2\n",this);
                                GObjectController *cont = _controllers[idBox];
-printf("EED %p wxVtkSceneManager::loadDiagram 6.2\n",this);
                                GBlackBoxModel *bbmod = (GBlackBoxModel*)cont->getModel();
-printf("EED %p wxVtkSceneManager::loadDiagram 6.2\n",this);
                                bbmod->setBBTKName(name);
-printf("EED %p wxVtkSceneManager::loadDiagram 6.2\n",this);
                                bbmod->setInicPoint(xIn,yIn,zIn);
-printf("EED %p wxVtkSceneManager::loadDiagram 6.2\n",this);
                                bbmod->setFinalPoint(xEn,yEn,zEn);
-printf("EED %p wxVtkSceneManager::loadDiagram 6.2\n",this);
                                if(isExec=="TRUE")
                                {
                                        bbmod->setExecutable(true);
@@ -1619,9 +1580,8 @@ printf("EED %p wxVtkSceneManager::loadDiagram 6.2\n",this);
                                std::string port=line.substr(0,4);
                                while(port=="PORT")
                                {
-printf("EED %p wxVtkSceneManager::loadDiagram 7\n",this);
                                        getline(inputStream,line);//name:value
-                                       char poort[20];
+                                       char poort[150];
                                        strcpy( poort, line.c_str() );
                                        result = strtok( poort, delims );//name
                                        std::string name(result);
@@ -1640,7 +1600,7 @@ printf("EED %p wxVtkSceneManager::loadDiagram 7\n",this);
                        /// CONNECTIONS
                        //----------
                        getline(inputStream,line);//CONNECTIONS:num
-                       char conns[20];
+                       char conns[30];
                        strcpy( conns, line.c_str() );
                        result = strtok( conns, delims );
                        result = strtok( NULL, delims );
@@ -1649,15 +1609,13 @@ printf("EED %p wxVtkSceneManager::loadDiagram 7\n",this);
                        std::istringstream isCons(result);
                        isCons >> numConns;
                                        
-printf("EED %p wxVtkSceneManager::loadDiagram 8\n",this);
                        for(int i = 0;i<numConns;i++)
                        {
-printf("EED %p wxVtkSceneManager::loadDiagram 9\n",this);
                                //----------
                                getline(inputStream,line);//CONNECTION
                                getline(inputStream,line);//Startbox.PortName:EndBox.PortName
 
-                               char connec[100];
+                               char connec[200];
                                strcpy( connec, line.c_str() );
                                result = strtok( connec, delims );
                                std::string nameStartBox(result);
@@ -1729,7 +1687,6 @@ printf("EED %p wxVtkSceneManager::loadDiagram 9\n",this);
 
                        } // for numConns
         } // start
-printf("EED %p wxVtkSceneManager::loadDiagram 10\n",this);
 
        }