the boat works now
[supertux.git] / src / title.cpp
index d2ed7da..da22b49 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
@@ -13,7 +13,7 @@
 //  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
@@ -46,7 +46,7 @@
 #include "level.hpp"
 #include "world.hpp"
 #include "game_session.hpp"
-#include "worldmap.hpp"
+#include "worldmap/worldmap.hpp"
 #include "player_status.hpp"
 #include "tile.hpp"
 #include "sector.hpp"
 #include "object/player.hpp"
 #include "resources.hpp"
 #include "gettext.hpp"
-#include "misc.hpp"
 #include "textscroller.hpp"
 #include "file_system.hpp"
 #include "control/joystickkeyboardcontroller.hpp"
 #include "control/codecontroller.hpp"
 #include "main.hpp"
-#include "msg.hpp"
+#include "log.hpp"
+#include "options_menu.hpp"
 #include "console.hpp"
 
+enum MainMenuIDs {
+  MNID_STARTGAME,
+  MNID_LEVELS_CONTRIB,
+  MNID_OPTIONMENU,
+  MNID_LEVELEDITOR,
+  MNID_CREDITS,
+  MNID_QUITMAINMENU
+};
+
 void
 TitleScreen::update_load_game_menu()
 {
@@ -86,8 +95,6 @@ TitleScreen::free_contrib_menu()
     delete *i;
 
   contrib_worlds.clear();
-  current_contrib_world = 0;
-  current_world = -1;
 }
 
 void
@@ -122,7 +129,7 @@ TitleScreen::generate_contrib_menu()
       contrib_worlds.push_back(world.release());
     } catch(std::exception& e) {
 #ifdef DEBUG
-      msg_warning << "Couldn't parse levelset info for '" << *it << "': " << e.what() << std::endl;
+      log_warning << "Couldn't parse levelset info for '" << *it << "': " << e.what() << std::endl;
 #endif
     }
   }
@@ -146,7 +153,7 @@ TitleScreen::get_level_name(const std::string& filename)
     level->get("name", name);
     return name;
   } catch(std::exception& e) {
-    msg_warning << "Problem getting name of '" << filename << "'." << std::endl;
+    log_warning << "Problem getting name of '" << filename << "'." << std::endl;
     return "";
   }
 }
@@ -158,28 +165,21 @@ TitleScreen::check_levels_contrib_menu()
   if (index == -1)
     return;
 
-  World& world = * (contrib_worlds[index]);
-
-  if(!world.is_levelset) {
-    // TODO fade out
-    world.run();
-  }
-
-  if (current_world != index) {
-    current_world = index;
-    World& world = * (contrib_worlds[index]);
-
-    current_contrib_world = &world;
+  current_world = contrib_worlds[index];
 
+  if(!current_world->is_levelset) {
+    update_load_game_menu();
+    Menu::push_current(load_game_menu.get());
+  } else {
     contrib_world_menu.reset(new Menu());
 
-    contrib_world_menu->add_label(world.title);
+    contrib_world_menu->add_label(current_world->title);
     contrib_world_menu->add_hl();
 
-    for (unsigned int i = 0; i < world.get_num_levels(); ++i)
+    for (unsigned int i = 0; i < current_world->get_num_levels(); ++i)
     {
       /** get level's title */
-      std::string filename = world.get_level_filename(i);
+      std::string filename = current_world->get_level_filename(i);
       std::string title = get_level_name(filename);
       contrib_world_menu->add_entry(i, title);
     }
@@ -199,8 +199,7 @@ TitleScreen::check_contrib_world_menu()
     if (contrib_world_menu->get_item_by_id(index).kind == MN_ACTION) {
       sound_manager->stop_music();
       GameSession* session =
-        new GameSession(
-          current_contrib_world->get_level_filename(index), ST_GL_PLAY);
+        new GameSession(current_world->get_level_filename(index));
       main_loop->push_screen(session);
     }
   }  
@@ -263,18 +262,18 @@ TitleScreen::make_tux_jump()
 TitleScreen::TitleScreen()
 {
   controller.reset(new CodeController());
-  titlesession.reset(new GameSession("levels/misc/menu.stl", ST_GL_DEMO_GAME));
-
-  // delete contrib_world_menu;
-  // contrib_world_menu = new Menu();
-
-  titlesession->get_current_sector()->activate("main");
-  titlesession->set_current();
+  titlesession.reset(new GameSession("levels/misc/menu.stl"));
 
   Player* player = titlesession->get_current_sector()->player;
   player->set_controller(controller.get());
 
-  Menu::set_current(main_menu); 
+  main_menu.reset(new Menu());
+  main_menu->set_pos(SCREEN_WIDTH/2, 335);
+  main_menu->add_entry(MNID_STARTGAME, _("Start Game"));
+  main_menu->add_entry(MNID_LEVELS_CONTRIB, _("Contrib Levels"));
+  main_menu->add_submenu(_("Options"), get_options_menu());
+  main_menu->add_entry(MNID_CREDITS, _("Credits"));
+  main_menu->add_entry(MNID_QUITMAINMENU, _("Quit"));
 }
 
 TitleScreen::~TitleScreen()
@@ -287,10 +286,12 @@ TitleScreen::setup()
   player_status->reset();
 
   Sector* sector = titlesession->get_current_sector();
-  sector->play_music(LEVEL_MUSIC);
-  sector->activate(sector->player->get_pos());
+  if(Sector::current() != sector) {
+    sector->play_music(LEVEL_MUSIC);
+    sector->activate(sector->player->get_pos());
+  }
 
-  Menu::set_current(main_menu);
+  Menu::set_current(main_menu.get());
 }
 
 void
