6470a42104437b6e479191a2e1b80d42b1d8193d
[supertux.git] / src / supertux.cpp
1 //  $Id$
2 // 
3 //  SuperTux
4 //  Copyright (C) 2004 Tobias Glaesser <tobi.web@gmx.de>
5 //
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.
10 //
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.
15 // 
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
19 //  02111-1307, USA.
20 #include <config.h>
21
22 #include <sys/types.h>
23 #include <cctype>
24 #include <iostream>
25 #include <exception>
26 #include <locale.h>
27
28 #include "utils/exceptions.h"
29 #include "defines.h"
30 #include "app/globals.h"
31 #include "app/setup.h"
32 #include "intro.h"
33 #include "title.h"
34 #include "gameloop.h"
35 #include "leveleditor.h"
36 #include "video/screen.h"
37 #include "worldmap.h"
38 #include "resources.h"
39 #include "video/surface.h"
40 #include "tile_manager.h"
41 #include "app/gettext.h"
42 #include "player.h"
43 #include "misc.h"
44 #include "utils/configfile.h"
45
46 int main(int argc, char * argv[])
47 {
48 #ifndef DEBUG
49   try {
50 #endif
51     config = new MyConfig;
52     
53     // we want translations only on messages
54     setlocale(LC_ALL, "C");
55     setlocale(LC_MESSAGES, "");
56     
57     (void) bindtextdomain(PACKAGE, LOCALEDIR);
58     (void) textdomain(PACKAGE);
59     (void) bind_textdomain_codeset(PACKAGE, "ISO-8859-1");
60     
61     Setup::info(PACKAGE_NAME, PACKAGE, PACKAGE_VERSION);  
62     
63     Setup::directories();
64     Setup::parseargs(argc, argv);
65
66     Setup::audio();
67     Setup::video(800, 600);
68     Setup::joystick();
69     Setup::general();
70     st_menu();
71     loadshared();
72
73     if (launch_leveleditor_mode)
74     {
75       LevelEditor leveleditor;
76
77       if(level_startup_file)
78         leveleditor.run(level_startup_file);
79       else
80         leveleditor.run();
81     }
82     else if (launch_worldmap_mode && level_startup_file)
83     {
84       // hack to make it possible for someone to give an absolute path
85       std::string str(level_startup_file);
86       unsigned int i = str.find_last_of("/", str.size());
87       if(i != std::string::npos)
88         str.erase(0, i+1);
89
90       WorldMapNS::WorldMap worldmap;
91       worldmap.loadmap(str);
92       worldmap.display();
93     }
94     else if (level_startup_file)
95     {
96       GameSession session(level_startup_file, ST_GL_LOAD_LEVEL_FILE);
97       session.run();
98     }
99     else
100     {  
101       title();
102     }
103
104     unloadshared();
105     Setup::general_free();
106     st_menu_free();
107     TileManager::destroy_instance();
108 #ifdef DEBUG
109     Surface::debug_check();
110 #endif
111     Termination::shutdown();
112 #ifndef DEBUG  // we want to see the backtrace in gdb when in debug mode
113   } catch (SuperTuxException &e) {
114     std::cerr << "Unhandled SuperTux exception:\n  " << e.what_file() << ":" << e.what_line() << ": " << e.what() << std::endl;
115   } catch (std::exception &e) {
116     std:: cerr << "Unhandled exception: " << e.what() << std::endl;
117   }
118 #endif
119
120   return 0;
121 }