#ifdef _USE_WXWIDGETS_ //========================================================================== // WITH WX //========================================================================== #include "bbtkObject.h" #include "bbtkInterpreter.h" #include "bbtkWxBlackBox.h" #include "bbtkWxGUIConsole.h" #include #include #include //========================================================================== // Command line options definition static const wxCmdLineEntryDesc cmdLineDesc[] = { { wxCMD_LINE_SWITCH, _T("h"), _T("help"), _T("print this help or help on the application defined in input bbs file if any") }, { wxCMD_LINE_SWITCH, _T("g"), _T("graphical-dialog"), _T("prompt the input parameter values using graphical dialog") }, { wxCMD_LINE_SWITCH, _T("t"), _T("text-dialog"), _T("prompt the input parameter values in text mode") }, { wxCMD_LINE_SWITCH, _T("c"), _T("console"), _T("open bbi console") }, { wxCMD_LINE_SWITCH, _T("N"), _T("no-console"), _T("never open bbi console even on error") }, { wxCMD_LINE_SWITCH, _T("q"), _T("quiet"), _T("be quiet (='message max 0')") }, { wxCMD_LINE_SWITCH, _T("d"), _T("debug"), _T("turn all messages on (='message all 9')") }, { wxCMD_LINE_SWITCH, _T("D"), _T("Debug"), _T("memory debug on exit (='debug -D')") }, { wxCMD_LINE_PARAM, NULL, NULL, _T("file [file [...]]"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL | wxCMD_LINE_PARAM_MULTIPLE }, { wxCMD_LINE_NONE } }; //========================================================================== //========================================================================== // Processes the command line parsing result struct ProcessCmdLine { ProcessCmdLine() {} void Process(wxCmdLineParser& parser); // int argc; std::vector argv; bool console; bool debug; bool quiet; bool help; bool graphical_dialog; bool text_dialog; bool no_console; bool proceed; std::map param_map; std::vector input_file; }; //========================================================================== //========================================================================== void ProcessCmdLine::Process(wxCmdLineParser& parser) { proceed = true; if (parser.Found(_T("D"))) { bbtk::StaticInitTime::PrintObjectListInfo = true; } debug = ( parser.Found(_T("d")) ); quiet = ( parser.Found(_T("q")) ); help = ( parser.Found(_T("h")) ); graphical_dialog = ( parser.Found(_T("g")) ); text_dialog = ( parser.Found(_T("t")) ); no_console = ( parser.Found(_T("N")) ); if (quiet) bbtk::MessageManager::SetMessageLevel("max",0); if (debug) bbtk::MessageManager::SetMessageLevel("all",9); // parse the arguments and consider those which contain a "=" // as set input commands, other as files int pargc = parser.GetParamCount(); for (int i=0; iShow(true); I->SetInputs(cmd.param_map); bool help_on_script = cmd.help && (cmd.input_file.size() > 0); if (help_on_script) I->SetNoExecMode(true); if (cmd.graphical_dialog) I->SetDialogMode(bbtk::VirtualExec::GraphicalDialog); if (cmd.text_dialog) I->SetDialogMode(bbtk::VirtualExec::TextDialog); std::vector::const_iterator i; bool error = false; for (i=cmd.input_file.begin(); i!=cmd.input_file.end(); ++i) { error = ! I->InterpretFile(*i); if (error) break; } bool show_on_error = error && ! cmd.no_console; if (show_on_error) I->Show(); I->SetNoExecMode(false); if (help_on_script) { std::string package; I->GetInterpreter()->GetExecuter()->GetFactory()->PrintHelpDescriptor("workspace",package,false); } /* std::cout << "soe="<Close"<Close"<0) { parser.Usage(); return 0; } ProcessCmdLine cmdline; cmdline.Process(parser); if (!cmdline.proceed) return 0; if (cmdline.no_console) { // std::cout << "main NC"<SetInputs(cmdline.param_map); bool help_on_script = cmdline.help && (cmdline.input_file.size() > 0); if (help_on_script) I->SetNoExecMode(true); if (cmdline.text_dialog) I->SetDialogMode(bbtk::VirtualExec::TextDialog); std::vector::const_iterator i; bool error = false; for (i=cmdline.input_file.begin(); i!=cmdline.input_file.end(); ++i) { error = ! I->InterpretFile(*i); if (error) break; } if (help_on_script) { I->SetNoExecMode(false); std::string package; I->GetExecuter()->GetFactory()->PrintHelpDescriptor("workspace", package, false); } if (cmdline.input_file.size()==0) I->CommandLineInterpreter(); // } else { wxEntry(argc, argv); } } #endif // defined(_WIN32) //========================================================================== #else //========================================================================== // WITHOUT WX //========================================================================== #include "bbtkInterpreter.h" //#include "bbtkWx.h" int main(int argc, char* argv[]) { if (argc>2) { std::cout << "usage : "<CommandLineInterpreter(); } else { std::string f(argv[1]); I->InterpretFile(f); } // bbtk::Wx::LoopUntilAllWindowsClose(); return 0; } // EOF #endif //#ifdef _USE_WXWIDGETS_