@@ -306,12 +307,6 @@ TitleScreen::draw(DrawingContext& context)
   Sector* sector  = titlesession->get_current_sector();
   sector->draw(context);
  
-  /*
-  if (Menu::current() == main_menu)
-    context.draw_surface(logo, Vector(SCREEN_WIDTH/2 - logo->get_width()/2, 30),
-            LAYER_FOREGROUND1+1);
-  */
-
   context.draw_text(white_small_text, " SuperTux " PACKAGE_VERSION "\n",
       Vector(0, SCREEN_HEIGHT - 50), LEFT_ALLIGN, LAYER_FOREGROUND1);
   context.draw_text(white_small_text,
@@ -337,10 +332,15 @@ TitleScreen::update(float elapsed_time)
   if(menu) {
     menu->update();
          
-    if(menu == main_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();
           update_load_game_menu();
           Menu::push_current(load_game_menu.get());
           break;
@@ -357,8 +357,6 @@ TitleScreen::update(float elapsed_time)
           main_loop->quit();
           break;
       }
-    } else if(menu == options_menu) {
-      process_options_menu();
     } else if(menu == load_game_menu.get()) {
       /*
       if(event.key.keysym.sym == SDLK_DELETE) {
@@ -369,12 +367,12 @@ TitleScreen::update(float elapsed_time)
         
         if(confirm_dialog(bkg_title, str.c_str())) {
           str = "save/slot" + stream.str() + ".stsg";
-          msg_debug << "Removing: " << str << std::endl;
+          log_debug << "Removing: " << str << std::endl;
           PHYSFS_delete(str.c_str());
         }
 
         update_load_save_game_menu(load_game_menu);
-        Menu::set_current(main_menu);
+        Menu::set_current(main_menu.get());
       }*/
       process_load_game_menu();
     } else if(menu == contrib_menu.get()) {
@@ -387,7 +385,7 @@ TitleScreen::update(float elapsed_time)
   // reopen menu of user closed it (so that the app doesn't close when user
   // accidently hit ESC)
   if(Menu::current() == 0) {
-    Menu::set_current(main_menu);
+    Menu::set_current(main_menu.get());
   }
 }
 
@@ -395,11 +393,14 @@ std::string
 TitleScreen::get_slotinfo(int slot)
 {
   std::string tmp;
-  std::string slotfile;
   std::string title;
-  std::stringstream stream;
-  stream << slot;
-  slotfile = "save/slot" + stream.str() + ".stsg";
+
+  std::string basename = current_world->get_basedir();
+  basename = basename.substr(0, basename.length()-1);
+  std::string worlddirname = FileSystem::basename(basename);
+  std::ostringstream stream;
+  stream << "save/" << worlddirname << "_" << slot << ".stsg";
+  std::string slotfile = stream.str();
 
   try {
     lisp::Parser parser;
@@ -411,11 +412,14 @@ TitleScreen::get_slotinfo(int slot)
 
     savegame->get("title", title);
   } catch(std::exception& e) {
-    return std::string(_("Slot")) + " " + stream.str() + " - " +
-      std::string(_("Free"));
+    std::ostringstream slottitle;
+    slottitle << _("Slot") << " " << slot << " - " << _("Free");
+    return slottitle.str();
   }
 
-  return std::string("Slot ") + stream.str() + " - " + title;
+  std::ostringstream slottitle;
+  slottitle << _("Slot") << " " << slot << " - " << title;
+  return slottitle.str();
 }
 
 bool
@@ -429,27 +433,21 @@ TitleScreen::process_load_game_menu()
   if(load_game_menu->get_item_by_id(slot).kind != MN_ACTION)
     return false;
 
+  std::string basename = current_world->get_basedir();
+  basename = basename.substr(0, basename.length()-1);
+  std::string worlddirname = FileSystem::basename(basename);
   std::stringstream stream;
-  stream << slot;
-  std::string slotfile = "save/slot" + stream.str() + ".stsg";
+  stream << "save/" << worlddirname << "_" << slot << ".stsg";
+  std::string slotfile = stream.str();
 
-  sound_manager->stop_music();
   fadeout(256);
-  DrawingContext context;
-  context.draw_text(white_text, "Loading...",
-                    Vector(SCREEN_WIDTH/2, SCREEN_HEIGHT/2),
-                    CENTER_ALLIGN, LAYER_FOREGROUND1);
-  context.do_drawing();
-
-  WorldMapNS::WorldMap* worldmap = new WorldMapNS::WorldMap();
-
-  worldmap->set_map_filename("/levels/world1/worldmap.stwm");
-  // Load the game or at least set the savegame_file variable
-  worldmap->loadgame(slotfile);
 
-  main_loop->push_screen(worldmap);
-
-  //Menu::set_current(main_menu);
+  try {
+    current_world->set_savegame_filename(slotfile);
+    current_world->run();
+  } catch(std::exception& e) {
+    log_fatal << "Couldn't start world: " << e.what() << std::endl;
+  }
 
   return true;
 }