/* * Baltisot * Copyright (C) 1999-2003 Nicolas "Pixel" Noble * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* $Id: Main.cc,v 1.12 2004-11-27 21:46:04 pixel Exp $ */ #ifdef _WIN32 #include #endif #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "Exceptions.h" #include "Main.h" #include "generic.h" //#include "gettext.h" Main::Main() : setted(false) {} Main::~Main() {} void Main::set_args(int a_argc, char ** a_argv, char ** a_enve) { if (setted) { return; } argc = a_argc; argv = a_argv; enve = a_enve; setted = true; } /* _open_osfhandle CreateFileMapping */ int Main::truemain(Main * Application, int argc, char ** argv, char ** enve) { int r; try { Application->set_args(argc, argv, enve); r = Application->startup(); } catch (Exit e) { r = e.GetCode(); } catch (GeneralException e) { #ifdef _WIN32 MessageBox(0, e.GetMsg(), "Application caused an exception", MB_ICONEXCLAMATION | MB_OK); #endif Base::printm(M_ERROR, _("The application caused an exception: %s\n"), e.GetMsg()); return -1; } catch (...) { Base::printm(M_ERROR, _("The application caused an unknow exception\n")); return -1; } return r; }