c8d1cfdf50684b0ba44e80d96b09a9c58e9b0a3c
[supertux.git] / src / supertux / menu / download_dialog.cpp
1 //  SuperTux
2 //  Copyright (C) 2014 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/download_dialog.hpp"
18
19 #include <sstream>
20
21 #include "gui/menu_manager.hpp"
22 #include "util/gettext.hpp"
23
24 DownloadDialog::DownloadDialog(TransferStatusPtr status) :
25   m_status(status),
26   m_title()
27 {
28   add_button(_("Abort Download"), [this]{
29       on_abort();
30     });
31
32   update_text();
33
34   status->then([this]{
35       on_download_complete();
36     });
37 }
38
39 void
40 DownloadDialog::update()
41 {
42   AddonManager::current()->update();
43   update_text();
44 }
45
46 void
47 DownloadDialog::set_title(const std::string& title)
48 {
49   m_title = title;
50 }
51
52 void
53 DownloadDialog::update_text()
54 {
55   std::ostringstream out;
56   out << m_title << "\n";
57
58   if (m_status->dltotal == 0)
59   {
60     out << "---\n---";
61   }
62   else
63   {
64     int percent = 100 * m_status->dlnow / m_status->dltotal;
65     out << m_status->dlnow/1000 << "/" << m_status->dltotal/1000 << " kB\n" << percent << "%";
66   }
67
68   set_text(out.str());
69 }
70
71 void
72 DownloadDialog::on_abort()
73 {
74   AddonManager::current()->abort_install();
75 }
76
77 void
78 DownloadDialog::on_download_complete()
79 {
80   clear_buttons();
81   add_button(_("Close"), [this]{
82       MenuManager::instance().set_dialog({});
83     });
84 }
85
86 /* EOF */