Move all Menus into separate classes
[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 "supertux/world.hpp"
20 #include "util/gettext.hpp"
21
22 ContribMenu::ContribMenu(const std::vector<std::string>& level_worlds,
23                          std::vector<World*>& contrib_worlds)
24 {
25   add_label(_("Contrib Levels"));
26   add_hl();
27
28   int i = 0;
29   for (std::vector<std::string>::const_iterator it = level_worlds.begin(); it != level_worlds.end(); ++it)
30   {
31     try
32     {
33       std::auto_ptr<World> world (new World());
34       world->load(*it + "/info");
35       if (!world->hide_from_contribs) 
36       {
37         add_entry(i++, world->title);
38         contrib_worlds.push_back(world.release());
39       }
40     }
41     catch(std::exception& e)
42     {
43       log_warning << "Couldn't parse levelset info for '" << *it << "': " << e.what() << std::endl;
44     }
45   }
46
47   add_hl();
48   add_back(_("Back"));
49 }
50
51 /* EOF */