Made code compile, not work, with SDL2, old code that needs work is disabled and...
[supertux.git] / src / supertux / main.cpp
1 //  SuperTux
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #include <config.h>
18 #include <version.h>
19
20 #include <SDL_image.h>
21 #include <physfs.h>
22 #include <iostream>
23 #include <binreloc.h>
24 #include <tinygettext/log.hpp>
25 #include <boost/format.hpp>
26 #include <stdio.h>
27 extern "C" {
28 #include <findlocale.h>
29 }
30
31 #include "supertux/main.hpp"
32
33 #ifdef MACOSX
34 namespace supertux_apple {
35 #  include <CoreFoundation/CoreFoundation.h>
36 } // namespace supertux_apple
37 #endif
38
39 #include "addon/addon_manager.hpp"
40 #include "audio/sound_manager.hpp"
41 #include "control/joystickkeyboardcontroller.hpp"
42 #include "math/random_generator.hpp"
43 #include "physfs/ifile_stream.hpp"
44 #include "physfs/physfs_sdl.hpp"
45 #include "physfs/physfs_file_system.hpp"
46 #include "scripting/squirrel_util.hpp"
47 #include "supertux/gameconfig.hpp"
48 #include "supertux/globals.hpp"
49 #include "supertux/player_status.hpp"
50 #include "supertux/screen_manager.hpp"
51 #include "supertux/resources.hpp"
52 #include "supertux/title_screen.hpp"
53 #include "util/file_system.hpp"
54 #include "util/gettext.hpp"
55 #include "video/drawing_context.hpp"
56 #include "worldmap/worldmap.hpp"
57
58 namespace { DrawingContext *context_pointer; }
59
60 #ifdef _WIN32
61 # define WRITEDIR_NAME PACKAGE_NAME
62 #else
63 # define WRITEDIR_NAME "." PACKAGE_NAME
64 #endif
65
66 void 
67 Main::init_config()
68 {
69   g_config = new Config();
70   try {
71     g_config->load();
72   } catch(std::exception& e) {
73     log_info << "Couldn't load config file: " << e.what() << ", using default settings" << std::endl;
74   }
75 }
76
77 void
78 Main::init_tinygettext()
79 {
80   dictionary_manager = new tinygettext::DictionaryManager();
81   tinygettext::Log::set_log_info_callback(0);
82   dictionary_manager->set_filesystem(std::auto_ptr<tinygettext::FileSystem>(new PhysFSFileSystem));
83
84   dictionary_manager->add_directory("locale");
85   dictionary_manager->set_charset("UTF-8");
86
87   // Config setting "locale" overrides language detection
88   if (g_config->locale != "") 
89   {
90     dictionary_manager->set_language(tinygettext::Language::from_name(g_config->locale));
91   } else {
92     FL_Locale *locale;
93     FL_FindLocale(&locale);
94     tinygettext::Language language = tinygettext::Language::from_spec( locale->lang?locale->lang:"", locale->country?locale->country:"", locale->variant?locale->variant:"");
95     FL_FreeLocale(&locale);
96     dictionary_manager->set_language(language);
97   }
98 }
99
100 void
101 Main::init_physfs(const char* argv0)
102 {
103   if(!PHYSFS_init(argv0)) {
104     std::stringstream msg;
105     msg << "Couldn't initialize physfs: " << PHYSFS_getLastError();
106     throw std::runtime_error(msg.str());
107   }
108
109   // allow symbolic links
110   PHYSFS_permitSymbolicLinks(1);
111
112   // Initialize physfs (this is a slightly modified version of
113   // PHYSFS_setSaneConfig)
114   const char *env_writedir;
115   std::string writedir;
116
117   if ((env_writedir = getenv("SUPERTUX2_USER_DIR")) != NULL) {
118     writedir = env_writedir;
119     if(!PHYSFS_setWriteDir(writedir.c_str())) {
120       std::ostringstream msg;
121       msg << "Failed to use configuration directory '"
122           <<  writedir << "': " << PHYSFS_getLastError();
123       throw std::runtime_error(msg.str());
124     }
125
126   } else {
127     std::string userdir = PHYSFS_getUserDir();
128
129     // Set configuration directory
130     writedir = userdir + WRITEDIR_NAME;
131     if(!PHYSFS_setWriteDir(writedir.c_str())) {
132       // try to create the directory
133       if(!PHYSFS_setWriteDir(userdir.c_str()) || !PHYSFS_mkdir(WRITEDIR_NAME)) {
134         std::ostringstream msg;
135         msg << "Failed creating configuration directory '"
136             << writedir << "': " << PHYSFS_getLastError();
137         throw std::runtime_error(msg.str());
138       }
139
140       if(!PHYSFS_setWriteDir(writedir.c_str())) {
141         std::ostringstream msg;
142         msg << "Failed to use configuration directory '"
143             <<  writedir << "': " << PHYSFS_getLastError();
144         throw std::runtime_error(msg.str());
145       }
146     }
147   }
148   PHYSFS_addToSearchPath(writedir.c_str(), 0);
149
150   // when started from source dir...
151   std::string dir = PHYSFS_getBaseDir();
152   if (dir[dir.length() - 1] != '/')
153     dir += "/";
154   dir += "data";
155   std::string testfname = dir;
156   testfname += "/credits.txt";
157   bool sourcedir = false;
158   FILE* f = fopen(testfname.c_str(), "r");
159   if(f) {
160     fclose(f);
161     if(!PHYSFS_addToSearchPath(dir.c_str(), 1)) {
162       log_warning << "Couldn't add '" << dir << "' to physfs searchpath: " << PHYSFS_getLastError() << std::endl;
163     } else {
164       sourcedir = true;
165     }
166   }
167
168 #ifdef MACOSX
169   {
170     using namespace supertux_apple;
171
172     // when started from Application file on Mac OS X...
173     char path[PATH_MAX];
174     CFBundleRef mainBundle = CFBundleGetMainBundle();
175     if(mainBundle == 0)
176       throw "Assertion failed: mainBundle != 0";
177     CFURLRef mainBundleURL = CFBundleCopyBundleURL(mainBundle);
178     if(mainBundleURL == 0)
179       throw "Assertion failed: mainBundleURL != 0";
180     CFStringRef pathStr = CFURLCopyFileSystemPath(mainBundleURL, kCFURLPOSIXPathStyle);
181     if(pathStr == 0)
182       throw "Assertion failed: pathStr != 0";
183     CFStringGetCString(pathStr, path, PATH_MAX, kCFStringEncodingUTF8);
184     CFRelease(mainBundleURL);
185     CFRelease(pathStr);
186
187     dir = std::string(path) + "/Contents/Resources/data";
188     testfname = dir + "/credits.txt";
189     sourcedir = false;
190     f = fopen(testfname.c_str(), "r");
191     if(f) {
192       fclose(f);
193       if(!PHYSFS_addToSearchPath(dir.c_str(), 1)) {
194         log_warning << "Couldn't add '" << dir << "' to physfs searchpath: " << PHYSFS_getLastError() << std::endl;
195       } else {
196         sourcedir = true;
197       }
198     }
199   }
200 #endif
201
202 #ifdef _WIN32
203   PHYSFS_addToSearchPath(".\\data", 1);
204 #endif
205
206   if(!sourcedir) {
207     std::string datadir = PHYSFS_getBaseDir();
208     datadir = datadir.substr(0, datadir.rfind(INSTALL_SUBDIR_BIN));
209     datadir += "/" INSTALL_SUBDIR_SHARE;
210 #ifdef ENABLE_BINRELOC
211
212     char* dir;
213     br_init (NULL);
214     dir = br_find_data_dir(datadir.c_str());
215     datadir = dir;
216     free(dir);
217
218 #endif
219     if(!PHYSFS_addToSearchPath(datadir.c_str(), 1)) {
220       log_warning << "Couldn't add '" << datadir << "' to physfs searchpath: " << PHYSFS_getLastError() << std::endl;
221     }
222   }
223
224   //show search Path
225   char** searchpath = PHYSFS_getSearchPath();
226   for(char** i = searchpath; *i != NULL; i++)
227     log_info << "[" << *i << "] is in the search path" << std::endl;
228   PHYSFS_freeList(searchpath);
229 }
230
231 void
232 Main::print_usage(const char* argv0)
233 {
234   std::string default_user_data_dir =
235       std::string(PHYSFS_getUserDir()) + WRITEDIR_NAME;
236
237   std::cerr << boost::format(_(
238                  "\n"
239                  "Usage: %s [OPTIONS] [LEVELFILE]\n\n"
240                  "Options:\n"
241                  "  -f, --fullscreen             Run in fullscreen mode\n"
242                  "  -w, --window                 Run in window mode\n"
243                  "  -g, --geometry WIDTHxHEIGHT  Run SuperTux in given resolution\n"
244                  "  -a, --aspect WIDTH:HEIGHT    Run SuperTux with given aspect ratio\n"
245                  "  -d, --default                Reset video settings to default values\n"
246                  "  --renderer RENDERER          Use sdl, opengl, or auto to render\n"
247                  "  --disable-sfx                Disable sound effects\n"
248                  "  --disable-music              Disable music\n"
249                  "  -h, --help                   Show this help message and quit\n"
250                  "  -v, --version                Show SuperTux version and quit\n"
251                  "  --console                    Enable ingame scripting console\n"
252                  "  --noconsole                  Disable ingame scripting console\n"
253                  "  --show-fps                   Display framerate in levels\n"
254                  "  --no-show-fps                Do not display framerate in levels\n"
255                  "  --record-demo FILE LEVEL     Record a demo to FILE\n"
256                  "  --play-demo FILE LEVEL       Play a recorded demo\n"
257                  "  -s, --debug-scripts          Enable script debugger.\n"
258                  "  --print-datadir              Print supertux's primary data directory.\n"
259                  "\n"
260                  "Environment variables:\n"
261                  "  SUPERTUX2_USER_DIR           Directory for user data (savegames, etc.);\n"
262                  "                               default %s\n"
263                  "\n"
264                  ))
265             % argv0 % default_user_data_dir
266             << std::flush;
267 }
268
269 /**
270  * Options that should be evaluated prior to any initializations at all go here
271  */
272 bool
273 Main::pre_parse_commandline(int argc, char** argv)
274 {
275   for(int i = 1; i < argc; ++i) {
276     std::string arg = argv[i];
277
278     if(arg == "--version" || arg == "-v") {
279       std::cout << PACKAGE_NAME << " " << PACKAGE_VERSION << std::endl;
280       return true;
281     }
282     if(arg == "--help" || arg == "-h") {
283       print_usage(argv[0]);
284       return true;
285     }
286     if(arg == "--print-datadir") {
287       /*
288        * Print the datadir searchpath to stdout, one path per
289        * line. Then exit. Intended for use by the supertux-editor.
290        */
291       char **sp;
292       size_t sp_index;
293       sp = PHYSFS_getSearchPath();
294       if (sp)
295         for (sp_index = 0; sp[sp_index]; sp_index++)
296           std::cout << sp[sp_index] << std::endl;
297       PHYSFS_freeList(sp);
298       return true;
299     }
300   }
301
302   return false;
303 }
304
305 /**
306  * Options that should be evaluated after config is read go here
307  */
308 bool
309 Main::parse_commandline(int argc, char** argv)
310 {
311   for(int i = 1; i < argc; ++i) {
312     std::string arg = argv[i];
313
314     if(arg == "--fullscreen" || arg == "-f") {
315       g_config->use_fullscreen = true;
316     } else if(arg == "--default" || arg == "-d") {
317       g_config->use_fullscreen = false;
318       
319       g_config->window_size     = Size(800, 600);
320       g_config->fullscreen_size = Size(800, 600);
321       g_config->aspect_size     = Size(0, 0);  // auto detect
322       
323     } else if(arg == "--window" || arg == "-w") {
324       g_config->use_fullscreen = false;
325     } else if(arg == "--geometry" || arg == "-g") {
326       i += 1;
327       if(i >= argc) 
328       {
329         print_usage(argv[0]);
330         throw std::runtime_error("Need to specify a size (WIDTHxHEIGHT) for geometry argument");
331       } 
332       else 
333       {
334         int width, height;
335         if (sscanf(argv[i], "%dx%d", &width, &height) != 2)
336         {
337           print_usage(argv[0]);
338           throw std::runtime_error("Invalid geometry spec, should be WIDTHxHEIGHT");
339         }
340         else
341         {
342           g_config->window_size     = Size(width, height);
343           g_config->fullscreen_size = Size(width, height);
344         }
345       }
346     } else if(arg == "--aspect" || arg == "-a") {
347       i += 1;
348       if(i >= argc) 
349       {
350         print_usage(argv[0]);
351         throw std::runtime_error("Need to specify a ratio (WIDTH:HEIGHT) for aspect ratio");
352       } 
353       else 
354       {
355         int aspect_width  = 0;
356         int aspect_height = 0;
357         if (strcmp(argv[i], "auto") == 0)
358         {
359           aspect_width  = 0;
360           aspect_height = 0;
361         }
362         else if (sscanf(argv[i], "%d:%d", &aspect_width, &aspect_height) != 2) 
363         {
364           print_usage(argv[0]);
365           throw std::runtime_error("Invalid aspect spec, should be WIDTH:HEIGHT or auto");
366         }
367         else 
368         {
369           float aspect_ratio = static_cast<float>(aspect_width) / static_cast<float>(aspect_height);
370
371           // use aspect ratio to calculate logical resolution
372           if (aspect_ratio > 1) {
373             g_config->aspect_size = Size(static_cast<int>(600 * aspect_ratio + 0.5),
374                                          600);
375           } else {
376             g_config->aspect_size = Size(600, 
377                                          static_cast<int>(600 * 1/aspect_ratio + 0.5));
378           }
379         }
380       }
381     } else if(arg == "--renderer") {
382       i += 1;
383       if(i >= argc) 
384       {
385         print_usage(argv[0]);
386         throw std::runtime_error("Need to specify a renderer for renderer argument");
387       } 
388       else 
389       {
390         g_config->video = VideoSystem::get_video_system(argv[i]);
391       }
392     } else if(arg == "--show-fps") {
393       g_config->show_fps = true;
394     } else if(arg == "--no-show-fps") {
395       g_config->show_fps = false;
396     } else if(arg == "--console") {
397       g_config->console_enabled = true;
398     } else if(arg == "--noconsole") {
399       g_config->console_enabled = false;
400     } else if(arg == "--disable-sfx") {
401       g_config->sound_enabled = false;
402     } else if(arg == "--disable-music") {
403       g_config->music_enabled = false;
404     } else if(arg == "--play-demo") {
405       if(i+1 >= argc) {
406         print_usage(argv[0]);
407         throw std::runtime_error("Need to specify a demo filename");
408       }
409       g_config->start_demo = argv[++i];
410     } else if(arg == "--record-demo") {
411       if(i+1 >= argc) {
412         print_usage(argv[0]);
413         throw std::runtime_error("Need to specify a demo filename");
414       }
415       g_config->record_demo = argv[++i];
416     } else if(arg == "--debug-scripts" || arg == "-s") {
417       g_config->enable_script_debugger = true;
418     } else if(arg[0] != '-') {
419       g_config->start_level = arg;
420     } else {
421       log_warning << "Unknown option '" << arg << "'. Use --help to see a list of options" << std::endl;
422       return true;
423     }
424   }
425
426   return false;
427 }
428
429 void
430 Main::init_sdl()
431 {
432   if(SDL_Init(SDL_INIT_TIMER | SDL_INIT_VIDEO | SDL_INIT_JOYSTICK) < 0) {
433     std::stringstream msg;
434     msg << "Couldn't initialize SDL: " << SDL_GetError();
435     throw std::runtime_error(msg.str());
436   }
437   // just to be sure
438   atexit(SDL_Quit);
439
440  // SDL_EnableUNICODE(1); //old code, mofif by giby 
441  //   SDL_JoystickID myID = SDL_JoystickInstanceID(myOpenedStick);
442   
443
444   // wait 100ms and clear SDL event queue because sometimes we have random
445   // joystick events in the queue on startup...
446   SDL_Delay(100);
447   SDL_Event dummy;
448   while(SDL_PollEvent(&dummy))
449     ;
450 }
451
452 void
453 Main::init_rand()
454 {
455   g_config->random_seed = gameRandom.srand(g_config->random_seed);
456
457   graphicsRandom.srand(0);
458
459   //const char *how = config->random_seed? ", user fixed.": ", from time().";
460   //log_info << "Using random seed " << config->random_seed << how << std::endl;
461 }
462
463 void
464 Main::init_video()
465 {
466   // FIXME: Add something here
467   SCREEN_WIDTH  = 800;
468   SCREEN_HEIGHT = 600;
469     
470 /*    SDL_Window *window;        // Declare a pointer to an SDL_Window
471   context_pointer->init_renderer();
472   g_screen = SDL_GetWindowSurface(*window);*/
473
474  // SDL_WM_SetCaption(PACKAGE_NAME " " PACKAGE_VERSION, 0);
475
476  /* // set icon -- Original part B4 SDL2
477 #ifdef MACOSX
478   const char* icon_fname = "images/engine/icons/supertux-256x256.png";
479 #else
480   const char* icon_fname = "images/engine/icons/supertux.xpm";
481 #endif
482   SDL_Surface* icon;
483   try {
484     icon = IMG_Load_RW(get_physfs_SDLRWops(icon_fname), true);
485   } catch (const std::runtime_error& err) {
486     icon = 0;
487     log_warning << "Couldn't load icon '" << icon_fname << "': " << err.what() << std::endl;
488   }
489   if(icon != 0) {
490     SDL_WM_SetIcon(icon, 0); //now  SDL_SetWindowIcon(window, surface);  if needed 
491     SDL_FreeSurface(icon);
492   }
493   else {
494     log_warning << "Couldn't load icon '" << icon_fname << "'" << std::endl;
495   }
496     */
497     
498   //  SDL_WM_SetCaption(PACKAGE_NAME " " PACKAGE_VERSION, 0);
499     
500     // set icon
501 #ifdef MACOSX
502     const char* icon_fname = "images/engine/icons/supertux-256x256.png";
503 #else
504     const char* icon_fname = "images/engine/icons/supertux.xpm";
505 #endif
506     SDL_Window* icon = 0;
507     try {
508         //icon = IMG_Load_RW(get_physfs_SDLRWops(icon_fname), true);
509     } catch (const std::runtime_error& err) {
510         log_warning << "Couldn't load icon '" << icon_fname << "': " << err.what() << std::endl;
511     }
512     if(icon != 0) {
513      //   SDL_SetWindowIcon(icon, 0); //now  SDL_SetWindowIcon(window, surface);  if needed
514       //  SDL_FreeSurface(icon);
515     }
516     else {
517         log_warning << "Couldn't load icon '" << icon_fname << "'" << std::endl;
518     }
519     
520     
521    /* // set icon
522 #ifdef MACOSX
523     const char* icon_fname = "images/engine/icons/supertux-256x256.png";
524 #else
525     const char* icon_fname = "images/engine/icons/supertux.xpm";
526 #endif
527     
528     SDL_Window icon = SDL_CreateWindow(PACKAGE_NAME " " PACKAGE_VERSION,
529                                           SDL_WINDOWPOS_UNDEFINED,
530                                           SDL_WINDOWPOS_UNDEFINED,
531                                           640, 480,
532                                           SDL_WINDOW_FULLSCREEN | SDL_WINDOW_OPENGL);
533    // not sure of that */
534
535   SDL_ShowCursor(0);
536
537   log_info << (g_config->use_fullscreen?"fullscreen ":"window ")
538            << " Window: "     << g_config->window_size
539            << " Fullscreen: " << g_config->fullscreen_size
540            << " Area: "       << g_config->aspect_size << std::endl;
541 }
542
543 void
544 Main::init_audio()
545 {
546   sound_manager = new SoundManager();
547
548   sound_manager->enable_sound(g_config->sound_enabled);
549   sound_manager->enable_music(g_config->music_enabled);
550 }
551
552 void
553 Main::quit_audio()
554 {
555   if(sound_manager != NULL) {
556     delete sound_manager;
557     sound_manager = NULL;
558   }
559 }
560
561 void
562 Main::wait_for_event(float min_delay, float max_delay)
563 {
564   assert(min_delay <= max_delay);
565
566   Uint32 min = (Uint32) (min_delay * 1000);
567   Uint32 max = (Uint32) (max_delay * 1000);
568
569   Uint32 ticks = SDL_GetTicks();
570   while(SDL_GetTicks() - ticks < min) {
571     SDL_Delay(10);
572     sound_manager->update();
573   }
574
575   // clear event queue
576   SDL_Event event;
577   while (SDL_PollEvent(&event))
578   {}
579
580   /* Handle events: */
581   bool running = false;
582   ticks = SDL_GetTicks();
583   while(running) {
584     while(SDL_PollEvent(&event)) {
585       switch(event.type) {
586         case SDL_QUIT:
587           g_screen_manager->quit();
588           break;
589         case SDL_KEYDOWN:
590         case SDL_JOYBUTTONDOWN:
591         case SDL_MOUSEBUTTONDOWN:
592           running = false;
593       }
594     }
595     if(SDL_GetTicks() - ticks >= (max - min))
596       running = false;
597     sound_manager->update();
598     SDL_Delay(10);
599   }
600 }
601
602 static Uint32 last_timelog_ticks = 0;
603 static const char* last_timelog_component = 0;
604
605 static inline void timelog(const char* component)
606 {
607   Uint32 current_ticks = SDL_GetTicks();
608
609   if(last_timelog_component != 0) {
610     log_info << "Component '" << last_timelog_component <<  "' finished after " << (current_ticks - last_timelog_ticks) / 1000.0 << " seconds" << std::endl;
611   }
612
613   last_timelog_ticks = current_ticks;
614   last_timelog_component = component;
615 }
616
617 int
618 Main::run(int argc, char** argv)
619 {
620   int result = 0;
621
622   try {
623     /* Do this before pre_parse_commandline, because --help now shows the
624      * default user data dir. */
625     init_physfs(argv[0]);
626
627     if(pre_parse_commandline(argc, argv))
628       return 0;
629
630     init_sdl();
631     Console::instance = new Console();
632
633     timelog("controller");
634     g_jk_controller = new JoystickKeyboardController();
635
636     timelog("config");
637     init_config();
638
639     timelog("commandline");
640     if(parse_commandline(argc, argv))
641       return 0;
642
643     timelog("video");
644     DrawingContext context;
645     context_pointer = &context;
646     init_video();
647     
648     timelog("audio");
649     init_audio();
650     
651     timelog("tinygettext");
652     init_tinygettext();
653
654     Console::instance->init_graphics();
655
656     timelog("scripting");
657     scripting::init_squirrel(g_config->enable_script_debugger);
658
659     timelog("resources");
660     Resources::load_shared();
661     
662     timelog("addons");
663     AddonManager::get_instance().load_addons();
664
665     timelog(0);
666
667     const std::auto_ptr<PlayerStatus> default_playerstatus(new PlayerStatus());
668
669     g_screen_manager = new ScreenManager();
670
671     init_rand();
672
673     if(g_config->start_level != "") {
674       // we have a normal path specified at commandline, not a physfs path.
675       // So we simply mount that path here...
676       std::string dir = FileSystem::dirname(g_config->start_level);
677       log_debug << "Adding dir: " << dir << std::endl;
678       PHYSFS_addToSearchPath(dir.c_str(), true);
679
680       if(g_config->start_level.size() > 4 &&
681          g_config->start_level.compare(g_config->start_level.size() - 5, 5, ".stwm") == 0) {
682         g_screen_manager->push_screen(new worldmap::WorldMap(
683                                  FileSystem::basename(g_config->start_level), default_playerstatus.get()));
684       } else {
685         std::auto_ptr<GameSession> session (
686           new GameSession(FileSystem::basename(g_config->start_level), default_playerstatus.get()));
687
688         g_config->random_seed =session->get_demo_random_seed(g_config->start_demo);
689         init_rand();//initialise generator with seed from session
690
691         if(g_config->start_demo != "")
692           session->play_demo(g_config->start_demo);
693
694         if(g_config->record_demo != "")
695           session->record_demo(g_config->record_demo);
696         g_screen_manager->push_screen(session.release());
697       }
698     } else {
699       g_screen_manager->push_screen(new TitleScreen(default_playerstatus.get()));
700     }
701
702     g_screen_manager->run(context);
703   } catch(std::exception& e) {
704     log_fatal << "Unexpected exception: " << e.what() << std::endl;
705     result = 1;
706   } catch(...) {
707     log_fatal << "Unexpected exception" << std::endl;
708     result = 1;
709   }
710
711   delete g_screen_manager;
712   g_screen_manager = NULL;
713
714   Resources::unload_shared();
715   quit_audio();
716
717   if(g_config)
718     g_config->save();
719   delete g_config;
720   g_config = NULL;
721   delete g_jk_controller;
722   g_jk_controller = NULL;
723   delete Console::instance;
724   Console::instance = NULL;
725   scripting::exit_squirrel();
726   delete texture_manager;
727   texture_manager = NULL;
728   SDL_Quit();
729   PHYSFS_deinit();
730
731   return result;
732 }
733
734 /* EOF */