092a94759f39373110dce157cbadae82eddadc46
[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 "supertux/world.hpp"
22 #include "util/gettext.hpp"
23
24 ContribMenu::ContribMenu()
25 {
26   /** Generating contrib levels list by making use of Level Subset  */
27   std::vector<std::string> level_worlds;
28   char** files = PHYSFS_enumerateFiles("levels/");
29   for(const char* const* filename = files; *filename != 0; ++filename) {
30     std::string filepath = std::string("levels/") + *filename;
31     if(PHYSFS_isDirectory(filepath.c_str()))
32       level_worlds.push_back(filepath);
33   }
34   PHYSFS_freeList(files);
35
36
37   add_label(_("Contrib Levels"));
38   add_hl();
39
40   int i = 0;
41   for (std::vector<std::string>::const_iterator it = level_worlds.begin(); it != level_worlds.end(); ++it)
42   {
43     try
44     {
45       std::auto_ptr<World> world (new World());
46       world->load(*it + "/info");
47       if (!world->hide_from_contribs) 
48       {
49         add_entry(i++, world->title);
50         m_contrib_worlds.push_back(world.release());
51       }
52     }
53     catch(std::exception& e)
54     {
55       log_warning << "Couldn't parse levelset info for '" << *it << "': " << e.what() << std::endl;
56     }
57   }
58
59   add_hl();
60   add_back(_("Back"));
61 }
62
63 ContribMenu::~ContribMenu()
64 {
65   for(std::vector<World*>::iterator i = m_contrib_worlds.begin(); i != m_contrib_worlds.end(); ++i)
66   {
67     delete *i;
68   }
69   m_contrib_worlds.clear();
70 }
71
72 World*
73 ContribMenu::get_current_world()
74 {
75   int index = check();
76   if (index == -1)
77   {
78     return 0;
79   }
80   else
81   {
82     return m_contrib_worlds[index];
83   }
84 }
85
86 /* EOF */