Renamed MenuManager to MenuStorage and MenuManager2 to MenuManager
[supertux.git] / src / supertux / menu / profile_menu.cpp
1 //  SuperTux
2 //  Copyright (C) 2008 Ingo Ruhnke <grumbel@gmx.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 "supertux/menu/profile_menu.hpp"
18
19 #include <sstream>
20
21 #include "gui/menu.hpp"
22 #include "gui/menu_manager.hpp"
23 #include "gui/menu_item.hpp"
24 #include "supertux/gameconfig.hpp"
25 #include "util/gettext.hpp"
26
27 ProfileMenu::ProfileMenu() 
28 {
29   add_label(_("Select Profile"));
30   add_hl();
31   for(int i = 0; i < 5; ++i)
32   {
33     std::ostringstream out;
34     out << "Profile " << i+1;
35     add_entry(i+1, out.str());
36   }
37
38   add_hl();
39   add_back(_("Back"));
40 }
41
42 void
43 ProfileMenu::menu_action(MenuItem* item) 
44 {
45   g_config->profile = item->id;
46   MenuManager::set_current(0);
47 }
48
49 /*
50   std::string
51   TitleScreen::get_slotinfo(int slot)
52   {
53   std::string tmp;
54   std::string title;
55
56   std::string basename = current_world->get_basedir();
57   basename = basename.substr(0, basename.length()-1);
58   std::string worlddirname = FileSystem::basename(basename);
59   std::ostringstream stream;
60   stream << "profile" << config->profile << "/" << worlddirname << "_" << slot << ".stsg";
61   std::string slotfile = stream.str();
62
63   try {
64   lisp::Parser parser;
65   const lisp::Lisp* root = parser.parse(slotfile);
66
67   const lisp::Lisp* savegame = root->get_lisp("supertux-savegame");
68   if(!savegame)
69   throw std::runtime_error("file is not a supertux-savegame.");
70
71   savegame->get("title", title);
72   } catch(std::exception& ) {
73   std::ostringstream slottitle;
74   slottitle << _("Slot") << " " << slot << " - " << _("Free");
75   return slottitle.str();
76   }
77
78   std::ostringstream slottitle;
79   slottitle << _("Slot") << " " << slot << " - " << title;
80   return slottitle.str();
81   }
82 */
83
84 /* EOF */