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