Moved Levelset into it's own class, pass WorldState around instead of PlayerState...
[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 #ifdef GRUMBEL
36   for (int i = 0; i < m_world->get_num_levels(); ++i)
37   {
38     /** get level's title */
39     std::string filename = m_world->get_level_filename(i);
40     std::string title = GameManager::current()->get_level_name(filename);
41     add_entry(i, title);
42   }
43 #endif
44
45   add_hl();
46   add_back(_("Back"));
47 }
48
49 void
50 ContribWorldMenu::check_menu()
51 {
52   int index = check();
53   if (index != -1) {
54     if (get_item_by_id(index).kind == MN_ACTION)
55     {
56       sound_manager->stop_music();
57 #ifdef GRUMBEL
58       GameManager::current()->start_level(std::move(m_world), index);
59 #endif
60     }
61   }
62 }
63
64 /* EOF */