New grow and skid sounds from remaxim
[supertux.git] / src / title.cpp
index b948c59..f706e93 100644 (file)
@@ -1,8 +1,8 @@
 //  $Id$
-// 
+//
 //  SuperTux
-//  Copyright (C) 2000 Bill Kendrick <bill@newbreedsoftware.com>
 //  Copyright (C) 2004 Tobias Glaesser <tobi.web@gmx.de>
+//  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
 //
 //  This program is free software; you can redistribute it and/or
 //  modify it under the terms of the GNU General Public License
 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 //  GNU General Public License for more details.
-// 
+//
 //  You should have received a copy of the GNU General Public License
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 //  02111-1307, USA.
 
-#include <iostream>
-#include <sstream>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <errno.h>
-#include <unistd.h>
-#include <cmath>
-#include <SDL.h>
-#include <SDL_image.h>
-
-#ifndef WIN32
-#include <sys/types.h>
-#include <ctype.h>
-#endif
-
-#include "defines.h"
-#include "app/globals.h"
-#include "title.h"
-#include "video/screen.h"
-#include "video/surface.h"
-#include "high_scores.h"
-#include "gui/menu.h"
-#include "special/timer.h"
-#include "special/frame_rate.h"
-#include "app/setup.h"
-#include "level.h"
-#include "level_subset.h"
-#include "gameloop.h"
-#include "worldmap.h"
-#include "leveleditor.h"
-#include "scene.h"
-#include "player.h"
-#include "tile.h"
-#include "sector.h"
-#include "tilemap.h"
-#include "resources.h"
-#include "special/base.h"
-#include "app/gettext.h"
-#include "misc.h"
-#include "camera.h"
-
-static Surface* bkg_title;
-static Surface* logo;
-static Surface* img_choose_subset;
-
-static bool walking;
-static Timer random_timer;
-
-static int frame;
-
-static GameSession* titlesession;
-
-static std::vector<LevelSubset*> contrib_subsets;
-static LevelSubset* current_contrib_subset = 0;
-
-static std::set<std::string> worldmap_list;
-
-static LevelEditor* leveleditor;
-
-void update_load_save_game_menu(Menu* pmenu)
+#include <config.h>
+#include <version.h>
+
+#include "title.hpp"
+
+#include "addon/addon_manager.hpp"
+#include "audio/sound_manager.hpp"
+#include "fadeout.hpp"
+#include "file_system.hpp"
+#include "gameconfig.hpp"
+#include "gettext.hpp"
+#include "gui/menu.hpp"
+#include "lisp/parser.hpp"
+#include "log.hpp"
+#include "main.hpp"
+#include "mainloop.hpp"
+#include "object/camera.hpp"
+#include "object/player.hpp"
+#include "options_menu.hpp"
+#include "resources.hpp"
+#include "sector.hpp"
+#include "textscroller.hpp"
+#include "video/drawing_context.hpp"
+#include "world.hpp"
+
+#include <algorithm>
+#include <physfs.h>
+
+enum MainMenuIDs {
+  MNID_STARTGAME,
+  MNID_LEVELS_CONTRIB,
+  MNID_ADDONS,
+  MNID_OPTIONMENU,
+  MNID_LEVELEDITOR,
+  MNID_CREDITS,
+  MNID_QUITMAINMENU
+};
+
+void
+TitleScreen::update_load_game_menu()
 {
-  for(int i = 2; i < 7; ++i)
-    {
-      // FIXME: Insert a real savegame struct/class here instead of
-      // doing string vodoo
-      std::string tmp = slotinfo(i - 1);
-      pmenu->item[i].kind = MN_ACTION;
-      pmenu->item[i].change_text(tmp.c_str());
-    }
 }
 
-void free_contrib_menu()
+void
+TitleScreen::free_contrib_menu()
 {
-  for(std::vector<LevelSubset*>::iterator i = contrib_subsets.begin();
-      i != contrib_subsets.end(); ++i)
+  for(std::vector<World*>::iterator i = contrib_worlds.begin();
+      i != contrib_worlds.end(); ++i)
     delete *i;
 
-  contrib_subsets.clear();
-  contrib_menu->clear();
+  contrib_worlds.clear();
 }
 
