]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.cxx
Bug #1689
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / bbtkwxGUIEditorGraphicBBS.cxx
index b7fb989f9145d65c2075d126c8b34d9c5de0dd95..a26f9ddf12a32ba145b9b6f468d54cae00dd5c61 100644 (file)
 namespace bbtk {
 
 //=========================================================================
-wxGUIEditorGraphicBBS::wxGUIEditorGraphicBBS(wxFrame *parent) :
-                       wxFrame(parent, -1, _T("bbtkGEditor"), wxDefaultPosition, wxSize(
-                                       1200, 800)) {
-
+wxGUIEditorGraphicBBS::wxGUIEditorGraphicBBS(wxFrame *parent) 
+       : wxFrame( parent, -1, _T("bbtkGEditor"), wxDefaultPosition, wxSize(1200,800) ) 
+{
+       _pkgBrowser = NULL;
        _frameAUIMgr = new wxAuiManager(this);
 
        /*std::string datadir( crea::System::GetExecutablePath() );
@@ -69,8 +69,8 @@ wxGUIEditorGraphicBBS::wxGUIEditorGraphicBBS(wxFrame *parent) :
 
        initMenu();
        initToolbar();
-       initTabPanelsManager();
        initPackageBrowser();
+       initTabPanelsManager();
         // JGGR & CM  initHelpHTMLBrowser();
         _helpHtmlBrowser = NULL;
        CreateStatusBar();
@@ -78,6 +78,11 @@ wxGUIEditorGraphicBBS::wxGUIEditorGraphicBBS(wxFrame *parent) :
        _actualPkgBrowserBoxName = "";
        _actualPkgBrowserPkgName = "";
        refreshGUIControls();
+
+       /////////////////////////////////
+       /// IMPORTANT!! FOR SAVE&LOAD PROCESSES THE VERSION IS VERY IMPORTANT.
+       /// RaC 2012 2nd Hackfest
+       _currentBBGversion="1.4";
 }
 
 //=========================================================================
@@ -140,7 +145,8 @@ void wxGUIEditorGraphicBBS::initToolbar() {
                        wxNullBitmap, wxITEM_NORMAL, _T("Complex box"), _T("Complex box"));
        toolbar->SetToggle(ID_BTNCOMPLEXBOX, true);
 
-       //toolbar->AddTool(ID_ADDCOMPLEXBOXINPUT, _T("Add input to Complex box"),
+       // RaC 2012 2nd HackFest - Now Complex inputs are any external input
+       //              toolbar->AddTool(ID_ADDCOMPLEXBOXINPUT, _T("Add input to Complex box"),
        //              bmp_complexinputport, wxNullBitmap, wxITEM_NORMAL,
        //              _T("Add input to Complex box"), _T("Add input to Complex box"));
        toolbar->AddTool(ID_ADDCOMPLEXBOXINPUT, _T("Add external input (Complex box or console app)"),
@@ -150,7 +156,10 @@ void wxGUIEditorGraphicBBS::initToolbar() {
        toolbar->AddTool(ID_ADDCOMPLEXBOXOUTPUT, _T("Add output to Complex box"),
                        bmp_complexoutputport, wxNullBitmap, wxITEM_NORMAL,
                        _T("Add output Complex box"), _T("Add output Complex box"));
-       toolbar->EnableTool(ID_ADDCOMPLEXBOXINPUT, false);
+
+       // toolbar->EnableTool(ID_ADDCOMPLEXBOXINPUT, false); RaC2012 2nd HackFest
+       toolbar->EnableTool(ID_ADDCOMPLEXBOXINPUT, true);
+
        toolbar->EnableTool(ID_ADDCOMPLEXBOXOUTPUT, false);
        toolbar->AddSeparator();
        toolbar->AddTool(ID_UNDO, _T("Undo"),bmp_undo, wxNullBitmap, wxITEM_NORMAL,     _T("Undo"), _T("Undo"));
@@ -229,6 +238,8 @@ void wxGUIEditorGraphicBBS::initMenu() {
         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(ID_EXPORT_CONSOLEAPP, _T("Export console commands"),
+                               _T("Export console execution commands"));
        fileMenu->Append(wxID_EXIT, _T("E&xit"), _T("Exit"));
 
        Connect(ID_NEW, wxEVT_COMMAND_MENU_SELECTED,
@@ -245,6 +256,10 @@ void wxGUIEditorGraphicBBS::initMenu() {
                        ID_SAVE_AS_COMPLEXBOX,
                        wxEVT_COMMAND_MENU_SELECTED,
                        wxCommandEventHandler(wxGUIEditorGraphicBBS::OnSaveActualComplexBox));
+       Connect(
+                       ID_EXPORT_CONSOLEAPP,
+                               wxEVT_COMMAND_MENU_SELECTED,
+                               wxCommandEventHandler(wxGUIEditorGraphicBBS::OnExportConsoleExecCommand));
        Connect(wxID_EXIT, wxEVT_COMMAND_MENU_SELECTED,
                        wxCommandEventHandler(wxGUIEditorGraphicBBS::OnExit));
 
@@ -415,16 +430,22 @@ wxAuiNotebook* wxGUIEditorGraphicBBS::getAuiNotebook() {
 
 //================================================================
 
-void wxGUIEditorGraphicBBS::displayBlackBoxInfo(std::string packageName,
-               std::string boxName) {
-       if (_actualPkgBrowserPkgName != packageName || _actualPkgBrowserBoxName
-                       != boxName) {
+void wxGUIEditorGraphicBBS::displayBlackBoxInfo(std::string packageName, std::string boxName) 
+{
+       if (_actualPkgBrowserPkgName != packageName || _actualPkgBrowserBoxName != boxName) 
+       {
                _actualPkgBrowserPkgName = packageName;
                _actualPkgBrowserBoxName = boxName;
 
-               BlackBoxDescriptor::Pointer descriptor =
-                               GObjectsMVCFactory::getInstance()->getBlackBoxDescriptor(
-                                               packageName, boxName);
+//EED 15 oct 2012              BlackBoxDescriptor::Pointer descriptor = GObjectsMVCFactory::getInstance()->getBlackBoxDescriptor(packageName, boxName);
+               
+               Package::Pointer k;
+               BlackBoxDescriptor::Pointer descriptor;
+               std::map< std::string, BlackBoxDescriptor::Pointer> mapDesc;
+               k                       = _pkgBrowser->GetFactory()->GetPackage(packageName);
+               mapDesc         = k->GetDescriptorMap();                
+               descriptor      = mapDesc[boxName];
+               
                _pkgBrowser->WxGUIBlackBoxListUserOnSelected(descriptor.get());
        }
 }
@@ -603,7 +624,9 @@ void wxGUIEditorGraphicBBS::SaveActualBBS(std::string filename) {
        std::string content = "";
        // writing file header
        content += "# ----------------------------------\n";
-       content += "# - BBTKGEditor v 1.3 BBS BlackBox Script\n";
+       content += "# - BBTKGEditor v ";
+       content += _currentBBGversion; //VERSION
+       content += " BBS BlackBox Script\n";
        content += "# - ";
        content += filename;
        content += "\n";
@@ -663,7 +686,9 @@ void wxGUIEditorGraphicBBS::SaveActualComplexBox(std::string filename) {
 
        // writing file header
        content += "# ----------------------------------\n";
-       content += "# - BBTKGEditor v 1.3 BBS BlackBox Script (Complex Box)\n";
+       content += "# - BBTKGEditor v ";
+       content += _currentBBGversion;//VERSION
+       content += " BBS BlackBox Script (Complex Box)\n";
        content += "# - ";
        content += filename;
        content += "\n";
@@ -698,7 +723,9 @@ void wxGUIEditorGraphicBBS::SaveActualDiagram(std::string filename) {
 
        // writing file header
        content += "# ----------------------------------\n";
-       content += "# - BBTKGEditor v 1.3 BBG BlackBox Diagram file\n";
+       content += "# - BBTKGEditor v ";
+       content += _currentBBGversion; //VERSION
+       content += " BBG BlackBox Diagram file\n";
        content += "# - ";
 
        content += filename;
@@ -792,6 +819,100 @@ void wxGUIEditorGraphicBBS::OnSaveActualDiagram(wxCommandEvent& event) {
 void wxGUIEditorGraphicBBS::OnSaveAsActualDiagram(wxCommandEvent& event) {
        SaveCurrentDiagramAs();
 }
+
+//=========================================================================
+void wxGUIEditorGraphicBBS::OnExportConsoleExecCommand(wxCommandEvent& event)
+{
+       wxFileDialog * saveFileDialog = new wxFileDialog(this,
+                       wxT("Export console command"), wxEmptyString, wxT("ConsoleApp.txt"),
+                       wxT("*.txt;*.bbs;*.bbg;*.sh;*.bat"), wxSAVE | wxOVERWRITE_PROMPT);
+
+       if (saveFileDialog->ShowModal() == wxID_OK)
+       {
+               wxString fileName = saveFileDialog->GetPath();
+               std::string filename = (const char*) (fileName.mb_str());
+               filename=CheckExtension (filename, ".txt");
+
+               ofstream file;
+               file.open(filename.c_str());
+
+               std::vector<std::string> extInputs = _tabsMgr->getActualTabPanel()->getSceneManager()->GetExternalInputsNames();
+
+               //TODO PUT IN A METHOD OF A FILES AND TEXT MANAGER CLASS !!!
+               //std::string inputsInCommentsWin="";
+               //std::string inputsInCommentsUnix="";
+               //std::string inputsInOneLineWin="";
+               std::string inputsInOneLineUnix="";
+               for (unsigned int i = 0; i < extInputs.size(); ++i)
+               {
+                       /* No gusto la idea al jefe pero por si acaso ...
+                       * RaC 2012 2nd HackFest
+                       *
+                       inputsInCommentsWin+="REM ";
+                       inputsInCommentsWin+=extInputs[i];
+                       inputsInCommentsWin+="=\"value\"\n";
+                       inputsInCommentsUnix+="# ";
+                       inputsInCommentsUnix+=extInputs[i];
+                       inputsInCommentsUnix+="=\"value\"\n";
+
+                       char buffer [50];
+                       sprintf (buffer, "%d", (i+1));
+                       inputsInOneLineWin+=extInputs[i];
+                       inputsInOneLineWin+="=\"%";
+                       inputsInOneLineWin+=buffer;
+                       inputsInOneLineWin+="\" ";
+                       */
+                       inputsInOneLineUnix+=extInputs[i];
+                       inputsInOneLineUnix+="=\"<value>\" ";
+
+               }
+
+
+               std::string content = "";
+               // writing file header
+               content += "# ----------------------------------\n";
+               content += "# - BBTKGEditor v ";
+               content += _currentBBGversion; //VERSION
+               content += " Console Commands to execute BBS application\n";
+               content += "# - ";
+               content += filename;
+               content += "\n";
+               content += "# ----------------------------------\n";
+               content += "\n";
+               content += "\n";
+               content += "# Command to execute bbi\n";
+               content += "bbi <bbs_path> ";
+               content += inputsInOneLineUnix;
+
+               /* No gusto la idea al jefe pero por si acaso ...
+                * RaC 2012 2nd HackFest
+                content += "# For Windows (copy the following lines to a .bat file)\n";
+                content += "REM BBS application\n";
+                content += "REM Inputs:\n";
+                content += inputsInCommentsWin;
+                content += "REM To use previous inputs, put %$inputName% in the corresponding input of the execution bbi line\n";
+                content += "bbi applicationBBS.bbs ";
+                content += inputsInOneLineWin;
+                content += "\n";
+                content += "\n";
+                content += "# For Linux or Mac (copy the following lines to a .sh file)\n";
+                content += "#!/bin/bash\n";
+                content += "# BBS application\n";
+                content += "# Inputs:\n";
+                content += inputsInCommentsUnix;
+                content += "# To use previous inputs, put $inputName in the corresponding input of the execution bbi line\n";
+                content += "bbi applicationBBS.bbs ";
+                content += inputsInOneLineUnix;
+                content += "\n";
+               */
+
+               file << content;
+               file.close();
+       }
+
+
+}
+
 //=========================================================================
 
 void wxGUIEditorGraphicBBS::refreshGUIControls() {
@@ -801,18 +922,20 @@ void wxGUIEditorGraphicBBS::refreshGUIControls() {
        wxToolBar* toolbar = GetToolBar();
        if (_tabsMgr->isActualDiagramComplexBox()) {
                toolbar->ToggleTool(ID_BTNCOMPLEXBOX, true);
-               toolbar->EnableTool(ID_ADDCOMPLEXBOXINPUT, true);
+               //toolbar->EnableTool(ID_ADDCOMPLEXBOXINPUT, true); RaC2012 2nd HackFest
                toolbar->EnableTool(ID_ADDCOMPLEXBOXOUTPUT, true);
 
                GetMenuBar()->GetMenu(0)->Enable(ID_SAVE_AS_COMPLEXBOX, true);
                GetMenuBar()->GetMenu(0)->Enable(ID_SAVE_AS_BBS, false);
+               GetMenuBar()->GetMenu(0)->Enable(ID_EXPORT_CONSOLEAPP, false);
        } else {
                toolbar->ToggleTool(ID_BTNCOMPLEXBOX, false);
-               toolbar->EnableTool(ID_ADDCOMPLEXBOXINPUT, false);
+               //toolbar->EnableTool(ID_ADDCOMPLEXBOXINPUT, false); RaC2012 2nd HackFest
                toolbar->EnableTool(ID_ADDCOMPLEXBOXOUTPUT, false);
 
                GetMenuBar()->GetMenu(0)->Enable(ID_SAVE_AS_COMPLEXBOX, false);
                GetMenuBar()->GetMenu(0)->Enable(ID_SAVE_AS_BBS, true);
+               GetMenuBar()->GetMenu(0)->Enable(ID_EXPORT_CONSOLEAPP, true);
        }
 
        //RaC2012 2ndHackFest
@@ -887,7 +1010,9 @@ void wxGUIEditorGraphicBBS::OnClickBtnBox(wxCommandEvent& event) {
 
                if (pnl != NULL) {
                        wxVtkSceneManager *scn = pnl->getSceneManager();
+printf("EED wxGUIEditorGraphicBBS::OnClickBtnBox 1.\n");                       
                        scn->createGBlackBox(50, 50, packageName, typeName);
+printf("EED wxGUIEditorGraphicBBS::OnClickBtnBox 2.\n");                       
                        scn->refresh();
                }
 
@@ -1029,7 +1154,16 @@ void wxGUIEditorGraphicBBS::OnPlugPackage(wxCommandEvent& event) {
 }
 //=========================================================================
 void wxGUIEditorGraphicBBS::OnEditConfig(wxCommandEvent& event) {
-       printf("EED wxGUIEditorGraphicBBS::OnEditConfig ... not implemented ..\n");
+       std::string commandStr;
+           std::string configFile = ConfigurationFile::GetInstance().Get_config_xml_full_path();
+       #ifdef WIN32
+               commandStr = "notepad.exe ";
+       #else
+               commandStr = "gedit ";
+       #endif
+               commandStr = commandStr + configFile;
+               std::cout << "system: " << commandStr << std::endl;
+               system ( commandStr.c_str() );
     }
     //=========================================================================
 
@@ -1057,7 +1191,16 @@ void wxGUIEditorGraphicBBS::OnExit(wxCommandEvent& event) {
        Close(true);
 }
 
-//=========================================================================
+Factory::Pointer wxGUIEditorGraphicBBS::GetBBTKFactory()
+{
+       if (_pkgBrowser==NULL) 
+       {
+               printf ("EED ERROR! wxGUIEditorGraphicBBS::GetBBTKFactory _pkgBrowser = NULL\n");
+       }
+       return _pkgBrowser->GetFactory();
+}
+
+       //=========================================================================
 
 void wxGUIEditorGraphicBBS::enableComplexBox() {
        _tabsMgr->setActualDiagramComplexBox(true);
@@ -1114,6 +1257,7 @@ std::string wxGUIEditorGraphicBBS::getCurrentDiagramCategory()
        return _tabsMgr->GetCategory();
 }
 
+       
 //=========================================================================
 
 bool wxGUIEditorGraphicBBS::isCurrentDiagramComplexBox()