4 // Copyright (C) 2004 Tobias Glaesser <tobi.web@gmx.de>
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
22 #include <sys/types.h>
28 #include "app/globals.h"
29 #include "app/setup.h"
32 #include "leveleditor.h"
33 #include "video/screen.h"
35 #include "resources.h"
36 #include "video/surface.h"
37 #include "tile_manager.h"
38 #include "app/gettext.h"
40 #include "utils/configfile.h"
42 int main(int argc, char * argv[])
47 config = new MyConfig;
49 Setup::init(PACKAGE_NAME, PACKAGE_NAME, PACKAGE_VERSION);
51 Setup::parseargs(argc, argv);
54 Setup::video(800, 600);
60 if (launch_leveleditor_mode)
62 LevelEditor leveleditor;
64 if(level_startup_file)
65 leveleditor.run(level_startup_file);
69 else if (launch_worldmap_mode && level_startup_file)
71 // hack to make it possible for someone to give an absolute path
72 std::string str(level_startup_file);
73 unsigned int i = str.find_last_of("/", str.size());
74 if(i != std::string::npos)
77 WorldMapNS::WorldMap worldmap;
78 worldmap.loadmap(str);
81 else if (level_startup_file)
83 GameSession session(level_startup_file, ST_GL_LOAD_LEVEL_FILE);
92 Setup::general_free();
95 Surface::debug_check();
97 Termination::shutdown();
98 #ifndef DEBUG // we want to see the backtrace in gdb when in debug mode
99 } catch (std::exception &e) {
100 std:: cerr << "Unhandled exception: " << e.what() << std::endl;