First round of cleanup up the AddonManager a bit
[supertux.git] / src / supertux / menu / addon_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/addon_menu.hpp"
18
19 #include <config.h>
20 #include <algorithm>
21 #include <boost/format.hpp>
22
23 #include "addon/addon.hpp"
24 #include "addon/addon_manager.hpp"
25 #include "gui/menu.hpp"
26 #include "gui/menu_item.hpp"
27 #include "util/gettext.hpp"
28
29 AddonMenu::AddonMenu() :
30   m_addon_manager(*AddonManager::current())
31 {
32   refresh();
33 }
34
35 void
36 AddonMenu::refresh()
37 {
38   clear();
39
40   // refresh list of addons
41   const auto& addons_ref = m_addon_manager.get_addons();
42   std::vector<std::reference_wrapper<Addon> > addons;
43   std::transform(addons_ref.begin(), addons_ref.end(), std::back_inserter(addons),
44                  [](const std::unique_ptr<Addon>& addon) -> Addon& {
45                    return *addon.get();
46                  });
47
48   // sort list
49   std::sort(addons.begin(), addons.end(),
50             [](const Addon& lhs, const Addon& rhs)
51             {
52               return lhs.title < lhs.title;
53             });
54
55   add_label(_("Add-ons"));
56   add_hl();
57
58   if (!m_addon_manager.has_online_support())
59   {
60     add_inactive(MNID_CHECK_ONLINE, std::string(_("Check Online (disabled)")));
61   }
62   else
63   {
64     add_entry(MNID_CHECK_ONLINE, std::string(_("Check Online")));
65   }
66
67   //add_hl();
68
69   for (auto& addon_ : addons)
70   {
71     Addon& addon = addon_.get();
72     std::string text = "";
73
74     if (!addon.kind.empty())
75     {
76       std::string kind = addon.kind;
77       if(addon.kind == "Levelset") {
78         kind = _("Levelset");
79       }
80       else if(addon.kind == "Worldmap") {
81         kind = _("Worldmap");
82       }
83       else if(addon.kind == "World") {
84         kind = _("World");
85       }
86       else if(addon.kind == "Level") {
87         kind = _("Level");
88       }
89
90       if(!addon.author.empty())
91       {
92         text = str(boost::format(_("%s \"%s\" by \"%s\""))
93                    % kind % addon.title % addon.author);
94       }
95       else
96       {
97         // Only addon type and name, no need for translation.
98         text = str(boost::format("%s \"%s\"")
99                    % kind % addon.title);
100       }
101     }
102     else
103     {
104       if (!addon.author.empty())
105       {
106         text = str(boost::format(_("\"%s\" by \"%s\""))
107                    % addon.title % addon.author);
108       }
109       else {
110         // Only addon name, no need for translation.
111         text = str(boost::format("\"%s\"")
112                    % addon.title);
113       }
114     }
115     add_toggle(MNID_ADDON_LIST_START + addon.id, text, addon.loaded);
116   }
117
118   add_hl();
119   add_back(_("Back"));
120 }
121
122 void
123 AddonMenu::menu_action(MenuItem* item)
124 {
125   if (item->id == MNID_CHECK_ONLINE) // check if "Check Online" was chosen
126   {
127     try
128     {
129       m_addon_manager.check_online();
130       refresh();
131       set_active_item(item->id);
132     }
133     catch (std::exception& e)
134     {
135       log_warning << "Check for available Add-ons failed: " << e.what() << std::endl;
136     }
137   }
138   else if ((MNID_ADDON_LIST_START <= item->id) && (item->id < MNID_ADDON_LIST_START + m_addon_manager.get_num_addons()))
139   {
140     int addon_id = item->id - MNID_ADDON_LIST_START;
141     Addon& addon = m_addon_manager.get_addon(addon_id);
142     if (!addon.installed)
143     {
144       try
145       {
146         m_addon_manager.install(addon);
147       }
148       catch (std::exception& e)
149       {
150         log_warning << "Installing Add-on failed: " << e.what() << std::endl;
151       }
152       set_toggled(item->id, addon.loaded);
153     }
154     else if (!addon.loaded)
155     {
156       try
157       {
158         m_addon_manager.enable(addon);
159       }
160       catch (std::exception& e)
161       {
162         log_warning << "Enabling Add-on failed: " << e.what() << std::endl;
163       }
164       set_toggled(item->id, addon.loaded);
165     }
166     else
167     {
168       try
169       {
170         m_addon_manager.disable(addon);
171       }
172       catch (std::exception& e)
173       {
174         log_warning << "Disabling Add-on failed: " << e.what() << std::endl;
175       }
176       set_toggled(item->id, addon.loaded);
177     }
178   }
179 }
180
181 /* EOF */