-void generate_contrib_menu()
+void
+TitleScreen::generate_contrib_menu()
 {
-  /** Generating contrib levels list by making use of Level Subset */
-  std::set<std::string> level_subsets = FileSystem::dsubdirs("/levels", "info");
+  /** Generating contrib levels list by making use of Level Subset  */
+  std::vector<std::string> level_worlds;
+  char** files = PHYSFS_enumerateFiles("levels/");
+  for(const char* const* filename = files; *filename != 0; ++filename) {
+    std::string filepath = std::string("levels/") + *filename;
+    if(PHYSFS_isDirectory(filepath.c_str()))
+      level_worlds.push_back(filepath);
+  }
+  PHYSFS_freeList(files);
 
   free_contrib_menu();
+  contrib_menu.reset(new Menu());
 
-  contrib_menu->additem(MN_LABEL,_("Contrib Levels"),0,0);
-  contrib_menu->additem(MN_HL,"",0,0);
-  int i = 0;
-  for (std::set<std::string>::iterator it = level_subsets.begin(); it != level_subsets.end(); ++it)
-    {
-      LevelSubset* subset = new LevelSubset();
-      subset->load(*it);
-      contrib_menu->additem(MN_GOTO, subset->title, 0, contrib_subset_menu, i);
-      contrib_subsets.push_back(subset);
-      ++i;
-    }
+  contrib_menu->add_label(_("Contrib Levels"));
+  contrib_menu->add_hl();
 
-  i = level_subsets.size();
-  for(std::set<std::string>::iterator it = worldmap_list.begin(); it != worldmap_list.end(); ++it)
-    {
-    WorldMapNS::WorldMap worldmap;
-    worldmap.loadmap((*it).c_str());
-    contrib_menu->additem(MN_ACTION, worldmap.get_world_title(),0,0, i);
-    ++i;
+  int i = 0;
+  for (std::vector<std::string>::iterator it = level_worlds.begin();
+      it != level_worlds.end(); ++it) {
+    try {
+      std::auto_ptr<World> world (new World());
+      world->load(*it + "/info");
+      if(world->hide_from_contribs) {
+        continue;
+      }
+      contrib_menu->add_entry(i++, world->title);
+      contrib_worlds.push_back(world.release());
+    } catch(std::exception& e) {
+      log_warning << "Couldn't parse levelset info for '" << *it << "': " << e.what() << std::endl;
     }
+  }
 
-  contrib_menu->additem(MN_HL,"",0,0);
-  contrib_menu->additem(MN_BACK,_("Back"),0,0);
-
-  level_subsets.clear();
+  contrib_menu->add_hl();
+  contrib_menu->add_back(_("Back"));
 }
 
-void check_levels_contrib_menu()
+std::string
+TitleScreen::get_level_name(const std::string& filename)
 {
-  static int current_subset = -1;
+  try {
+    lisp::Parser parser;
+    const lisp::Lisp* root = parser.parse(filename);
+
+    const lisp::Lisp* level = root->get_lisp("supertux-level");
+    if(!level)
+      return "";
+
+    std::string name;
+    level->get("name", name);
+    return name;
+  } catch(std::exception& e) {
+      log_warning << "Problem getting name of '" << filename << "': "
+                  << e.what() << std::endl;
+    return "";
+  }
+}
 
+void
+TitleScreen::check_levels_contrib_menu()
+{
   int index = contrib_menu->check();
   if (index == -1)
     return;
 
-  if (index < (int)contrib_subsets.size())
-    {
-    if (current_subset != index)
-      {
-      current_subset = index;
-      // FIXME: This shouln't be busy looping
-      LevelSubset& subset = * (contrib_subsets[index]);
+  current_world = contrib_worlds[index];
 
-      current_contrib_subset = &subset;
+  if(!current_world->is_levelset) {
+    start_game();
+  } else {
+    contrib_world_menu.reset(new Menu());
 
-      contrib_subset_menu->clear();
+    contrib_world_menu->add_label(current_world->title);
+    contrib_world_menu->add_hl();
 
-      contrib_subset_menu->additem(MN_LABEL, subset.title, 0,0);
-      contrib_subset_menu->additem(MN_HL,"",0,0);
+    for (unsigned int i = 0; i < current_world->get_num_levels(); ++i)
+    {
+      /** get level's title */
+      std::string filename = current_world->get_level_filename(i);
+      std::string title = get_level_name(filename);
+      contrib_world_menu->add_entry(i, title);
+    }
 
-      for (int i = 0; i < subset.get_num_levels(); ++i)
-        {
-        /** get level's title */
-        std::string level_title = "<no title>";
+    contrib_world_menu->add_hl();
+    contrib_world_menu->add_back(_("Back"));
 
-        LispReader* reader = LispReader::load(subset.get_level_filename(i), "supertux-level");
-        if(!reader)
-          {
-          std::cerr << "Error: Could not open level file. Ignoring...\n";
-          continue;
-          }
+    Menu::push_current(contrib_world_menu.get());
+  }
+}
 
-        reader->read_string("name", level_title, true);
-        delete reader;
+void
+TitleScreen::check_contrib_world_menu()
+{
+  int index = contrib_world_menu->check();
+  if (index != -1) {
+    if (contrib_world_menu->get_item_by_id(index).kind == MN_ACTION) {
+      sound_manager->stop_music();
+      GameSession* session =
+        new GameSession(current_world->get_level_filename(index));
+      main_loop->push_screen(session);
+    }
+  }
+}
 
-        contrib_subset_menu->additem(MN_ACTION, level_title, 0, 0, i);
-        }
+namespace {
+  bool generate_addons_menu_sorter(const Addon* a1, const Addon* a2)
+  {
+    return a1->title < a2->title;
+  }
 
-      contrib_subset_menu->additem(MN_HL,"",0,0);      
-      contrib_subset_menu->additem(MN_BACK, _("Back"), 0, 0);
+  const int ADDON_LIST_START_ID = 10;
+}
 
-      titlesession->get_current_sector()->activate();
-      titlesession->set_current();
-      }
-    }
-  else if((unsigned)index < worldmap_list.size() + (int)contrib_subsets.size())
-    {
-    WorldMapNS::WorldMap worldmap;
-    std::set<std::string>::iterator it = worldmap_list.begin();
-    for(int i = index - contrib_subsets.size(); i > 0; --i)
-    ++it;
+void
+TitleScreen::generate_addons_menu()
+{
+  AddonManager& adm = AddonManager::get_instance();
 
-    std::string map_filename = *it;
+  // refresh list of addons
+  addons = adm.get_addons();
+  
+  // sort list
+  std::sort(addons.begin(), addons.end(), generate_addons_menu_sorter);
 
-    worldmap.set_map_filename(map_filename);
+  // (re)generate menu
+  free_addons_menu();
+  addons_menu.reset(new Menu());
 
-    // hack to erase the extension
-    unsigned int ext_pos = it->find_last_of(".");
-    if(ext_pos != std::string::npos)
-      map_filename.erase(ext_pos, map_filename.size() - ext_pos);
+  addons_menu->add_label(_("Add-ons"));
+  addons_menu->add_hl();
+  
+#ifdef HAVE_LIBCURL
+  addons_menu->add_entry(0, std::string(_("Check Online")));
+#else
+  addons_menu->add_inactive(0, std::string(_("Check Online (disabled)")));
+#endif
 
-    // TODO: slots should be available for contrib maps
-    worldmap.loadgame(st_save_dir + "/" + map_filename + "-slot1.stsg");
+  //addons_menu->add_hl();
 
-    worldmap.display();  // run the map
+  for (unsigned int i = 0; i < addons.size(); i++) {
+    const Addon& addon = *addons[i];
+    std::string text = "";
+    if (addon.kind != "") text += addon.kind + " ";
+    text += std::string("\"") + addon.title + "\"";
+    if (addon.author != "") text += " by \"" + addon.author + "\"";
+    addons_menu->add_toggle(ADDON_LIST_START_ID + i, text, addon.loaded);
+  }
 
-    Menu::set_current(main_menu);
-    }
+  addons_menu->add_hl();
+  addons_menu->add_back(_("Back"));
 }
 
-void check_contrib_subset_menu()
+void
+TitleScreen::check_addons_menu()
 {
-  int index = contrib_subset_menu->check();
-  if (index != -1)
-    {
-      if (contrib_subset_menu->get_item_by_id(index).kind == MN_ACTION)
-        {
-          std::cout << "Starting level: " << index << std::endl;
-          
-          GameSession session(
-              current_contrib_subset->get_level_filename(index), ST_GL_PLAY);
-          session.run();
-          player_status.reset();
-          Menu::set_current(main_menu);
-          titlesession->get_current_sector()->activate();
-          titlesession->set_current();
-        }
-    }  
+  int index = addons_menu->check();
+  if (index == -1) return;
+
+  // check if "Check Online" was chosen
+  if (index == 0) {
+    try {
+      AddonManager::get_instance().check_online();
+      generate_addons_menu();
+      Menu::set_current(addons_menu.get());
+      addons_menu->set_active_item(index);
+    } 
+    catch (std::runtime_error e) {
+      log_warning << "Check for available Add-ons failed: " << e.what() << std::endl;
+    }
+    return;
+  }
+
+  // if one of the Addons listed was chosen, take appropriate action
+  if ((index >= ADDON_LIST_START_ID) && (index < ADDON_LIST_START_ID) + addons.size()) {
+    Addon& addon = *addons[index - ADDON_LIST_START_ID];
+    if (!addon.installed) {
+      try {
+        AddonManager::get_instance().install(&addon);
+      } 
+      catch (std::runtime_error e) {
+        log_warning << "Installing Add-on failed: " << e.what() << std::endl;
+      }
+      addons_menu->set_toggled(index, addon.loaded);
+    } else if (!addon.loaded) {
+      try {
+        AddonManager::get_instance().enable(&addon);
+      } 
+      catch (std::runtime_error e) {
+        log_warning << "Enabling Add-on failed: " << e.what() << std::endl;
+      }
+      addons_menu->set_toggled(index, addon.loaded);
+    } else {
+      try {
+        AddonManager::get_instance().disable(&addon);
+      } 
+      catch (std::runtime_error e) {
+        log_warning << "Disabling Add-on failed: " << e.what() << std::endl;
+      }
+      addons_menu->set_toggled(index, addon.loaded);
+    }
+  }
 }
 
-void draw_demo(double frame_ratio)
+void
+TitleScreen::free_addons_menu()
 {
-  Sector* world  = titlesession->get_current_sector();
-  Player* tux = world->player;
+}
 
-  world->play_music(LEVEL_MUSIC);
-  
-  global_frame_counter++;
-  tux->key_event((SDLKey) keymap.right,DOWN);
-  
-  if(random_timer.check())
-    {
-      if(walking)
-        tux->key_event((SDLKey) keymap.jump,UP);
-      else
-        tux->key_event((SDLKey) keymap.jump,DOWN);
-    }
-  else
-    {
-      random_timer.start(rand() % 3000 + 3000);
-      walking = !walking;
-    }
+void
+TitleScreen::make_tux_jump()
+{
+  static bool jumpWasReleased = true;
+  Sector* sector  = titlesession->get_current_sector();
+  Player* tux = sector->player;
+
+  controller->update();
+  controller->press(Controller::RIGHT);
+
+  // Check if we should press the jump button
+  Rect lookahead = tux->get_bbox();
+  lookahead.p2.x += 96;
+  bool pathBlocked = !sector->is_free_of_statics(lookahead);
+  if ((pathBlocked && jumpWasReleased) || !tux->on_ground()) {
+    controller->press(Controller::JUMP);
+    jumpWasReleased = false;
+  } else {
+    jumpWasReleased = true;
+  }
+
+  // Wrap around at the end of the level back to the beginning
+  if(sector->get_width() - 320 < tux->get_pos().x) {
+    sector->activate("main");
+    sector->camera->reset(tux->get_pos());
+  }
+}
 
-  // Wrap around at the end of the level back to the beginnig
-  if(world->solids->get_width() * 32 - 320 < tux->base.x)
-    {
-      tux->level_begin();
-      world->camera->reset(Vector(tux->base.x, tux->base.y));
-    }
+TitleScreen::TitleScreen()
+{
+  controller.reset(new CodeController());
+  titlesession.reset(new GameSession("levels/misc/menu.stl"));
 
-  tux->can_jump = true;
-  float last_tux_x_pos = tux->base.x;
-  world->action(frame_ratio);
-  
+  Player* player = titlesession->get_current_sector()->player;
+  player->set_controller(controller.get());
+  player->set_speedlimit(230); //MAX_WALK_XM
 
-  // disabled for now, since with the new jump code we easily get deadlocks
-  // Jump if tux stays in the same position for one loop, ie. if he is
-  // stuck behind a wall
-  if (last_tux_x_pos == tux->base.x)
-    {
-      walking = false;
-    }
+  generate_main_menu();
 
-  world->draw(*titlesession->context);
+  frame = std::auto_ptr<Surface>(new Surface("images/engine/menu/frame.png"));
 }
 
-/* --- TITLE SCREEN --- */
-void title(void)
+void
+TitleScreen::generate_main_menu()
 {
-  random_timer.init(true);
-
-  walking = true;
-
-  Ticks::pause_init();
+  main_menu.reset(new Menu());
+  main_menu->set_pos(SCREEN_WIDTH/2, SCREEN_HEIGHT/2 + 35);
+  main_menu->add_entry(MNID_STARTGAME, _("Start Game"));
+  main_menu->add_entry(MNID_LEVELS_CONTRIB, _("Contrib Levels"));
+  main_menu->add_entry(MNID_ADDONS, _("Add-ons"));
+  main_menu->add_submenu(_("Options"), get_options_menu());
+  main_menu->add_entry(MNID_CREDITS, _("Credits"));
+  main_menu->add_entry(MNID_QUITMAINMENU, _("Quit"));
+}
 
-  titlesession = new GameSession(datadir + "/levels/misc/menu.stl", ST_GL_DEMO_GAME);
+TitleScreen::~TitleScreen()
+{
+}
 
-  /* Load images: */
-  bkg_title = new Surface(datadir + "/images/background/arctis.jpg", false);
-  logo = new Surface(datadir + "/images/title/logo.png", true);
-  img_choose_subset = new Surface(datadir + "/images/status/choose-level-subset.png", true);
+void
+TitleScreen::setup()
+{
+  player_status->reset();
 
-  /* Generating contrib maps by only using a string_list */
-  worldmap_list = FileSystem::dfiles("levels/worldmap", "", "icyisland.stwm");
+  Sector* sector = titlesession->get_current_sector();
+  if(Sector::current() != sector) {
+    sector->play_music(LEVEL_MUSIC);
+    sector->activate(sector->player->get_pos());
+  }
 
-  titlesession->get_current_sector()->activate();
-  titlesession->set_current();
+  Menu::set_current(main_menu.get());
+}
 
-  /* --- Main title loop: --- */
-  frame = 0;
+void
+TitleScreen::leave()
+{
+  Sector* sector = titlesession->get_current_sector();
+  sector->deactivate();
+  Menu::set_current(NULL);
+}
 
-  FrameRate frame_rate(100);  
-  frame_rate.set_frame_limit(false);
-  
-  random_timer.start(rand() % 2000 + 2000);
+void
+TitleScreen::draw(DrawingContext& context)
+{
+  Sector* sector  = titlesession->get_current_sector();
+  sector->draw(context);
+
+  // FIXME: Add something to scale the frame to the resolution of the screen
+  context.draw_surface(frame.get(), Vector(0,0),LAYER_FOREGROUND1);
+
+  context.draw_text(small_font, "SuperTux " PACKAGE_VERSION "\n",
+      Vector(5, SCREEN_HEIGHT - 50), ALIGN_LEFT, LAYER_FOREGROUND1);
+  context.draw_text(small_font,
+      _(
+"Copyright (c) 2007 SuperTux Devel Team\n"
+"This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to\n"
+"redistribute it under certain conditions; see the file COPYING for details.\n"
+),
+      Vector(5, SCREEN_HEIGHT - 50 + small_font->get_height() + 5),
+      ALIGN_LEFT, LAYER_FOREGROUND1);
+}
 
-  Menu::set_current(main_menu);
-  DrawingContext& context = *titlesession->context;
-  while (Menu::current())
-    {
-      // if we spent to much time on a menu entry
-      frame_rate.smooth_hanger();
-    
-      // Calculate the movement-factor
-      double frame_ratio = frame_rate.get();
-      
-      if(frame_ratio > 1.5) /* Quick hack to correct the unprecise CPU clocks a little bit. */
-        frame_ratio = 1.5 + (frame_ratio - 1.5) * 0.85;
-      /* Lower the frame_ratio that Tux doesn't jump to hectically throught the demo. */
-      frame_ratio /= 2;
-
-      SDL_Event event;
-      while (SDL_PollEvent(&event))
-        {
-          if (Menu::current())
-            {
-              Menu::current()->event(event);
-            }
-         // FIXME: QUIT signal should be handled more generic, not locally
-          if (event.type == SDL_QUIT)
-            Menu::set_current(0);
-        }
-  
-      /* Draw the background: */
-      draw_demo(frame_ratio);
-      
-      
-      if (Menu::current() == main_menu)
-        context.draw_surface(logo, Vector(screen->w/2 - logo->w/2, 30),
-            LAYER_FOREGROUND1+1);
-
-      context.draw_text(white_small_text, " SuperTux " VERSION "\n", Vector(0, screen->h - 70), LEFT_ALLIGN, LAYER_FOREGROUND1);
-      context.draw_text(white_small_text,
-        _("Copyright (c) 2003 SuperTux Devel Team\n"
-          "This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you\n"
-          "are welcome to redistribute it under certain conditions; see the file COPYING\n"
-          "for details.\n"), Vector(0, screen->h - 70 + white_small_text->get_height()), LEFT_ALLIGN, LAYER_FOREGROUND1);
-
-      /* Don't draw menu, if quit is true */
-      Menu* menu = Menu::current();
-      if(menu)
-        {
-          menu->draw(context);
-          menu->action();
-         
-          if(menu == main_menu)
-            {
-              switch (main_menu->check())
-                {
-                case MNID_STARTGAME:
-                  // Start Game, ie. goto the slots menu
-                  update_load_save_game_menu(load_game_menu);
-                  break;
-                case MNID_LEVELS_CONTRIB:
-                  // Contrib Menu
-                  puts("Entering contrib menu");
-                  generate_contrib_menu();
-                  break;
-                case MNID_LEVELEDITOR:
-                  leveleditor = new LevelEditor();
-                  leveleditor->run();
-                  delete leveleditor;
-                  Menu::set_current(main_menu);
-                  frame_rate.update();
-                  break;
-                case MNID_CREDITS:
-                  display_text_file("CREDITS", SCROLL_SPEED_CREDITS, white_big_text , white_text, white_small_text, blue_text );
-                  Menu::set_current(main_menu);
-                  break;
-                case MNID_QUITMAINMENU:
-                  Menu::set_current(0);
-                  break;
-                }
-            }
-          else if(menu == options_menu)
-            {
-              process_options_menu();
-            }
-          else if(menu == load_game_menu)
-            {
-              if(event.key.keysym.sym == SDLK_DELETE)
-                {
-                int slot = menu->get_active_item_id();
-                std::stringstream stream;
-                stream << slot;
-                std::string str = _("Are you sure you want to delete slot") + stream.str() + "?";
-                
-                if(confirm_dialog(bkg_title, str.c_str()))
-                  {
-                  str = st_save_dir + "/slot" + stream.str() + ".stsg";
-                  printf("Removing: %s\n",str.c_str());
-                  remove(str.c_str());
-                  }
-
-                update_load_save_game_menu(load_game_menu);
-                Menu::set_current(main_menu);
-                frame_rate.update();
-                }
-              else if (process_load_game_menu())
-                {
-                  // FIXME: shouldn't be needed if GameSession doesn't relay on global variables
-                  titlesession->get_current_sector()->activate();
-                  titlesession->set_current();
-                  //titletux.level_begin();
-                  frame_rate.update();
-                }
-            }
-          else if(menu == contrib_menu)
-            {
-              check_levels_contrib_menu();
-            }
-          else if (menu == contrib_subset_menu)
-            {
-              check_contrib_subset_menu();
-            }
-        }
-
-      mouse_cursor->draw(context);
-     
-      context.do_drawing();
-
-      frame_rate.update();
-
-      /* Pause: */
-      frame++;
-      SDL_Delay(25);
+void
+TitleScreen::update(float elapsed_time)
+{
+  main_loop->set_speed(0.6f);
+  Sector* sector  = titlesession->get_current_sector();
+  sector->update(elapsed_time);
+
+  make_tux_jump();
+
+  Menu* menu = Menu::current();
+  if(menu) {
+    if(menu == main_menu.get()) {
+      switch (main_menu->check()) {
+        case MNID_STARTGAME:
+          // Start Game, ie. goto the slots menu
+          if(main_world.get() == NULL) {
+            main_world.reset(new World());
+            main_world->load("levels/world1/info");
+          }
+          current_world = main_world.get();
+          start_game();
+          break;
+
+        case MNID_LEVELS_CONTRIB:
+          // Contrib Menu
+          generate_contrib_menu();
+          Menu::push_current(contrib_menu.get());
+          break;
+
+        case MNID_ADDONS:
+          // Add-ons Menu
+          generate_addons_menu();
+          Menu::push_current(addons_menu.get());
+          break;
+
+        case MNID_CREDITS:
+          Menu::set_current(NULL);
+          main_loop->push_screen(new TextScroller("credits.txt"),
+                                 new FadeOut(0.5));
+          break;
+
+        case MNID_QUITMAINMENU:
+          main_loop->quit(new FadeOut(0.25));
+          sound_manager->stop_music(0.25);
+          break;
+      }
+    } else if(menu == contrib_menu.get()) {
+      check_levels_contrib_menu();
+    } else if(menu == addons_menu.get()) {
+      check_addons_menu();
+    } else if (menu == contrib_world_menu.get()) {
+      check_contrib_world_menu();
     }
-  /* Free surfaces: */
-
-  free_contrib_menu();
-  worldmap_list.clear();
-  delete titlesession;
-  delete bkg_title;
-  delete logo;
-  delete img_choose_subset;
+  }
+
+  // reopen menu if user closed it (so that the app doesn't close when user
+  // accidently hit ESC)
+  if(Menu::current() == 0 && main_loop->has_no_pending_fadeout()) {
+    generate_main_menu();
+    Menu::set_current(main_menu.get());
+  }
 }
 
-
-// EOF //
-
+void
+TitleScreen::start_game()
+{
+  Menu::set_current(NULL);
+  std::string basename = current_world->get_basedir();
+  basename = basename.substr(0, basename.length()-1);
+  std::string worlddirname = FileSystem::basename(basename);
+  std::ostringstream stream;
+  stream << "profile" << config->profile << "/" << worlddirname << ".stsg";
+  std::string slotfile = stream.str();
+
+  try {
+    current_world->set_savegame_filename(slotfile);
+    current_world->run();
+  } catch(std::exception& e) {
+    log_fatal << "Couldn't start world: " << e.what() << std::endl;
+  }
+}