159 if (fileName.empty() ==
true)
throw ExceptionBase(
"Could not save file. No filename known");
161 Tools::getPathName(fileName),
162 Tools::getFileName(fileName)
171 class OnModelSave:
public virtual Action
174 void performAction()
override {
176 modelEditorTabController->view->saveFile(
177 modelEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
178 modelEditorTabController->popUps->getFileDialogScreenController()->getFileName()
181 modelEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
183 modelEditorTabController->popUps->getFileDialogScreenController()->close();
190 OnModelSave(
ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
198 if (fileName.length() == 0) {
200 if (StringTools::endsWith(StringTools::toLowerCase(fileName),
".tmodel") ==
false) {
201 fileName = Tools::removeFileEnding(fileName) +
".tmodel";
204 vector<string> extensions = {
208 Tools::getPathName(fileName),
211 Tools::getFileName(fileName),
213 new OnModelSave(
this)
218 for (
auto nodeIt: subNodes) {
219 auto node = nodeIt.second;
221 if (node->isJoint() ==
true) {
224 if (node->isEmpty() ==
true) {
229 if (node->getSubNodes().empty() ==
false) {
230 xml+=
"<selectbox-parent-option image=\"resources/engine/images/" + image +
"\" text=\"" + GUIParser::escapeQuotes(node->getId()) +
"\" value=\"" + GUIParser::escapeQuotes(prefix +
".nodes." + node->getId()) +
"\">\n";
232 xml+=
"</selectbox-parent-option>\n";
234 xml+=
" <selectbox-option image=\"resources/engine/images/" + image +
"\" text=\"" + GUIParser::escapeQuotes(node->getId()) +
"\" value=\"" + GUIParser::escapeQuotes(prefix +
".nodes." + node->getId()) +
"\" />\n";
241 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"Prototype") +
"\" value=\"" + GUIParser::escapeQuotes(
"prototype") +
"\">\n";
243 if (prototype !=
nullptr) {
248 for (
auto lodLevel = 1; lodLevel < 5; lodLevel++) {
249 Model* model =
nullptr;
252 model = prototype->getModel();
255 model = prototype->getLODLevel2() !=
nullptr?prototype->getLODLevel2()->getModel():
nullptr;
256 if (prototype->getLODLevel2() ==
nullptr)
continue;
259 model = prototype->getLODLevel3() !=
nullptr?prototype->getLODLevel3()->getModel():
nullptr;
260 if (prototype->getLODLevel3() ==
nullptr)
continue;
264 if (prototype->getImposterLOD() ==
nullptr)
continue;
267 auto modelPrefix = lodLevel == 1?
"model":
"lod" + to_string(lodLevel) +
".model";
269 if (model !=
nullptr) {
270 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(lodLevel != 1?
"LOD " + to_string(lodLevel) +
" Model":
"Model") +
"\" value=\"" + GUIParser::escapeQuotes(modelPrefix) +
"\">\n";
272 xml+=
"<selectbox-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(lodLevel != 1?
"LOD " + to_string(lodLevel) +
" Model":
"Model") +
"\" value=\"" + GUIParser::escapeQuotes(modelPrefix) +
"\" />\n";
274 if (model !=
nullptr) {
275 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"Materials") +
"\" value=\"" + GUIParser::escapeQuotes(modelPrefix +
".materials") +
"\">\n";
277 auto materialId = it.second->
getId();
278 xml+=
" <selectbox-option image=\"resources/engine/images/material.png\" text=\"" + GUIParser::escapeQuotes(materialId) +
"\" value=\"" + GUIParser::escapeQuotes(modelPrefix +
".materials." + materialId) +
"\" />\n";
280 xml+=
"</selectbox-parent-option>\n";
282 if (model !=
nullptr && model->
getSubNodes().empty() ==
false) {
283 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"Nodes") +
"\" value=\"" + GUIParser::escapeQuotes(modelPrefix +
".nodes") +
"\">\n";
285 xml+=
"</selectbox-parent-option>\n";
287 if (model !=
nullptr &&
289 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"Animations") +
"\" value=\"" + GUIParser::escapeQuotes(modelPrefix +
".animations") +
"\">\n";
291 auto animationSetupId = it.second->getId();
292 if (animationSetupId == Model::ANIMATIONSETUP_DEFAULT)
continue;
293 xml+=
" <selectbox-option image=\"resources/engine/images/animation.png\" text=\"" + GUIParser::escapeQuotes(animationSetupId) +
"\" id=\"" + GUIParser::escapeQuotes(modelPrefix +
".animations." + animationSetupId) +
"\" value=\"" + GUIParser::escapeQuotes(modelPrefix +
".animations." + animationSetupId) +
"\" />\n";
295 xml+=
"</selectbox-parent-option>\n";
297 if (model !=
nullptr) xml+=
"</selectbox-parent-option>\n";
300 xml+=
"</selectbox-parent-option>\n";
306 string(
"<dropdown-option text=\"Property\" value=\"property\" />\n") +
307 string(
"<dropdown-option text=\"BV\" value=\"boundingvolume\" />\n") +
308 string(
"<dropdown-option text=\"Sound\" value=\"sound\" />\n") +
309 string(
"<dropdown-option text=\"Animation\" value=\"animation\" />\n") +
310 string(
"<dropdown-option text=\"LOD\" value=\"lod\" />\n") +
311 string(
"<dropdown-option text=\"LOD None\" value=\"lod_none\" />\n")
321 if (prototype ==
nullptr)
return nullptr;
326 if (prototypeLodLevel ==
nullptr) {
328 LODObject3D::LODLEVELTYPE_NONE,
333 prototype->setLODLevel2(prototypeLodLevel);
335 return prototypeLodLevel;
339 auto prototypeLodLevel = prototype->getLODLevel3();
340 if (prototypeLodLevel ==
nullptr) {
342 LODObject3D::LODLEVELTYPE_NONE,
347 prototype->setLODLevel3(prototypeLodLevel);
349 return prototypeLodLevel;
356 Model* model =
nullptr;
361 default: model =
nullptr;
368 string outlinerNodeModel;
369 Model* model =
nullptr;
377 string outlinerNodeModel;
378 Model* model =
nullptr;
380 if (model ==
nullptr)
return nullptr;
381 if (StringTools::startsWith(outlinerNodeModel,
"model.materials.") ==
true) {
382 materialId = StringTools::substring(outlinerNodeModel,
string(
"model.materials.").size(), outlinerNode.size());
386 auto materialIt = model->
getMaterials().find(materialId);
387 return materialIt != model->
getMaterials().end()?materialIt->second:
nullptr;
393 string outlinerNodeModel;
394 Model* model =
nullptr;
396 if (model ==
nullptr)
return nullptr;
397 if (StringTools::startsWith(outlinerNodeModel,
"model.animations.") ==
true) {
398 animationId = StringTools::substring(outlinerNodeModel,
string(
"model.animations.").size(), outlinerNode.size());
427 class OnModelLoad:
public virtual Action
431 void performAction()
override {
432 modelEditorTabController->view->loadModel(
433 modelEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
434 modelEditorTabController->popUps->getFileDialogScreenController()->getFileName()
436 modelEditorTabController->popUps->getFileDialogScreenController()->close();
443 OnModelLoad(
ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
453 ModelReader::getModelExtensions(),
456 new OnModelLoad(
this)
462 class OnModelReimport:
public virtual Action
466 void performAction()
override {
467 modelEditorTabController->view->reimportModel(
468 modelEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
469 modelEditorTabController->popUps->getFileDialogScreenController()->getFileName()
471 modelEditorTabController->popUps->getFileDialogScreenController()->close();
478 OnModelReimport(
ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
487 "Reimport model from: ",
488 ModelReader::getModelExtensions(),
491 new OnModelReimport(
this)
506 class OnLODLoad:
public virtual Action
510 void performAction()
override {
513 case 2: prototypeLODLevel = prototype->getLODLevel2();
break;
514 case 3: prototypeLODLevel = prototype->getLODLevel3();
break;
517 if (prototypeLODLevel ==
nullptr)
return;
519 modelEditorTabController->view->setLODLevel(1);
525 modelEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
526 modelEditorTabController->popUps->getFileDialogScreenController()->getFileName()
530 Console::println(
string(
"OnLODLoad::performAction(): An error occurred: ") + exception.what());;
531 modelEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
534 modelEditorTabController->view->setLODLevel(lodLevel);
535 modelEditorTabController->view->getEditorView()->reloadTabOutliner(
"lod" + to_string(lodLevel) +
".model");
536 modelEditorTabController->popUps->getFileDialogScreenController()->close();
545 OnLODLoad(
ModelEditorTabController* modelEditorTabController,
Prototype* prototype,
int lodLevel): modelEditorTabController(modelEditorTabController), prototype(prototype), lodLevel(lodLevel) {
556 "Load LOD " + to_string(lodLevel) +
" model from: ",
557 ModelReader::getModelExtensions(),
575 if (material ==
nullptr)
return;
581 "<template id=\"details_material_spec\" src=\"resources/engine/gui/template_details_specularmaterial.xml\" />\n"
582 "<template id=\"details_material_pbr\" src=\"resources/engine/gui/template_details_pbrmaterial.xml\" />\n"
586 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_material_spec"))->getActiveConditions().add(
"open");
587 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_material_pbr"))->getActiveConditions().add(
"open");
589 if (pbrMaterialProperties !=
nullptr) {
590 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"pbrmaterial_details"))->getActiveConditions().add(
"pbr");
592 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"pbrmaterial_details"))->getActiveConditions().remove(
"pbr");
595 Console::println(
string(
"ModelEditorTabController::setMaterialDetails(): An error occurred: ") + exception.what());;
605 if (material ==
nullptr)
return;
611 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"specularmaterial_diffuse_texture"))->setSource(
612 PrototypeReader::getResourcePathName(
614 specularMaterialProperties->getDiffuseTexturePathName() +
"/" + specularMaterialProperties->getDiffuseTextureFileName()
617 specularMaterialProperties->getDiffuseTextureFileName()
619 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"specularmaterial_transparency_texture"))->setSource(
620 PrototypeReader::getResourcePathName(
622 specularMaterialProperties->getDiffuseTransparencyTexturePathName() +
"/" + specularMaterialProperties->getDiffuseTransparencyTextureFileName()
625 specularMaterialProperties->getDiffuseTextureFileName()
627 required_dynamic_cast<GUITextureNode*>(
screenNode->
getNodeById(
"specularmaterial_normal_texture"))->setTexture(specularMaterialProperties->getNormalTexture());
628 required_dynamic_cast<GUITextureNode*>(
screenNode->
getNodeById(
"specularmaterial_specular_texture"))->setTexture(specularMaterialProperties->getSpecularTexture());
629 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"specularmaterial_shininess"))->getController()->setValue(specularMaterialProperties->getShininess());
630 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"specularmaterial_reflection"))->getController()->setValue(specularMaterialProperties->getReflection());
631 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"specularmaterial_maskedtransparency"))->getController()->setValue(
MutableString(specularMaterialProperties->hasDiffuseTextureMaskedTransparency() ==
true?
"1":
""));
633 if (pbrMaterialProperties !=
nullptr) {
635 required_dynamic_cast<GUITextureNode*>(
screenNode->
getNodeById(
"pbrmaterial_basecolor_texture"))->setTexture(pbrMaterialProperties->getBaseColorTexture());
636 required_dynamic_cast<GUITextureNode*>(
screenNode->
getNodeById(
"pbrmaterial_metallic_roughness_texture"))->setTexture(pbrMaterialProperties->getMetallicRoughnessTexture());
637 required_dynamic_cast<GUITextureNode*>(
screenNode->
getNodeById(
"pbrmaterial_normal_texture"))->setTexture(pbrMaterialProperties->getNormalTexture());
638 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"pbrmaterial_metallic_factor"))->getController()->setValue(pbrMaterialProperties->getMetallicFactor());
639 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"pbrmaterial_roughness_factor"))->getController()->setValue(pbrMaterialProperties->getRoughnessFactor());
640 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"pbrmaterial_normal_scale"))->getController()->setValue(pbrMaterialProperties->getNormalScale());
641 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"pbrmaterial_exposure"))->getController()->setValue(pbrMaterialProperties->getExposure());
642 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"pbrmaterial_maskedtransparency"))->getController()->setValue(
MutableString(pbrMaterialProperties->hasBaseColorTextureMaskedTransparency() ==
true?
"1":
""));
647 Console::println(
string(
"ModelEditorTabController::updateMaterialDetails(): An error occurred: ") + exception.what());;
657 if (material ==
nullptr)
return;
663 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"specularmaterial_ambient"))->setEffectColorMul(
Color4(specularMaterialProperties->getAmbientColor()));
664 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"specularmaterial_diffuse"))->setEffectColorMul(
Color4(specularMaterialProperties->getDiffuseColor()));
665 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"specularmaterial_emission"))->setEffectColorMul(
Color4(specularMaterialProperties->getEmissionColor()));
666 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"specularmaterial_specular"))->setEffectColorMul(
Color4(specularMaterialProperties->getSpecularColor()));
668 if (pbrMaterialProperties !=
nullptr) {
669 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"pbrmaterial_basecolor"))->setEffectColorMul(
Color4(pbrMaterialProperties->getBaseColorFactor()));
672 Console::println(
string(
"ModelEditorTabController::updateMaterialColorDetails(): An error occurred: ") + exception.what());;
680 if (material ==
nullptr)
return;
685 specularMaterialProperties->
setShininess(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"specularmaterial_shininess"))->getController()->getValue().getString()));
686 specularMaterialProperties->setReflection(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"specularmaterial_reflection"))->getController()->getValue().getString()));
687 specularMaterialProperties->setDiffuseTextureMaskedTransparency(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"specularmaterial_maskedtransparency"))->getController()->getValue().getString() ==
"1");
689 Console::println(
string(
"ModelEditorTabController::applySpecularMaterialDetails(): An error occurred: ") + exception.what());;
696 if (material ==
nullptr)
return;
699 if (required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"pbrmaterial_enabled"))->getController()->getValue().equals(
"1") ==
true) {
702 string outlinerNodeModel;
703 Model* model =
nullptr;
712 Model* model =
nullptr;
713 string outlinerNodeModel;
715 if (model !=
nullptr) model->
setShaderModel(ShaderModel::SPECULAR);
721 Console::println(
string(
"ModelEditorTabController::applyPBRMaterialDetails(): An error occurred: ") + exception.what());;
726 if (pbrMaterialProperties ==
nullptr)
return;
729 pbrMaterialProperties->
setMetallicFactor(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"pbrmaterial_metallic_factor"))->getController()->getValue().getString()));
730 pbrMaterialProperties->setRoughnessFactor(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"pbrmaterial_roughness_factor"))->getController()->getValue().getString()));
731 pbrMaterialProperties->setNormalScale(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"pbrmaterial_normal_scale"))->getController()->getValue().getString()));
732 pbrMaterialProperties->setExposure(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"pbrmaterial_exposure"))->getController()->getValue().getString()));
733 pbrMaterialProperties->setBaseColorTextureMaskedTransparency(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"pbrmaterial_maskedtransparency"))->getController()->getValue().getString() ==
"1");
735 Console::println(
string(
"ModelEditorTabController::applyPBRMaterialDetails(): An error occurred: ") + exception.what());;
741 Console::println(
"ModelEditorTabController::setAnimationDetails(): ");
745 auto defaultAnimation = animationSetup !=
nullptr && animationSetup->getId() == Model::ANIMATIONSETUP_DEFAULT;
747 if (animationSetup ==
nullptr)
return;
749 auto defaultAnimationSetup = model->getAnimationSetup(Model::ANIMATIONSETUP_DEFAULT);
752 string(
"<template id=\"details_animation\" src=\"resources/engine/gui/template_details_animation.xml\" max-frames=\"") +
753 to_string(defaultAnimationSetup !=
nullptr?defaultAnimationSetup->getEndFrame():0) +
759 string animationsXML;
762 "<dropdown-option text=\"<None>\" value=\"\" " + (animationSetup->getOverlayFromNodeId().empty() ==
true?
"selected=\"true\" ":
"") +
" />\n";
763 for (
auto& it: model->getNodes()) {
764 auto& nodeId = it.second->getId();
766 "<dropdown-option text=\"" +
767 GUIParser::escapeQuotes(nodeId) +
769 GUIParser::escapeQuotes(nodeId) +
771 (animationSetup->getOverlayFromNodeId() == nodeId?
"selected=\"true\" ":
"") +
775 required_dynamic_cast<GUIParentNode*>(
screenNode->
getInnerNodeById(
"animation_overlaybone_scrollarea"))->replaceSubNodes(animationsXML,
true);
777 Console::print(
string(
"ModelEditorTabController::setAnimationDetails(): An error occurred: "));
778 Console::println(
string(exception.what()));
784 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_animation"))->getActiveConditions().add(
"open");
785 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animation_startframe"))->getController()->setValue(animationSetup->getStartFrame());
786 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animation_startframe"))->getController()->setDisabled(defaultAnimation ==
true);
787 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animation_endframe"))->getController()->setValue(animationSetup->getEndFrame());
788 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animation_endframe"))->getController()->setDisabled(defaultAnimation ==
true);
789 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animation_speed"))->getController()->setValue(animationSetup->getSpeed());
790 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animation_speed"))->getController()->setDisabled(defaultAnimation ==
true);
792 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animation_loop"))->getController()->setDisabled(defaultAnimation ==
true);
793 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animation_overlaybone"))->getController()->setValue(animationSetup->getOverlayFromNodeId());
794 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animation_overlaybone"))->getController()->setDisabled(defaultAnimation ==
true);
796 Console::println(
string(
"ModelEditorTabController::setAnimationDetails(): An error occurred: ") + exception.what());;
802 Console::println(
"ModelEditorTabController::applyAnimationDetails(): ");
808 auto defaultAnimation = animationSetup !=
nullptr && animationSetup->getId() == Model::ANIMATIONSETUP_DEFAULT;
810 if (animationSetup ==
nullptr)
return;
813 auto startFrame = Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animation_startframe"))->getController()->getValue().getString());
814 auto endFrame = Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animation_endframe"))->getController()->getValue().getString());
815 auto speed = Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animation_speed"))->getController()->getValue().getString());
816 auto loop = required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animation_loop"))->getController()->getValue().getString() ==
"1";
817 auto overlayFromNodeId = required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animation_overlaybone"))->getController()->getValue().getString();
819 animationSetup->setStartFrame(startFrame < endFrame?startFrame:endFrame);
820 animationSetup->setEndFrame(endFrame > startFrame?endFrame:startFrame);
821 animationSetup->setSpeed(speed);
822 animationSetup->setLoop(loop);
823 animationSetup->setOverlayFromNodeId(overlayFromNodeId);
827 Console::println(
string(
"ModelEditorTabController::setAnimationDetails(): An error occurred: ") + exception.what());;
833 Console::println(
"ModelEditorTabController::setAnimationPreviewDetails(): ");
836 auto defaultAnimationSetup = model->getAnimationSetup(Model::ANIMATIONSETUP_DEFAULT);
839 string(
"<template id=\"details_animationpreview\" src=\"resources/engine/gui/template_details_animationpreview.xml\" />\n")
843 string animationsXML;
844 animationsXML = animationsXML +
"<dropdown-option text=\"<No animation>\" value=\"\" selected=\"true\" />";
845 for (
auto it: model->getAnimationSetups()) {
846 auto animationSetup = it.second;
847 if (animationSetup->isOverlayAnimationSetup() ==
true)
continue;
849 animationsXML +
"<dropdown-option text=\"" +
850 GUIParser::escapeQuotes(animationSetup->getId()) +
852 GUIParser::escapeQuotes(animationSetup->getId()) +
857 required_dynamic_cast<GUIParentNode*>(
screenNode->
getInnerNodeById(
"animationpreview_base_scrollarea"))->replaceSubNodes(animationsXML,
true);
859 Console::print(
string(
"ModelEditorTabController::setAnimationPreviewDetails(): An error occurred: "));
860 Console::println(
string(exception.what()));
865 string overlayAnimationsXML;
866 overlayAnimationsXML = overlayAnimationsXML +
"<dropdown-option text=\"<No animation>\" value=\"\" selected=\"true\" />";
867 for (
auto it: model->getAnimationSetups()) {
868 auto animationSetup = it.second;
869 if (animationSetup->isOverlayAnimationSetup() ==
false)
continue;
870 overlayAnimationsXML =
871 overlayAnimationsXML +
"<dropdown-option text=\"" +
872 GUIParser::escapeQuotes(animationSetup->getId()) +
874 GUIParser::escapeQuotes(animationSetup->getId()) +
879 required_dynamic_cast<GUIParentNode*>(
screenNode->
getInnerNodeById(
"animationpreview_overlay1_scrollarea"))->replaceSubNodes(overlayAnimationsXML,
true);
881 Console::print(
string(
"ModelEditorTabController::setAnimationPreviewDetails(): An error occurred: "));
882 Console::println(
string(exception.what()));
885 required_dynamic_cast<GUIParentNode*>(
screenNode->
getInnerNodeById(
"animationpreview_overlay2_scrollarea"))->replaceSubNodes(overlayAnimationsXML,
true);
887 Console::print(
string(
"ModelEditorTabController::setAnimationPreviewDetails(): An error occurred: "));
888 Console::println(
string(exception.what()));
891 required_dynamic_cast<GUIParentNode*>(
screenNode->
getInnerNodeById(
"animationpreview_overlay3_scrollarea"))->replaceSubNodes(overlayAnimationsXML,
true);
893 Console::print(
string(
"ModelEditorTabController::setAnimationPreviewDetails(): An error occurred: "));
894 Console::println(
string(exception.what()));
900 bonesXML = bonesXML +
"<dropdown-option text=\"<No bone>\" value=\"\" selected=\"true\" />";
901 for (
auto it: model->getNodes()) {
902 auto node = it.second;
904 bonesXML +
"<dropdown-option text=\"" +
905 GUIParser::escapeQuotes(node->getId()) +
907 GUIParser::escapeQuotes(node->getId()) +
912 required_dynamic_cast<GUIParentNode*>(
screenNode->
getInnerNodeById(
"animationpreview_attachment1_bone_scrollarea"))->replaceSubNodes(bonesXML,
true);
914 Console::print(
string(
"ModelEditorTabController::setAnimationPreviewDetails(): An error occurred: "));
915 Console::println(
string(exception.what()));
920 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_animationpreview"))->getActiveConditions().add(
"open");
922 Console::println(
string(
"ModelEditorTabController::setAnimationPreviewDetails(): An error occurred: ") + exception.what());;
928 class OnPreviewAnimationsAttachment1ModelLoad:
public virtual Action
932 void performAction()
override {
933 modelEditorTabController->view->addAttachment1(
934 required_dynamic_cast<GUIElementNode*>(modelEditorTabController->screenNode->getNodeById(
"animationpreview_attachment1_bone"))->getController()->getValue().getString(),
935 modelEditorTabController->popUps->getFileDialogScreenController()->getPathName() +
"/" + modelEditorTabController->popUps->getFileDialogScreenController()->getFileName()
937 modelEditorTabController->popUps->getFileDialogScreenController()->close();
944 OnPreviewAnimationsAttachment1ModelLoad(
ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
953 "Load animation preview attachment 1 model from: ",
954 ModelReader::getModelExtensions(),
957 new OnPreviewAnimationsAttachment1ModelLoad(
this)
968 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animationpreview_base"))->getController()->getValue().getString(),
969 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animationpreview_overlay1"))->getController()->getValue().getString(),
970 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animationpreview_overlay2"))->getController()->getValue().getString(),
971 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"animationpreview_overlay3"))->getController()->getValue().getString()
974 Console::println(
string(
"ModelEditorTabController::applyAnimationPreviewDetails(): An error occurred: ") + exception.what());;
981 string outlinerNodeModel;
982 Model* model =
nullptr;
984 if (StringTools::startsWith(outlinerNodeModel,
"model.materials.") ==
true) {
987 if (outlinerNodeModel ==
"model.animations") {
990 if (StringTools::startsWith(outlinerNodeModel,
"model.animations.") ==
true) {
992 view->
playAnimation(animationSetup ==
nullptr?Model::ANIMATIONSETUP_DEFAULT:animationSetup->getId());
1004 if (material ==
nullptr)
return;
1005 auto specularMaterialProperties = material->getSpecularMaterialProperties();
1006 if (specularMaterialProperties ==
nullptr) {
1008 material->setSpecularMaterialProperties(specularMaterialProperties);
1011 class OnLoadTexture:
public virtual Action
1014 void performAction()
override {
1016 modelEditorTabController->view->reloadPrototype();
1017 specularMaterialProperties->setDiffuseTexture(
1018 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName(),
1019 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName(),
1020 specularMaterialProperties->getDiffuseTransparencyTexturePathName(),
1021 specularMaterialProperties->getDiffuseTransparencyTextureFileName()
1023 modelEditorTabController->updateMaterialDetails();
1024 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1033 : modelEditorTabController(modelEditorTabController)
1034 , specularMaterialProperties(specularMaterialProperties) {
1043 auto extensions = TextureReader::getTextureExtensions();
1045 specularMaterialProperties->getDiffuseTextureFileName().empty() ==
false?specularMaterialProperties->getDiffuseTexturePathName():
string(),
1046 "Load specular diffuse texture from: ",
1048 specularMaterialProperties->getDiffuseTextureFileName(),
1050 new OnLoadTexture(
this, specularMaterialProperties)
1056 if (material ==
nullptr)
return;
1057 auto specularMaterialProperties = material->getSpecularMaterialProperties();
1058 if (specularMaterialProperties ==
nullptr) {
1060 material->setSpecularMaterialProperties(specularMaterialProperties);
1063 specularMaterialProperties->setDiffuseTexture(
1066 specularMaterialProperties->getDiffuseTransparencyTexturePathName(),
1067 specularMaterialProperties->getDiffuseTransparencyTextureFileName()
1074 if (material ==
nullptr)
return;
1075 auto specularMaterialProperties = material->getSpecularMaterialProperties();
1076 if (specularMaterialProperties ==
nullptr) {
1078 material->setSpecularMaterialProperties(specularMaterialProperties);
1081 class OnLoadTexture:
public virtual Action
1084 void performAction()
override {
1086 modelEditorTabController->view->reloadPrototype();
1087 specularMaterialProperties->setDiffuseTexture(
1088 specularMaterialProperties->getDiffuseTexturePathName(),
1089 specularMaterialProperties->getDiffuseTextureFileName(),
1090 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName(),
1091 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
1093 modelEditorTabController->updateMaterialDetails();
1094 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1103 : modelEditorTabController(modelEditorTabController)
1104 , specularMaterialProperties(specularMaterialProperties) {
1112 auto extensions = TextureReader::getTextureExtensions();
1114 specularMaterialProperties->getDiffuseTransparencyTextureFileName().empty() ==
false?specularMaterialProperties->getDiffuseTransparencyTexturePathName():
string(),
1115 "Load specular diffuse transparency texture from: ",
1117 specularMaterialProperties->getDiffuseTransparencyTextureFileName(),
1119 new OnLoadTexture(
this, specularMaterialProperties)
1125 if (material ==
nullptr)
return;
1126 auto specularMaterialProperties = material->getSpecularMaterialProperties();
1127 if (specularMaterialProperties ==
nullptr) {
1129 material->setSpecularMaterialProperties(specularMaterialProperties);
1132 specularMaterialProperties->setDiffuseTexture(
1133 specularMaterialProperties->getDiffuseTexturePathName(),
1134 specularMaterialProperties->getDiffuseTextureFileName(),
1143 if (material ==
nullptr)
return;
1144 auto specularMaterialProperties = material->getSpecularMaterialProperties();
1145 if (specularMaterialProperties ==
nullptr) {
1147 material->setSpecularMaterialProperties(specularMaterialProperties);
1150 class OnLoadTexture:
public virtual Action
1153 void performAction()
override {
1155 modelEditorTabController->view->reloadPrototype();
1156 specularMaterialProperties->setNormalTexture(
1157 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName(),
1158 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
1160 modelEditorTabController->updateMaterialDetails();
1161 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1170 : modelEditorTabController(modelEditorTabController)
1171 , specularMaterialProperties(specularMaterialProperties) {
1180 auto extensions = TextureReader::getTextureExtensions();
1182 specularMaterialProperties->getNormalTextureFileName().empty() ==
false?specularMaterialProperties->getNormalTexturePathName():
string(),
1183 "Load specular normal texture from: ",
1185 specularMaterialProperties->getNormalTextureFileName(),
1187 new OnLoadTexture(
this, specularMaterialProperties)
1193 if (material ==
nullptr)
return;
1194 auto specularMaterialProperties = material->getSpecularMaterialProperties();
1195 if (specularMaterialProperties ==
nullptr) {
1197 material->setSpecularMaterialProperties(specularMaterialProperties);
1200 specularMaterialProperties->setNormalTexture(
1209 if (material ==
nullptr)
return;
1210 auto specularMaterialProperties = material->getSpecularMaterialProperties();
1211 if (specularMaterialProperties ==
nullptr) {
1213 material->setSpecularMaterialProperties(specularMaterialProperties);
1216 class OnLoadTexture:
public virtual Action
1219 void performAction()
override {
1221 modelEditorTabController->view->reloadPrototype();
1222 specularMaterialProperties->setSpecularTexture(
1223 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName(),
1224 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
1226 modelEditorTabController->updateMaterialDetails();
1227 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1236 : modelEditorTabController(modelEditorTabController)
1237 , specularMaterialProperties(specularMaterialProperties) {
1246 auto extensions = TextureReader::getTextureExtensions();
1248 specularMaterialProperties->getSpecularTextureFileName().empty() ==
false?specularMaterialProperties->getSpecularTexturePathName():
string(),
1249 "Load specular specular texture from: ",
1251 specularMaterialProperties->getSpecularTextureFileName(),
1253 new OnLoadTexture(
this, specularMaterialProperties)
1259 if (material ==
nullptr)
return;
1260 auto specularMaterialProperties = material->getSpecularMaterialProperties();
1261 if (specularMaterialProperties ==
nullptr) {
1263 material->setSpecularMaterialProperties(specularMaterialProperties);
1266 specularMaterialProperties->setSpecularTexture(
1275 if (material ==
nullptr)
return;
1276 auto pbrMaterialProperties = material->getPBRMaterialProperties();
1277 if (pbrMaterialProperties ==
nullptr)
return;
1279 class OnLoadTexture:
public virtual Action
1282 void performAction()
override {
1284 modelEditorTabController->view->reloadPrototype();
1285 pbrMaterialProperties->setBaseColorTexture(
1286 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName(),
1287 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
1289 modelEditorTabController->updateMaterialDetails();
1290 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1299 : modelEditorTabController(modelEditorTabController)
1300 , pbrMaterialProperties(pbrMaterialProperties) {
1309 auto extensions = TextureReader::getTextureExtensions();
1311 pbrMaterialProperties->getBaseColorTextureFileName().empty() ==
false?pbrMaterialProperties->getBaseColorTexturePathName():
string(),
1312 "Load PBR base color texture from: ",
1314 pbrMaterialProperties->getBaseColorTextureFileName(),
1316 new OnLoadTexture(
this, pbrMaterialProperties)
1322 if (material ==
nullptr)
return;
1323 auto pbrMaterialProperties = material->getPBRMaterialProperties();
1324 if (pbrMaterialProperties ==
nullptr)
return;
1326 pbrMaterialProperties->setBaseColorTexture(
1335 if (material ==
nullptr)
return;
1336 auto pbrMaterialProperties = material->getPBRMaterialProperties();
1337 if (pbrMaterialProperties ==
nullptr)
return;
1339 class OnLoadTexture:
public virtual Action
1342 void performAction()
override {
1344 modelEditorTabController->view->reloadPrototype();
1345 pbrMaterialProperties->setMetallicRoughnessTexture(
1346 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName(),
1347 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
1349 modelEditorTabController->updateMaterialDetails();
1350 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1359 : modelEditorTabController(modelEditorTabController)
1360 , pbrMaterialProperties(pbrMaterialProperties) {
1369 auto extensions = TextureReader::getTextureExtensions();
1371 pbrMaterialProperties->getMetallicRoughnessTextureFileName().empty() ==
false?pbrMaterialProperties->getMetallicRoughnessTexturePathName():
string(),
1372 "Load PBR metallic/roughness texture from: ",
1374 pbrMaterialProperties->getMetallicRoughnessTextureFileName(),
1376 new OnLoadTexture(
this, pbrMaterialProperties)
1382 if (material ==
nullptr)
return;
1383 auto pbrMaterialProperties = material->getPBRMaterialProperties();
1384 if (pbrMaterialProperties ==
nullptr)
return;
1386 pbrMaterialProperties->setMetallicRoughnessTexture(
1395 if (material ==
nullptr)
return;
1396 auto pbrMaterialProperties = material->getPBRMaterialProperties();
1397 if (pbrMaterialProperties ==
nullptr)
return;
1399 class OnLoadTexture:
public virtual Action
1402 void performAction()
override {
1404 modelEditorTabController->view->reloadPrototype();
1405 pbrMaterialProperties->setNormalTexture(
1406 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName(),
1407 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
1409 modelEditorTabController->updateMaterialDetails();
1410 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1419 : modelEditorTabController(modelEditorTabController)
1420 , pbrMaterialProperties(pbrMaterialProperties) {
1429 auto extensions = TextureReader::getTextureExtensions();
1431 pbrMaterialProperties->getNormalTextureFileName().empty() ==
false?pbrMaterialProperties->getNormalTexturePathName():
string(),
1432 "Load PBR normal texture from: ",
1434 pbrMaterialProperties->getNormalTextureFileName(),
1436 new OnLoadTexture(
this, pbrMaterialProperties)
1442 if (material ==
nullptr)
return;
1443 auto pbrMaterialProperties = material->getPBRMaterialProperties();
1444 if (pbrMaterialProperties ==
nullptr)
return;
1446 pbrMaterialProperties->setNormalTexture(
1455 if (prototype ==
nullptr)
return;
1458 if (selectBoxOptionParentNode ==
nullptr)
return;
1462 selectBoxOptionParentNode->replaceSubNodes(
1463 "<template id=\"tdme.animations.rename_input\" hint=\"Animation name\" text=\"" + GUIParser::escapeQuotes(animationId) +
"\"src=\"resources/engine/gui/template_outliner_rename.xml\" />\n",
1472 if (model ==
nullptr) {
1480 if (animationSetup !=
nullptr) {
1484 animationSetup->getId(),
1491 Console::println(
string(
"ModelEditorTabController::renameAnimation(): An error occurred: ") + exception.what());;
1497 class ReloadTabOutlinerAction:
public Action {
1500 string outlinerNode;
1502 ReloadTabOutlinerAction(
EditorView* editorView,
const string& outlinerNode): editorView(editorView), outlinerNode(outlinerNode) {}
1503 virtual void performAction() {
1513 if (model ==
nullptr)
return;
1516 auto defaultAnimationSetup = model->
getAnimationSetup(Model::ANIMATIONSETUP_DEFAULT);
1518 auto animationSetupCreated =
false;
1519 auto animationSetupName = string() +
"New animation";
1521 model->
addAnimationSetup(animationSetupName, defaultAnimationSetup !=
nullptr?defaultAnimationSetup->getStartFrame():0, defaultAnimationSetup !=
nullptr?defaultAnimationSetup->getEndFrame():0,
false, 1.0f) !=
nullptr) {
1522 animationSetupCreated =
true;
1525 for (
auto i = 1; i < 10001; i++) {
1526 animationSetupName = string() +
"New animation " + to_string(i);
1528 model->
addAnimationSetup(animationSetupName, defaultAnimationSetup !=
nullptr?defaultAnimationSetup->getStartFrame():0, defaultAnimationSetup !=
nullptr?defaultAnimationSetup->getEndFrame():0,
false, 1.0f) !=
nullptr) {
1529 animationSetupCreated =
true;
1536 if (animationSetupCreated ==
false) {
1540 Console::println(
string(
"ModelEditorTabController::createAnimationSetup(): An error occurred: ") + exception.what());;
1544 if (animationSetupCreated ==
true) {
1551 class OnLoadLODModel:
public virtual Action
1554 void performAction()
override {
1555 auto lodLevelIdx = -1;
1557 if (modelEditorTabController->view->getPrototype()->getLODLevel2() ==
nullptr) {
1558 lodLevel = modelEditorTabController->getLODLevel(2);
1561 if (modelEditorTabController->view->getPrototype()->getLODLevel3() ==
nullptr) {
1562 lodLevel = modelEditorTabController->getLODLevel(3);
1565 if (lodLevel ==
nullptr)
return;
1568 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName() +
1570 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
1572 lodLevel->
setType(LODObject3D::LODLEVELTYPE_MODEL);
1575 lodLevel->
getType() == LODObject3D::LODLEVELTYPE_MODEL?
1583 Console::println(
string(
"OnLoadLODModel::performAction(): An error occurred: ") + exception.what());;
1584 modelEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
1586 modelEditorTabController->view->getEditorView()->reloadTabOutliner(
"lod" + to_string(lodLevelIdx) +
".model");
1587 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1595 : modelEditorTabController(modelEditorTabController) {
1605 Console::println(
"ModelEditorTabController::createLOD(): LOD level 2 and LOD level 3 is already in use");
1606 showErrorPopUp(
"Warning",
"LOD level 2 and LOD level 3 is already in use");
1612 "Load LOD model from: ",
1613 ModelReader::getModelExtensions(),
1616 new OnLoadLODModel(
this)
1628 if (lodLevel ==
nullptr)
return;
1630 lodLevel->
setType(LODObject3D::LODLEVELTYPE_IGNORE);
1636 Console::println(
"ModelEditorTabController::setLODDetails(): ");
1639 if (prototype ==
nullptr)
return;
1643 case 2: prototypeLODLevel = prototype->getLODLevel2();
break;
1644 case 3: prototypeLODLevel = prototype->getLODLevel3();
break;
1646 if (prototypeLODLevel ==
nullptr)
return;
1649 string(
"<template id=\"details_lod\" src=\"resources/engine/gui/template_details_lod.xml\" />\n")
1653 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_lod"))->getActiveConditions().add(
"open");
1656 Console::println(
string(
"ModelEditorTabController::setLODDetails(): An error occurred: ") + exception.what());;
1665 Console::println(
"ModelEditorTabController::updateLODColorDetails(): ");
1668 if (prototype ==
nullptr)
return;
1672 case 2: prototypeLODLevel = prototype->getLODLevel2();
break;
1673 case 3: prototypeLODLevel = prototype->getLODLevel3();
break;
1675 if (prototypeLODLevel ==
nullptr)
return;
1681 Console::println(
string(
"ModelEditorTabController::updateLODColorDetails(): An error occurred: ") + exception.what());;
1687 Console::println(
"ModelEditorTabController::applyLODDetails(): ");
1690 if (prototype ==
nullptr)
return;
1694 case 2: prototypeLODLevel = prototype->getLODLevel2();
break;
1695 case 3: prototypeLODLevel = prototype->getLODLevel3();
break;
1697 if (prototypeLODLevel ==
nullptr)
return;
1700 prototypeLODLevel->
setMinDistance(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"lod_min_distance"))->getController()->getValue().getString()));
1702 Console::println(
string(
"ModelEditorTabController::applyLODDetails(): An error occurred: ") + exception.what());;
1708 if (StringTools::startsWith(outlinerNode,
"model.") ==
true) {
1710 if (lodLevel !=
nullptr) *lodLevel = 1;
1711 modelOutlinerNode = outlinerNode;
1713 if (outlinerNode ==
"lod2.model") {
1715 if (lodLevel !=
nullptr) *lodLevel = 2;
1716 modelOutlinerNode = outlinerNode;
1718 if (StringTools::startsWith(outlinerNode,
"lod2.model.") ==
true) {
1720 if (lodLevel !=
nullptr) *lodLevel = 2;
1721 modelOutlinerNode = StringTools::substring(outlinerNode,
string(
"lod2.").size(), outlinerNode.size());
1723 if (outlinerNode ==
"lod3.model") {
1725 if (lodLevel !=
nullptr) *lodLevel = 3;
1726 modelOutlinerNode = outlinerNode;
1728 if (StringTools::startsWith(outlinerNode,
"lod3.model.") ==
true) {
1730 if (lodLevel !=
nullptr) *lodLevel = 3;
1731 modelOutlinerNode = StringTools::substring(outlinerNode,
string(
"lod3.").size(), outlinerNode.size());
1733 if (outlinerNode ==
"lod4.model") {
1734 if (model !=
nullptr) *model =
nullptr;
1735 if (lodLevel !=
nullptr) *lodLevel = 4;
1736 modelOutlinerNode = outlinerNode;
1738 if (StringTools::startsWith(outlinerNode,
"lod4.model.") ==
true) {
1739 if (model !=
nullptr) *model =
nullptr;
1740 if (lodLevel !=
nullptr) *lodLevel = 4;
1741 modelOutlinerNode = StringTools::substring(outlinerNode,
string(
"lod4.").size(), outlinerNode.size());
1744 if (lodLevel !=
nullptr) *lodLevel = 1;
1745 modelOutlinerNode = outlinerNode;
1747 return model !=
nullptr;
1752 if (node->
getId() ==
"dropdown_outliner_add") {
1754 if (addOutlinerType ==
"animation") {
1756 string modelOutlinerNode;
1761 if (addOutlinerType ==
"lod") {
1764 if (addOutlinerType ==
"lod_none") {
1768 if (node->
getId() ==
"selectbox_outliner") {
1770 Console::println(outlinerNode);
1771 auto haveDetails =
false;
1772 if (outlinerNode ==
"lod2.model" ||
1773 StringTools::startsWith(outlinerNode,
"lod2.model.") ==
true) {
1775 if (outlinerNode ==
"lod2.model") {
1780 if (outlinerNode ==
"lod3.model" ||
1781 StringTools::startsWith(outlinerNode,
"lod3.model.") ==
true) {
1783 if (outlinerNode ==
"lod3.model") {
1788 if (outlinerNode ==
"lod4.model" ||
1789 StringTools::startsWith(outlinerNode,
"lod4.model.") ==
true) {
1791 if (outlinerNode ==
"lod4.model") {
1802 if (node->
getId() == applyAnimationNode) {
1807 if (node->
getId() == applySpecularMaterialNode) {
1813 if (node->
getId() == applyPBRMaterialNode) {
1819 if (node->
getId() == applyAnimationPreviewNode) {
1825 if (node->
getId() == applyLODNode) {
1827 if (outlinerNode ==
"lod2.model") {
1830 if (outlinerNode ==
"lod3.model") {
1855 if (node->
getId() ==
"tdme.animations.rename_input") {
1864 if (node->
getId() ==
"selectbox_outliner") {
1866 string modelOutlinerNode;
1869 if (outlinerNode ==
"model") {
1874 class OnModelReloadAction:
public virtual Action
1877 void performAction()
override {
1878 modelEditorTabController->onModelReload();
1880 OnModelReloadAction(
ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
1888 class OnModelLoadAction:
public virtual Action
1891 void performAction()
override {
1892 modelEditorTabController->onModelLoad();
1894 OnModelLoadAction(
ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
1902 class OnModelReimportAction:
public virtual Action
1905 void performAction()
override {
1906 modelEditorTabController->onModelReimport();
1908 OnModelReimportAction(
ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
1916 class OnModelGenerateBillboardLodAction:
public virtual Action
1919 void performAction()
override {
1920 auto prototype = modelEditorTabController->getView()->getPrototype();
1921 if (prototype ==
nullptr)
return;
1922 auto model = prototype->getModel();
1923 auto fileName = prototype->getModelFileName();
1925 if (prototype->getLODLevel2() !=
nullptr && prototype->getLODLevel3() !=
nullptr) {
1928 if (fileName.empty() ==
true)
throw ExceptionBase(
"Could not save file. No filename known");
1929 auto billboardModelPathName = Tools::getPathName(fileName);
1930 auto billboardModelFileName = Tools::removeFileEnding(Tools::getFileName(fileName)) +
".lod" + to_string(prototype->getLODLevel2() ==
nullptr?2:3) +
".tm";
1931 auto billboardLODModel = GenerateBillboardLOD::generate(
1933 billboardModelPathName,
1934 billboardModelFileName
1936 if (prototype->getLODLevel2() ==
nullptr) {
1937 prototype->setLODLevel2(
1939 LODObject3D::LODLEVELTYPE_MODEL,
1940 billboardModelPathName +
"/" + billboardModelFileName,
1946 if (prototype->getLODLevel2() ==
nullptr) {
1947 prototype->setLODLevel3(
1949 LODObject3D::LODLEVELTYPE_MODEL,
1950 billboardModelPathName +
"/" + billboardModelFileName,
1956 modelEditorTabController->getView()->reloadPrototype();
1958 modelEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
1961 OnModelGenerateBillboardLodAction(
ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
1967 class EnqueueOnModelGenerateBillboardLodAction:
public virtual Action {
1969 void performAction()
override {
1970 Engine::getInstance()->enqueueAction(
new OnModelGenerateBillboardLodAction(modelEditorTabController));
1972 EnqueueOnModelGenerateBillboardLodAction(
ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
1981 class OnModelGenerateImposterLodAction:
public virtual Action
1984 void performAction()
override {
1985 auto prototype = modelEditorTabController->getView()->getPrototype();
1986 if (prototype ==
nullptr)
return;
1987 auto model = prototype->getModel();
1988 auto fileName = prototype->getModelFileName();
1990 if (fileName.empty() ==
true)
throw ExceptionBase(
"Could not save file. No filename known");
1991 auto imposterModelPathName = Tools::getPathName(fileName);
1992 auto imposterModelFileName = Tools::removeFileEnding(Tools::getFileName(fileName)) +
".lod" + to_string(prototype->getLODLevel2() ==
nullptr?2:3) +
".tm";
1993 vector<Model*> imposterLODModels {};
1994 vector<string> imposterLODFileNames;
1995 GenerateImposterLOD::generate(
1997 imposterModelPathName,
1998 imposterModelFileName,
2000 imposterLODFileNames,
2003 prototype->setImposterLOD(
2005 imposterLODFileNames,
2010 modelEditorTabController->getView()->reloadPrototype();
2012 modelEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
2015 OnModelGenerateImposterLodAction(
ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
2021 class EnqueueOnModelGenerateImposterLodAction:
public virtual Action {
2023 void performAction()
override {
2024 Engine::getInstance()->enqueueAction(
new OnModelGenerateImposterLodAction(modelEditorTabController));
2026 EnqueueOnModelGenerateImposterLodAction(
ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
2037 if (outlinerNode ==
"lod2.model") {
2042 class OnLODLoadAction:
public virtual Action
2045 void performAction()
override {
2046 modelEditorTabController->onLODLoad(lodLevel);
2048 OnLODLoadAction(
ModelEditorTabController* modelEditorTabController,
int lodLevel): modelEditorTabController(modelEditorTabController), lodLevel(lodLevel) {
2057 class OnLODDeleteAction:
public virtual Action
2060 void performAction()
override {
2061 if (prototype ==
nullptr)
return;
2062 modelEditorTabController->view->setLODLevel(1);
2063 prototype->removeLODLevel(lodLevel);
2064 modelEditorTabController->view->getEditorView()->reloadTabOutliner(
"model");
2066 OnLODDeleteAction(
ModelEditorTabController* modelEditorTabController,
Prototype* prototype,
int lodLevel): modelEditorTabController(modelEditorTabController), prototype(prototype), lodLevel(lodLevel) {
2078 if (outlinerNode ==
"lod3.model") {
2083 class OnLODLoadAction:
public virtual Action
2086 void performAction()
override {
2087 modelEditorTabController->onLODLoad(lodLevel);
2089 OnLODLoadAction(
ModelEditorTabController* modelEditorTabController,
int lodLevel): modelEditorTabController(modelEditorTabController), lodLevel(lodLevel) {
2098 class OnLODDeleteAction:
public virtual Action
2101 void performAction()
override {
2102 if (prototype ==
nullptr)
return;
2103 modelEditorTabController->view->setLODLevel(2);
2104 prototype->removeLODLevel(lodLevel);
2105 modelEditorTabController->view->getEditorView()->reloadTabOutliner(
"lod2.model");
2107 OnLODDeleteAction(
ModelEditorTabController* modelEditorTabController,
Prototype* prototype,
int lodLevel): modelEditorTabController(modelEditorTabController), prototype(prototype), lodLevel(lodLevel) {
2119 if (outlinerNode ==
"lod4.model") {
2124 class OnLOD4DeleteAction:
public virtual Action
2127 void performAction()
override {
2128 if (prototype ==
nullptr)
return;
2129 modelEditorTabController->view->setLODLevel(1);
2130 prototype->setImposterLOD(
nullptr);
2131 modelEditorTabController->view->getEditorView()->reloadTabOutliner(
"model");
2133 OnLOD4DeleteAction(
ModelEditorTabController* modelEditorTabController,
Prototype* prototype): modelEditorTabController(modelEditorTabController), prototype(prototype) {
2144 if (modelOutlinerNode ==
"model.animations") {
2148 class OnAddAnimationAction:
public virtual Action
2151 void performAction()
override {
2152 auto outlinerNode = modelEditorTabController->view->getEditorView()->getScreenController()->getOutlinerSelection();
2153 string modelOutlinerNode;
2155 modelEditorTabController->getOutlinerNodeLOD(outlinerNode, modelOutlinerNode,
nullptr, &lodLevel);
2156 if (modelOutlinerNode ==
"model.animations") modelEditorTabController->createAnimationSetup(lodLevel);
2158 OnAddAnimationAction(
ModelEditorTabController* modelEditorTabController,
Prototype* prototype): modelEditorTabController(modelEditorTabController), prototype(prototype) {
2169 if (StringTools::startsWith(modelOutlinerNode,
"model.animations.") ==
true) {
2173 class OnRenameAction:
public virtual Action
2176 void performAction()
override {
2177 auto outlinerNode = modelEditorTabController->view->getEditorView()->getScreenController()->getOutlinerSelection();
2178 string modelOutlinerNode;
2180 modelEditorTabController->getOutlinerNodeLOD(outlinerNode, modelOutlinerNode,
nullptr, &lodLevel);
2181 if (StringTools::startsWith(modelOutlinerNode,
"model.animations.") ==
true) {
2182 modelEditorTabController->startRenameAnimation(
2184 StringTools::substring(modelOutlinerNode,
string(
"model.animations.").size(), modelOutlinerNode.size())
2188 OnRenameAction(
ModelEditorTabController* modelEditorTabController,
Prototype* prototype): modelEditorTabController(modelEditorTabController), prototype(prototype) {
2200 class OnDeleteAction:
public virtual Action
2203 void performAction()
override {
2204 auto outlinerNode = modelEditorTabController->view->getEditorView()->getScreenController()->getOutlinerSelection();
2205 string modelOutlinerNode;
2207 modelEditorTabController->getOutlinerNodeLOD(outlinerNode, modelOutlinerNode,
nullptr, &lodLevel);
2208 if (StringTools::startsWith(modelOutlinerNode,
"model.animations.") ==
true) {
2209 modelEditorTabController->view->playAnimation(Model::ANIMATIONSETUP_DEFAULT);
2210 auto animationId = StringTools::substring(modelOutlinerNode,
string(
"model.animations.").size(), modelOutlinerNode.size());
2211 Model* model = modelEditorTabController->getLODLevelModel(lodLevel);
2213 modelEditorTabController->view->getEditorView()->reloadTabOutliner((lodLevel == 1?
"model":
"lod" + to_string(lodLevel) +
".model") +
".animations");
2216 OnDeleteAction(
ModelEditorTabController* modelEditorTabController,
Prototype* prototype): modelEditorTabController(modelEditorTabController), prototype(prototype) {
2237 if (node->
getId().compare(
"specularmaterial_diffuse_texture_open") == 0) {
2240 if (node->
getId().compare(
"specularmaterial_diffuse_texture_remove") == 0) {
2243 if (node->
getId().compare(
"specularmaterial_transparency_texture_open") == 0) {
2246 if (node->
getId().compare(
"specularmaterial_transparency_texture_remove") == 0) {
2249 if (node->
getId().compare(
"specularmaterial_normal_texture_open") == 0) {
2252 if (node->
getId().compare(
"specularmaterial_normal_texture_remove") == 0) {
2255 if (node->
getId().compare(
"specularmaterial_specular_texture_open") == 0) {
2258 if (node->
getId().compare(
"specularmaterial_specular_texture_remove") == 0) {
2261 if (node->
getId().compare(
"pbrmaterial_basecolor_texture_open") == 0) {
2264 if (node->
getId().compare(
"pbrmaterial_basecolor_texture_remove") == 0) {
2267 if (node->
getId().compare(
"pbrmaterial_metallic_roughness_texture_open") == 0) {
2270 if (node->
getId().compare(
"pbrmaterial_metallic_roughness_texture_remove") == 0) {
2273 if (node->
getId().compare(
"pbrmaterial_normal_texture_open") == 0) {
2276 if (node->
getId().compare(
"pbrmaterial_normal_texture_remove") == 0) {
2279 if (node->
getId().compare(
"animationpreview_attachment1_model_open") == 0) {
2282 if (node->
getId().compare(
"animationpreview_attachment1_model_remove") == 0) {
2285 if (node->
getId().compare(
"specularmaterial_ambient_edit") == 0) {
2287 auto specularMaterialProperties = material !=
nullptr?material->getSpecularMaterialProperties():
nullptr;
2288 if (specularMaterialProperties !=
nullptr) {
2289 class OnColorChangeAction:
public virtual Action
2292 void performAction()
override {
2293 material->getSpecularMaterialProperties()->setAmbientColor(
Color4(modelEditorTabController->popUps->getColorPickerScreenController()->getColor()));
2294 modelEditorTabController->updateMaterialColorDetails();
2296 OnColorChangeAction(
ModelEditorTabController* modelEditorTabController,
Material* material): modelEditorTabController(modelEditorTabController), material(material) {
2305 if (node->
getId().compare(
"specularmaterial_diffuse_edit") == 0) {
2307 auto specularMaterialProperties = material !=
nullptr?material->getSpecularMaterialProperties():
nullptr;
2308 if (specularMaterialProperties !=
nullptr) {
2309 class OnColorChangeAction:
public virtual Action
2312 void performAction()
override {
2313 material->getSpecularMaterialProperties()->setDiffuseColor(
Color4(modelEditorTabController->popUps->getColorPickerScreenController()->getColor()));
2314 modelEditorTabController->updateMaterialColorDetails();
2316 OnColorChangeAction(
ModelEditorTabController* modelEditorTabController,
Material* material): modelEditorTabController(modelEditorTabController), material(material) {
2325 if (node->
getId().compare(
"specularmaterial_emission_edit") == 0) {
2327 auto specularMaterialProperties = material !=
nullptr?material->getSpecularMaterialProperties():
nullptr;
2328 if (specularMaterialProperties !=
nullptr) {
2329 class OnColorChangeAction:
public virtual Action
2332 void performAction()
override {
2333 material->getSpecularMaterialProperties()->setEmissionColor(
Color4(modelEditorTabController->popUps->getColorPickerScreenController()->getColor()));
2334 modelEditorTabController->updateMaterialColorDetails();
2336 OnColorChangeAction(
ModelEditorTabController* modelEditorTabController,
Material* material): modelEditorTabController(modelEditorTabController), material(material) {
2345 if (node->
getId().compare(
"specularmaterial_specular_edit") == 0) {
2347 auto specularMaterialProperties = material !=
nullptr?material->getSpecularMaterialProperties():
nullptr;
2348 if (specularMaterialProperties !=
nullptr) {
2349 class OnColorChangeAction:
public virtual Action
2352 void performAction()
override {
2353 material->getSpecularMaterialProperties()->setSpecularColor(
Color4(modelEditorTabController->popUps->getColorPickerScreenController()->getColor()));
2354 modelEditorTabController->updateMaterialColorDetails();
2356 OnColorChangeAction(
ModelEditorTabController* modelEditorTabController,
Material* material): modelEditorTabController(modelEditorTabController), material(material) {
2365 if (node->
getId().compare(
"pbrmaterial_basecolor_edit") == 0) {
2367 auto pbrMaterialProperties = material !=
nullptr?material->getPBRMaterialProperties():
nullptr;
2368 if (pbrMaterialProperties !=
nullptr) {
2369 class OnColorChangeAction:
public virtual Action
2372 void performAction()
override {
2373 material->getPBRMaterialProperties()->setBaseColorFactor(
Color4(modelEditorTabController->popUps->getColorPickerScreenController()->getColor()));
2374 modelEditorTabController->updateMaterialColorDetails();
2376 OnColorChangeAction(
ModelEditorTabController* modelEditorTabController,
Material* material): modelEditorTabController(modelEditorTabController), material(material) {
2385 if (node->
getId().compare(
"lod_color_add_edit") == 0) {
2387 string modelOutlinerNode;
2392 case 2: prototypeLODLevel = prototype->getLODLevel2();
break;
2393 case 3: prototypeLODLevel = prototype->getLODLevel3();
break;
2396 if (prototypeLODLevel ==
nullptr)
return;
2397 class OnColorChangeAction:
public virtual Action
2400 void performAction()
override {
2401 prototypeLODLevel->
setColorAdd(
Color4(modelEditorTabController->popUps->getColorPickerScreenController()->getColor()));
2402 modelEditorTabController->updateLODColorDetails(lodLevel);
2403 modelEditorTabController->view->updateLODLevel();
2405 OnColorChangeAction(
ModelEditorTabController* modelEditorTabController,
int lodLevel,
PrototypeLODLevel* prototypeLODLevel): modelEditorTabController(modelEditorTabController), lodLevel(lodLevel), prototypeLODLevel(prototypeLODLevel) {
2414 if (node->
getId().compare(
"lod_color_mul_edit") == 0) {
2416 string modelOutlinerNode;
2421 case 2: prototypeLODLevel = prototype->getLODLevel2();
break;
2422 case 3: prototypeLODLevel = prototype->getLODLevel3();
break;
2425 if (prototypeLODLevel ==
nullptr)
return;
2426 class OnColorChangeAction:
public virtual Action
2429 void performAction()
override {
2430 prototypeLODLevel->
setColorMul(
Color4(modelEditorTabController->popUps->getColorPickerScreenController()->getColor()));
2431 modelEditorTabController->updateLODColorDetails(lodLevel);
2432 modelEditorTabController->view->updateLODLevel();
2434 OnColorChangeAction(
ModelEditorTabController* modelEditorTabController,
int lodLevel,
PrototypeLODLevel* prototypeLODLevel): modelEditorTabController(modelEditorTabController), lodLevel(lodLevel), prototypeLODLevel(prototypeLODLevel) {
2443 if (node->
getId() ==
"tdme.animations.rename_input") {
void setPBRMaterialProperties(PBRMaterialProperties *pbrMaterialProperties)
Set PBR material properties.
const PBRMaterialProperties * getPBRMaterialProperties() const
const SpecularMaterialProperties * getSpecularMaterialProperties() const
Representation of a 3d model.
map< string, AnimationSetup * > & getAnimationSetups()
TODO: return const map.
void setShaderModel(ShaderModel *shaderModel)
Set preferred shader model.
bool removeAnimationSetup(const string &id)
Remove animation setup.
AnimationSetup * addAnimationSetup(const string &id, int32_t startFrame, int32_t endFrame, bool loop, float speed=1.0f)
Adds an base animation setup.
AnimationSetup * getAnimationSetup(const string &id)
map< string, Node * > & getSubNodes()
Returns object's sub nodes.
bool renameAnimationSetup(const string &id, const string &newId)
Rename animation set up.
map< string, Material * > & getMaterials()
Returns all object materials.
Represents specular material properties.
void setMetallicFactor(float metallicFactor)
Set metallic factor.
Represents specular material properties.
void setShininess(float shininess)
Set up material shininess.
Base property model class.
Prototype LOD level definition.
LODObject3D::LODLevelType getType() const
void setFileName(const string &fileName)
Set file name.
void setColorAdd(const Color4 &colorAdd)
Set color add.
const string & getFileName()
void setModel(Model *model)
Set model.
void setColorMul(const Color4 &colorMul)
Set color mul.
void setType(LODObject3D::LODLevelType type)
Set type.
const Color4 & getColorAdd() const
void setMinDistance(float minDistance)
Set min distance.
const Color4 & getColorMul() const
float getMinDistance() const
PrototypeLODLevel * getLODLevel2()
PrototypeLODLevel * getLODLevel3()
const string & getFileName()
GUI node controller base class.
virtual const MutableString & getValue()=0
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.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void delegateValueChanged(GUIElementNode *node)
Delegate value changed.
GUINode * getInnerNodeById(const string &nodeId)
Get inner GUI node by id.
Generate imposter LOD utility class.
const string & getString() const
std::exception Exception
Exception base class.