126 if (scene ==
nullptr)
return;
129 save(Tools::getPathName(scene->getFileName()), Tools::getFileName(scene->getFileName()));
134 class OnSceneSave:
public virtual Action
137 void performAction()
override {
138 sceneEditorTabController->save(
139 sceneEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
140 sceneEditorTabController->popUps->getFileDialogScreenController()->getFileName()
142 sceneEditorTabController->popUps->getFileDialogScreenController()->close();
145 OnSceneSave(
SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
153 if (scene ==
nullptr)
return;
156 vector<string> extensions = {
160 Tools::getPathName(fileName),
163 Tools::getFileName(fileName),
165 new OnSceneSave(
this)
172 if (scene ==
nullptr)
return;
174 Console::println(
"SceneEditorTabController::save(): " + Tools::getPathName(pathName) +
"/" + Tools::getFileName(fileName));
184 Console::println(
string(
"SceneEditorTabController::save(): An error occurred: ") + exception.what());;
200 if (node->
getId() ==
"dropdown_outliner_add") {
204 if (node->
getId() ==
"selectbox_outliner") {
206 vector<string> selectedEntityIds;
208 for (
auto& selectedEntityId: outlinerSelection) {
209 if (StringTools::startsWith(selectedEntityId,
"scene.entities.") ==
false)
continue;
210 selectedEntityIds.push_back(StringTools::substring(selectedEntityId,
string(
"scene.entities.").size()));
233 if (StringTools::startsWith(node->
getId(),
view->
getTabId() +
"_tab_checkbox_snapping") ==
true ||
234 StringTools::startsWith(node->
getId(),
view->
getTabId() +
"_tab_snapping_x") ==
true ||
235 StringTools::startsWith(node->
getId(),
view->
getTabId() +
"_tab_snapping_z") ==
true) {
243 if (node->
getId() == applyTranslationNode) {
248 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_translation_x"))->getController()->getValue().getString()),
249 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_translation_y"))->getController()->getValue().getString()),
250 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_translation_z"))->getController()->getValue().getString())
254 Console::println(
string(
"SceneEditorTabController::onValueChanged(): An error occurred: ") + exception.what());;
262 if (node->
getId() == applyRotationNode) {
267 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_rotation_x"))->getController()->getValue().getString()),
268 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_rotation_y"))->getController()->getValue().getString()),
269 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_rotation_z"))->getController()->getValue().getString())
273 Console::println(
string(
"SceneEditorTabController::onValueChanged(): An error occurred: ") + exception.what());;
281 if (node->
getId() == applyScaleNode) {
286 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_scale_x"))->getController()->getValue().getString()),
287 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_scale_y"))->getController()->getValue().getString()),
288 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_scale_z"))->getController()->getValue().getString())
292 Console::println(
string(
"SceneEditorTabController::onValueChanged(): An error occurred: ") + exception.what());;
300 if (node->
getId() == applySkyNode) {
306 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"sky_model_scale"))->getController()->getValue().getString()),
307 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"sky_model_scale"))->getController()->getValue().getString()),
308 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"sky_model_scale"))->getController()->getValue().getString())
313 Console::println(
string(
"SceneEditorTabController::onValueChanged(): An error occurred: ") + exception.what());;
321 if (node->
getId() == applyReflectionEnvironmentMappingNode) {
326 Console::println(
string(
"SceneEditorTabController::onValueChanged(): An error occurred: ") + exception.what());;
334 if (StringTools::startsWith(outlinerNode,
"scene.lights.") ==
true) {
335 auto lightIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"scene.lights.light").size()));
337 if (node->
getId() == applyLightNode) {
352 if (node->
getId() ==
"tdme.entities.rename_input") {
356 if (node->
getId() == applyBaseNode) {
359 auto name = required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"base_name"))->getController()->getValue().getString();
360 if (name.empty() ==
true)
throw ExceptionBase(
"Please enter a name");
363 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"base_description"))->getController()->getValue().getString()
368 Console::println(
string(
"SceneEditorTabController::onValueChanged(): An error occurred: ") + exception.what());;
380 if (node->
getId() ==
"selectbox_outliner") {
382 if (outlinerNode ==
"scene.lights") {
387 class OnAddLightAction:
public virtual Action
390 void performAction()
override {
391 auto scene = sceneEditorTabController->view->getScene();
392 if (scene ==
nullptr)
return;
393 auto light = scene->addLight();
394 if (light ==
nullptr)
return;
395 light->setEnabled(
true);
398 class ReloadTabOutlinerAction:
public Action {
403 ReloadTabOutlinerAction(
EditorView* editorView,
const string& outlinerNode): editorView(editorView), outlinerNode(outlinerNode) {}
404 virtual void performAction() {
408 Engine::getInstance()->enqueueAction(
new ReloadTabOutlinerAction(sceneEditorTabController->view->getEditorView(),
"scene.lights.light" + to_string(light->getId())));
410 OnAddLightAction(
SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
420 if (StringTools::startsWith(outlinerNode,
"scene.lights.") ==
true) {
424 auto lightIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"scene.lights.light").size()));
426 if (scene ==
nullptr)
return;
429 if (scene->getLightCount() < 2)
return;
432 class OnDeleteLightAction:
public virtual Action
435 void performAction()
override {
436 auto scene = sceneEditorTabController->view->getScene();
437 if (scene ==
nullptr)
return;
438 scene->removeLightAt(lightIdx);
441 class ReloadTabOutlinerAction:
public Action {
446 ReloadTabOutlinerAction(
EditorView* editorView,
const string& outlinerNode): editorView(editorView), outlinerNode(outlinerNode) {}
447 virtual void performAction() {
451 Engine::getInstance()->enqueueAction(
new ReloadTabOutlinerAction(sceneEditorTabController->view->getEditorView(),
"scene.lights"));
453 OnDeleteLightAction(
SceneEditorTabController* sceneEditorTabController,
int lightIdx): sceneEditorTabController(sceneEditorTabController), lightIdx(lightIdx) {
464 if (StringTools::startsWith(outlinerNode,
"scene.entities.") ==
true) {
469 class OnCenterAction:
public virtual Action
472 void performAction()
override {
473 auto outlinerSelection = StringTools::tokenize(sceneEditorTabController->view->getEditorView()->getScreenController()->getOutlinerSelection(),
"|");
474 if (outlinerSelection.size() != 1)
return;
475 string selectedEntityId;
476 if (StringTools::startsWith(outlinerSelection[0],
"scene.entities.") ==
false)
return;
477 selectedEntityId = StringTools::substring(outlinerSelection[0],
string(
"scene.entities.").size());
478 sceneEditorTabController->startRenameEntity(selectedEntityId);
480 OnCenterAction(
SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
489 class OnCenterAction:
public virtual Action
492 void performAction()
override {
493 sceneEditorTabController->view->centerEntities();
495 OnCenterAction(
SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
504 class OnSelectSameAction:
public virtual Action
507 void performAction()
override {
508 sceneEditorTabController->view->selectSameEntities();
510 OnSelectSameAction(
SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
519 class OnOpenPrototype:
public virtual Action
522 void performAction()
override {
523 sceneEditorTabController->view->openPrototype();
525 OnOpenPrototype(
SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
534 class OnReplacePrototypeAction:
public virtual Action
537 void performAction()
override {
538 sceneEditorTabController->onReplacePrototype();
540 OnReplacePrototypeAction(
SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
549 class JumpToPrototypeAction:
public virtual Action
552 void performAction()
override {
553 auto outlinerSelection = StringTools::tokenize(sceneEditorTabController->view->getEditorView()->getScreenController()->getOutlinerSelection(),
"|");
554 if (outlinerSelection.size() != 1)
return;
555 string selectedEntityId;
556 if (StringTools::startsWith(outlinerSelection[0],
"scene.entities.") ==
false)
return;
557 auto scene = sceneEditorTabController->view->getScene();
558 selectedEntityId = StringTools::substring(outlinerSelection[0],
string(
"scene.entities.").size());
559 auto sceneEntity = scene->getEntity(selectedEntityId);
560 if (sceneEntity ==
nullptr)
return;
561 sceneEditorTabController->view->getEditorView()->getScreenController()->setOutlinerSelection(
"scene.prototypes." + GUIParser::escapeQuotes(to_string(sceneEntity->getPrototype()->getId())));
562 sceneEditorTabController->updateDetails(sceneEditorTabController->view->getEditorView()->getScreenController()->getOutlinerSelection());
564 JumpToPrototypeAction(
SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
573 class OnDeleteAction:
public virtual Action
576 void performAction()
override {
577 sceneEditorTabController->view->removeEntities();
579 OnDeleteAction(
SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
598 if (node->
getId() ==
"tdme.entities.rename_input") {
601 if (node->
getId() ==
"sky_model_remove") {
605 scene->setSkyModelFileName(
string());
606 scene->setSkyModelScale(
Vector3(1.0f, 1.0f, 1.0f));
609 if (node->
getId() ==
"sky_model_open") {
610 class OnLoadSkyModelAction:
public virtual Action
613 void performAction()
override {
615 sceneEditorTabController->view->removeSky();
616 auto scene = sceneEditorTabController->view->getScene();
617 scene->setSkyModelFileName(
618 sceneEditorTabController->popUps->getFileDialogScreenController()->getPathName() +
620 sceneEditorTabController->popUps->getFileDialogScreenController()->getFileName()
622 scene->setSkyModelScale(
Vector3(1.0f, 1.0f, 1.0f));
625 Tools::getPathName(scene->getSkyModelFileName()),
626 Tools::getFileName(scene->getSkyModelFileName()))
628 sceneEditorTabController->view->updateSky();
629 sceneEditorTabController->setSkyDetails();
631 Console::println(
string(
"OnLoadSkyModel::performAction(): An error occurred: ") + exception.what());;
632 sceneEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
634 sceneEditorTabController->updateDetails(
"scene");
635 sceneEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
643 : sceneEditorTabController(sceneEditorTabController) {
651 auto extensions = ModelReader::getModelExtensions();
654 "Load sky model from: ",
658 new OnLoadSkyModelAction(
this)
661 if (node->
getId() ==
"prototype_place") {
663 auto prototypeId = Integer::parse(StringTools::substring(outlinerNode,
string(
"scene.prototypes.").size()));
666 auto prototype = sceneLibrary->
getPrototype(prototypeId);
669 if (node->
getId() ==
"light_ambient_ambient_edit" ||
670 node->
getId() ==
"light_spot_ambient_edit" ||
671 node->
getId() ==
"light_directional_ambient_edit") {
672 class OnColorChangeAction:
public virtual Action
675 void performAction()
override {
676 auto scene = sceneEditorTabController->view->getScene();
677 if (scene ==
nullptr)
return;
678 auto light = scene->getLightAt(lightIdx);
679 if (scene ==
nullptr)
return;
680 light->setAmbient(sceneEditorTabController->popUps->getColorPickerScreenController()->getColor());
681 sceneEditorTabController->updateLightDetails(lightIdx);
683 OnColorChangeAction(
SceneEditorTabController* sceneEditorTabController,
int lightIdx): sceneEditorTabController(sceneEditorTabController), lightIdx(lightIdx) {
690 if (StringTools::startsWith(outlinerNode,
"scene.lights.") ==
true) {
691 auto lightIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"scene.lights.light").size()));
693 if (scene ==
nullptr)
return;
695 if (light ==
nullptr)
return;
699 if (node->
getId() ==
"light_ambient_diffuse_edit" ||
700 node->
getId() ==
"light_spot_diffuse_edit" ||
701 node->
getId() ==
"light_directional_diffuse_edit") {
702 class OnColorChangeAction:
public virtual Action
705 void performAction()
override {
706 auto scene = sceneEditorTabController->view->getScene();
707 if (scene ==
nullptr)
return;
708 auto light = scene->getLightAt(lightIdx);
709 if (scene ==
nullptr)
return;
710 light->setDiffuse(sceneEditorTabController->popUps->getColorPickerScreenController()->getColor());
711 sceneEditorTabController->updateLightDetails(lightIdx);
713 OnColorChangeAction(
SceneEditorTabController* sceneEditorTabController,
int lightIdx): sceneEditorTabController(sceneEditorTabController), lightIdx(lightIdx) {
720 if (StringTools::startsWith(outlinerNode,
"scene.lights.") ==
true) {
721 auto lightIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"scene.lights.light").size()));
723 if (scene ==
nullptr)
return;
725 if (light ==
nullptr)
return;
729 if (node->
getId() ==
"light_ambient_specular_edit" ||
730 node->
getId() ==
"light_spot_specular_edit" ||
731 node->
getId() ==
"light_directional_specular_edit") {
732 class OnColorChangeAction:
public virtual Action
735 void performAction()
override {
736 auto scene = sceneEditorTabController->view->getScene();
737 if (scene ==
nullptr)
return;
738 auto light = scene->getLightAt(lightIdx);
739 if (scene ==
nullptr)
return;
740 light->setSpecular(sceneEditorTabController->popUps->getColorPickerScreenController()->getColor());
741 sceneEditorTabController->updateLightDetails(lightIdx);
743 OnColorChangeAction(
SceneEditorTabController* sceneEditorTabController,
int lightIdx): sceneEditorTabController(sceneEditorTabController), lightIdx(lightIdx) {
750 if (StringTools::startsWith(outlinerNode,
"scene.lights.") ==
true) {
751 auto lightIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"scene.lights.light").size()));
753 if (scene ==
nullptr)
return;
755 if (light ==
nullptr)
return;
764 Console::println(
"SceneEditorTabController::setSkyDetails(): ");
769 string(
"<template id=\"details_sky\" src=\"resources/engine/gui/template_details_sky.xml\" />")
774 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_sky"))->getActiveConditions().add(
"open");
775 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"sky_model_scale"))->getController()->setValue(
776 Math::max(scene->getSkyModelScale().getX(), Math::max(scene->getSkyModelScale().getY(), scene->getSkyModelScale().getZ()))
778 if (scene->getSkyModelFileName().empty() ==
false) {
779 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"sky_model"))->setSource(scene->getSkyModelFileName());
782 Console::println(
string(
"SceneEditorTabController::setSkyDetails(): An error occurred: ") + exception.what());;
788 Console::println(
"SceneEditorTabController::setLightDetails(): " + to_string(lightIdx));
791 if (scene ==
nullptr)
return;
793 if (light ==
nullptr)
return;
794 enum LightType { LIGHTTYPE_AMBIENT, LIGHTTYPE_SPOTLIGHT, LIGHTTYPE_DIRECTIONAL };
796 if (Math::abs(light->getPosition().getW()) < Math::EPSILON) lightType = LIGHTTYPE_DIRECTIONAL;
else
797 if (Math::abs(light->getSpotExponent()) > Math::EPSILON) lightType = LIGHTTYPE_SPOTLIGHT;
else
798 lightType = LIGHTTYPE_AMBIENT;
801 string(
"<template id=\"details_light\" src=\"resources/engine/gui/template_details_light.xml\" />")
807 auto spotDirection = light->getSpotDirection().computeLengthSquared() < Math::square(Math::EPSILON)?
Vector3(0.0f, -1.0f, 1.0f):light->getSpotDirection().clone().normalize();
810 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_ambient_constant_attenuation"))->getController()->setValue(
MutableString(light->getConstantAttenuation()));
811 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_ambient_linear_attenuation"))->getController()->setValue(
MutableString(light->getLinearAttenuation()));
812 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_ambient_quadratic_attenuation"))->getController()->setValue(
MutableString(light->getQuadraticAttenuation()));
815 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_spot_constant_attenuation"))->getController()->setValue(
MutableString(light->getConstantAttenuation()));
816 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_spot_linear_attenuation"))->getController()->setValue(
MutableString(light->getLinearAttenuation()));
817 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_spot_quadratic_attenuation"))->getController()->setValue(
MutableString(light->getQuadraticAttenuation()));
828 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_directional_constant_attenuation"))->getController()->setValue(
MutableString(light->getConstantAttenuation()));
829 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_directional_linear_attenuation"))->getController()->setValue(
MutableString(light->getLinearAttenuation()));
830 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_directional_quadratic_attenuation"))->getController()->setValue(
MutableString(light->getQuadraticAttenuation()));
836 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_light"))->getActiveConditions().add(
"open");
838 case LIGHTTYPE_AMBIENT:
841 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_type_details"))->getActiveConditions().set(
"ambient");
844 case LIGHTTYPE_SPOTLIGHT:
847 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_type_details"))->getActiveConditions().set(
"spot");
850 case LIGHTTYPE_DIRECTIONAL:
853 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_type_details"))->getActiveConditions().set(
"directional");
858 Console::println(
string(
"SceneEditorTabController::setLightDetails(): An error occurred: ") + exception.what());;
868 if (scene ==
nullptr)
return;
870 if (light ==
nullptr)
return;
874 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"light_ambient_ambient"))->setEffectColorMul(
Color4(light->getAmbient()));
875 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"light_ambient_diffuse"))->setEffectColorMul(
Color4(light->getDiffuse()));
876 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"light_ambient_specular"))->setEffectColorMul(
Color4(light->getSpecular()));
879 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"light_spot_ambient"))->setEffectColorMul(
Color4(light->getAmbient()));
880 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"light_spot_diffuse"))->setEffectColorMul(
Color4(light->getDiffuse()));
881 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"light_spot_specular"))->setEffectColorMul(
Color4(light->getSpecular()));
884 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"light_directional_ambient"))->setEffectColorMul(
Color4(light->getAmbient()));
885 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"light_directional_diffuse"))->setEffectColorMul(
Color4(light->getDiffuse()));
886 required_dynamic_cast<GUIImageNode*>(
screenNode->
getNodeById(
"light_directional_specular"))->setEffectColorMul(
Color4(light->getSpecular()));
888 Console::println(
string(
"SceneEditorTabController::updateLightDetails(): An error occurred: ") + exception.what());;
897 Console::println(
"SceneEditorTabController::applyLightDetails(): " + to_string(lightIdx));
901 if (scene ==
nullptr)
return;
903 if (light ==
nullptr)
return;
908 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_light"))->getActiveConditions().add(
"open");
909 switch (Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_type"))->getController()->getValue().getString())) {
915 light->setLinearAttenuation(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_ambient_linear_attenuation"))->getController()->getValue().getString()));
916 light->setQuadraticAttenuation(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_ambient_quadratic_attenuation"))->getController()->getValue().getString()));
918 light->setSpotDirection(
Vector3());
919 light->setSpotCutOff(180.0f);
920 light->setSpotExponent(0.0f);
927 light->setConstantAttenuation(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_spot_constant_attenuation"))->getController()->getValue().getString()));
928 light->setLinearAttenuation(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_spot_linear_attenuation"))->getController()->getValue().getString()));
929 light->setQuadraticAttenuation(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_spot_quadratic_attenuation"))->getController()->getValue().getString()));
932 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_spot_position_x"))->getController()->getValue().getString()),
933 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_spot_position_y"))->getController()->getValue().getString()),
934 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_spot_position_z"))->getController()->getValue().getString()),
938 light->setSpotDirection(
940 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_spot_direction_x"))->getController()->getValue().getString()),
941 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_spot_direction_y"))->getController()->getValue().getString()),
942 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_spot_direction_z"))->getController()->getValue().getString())
945 light->setSpotCutOff(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_spot_cutoff"))->getController()->getValue().getString()));
946 light->setSpotExponent(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_spot_exponent"))->getController()->getValue().getString()));
953 light->setConstantAttenuation(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_directional_constant_attenuation"))->getController()->getValue().getString()));
954 light->setLinearAttenuation(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_directional_linear_attenuation"))->getController()->getValue().getString()));
955 light->setQuadraticAttenuation(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_directional_quadratic_attenuation"))->getController()->getValue().getString()));
958 light->getPosition().getX(),
959 light->getPosition().getY(),
960 light->getPosition().getZ(),
964 light->setSpotDirection(
966 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_directional_direction_x"))->getController()->getValue().getString()),
967 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_directional_direction_y"))->getController()->getValue().getString()),
968 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"light_directional_direction_z"))->getController()->getValue().getString())
971 light->setSpotCutOff(180.0f);
972 light->setSpotExponent(0.0f);
977 Console::println(
string(
"SceneEditorTabController::applyLightDetails(): An error occurred: ") + exception.what());;
989 string(
"<template id=\"details_prototype\" src=\"resources/engine/gui/template_details_prototype.xml\" />")
994 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_prototype"))->getActiveConditions().add(
"open");
996 Console::println(
string(
"SceneEditorTabController::setEntityDetails(): An error occurred: ") + exception.what());;
1003 if (scene ==
nullptr)
return;
1005 string reflectionEnvironmentMappingIdsXML =
1006 string() +
"<dropdown-option text=\"<None>\" value=\"\" " + (selectedReflectionEnvironmentMappingId.empty() ==
true?
"selected=\"true\" ":
"") +
" />\n";
1007 for (
auto& environmentMappingId: scene->getEnvironmentMappingIds()) {
1008 reflectionEnvironmentMappingIdsXML+=
1009 "<dropdown-option text=\"" +
1010 GUIParser::escapeQuotes(environmentMappingId) +
1012 GUIParser::escapeQuotes(environmentMappingId) +
1014 (selectedReflectionEnvironmentMappingId == environmentMappingId?
"selected=\"true\" ":
"") +
1019 required_dynamic_cast<GUIParentNode*>(
screenNode->
getInnerNodeById(
"reflection_environmentmap"))->replaceSubNodes(reflectionEnvironmentMappingIdsXML,
true);
1021 Console::print(
string(
"SceneEditorTabController::updateReflectionEnvironmentMappingDetailsDropDown(): An error occurred: "));
1022 Console::println(
string(exception.what()));
1027 Console::println(
"SceneEditorTabController::setEntityDetails(): " + entityId);
1030 auto entity = scene->
getEntity(entityId);
1031 if (entity ==
nullptr)
return;
1034 string(
"<template id=\"details_base\" src=\"resources/engine/gui/template_details_base.xml\" />") +
1035 string(
"<template id=\"details_transformations\" src=\"resources/engine/gui/template_details_transformation.xml\" />") +
1036 string(
"<template id=\"details_reflections\" src=\"resources/engine/gui/template_details_reflection.xml\" />")
1041 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_base"))->getActiveConditions().add(
"open");
1042 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_transformations"))->getActiveConditions().add(
"open");
1043 if ((entity->getPrototype()->getType()->getGizmoTypeMask() & Gizmo::GIZMOTYPE_ROTATE) == Gizmo::GIZMOTYPE_ROTATE) {
1044 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_transformations"))->getActiveConditions().add(
"rotation");
1046 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_reflections"))->getActiveConditions().add(
"open");
1048 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"base_name"))->getController()->setValue(entity->getId());
1049 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"base_description"))->getController()->setValue(entity->getDescription());
1051 Console::println(
string(
"SceneEditorTabController::setEntityDetails(): An error occurred: ") + exception.what());;
1061 Console::println(
"SceneEditorTabController::setEntityDetailsMultiple(): ");
1066 string(
"<template id=\"details_transformations\" src=\"resources/engine/gui/template_details_transformation.xml\" />") +
1067 string(
"<template id=\"details_reflections\" src=\"resources/engine/gui/template_details_reflection.xml\" />")
1072 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_transformations"))->getActiveConditions().add(
"open");
1073 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_transformations"))->getActiveConditions().add(
"rotation");
1074 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_reflections"))->getActiveConditions().add(
"open");
1076 Console::println(
string(
"SceneEditorTabController::setEntityDetails(): An error occurred: ") + exception.what());;
1094 transformations.
getRotationAngle(scene->getRotationOrder()->getAxisXIndex()),
1095 transformations.
getRotationAngle(scene->getRotationOrder()->getAxisYIndex()),
1096 transformations.
getRotationAngle(scene->getRotationOrder()->getAxisZIndex())
1106 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_translation_x"))->getController()->setValue(translation.
getX());
1107 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_translation_y"))->getController()->setValue(translation.
getY());
1108 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_translation_z"))->getController()->setValue(translation.
getZ());
1110 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_rotation_x"))->getController()->setValue(rotation.
getX());
1111 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_rotation_y"))->getController()->setValue(rotation.
getY());
1112 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_rotation_z"))->getController()->setValue(rotation.
getZ());
1114 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_scale_x"))->getController()->setValue(scale.
getX());
1115 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_scale_y"))->getController()->setValue(scale.
getY());
1116 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"transformation_scale_z"))->getController()->setValue(scale.
getZ());
1118 Console::println(
string(
"SceneEditorTabController::updateEntityDetails(): An error occurred: ") + exception.what());;
1126 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"Scene") +
"\" value=\"" + GUIParser::escapeQuotes(
"scene") +
"\">\n";
1128 if (scene !=
nullptr) {
1130 xml+=
" <selectbox-option image=\"resources/engine/images/sky.png\" text=\"Sky\" value=\"scene.sky\" />\n";
1132 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"Lights") +
"\" value=\"" + GUIParser::escapeQuotes(
"scene.lights") +
"\">\n";
1133 for (
auto i = 0; i < scene->getLightCount(); i++) {
1134 auto light = scene->getLightAt(i);
1135 xml+=
" <selectbox-option image=\"resources/engine/images/light.png\" text=\"" + GUIParser::escapeQuotes(
"Light " + to_string(i)) +
"\" id=\"" + GUIParser::escapeQuotes(
"scene.lights.light" + to_string(i)) +
"\" value=\"" + GUIParser::escapeQuotes(
"scene.lights.light" + to_string(i)) +
"\" />\n";
1137 xml+=
"</selectbox-parent-option>\n";
1140 auto sceneLibrary = scene->getLibrary();
1141 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"Prototypes") +
"\" value=\"" + GUIParser::escapeQuotes(
"scene.prototypes") +
"\">\n";
1142 for (
auto i = 0; i < sceneLibrary->getPrototypeCount(); i++) {
1143 auto prototype = sceneLibrary->getPrototypeAt(i);
1145 auto prototypeId = prototype->getId();
1146 auto prototypeName = prototype->getName();
1147 xml+=
" <selectbox-option image=\"resources/engine/images/" + icon +
"\" text=\"" + GUIParser::escapeQuotes(prototypeName) +
"\" value=\"" + GUIParser::escapeQuotes(
"scene.prototypes." + to_string(prototypeId)) +
"\" />\n";
1149 xml+=
"</selectbox-parent-option>\n";
1152 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"Entities") +
"\" value=\"" + GUIParser::escapeQuotes(
"scene.entities") +
"\">\n";
1153 for (
auto i = 0; i < scene->getEntityCount(); i++) {
1154 auto entity = scene->getEntityAt(i);
1155 auto entityName = entity->getName();
1156 auto prototype = entity->getPrototype();
1158 if (prototype->isRenderGroups() ==
true)
continue;
1159 xml+=
" <selectbox-option image=\"resources/engine/images/" + icon +
"\" text=\"" + GUIParser::escapeQuotes(entityName) +
"\" id=\"" + GUIParser::escapeQuotes(
"scene.entities." + entityName) +
"\" value=\"" + GUIParser::escapeQuotes(
"scene.entities." + entityName) +
"\" />\n";
1161 xml+=
"</selectbox-parent-option>\n";
1164 xml+=
"</selectbox-parent-option>\n";
1178 if (outlinerNode ==
"scene.sky") {
1181 if (StringTools::startsWith(outlinerNode,
"scene.lights.") ==
true) {
1182 auto lightIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"scene.lights.light").size()));
1185 if (StringTools::startsWith(outlinerNode,
"scene.prototypes.") ==
true) {
1188 if (StringTools::startsWith(outlinerNode,
"scene.entities.") ==
true) {
1189 auto entityId = StringTools::substring(outlinerNode,
string(
"scene.entities.").size());
1203 vector<string> selectedEntityIds;
1204 auto entityIdToRemove =
"scene.entities." + entityId;
1205 for (
auto& selectedEntityId: outlinerSelection) {
1206 if (StringTools::startsWith(selectedEntityId,
"scene.entities.") ==
false)
continue;
1207 if (selectedEntityId == entityIdToRemove)
continue;
1208 selectedEntityIds.push_back(selectedEntityId);
1215 vector<string> selectedEntityIds;
1216 auto entityIdToAdd =
"scene.entities." + entityId;
1217 for (
auto& selectedEntityId: outlinerSelection) {
1218 if (StringTools::startsWith(selectedEntityId,
"scene.entities.") ==
false)
continue;
1219 if (selectedEntityId == entityIdToAdd)
continue;
1220 selectedEntityIds.push_back(selectedEntityId);
1222 selectedEntityIds.push_back(entityIdToAdd);
1227 if (selectedOutlinerEntityIds.empty() ==
true) {
1228 auto newOutlinerSelection = string(
"scene.entities");
1232 if (selectedOutlinerEntityIds.size() == 1) {
1233 auto newOutlinerSelection = string(selectedOutlinerEntityIds[0]);
1235 updateDetails(StringTools::substring(newOutlinerSelection,
string(
"scene.entities.").size()));
1237 auto newOutlinerSelection = string(
"|");
1238 for (
auto& entityId: selectedOutlinerEntityIds) {
1239 newOutlinerSelection+= entityId +
"|";
1247 class OnReplacePrototypeAction:
public virtual Action
1250 void performAction()
override {
1252 auto outlinerSelection = StringTools::tokenize(sceneEditorTabController->view->getEditorView()->getScreenController()->getOutlinerSelection(),
"|");
1253 if (outlinerSelection.size() != 1)
return;
1254 string selectedEntityId;
1255 if (StringTools::startsWith(outlinerSelection[0],
"scene.entities.") ==
false)
return;
1256 selectedEntityId = StringTools::substring(outlinerSelection[0],
string(
"scene.entities.").size());
1257 auto scene = sceneEditorTabController->view->getScene();
1258 auto sceneLibrary = scene->getLibrary();
1259 auto selectedSceneEntity = scene->getEntity(selectedEntityId);
1260 auto prototype = selectedSceneEntity !=
nullptr?selectedSceneEntity->getPrototype():
nullptr;
1261 if (prototype ==
nullptr)
return;
1262 auto newPrototype = PrototypeReader::read(
1264 sceneEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
1265 sceneEditorTabController->popUps->getFileDialogScreenController()->getFileName()
1267 sceneLibrary->addPrototype(newPrototype);
1268 sceneEditorTabController->view->clearScene();
1269 scene->replacePrototypeByIds(prototype->getId(), newPrototype->getId());
1270 sceneLibrary->removePrototype(prototype->getId());
1271 sceneEditorTabController->view->reloadScene();
1274 class ReloadTabOutlinerAction:
public Action {
1277 string outlinerNode;
1279 ReloadTabOutlinerAction(
EditorView* editorView,
const string& outlinerNode): editorView(editorView), outlinerNode(outlinerNode) {}
1280 virtual void performAction() {
1284 Engine::getInstance()->enqueueAction(
new ReloadTabOutlinerAction(sceneEditorTabController->view->getEditorView(),
"scene.entities"));
1286 Console::println(
string(
"OnReplacePrototypeAction::performAction(): An error occurred: ") + exception.what());;
1287 sceneEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
1289 sceneEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1297 : sceneEditorTabController(sceneEditorTabController) {
1305 auto extensions = PrototypeReader::getPrototypeExtensions();
1308 "Replace prototype with: ",
1312 new OnReplacePrototypeAction(
this)
1318 auto sceneEntity = scene->
getEntity(entityName);
1319 if (sceneEntity ==
nullptr)
return;
1321 if (selectBoxOptionParentNode ==
nullptr)
return;
1323 selectBoxOptionParentNode->replaceSubNodes(
1324 "<template id=\"tdme.entities.rename_input\" hint=\"Property name\" text=\"" + GUIParser::escapeQuotes(sceneEntity->getName()) +
"\"src=\"resources/engine/gui/template_outliner_rename.xml\" />\n",
1335 if (sceneEntity !=
nullptr) {
1337 auto name = required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"tdme.entities.rename_input"))->getController()->getValue().getString();
1338 if (name.empty() ==
true)
throw ExceptionBase(
"Please enter a name");
1341 sceneEntity->getDescription()
1347 Console::println(
string(
"SceneEditorTabController::renameProperty(): An error occurred: ") + exception.what());;
1353 class ReloadTabOutlinerAction:
public Action {
1356 string outlinerNode;
1358 ReloadTabOutlinerAction(
EditorView* editorView,
const string& outlinerNode): editorView(editorView), outlinerNode(outlinerNode) {}
1359 virtual void performAction() {
1363 Engine::getInstance()->enqueueAction(
new ReloadTabOutlinerAction(
view->
getEditorView(),
"scene.entities" + (sceneEntity !=
nullptr?
"." + sceneEntity->getName():
"")));
Represents rotation orders of a model.
Base property model class.
Scene prototype library definition.
Prototype * getPrototype(int id)
Get a prototype by given id.
void setConstantAttenuation(float constantAttenuation)
Set up constant attenuation.
SceneLibrary * getLibrary()
SceneLight * getLightAt(int i)
Get light at given index.
const string & getFileName()
void setSkyModelScale(const Vector3 &skyModelScale)
Set sky model scale.
void setSkyModel(Model *model)
Set sky model.
SceneEntity * getEntity(const string &id)
Returns scene entity by id.
GUI element node conditions.
GUI node controller base class.
virtual const MutableString & getValue()=0
GUINodeController * getController()
GUI parent node base class thats supporting child nodes.
GUI screen node that represents a screen that can be rendered via GUI system.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void delegateValueChanged(GUIElementNode *node)
Delegate value changed.
GUINode * getInnerNodeById(const string &nodeId)
Get inner GUI node by id.
Vector3 & normalize()
Normalize the vector.
bool equals(const string &s2) const
Equals.
const string & getString() const
std::exception Exception
Exception base class.