bed2e9f26e0d1be2b4d621f9b5568351f0b7ebc0
[supertux.git] / src / supertux / menu / contrib_world_menu.cpp
1 //  SuperTux
2 //  Copyright (C) 2009 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/contrib_world_menu.hpp"
18
19 #include "audio/sound_manager.hpp"
20 #include "gui/menu_item.hpp"
21 #include "supertux/globals.hpp"
22 #include "supertux/screen_manager.hpp"
23 #include "supertux/title_screen.hpp"
24 #include "supertux/world.hpp"
25 #include "util/gettext.hpp"
26
27 ContribWorldMenu::ContribWorldMenu(const World& current_world) :
28   m_current_world(current_world)
29 {
30   add_label(m_current_world.get_title());
31   add_hl();
32
33   for (unsigned int i = 0; i < m_current_world.get_num_levels(); ++i)
34   {
35     /** get level's title */
36     std::string filename = m_current_world.get_level_filename(i);
37     std::string title = TitleScreen::get_level_name(filename);
38     add_entry(i, title);
39   }
40
41   add_hl();
42   add_back(_("Back"));
43 }
44
45 void
46 ContribWorldMenu::check_menu()
47 {
48   int index = check();
49   if (index != -1) {
50     if (get_item_by_id(index).kind == MN_ACTION) 
51     {
52       sound_manager->stop_music();
53       GameSession* session = new GameSession(m_current_world.get_level_filename(index));
54       g_screen_manager->push_screen(session);
55     }
56   }
57 }
58
59 /* EOF */