Norwegian Nynorsk translation by Karl Ove Hufthammer!
[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 "exceptions.h"
27 #include "defines.h"
28 #include "globals.h"
29 #include "setup.h"
30 #include "intro.h"
31 #include "title.h"
32 #include "gameloop.h"
33 #include "leveleditor.h"
34 #include "screen/screen.h"
35 #include "worldmap.h"
36 #include "resources.h"
37 #include "screen/surface.h"
38 #include "tile_manager.h"
39 #include "gettext.h"
40
41 int main(int argc, char * argv[])
42 {
43 #ifndef DEBUG
44   try {
45 #endif
46     setlocale(LC_ALL, "");
47     bindtextdomain(PACKAGE, LOCALEDIR);
48     textdomain(PACKAGE);
49     bind_textdomain_codeset(PACKAGE, "ISO-8859-1");
50       
51     st_directory_setup();
52     parseargs(argc, argv);
53
54     st_audio_setup();
55     st_video_setup();
56     st_joystick_setup();
57     st_general_setup();
58     st_menu();
59     loadshared();
60
61     if (launch_leveleditor_mode)
62     {
63       LevelEditor leveleditor;
64
65       if(level_startup_file)
66         leveleditor.run(level_startup_file);
67       else
68         leveleditor.run();
69     }
70     else if (launch_worldmap_mode && level_startup_file)
71     {
72       // hack to make it possible for someone to give an absolute path
73       std::string str(level_startup_file);
74       unsigned int i = str.find_last_of("/", str.size());
75       if(i != std::string::npos)
76         str.erase(0, i+1);
77
78       WorldMapNS::WorldMap worldmap;
79       worldmap.loadmap(str);
80       worldmap.display();
81     }
82     else if (level_startup_file)
83     {
84       GameSession session(level_startup_file, ST_GL_LOAD_LEVEL_FILE);
85       session.run();
86     }
87     else
88     {  
89       title();
90     }
91
92     SDL_FillRect(screen, 0, 0);
93     //SDL_Flip(screen);
94
95     unloadshared();
96     st_general_free();
97     TileManager::destroy_instance();
98     #ifdef DEBUG
99     Surface::debug_check();
100     #endif
101     st_shutdown();
102 #ifndef DEBUG  // we want to see the backtrace in gdb when in debug mode
103   }
104   catch (SuperTuxException &e)
105   {
106     std::cerr << "Unhandled SuperTux exception:\n  " << e.what_file() << ":" << e.what_line() << ": " << e.what() << std::endl;
107   }
108   catch (std::exception &e)
109   {
110     std:: cerr << "Unhandled exception: " << e.what() << std::endl;
111   }
112 #endif
113
114   return 0;
115 }