Switched from passing pointers around to using numeric MenuIds and a factory class
[supertux.git] / src / supertux / menu / contrib_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_menu.hpp"
18
19 #include <physfs.h>
20
21 #include "gui/menu_manager.hpp"
22 #include "supertux/menu/menu_storage.hpp"
23 #include "supertux/title_screen.hpp"
24 #include "supertux/world.hpp"
25 #include "util/gettext.hpp"
26
27 ContribMenu::ContribMenu() :
28   m_contrib_worlds()
29 {
30   /** Generating contrib levels list by making use of Level Subset  */
31   std::vector<std::string> level_worlds;
32   char** files = PHYSFS_enumerateFiles("levels/");
33   for(const char* const* filename = files; *filename != 0; ++filename) {
34     std::string filepath = std::string("levels/") + *filename;
35     if(PHYSFS_isDirectory(filepath.c_str()))
36       level_worlds.push_back(filepath);
37   }
38   PHYSFS_freeList(files);
39
40   add_label(_("Contrib Levels"));
41   add_hl();
42
43   int i = 0;
44   for (std::vector<std::string>::const_iterator it = level_worlds.begin(); it != level_worlds.end(); ++it)
45   {
46     try
47     {
48       std::unique_ptr<World> world (new World());
49       world->load(*it + "/info");
50       if (!world->hide_from_contribs) 
51       {
52         add_entry(i++, world->get_title());
53         m_contrib_worlds.push_back(std::move(world));
54       }
55     }
56     catch(std::exception& e)
57     {
58       log_info << "Couldn't parse levelset info for '" << *it << "': " << e.what() << std::endl;
59     }
60   }
61
62   add_hl();
63   add_back(_("Back"));
64 }
65
66 ContribMenu::~ContribMenu()
67 {
68 }
69
70 void
71 ContribMenu::check_menu()
72 {
73   int index = check();
74   if (index != -1)
75   {
76     World* world = m_contrib_worlds[index].get();
77     
78     if (!world->is_levelset) 
79     {
80       TitleScreen::start_game(world);
81     }
82     else 
83     {
84 #ifdef GRUMBEL
85       m_contrib_world_menu.reset(new ContribWorldMenu(*world));
86       MenuManager::instance().push_current(MenuStorage::CONTRIB_WORLD_MENU);
87 #endif
88     }
89   }
90 }
91
92 /* EOF */