5#include <unordered_map>
31using std::unordered_map;
53FileDialogScreenController::FileDialogScreenController()
55 this->
cwd = FileSystem::getStandardFileSystem()->getCurrentWorkingPathName();
88 screenNode = GUIParser::parse(
"resources/engine/gui",
"popup_filedialog.xml");
102 Console::print(
string(
"FileDialogScreenController::initialize(): An error occurred: "));
103 Console::println(
string(exception.what()));
117 bool accept(
const string& pathName,
const string& fileName)
override {
118 if (FileSystem::getStandardFileSystem()->isPath(pathName +
"/" + fileName) ==
true)
return true;
119 if (extension.empty() ==
false) {
120 if (StringTools::endsWith(StringTools::toLowerCase(fileName),
"." + extension) ==
true)
return true;
122 for (
auto& extension : fileDialogScreenController->extensions) {
123 if (StringTools::endsWith(StringTools::toLowerCase(fileName),
"." + extension) ==
true)
return true;
133 ExtensionFilter(
FileDialogScreenController* fileDialogScreenController,
const string& extension): fileDialogScreenController(fileDialogScreenController), extension(extension) {
149 auto directory =
cwd;
151 FileSystem::getStandardFileSystem()->list(directory,
fileList, &extensionsFilter);
153 Console::print(
string(
"FileDialogScreenController::setupFileDialogListBox(): An error occurred: "));
154 Console::println(
string(exception.what()));
170 string filesInnerNodeSubNodesXML;
171 filesInnerNodeSubNodesXML+=
172 "<scrollarea width=\"100%\" height=\"100%\" background-color=\"{$color.element_midground}\">\n";
173 for (
auto& fileName : fileNameList) {
176 if (FileSystem::getStandardFileSystem()->isPath(
cwd +
"/" + fileName) ==
true) fileImageName =
"folder";
178 Console::print(
string(
"FileDialogScreenController::setupFileDialogListBox(): An error occurred: "));
179 Console::println(
string(exception.what()));
181 filesInnerNodeSubNodesXML+=
182 "<selectbox-option text=\"" +
183 GUIParser::escapeQuotes(fileName) +
185 GUIParser::escapeQuotes(fileName) +
187 (selectedFileName == fileName?
" selected=\"true\"":
"") +
" " +
188 "image=\"{$icon.type_" + fileImageName +
"}\" " +
191 filesInnerNodeSubNodesXML+=
"</scrollarea>\n";
193 filesInnerNode->replaceSubNodes(filesInnerNodeSubNodesXML,
false);
195 Console::print(
string(
"FileDialogScreenController::setupFileDialogListBox(): An error occurred: "));
196 Console::println(
string(exception.what()));
203 string favoritesInnerNodeSubNodesXML;
204 favoritesInnerNodeSubNodesXML+=
205 "<scrollarea width=\"100%\" height=\"100%\" background-color=\"{$color.element_midground}\">\n";
207 auto fileImageName =
"folder";
208 favoritesInnerNodeSubNodesXML+=
209 "<selectbox-option text=\"" +
210 GUIParser::escapeQuotes(FileSystem::getStandardFileSystem()->
getFileName(StringTools::endsWith(favorite,
"/") ==
true?StringTools::substring(favorite, 0, favorite.size() - 1):favorite)) +
212 GUIParser::escapeQuotes(favorite) +
214 "image=\"{$icon.type_folder}\" " +
217 favoritesInnerNodeSubNodesXML+=
"</scrollarea>\n";
219 favoritesInnerNode->replaceSubNodes(favoritesInnerNodeSubNodesXML,
false);
221 Console::print(
string(
"FileDialogScreenController::setupFavorites(): An error occurred: "));
222 Console::println(
string(exception.what()));
229 string recentsInnerNodeSubNodesXML;
230 recentsInnerNodeSubNodesXML+=
231 "<scrollarea width=\"100%\" height=\"100%\" background-color=\"{$color.element_midground}\">\n";
233 auto fileImageName =
"folder";
234 recentsInnerNodeSubNodesXML+=
235 "<selectbox-option text=\"" +
236 GUIParser::escapeQuotes(FileSystem::getStandardFileSystem()->
getFileName(StringTools::endsWith(recent,
"/") ==
true?StringTools::substring(recent, 0, recent.size() - 1):recent)) +
238 GUIParser::escapeQuotes(recent) +
240 "image=\"{$icon.type_folder}\" " +
243 recentsInnerNodeSubNodesXML+=
"</scrollarea>\n";
245 recentsInnerNode->replaceSubNodes(recentsInnerNodeSubNodesXML,
false);
247 Console::print(
string(
"FileDialogScreenController::setupRecents(): An error occurred: "));
248 Console::println(
string(exception.what()));
253 vector<string> drives;
255 for (
char drive =
'A'; drive <=
'Z'; drive++) {
260 if (FileSystem::getStandardFileSystem()->fileExists(fileName +
"/") ==
true) drives.push_back(fileName);
262 Console::println(
string() +
"FileDialogScreenController::setupDrives(): " + exception.what());
266 drives.push_back(
"/");
270 string drivesInnerNodeSubNodesXML;
271 drivesInnerNodeSubNodesXML+=
272 "<scrollarea width=\"100%\" height=\"100%\" background-color=\"{$color.element_midground}\">\n";
273 for (
auto& drive: drives) {
274 drivesInnerNodeSubNodesXML+=
275 "<selectbox-option text=\"" +
276 GUIParser::escapeQuotes(drive) +
278 GUIParser::escapeQuotes(drive) +
280 "image=\"{$icon.type_drive}\" " +
283 drivesInnerNodeSubNodesXML+=
"</scrollarea>\n";
285 drivesInnerNode->replaceSubNodes(drivesInnerNodeSubNodesXML,
false);
287 Console::print(
string(
"FileDialogScreenController::setupDrives(): An error occurred: "));
288 Console::println(
string(exception.what()));
292void FileDialogScreenController::show(
const string& cwd,
const string& captionText,
const vector<string>& extensions,
const string& fileName,
bool enableFilter,
Action* applyAction,
Action* cancelAction,
const string& settingsFileName,
const string& settingsPathName)
302 if (
cwd.empty() ==
true) {
305 _cwd = defaultCwdByExtensionsIt->second;
311 this->cwd = FileSystem::getStandardFileSystem()->getCanonicalPath(_cwd,
"");
312 if (this->cwd.empty() ==
true || FileSystem::getStandardFileSystem()->isPath(this->cwd) ==
false) {
313 this->cwd = FileSystem::getStandardFileSystem()->getCurrentWorkingPathName();
316 Console::print(
string(
"FileDialogScreenController::show(): An error occurred: "));
317 Console::print(
string(exception.what()));
318 Console::println(
": using cwd!");
319 this->cwd = FileSystem::getStandardFileSystem()->getCurrentWorkingPathName();
323 if (this->applyAction !=
nullptr)
delete this->
applyAction;
325 if (this->cancelAction !=
nullptr)
delete this->
cancelAction;
328 string extensionsDropDownOptionsXML =
"<dropdown-option text=\"All supported extensions\" value=\"\" selected=\"true\"/>\n";
330 extensionsDropDownOptionsXML+=
"<dropdown-option text=\"" + StringTools::toUpperCase(extension) +
" Files\" value=\"" + StringTools::toLowerCase(extension) +
"\" selected=\"false\" />\n";
356 if (FileSystem::getStandardFileSystem()->isDrive(selectedFile) ==
true) {
364 if (FileSystem::getStandardFileSystem()->isPath(
cwd +
"/" + selectedFile) ==
true) {
367 cwd = FileSystem::getStandardFileSystem()->getCanonicalPath(
cwd, selectedFile);
369 Console::print(
string(
"FileDialogScreenController::onValueChanged(): An error occurred: "));
370 Console::println(
string(exception.what()));
384 Console::print(
string(
"FileDialogScreenController::onValueChanged(): An error occurred: "));
385 Console::println(
string(exception.what()));
393 if (FileSystem::getStandardFileSystem()->fileExists(
cwd +
"/" + filterString) ==
true) {
397 vector<string> fileListFiltered;
399 if (StringTools::toLowerCase(file).find(filterString) != -1) fileListFiltered.push_back(file);
406 Console::print(
string(
"FileDialogScreenController::onValueChanged(): An error occurred: "));
407 Console::println(
string(exception.what()));
417 if (StringTools::endsWith(
cwd,
"/") ==
true)
cwd = StringTools::substring(
cwd, 0,
cwd.size() - 1);
430 if (node->
getId() ==
"filedialog_apply") {
431 if (StringTools::endsWith(
cwd,
"/") ==
true)
cwd = StringTools::substring(
cwd, 0,
cwd.size() - 1);
443 if (node->
getId() ==
"filedialog_abort" ||
444 StringTools::startsWith(node->
getId(),
"filedialog_caption_close_") ==
true) {
456 if (node->
getId() ==
"filedialog_favorites_add") {
457 if (StringTools::endsWith(
cwd,
"/") ==
true)
cwd = StringTools::substring(
cwd, 0,
cwd.size() - 1);
462 if (node->
getId() ==
"filedialog_favorites_remove") {
467 if (node->
getId() ==
"filedialog_recent_delete") {
474 if (_cwd.empty() ==
false) {
481 if (_cwd.empty() ==
false) {
488 if (_cwd.empty() ==
false) {
497 if (node->
getId() ==
"filedialog_filename") {
517 while ((favorite = settings.
get(
"favorite_" + to_string(i++),
"")).empty() ==
false) {
524 while ((recent = settings.
get(
"recent_" + to_string(i++),
"")).empty() ==
false) {
530 string defaultCwdString;
531 while ((defaultCwdString = settings.
get(
"default_cwd_" + to_string(i++),
"")).empty() ==
false) {
532 auto defaultCwdComponents = StringTools::tokenize(defaultCwdString,
":");
533 if (defaultCwdComponents.size() == 2) {
539 Console::println(
string() +
"FileDialogScreenController::setDefaultCWD(): An error occurred: " + exception.what());
551 settings.
put(
"favorite_" + to_string(i++), favorite);
557 settings.
put(
"recent_" + to_string(i++), recent);
563 settings.
put(
"default_cwd_" + to_string(i++), defaultCwdByExtensionsIt.first +
":" + defaultCwdByExtensionsIt.second);
568 Console::println(
string() +
"FileDialogScreenController::setDefaultCWD(): An error occurred: " + exception.what());
573 auto fileNameLowerCase = StringTools::toLowerCase(fileName);
574 if (StringTools::endsWith(fileNameLowerCase,
".ogg") ==
true) {
578 if (StringTools::endsWith(fileNameLowerCase,
".h") ==
true) {
581 if (StringTools::endsWith(fileNameLowerCase,
".cpp") ==
true) {
584 if (StringTools::endsWith(fileNameLowerCase,
".c") ==
true) {
587 if (StringTools::endsWith(fileNameLowerCase,
".fnt") ==
true) {
591 if (StringTools::endsWith(fileNameLowerCase,
".ico") ==
true) {
594 if (StringTools::endsWith(fileNameLowerCase,
".icns") ==
true) {
597 if (StringTools::endsWith(fileNameLowerCase,
".png") ==
true) {
601 if (StringTools::endsWith(fileNameLowerCase,
".dae") ==
true) {
604 if (StringTools::endsWith(fileNameLowerCase,
".fbx") ==
true) {
607 if (StringTools::endsWith(fileNameLowerCase,
".glb") ==
true) {
610 if (StringTools::endsWith(fileNameLowerCase,
".tm") ==
true) {
614 if (StringTools::endsWith(fileNameLowerCase,
".properties") ==
true) {
618 if (StringTools::endsWith(fileNameLowerCase,
".cl") ==
true) {
621 if (StringTools::endsWith(fileNameLowerCase,
".frag") ==
true) {
624 if (StringTools::endsWith(fileNameLowerCase,
".glsl") ==
true) {
627 if (StringTools::endsWith(fileNameLowerCase,
".vert") ==
true) {
631 if (StringTools::endsWith(fileNameLowerCase,
".tempty") ==
true) {
635 if (StringTools::endsWith(fileNameLowerCase,
".ttrigger") ==
true) {
639 if (StringTools::endsWith(fileNameLowerCase,
".tenvmap") ==
true) {
643 if (StringTools::endsWith(fileNameLowerCase,
".tmodel") ==
true) {
647 if (StringTools::endsWith(fileNameLowerCase,
".tscene") ==
true) {
651 if (StringTools::endsWith(fileNameLowerCase,
".tparticle") ==
true) {
655 if (StringTools::endsWith(fileNameLowerCase,
".tterrain") ==
true) {
659 if (StringTools::endsWith(fileNameLowerCase,
".tscript") ==
true) {
663 if (StringTools::endsWith(fileNameLowerCase,
".xml") ==
true) {
667 if (fileName.rfind(
".") == string::npos ||
668 (fileName.rfind(
"/") != string::npos &&
669 fileName.rfind(
".") < fileName.rfind(
"/"))) {
GUI node controller base class.
virtual void setValue(const MutableString &value)=0
Set value.
virtual const MutableString & getValue()=0
GUIScreenNode * getScreenNode()
GUINodeController * getController()
GUI parent node base class thats supporting child nodes.
GUI screen node that represents a screen that can be rendered via GUI system.
void setVisible(bool visible)
Set visible.
void addChangeListener(GUIChangeListener *listener)
Add change listener.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void addActionListener(GUIActionListener *listener)
Add action listener.
GUINode * getInnerNodeById(const string &nodeId)
Get inner GUI node by id.
void addFocusListener(GUIFocusListener *listener)
Add focus listener.
File system singleton class.
const string & getString() const
Properties class, which helps out with storeing or loading key value pairs from/to property files.
void put(const string &key, const string &value)
Add property.
const string & get(const string &key, const string &defaultValue) const
Get property value by key.
void load(const string &pathName, const string &fileName, FileSystemInterface *fileSystem=nullptr)
Load property file.
void store(const string &pathName, const string &fileName, FileSystemInterface *fileSystem=nullptr) const
Store property file.
std::exception Exception
Exception base class.
File system file name filter interface.
virtual void performAction()=0
Perform action.