5#include <unordered_set>
73using std::unordered_set;
138EditorScreenController::EditorScreenController(
EditorView* view): fileEntitiesMutex(
"fileentities-mutex")
156 screenNode = GUIParser::parse(
"resources/engine/gui",
"screen_editor.xml");
172 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"projectlibrary_import"))->getController()->setDisabled(
true);
173 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"projectpathfiles_search"))->getController()->setDisabled(
true);
174 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"projectpaths_search"))->getController()->setDisabled(
true);
175 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"dropdown_projectlibrary_add"))->getController()->setDisabled(
true);
176 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"dropdown_outliner_add"))->getController()->setDisabled(
true);
177 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"outliner_search"))->getController()->setDisabled(
true);
182 Console::print(
string(
"EditorScreenController::initialize(): An error occurred: "));
183 Console::println(
string(exception.what()));
208 if (node->
getId() ==
"projectpathfiles_search") {
212 if (node->
getId() ==
"selectbox_projectpaths") {
219 if (node->
getId() ==
"dropdown_projectlibrary_add") {
224 if (selectedTab !=
nullptr) selectedTab->getTabView()->getTabController()->onValueChanged(node);
230 if (node->
getId() ==
"menu_file_open") {
233 if (node->
getId() ==
"menu_file_save") {
236 if (node->
getId() ==
"menu_file_saveas") {
239 if (node->
getId() ==
"menu_file_saveall") {
242 if (node->
getId() ==
"menu_view_fullscreen") {
245 if (node->
getId() ==
"menu_help_about") {
248 if (StringTools::startsWith(node->
getId(),
"projectpathfiles_file_") ==
true) {
249 onOpenFile(required_dynamic_cast<GUIElementNode*>(node)->getValue());
251 if (StringTools::startsWith(node->
getId(),
"tab_viewport_") ==
true) {
254 auto& tab = tabsIt.second;
255 if (StringTools::startsWith(node->
getId(), tab.getId() +
"_close") ==
true) {
256 tabIdToClose = tab.getId();
257 Console::println(
"EditorScreenController::onActionPerformed(): close tab: " + tab.getId());
260 if (tabIdToClose.empty() ==
false) {
262 class CloseTabAction:
public Action {
267 CloseTabAction(
EditorScreenController* editorScreenController,
const string& tabIdToClose): editorScreenController(editorScreenController), tabIdToClose(tabIdToClose) {}
268 virtual void performAction() {
271 auto tabIt = editorScreenController->
tabViews.find(tabIdToClose);
272 if (tabIt == editorScreenController->
tabViews.end()) {
273 Console::println(
"CloseTabAction::performAction(): close tab: " + tabIdToClose +
": not found");
275 auto& tab = tabIt->second;
276 tab.getTabView()->dispose();
277 delete tab.getTabView();
278 editorScreenController->
tabViews.erase(tabIt);
286 Engine::getInstance()->enqueueAction(
new CloseTabAction(
this, tabIdToClose));
289 if (node->
getId() ==
"menu_file_quit") {
295 if (selectedTab !=
nullptr) selectedTab->getTabView()->getTabController()->onActionPerformed(type, node);
301 if (selectedTab !=
nullptr) selectedTab->getTabView()->getTabController()->onFocus(node);
307 if (selectedTab !=
nullptr) selectedTab->getTabView()->getTabController()->onUnfocus(node);
311 if (StringTools::startsWith(node->
getId(),
"projectpathfiles_file_") ==
true) {
312 auto absoluteFileName = required_dynamic_cast<GUIElementNode*>(node)->getValue();
314 if (selectedTab ==
nullptr)
return;
315 switch (selectedTab->getType()) {
324 class OnAddToSceneAction:
public virtual Action
327 void performAction()
override {
328 auto currentTab = editorScreenController->getSelectedTab();
329 if (currentTab ==
nullptr)
return;
331 if (sceneEditorTabView ==
nullptr)
return;
333 auto prototype = PrototypeReader::read(
334 Tools::getPathName(absoluteFileName),
335 Tools::getFileName(absoluteFileName)
339 Console::println(
string(
"OnAddToSceneAction::performAction(): An error occurred: ") + exception.what());;
340 editorScreenController->showErrorPopUp(
"Warning", (
string(exception.what())));
343 OnAddToSceneAction(
EditorScreenController* editorScreenController,
const string& absoluteFileName): editorScreenController(editorScreenController), absoluteFileName(absoluteFileName) {
347 string absoluteFileName;
366 if (selectedTab !=
nullptr) selectedTab->getTabView()->getTabController()->onContextMenuRequested(node, mouseX, mouseY);
371 if (StringTools::endsWith(
projectPath,
"/") ==
true) {
374 Console::println(
"EditorScreenController::openProject(): " +
projectPath);
381 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"projectlibrary_import"))->getController()->setDisabled(
false);
382 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"projectpathfiles_search"))->getController()->setDisabled(
false);
383 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"projectpaths_search"))->getController()->setDisabled(
false);
384 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"dropdown_projectlibrary_add"))->getController()->setDisabled(
false);
385 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"dropdown_outliner_add"))->getController()->setDisabled(
false);
386 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"outliner_search"))->getController()->setDisabled(
false);
388 GUIParser::loadProjectThemeProperties(
projectPath);
392 class OnOpenProject:
public virtual Action
396 void performAction()
override {
397 auto projectPath = editorScreenController->view->getPopUps()->getFileDialogScreenController()->getPathName();
399 editorScreenController->view->getPopUps()->getFileDialogScreenController()->close();
406 OnOpenProject(
EditorScreenController* editorScreenController): editorScreenController(editorScreenController) {
415 "Open project from folder: ",
419 new OnOpenProject(
this),
421 ".projects.filedialog.properties",
428 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"resources") +
"\" value=\"" + GUIParser::escapeQuotes(
"resources") +
"\">\n";
430 xml+=
"</selectbox-parent-option>\n";
431 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"shader") +
"\" value=\"" + GUIParser::escapeQuotes(
"shader") +
"\">\n";
433 xml+=
"</selectbox-parent-option>\n";
434 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"src") +
"\" value=\"" + GUIParser::escapeQuotes(
"src") +
"\">\n";
436 xml+=
"</selectbox-parent-option>\n";
440 Console::print(
string(
"EditorScreenController::scanProjectPaths(): An error occurred: "));
441 Console::println(
string(exception.what()));
448 virtual ~ListFilter() {}
450 bool accept(
const string& pathName,
const string& fileName)
override {
451 if (fileName ==
".")
return false;
452 if (fileName ==
"..")
return false;
453 if (FileSystem::getInstance()->isPath(pathName +
"/" + fileName) ==
true)
return true;
459 ListFilter listFilter;
460 vector<string> files;
462 if (FileSystem::getInstance()->fileExists(path) ==
false) {
463 Console::println(
"EditorScreenController::scanProject(): Error: file does not exist: " + path);
465 if (FileSystem::getInstance()->isPath(path) ==
false) {
466 if (listFilter.accept(
".", path) ==
true) {
467 Console::println(
"EditorScreenController::scanProject(): Error: path is file" + path);
469 Console::println(
"EditorScreenController::scanProject(): Error: file exist, but does not match filter: " + path);
472 FileSystem::getInstance()->list(path, files, &listFilter);
473 for (
auto fileName: files) {
474 auto relativePath = path +
"/" + fileName;
475 if (StringTools::startsWith(relativePath,
projectPath)) relativePath = StringTools::substring(relativePath,
projectPath.size() + 1, relativePath.size());
476 if (FileSystem::getInstance()->isPath(path +
"/" + fileName) ==
false) {
481 if (innerXml.empty() ==
false) {
482 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(fileName) +
"\" value=\"" + GUIParser::escapeQuotes(relativePath) +
"\">\n";
484 xml+=
"</selectbox-parent-option>\n";
486 xml+=
"<selectbox-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(fileName) +
"\" value=\"" + GUIParser::escapeQuotes(relativePath) +
"\" />\n";
495 auto& tab = tabsIt.second;
498 tab.getTabView()->dispose();
499 delete tab.getTabView();
514 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"projectlibrary_import"))->getController()->setDisabled(
true);
515 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"projectpathfiles_search"))->getController()->setDisabled(
true);
516 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"projectpaths_search"))->getController()->setDisabled(
true);
517 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"dropdown_projectlibrary_add"))->getController()->setDisabled(
true);
518 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"dropdown_outliner_add"))->getController()->setDisabled(
true);
519 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"outliner_search"))->getController()->setDisabled(
true);
531 Console::print(
string(
"EditorScreenController::startScanFiles(): An error occurred: "));
532 Console::println(
string(exception.what()));
534 Console::println(
"EditorScreenController::startScanFiles()");
541 xml+=
"<layout alignment=\"horizontal\">\n";
543 xml+= pendingFileEntity->buttonXML;
550 Console::print(
string(
"EditorScreenController::addPendingFileEntities(): An error occurred: "));
551 Console::println(
string(exception.what()));
555 if (pendingFileEntity->thumbnailTexture ==
nullptr)
continue;
558 required_dynamic_cast<GUITextureNode*>(
screenNode->
getNodeById(pendingFileEntity->id +
"_texture_normal"))->setTexture(pendingFileEntity->thumbnailTexture);
559 required_dynamic_cast<GUITextureNode*>(
screenNode->
getNodeById(pendingFileEntity->id +
"_texture_mouseover"))->setTexture(pendingFileEntity->thumbnailTexture);
560 required_dynamic_cast<GUITextureNode*>(
screenNode->
getNodeById(pendingFileEntity->id +
"_texture_clicked"))->setTexture(pendingFileEntity->thumbnailTexture);
562 Console::print(
string(
"EditorScreenController::addPendingFileEntities(): An error occurred: "));
563 Console::println(
string(exception.what()));
565 if (pendingFileEntity->thumbnailTexture !=
nullptr) pendingFileEntity->thumbnailTexture->releaseReference();
566 delete pendingFileEntity;
577 Console::println(
"EditorScreenController::stopScanFiles()");
583 if (fileEntity->thumbnailTexture !=
nullptr) fileEntity->thumbnailTexture->releaseReference();
597 virtual ~ListFilter() {}
599 bool accept(
const string&
pathName,
const string& fileName)
override {
600 if (fileName ==
".")
return false;
601 if (fileName ==
"..")
return false;
603 auto fileNameLowerCase = StringTools::toLowerCase(fileName);
605 if (
searchTerm.empty() ==
false && fileNameLowerCase.find(
searchTerm) == string::npos)
return false;
608 if (FileSystem::getInstance()->isPath(
pathName +
"/" + fileName) ==
true)
return true;
610 if (StringTools::endsWith(fileNameLowerCase,
".ogg") ==
true)
return true;
612 if (StringTools::endsWith(fileNameLowerCase,
".h") ==
true)
return true;
613 if (StringTools::endsWith(fileNameLowerCase,
".cpp") ==
true)
return true;
615 if (StringTools::endsWith(fileNameLowerCase,
".fnt") ==
true)
return true;
617 if (StringTools::endsWith(fileNameLowerCase,
".icns") ==
true)
return true;
618 if (StringTools::endsWith(fileNameLowerCase,
".ico") ==
true)
return true;
619 if (StringTools::endsWith(fileNameLowerCase,
".png") ==
true)
return true;
621 if (StringTools::endsWith(fileNameLowerCase,
".dae") ==
true)
return true;
622 if (StringTools::endsWith(fileNameLowerCase,
".fbx") ==
true)
return true;
623 if (StringTools::endsWith(fileNameLowerCase,
".glb") ==
true)
return true;
624 if (StringTools::endsWith(fileNameLowerCase,
".tm") ==
true)
return true;
626 if (StringTools::endsWith(fileNameLowerCase,
".properties") ==
true)
return true;
628 if (StringTools::endsWith(fileNameLowerCase,
".cl") ==
true)
return true;
629 if (StringTools::endsWith(fileNameLowerCase,
".frag") ==
true)
return true;
630 if (StringTools::endsWith(fileNameLowerCase,
".glsl") ==
true)
return true;
631 if (StringTools::endsWith(fileNameLowerCase,
".vert") ==
true)
return true;
633 if (StringTools::endsWith(fileNameLowerCase,
".tempty") ==
true)
return true;
635 if (StringTools::endsWith(fileNameLowerCase,
".ttrigger") ==
true)
return true;
637 if (StringTools::endsWith(fileNameLowerCase,
".tenvmap") ==
true)
return true;
639 if (StringTools::endsWith(fileNameLowerCase,
".tmodel") ==
true)
return true;
641 if (StringTools::endsWith(fileNameLowerCase,
".tscene") ==
true)
return true;
643 if (StringTools::endsWith(fileNameLowerCase,
".tparticle") ==
true)
return true;
645 if (StringTools::endsWith(fileNameLowerCase,
".tterrain") ==
true)
return true;
647 if (StringTools::endsWith(fileNameLowerCase,
".tscript") ==
true)
return true;
649 if (StringTools::endsWith(fileNameLowerCase,
".xml") ==
true)
return true;
651 if (fileName.rfind(
".") == string::npos ||
652 (fileName.rfind(
"/") != string::npos &&
653 fileName.rfind(
".") < fileName.rfind(
"/"))) {
664 vector<string> files;
666 if (FileSystem::getInstance()->fileExists(
pathName) ==
false) {
667 Console::println(
"EditorScreenController::ScanFilesThread::run(): Error: file does not exist: " +
pathName);
669 if (FileSystem::getInstance()->isPath(
pathName) ==
false) {
670 if (listFilter.accept(
".",
pathName) ==
true) {
671 Console::println(
"EditorScreenController::ScanFilesThread::run(): Error: path is file: " +
pathName);
673 Console::println(
"EditorScreenController::ScanFilesThread::run(): Error: file exist, but does not match filter: " +
pathName);
676 FileSystem::getInstance()->list(
pathName, files, &listFilter);
679 auto parentPathName = FileSystem::getInstance()->getPathName(
pathName);
681 string fileName =
"..";
684 string templateSource =
"button_template_thumbnail_nobackground.xml";
686 string iconBig =
"{$icon.type_folder_big}";
690 fileEntity->id =
"projectpathfiles_file_" + GUIParser::escapeQuotes(Tools::getFileName(fileName));
691 fileEntity->buttonXML =
694 "id=\"" + fileEntity->id +
"\" " +
695 "value=\"" + GUIParser::escapeQuotes(parentPathName) +
"\" " +
696 "template=\"" + templateSource +
"\" " +
698 "icon=\"" + GUIParser::escapeQuotes(icon) +
"\" " +
699 "icon-big=\"" + GUIParser::escapeQuotes(iconBig) +
"\" " +
700 "filename=\"" + GUIParser::escapeQuotes(fileName) +
"\" " +
707 for (
auto fileName: files) {
711 auto absolutePath =
pathName +
"/" + fileName;
712 if (FileSystem::getInstance()->isPath(
pathName +
"/" + fileName) ==
false)
continue;
714 string templateSource =
"button_template_thumbnail_nobackground.xml";
716 string iconBig =
"{$icon.type_folder_big}";
720 fileEntity->id =
"projectpathfiles_file_" + GUIParser::escapeQuotes(Tools::getFileName(fileName));
721 fileEntity->buttonXML =
724 "id=\"" + fileEntity->id +
"\" " +
725 "value=\"" + GUIParser::escapeQuotes(absolutePath) +
"\" " +
726 "template=\"" + templateSource +
"\" " +
728 "icon=\"" + GUIParser::escapeQuotes(icon) +
"\" " +
729 "icon-big=\"" + GUIParser::escapeQuotes(iconBig) +
"\" " +
730 "filename=\"" + GUIParser::escapeQuotes(fileName) +
"\" " +
737 for (
auto fileName: files) {
740 auto absolutePath =
pathName +
"/" + fileName;
741 if (FileSystem::getInstance()->isPath(
pathName +
"/" + fileName) ==
true)
continue;
747 string icon =
"{$icon.type_" + image +
"}";
748 string iconBig =
"{$icon.type_" + image +
"_big}";
749 string typeColor =
"{$color.type_" + image +
"}";
752 auto fileNameLowerCase = StringTools::toLowerCase(fileName);
755 string templateSource =
"button_template_thumbnail_texture.xml";
756 Texture* thumbnailTexture =
nullptr;
757 vector<uint8_t> thumbnailPNGData;
758 if (StringTools::endsWith(fileNameLowerCase,
".png") ==
true) {
759 thumbnailTexture = TextureReader::read(
pathName, fileName,
false);
761 if (((StringTools::endsWith(fileNameLowerCase,
".tmodel") ==
true && PrototypeReader::readThumbnail(
pathName, fileName, thumbnailPNGData) ==
true) ||
762 (StringTools::endsWith(fileNameLowerCase,
".tm") ==
true && FileSystem::getInstance()->getThumbnailAttachment(
pathName, fileName, thumbnailPNGData) ==
true)) &&
763 thumbnailPNGData.empty() ==
false) {
764 static int thumbnailIdx = 0;
765 thumbnailTexture = TextureReader::readPNG(
"tdme.editor.projectpathfiles." + to_string(thumbnailIdx++), thumbnailPNGData,
false);
768 templateSource =
"button_template_thumbnail.xml";
770 if (thumbnailTexture !=
nullptr) {
774 if (textureWidth > textureHeight) {
775 scale = 128.0f /
static_cast<float>(textureWidth);
777 scale = 128.0f /
static_cast<float>(textureHeight);
779 auto scaledTextureWidth =
static_cast<int>(
static_cast<float>(textureWidth) * scale);
780 auto scaledTextureHeight =
static_cast<int>(
static_cast<float>(textureHeight) * scale);
781 if (textureWidth != scaledTextureWidth || textureHeight != scaledTextureHeight) {
782 auto thumbnailTextureScaled = TextureReader::scale(thumbnailTexture, scaledTextureWidth, scaledTextureHeight);
784 thumbnailTextureScaled->acquireReference();
785 thumbnailTexture = thumbnailTextureScaled;
789 if (iconBig.empty() ==
false) icon.clear();
793 fileEntity->id =
"projectpathfiles_file_" + GUIParser::escapeQuotes(Tools::getFileName(fileName));
794 fileEntity->buttonXML =
797 "id=\"" + fileEntity->id +
"\" " +
798 "value=\"" + GUIParser::escapeQuotes(absolutePath) +
"\" " +
799 "template=\"" + templateSource +
"\" " +
801 "icon=\"" + GUIParser::escapeQuotes(icon) +
"\" " +
802 "icon-big=\"" + GUIParser::escapeQuotes(iconBig) +
"\" " +
803 "filename=\"" + GUIParser::escapeQuotes(fileName) +
"\" " +
804 "type-color=\"" + GUIParser::escapeQuotes(typeColor) +
"\" " +
806 fileEntity->thumbnailTexture = thumbnailTexture;
814 Console::println(
"EditorScreenController::ScanFilesThread::run(): Error: " +
errorMessage);
822 class OnAddFile:
public virtual Action
826 void performAction()
override {
827 editorScreenController->addFile(
828 editorScreenController->view->getPopUps()->getFileDialogScreenController()->getPathName(),
829 Tools::ensureFileEnding(editorScreenController->view->getPopUps()->getFileDialogScreenController()->getFileName(),
string(
"t") + type),
832 editorScreenController->view->getPopUps()->getFileDialogScreenController()->close();
834 OnAddFile(
EditorScreenController* editorScreenController,
const string& type): editorScreenController(editorScreenController), type(type) {
843 string(
"Add ") + type +
" to project: ",
844 { string(
"t") + type },
845 string(
"Untitled") +
"." +
"t" + type,
847 new OnAddFile(
this, type)
854 Scene* scene =
nullptr;
855 if (type ==
"empty") {
858 Prototype_Type::EMPTY,
859 Tools::removeFileEnding(fileName),
860 Tools::removeFileEnding(fileName),
861 pathName +
"/" + fileName,
862 "resources/engine/models/empty.tm",
864 ModelReader::read(
"resources/engine/models",
"empty.tm"),
868 if (type ==
"trigger") {
872 auto boundingBox =
new BoundingBox(
Vector3(-width / 2.0f, 0.0f, -depth / 2.0f),
Vector3(+width / 2.0f, height, +depth / 2.0f));
875 Prototype_Type::TRIGGER,
876 Tools::removeFileEnding(fileName),
877 Tools::removeFileEnding(fileName),
878 pathName +
"/" + fileName,
887 if (type ==
"envmap") {
891 auto boundingBox =
new BoundingBox(
Vector3(-width / 2.0f, 0.0f, -depth / 2.0f),
Vector3(+width / 2.0f, height, +depth / 2.0f));
894 Prototype_Type::ENVIRONMENTMAPPING,
895 Tools::removeFileEnding(fileName),
896 Tools::removeFileEnding(fileName),
897 pathName +
"/" + fileName,
906 if (type ==
"model") {
909 Prototype_Type::MODEL,
910 Tools::removeFileEnding(fileName),
911 Tools::removeFileEnding(fileName),
912 pathName +
"/" + fileName,
913 "resources/engine/models/empty.tm",
915 ModelReader::read(
"resources/engine/models",
"empty.tm"),
919 if (type ==
"terrain") {
922 Prototype_Type::TERRAIN,
923 Tools::removeFileEnding(fileName),
924 Tools::removeFileEnding(fileName),
925 pathName +
"/" + fileName,
932 if (type ==
"particle") {
935 Prototype_Type::PARTICLESYSTEM,
936 Tools::removeFileEnding(fileName),
937 Tools::removeFileEnding(fileName),
938 pathName +
"/" + fileName,
945 if (type ==
"scene") {
947 Tools::removeFileEnding(fileName),
948 Tools::removeFileEnding(fileName)
951 if (prototype !=
nullptr) {
953 PrototypeWriter::write(pathName, fileName, prototype);
954 openFile(pathName +
"/" + fileName);
956 Console::print(
string(
"EditorScreenController::addFile(): An error occurred: "));
957 Console::println(
string(exception.what()));
958 showErrorPopUp(
"Error",
string() +
"An error occurred: " + exception.what());
961 if (scene !=
nullptr) {
963 SceneWriter::write(pathName, fileName, scene);
964 openFile(pathName +
"/" + fileName);
966 Console::print(
string(
"EditorScreenController::addFile(): An error occurred: "));
967 Console::println(
string(exception.what()));
968 showErrorPopUp(
"Error",
string() +
"An error occurred: " + exception.what());
976 auto fileName = FileSystem::getInstance()->getFileName(absoluteFileName);
983 auto model = ModelReader::read(Tools::getPathName(absoluteFileName), Tools::getFileName(absoluteFileName));
986 Prototype_Type::MODEL,
987 Tools::removeFileEnding(fileName),
988 Tools::removeFileEnding(fileName),
989 FileSystem::getInstance()->getPathName(absoluteFileName) +
"/" + Tools::removeFileEnding(fileName) +
".tmodel",
999 prototype = PrototypeReader::read(
1000 FileSystem::getInstance()->getPathName(absoluteFileName),
1001 FileSystem::getInstance()->getFileName(absoluteFileName)
1007 prototype = PrototypeReader::read(
1008 FileSystem::getInstance()->getPathName(absoluteFileName),
1009 FileSystem::getInstance()->getFileName(absoluteFileName)
1015 scene = SceneReader::read(
1016 "resources/engine/scenes/envmap",
1019 prototype = PrototypeReader::read(
1020 FileSystem::getInstance()->getPathName(absoluteFileName),
1021 FileSystem::getInstance()->getFileName(absoluteFileName)
1027 prototype = PrototypeReader::read(
1028 FileSystem::getInstance()->getPathName(absoluteFileName),
1029 FileSystem::getInstance()->getFileName(absoluteFileName)
1035 prototype = PrototypeReader::read(
1036 FileSystem::getInstance()->getPathName(absoluteFileName),
1037 FileSystem::getInstance()->getFileName(absoluteFileName)
1043 prototype = PrototypeReader::read(
1044 FileSystem::getInstance()->getPathName(absoluteFileName),
1045 FileSystem::getInstance()->getFileName(absoluteFileName)
1051 scene = SceneReader::read(
1052 FileSystem::getInstance()->getPathName(absoluteFileName),
1053 FileSystem::getInstance()->getFileName(absoluteFileName)
1059 throw ExceptionBase(
"File type not supported by EditorScreenController::FileOpenThread");
1063 throw ExceptionBase(
"File type not supported by EditorScreenController::FileOpenThread");
1067 throw ExceptionBase(
"File type not supported by EditorScreenController::FileOpenThread");
1071 throw ExceptionBase(
"File type not supported by EditorScreenController::FileOpenThread");
1075 throw ExceptionBase(
"File type not supported by EditorScreenController::FileOpenThread");
1081 Console::print(
string(
"EditorScreenController::FileOpenThread::run(): An error occurred: "));
1082 Console::println(
string(exception.what()));
1083 errorMessage = string(exception.what());
1092 Console::println(
"EditorScreenController::onOpenFile(): " + absoluteFileName);
1096 Console::println(
"EditorScreenController::onOpenFile(): " + absoluteFileName +
": file open thread is already busy with opening a file");
1097 showErrorPopUp(
"Error",
string() +
"File open thread is already busy with opening a file");
1102 if (FileSystem::getInstance()->isPath(absoluteFileName)) {
1112 auto fileName = FileSystem::getInstance()->getFileName(absoluteFileName);
1113 auto fileNameLowerCase = StringTools::toLowerCase(fileName);
1115 if (StringTools::endsWith(fileNameLowerCase,
".xml") ==
true) {
1118 if (StringTools::endsWith(fileNameLowerCase,
".tempty") ==
true) {
1121 if (StringTools::endsWith(fileNameLowerCase,
".ttrigger") ==
true) {
1124 if (StringTools::endsWith(fileNameLowerCase,
".tenvmap") ==
true) {
1127 if (StringTools::endsWith(fileNameLowerCase,
".tscene") ==
true) {
1130 if (StringTools::endsWith(fileNameLowerCase,
".tmodel") ==
true) {
1133 if (StringTools::endsWith(fileNameLowerCase,
".tparticle") ==
true) {
1136 if (StringTools::endsWith(fileNameLowerCase,
".tterrain") ==
true) {
1139 if (StringTools::endsWith(fileNameLowerCase,
".fnt") ==
true) {
1142 if (StringTools::endsWith(fileNameLowerCase,
".ogg") ==
true) {
1145 if (StringTools::endsWith(fileNameLowerCase,
".h") ==
true ||
1146 StringTools::endsWith(fileNameLowerCase,
".cpp") ==
true ||
1147 StringTools::endsWith(fileNameLowerCase,
".c") ==
true ||
1148 StringTools::endsWith(fileNameLowerCase,
".properties") ==
true ||
1149 StringTools::endsWith(fileNameLowerCase,
".cl") ==
true ||
1150 StringTools::endsWith(fileNameLowerCase,
".frag") ==
true ||
1151 StringTools::endsWith(fileNameLowerCase,
".glsl") ==
true ||
1152 StringTools::endsWith(fileNameLowerCase,
".vert") ==
true ||
1153 StringTools::endsWith(fileNameLowerCase,
".xml") ==
true ||
1154 (fileName.rfind(
".") == string::npos || (fileName.rfind(
"/") != string::npos && fileName.rfind(
".") < fileName.rfind(
"/")))) {
1157 for (
auto& extension: ModelReader::getModelExtensions()) {
1158 if (StringTools::endsWith(fileNameLowerCase,
"." + extension) ==
true) {
1163 for (
auto& extension: TextureReader::getTextureExtensions()) {
1164 if (StringTools::endsWith(fileNameLowerCase,
"." + extension) ==
true) {
1176 auto tabId =
"tab_viewport_" + StringTools::replace(absoluteFileName,
".",
"_");
1177 tabId = StringTools::replace(tabId,
"/",
"_");
1182 tabId = GUIParser::escapeQuotes(tabId);
1190 string viewPortTemplate;
1277 Console::print(
string(
"EditorScreenController::onOpenFile(): An error occurred: "));
1278 Console::println(
string(exception.what()));
1279 showErrorPopUp(
"Error",
string() +
"An error occurred: " + exception.what());
1284 auto fileName = FileSystem::getInstance()->getFileName(absoluteFileName);
1285 auto fileNameLowerCase = StringTools::toLowerCase(fileName);
1293 string viewPortTemplate;
1297 icon =
"{$icon.type_mesh}";
1298 colorType =
"{$color.type_mesh}";
1301 viewPortTemplate =
"template_viewport_scene.xml";
1306 icon =
"{$icon.type_prototype}";
1307 colorType =
"{$color.type_prototype}";
1310 viewPortTemplate =
"template_viewport_scene.xml";
1315 icon =
"{$icon.type_prototype}";
1316 colorType =
"{$color.type_prototype}";
1319 viewPortTemplate =
"template_viewport_scene.xml";
1324 icon =
"{$icon.type_scene}";
1325 colorType =
"{$color.type_scene}";
1328 viewPortTemplate =
"template_viewport_scene.xml";
1333 icon =
"{$icon.type_prototype}";
1334 colorType =
"{$color.type_prototype}";
1337 viewPortTemplate =
"template_viewport_scene.xml";
1342 icon =
"{$icon.type_terrain}";
1343 colorType =
"{$color.type_terrain}";
1346 viewPortTemplate =
"template_viewport_terrain.xml";
1351 icon =
"{$icon.type_particle}";
1352 colorType =
"{$color.type_particle}";
1355 viewPortTemplate =
"template_viewport_scene.xml";
1360 icon =
"{$icon.type_scene}";
1361 colorType =
"{$color.type_scene}";
1364 viewPortTemplate =
"template_viewport_scene.xml";
1370 icon =
"{$icon.type_gui}";
1371 colorType =
"{$color.type_gui}";
1373 FileSystem::getInstance()->getPathName(absoluteFileName),
1374 FileSystem::getInstance()->getFileName(absoluteFileName)
1378 viewPortTemplate =
"template_viewport_ui.xml";
1380 Console::println(
"EditorScreenController::openFile(): " + absoluteFileName +
": " + exception.what());
1381 icon =
"{$icon.type_script}";
1382 colorType =
"{$color.type_script}";
1383 auto text = StringTools::replace(
1384 FileSystem::getInstance()->getContentAsString(
1385 FileSystem::getInstance()->getPathName(absoluteFileName),
1386 FileSystem::getInstance()->getFileName(absoluteFileName)
1392 "resources/engine/gui/",
1394 {{
"text", StringTools::replace(StringTools::replace(text,
"[",
"\\["),
"]",
"\\]") }}
1397 tabView =
new TextEditorTabView(
view, tabId,
screenNode, StringTools::substring(fileNameLowerCase, fileNameLowerCase.rfind(
'.') + 1, fileNameLowerCase.size()));
1398 viewPortTemplate =
"template_viewport_plain.xml";
1404 icon =
"{$icon.type_sound}";
1405 colorType =
"{$color.type_sound}";
1408 FileSystem::getInstance()->getPathName(absoluteFileName),
1409 FileSystem::getInstance()->getFileName(absoluteFileName)
1412 "resources/engine/gui/",
1417 viewPortTemplate =
"template_viewport_plain.xml";
1422 icon =
"{$icon.type_texture}";
1423 colorType =
"{$color.type_texture}";
1425 "resources/engine/gui/",
1427 {{
"texture", absoluteFileName}}
1432 viewPortTemplate =
"template_viewport_plain.xml";
1437 icon =
"{$icon.type_font}";
1438 colorType =
"{$color.type_font}";
1440 "resources/engine/gui/",
1442 {{
"font", absoluteFileName }}
1446 viewPortTemplate =
"template_viewport_plain.xml";
1451 icon =
"{$icon.type_script}";
1452 colorType =
"{$color.type_script}";
1453 auto text = StringTools::replace(
1454 FileSystem::getInstance()->getContentAsString(
1455 FileSystem::getInstance()->getPathName(absoluteFileName),
1456 FileSystem::getInstance()->getFileName(absoluteFileName)
1462 "resources/engine/gui/",
1464 {{
"text", StringTools::replace(StringTools::replace(text,
"[",
"\\["),
"]",
"\\]") }}
1467 tabView =
new TextEditorTabView(
view, tabId,
screenNode, StringTools::substring(fileNameLowerCase, fileNameLowerCase.rfind(
'.') + 1, fileNameLowerCase.size()));
1468 viewPortTemplate =
"template_viewport_plain.xml";
1476 string tabsHeaderXML =
"<tab id=\"" + tabId +
"\" image=\"" + GUIParser::escapeQuotes(icon) +
"\" type-color=\"" + GUIParser::escapeQuotes(colorType) +
"\" value=\"" + GUIParser::escapeQuotes(absoluteFileName) +
"\" text=\"" + GUIParser::escapeQuotes(fileName) +
"\" closeable=\"true\" />\n";
1480 Console::print(
string(
"EditorScreenController::onOpenFile(): An error occurred: "));
1481 Console::println(
string(exception.what()));
1485 string tabsContentXML =
1486 "<tab-content tab-id=\"" + tabId +
"\">\n" +
1487 " <template id=\"" + tabId +
"_tab\" src=\"resources/engine/gui/" + viewPortTemplate +
"\" />\n" +
1492 Console::print(
string(
"EditorScreenController::onOpenFile(): An error occurred: "));
1493 Console::println(
string(exception.what()));
1500 if (Engine::getInstance()->getGraphicsRendererType() != Renderer::RENDERERTYPE_VULKAN) {
1506 Console::print(
string(
"EditorScreenController::onOpenFileFinish(): An error occurred: "));
1507 Console::println(
string(exception.what()));
1508 showErrorPopUp(
"Error",
string() +
"An error occurred: " + exception.what());
1519 required_dynamic_cast<GUISelectBoxController*>(
outliner->
getController())->determineExpandedParentOptionValues(outlinerState.expandedOutlinerParentOptionValues);
1521 outlinerState.renderOffsetX = required_dynamic_cast<GUIParentNode*>(
screenNode->
getInnerNodeById(
"selectbox_outliner_scrollarea"))->getChildrenRenderOffsetX();
1522 outlinerState.renderOffsetY = required_dynamic_cast<GUIParentNode*>(
screenNode->
getInnerNodeById(
"selectbox_outliner_scrollarea"))->getChildrenRenderOffsetY();
1526 required_dynamic_cast<GUISelectBoxController*>(
outliner->
getController())->setValue(outlinerState.value);
1527 required_dynamic_cast<GUISelectBoxController*>(
outliner->
getController())->expandParentOptionsByValues(outlinerState.expandedOutlinerParentOptionValues);
1536 Console::print(
string(
"EditorScreenController::getOutlinerSelection(): An error occurred: "));
1537 Console::println(
string(exception.what()));
1546 Console::print(
string(
"EditorScreenController::setOutlinerSelection(): An error occurred: "));
1547 Console::println(
string(exception.what()));
1555 Console::print(
string(
"EditorScreenController::setOutlinerContent(): An error occurred: "));
1556 Console::println(
string(exception.what()));
1564 Console::print(
string(
"EditorScreenController::setOutlinerAddDropDownContent(): An error occurred: "));
1565 Console::println(
string(exception.what()));
1573 Console::print(
string(
"EditorScreenController::setDetailsContent(): An error occurred: "));
1574 Console::println(
string(exception.what()));
1579 return required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"screen_editor_screen"))->getActiveConditions().has(
"fullscreen");
1583 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"menu_view_fullscreen"))->getController()->setDisabled(
tabViews.empty() ==
true);
1587 if (fullScreen ==
true) {
1589 if (selectedTab !=
nullptr) {
1590 Application::getApplication()->setFullScreen(
true);
1595 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"screen_editor_screen"))->getActiveConditions().add(
"fullscreen");
1599 Application::getApplication()->setFullScreen(
false);
1604 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"screen_editor_screen"))->getActiveConditions().remove(
"fullscreen");
1611 if (selectedTab !=
nullptr) selectedTab->getTabView()->getTabController()->save();
1617 if (selectedTab !=
nullptr) selectedTab->getTabView()->getTabController()->saveAs();
1623 auto& tab = tabViewIt.second;
1624 tab.getTabView()->getTabController()->save();
1631 left = constraints.
left + constraints.alignmentLeft + constraints.contentAlignmentLeft;
1632 top = constraints.top + constraints.alignmentTop + constraints.contentAlignmentTop;
1633 width = constraints.width - (padding.left + padding.right);
1634 height = constraints.height - (padding.top + padding.bottom);
1642 auto now = Time::getCurrentMillis();
1659 showErrorPopUp(
"Error",
string() +
"An error occurred: Unknown error");
1674 showErrorPopUp(
"Error",
string() +
"An error occurred: Unknown error");
int32_t getTextureHeight() const
int32_t getTextureWidth() const
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Prototype bounding volume definition.
void setupAabb(const Vector3 &min, const Vector3 &max)
Setup bounding volume bounding box.
bool addBoundingVolume(int idx, PrototypeBoundingVolume *prototypeBoundingVolume)
Add bounding volume at given index.
PrototypeBoundingVolume * getBoundingVolume(int idx)
Get bounding volume at given index.
GUI select box controller.
GUI node controller base class.
virtual void setValue(const MutableString &value)=0
Set value.
virtual const MutableString & getValue()=0
GUINode_Padding & getPadding()
GUINode_ComputedConstraints & getComputedConstraints()
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 addContextMenuRequestListener(GUIContextMenuRequestListener *listener)
Add context menu request listener.
void addChangeListener(GUIChangeListener *listener)
Add change listener.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void removeNodeById(const string &nodeId, bool resetScrollOffsets)
Remove 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.
void start()
Starts this objects thread.
void join()
Blocks caller thread until this thread has been terminated.
void stop()
Requests that this thread should be stopped.
bool isStopRequested()
Returns if stop has been requested.
Particle system editor tab view.
const string & getString() const
void releaseReference()
releases a reference, thus decrementing the counter and delete it if reference counter is zero
std::exception Exception
Exception base class.
File system file name filter interface.