Removed trailing whitespace from all *.?pp files
[supertux.git] / src / supertux / menu / contrib_world_menu.cpp
1 //  SuperTux
2 //  Copyright (C) 2009 Ingo Ruhnke <grumbel@gmail.com>
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/game_manager.hpp"
22 #include "supertux/globals.hpp"
23 #include "supertux/screen_fade.hpp"
24 #include "supertux/screen_manager.hpp"
25 #include "supertux/title_screen.hpp"
26 #include "supertux/world.hpp"
27 #include "util/gettext.hpp"
28
29 ContribWorldMenu::ContribWorldMenu(std::unique_ptr<World> world) :
30   m_world(std::move(world))
31 {
32   add_label(m_world->get_title());
33   add_hl();
34
35   for (int i = 0; i < m_world->get_num_levels(); ++i)
36   {
37     /** get level's title */
38     std::string filename = m_world->get_level_filename(i);
39     std::string title = GameManager::current()->get_level_name(filename);
40     add_entry(i, title);
41   }
42
43   add_hl();
44   add_back(_("Back"));
45 }
46
47 void
48 ContribWorldMenu::check_menu()
49 {
50   int index = check();
51   if (index != -1) {
52     if (get_item_by_id(index).kind == MN_ACTION)
53     {
54       sound_manager->stop_music();
55       GameManager::current()->start_level(std::move(m_world), index);
56     }
57   }
58 }
59
60 /* EOF */