1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "common/translation.h"
#include "gui/downloaddlcsdialog.h"
#include "gui/widget.h"
#include "gui/gui-manager.h"
#include "gui/widgets/list.h"
#include "backends/dlc/dlcmanager.h"
#include "backends/dlc/dlcdesc.h"
enum {
kCancelSelectedCmd = 'CANS',
};
namespace GUI {
DownloadDLCsDialog::DownloadDLCsDialog()
: Dialog("DLCDownloads") {
new StaticTextWidget(this, "DLCDownloads.Headline", _("Currently Downloading Games"));
_currentDownloadLabel = new StaticTextWidget(this, "DLCDownloads.CurrentDownload", Common::U32String());
_errorLabel = new StaticTextWidget(this, "DLCDownloads.ErrorText", Common::U32String(DLCMan._errorText));
_progressBar = new SliderWidget(this, "DLCDownloads.ProgressBar");
_progressBar->setMinValue(0);
_progressBar->setMaxValue(100);
_progressBar->setValue(0);
_progressBar->setEnabled(false);
_percentLabel = new StaticTextWidget(this, "DLCDownloads.PercentText", Common::String());
_downloadedSizeLabel = new StaticTextWidget(this, "DLCDownloads.DownloadedSize", Common::U32String());
new StaticTextWidget(this, "DLCDownloads.Pending", _("Pending Downloads"));
_pendingDownloadsList = new ListWidget(this, "DLCDownloads.List");
_pendingDownloadsList->setNumberingMode(kListNumberingOff);
_pendingDownloadsList->setEditable(false);
new ButtonWidget(this, "DLCDownloads.Back", _("Back"), Common::U32String(), kCloseCmd);
_cancelButton = new ButtonWidget(this, "DLCDownloads.Cancel", _("Cancel"), Common::U32String(), kCancelSelectedCmd);
refreshWidgets();
}
Common::U32String DownloadDLCsDialog::getSizeLabelText() {
const char *downloadedUnits, *totalUnits;
Common::String downloaded = Common::getHumanReadableBytes(DLCMan._currentDownloadedSize, downloadedUnits);
Common::String total = Common::getHumanReadableBytes(DLCMan._queuedDownloadTasks.front()->size, totalUnits);
return Common::U32String::format(_("Downloaded %s %S / %s %S"), downloaded.c_str(), _(downloadedUnits).c_str(), total.c_str(), _(totalUnits).c_str());
}
uint32 DownloadDLCsDialog::getDownloadingProgress() {
if (DLCMan._queuedDownloadTasks.empty()) {
// no DLC is currently downloading
return 0;
}
uint32 progress = (uint32)(100 * ((double)DLCMan._currentDownloadedSize / (double)DLCMan._queuedDownloadTasks.front()->size));
return progress;
}
void DownloadDLCsDialog::refreshWidgets() {
Common::U32StringArray pendingList;
if (DLCMan._queuedDownloadTasks.empty()) {
// no DLC is currently downloading
_currentDownloadLabel->setLabel(Common::U32String("No downloads in progress"));
_downloadedSizeLabel->setLabel(Common::U32String());
_pendingDownloadsList->setList(pendingList);
} else {
_currentDownloadLabel->setLabel(DLCMan._queuedDownloadTasks.front()->name);
_downloadedSizeLabel->setLabel(getSizeLabelText());
for (const auto &it : DLCMan._dlcsInProgress) {
if (it->state == DLC::DLCDesc::kInProgress) {
pendingList.push_back(it->name);
} else {
pendingList.push_back("[Cancelled] " + it->name);
}
}
_pendingDownloadsList->setList(pendingList);
if (_progressBar->getValue() >= 100) {
// if a game is downloaded i.e. the first item is removed from _dlcsInProgress
_selectedIdx--;
}
_pendingDownloadsList->setSelected(_selectedIdx);
}
uint32 progress = getDownloadingProgress();
_percentLabel->setLabel(Common::String::format("%u %%", progress));
_progressBar->setValue(progress);
g_gui.scheduleTopDialogRedraw();
}
void DownloadDLCsDialog::handleTickle() {
int32 progress = getDownloadingProgress();
if (_progressBar->getValue() != progress) {
_selectedIdx = _pendingDownloadsList->getSelected();
refreshWidgets();
}
// enable cancel button only when a list item is selected
if (_pendingDownloadsList->getSelected() == -1) {
if (_cancelButton->isEnabled()) {
_cancelButton->setEnabled(false);
g_gui.scheduleTopDialogRedraw();
}
} else {
if (!_cancelButton->isEnabled()) {
_cancelButton->setEnabled(true);
g_gui.scheduleTopDialogRedraw();
}
}
if (_errorLabel->getLabel() != DLCMan._errorText) {
_errorLabel->setLabel(DLCMan._errorText);
g_gui.scheduleTopDialogRedraw();
}
Dialog::handleTickle();
}
void DownloadDLCsDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 data) {
switch (cmd) {
case kCancelSelectedCmd: {
uint32 idx = DLCMan._dlcsInProgress[_pendingDownloadsList->getSelected()]->idx;
DLCMan.cancelDownload(idx);
}
break;
default:
Dialog::handleCommand(sender, cmd, data);
}
}
} // End of namespace GUI
|