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 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
/* 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 "gui/shaderbrowser-dialog.h"
#include "common/system.h"
#include "common/algorithm.h"
#include "common/str-array.h"
#include "common/zip-set.h"
#include "common/translation.h"
#include "gui/ThemeEval.h"
#include "gui/widgets/list.h"
#include "gui/browser.h"
#include "gui/gui-manager.h"
#include "gui/message.h"
namespace GUI {
enum {
kChooseCmd = 'Chos',
kChooseFileCmd = 'File',
kSearchCmd = 'SRCH',
kListSearchCmd = 'LSSR',
kSearchClearCmd = 'SRCL',
};
const char *const kFileMask = "*.glslp";
const char *const kFileExt = "glslp";
ShaderBrowserDialog::ShaderBrowserDialog(const Common::Path &initialSelection) : Dialog("ShaderBrowser") {
new StaticTextWidget(this, "ShaderBrowser.Headline", _("Choose shader from the list below (or pick a file instead)"));
_fileName = new PathWidget(this, "ShaderBrowser.Filename", initialSelection);
// Search box
_searchDesc = nullptr;
#ifndef DISABLE_FANCY_THEMES
_searchPic = nullptr;
if (g_gui.xmlEval()->getVar("Globals.ShowSearchPic") == 1 && g_gui.theme()->supportsImages()) {
_searchPic = new GraphicsWidget(this, "ShaderBrowser.SearchPic", _("Search in game list"));
_searchPic->setGfxFromTheme(ThemeEngine::kImageSearch);
} else
#endif
_searchDesc = new StaticTextWidget(this, "ShaderBrowser.SearchDesc", _("Search:"));
_searchWidget = new EditTextWidget(this, "ShaderBrowser.Search", _search, Common::U32String(), kSearchCmd);
_searchClearButton = addClearButton(this, "ShaderBrowser.SearchClearButton", kSearchClearCmd);
new ButtonWidget(this, "ShaderBrowser.BrowseFile", _("Pick file instead..."), _("Pick shader from file system"), kChooseFileCmd);
// Add file list
_fileList = new ListWidget(this, "ShaderBrowser.List");
_fileList->setNumberingMode(kListNumberingOff);
_fileList->setEditable(false);
_backgroundType = GUI::ThemeEngine::kDialogBackgroundPlain;
// Buttons
new ButtonWidget(this, "ShaderBrowser.Cancel", _("Cancel"), Common::U32String(), kCloseCmd);
new ButtonWidget(this, "ShaderBrowser.Choose", _("Choose"), Common::U32String(), kChooseCmd);
}
void ShaderBrowserDialog::open() {
// Call super implementation
Dialog::open();
Common::generateZipSet(_shaderSet, "shaders.dat", "shaders*.dat");
updateListing();
}
void ShaderBrowserDialog::reflowLayout() {
#ifndef DISABLE_FANCY_THEMES
if (g_gui.xmlEval()->getVar("Globals.ShowSearchPic") == 1 && g_gui.theme()->supportsImages()) {
if (!_searchPic)
_searchPic = new GraphicsWidget(this, "ShaderBrowser.SearchPic", _("Search in game list"));
_searchPic->setGfxFromTheme(ThemeEngine::kImageSearch);
if (_searchDesc) {
removeWidget(_searchDesc);
g_gui.addToTrash(_searchDesc, this);
_searchDesc = nullptr;
}
} else {
if (!_searchDesc)
_searchDesc = new StaticTextWidget(this, "ShaderBrowser.SearchDesc", _("Search:"));
if (_searchPic) {
removeWidget(_searchPic);
g_gui.addToTrash(_searchPic, this);
_searchPic = nullptr;
}
}
#endif
removeWidget(_searchClearButton);
g_gui.addToTrash(_searchClearButton, this);
_searchClearButton = addClearButton(this, "ShaderBrowser.SearchClearButton", kSearchClearCmd);
Dialog::reflowLayout();
}
void ShaderBrowserDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 data) {
switch (cmd) {
case kChooseCmd:
if (_fileName->getLabel().empty())
break;
normalizeFileName();
setResult(1);
close();
break;
case kChooseFileCmd: {
BrowserDialog browser(_("Select shader"), false);
if (browser.runModal() > 0) {
// User made his choice...
Common::FSNode file(browser.getResult());
_fileName->setLabel(file.getPath());
setResult(1);
close();
}
break;
}
case kSearchCmd:
// Update the active search filter.
_fileList->setFilter(_searchWidget->getEditString());
break;
case kSearchClearCmd:
// Reset the active search filter, thus showing all games again
_searchWidget->setEditString(Common::U32String());
_fileList->setFilter(Common::U32String());
break;
case kListSelectionChangedCmd:
_fileName->setLabel(Common::Path(_fileList->getList().operator[](_fileList->getSelected()).encode()));
break;
case kListItemActivatedCmd:
case kListItemDoubleClickedCmd:
normalizeFileName();
setResult(1);
close();
break;
default:
Dialog::handleCommand(sender, cmd, data);
}
}
void ShaderBrowserDialog::normalizeFileName() {
Common::Path filename = _fileName->getLabel();
Common::String basename = filename.baseName();
if (basename.matchString(kFileMask, true))
return;
filename.appendInPlace(".").appendInPlace(kFileExt);
_fileName->setLabel(filename);
}
void ShaderBrowserDialog::updateListing() {
Common::U32StringArray list;
Common::ArchiveMemberList files;
_shaderSet.listMatchingMembers(files, kFileMask, true);
Common::sort(files.begin(), files.end(), Common::ArchiveMemberListComparator());
for (auto &file : files) {
list.push_back(file->getPathInArchive().toString().decode());
}
_fileList->setList(list);
_fileList->scrollTo(0);
// Finally, redraw
g_gui.scheduleTopDialogRedraw();
}
} // End of namespace GUI
|