TDME2 1.9.121
ModelEditorTabController.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
21#include <tdme/engine/Engine.h>
32#include <tdme/gui/GUI.h>
33#include <tdme/gui/GUIParser.h>
34#include <tdme/math/Vector3.h>
59
60using std::string;
61using std::vector;
62
64
115
116ModelEditorTabController::ModelEditorTabController(ModelEditorTabView* view)
117{
118 this->view = view;
119 this->popUps = view->getPopUps();
123 this->prototypeDisplaySubController = new PrototypeDisplaySubController(view->getEditorView(), view, this->prototypePhysicsSubController->getView());
124}
125
131}
132
134 return view;
135}
136
138{
139 return screenNode;
140}
141
143{
144 this->screenNode = screenNode;
149}
150
152{
153}
154
156{
157 auto fileName = view->getPrototype() != nullptr?view->getPrototype()->getFileName():"";
158 try {
159 if (fileName.empty() == true) throw ExceptionBase("Could not save file. No filename known");
160 view->saveFile(
161 Tools::getPathName(fileName),
162 Tools::getFileName(fileName)
163 );
164 } catch (Exception& exception) {
165 showErrorPopUp("Warning", (string(exception.what())));
166 }
167}
168
170{
171 class OnModelSave: public virtual Action
172 {
173 public:
174 void performAction() override {
175 try {
176 modelEditorTabController->view->saveFile(
177 modelEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
178 modelEditorTabController->popUps->getFileDialogScreenController()->getFileName()
179 );
180 } catch (Exception& exception) {
181 modelEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
182 }
183 modelEditorTabController->popUps->getFileDialogScreenController()->close();
184 }
185
186 /**
187 * Public constructor
188 * @param modelEditorTabController model editor tab controller
189 */
190 OnModelSave(ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
191 }
192
193 private:
194 ModelEditorTabController* modelEditorTabController;
195 };
196
197 auto fileName = view->getPrototype() != nullptr?view->getPrototype()->getFileName():"";
198 if (fileName.length() == 0) {
199 fileName = view->getFileName();
200 if (StringTools::endsWith(StringTools::toLowerCase(fileName), ".tmodel") == false) {
201 fileName = Tools::removeFileEnding(fileName) + ".tmodel";
202 }
203 }
204 vector<string> extensions = {
205 "tmodel"
206 };
208 Tools::getPathName(fileName),
209 "Save to: ",
210 extensions,
211 Tools::getFileName(fileName),
212 false,
213 new OnModelSave(this)
214 );
215}
216
217void ModelEditorTabController::createOutlinerModelNodesXML(const string& prefix, const map<string, Node*>& subNodes, string& xml) {
218 for (auto nodeIt: subNodes) {
219 auto node = nodeIt.second;
220 string image;
221 if (node->isJoint() == true) {
222 image = "bone.png";
223 } else
224 if (node->isEmpty() == true) {
225 image = "empty.png";
226 } else {
227 image = "mesh.png";
228 }
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";
231 createOutlinerModelNodesXML(prefix, node->getSubNodes(), xml);
232 xml+= "</selectbox-parent-option>\n";
233 } else {
234 xml+= " <selectbox-option image=\"resources/engine/images/" + image + "\" text=\"" + GUIParser::escapeQuotes(node->getId()) + "\" value=\"" + GUIParser::escapeQuotes(prefix + ".nodes." + node->getId()) + "\" />\n";
235 }
236 }
237}
238
240 string xml;
241 xml+= "<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes("Prototype") + "\" value=\"" + GUIParser::escapeQuotes("prototype") + "\">\n";
242 auto prototype = view->getPrototype();
243 if (prototype != nullptr) {
248 for (auto lodLevel = 1; lodLevel < 5; lodLevel++) {
249 Model* model = nullptr;
250 switch (lodLevel) {
251 case 1:
252 model = prototype->getModel();
253 break;
254 case 2:
255 model = prototype->getLODLevel2() != nullptr?prototype->getLODLevel2()->getModel():nullptr;
256 if (prototype->getLODLevel2() == nullptr) continue;
257 break;
258 case 3:
259 model = prototype->getLODLevel3() != nullptr?prototype->getLODLevel3()->getModel():nullptr;
260 if (prototype->getLODLevel3() == nullptr) continue;
261 break;
262 case 4:
263 model = nullptr;
264 if (prototype->getImposterLOD() == nullptr) continue;
265 break;
266 }
267 auto modelPrefix = lodLevel == 1?"model":"lod" + to_string(lodLevel) + ".model";
268 // TODO: clean up "model != nullpt" stuff here
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";
271 } else {
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";
273 }
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";
276 for (auto it: model->getMaterials()) {
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";
279 }
280 xml+= "</selectbox-parent-option>\n";
281 }
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";
284 createOutlinerModelNodesXML(modelPrefix, model->getSubNodes(), xml);
285 xml+= "</selectbox-parent-option>\n";
286 }
287 if (model != nullptr &&
288 (model->getAnimationSetups().size() > 1 || model->getAnimationSetup(Model::ANIMATIONSETUP_DEFAULT) == nullptr)) {
289 xml+= "<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes("Animations") + "\" value=\"" + GUIParser::escapeQuotes(modelPrefix + ".animations") + "\">\n";
290 for (auto it: model->getAnimationSetups()) {
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";
294 }
295 xml+= "</selectbox-parent-option>\n";
296 }
297 if (model != nullptr) xml+= "</selectbox-parent-option>\n";
298 }
299 }
300 xml+= "</selectbox-parent-option>\n";
302}
303
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")
312 );
313}
314
317}
318
320 auto prototype = view->getPrototype();
321 if (prototype == nullptr) return nullptr;
322 switch (level) {
323 case 2:
324 {
325 auto prototypeLodLevel = prototype->getLODLevel2();
326 if (prototypeLodLevel == nullptr) {
327 prototypeLodLevel = new PrototypeLODLevel(
328 LODObject3D::LODLEVELTYPE_NONE,
329 "",
330 nullptr,
331 75.0f
332 );
333 prototype->setLODLevel2(prototypeLodLevel);
334 }
335 return prototypeLodLevel;
336 }
337 case 3:
338 {
339 auto prototypeLodLevel = prototype->getLODLevel3();
340 if (prototypeLodLevel == nullptr) {
341 prototypeLodLevel = new PrototypeLODLevel(
342 LODObject3D::LODLEVELTYPE_NONE,
343 "",
344 nullptr,
345 150.0f
346 );
347 prototype->setLODLevel3(prototypeLodLevel);
348 }
349 return prototypeLodLevel;
350 }
351 }
352 return nullptr;
353}
354
356 Model* model = nullptr;
357 switch (level) {
358 case 1: model = view->getPrototype()->getModel(); break;
359 case 2: model = view->getPrototype()->getLODLevel2() != nullptr?view->getPrototype()->getLODLevel2()->getModel():nullptr; break;
360 case 3: model = view->getPrototype()->getLODLevel3() != nullptr?view->getPrototype()->getLODLevel3()->getModel():nullptr; break;
361 default: model = nullptr;
362 }
363 return model;
364}
365
367 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
368 string outlinerNodeModel;
369 Model* model = nullptr;
370 getOutlinerNodeLOD(outlinerNode, outlinerNodeModel, &model);
371 return model;
372}
373
375 string materialId;
376 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
377 string outlinerNodeModel;
378 Model* model = nullptr;
379 getOutlinerNodeLOD(outlinerNode, outlinerNodeModel, &model);
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());
383 } else {
384 return nullptr;
385 }
386 auto materialIt = model->getMaterials().find(materialId);
387 return materialIt != model->getMaterials().end()?materialIt->second:nullptr;
388}
389
391 string animationId;
392 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
393 string outlinerNodeModel;
394 Model* model = nullptr;
395 getOutlinerNodeLOD(outlinerNode, outlinerNodeModel, &model);
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());
399 } else {
400 return nullptr;
401 }
402 return model->getAnimationSetup(animationId);
403}
404
405void ModelEditorTabController::setStatistics(int statsOpaqueFaces, int statsTransparentFaces, int statsMaterialCount)
406{
407}
408
410{
411}
412
415}
416
419}
420
422{
423 view->reloadFile();
424}
425
427 class OnModelLoad: public virtual Action
428 {
429
430 public:
431 void performAction() override {
432 modelEditorTabController->view->loadModel(
433 modelEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
434 modelEditorTabController->popUps->getFileDialogScreenController()->getFileName()
435 );
436 modelEditorTabController->popUps->getFileDialogScreenController()->close();
437 }
438
439 /**
440 * Public constructor
441 * @param modelEditorTabController model editor tab controller
442 */
443 OnModelLoad(ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
444 }
445
446 private:
447 ModelEditorTabController* modelEditorTabController;
448 };
449
451 string(),
452 "Load model from: ",
453 ModelReader::getModelExtensions(),
454 view->getFileName(),
455 true,
456 new OnModelLoad(this)
457 );
458}
459
461{
462 class OnModelReimport: public virtual Action
463 {
464
465 public:
466 void performAction() override {
467 modelEditorTabController->view->reimportModel(
468 modelEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
469 modelEditorTabController->popUps->getFileDialogScreenController()->getFileName()
470 );
471 modelEditorTabController->popUps->getFileDialogScreenController()->close();
472 }
473
474 /**
475 * Public constructor
476 * @param modelEditorTabController model editor tab controller
477 */
478 OnModelReimport(ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
479 }
480
481 private:
482 ModelEditorTabController* modelEditorTabController;
483 };
484
486 string(),
487 "Reimport model from: ",
488 ModelReader::getModelExtensions(),
489 view->getFileName(),
490 true,
491 new OnModelReimport(this)
492 );
493}
494
495void ModelEditorTabController::saveFile(const string& pathName, const string& fileName)
496{
497 view->saveFile(pathName, fileName);
498}
499
500void ModelEditorTabController::loadFile(const string& pathName, const string& fileName)
501{
502 view->loadModel(pathName, fileName);
503}
504
506 class OnLODLoad: public virtual Action
507 {
508
509 public:
510 void performAction() override {
511 PrototypeLODLevel* prototypeLODLevel = nullptr;
512 switch (lodLevel) {
513 case 2: prototypeLODLevel = prototype->getLODLevel2(); break;
514 case 3: prototypeLODLevel = prototype->getLODLevel3(); break;
515 default: break;
516 }
517 if (prototypeLODLevel == nullptr) return;
518
519 modelEditorTabController->view->setLODLevel(1);
520
521 try {
522 // set model in LOD level
523 prototypeLODLevel->setModel(
524 ModelReader::read(
525 modelEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
526 modelEditorTabController->popUps->getFileDialogScreenController()->getFileName()
527 )
528 );
529 } catch (Exception& exception) {
530 Console::println(string("OnLODLoad::performAction(): An error occurred: ") + exception.what());;
531 modelEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
532 }
533
534 modelEditorTabController->view->setLODLevel(lodLevel);
535 modelEditorTabController->view->getEditorView()->reloadTabOutliner("lod" + to_string(lodLevel) + ".model");
536 modelEditorTabController->popUps->getFileDialogScreenController()->close();
537 }
538
539 /**
540 * Public constructor
541 * @param modelEditorTabController model editor tab controller
542 * @param prototype prototype
543 * @param lodLevel LOD level
544 */
545 OnLODLoad(ModelEditorTabController* modelEditorTabController, Prototype* prototype, int lodLevel): modelEditorTabController(modelEditorTabController), prototype(prototype), lodLevel(lodLevel) {
546 }
547
548 private:
549 ModelEditorTabController* modelEditorTabController;
550 Prototype* prototype;
551 int lodLevel;
552 };
553
555 string(),
556 "Load LOD " + to_string(lodLevel) + " model from: ",
557 ModelReader::getModelExtensions(),
558 view->getFileName(),
559 true,
560 new OnLODLoad(this, view->getPrototype(), lodLevel)
561 );
562}
563
565 required_dynamic_cast<GUITextNode*>(screenNode->getNodeById(view->getTabId() + "_tab_text_info"))->setText(text);
566}
567
568void ModelEditorTabController::showErrorPopUp(const string& caption, const string& message)
569{
570 popUps->getInfoDialogScreenController()->show(caption, message);
571}
572
574 Material* material = getSelectedMaterial();
575 if (material == nullptr) return;
576
577 auto specularMaterialProperties = material->getSpecularMaterialProperties();
578 auto pbrMaterialProperties = material->getPBRMaterialProperties();
579
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"
583 );
584
585 try {
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");
588
589 if (pbrMaterialProperties != nullptr) {
590 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("pbrmaterial_details"))->getActiveConditions().add("pbr");
591 } else {
592 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("pbrmaterial_details"))->getActiveConditions().remove("pbr");
593 }
594 } catch (Exception& exception) {
595 Console::println(string("ModelEditorTabController::setMaterialDetails(): An error occurred: ") + exception.what());;
596 showErrorPopUp("Warning", (string(exception.what())));
597 }
598
599 //
601}
602
604 Material* material = getSelectedMaterial();
605 if (material == nullptr) return;
606
607 auto specularMaterialProperties = material->getSpecularMaterialProperties();
608 auto pbrMaterialProperties = material->getPBRMaterialProperties();
609
610 try {
611 required_dynamic_cast<GUIImageNode*>(screenNode->getNodeById("specularmaterial_diffuse_texture"))->setSource(
612 PrototypeReader::getResourcePathName(
614 specularMaterialProperties->getDiffuseTexturePathName() + "/" + specularMaterialProperties->getDiffuseTextureFileName()
615 ) +
616 "/" +
617 specularMaterialProperties->getDiffuseTextureFileName()
618 );
619 required_dynamic_cast<GUIImageNode*>(screenNode->getNodeById("specularmaterial_transparency_texture"))->setSource(
620 PrototypeReader::getResourcePathName(
622 specularMaterialProperties->getDiffuseTransparencyTexturePathName() + "/" + specularMaterialProperties->getDiffuseTransparencyTextureFileName()
623 ) +
624 "/" +
625 specularMaterialProperties->getDiffuseTextureFileName()
626 );
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":""));
632
633 if (pbrMaterialProperties != nullptr) {
634 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("pbrmaterial_enabled"))->getController()->setValue(MutableString("1"));
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":""));
643 } else {
644 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("pbrmaterial_enabled"))->getController()->setValue(MutableString());
645 }
646 } catch (Exception& exception) {
647 Console::println(string("ModelEditorTabController::updateMaterialDetails(): An error occurred: ") + exception.what());;
648 showErrorPopUp("Warning", (string(exception.what())));
649 }
650
651 //
653}
654
656 Material* material = getSelectedMaterial();
657 if (material == nullptr) return;
658
659 auto specularMaterialProperties = material->getSpecularMaterialProperties();
660 auto pbrMaterialProperties = material->getPBRMaterialProperties();
661
662 try {
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()));
667
668 if (pbrMaterialProperties != nullptr) {
669 required_dynamic_cast<GUIImageNode*>(screenNode->getNodeById("pbrmaterial_basecolor"))->setEffectColorMul(Color4(pbrMaterialProperties->getBaseColorFactor()));
670 }
671 } catch (Exception& exception) {
672 Console::println(string("ModelEditorTabController::updateMaterialColorDetails(): An error occurred: ") + exception.what());;
673 showErrorPopUp("Warning", (string(exception.what())));
674 }
675}
676
677
679 Material* material = getSelectedMaterial();
680 if (material == nullptr) return;
681
682 auto specularMaterialProperties = material->getSpecularMaterialProperties();
683
684 try {
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");
688 } catch (Exception& exception) {
689 Console::println(string("ModelEditorTabController::applySpecularMaterialDetails(): An error occurred: ") + exception.what());;
690 showErrorPopUp("Warning", (string(exception.what())));
691 }
692}
693
695 Material* material = getSelectedMaterial();
696 if (material == nullptr) return;
697
698 try {
699 if (required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("pbrmaterial_enabled"))->getController()->getValue().equals("1") == true) {
700 if (material->getPBRMaterialProperties() == nullptr) {
702 string outlinerNodeModel;
703 Model* model = nullptr;
705 if (model != nullptr) model->setShaderModel(ShaderModel::PBR);
708 }
709 } else {
710 if (material->getPBRMaterialProperties() != nullptr) {
712 Model* model = nullptr;
713 string outlinerNodeModel;
715 if (model != nullptr) model->setShaderModel(ShaderModel::SPECULAR);
716 material->setPBRMaterialProperties(nullptr);
718 }
719 }
720 } catch (Exception& exception) {
721 Console::println(string("ModelEditorTabController::applyPBRMaterialDetails(): An error occurred: ") + exception.what());;
722 showErrorPopUp("Warning", (string(exception.what())));
723 }
724
725 auto pbrMaterialProperties = material->getPBRMaterialProperties();
726 if (pbrMaterialProperties == nullptr) return;
727
728 try {
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");
734 } catch (Exception& exception) {
735 Console::println(string("ModelEditorTabController::applyPBRMaterialDetails(): An error occurred: ") + exception.what());;
736 showErrorPopUp("Warning", (string(exception.what())));
737 }
738}
739
741 Console::println("ModelEditorTabController::setAnimationDetails(): ");
742
743 auto model = getSelectedModel();
744 auto animationSetup = getSelectedAnimationSetup();
745 auto defaultAnimation = animationSetup != nullptr && animationSetup->getId() == Model::ANIMATIONSETUP_DEFAULT;
746
747 if (animationSetup == nullptr) return;
748
749 auto defaultAnimationSetup = model->getAnimationSetup(Model::ANIMATIONSETUP_DEFAULT);
750
752 string("<template id=\"details_animation\" src=\"resources/engine/gui/template_details_animation.xml\" max-frames=\"") +
753 to_string(defaultAnimationSetup != nullptr?defaultAnimationSetup->getEndFrame():0) +
754 string("\" />\n")
755 );
756
757 //
758 {
759 string animationsXML;
760 animationsXML =
761 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();
765 animationsXML+=
766 "<dropdown-option text=\"" +
767 GUIParser::escapeQuotes(nodeId) +
768 "\" value=\"" +
769 GUIParser::escapeQuotes(nodeId) +
770 "\" " +
771 (animationSetup->getOverlayFromNodeId() == nodeId?"selected=\"true\" ":"") +
772 " />\n";
773 }
774 try {
775 required_dynamic_cast<GUIParentNode*>(screenNode->getInnerNodeById("animation_overlaybone_scrollarea"))->replaceSubNodes(animationsXML, true);
776 } catch (Exception& exception) {
777 Console::print(string("ModelEditorTabController::setAnimationDetails(): An error occurred: "));
778 Console::println(string(exception.what()));
779 }
780 }
781
782 //
783 try {
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);
791 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("animation_loop"))->getController()->setValue(MutableString(animationSetup->isLoop() == true?"1":""));
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);
795 } catch (Exception& exception) {
796 Console::println(string("ModelEditorTabController::setAnimationDetails(): An error occurred: ") + exception.what());;
797 showErrorPopUp("Warning", (string(exception.what())));
798 }
799}
800
802 Console::println("ModelEditorTabController::applyAnimationDetails(): ");
803
804 view->playAnimation(Model::ANIMATIONSETUP_DEFAULT);
805
806 auto model = getSelectedModel();
807 auto animationSetup = getSelectedAnimationSetup();
808 auto defaultAnimation = animationSetup != nullptr && animationSetup->getId() == Model::ANIMATIONSETUP_DEFAULT;
809
810 if (animationSetup == nullptr) return;
811
812 try {
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();
818
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);
824
825 view->playAnimation(animationSetup->getId());
826 } catch (Exception& exception) {
827 Console::println(string("ModelEditorTabController::setAnimationDetails(): An error occurred: ") + exception.what());;
828 showErrorPopUp("Warning", (string(exception.what())));
829 }
830}
831
833 Console::println("ModelEditorTabController::setAnimationPreviewDetails(): ");
834
835 auto model = getSelectedModel();
836 auto defaultAnimationSetup = model->getAnimationSetup(Model::ANIMATIONSETUP_DEFAULT);
837
839 string("<template id=\"details_animationpreview\" src=\"resources/engine/gui/template_details_animationpreview.xml\" />\n")
840 );
841
842 {
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;
848 animationsXML =
849 animationsXML + "<dropdown-option text=\"" +
850 GUIParser::escapeQuotes(animationSetup->getId()) +
851 "\" value=\"" +
852 GUIParser::escapeQuotes(animationSetup->getId()) +
853 "\" " +
854 " />\n";
855 }
856 try {
857 required_dynamic_cast<GUIParentNode*>(screenNode->getInnerNodeById("animationpreview_base_scrollarea"))->replaceSubNodes(animationsXML, true);
858 } catch (Exception& exception) {
859 Console::print(string("ModelEditorTabController::setAnimationPreviewDetails(): An error occurred: "));
860 Console::println(string(exception.what()));
861 }
862 }
863
864 {
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()) +
873 "\" value=\"" +
874 GUIParser::escapeQuotes(animationSetup->getId()) +
875 "\" " +
876 " />\n";
877 }
878 try {
879 required_dynamic_cast<GUIParentNode*>(screenNode->getInnerNodeById("animationpreview_overlay1_scrollarea"))->replaceSubNodes(overlayAnimationsXML, true);
880 } catch (Exception& exception) {
881 Console::print(string("ModelEditorTabController::setAnimationPreviewDetails(): An error occurred: "));
882 Console::println(string(exception.what()));
883 }
884 try {
885 required_dynamic_cast<GUIParentNode*>(screenNode->getInnerNodeById("animationpreview_overlay2_scrollarea"))->replaceSubNodes(overlayAnimationsXML, true);
886 } catch (Exception& exception) {
887 Console::print(string("ModelEditorTabController::setAnimationPreviewDetails(): An error occurred: "));
888 Console::println(string(exception.what()));
889 }
890 try {
891 required_dynamic_cast<GUIParentNode*>(screenNode->getInnerNodeById("animationpreview_overlay3_scrollarea"))->replaceSubNodes(overlayAnimationsXML, true);
892 } catch (Exception& exception) {
893 Console::print(string("ModelEditorTabController::setAnimationPreviewDetails(): An error occurred: "));
894 Console::println(string(exception.what()));
895 }
896 }
897
898 {
899 string bonesXML;
900 bonesXML = bonesXML + "<dropdown-option text=\"<No bone>\" value=\"\" selected=\"true\" />";
901 for (auto it: model->getNodes()) {
902 auto node = it.second;
903 bonesXML =
904 bonesXML + "<dropdown-option text=\"" +
905 GUIParser::escapeQuotes(node->getId()) +
906 "\" value=\"" +
907 GUIParser::escapeQuotes(node->getId()) +
908 "\" " +
909 " />\n";
910 }
911 try {
912 required_dynamic_cast<GUIParentNode*>(screenNode->getInnerNodeById("animationpreview_attachment1_bone_scrollarea"))->replaceSubNodes(bonesXML, true);
913 } catch (Exception& exception) {
914 Console::print(string("ModelEditorTabController::setAnimationPreviewDetails(): An error occurred: "));
915 Console::println(string(exception.what()));
916 }
917 }
918
919 try {
920 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_animationpreview"))->getActiveConditions().add("open");
921 } catch (Exception& exception) {
922 Console::println(string("ModelEditorTabController::setAnimationPreviewDetails(): An error occurred: ") + exception.what());;
923 showErrorPopUp("Warning", (string(exception.what())));
924 }
925}
926
928 class OnPreviewAnimationsAttachment1ModelLoad: public virtual Action
929 {
930
931 public:
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()
936 );
937 modelEditorTabController->popUps->getFileDialogScreenController()->close();
938 }
939
940 /**
941 * Public constructor
942 * @param modelEditorTabController model editor tab controller
943 */
944 OnPreviewAnimationsAttachment1ModelLoad(ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
945 }
946
947 private:
948 ModelEditorTabController* modelEditorTabController;
949 };
950
952 string(),
953 "Load animation preview attachment 1 model from: ",
954 ModelReader::getModelExtensions(),
955 string(),
956 true,
957 new OnPreviewAnimationsAttachment1ModelLoad(this)
958 );
959}
960
962 view->addAttachment1(string(), string());
963}
964
966 try {
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()
972 );
973 } catch (Exception& exception) {
974 Console::println(string("ModelEditorTabController::applyAnimationPreviewDetails(): An error occurred: ") + exception.what());;
975 showErrorPopUp("Warning", (string(exception.what())));
976 }
977}
978
979void ModelEditorTabController::updateDetails(const string& outlinerNode) {
981 string outlinerNodeModel;
982 Model* model = nullptr;
983 getOutlinerNodeLOD(outlinerNode, outlinerNodeModel, &model);
984 if (StringTools::startsWith(outlinerNodeModel, "model.materials.") == true) {
986 } else
987 if (outlinerNodeModel == "model.animations") {
989 } else
990 if (StringTools::startsWith(outlinerNodeModel, "model.animations.") == true) {
991 auto animationSetup = getSelectedAnimationSetup();
992 view->playAnimation(animationSetup == nullptr?Model::ANIMATIONSETUP_DEFAULT:animationSetup->getId());
994 } else {
999 }
1000}
1001
1003 auto material = getSelectedMaterial();
1004 if (material == nullptr) return;
1005 auto specularMaterialProperties = material->getSpecularMaterialProperties();
1006 if (specularMaterialProperties == nullptr) {
1007 specularMaterialProperties = new SpecularMaterialProperties();
1008 material->setSpecularMaterialProperties(specularMaterialProperties);
1009 }
1010
1011 class OnLoadTexture: public virtual Action
1012 {
1013 public:
1014 void performAction() override {
1015 MutableString value;
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()
1022 );
1023 modelEditorTabController->updateMaterialDetails();
1024 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1025 }
1026
1027 /**
1028 * Public constructor
1029 * @param modelEditorTabController model editor tab controller
1030 * @param specularMaterialProperties specular material properties
1031 */
1032 OnLoadTexture(ModelEditorTabController* modelEditorTabController, SpecularMaterialProperties* specularMaterialProperties)
1033 : modelEditorTabController(modelEditorTabController)
1034 , specularMaterialProperties(specularMaterialProperties) {
1035 }
1036
1037
1038 private:
1039 ModelEditorTabController* modelEditorTabController;
1040 SpecularMaterialProperties* specularMaterialProperties;
1041 };
1042
1043 auto extensions = TextureReader::getTextureExtensions();
1045 specularMaterialProperties->getDiffuseTextureFileName().empty() == false?specularMaterialProperties->getDiffuseTexturePathName():string(),
1046 "Load specular diffuse texture from: ",
1047 extensions,
1048 specularMaterialProperties->getDiffuseTextureFileName(),
1049 true,
1050 new OnLoadTexture(this, specularMaterialProperties)
1051 );
1052}
1053
1055 auto material = getSelectedMaterial();
1056 if (material == nullptr) return;
1057 auto specularMaterialProperties = material->getSpecularMaterialProperties();
1058 if (specularMaterialProperties == nullptr) {
1059 specularMaterialProperties = new SpecularMaterialProperties();
1060 material->setSpecularMaterialProperties(specularMaterialProperties);
1061 }
1063 specularMaterialProperties->setDiffuseTexture(
1064 string(),
1065 string(),
1066 specularMaterialProperties->getDiffuseTransparencyTexturePathName(),
1067 specularMaterialProperties->getDiffuseTransparencyTextureFileName()
1068 );
1070}
1071
1073 auto material = getSelectedMaterial();
1074 if (material == nullptr) return;
1075 auto specularMaterialProperties = material->getSpecularMaterialProperties();
1076 if (specularMaterialProperties == nullptr) {
1077 specularMaterialProperties = new SpecularMaterialProperties();
1078 material->setSpecularMaterialProperties(specularMaterialProperties);
1079 }
1080
1081 class OnLoadTexture: public virtual Action
1082 {
1083 public:
1084 void performAction() override {
1085 MutableString value;
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()
1092 );
1093 modelEditorTabController->updateMaterialDetails();
1094 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1095 }
1096
1097 /**
1098 * Public constructor
1099 * @param modelEditorTabController model editor tab controller
1100 * @param specularMaterialProperties specular material properties
1101 */
1102 OnLoadTexture(ModelEditorTabController* modelEditorTabController, SpecularMaterialProperties* specularMaterialProperties)
1103 : modelEditorTabController(modelEditorTabController)
1104 , specularMaterialProperties(specularMaterialProperties) {
1105 }
1106
1107 private:
1108 ModelEditorTabController* modelEditorTabController;
1109 SpecularMaterialProperties* specularMaterialProperties;
1110 };
1111
1112 auto extensions = TextureReader::getTextureExtensions();
1114 specularMaterialProperties->getDiffuseTransparencyTextureFileName().empty() == false?specularMaterialProperties->getDiffuseTransparencyTexturePathName():string(),
1115 "Load specular diffuse transparency texture from: ",
1116 extensions,
1117 specularMaterialProperties->getDiffuseTransparencyTextureFileName(),
1118 true,
1119 new OnLoadTexture(this, specularMaterialProperties)
1120 );
1121}
1122
1124 auto material = getSelectedMaterial();
1125 if (material == nullptr) return;
1126 auto specularMaterialProperties = material->getSpecularMaterialProperties();
1127 if (specularMaterialProperties == nullptr) {
1128 specularMaterialProperties = new SpecularMaterialProperties();
1129 material->setSpecularMaterialProperties(specularMaterialProperties);
1130 }
1132 specularMaterialProperties->setDiffuseTexture(
1133 specularMaterialProperties->getDiffuseTexturePathName(),
1134 specularMaterialProperties->getDiffuseTextureFileName(),
1135 string(),
1136 string()
1137 );
1139}
1140
1142 auto material = getSelectedMaterial();
1143 if (material == nullptr) return;
1144 auto specularMaterialProperties = material->getSpecularMaterialProperties();
1145 if (specularMaterialProperties == nullptr) {
1146 specularMaterialProperties = new SpecularMaterialProperties();
1147 material->setSpecularMaterialProperties(specularMaterialProperties);
1148 }
1149
1150 class OnLoadTexture: public virtual Action
1151 {
1152 public:
1153 void performAction() override {
1154 MutableString value;
1155 modelEditorTabController->view->reloadPrototype();
1156 specularMaterialProperties->setNormalTexture(
1157 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName(),
1158 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
1159 );
1160 modelEditorTabController->updateMaterialDetails();
1161 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1162 }
1163
1164 /**
1165 * Public constructor
1166 * @param modelEditorTabController model editor tab controller
1167 * @param specularMaterialProperties specular material properties
1168 */
1169 OnLoadTexture(ModelEditorTabController* modelEditorTabController, SpecularMaterialProperties* specularMaterialProperties)
1170 : modelEditorTabController(modelEditorTabController)
1171 , specularMaterialProperties(specularMaterialProperties) {
1172 }
1173
1174
1175 private:
1176 ModelEditorTabController* modelEditorTabController;
1177 SpecularMaterialProperties* specularMaterialProperties;
1178 };
1179
1180 auto extensions = TextureReader::getTextureExtensions();
1182 specularMaterialProperties->getNormalTextureFileName().empty() == false?specularMaterialProperties->getNormalTexturePathName():string(),
1183 "Load specular normal texture from: ",
1184 extensions,
1185 specularMaterialProperties->getNormalTextureFileName(),
1186 true,
1187 new OnLoadTexture(this, specularMaterialProperties)
1188 );
1189}
1190
1192 auto material = getSelectedMaterial();
1193 if (material == nullptr) return;
1194 auto specularMaterialProperties = material->getSpecularMaterialProperties();
1195 if (specularMaterialProperties == nullptr) {
1196 specularMaterialProperties = new SpecularMaterialProperties();
1197 material->setSpecularMaterialProperties(specularMaterialProperties);
1198 }
1200 specularMaterialProperties->setNormalTexture(
1201 string(),
1202 string()
1203 );
1205}
1206
1208 auto material = getSelectedMaterial();
1209 if (material == nullptr) return;
1210 auto specularMaterialProperties = material->getSpecularMaterialProperties();
1211 if (specularMaterialProperties == nullptr) {
1212 specularMaterialProperties = new SpecularMaterialProperties();
1213 material->setSpecularMaterialProperties(specularMaterialProperties);
1214 }
1215
1216 class OnLoadTexture: public virtual Action
1217 {
1218 public:
1219 void performAction() override {
1220 MutableString value;
1221 modelEditorTabController->view->reloadPrototype();
1222 specularMaterialProperties->setSpecularTexture(
1223 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName(),
1224 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
1225 );
1226 modelEditorTabController->updateMaterialDetails();
1227 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1228 }
1229
1230 /**
1231 * Public constructor
1232 * @param modelEditorTabController model editor tab controller
1233 * @param specularMaterialProperties specular material properties
1234 */
1235 OnLoadTexture(ModelEditorTabController* modelEditorTabController, SpecularMaterialProperties* specularMaterialProperties)
1236 : modelEditorTabController(modelEditorTabController)
1237 , specularMaterialProperties(specularMaterialProperties) {
1238 }
1239
1240
1241 private:
1242 ModelEditorTabController* modelEditorTabController;
1243 SpecularMaterialProperties* specularMaterialProperties;
1244 };
1245
1246 auto extensions = TextureReader::getTextureExtensions();
1248 specularMaterialProperties->getSpecularTextureFileName().empty() == false?specularMaterialProperties->getSpecularTexturePathName():string(),
1249 "Load specular specular texture from: ",
1250 extensions,
1251 specularMaterialProperties->getSpecularTextureFileName(),
1252 true,
1253 new OnLoadTexture(this, specularMaterialProperties)
1254 );
1255}
1256
1258 auto material = getSelectedMaterial();
1259 if (material == nullptr) return;
1260 auto specularMaterialProperties = material->getSpecularMaterialProperties();
1261 if (specularMaterialProperties == nullptr) {
1262 specularMaterialProperties = new SpecularMaterialProperties();
1263 material->setSpecularMaterialProperties(specularMaterialProperties);
1264 }
1266 specularMaterialProperties->setSpecularTexture(
1267 string(),
1268 string()
1269 );
1271}
1272
1274 auto material = getSelectedMaterial();
1275 if (material == nullptr) return;
1276 auto pbrMaterialProperties = material->getPBRMaterialProperties();
1277 if (pbrMaterialProperties == nullptr) return;
1278
1279 class OnLoadTexture: public virtual Action
1280 {
1281 public:
1282 void performAction() override {
1283 MutableString value;
1284 modelEditorTabController->view->reloadPrototype();
1285 pbrMaterialProperties->setBaseColorTexture(
1286 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName(),
1287 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
1288 );
1289 modelEditorTabController->updateMaterialDetails();
1290 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1291 }
1292
1293 /**
1294 * Public constructor
1295 * @param modelEditorTabController model editor tab controller
1296 * @param specularMaterialProperties specular material properties
1297 */
1298 OnLoadTexture(ModelEditorTabController* modelEditorTabController, PBRMaterialProperties* pbrMaterialProperties)
1299 : modelEditorTabController(modelEditorTabController)
1300 , pbrMaterialProperties(pbrMaterialProperties) {
1301 }
1302
1303
1304 private:
1305 ModelEditorTabController* modelEditorTabController;
1306 PBRMaterialProperties* pbrMaterialProperties;
1307 };
1308
1309 auto extensions = TextureReader::getTextureExtensions();
1311 pbrMaterialProperties->getBaseColorTextureFileName().empty() == false?pbrMaterialProperties->getBaseColorTexturePathName():string(),
1312 "Load PBR base color texture from: ",
1313 extensions,
1314 pbrMaterialProperties->getBaseColorTextureFileName(),
1315 true,
1316 new OnLoadTexture(this, pbrMaterialProperties)
1317 );
1318}
1319
1321 auto material = getSelectedMaterial();
1322 if (material == nullptr) return;
1323 auto pbrMaterialProperties = material->getPBRMaterialProperties();
1324 if (pbrMaterialProperties == nullptr) return;
1326 pbrMaterialProperties->setBaseColorTexture(
1327 string(),
1328 string()
1329 );
1331}
1332
1334 auto material = getSelectedMaterial();
1335 if (material == nullptr) return;
1336 auto pbrMaterialProperties = material->getPBRMaterialProperties();
1337 if (pbrMaterialProperties == nullptr) return;
1338
1339 class OnLoadTexture: public virtual Action
1340 {
1341 public:
1342 void performAction() override {
1343 MutableString value;
1344 modelEditorTabController->view->reloadPrototype();
1345 pbrMaterialProperties->setMetallicRoughnessTexture(
1346 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName(),
1347 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
1348 );
1349 modelEditorTabController->updateMaterialDetails();
1350 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1351 }
1352
1353 /**
1354 * Public constructor
1355 * @param modelEditorTabController model editor tab controller
1356 * @param specularMaterialProperties specular material properties
1357 */
1358 OnLoadTexture(ModelEditorTabController* modelEditorTabController, PBRMaterialProperties* pbrMaterialProperties)
1359 : modelEditorTabController(modelEditorTabController)
1360 , pbrMaterialProperties(pbrMaterialProperties) {
1361 }
1362
1363
1364 private:
1365 ModelEditorTabController* modelEditorTabController;
1366 PBRMaterialProperties* pbrMaterialProperties;
1367 };
1368
1369 auto extensions = TextureReader::getTextureExtensions();
1371 pbrMaterialProperties->getMetallicRoughnessTextureFileName().empty() == false?pbrMaterialProperties->getMetallicRoughnessTexturePathName():string(),
1372 "Load PBR metallic/roughness texture from: ",
1373 extensions,
1374 pbrMaterialProperties->getMetallicRoughnessTextureFileName(),
1375 true,
1376 new OnLoadTexture(this, pbrMaterialProperties)
1377 );
1378}
1379
1381 auto material = getSelectedMaterial();
1382 if (material == nullptr) return;
1383 auto pbrMaterialProperties = material->getPBRMaterialProperties();
1384 if (pbrMaterialProperties == nullptr) return;
1386 pbrMaterialProperties->setMetallicRoughnessTexture(
1387 string(),
1388 string()
1389 );
1391}
1392
1394 auto material = getSelectedMaterial();
1395 if (material == nullptr) return;
1396 auto pbrMaterialProperties = material->getPBRMaterialProperties();
1397 if (pbrMaterialProperties == nullptr) return;
1398
1399 class OnLoadTexture: public virtual Action
1400 {
1401 public:
1402 void performAction() override {
1403 MutableString value;
1404 modelEditorTabController->view->reloadPrototype();
1405 pbrMaterialProperties->setNormalTexture(
1406 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName(),
1407 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
1408 );
1409 modelEditorTabController->updateMaterialDetails();
1410 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1411 }
1412
1413 /**
1414 * Public constructor
1415 * @param modelEditorTabController model editor tab controller
1416 * @param specularMaterialProperties specular material properties
1417 */
1418 OnLoadTexture(ModelEditorTabController* modelEditorTabController, PBRMaterialProperties* pbrMaterialProperties)
1419 : modelEditorTabController(modelEditorTabController)
1420 , pbrMaterialProperties(pbrMaterialProperties) {
1421 }
1422
1423
1424 private:
1425 ModelEditorTabController* modelEditorTabController;
1426 PBRMaterialProperties* pbrMaterialProperties;
1427 };
1428
1429 auto extensions = TextureReader::getTextureExtensions();
1431 pbrMaterialProperties->getNormalTextureFileName().empty() == false?pbrMaterialProperties->getNormalTexturePathName():string(),
1432 "Load PBR normal texture from: ",
1433 extensions,
1434 pbrMaterialProperties->getNormalTextureFileName(),
1435 true,
1436 new OnLoadTexture(this, pbrMaterialProperties)
1437 );
1438}
1439
1441 auto material = getSelectedMaterial();
1442 if (material == nullptr) return;
1443 auto pbrMaterialProperties = material->getPBRMaterialProperties();
1444 if (pbrMaterialProperties == nullptr) return;
1446 pbrMaterialProperties->setNormalTexture(
1447 string(),
1448 string()
1449 );
1451}
1452
1453void ModelEditorTabController::startRenameAnimation(int lodLevel, const string& animationId) {
1454 auto prototype = view->getPrototype();
1455 if (prototype == nullptr) return;
1456
1457 auto selectBoxOptionParentNode = dynamic_cast<GUIParentNode*>(view->getEditorView()->getScreenController()->getScreenNode()->getNodeById((lodLevel == 1?"model":"lod" + to_string(lodLevel) + ".model") + ".animations." + animationId));
1458 if (selectBoxOptionParentNode == nullptr) return;
1459
1460 renameAnimationId = animationId;
1461 renameAnimationLOD = lodLevel;
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",
1464 true
1465 );
1466 Engine::getInstance()->getGUI()->setFoccussedNode(dynamic_cast<GUIElementNode*>(view->getEditorView()->getScreenController()->getScreenNode()->getNodeById("tdme.animations.rename_input")));
1467 view->getEditorView()->getScreenController()->getScreenNode()->delegateValueChanged(required_dynamic_cast<GUIElementNode*>(view->getEditorView()->getScreenController()->getScreenNode()->getNodeById("selectbox_outliner")));
1468}
1469
1472 if (model == nullptr) {
1473 renameAnimationLOD = -1;
1474 renameAnimationId.clear();
1475 return;
1476 }
1477
1478 auto animationSetup = model->getAnimationSetup(renameAnimationId);
1479 renameAnimationId.clear();
1480 if (animationSetup != nullptr) {
1481 view->playAnimation(Model::ANIMATIONSETUP_DEFAULT);
1482 try {
1483 if (model->renameAnimationSetup(
1484 animationSetup->getId(),
1485 required_dynamic_cast<GUIElementNode*>(view->getEditorView()->getScreenController()->getScreenNode()->getNodeById("tdme.animations.rename_input"))->getController()->getValue().getString()
1486 ) == false) {
1487 //
1488 throw ExceptionBase("Could not rename animation");
1489 }
1490 } catch (Exception& exception) {
1491 Console::println(string("ModelEditorTabController::renameAnimation(): An error occurred: ") + exception.what());;
1492 showErrorPopUp("Warning", (string(exception.what())));
1493 }
1494 }
1495
1496 //
1497 class ReloadTabOutlinerAction: public Action {
1498 private:
1499 EditorView* editorView;
1500 string outlinerNode;
1501 public:
1502 ReloadTabOutlinerAction(EditorView* editorView, const string& outlinerNode): editorView(editorView), outlinerNode(outlinerNode) {}
1503 virtual void performAction() {
1504 editorView->reloadTabOutliner(outlinerNode);
1505 }
1506 };
1507 Engine::getInstance()->enqueueAction(new ReloadTabOutlinerAction(view->getEditorView(), (renameAnimationLOD == 1?"model":"lod" + to_string(renameAnimationLOD) + ".model") + ".animations" + (animationSetup != nullptr?"." + animationSetup->getId():"")));
1508 renameAnimationLOD = -1;
1509}
1510
1512 Model* model = getSelectedModel();
1513 if (model == nullptr) return;
1514
1515 //
1516 auto defaultAnimationSetup = model->getAnimationSetup(Model::ANIMATIONSETUP_DEFAULT);
1517
1518 auto animationSetupCreated = false;
1519 auto animationSetupName = string() + "New animation";
1520 if (model->getAnimationSetup(animationSetupName) == nullptr &&
1521 model->addAnimationSetup(animationSetupName, defaultAnimationSetup != nullptr?defaultAnimationSetup->getStartFrame():0, defaultAnimationSetup != nullptr?defaultAnimationSetup->getEndFrame():0, false, 1.0f) != nullptr) {
1522 animationSetupCreated = true;
1523 } else {
1524 //
1525 for (auto i = 1; i < 10001; i++) {
1526 animationSetupName = string() + "New animation " + to_string(i);
1527 if (model->getAnimationSetup(animationSetupName) == nullptr &&
1528 model->addAnimationSetup(animationSetupName, defaultAnimationSetup != nullptr?defaultAnimationSetup->getStartFrame():0, defaultAnimationSetup != nullptr?defaultAnimationSetup->getEndFrame():0, false, 1.0f) != nullptr) {
1529 animationSetupCreated = true;
1530 //
1531 break;
1532 }
1533 }
1534 }
1535 try {
1536 if (animationSetupCreated == false) {
1537 throw ExceptionBase("Could not create animation");
1538 }
1539 } catch (Exception& exception) {
1540 Console::println(string("ModelEditorTabController::createAnimationSetup(): An error occurred: ") + exception.what());;
1541 showErrorPopUp("Warning", (string(exception.what())));
1542 }
1543
1544 if (animationSetupCreated == true) {
1545 view->getEditorView()->reloadTabOutliner(string() + "model.animations." + animationSetupName);
1546 startRenameAnimation(lodLevel, animationSetupName);
1547 }
1548}
1549
1551 class OnLoadLODModel: public virtual Action
1552 {
1553 public:
1554 void performAction() override {
1555 auto lodLevelIdx = -1;
1556 PrototypeLODLevel* lodLevel = nullptr;
1557 if (modelEditorTabController->view->getPrototype()->getLODLevel2() == nullptr) {
1558 lodLevel = modelEditorTabController->getLODLevel(2);
1559 lodLevelIdx = 2;
1560 } else
1561 if (modelEditorTabController->view->getPrototype()->getLODLevel3() == nullptr) {
1562 lodLevel = modelEditorTabController->getLODLevel(3);
1563 lodLevelIdx = 3;
1564 }
1565 if (lodLevel == nullptr) return;
1566
1567 lodLevel->setFileName(
1568 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getPathName() +
1569 "/" +
1570 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->getFileName()
1571 );
1572 lodLevel->setType(LODObject3D::LODLEVELTYPE_MODEL);
1573 try {
1574 lodLevel->setModel(
1575 lodLevel->getType() == LODObject3D::LODLEVELTYPE_MODEL?
1576 ModelReader::read(
1577 Tools::getPathName(lodLevel->getFileName()),
1578 Tools::getFileName(lodLevel->getFileName())
1579 ):
1580 nullptr
1581 );
1582 } catch (Exception& exception) {
1583 Console::println(string("OnLoadLODModel::performAction(): An error occurred: ") + exception.what());;
1584 modelEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
1585 }
1586 modelEditorTabController->view->getEditorView()->reloadTabOutliner("lod" + to_string(lodLevelIdx) + ".model");
1587 modelEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1588 }
1589
1590 /**
1591 * Public constructor
1592 * @param modelEditorTabController model editor tab controller
1593 */
1594 OnLoadLODModel(ModelEditorTabController* modelEditorTabController)
1595 : modelEditorTabController(modelEditorTabController) {
1596 //
1597 }
1598
1599 private:
1600 ModelEditorTabController* modelEditorTabController;
1601 };
1602
1603 PrototypeLODLevel* lodLevel = nullptr;
1604 if (view->getPrototype()->getLODLevel2() != nullptr && view->getPrototype()->getLODLevel3() != nullptr) {
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");
1607 return;
1608 }
1609
1611 string(),
1612 "Load LOD model from: ",
1613 ModelReader::getModelExtensions(),
1614 string(),
1615 true,
1616 new OnLoadLODModel(this)
1617 );
1618}
1619
1621 PrototypeLODLevel* lodLevel = nullptr;
1622 if (view->getPrototype()->getLODLevel2() == nullptr) {
1623 lodLevel = getLODLevel(2);
1624 } else
1625 if (view->getPrototype()->getLODLevel3() == nullptr) {
1626 lodLevel = getLODLevel(3);
1627 }
1628 if (lodLevel == nullptr) return;
1629
1630 lodLevel->setType(LODObject3D::LODLEVELTYPE_IGNORE);
1633}
1634
1636 Console::println("ModelEditorTabController::setLODDetails(): ");
1637
1638 auto prototype = view->getPrototype();
1639 if (prototype == nullptr) return;
1640
1641 PrototypeLODLevel* prototypeLODLevel = nullptr;
1642 switch (lodLevel) {
1643 case 2: prototypeLODLevel = prototype->getLODLevel2(); break;
1644 case 3: prototypeLODLevel = prototype->getLODLevel3(); break;
1645 }
1646 if (prototypeLODLevel == nullptr) return;
1647
1649 string("<template id=\"details_lod\" src=\"resources/engine/gui/template_details_lod.xml\" />\n")
1650 );
1651
1652 try {
1653 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_lod"))->getActiveConditions().add("open");
1654 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("lod_min_distance"))->getController()->setValue(prototypeLODLevel->getMinDistance());
1655 } catch (Exception& exception) {
1656 Console::println(string("ModelEditorTabController::setLODDetails(): An error occurred: ") + exception.what());;
1657 showErrorPopUp("Warning", (string(exception.what())));
1658 }
1659
1660 //
1661 updateLODColorDetails(lodLevel);
1662}
1663
1665 Console::println("ModelEditorTabController::updateLODColorDetails(): ");
1666
1667 auto prototype = view->getPrototype();
1668 if (prototype == nullptr) return;
1669
1670 PrototypeLODLevel* prototypeLODLevel = nullptr;
1671 switch (lodLevel) {
1672 case 2: prototypeLODLevel = prototype->getLODLevel2(); break;
1673 case 3: prototypeLODLevel = prototype->getLODLevel3(); break;
1674 }
1675 if (prototypeLODLevel == nullptr) return;
1676
1677 try {
1678 required_dynamic_cast<GUIImageNode*>(screenNode->getNodeById("lod_color_add"))->setEffectColorMul(Color4(prototypeLODLevel->getColorAdd()));
1679 required_dynamic_cast<GUIImageNode*>(screenNode->getNodeById("lod_color_mul"))->setEffectColorMul(Color4(prototypeLODLevel->getColorMul()));
1680 } catch (Exception& exception) {
1681 Console::println(string("ModelEditorTabController::updateLODColorDetails(): An error occurred: ") + exception.what());;
1682 showErrorPopUp("Warning", (string(exception.what())));
1683 }
1684}
1685
1687 Console::println("ModelEditorTabController::applyLODDetails(): ");
1688
1689 auto prototype = view->getPrototype();
1690 if (prototype == nullptr) return;
1691
1692 PrototypeLODLevel* prototypeLODLevel = nullptr;
1693 switch (lodLevel) {
1694 case 2: prototypeLODLevel = prototype->getLODLevel2(); break;
1695 case 3: prototypeLODLevel = prototype->getLODLevel3(); break;
1696 }
1697 if (prototypeLODLevel == nullptr) return;
1698
1699 try {
1700 prototypeLODLevel->setMinDistance(Float::parse(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("lod_min_distance"))->getController()->getValue().getString()));
1701 } catch (Exception& exception) {
1702 Console::println(string("ModelEditorTabController::applyLODDetails(): An error occurred: ") + exception.what());;
1703 showErrorPopUp("Warning", (string(exception.what())));
1704 }
1705}
1706
1707bool ModelEditorTabController::getOutlinerNodeLOD(const string& outlinerNode, string& modelOutlinerNode, Model** model, int* lodLevel) {
1708 if (StringTools::startsWith(outlinerNode, "model.") == true) {
1709 if (model != nullptr) *model = view->getPrototype()->getModel();
1710 if (lodLevel != nullptr) *lodLevel = 1;
1711 modelOutlinerNode = outlinerNode;
1712 } else
1713 if (outlinerNode == "lod2.model") {
1714 if (model != nullptr) *model = view->getPrototype()->getLODLevel2() != nullptr?view->getPrototype()->getLODLevel2()->getModel():nullptr;
1715 if (lodLevel != nullptr) *lodLevel = 2;
1716 modelOutlinerNode = outlinerNode;
1717 } else
1718 if (StringTools::startsWith(outlinerNode, "lod2.model.") == true) {
1719 if (model != nullptr) *model = view->getPrototype()->getLODLevel2() != nullptr?view->getPrototype()->getLODLevel2()->getModel():nullptr;
1720 if (lodLevel != nullptr) *lodLevel = 2;
1721 modelOutlinerNode = StringTools::substring(outlinerNode, string("lod2.").size(), outlinerNode.size());
1722 } else
1723 if (outlinerNode == "lod3.model") {
1724 if (model != nullptr) *model = view->getPrototype()->getLODLevel3() != nullptr?view->getPrototype()->getLODLevel3()->getModel():nullptr;
1725 if (lodLevel != nullptr) *lodLevel = 3;
1726 modelOutlinerNode = outlinerNode;
1727 } else
1728 if (StringTools::startsWith(outlinerNode, "lod3.model.") == true) {
1729 if (model != nullptr) *model = view->getPrototype()->getLODLevel3() != nullptr?view->getPrototype()->getLODLevel3()->getModel():nullptr;
1730 if (lodLevel != nullptr) *lodLevel = 3;
1731 modelOutlinerNode = StringTools::substring(outlinerNode, string("lod3.").size(), outlinerNode.size());
1732 } else
1733 if (outlinerNode == "lod4.model") {
1734 if (model != nullptr) *model = nullptr;
1735 if (lodLevel != nullptr) *lodLevel = 4;
1736 modelOutlinerNode = outlinerNode;
1737 } else
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());
1742 } else {
1743 if (model != nullptr) *model = view->getPrototype()->getModel();
1744 if (lodLevel != nullptr) *lodLevel = 1;
1745 modelOutlinerNode = outlinerNode;
1746 }
1747 return model != nullptr;
1748}
1749
1751{
1752 if (node->getId() == "dropdown_outliner_add") {
1753 auto addOutlinerType = node->getController()->getValue().getString();
1754 if (addOutlinerType == "animation") {
1755 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
1756 string modelOutlinerNode;
1757 int lodLevel = -1;
1758 getOutlinerNodeLOD(outlinerNode, modelOutlinerNode, nullptr, &lodLevel);
1759 createAnimationSetup(lodLevel);
1760 } else
1761 if (addOutlinerType == "lod") {
1762 createLOD();
1763 } else
1764 if (addOutlinerType == "lod_none") {
1765 createLODNone();
1766 }
1767 } else
1768 if (node->getId() == "selectbox_outliner") {
1769 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
1770 Console::println(outlinerNode);
1771 auto haveDetails = false;
1772 if (outlinerNode == "lod2.model" ||
1773 StringTools::startsWith(outlinerNode, "lod2.model.") == true) {
1774 if (view->getLODLevel() != 2) view->setLODLevel(2);
1775 if (outlinerNode == "lod2.model") {
1776 haveDetails = true;
1777 setLODDetails(2);
1778 }
1779 } else
1780 if (outlinerNode == "lod3.model" ||
1781 StringTools::startsWith(outlinerNode, "lod3.model.") == true) {
1782 if (view->getLODLevel() != 3) view->setLODLevel(3);
1783 if (outlinerNode == "lod3.model") {
1784 haveDetails = true;
1785 setLODDetails(3);
1786 }
1787 } else
1788 if (outlinerNode == "lod4.model" ||
1789 StringTools::startsWith(outlinerNode, "lod4.model.") == true) {
1790 if (view->getLODLevel() != 3) view->setLODLevel(4);
1791 if (outlinerNode == "lod4.model") {
1792 haveDetails = true;
1793 setLODDetails(4);
1794 }
1795 } else {
1796 if (view->getLODLevel() != 1) view->setLODLevel(1);
1797 }
1798 if (haveDetails == false) updateDetails(outlinerNode);
1799 } else {
1800 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
1801 for (auto& applyAnimationNode: applyAnimationNodes) {
1802 if (node->getId() == applyAnimationNode) {
1804 }
1805 }
1806 for (auto& applySpecularMaterialNode: applySpecularMaterialNodes) {
1807 if (node->getId() == applySpecularMaterialNode) {
1809 break;
1810 }
1811 }
1812 for (auto& applyPBRMaterialNode: applyPBRMaterialNodes) {
1813 if (node->getId() == applyPBRMaterialNode) {
1815 break;
1816 }
1817 }
1818 for (auto& applyAnimationPreviewNode: applyAnimationPreviewNodes) {
1819 if (node->getId() == applyAnimationPreviewNode) {
1821 break;
1822 }
1823 }
1824 for (auto& applyLODNode: applyLODNodes) {
1825 if (node->getId() == applyLODNode) {
1826 auto lodLevel = -1;
1827 if (outlinerNode == "lod2.model") {
1828 lodLevel = 2;
1829 } else
1830 if (outlinerNode == "lod3.model") {
1831 lodLevel = 3;
1832 }
1833 if (lodLevel != -1) applyLODDetails(lodLevel);
1834 break;
1835 }
1836 }
1837 }
1841 {
1842 auto model = getSelectedModel();
1843 if (model != nullptr) prototypeSoundsSubController->onValueChanged(node, view->getPrototype(), model);
1844 }
1845}
1846
1850}
1851
1855 if (node->getId() == "tdme.animations.rename_input") {
1857 }
1858}
1859
1864 if (node->getId() == "selectbox_outliner") {
1865 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
1866 string modelOutlinerNode;
1867 int lodLevel = -1;
1868 getOutlinerNodeLOD(outlinerNode, modelOutlinerNode, nullptr, &lodLevel);
1869 if (outlinerNode == "model") {
1870 // clear
1872
1873 // reload
1874 class OnModelReloadAction: public virtual Action
1875 {
1876 public:
1877 void performAction() override {
1878 modelEditorTabController->onModelReload();
1879 }
1880 OnModelReloadAction(ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
1881 }
1882 private:
1883 ModelEditorTabController* modelEditorTabController;
1884 };
1885 popUps->getContextMenuScreenController()->addMenuItem("Reload", "contextmenu_reload", new OnModelReloadAction(this));
1886
1887 // load
1888 class OnModelLoadAction: public virtual Action
1889 {
1890 public:
1891 void performAction() override {
1892 modelEditorTabController->onModelLoad();
1893 }
1894 OnModelLoadAction(ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
1895 }
1896 private:
1897 ModelEditorTabController* modelEditorTabController;
1898 };
1899 popUps->getContextMenuScreenController()->addMenuItem("Load", "contextmenu_load", new OnModelLoadAction(this));
1900
1901 // reimport
1902 class OnModelReimportAction: public virtual Action
1903 {
1904 public:
1905 void performAction() override {
1906 modelEditorTabController->onModelReimport();
1907 }
1908 OnModelReimportAction(ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
1909 }
1910 private:
1911 ModelEditorTabController* modelEditorTabController;
1912 };
1913 popUps->getContextMenuScreenController()->addMenuItem("Reimport", "contextmenu_reimport", new OnModelReimportAction(this));
1914
1915 // generate billboard lod
1916 class OnModelGenerateBillboardLodAction: public virtual Action
1917 {
1918 public:
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();
1924 try {
1925 if (prototype->getLODLevel2() != nullptr && prototype->getLODLevel3() != nullptr) {
1926 throw ExceptionBase("All 3 LOD levels are in use");
1927 }
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(
1932 model,
1933 billboardModelPathName,
1934 billboardModelFileName
1935 );
1936 if (prototype->getLODLevel2() == nullptr) {
1937 prototype->setLODLevel2(
1939 LODObject3D::LODLEVELTYPE_MODEL,
1940 billboardModelPathName + "/" + billboardModelFileName,
1941 billboardLODModel,
1942 75.0f
1943 )
1944 );
1945 } else
1946 if (prototype->getLODLevel2() == nullptr) {
1947 prototype->setLODLevel3(
1949 LODObject3D::LODLEVELTYPE_MODEL,
1950 billboardModelPathName + "/" + billboardModelFileName,
1951 billboardLODModel,
1952 150.0f
1953 )
1954 );
1955 }
1956 modelEditorTabController->getView()->reloadPrototype();
1957 } catch (Exception& exception) {
1958 modelEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
1959 }
1960 }
1961 OnModelGenerateBillboardLodAction(ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
1962 }
1963 private:
1964 ModelEditorTabController* modelEditorTabController;
1965 };
1966
1967 class EnqueueOnModelGenerateBillboardLodAction: public virtual Action {
1968 public:
1969 void performAction() override {
1970 Engine::getInstance()->enqueueAction(new OnModelGenerateBillboardLodAction(modelEditorTabController));
1971 }
1972 EnqueueOnModelGenerateBillboardLodAction(ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
1973 }
1974 private:
1975 ModelEditorTabController* modelEditorTabController;
1976 };
1977
1978 popUps->getContextMenuScreenController()->addMenuItem("Generate billboard LOD", "contextmenu_generatebillboardlod", new EnqueueOnModelGenerateBillboardLodAction(this));
1979
1980 // generate imposter lod
1981 class OnModelGenerateImposterLodAction: public virtual Action
1982 {
1983 public:
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();
1989 try {
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(
1996 model,
1997 imposterModelPathName,
1998 imposterModelFileName,
1999 24,
2000 imposterLODFileNames,
2001 imposterLODModels
2002 );
2003 prototype->setImposterLOD(
2005 imposterLODFileNames,
2006 imposterLODModels,
2007 75.0f
2008 )
2009 );
2010 modelEditorTabController->getView()->reloadPrototype();
2011 } catch (Exception& exception) {
2012 modelEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
2013 }
2014 }
2015 OnModelGenerateImposterLodAction(ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
2016 }
2017 private:
2018 ModelEditorTabController* modelEditorTabController;
2019 };
2020
2021 class EnqueueOnModelGenerateImposterLodAction: public virtual Action {
2022 public:
2023 void performAction() override {
2024 Engine::getInstance()->enqueueAction(new OnModelGenerateImposterLodAction(modelEditorTabController));
2025 }
2026 EnqueueOnModelGenerateImposterLodAction(ModelEditorTabController* modelEditorTabController): modelEditorTabController(modelEditorTabController) {
2027 }
2028 private:
2029 ModelEditorTabController* modelEditorTabController;
2030 };
2031
2032 popUps->getContextMenuScreenController()->addMenuItem("Generate imposter LOD", "contextmenu_generateimposterlod", new EnqueueOnModelGenerateImposterLodAction(this));
2033
2034 //
2035 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
2036 } else
2037 if (outlinerNode == "lod2.model") {
2038 // clear
2040
2041 // load
2042 class OnLODLoadAction: public virtual Action
2043 {
2044 public:
2045 void performAction() override {
2046 modelEditorTabController->onLODLoad(lodLevel);
2047 }
2048 OnLODLoadAction(ModelEditorTabController* modelEditorTabController, int lodLevel): modelEditorTabController(modelEditorTabController), lodLevel(lodLevel) {
2049 }
2050 private:
2051 ModelEditorTabController* modelEditorTabController;
2052 int lodLevel;
2053 };
2054 popUps->getContextMenuScreenController()->addMenuItem("Load", "contextmenu_load", new OnLODLoadAction(this, 2));
2055
2056 // delete
2057 class OnLODDeleteAction: public virtual Action
2058 {
2059 public:
2060 void performAction() override {
2061 if (prototype == nullptr) return;
2062 modelEditorTabController->view->setLODLevel(1);
2063 prototype->removeLODLevel(lodLevel);
2064 modelEditorTabController->view->getEditorView()->reloadTabOutliner("model");
2065 }
2066 OnLODDeleteAction(ModelEditorTabController* modelEditorTabController, Prototype* prototype, int lodLevel): modelEditorTabController(modelEditorTabController), prototype(prototype), lodLevel(lodLevel) {
2067 }
2068 private:
2069 ModelEditorTabController* modelEditorTabController;
2070 Prototype* prototype;
2071 int lodLevel;
2072 };
2073 popUps->getContextMenuScreenController()->addMenuItem("Delete", "contextmenu_delete", new OnLODDeleteAction(this, view->getPrototype(), 2));
2074
2075 //
2076 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
2077 } else
2078 if (outlinerNode == "lod3.model") {
2079 // clear
2081
2082 // load
2083 class OnLODLoadAction: public virtual Action
2084 {
2085 public:
2086 void performAction() override {
2087 modelEditorTabController->onLODLoad(lodLevel);
2088 }
2089 OnLODLoadAction(ModelEditorTabController* modelEditorTabController, int lodLevel): modelEditorTabController(modelEditorTabController), lodLevel(lodLevel) {
2090 }
2091 private:
2092 ModelEditorTabController* modelEditorTabController;
2093 int lodLevel;
2094 };
2095 popUps->getContextMenuScreenController()->addMenuItem("Load", "contextmenu_load", new OnLODLoadAction(this, 3));
2096
2097 // delete
2098 class OnLODDeleteAction: public virtual Action
2099 {
2100 public:
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");
2106 }
2107 OnLODDeleteAction(ModelEditorTabController* modelEditorTabController, Prototype* prototype, int lodLevel): modelEditorTabController(modelEditorTabController), prototype(prototype), lodLevel(lodLevel) {
2108 }
2109 private:
2110 ModelEditorTabController* modelEditorTabController;
2111 Prototype* prototype;
2112 int lodLevel;
2113 };
2114 popUps->getContextMenuScreenController()->addMenuItem("Delete", "contextmenu_delete", new OnLODDeleteAction(this, view->getPrototype(), 3));
2115
2116 //
2117 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
2118 } else
2119 if (outlinerNode == "lod4.model") {
2120 // clear
2122
2123 // delete
2124 class OnLOD4DeleteAction: public virtual Action
2125 {
2126 public:
2127 void performAction() override {
2128 if (prototype == nullptr) return;
2129 modelEditorTabController->view->setLODLevel(1);
2130 prototype->setImposterLOD(nullptr);
2131 modelEditorTabController->view->getEditorView()->reloadTabOutliner("model");
2132 }
2133 OnLOD4DeleteAction(ModelEditorTabController* modelEditorTabController, Prototype* prototype): modelEditorTabController(modelEditorTabController), prototype(prototype) {
2134 }
2135 private:
2136 ModelEditorTabController* modelEditorTabController;
2137 Prototype* prototype;
2138 };
2139 popUps->getContextMenuScreenController()->addMenuItem("Delete", "contextmenu_delete", new OnLOD4DeleteAction(this, view->getPrototype()));
2140
2141 //
2142 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
2143 } else
2144 if (modelOutlinerNode == "model.animations") {
2145 // clear
2147 // add
2148 class OnAddAnimationAction: public virtual Action
2149 {
2150 public:
2151 void performAction() override {
2152 auto outlinerNode = modelEditorTabController->view->getEditorView()->getScreenController()->getOutlinerSelection();
2153 string modelOutlinerNode;
2154 int lodLevel = -1;
2155 modelEditorTabController->getOutlinerNodeLOD(outlinerNode, modelOutlinerNode, nullptr, &lodLevel);
2156 if (modelOutlinerNode == "model.animations") modelEditorTabController->createAnimationSetup(lodLevel);
2157 }
2158 OnAddAnimationAction(ModelEditorTabController* modelEditorTabController, Prototype* prototype): modelEditorTabController(modelEditorTabController), prototype(prototype) {
2159 }
2160 private:
2161 ModelEditorTabController* modelEditorTabController;
2162 Prototype* prototype;
2163 };
2164 popUps->getContextMenuScreenController()->addMenuItem("Add Animation", "contextmenu_add", new OnAddAnimationAction(this, view->getPrototype()));
2165
2166 //
2167 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
2168 } else
2169 if (StringTools::startsWith(modelOutlinerNode, "model.animations.") == true) {
2170 // clear
2172 // rename
2173 class OnRenameAction: public virtual Action
2174 {
2175 public:
2176 void performAction() override {
2177 auto outlinerNode = modelEditorTabController->view->getEditorView()->getScreenController()->getOutlinerSelection();
2178 string modelOutlinerNode;
2179 int lodLevel = -1;
2180 modelEditorTabController->getOutlinerNodeLOD(outlinerNode, modelOutlinerNode, nullptr, &lodLevel);
2181 if (StringTools::startsWith(modelOutlinerNode, "model.animations.") == true) {
2182 modelEditorTabController->startRenameAnimation(
2183 lodLevel,
2184 StringTools::substring(modelOutlinerNode, string("model.animations.").size(), modelOutlinerNode.size())
2185 );
2186 }
2187 }
2188 OnRenameAction(ModelEditorTabController* modelEditorTabController, Prototype* prototype): modelEditorTabController(modelEditorTabController), prototype(prototype) {
2189 }
2190 private:
2191 ModelEditorTabController* modelEditorTabController;
2192 Prototype* prototype;
2193 };
2194 popUps->getContextMenuScreenController()->addMenuItem("Rename", "contextmenu_rename", new OnRenameAction(this, view->getPrototype()));
2195
2196 // separator
2198
2199 // delete
2200 class OnDeleteAction: public virtual Action
2201 {
2202 public:
2203 void performAction() override {
2204 auto outlinerNode = modelEditorTabController->view->getEditorView()->getScreenController()->getOutlinerSelection();
2205 string modelOutlinerNode;
2206 int lodLevel = -1;
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);
2212 model->removeAnimationSetup(animationId);
2213 modelEditorTabController->view->getEditorView()->reloadTabOutliner((lodLevel == 1?"model":"lod" + to_string(lodLevel) + ".model") + ".animations");
2214 }
2215 }
2216 OnDeleteAction(ModelEditorTabController* modelEditorTabController, Prototype* prototype): modelEditorTabController(modelEditorTabController), prototype(prototype) {
2217 }
2218 private:
2219 ModelEditorTabController* modelEditorTabController;
2220 Prototype* prototype;
2221 };
2222 popUps->getContextMenuScreenController()->addMenuItem("Delete", "contextmenu_delete", new OnDeleteAction(this, view->getPrototype()));
2223
2224 //
2225 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
2226 }
2227 }
2228}
2229
2231{
2232 auto prototype = view->getPrototype();
2233 basePropertiesSubController->onActionPerformed(type, node, prototype);
2234 prototypePhysicsSubController->onActionPerformed(type, node, prototype);
2235 prototypeSoundsSubController->onActionPerformed(type, node, prototype);
2237 if (node->getId().compare("specularmaterial_diffuse_texture_open") == 0) {
2239 } else
2240 if (node->getId().compare("specularmaterial_diffuse_texture_remove") == 0) {
2242 } else
2243 if (node->getId().compare("specularmaterial_transparency_texture_open") == 0) {
2245 } else
2246 if (node->getId().compare("specularmaterial_transparency_texture_remove") == 0) {
2248 } else
2249 if (node->getId().compare("specularmaterial_normal_texture_open") == 0) {
2251 } else
2252 if (node->getId().compare("specularmaterial_normal_texture_remove") == 0) {
2254 } else
2255 if (node->getId().compare("specularmaterial_specular_texture_open") == 0) {
2257 } else
2258 if (node->getId().compare("specularmaterial_specular_texture_remove") == 0) {
2260 } else
2261 if (node->getId().compare("pbrmaterial_basecolor_texture_open") == 0) {
2263 } else
2264 if (node->getId().compare("pbrmaterial_basecolor_texture_remove") == 0) {
2266 } else
2267 if (node->getId().compare("pbrmaterial_metallic_roughness_texture_open") == 0) {
2269 } else
2270 if (node->getId().compare("pbrmaterial_metallic_roughness_texture_remove") == 0) {
2272 } else
2273 if (node->getId().compare("pbrmaterial_normal_texture_open") == 0) {
2275 } else
2276 if (node->getId().compare("pbrmaterial_normal_texture_remove") == 0) {
2278 } else
2279 if (node->getId().compare("animationpreview_attachment1_model_open") == 0) {
2281 } else
2282 if (node->getId().compare("animationpreview_attachment1_model_remove") == 0) {
2284 } else
2285 if (node->getId().compare("specularmaterial_ambient_edit") == 0) {
2286 auto material = getSelectedMaterial();
2287 auto specularMaterialProperties = material != nullptr?material->getSpecularMaterialProperties():nullptr;
2288 if (specularMaterialProperties != nullptr) {
2289 class OnColorChangeAction: public virtual Action
2290 {
2291 public:
2292 void performAction() override {
2293 material->getSpecularMaterialProperties()->setAmbientColor(Color4(modelEditorTabController->popUps->getColorPickerScreenController()->getColor()));
2294 modelEditorTabController->updateMaterialColorDetails();
2295 }
2296 OnColorChangeAction(ModelEditorTabController* modelEditorTabController, Material* material): modelEditorTabController(modelEditorTabController), material(material) {
2297 }
2298 private:
2299 ModelEditorTabController* modelEditorTabController;
2300 Material* material;
2301 };
2302 popUps->getColorPickerScreenController()->show(specularMaterialProperties->getAmbientColor(), new OnColorChangeAction(this, material));
2303 }
2304 } else
2305 if (node->getId().compare("specularmaterial_diffuse_edit") == 0) {
2306 auto material = getSelectedMaterial();
2307 auto specularMaterialProperties = material != nullptr?material->getSpecularMaterialProperties():nullptr;
2308 if (specularMaterialProperties != nullptr) {
2309 class OnColorChangeAction: public virtual Action
2310 {
2311 public:
2312 void performAction() override {
2313 material->getSpecularMaterialProperties()->setDiffuseColor(Color4(modelEditorTabController->popUps->getColorPickerScreenController()->getColor()));
2314 modelEditorTabController->updateMaterialColorDetails();
2315 }
2316 OnColorChangeAction(ModelEditorTabController* modelEditorTabController, Material* material): modelEditorTabController(modelEditorTabController), material(material) {
2317 }
2318 private:
2319 ModelEditorTabController* modelEditorTabController;
2320 Material* material;
2321 };
2322 popUps->getColorPickerScreenController()->show(specularMaterialProperties->getDiffuseColor(), new OnColorChangeAction(this, material));
2323 }
2324 } else
2325 if (node->getId().compare("specularmaterial_emission_edit") == 0) {
2326 auto material = getSelectedMaterial();
2327 auto specularMaterialProperties = material != nullptr?material->getSpecularMaterialProperties():nullptr;
2328 if (specularMaterialProperties != nullptr) {
2329 class OnColorChangeAction: public virtual Action
2330 {
2331 public:
2332 void performAction() override {
2333 material->getSpecularMaterialProperties()->setEmissionColor(Color4(modelEditorTabController->popUps->getColorPickerScreenController()->getColor()));
2334 modelEditorTabController->updateMaterialColorDetails();
2335 }
2336 OnColorChangeAction(ModelEditorTabController* modelEditorTabController, Material* material): modelEditorTabController(modelEditorTabController), material(material) {
2337 }
2338 private:
2339 ModelEditorTabController* modelEditorTabController;
2340 Material* material;
2341 };
2342 popUps->getColorPickerScreenController()->show(specularMaterialProperties->getEmissionColor(), new OnColorChangeAction(this, material));
2343 }
2344 } else
2345 if (node->getId().compare("specularmaterial_specular_edit") == 0) {
2346 auto material = getSelectedMaterial();
2347 auto specularMaterialProperties = material != nullptr?material->getSpecularMaterialProperties():nullptr;
2348 if (specularMaterialProperties != nullptr) {
2349 class OnColorChangeAction: public virtual Action
2350 {
2351 public:
2352 void performAction() override {
2353 material->getSpecularMaterialProperties()->setSpecularColor(Color4(modelEditorTabController->popUps->getColorPickerScreenController()->getColor()));
2354 modelEditorTabController->updateMaterialColorDetails();
2355 }
2356 OnColorChangeAction(ModelEditorTabController* modelEditorTabController, Material* material): modelEditorTabController(modelEditorTabController), material(material) {
2357 }
2358 private:
2359 ModelEditorTabController* modelEditorTabController;
2360 Material* material;
2361 };
2362 popUps->getColorPickerScreenController()->show(specularMaterialProperties->getSpecularColor(), new OnColorChangeAction(this, material));
2363 }
2364 } else
2365 if (node->getId().compare("pbrmaterial_basecolor_edit") == 0) {
2366 auto material = getSelectedMaterial();
2367 auto pbrMaterialProperties = material != nullptr?material->getPBRMaterialProperties():nullptr;
2368 if (pbrMaterialProperties != nullptr) {
2369 class OnColorChangeAction: public virtual Action
2370 {
2371 public:
2372 void performAction() override {
2373 material->getPBRMaterialProperties()->setBaseColorFactor(Color4(modelEditorTabController->popUps->getColorPickerScreenController()->getColor()));
2374 modelEditorTabController->updateMaterialColorDetails();
2375 }
2376 OnColorChangeAction(ModelEditorTabController* modelEditorTabController, Material* material): modelEditorTabController(modelEditorTabController), material(material) {
2377 }
2378 private:
2379 ModelEditorTabController* modelEditorTabController;
2380 Material* material;
2381 };
2382 popUps->getColorPickerScreenController()->show(pbrMaterialProperties->getBaseColorFactor(), new OnColorChangeAction(this, material));
2383 }
2384 } else
2385 if (node->getId().compare("lod_color_add_edit") == 0) {
2386 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
2387 string modelOutlinerNode;
2388 int lodLevel = -1;
2389 getOutlinerNodeLOD(outlinerNode, modelOutlinerNode, nullptr, &lodLevel);
2390 PrototypeLODLevel* prototypeLODLevel = nullptr;
2391 switch (lodLevel) {
2392 case 2: prototypeLODLevel = prototype->getLODLevel2(); break;
2393 case 3: prototypeLODLevel = prototype->getLODLevel3(); break;
2394 default: break;
2395 }
2396 if (prototypeLODLevel == nullptr) return;
2397 class OnColorChangeAction: public virtual Action
2398 {
2399 public:
2400 void performAction() override {
2401 prototypeLODLevel->setColorAdd(Color4(modelEditorTabController->popUps->getColorPickerScreenController()->getColor()));
2402 modelEditorTabController->updateLODColorDetails(lodLevel);
2403 modelEditorTabController->view->updateLODLevel();
2404 }
2405 OnColorChangeAction(ModelEditorTabController* modelEditorTabController, int lodLevel, PrototypeLODLevel* prototypeLODLevel): modelEditorTabController(modelEditorTabController), lodLevel(lodLevel), prototypeLODLevel(prototypeLODLevel) {
2406 }
2407 private:
2408 ModelEditorTabController* modelEditorTabController;
2409 int lodLevel;
2410 PrototypeLODLevel* prototypeLODLevel;
2411 };
2412 popUps->getColorPickerScreenController()->show(prototypeLODLevel->getColorAdd(), new OnColorChangeAction(this, lodLevel, prototypeLODLevel));
2413 } else
2414 if (node->getId().compare("lod_color_mul_edit") == 0) {
2415 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
2416 string modelOutlinerNode;
2417 int lodLevel = -1;
2418 getOutlinerNodeLOD(outlinerNode, modelOutlinerNode, nullptr, &lodLevel);
2419 PrototypeLODLevel* prototypeLODLevel = nullptr;
2420 switch (lodLevel) {
2421 case 2: prototypeLODLevel = prototype->getLODLevel2(); break;
2422 case 3: prototypeLODLevel = prototype->getLODLevel3(); break;
2423 default: break;
2424 }
2425 if (prototypeLODLevel == nullptr) return;
2426 class OnColorChangeAction: public virtual Action
2427 {
2428 public:
2429 void performAction() override {
2430 prototypeLODLevel->setColorMul(Color4(modelEditorTabController->popUps->getColorPickerScreenController()->getColor()));
2431 modelEditorTabController->updateLODColorDetails(lodLevel);
2432 modelEditorTabController->view->updateLODLevel();
2433 }
2434 OnColorChangeAction(ModelEditorTabController* modelEditorTabController, int lodLevel, PrototypeLODLevel* prototypeLODLevel): modelEditorTabController(modelEditorTabController), lodLevel(lodLevel), prototypeLODLevel(prototypeLODLevel) {
2435 }
2436 private:
2437 ModelEditorTabController* modelEditorTabController;
2438 int lodLevel;
2439 PrototypeLODLevel* prototypeLODLevel;
2440 };
2441 popUps->getColorPickerScreenController()->show(prototypeLODLevel->getColorMul(), new OnColorChangeAction(this, lodLevel, prototypeLODLevel));
2442 } else
2443 if (node->getId() == "tdme.animations.rename_input") {
2445 }
2446 }
2447}
Engine main class.
Definition: Engine.h:122
Color 4 definition.
Definition: Color4.h:20
Represents a material.
Definition: Material.h:21
void setPBRMaterialProperties(PBRMaterialProperties *pbrMaterialProperties)
Set PBR material properties.
Definition: Material.cpp:29
const PBRMaterialProperties * getPBRMaterialProperties() const
Definition: Material.h:78
const SpecularMaterialProperties * getSpecularMaterialProperties() const
Definition: Material.h:64
Representation of a 3d model.
Definition: Model.h:32
map< string, AnimationSetup * > & getAnimationSetups()
TODO: return const map.
Definition: Model.h:274
void setShaderModel(ShaderModel *shaderModel)
Set preferred shader model.
Definition: Model.h:163
bool removeAnimationSetup(const string &id)
Remove animation setup.
Definition: Model.cpp:125
AnimationSetup * addAnimationSetup(const string &id, int32_t startFrame, int32_t endFrame, bool loop, float speed=1.0f)
Adds an base animation setup.
Definition: Model.cpp:97
const string & getId()
Definition: Model.h:119
AnimationSetup * getAnimationSetup(const string &id)
Definition: Model.cpp:116
map< string, Node * > & getSubNodes()
Returns object's sub nodes.
Definition: Model.h:194
bool renameAnimationSetup(const string &id, const string &newId)
Rename animation set up.
Definition: Model.cpp:132
map< string, Material * > & getMaterials()
Returns all object materials.
Definition: Model.h:171
Model node.
Definition: Node.h:31
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.
Definition: BaseProperty.h:16
Prototype LOD level definition.
LODObject3D::LODLevelType getType() const
void setFileName(const string &fileName)
Set file name.
void setColorAdd(const Color4 &colorAdd)
Set color add.
void setColorMul(const Color4 &colorMul)
Set color mul.
void setType(LODObject3D::LODLevelType type)
Set type.
void setMinDistance(float minDistance)
Set min distance.
Prototype definition.
Definition: Prototype.h:49
PrototypeLODLevel * getLODLevel2()
Definition: Prototype.h:251
PrototypeLODLevel * getLODLevel3()
Definition: Prototype.h:264
GUI parser.
Definition: GUIParser.h:39
GUI node controller base class.
virtual const MutableString & getValue()=0
GUI node base class.
Definition: GUINode.h:63
const string & getId()
Definition: GUINode.h:329
GUINodeController * getController()
Definition: GUINode.h:586
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
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.
3D vector 3 class
Definition: Vector3.h:22
void show(const Color4Base &color, Action *onColorChangeAction)
Shows the pop up.
void addMenuItem(const string &text, const string &id, Action *action=nullptr)
Add menu item.
void show(const string &cwd, const string &captionText, const vector< string > &extensions, const string &fileName, bool enableFilter, Action *applyAction, Action *cancelAction=nullptr, const string &settingsFileName=".filedialog.properties", const string &settingsPathName=string())
Shows the file dialog pop up.
void show(const string &caption, const string &message)
Shows the pop up.
Generate billboard LOD utility class.
Generate imposter LOD utility class.
Pop ups controller accessor class.
Definition: PopUps.h:19
FileDialogScreenController * getFileDialogScreenController()
Definition: PopUps.h:42
ContextMenuScreenController * getContextMenuScreenController()
Definition: PopUps.h:70
ColorPickerScreenController * getColorPickerScreenController()
Definition: PopUps.h:63
InfoDialogScreenController * getInfoDialogScreenController()
Definition: PopUps.h:49
void onMaterialClearPBRBaseColorTexture()
On material clear PBR base color texture.
void saveFile(const string &pathName, const string &fileName)
Save file.
void updateInfoText(const MutableString &text)
Update info text line.
void setOutlinerAddDropDownContent()
Set outliner add drop down content.
void onMaterialLoadPBRNormalTexture()
On material load PBR normal texture.
void onMaterialClearPBRMetallicRoughnessTexture()
On material clear PBR metallic roughness texture.
void onMaterialClearSpecularTexture()
On material clear specular texture.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY) override
On mouse over.
void onPreviewAnimationsAttachment1ModelLoad()
On preview animations attachment 1 model load.
void setStatistics(int statsOpaqueFaces, int statsTransparentFaces, int statsMaterialCount)
Set up model statistics.
void onMaterialClearPBRNormalTexture()
On material load PBR normal texture.
void startRenameAnimation(int lodLevel, const string &animationId)
Start rename animation.
void onValueChanged(GUIElementNode *node) override
On value changed.
void onMaterialLoadPBRMetallicRoughnessTexture()
On material load PBR metallic roughness texture.
void onMaterialLoadPBRBaseColorTexture()
On material load PBR base color texture.
void updateDetails(const string &outlinerNode)
Update details panel.
void onMaterialLoadDiffuseTransparencyTexture()
On material load diffuse transparency texture.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
void onPreviewAnimationsAttachment1ModelClear()
On preview animations attachment 1 model clear.
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
void createOutlinerModelNodesXML(const string &prefix, const map< string, Node * > &subNodes, string &xml)
Create outliner model nodes xml.
void loadFile(const string &pathName, const string &fileName)
Load file.
bool getOutlinerNodeLOD(const string &outlinerNode, string &modelOutlinerNode, Model **model=nullptr, int *lodLevel=nullptr)
Get outliner node within model or LOD models.
void onMaterialClearDiffuseTransparencyTexture()
On material clear diffuse transparency texture.
void onValueChanged(GUIElementNode *node, BaseProperties *baseProperties)
On value changed.
void onFocus(GUIElementNode *node, BaseProperties *baseProperties)
On focus.
void onUnfocus(GUIElementNode *node, BaseProperties *baseProperties)
On unfocus.
void updateDetails(BaseProperties *baseProperties, const string &outlinerNode)
Update details panel.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node, BaseProperties *baseProperties)
On action performed.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY, BaseProperties *baseProperties)
On context menu requested.
void createBasePropertiesXML(BaseProperties *baseProperties, string &xml)
Create base properties XML for outliner.
void createDisplayPropertiesXML(Prototype *prototype, string &xml)
Create display properties XML.
void updateDetails(Prototype *prototype, const string &outlinerNode)
Update details panel.
void onValueChanged(GUIElementNode *node, Prototype *prototype)
On value changed.
void createOutlinerPhysicsXML(Prototype *prototype, string &xml)
Create physics XML for outliner.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY, Prototype *prototype)
On context menu requested.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node, Prototype *prototype)
On action performed.
void updateDetails(Prototype *prototype, const string &outlinerNode)
Update details panel.
void onValueChanged(GUIElementNode *node, Prototype *prototype)
On value changed.
void createOutlinerSoundsXML(Prototype *prototype, string &xml)
Create sounds XML for outliner.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY, Prototype *prototype)
On context menu requested.
void updateDetails(Prototype *prototype, Model *model, const string &outlinerNode)
Update details.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node, Prototype *prototype)
On action performed.
void onValueChanged(GUIElementNode *node, Prototype *prototype, Model *model)
On value changed.
void saveFile(const string &pathName, const string &fileName)
Saving prototype as tmodel prototype.
void addAttachment1(const string &nodeId, const string &attachmentModelFile)
Add attachment 1.
void setLODLevel(int lodLevel)
Set LOD level to display.
void playAnimation(const string &baseAnimationId, const string &overlay1AnimationId=string(), const string &overlay2AnimationId=string(), const string &overlay3AnimationId=string())
Play animation.
void setOutlinerAddDropDownContent(const string &xml)
Set outliner add drop down content.
Definition: EditorView.cpp:214
void setOutlinerContent(const string &xml)
Set outliner content.
Definition: EditorView.cpp:210
void setDetailsContent(const string &xml)
Set details content.
Definition: EditorView.cpp:218
EditorScreenController * getScreenController()
Definition: EditorView.h:57
void reloadTabOutliner(const string &newSelectionValue=string())
Reload tab outliner.
Definition: EditorView.cpp:222
Console class.
Definition: Console.h:26
Exception base class.
Definition: ExceptionBase.h:20
Float class.
Definition: Float.h:23
Integer class.
Definition: Integer.h:26
Mutable string class.
Definition: MutableString.h:16
const string & getString() const
String tools class.
Definition: StringTools.h:20
std::exception Exception
Exception base class.
Definition: Exception.h:19
Tab controller, which connects UI with logic.
Definition: TabController.h:23
Action Interface.
Definition: Action.h:12