Fixed trailing whitespaces in all(?) source files of supertux, also fixed some svn...
[supertux.git] / src / title.cpp
index 4b4d62a..6abfa3c 100644 (file)
 #include "options_menu.hpp"
 #include "console.hpp"
 #include "random_generator.hpp"
+#include "addon_manager.hpp"
 
 enum MainMenuIDs {
   MNID_STARTGAME,
   MNID_LEVELS_CONTRIB,
+  MNID_ADDONS,
   MNID_OPTIONMENU,
   MNID_LEVELEDITOR,
   MNID_CREDITS,
@@ -154,7 +156,8 @@ TitleScreen::get_level_name(const std::string& filename)
     level->get("name", name);
     return name;
   } catch(std::exception& e) {
-    log_warning << "Problem getting name of '" << filename << "'." << std::endl;
+         log_warning << "Problem getting name of '" << filename << "': "
+                  << e.what() << std::endl;
     return "";
   }
 }
@@ -206,6 +209,88 @@ TitleScreen::check_contrib_world_menu()
   }
 }
 
+namespace {
+  bool generate_addons_menu_sorter(const Addon& a1, const Addon& a2)
+  {
+    return a1.title < a2.title;
+  }
+}
+
+void
+TitleScreen::generate_addons_menu()
+{
+  AddonManager& adm = AddonManager::get_instance();
+  addons = adm.get_addons();
+
+  // sort addons
+  std::sort(addons.begin(), addons.end(), generate_addons_menu_sorter);
+
+  // hide installed addons from installation menu
+  std::vector<Addon>::iterator it2 = addons.begin();
+  while (it2 != addons.end()) {
+    Addon addon = *it2;
+    if (addon.isInstalled) {
+      bool restart = false;
+      for (std::vector<Addon>::iterator it = addons.begin(); it != addons.end(); ++it) {
+        Addon addon2 = *it;
+        if ((addon2.title == addon.title) && (!addon2.isInstalled)) {
+          addons.erase(it);
+          restart = true;
+          break;
+        }
+      }
+      if (restart) {
+        it2 = addons.begin();
+        continue;
+      }
+    }
+    it2++;
+  }
+
+  free_addons_menu();
+  addons_menu.reset(new Menu());
+
+  addons_menu->add_label(_("Add-ons"));
+  addons_menu->add_hl();
+
+  int i = 0;
+  for (std::vector<Addon>::iterator it = addons.begin(); it != addons.end(); ++it) {
+    Addon addon = *it;
+    if (addon.isInstalled) {
+      addons_menu->add_entry(i++, std::string(_("Remove")) + " \"" + addon.title + "\"");
+    } else {
+      addons_menu->add_entry(i++, std::string(_("Install")) + " \"" + addon.title + "\"");
+    }
+  }
+
+  addons_menu->add_hl();
+  addons_menu->add_back(_("Back"));
+}
+
+void
+TitleScreen::check_addons_menu()
+{
+  int index = addons_menu->check();
+  if (index == -1) return;
+
+  //AddonManager& adm = AddonManager::get_instance();
+  Addon addon = addons[index];
+  if (!addon.isInstalled) {
+    addon.install();
+    generate_addons_menu();
+    Menu::set_current(addons_menu.get());
+  } else {
+    addon.remove();
+    generate_addons_menu();
+    Menu::set_current(addons_menu.get());
+  }
+}
+
+void
+TitleScreen::free_addons_menu()
+{
+}
+
 void
 TitleScreen::make_tux_jump()
 {
@@ -233,7 +318,7 @@ TitleScreen::make_tux_jump()
   // Check if we should press the jump button
   bool randomJump = !randomWaitTimer.started();
   bool notMoving = (fabsf(dx) + fabsf(dy)) < 0.1;
-  bool pathBlocked = !sector->is_free_space(lookahead);
+  bool pathBlocked = !sector->is_free_of_statics(lookahead);
   if (!controller->released(Controller::JUMP)
       && (notMoving || pathBlocked || randomJump)) {
     float jumpDuration;
@@ -267,11 +352,13 @@ TitleScreen::TitleScreen()
 
   Player* player = titlesession->get_current_sector()->player;
   player->set_controller(controller.get());
+  player->set_speedlimit(230); //MAX_WALK_XM
 
   main_menu.reset(new Menu());
-  main_menu->set_pos(SCREEN_WIDTH/2, 335);
+  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"));
@@ -324,7 +411,7 @@ TitleScreen::draw(DrawingContext& context)
 void
 TitleScreen::update(float elapsed_time)
 {
-  main_loop->set_speed(0.6);
+  main_loop->set_speed(0.6f);
   Sector* sector  = titlesession->get_current_sector();
   sector->update(elapsed_time);
 
@@ -351,6 +438,11 @@ TitleScreen::update(float elapsed_time)
           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:
           main_loop->push_screen(new TextScroller("credits.txt"),
                                  new FadeOut(0.5));
@@ -379,6 +471,8 @@ TitleScreen::update(float elapsed_time)
       process_load_game_menu();
     } 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();
     }
@@ -413,7 +507,7 @@ TitleScreen::get_slotinfo(int slot)
       throw std::runtime_error("file is not a supertux-savegame.");
 
     savegame->get("title", title);
-  } catch(std::exception& e) {
+  } catch(std::exception& ) {
     std::ostringstream slottitle;
     slottitle << _("Slot") << " " << slot << " - " << _("Free");
     return slottitle.str();