]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.cxx
no message
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / bbtkwxGUIEditorGraphicBBS.cxx
index 5233d3c68b9d23da7b65c3920c6f61266360174d..f5027edffc143c987cdaec8fc42480bb09f3fe8e 100644 (file)
@@ -35,6 +35,11 @@ Version:   $Revision$
 
 #include "bbtkwxGUIEditorGraphicBBS.h"
 #include "creaWx.h"
+#include "creaSystem.h"
+
+#include <InterpreterBBS.h>
+
+
 
 namespace bbtk
 {
@@ -152,12 +157,14 @@ namespace bbtk
                wxMenu *fileMenu = new wxMenu();
                fileMenu->Append(ID_NEW, _T("New diagram"), _T("New"));
                fileMenu->Append(ID_SAVE_AS_DIAGRAM, _T("Save diagram"), _T("Save diagram"));
+               fileMenu->Append(ID_OPEN_BBS, _T("Open BBS"), _T("Open BBS"));
                fileMenu->Append(ID_SAVE_AS_BBS, _T("Save BBS"), _T("Save BBS"));
                fileMenu->Append(ID_SAVE_AS_COMPLEXBOX, _T("Save complex box"), _T("Save complex box"));
                fileMenu->Append(wxID_EXIT, _T("E&xit"), _T("Exit"));
 
                Connect(ID_NEW,wxEVT_COMMAND_MENU_SELECTED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnCreateNewTab));
                Connect(ID_SAVE_AS_DIAGRAM,wxEVT_COMMAND_MENU_SELECTED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnSaveActualDiagram));
+               Connect(ID_OPEN_BBS,wxEVT_COMMAND_MENU_SELECTED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnOpenBBS));
                Connect(ID_SAVE_AS_BBS,wxEVT_COMMAND_MENU_SELECTED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnSaveActualBBS));
                Connect(ID_SAVE_AS_COMPLEXBOX,wxEVT_COMMAND_MENU_SELECTED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnSaveActualComplexBox));
                Connect(wxID_EXIT,wxEVT_COMMAND_MENU_SELECTED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnExit));
@@ -343,13 +350,20 @@ namespace bbtk
                tempFile.open(filename.c_str());
                tempFile << script;
                tempFile.close();
-               
-               std::string command = "\"";
 
+               std::string command = "\""+ crea::System::GetExecutablePath();
+
+               
+#ifdef MACOSX
+               command += separator + "../../../bbi.app/Contents/MacOS";
+#endif
+               
                #ifdef WIN32
                        command += "\"";
                #endif
-
+               
+               /*              
+               
                //command += ConfigurationFile::GetInstance().Get_bin_path();
 //EED          command +="C:/temp/bbtkBIN/RelWithDebInfo//";
 //EED          command +="C:/Program Files/CreaTools/bbtk-0.9.5/bin";
@@ -361,8 +375,9 @@ namespace bbtk
                    command +=".";
                        command += separator + "bbi\" ";
                #endif
+ */
+               command += separator + "bbi\" ";
                command += "\""+filename + "\"";
-
                #ifdef WIN32
                        command += "\"";
                #endif
@@ -394,16 +409,39 @@ namespace bbtk
                executeScript(script);          
        }
 
+       
        //=========================================================================
        // HANDLERS 
        //=========================================================================
+       void wxGUIEditorGraphicBBS::OnOpenBBS(wxCommandEvent& event)
+       {
+               wxFileDialog * openFileDialog = new wxFileDialog(this,wxT("Open BBS"),wxEmptyString,wxT("NewBBS"),wxT("*.bbs"),wxOPEN);
+               if (openFileDialog->ShowModal() == wxID_OK)
+               {
+                       wxString fileName = openFileDialog->GetPath(  );
+printf("EED wxGUIEditorGraphicBBS::OnOpenBBS  file=%s\n", (const char*) (fileName.mb_str()) );
+                       
+                       
+                       _tabsMgr->addNewTab();
+
+                       
+//                     bbtk::EExecuterBBSG::Pointer exe = bbtk::EExecuterBBSG::New( this->_tabsMgr->getActualTabPanel()->getSceneManager() , _pkgBrowser->GetFactory() );
+                       bbtk::InterpreterBBS::Pointer I = bbtk::InterpreterBBS::New( this->_tabsMgr->getActualTabPanel()->getSceneManager() , _pkgBrowser->GetFactory());                       
+                       
+                       // We tell the interpreter to throw exceptions on error
+                       I->SetThrow(true);
+                       // Interpret the file supposed to define a box called 'Processing'
+                       I->InterpretFile( (const char*) (fileName.mb_str()) );
+               }
+               refreshGUIControls();
+       }
 
        void wxGUIEditorGraphicBBS::OnSaveActualBBS(wxCommandEvent& event)
        {
                wxFileDialog * saveFileDialog = new wxFileDialog(this,wxT("Save  actual BBS"),wxEmptyString,wxT("NewBBS"),wxT("*.bbs"),wxSAVE|wxOVERWRITE_PROMPT);
                if (saveFileDialog->ShowModal() == wxID_OK)
                {
-                       wxString fileName = saveFileDialog->GetPath();
+                       wxString fileName = saveFileDialog->GetPath(  );
                        
                        ofstream file;
 
@@ -433,7 +471,6 @@ namespace bbtk
                if (nameDialog->ShowModal() == wxID_OK)
                {
                        wxString fileName = nameDialog->GetValue();
-//EED                  cbName=fileName;
                        cbName=(const char*) (fileName.mb_str());
                }               
 
@@ -445,7 +482,6 @@ namespace bbtk
                                wxString fileName = saveFileDialog->GetPath();
                                
                                ofstream file;
-//EED                          file.open(fileName.c_str());
                                file.open( (const char*) (fileName.mb_str()) );
 
                                std::string content="";
@@ -473,7 +509,6 @@ namespace bbtk
                        wxString fileName = saveFileDialog->GetPath();
                        
                        ofstream file;
-//EED                  file.open(fileName.c_str());
                        file.open( (const char*) (fileName.mb_str()) );
 
                        std::string content="";
@@ -483,7 +518,6 @@ namespace bbtk
                        content += "# - BBTKGEditor v 1.0 BBG BlackBox Diagram file\n";
                        content += "# - ";
 
-//EED                  content += fileName;
                        content += (const char*) (fileName.mb_str());
 
                        content += "\n";