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