TDME2 1.9.121
SceneEditorTabController.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
15#include <tdme/engine/Engine.h>
25#include <tdme/gui/GUI.h>
26#include <tdme/gui/GUIParser.h>
27#include <tdme/math/Math.h>
46
47using std::string;
48
50
90
91SceneEditorTabController::SceneEditorTabController(SceneEditorTabView* view)
92{
93 this->view = view;
94 this->popUps = view->getPopUps();
96}
97
100}
101
103 return view;
104}
105
107{
108 return screenNode;
109}
110
112{
113 this->screenNode = screenNode;
115 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById(view->getTabId() + "_tab_viewport"))->getActiveConditions().add("tools");
116 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById(view->getTabId() + "_tab_viewport"))->getActiveConditions().add("snapping");
117}
118
120{
121}
122
124{
125 auto scene = view->getScene();
126 if (scene == nullptr) return;
127
128 //
129 save(Tools::getPathName(scene->getFileName()), Tools::getFileName(scene->getFileName()));
130}
131
133{
134 class OnSceneSave: public virtual Action
135 {
136 public:
137 void performAction() override {
138 sceneEditorTabController->save(
139 sceneEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
140 sceneEditorTabController->popUps->getFileDialogScreenController()->getFileName()
141 );
142 sceneEditorTabController->popUps->getFileDialogScreenController()->close();
143 }
144
145 OnSceneSave(SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
146 }
147
148 private:
149 SceneEditorTabController* sceneEditorTabController;
150 };
151
152 auto scene = view->getScene();
153 if (scene == nullptr) return;
154
155 auto fileName = scene->getFileName();
156 vector<string> extensions = {
157 "tscene"
158 };
160 Tools::getPathName(fileName),
161 "Save Scene to: ",
162 extensions,
163 Tools::getFileName(fileName),
164 false,
165 new OnSceneSave(this)
166 );
167}
168
169void SceneEditorTabController::save(const string& pathName, const string& fileName)
170{
171 auto scene = view->getScene();
172 if (scene == nullptr) return;
173
174 Console::println("SceneEditorTabController::save(): " + Tools::getPathName(pathName) + "/" + Tools::getFileName(fileName));
175
176 //
177 try {
178 SceneWriter::write(
179 pathName,
180 fileName,
181 scene
182 );
183 } catch (Exception& exception) {
184 Console::println(string("SceneEditorTabController::save(): An error occurred: ") + exception.what());;
185 showErrorPopUp("Warning", (string(exception.what())));
186 }
187}
188
190 required_dynamic_cast<GUITextNode*>(screenNode->getNodeById(view->getTabId() + "_tab_text_info"))->setText(text);
191}
192
193void SceneEditorTabController::showErrorPopUp(const string& caption, const string& message)
194{
195 popUps->getInfoDialogScreenController()->show(caption, message);
196}
197
199{
200 if (node->getId() == "dropdown_outliner_add") {
201 auto addOutlinerType = node->getController()->getValue().getString();
202 // TODO
203 } else
204 if (node->getId() == "selectbox_outliner") {
206 vector<string> selectedEntityIds;
207 auto outlinerSelection = StringTools::tokenize(view->getEditorView()->getScreenController()->getOutlinerSelection(), "|");
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()));
211 }
212 view->selectEntities(selectedEntityIds);
213 } else
214 if (node->getId() == view->getTabId() + "_tab_button_translate") {
215 view->setGizmoType(Gizmo::GIZMOTYPE_TRANSLATE);
216 view->updateGizmo();
217 } else
218 if (node->getId() == view->getTabId() + "_tab_button_rotate") {
219 view->setGizmoType(Gizmo::GIZMOTYPE_ROTATE);
220 view->updateGizmo();
221 } else
222 if (node->getId() == view->getTabId() + "_tab_button_scale") {
223 view->setGizmoType(Gizmo::GIZMOTYPE_SCALE);
224 view->updateGizmo();
225 } else
226 if (node->getId() == view->getTabId() + "_tab_button_gizmo") {
227 view->setGizmoType(Gizmo::GIZMOTYPE_ALL);
228 view->updateGizmo();
229 } else
230 if (node->getId() == view->getTabId() + "_tab_checkbox_grid") {
232 } else
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) {
237 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById(view->getTabId() + "_tab_checkbox_snapping"))->getController()->getValue().equals("1") == true,
238 Float::parse(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById(view->getTabId() + "_tab_snapping_x"))->getController()->getValue().getString()),
239 Float::parse(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById(view->getTabId() + "_tab_snapping_z"))->getController()->getValue().getString())
240 );
241 } else {
242 for (auto& applyTranslationNode: applyTranslationNodes) {
243 if (node->getId() == applyTranslationNode) {
244 //
245 try {
247 Vector3(
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())
251 )
252 );
253 } catch (Exception& exception) {
254 Console::println(string("SceneEditorTabController::onValueChanged(): An error occurred: ") + exception.what());;
255 showErrorPopUp("Warning", (string(exception.what())));
256 }
257 //
258 break;
259 }
260 }
261 for (auto& applyRotationNode: applyRotationNodes) {
262 if (node->getId() == applyRotationNode) {
263 //
264 try {
266 Vector3(
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())
270 )
271 );
272 } catch (Exception& exception) {
273 Console::println(string("SceneEditorTabController::onValueChanged(): An error occurred: ") + exception.what());;
274 showErrorPopUp("Warning", (string(exception.what())));
275 }
276 //
277 break;
278 }
279 }
280 for (auto& applyScaleNode: applyScaleNodes) {
281 if (node->getId() == applyScaleNode) {
282 //
283 try {
285 Vector3(
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())
289 )
290 );
291 } catch (Exception& exception) {
292 Console::println(string("SceneEditorTabController::onValueChanged(): An error occurred: ") + exception.what());;
293 showErrorPopUp("Warning", (string(exception.what())));
294 }
295 //
296 break;
297 }
298 }
299 for (auto& applySkyNode: applySkyNodes) {
300 if (node->getId() == applySkyNode) {
301 //
302 try {
303 auto scene = view->getScene();
304 scene->setSkyModelScale(
305 Vector3(
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())
309 )
310 );
311 view->updateSky();
312 } catch (Exception& exception) {
313 Console::println(string("SceneEditorTabController::onValueChanged(): An error occurred: ") + exception.what());;
314 showErrorPopUp("Warning", (string(exception.what())));
315 }
316 //
317 break;
318 }
319 }
320 for (auto& applyReflectionEnvironmentMappingNode: applyReflectionEnvironmentMappingNodes) {
321 if (node->getId() == applyReflectionEnvironmentMappingNode) {
322 //
323 try {
324 view->applyReflectionEnvironmentMappingId(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("reflection_environmentmap"))->getController()->getValue().getString());
325 } catch (Exception& exception) {
326 Console::println(string("SceneEditorTabController::onValueChanged(): An error occurred: ") + exception.what());;
327 showErrorPopUp("Warning", (string(exception.what())));
328 }
329 //
330 break;
331 }
332 }
333 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
334 if (StringTools::startsWith(outlinerNode, "scene.lights.") == true) {
335 auto lightIdx = Integer::parse(StringTools::substring(outlinerNode, string("scene.lights.light").size()));
336 for (auto& applyLightNode: applyLightNodes) {
337 if (node->getId() == applyLightNode) {
338 applyLightDetails(lightIdx);
339 break;
340 }
341 }
342 }
344 }
345}
346
349}
350
352 if (node->getId() == "tdme.entities.rename_input") {
353 renameEntity();
354 } else {
355 for (auto& applyBaseNode: applyBaseNodes) {
356 if (node->getId() == applyBaseNode) {
357 //
358 try {
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");
361 if (view->applyBase(
362 name,
363 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("base_description"))->getController()->getValue().getString()
364 ) == false) {
365 throw ExceptionBase("Could not rename entity");
366 }
367 } catch (Exception& exception) {
368 Console::println(string("SceneEditorTabController::onValueChanged(): An error occurred: ") + exception.what());;
369 showErrorPopUp("Warning", (string(exception.what())));
370 }
371 //
372 break;
373 }
374 }
375 }
377}
378
380 if (node->getId() == "selectbox_outliner") {
381 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
382 if (outlinerNode == "scene.lights") {
383 // clear
385 {
386 // add light
387 class OnAddLightAction: public virtual Action
388 {
389 public:
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);
396
397 //
398 class ReloadTabOutlinerAction: public Action {
399 private:
400 EditorView* editorView;
401 string outlinerNode;
402 public:
403 ReloadTabOutlinerAction(EditorView* editorView, const string& outlinerNode): editorView(editorView), outlinerNode(outlinerNode) {}
404 virtual void performAction() {
405 editorView->reloadTabOutliner(outlinerNode);
406 }
407 };
408 Engine::getInstance()->enqueueAction(new ReloadTabOutlinerAction(sceneEditorTabController->view->getEditorView(), "scene.lights.light" + to_string(light->getId())));
409 }
410 OnAddLightAction(SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
411 }
412 private:
413 SceneEditorTabController* sceneEditorTabController;
414 };
415 popUps->getContextMenuScreenController()->addMenuItem("Add light", "contextmenu_add", new OnAddLightAction(this));
416 }
417 //
418 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
419 } else
420 if (StringTools::startsWith(outlinerNode, "scene.lights.") == true) {
421 // clear
423 {
424 auto lightIdx = Integer::parse(StringTools::substring(outlinerNode, string("scene.lights.light").size()));
425 auto scene = view->getScene();
426 if (scene == nullptr) return;
427
428 //
429 if (scene->getLightCount() < 2) return;
430
431 // remove light
432 class OnDeleteLightAction: public virtual Action
433 {
434 public:
435 void performAction() override {
436 auto scene = sceneEditorTabController->view->getScene();
437 if (scene == nullptr) return;
438 scene->removeLightAt(lightIdx);
439
440 //
441 class ReloadTabOutlinerAction: public Action {
442 private:
443 EditorView* editorView;
444 string outlinerNode;
445 public:
446 ReloadTabOutlinerAction(EditorView* editorView, const string& outlinerNode): editorView(editorView), outlinerNode(outlinerNode) {}
447 virtual void performAction() {
448 editorView->reloadTabOutliner(outlinerNode);
449 }
450 };
451 Engine::getInstance()->enqueueAction(new ReloadTabOutlinerAction(sceneEditorTabController->view->getEditorView(), "scene.lights"));
452 }
453 OnDeleteLightAction(SceneEditorTabController* sceneEditorTabController, int lightIdx): sceneEditorTabController(sceneEditorTabController), lightIdx(lightIdx) {
454 }
455 private:
456 SceneEditorTabController* sceneEditorTabController;
457 int lightIdx;
458 };
459 popUps->getContextMenuScreenController()->addMenuItem("Delete light", "contextmenu_delete", new OnDeleteLightAction(this, lightIdx));
460 }
461 //
462 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
463 } else
464 if (StringTools::startsWith(outlinerNode, "scene.entities.") == true) {
465 // clear
467 {
468 // rename
469 class OnCenterAction: public virtual Action
470 {
471 public:
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);
479 }
480 OnCenterAction(SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
481 }
482 private:
483 SceneEditorTabController* sceneEditorTabController;
484 };
485 popUps->getContextMenuScreenController()->addMenuItem("Rename", "contextmenu_rename", new OnCenterAction(this));
486 }
487 {
488 // center
489 class OnCenterAction: public virtual Action
490 {
491 public:
492 void performAction() override {
493 sceneEditorTabController->view->centerEntities();
494 }
495 OnCenterAction(SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
496 }
497 private:
498 SceneEditorTabController* sceneEditorTabController;
499 };
500 popUps->getContextMenuScreenController()->addMenuItem("Center", "contextmenu_center", new OnCenterAction(this));
501 }
502 {
503 // select same
504 class OnSelectSameAction: public virtual Action
505 {
506 public:
507 void performAction() override {
508 sceneEditorTabController->view->selectSameEntities();
509 }
510 OnSelectSameAction(SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
511 }
512 private:
513 SceneEditorTabController* sceneEditorTabController;
514 };
515 popUps->getContextMenuScreenController()->addMenuItem("Select same", "contextmenu_same", new OnSelectSameAction(this));
516 }
517 {
518 // open prototype
519 class OnOpenPrototype: public virtual Action
520 {
521 public:
522 void performAction() override {
523 sceneEditorTabController->view->openPrototype();
524 }
525 OnOpenPrototype(SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
526 }
527 private:
528 SceneEditorTabController* sceneEditorTabController;
529 };
530 popUps->getContextMenuScreenController()->addMenuItem("Open prototype", "contextmenu_openprototype", new OnOpenPrototype(this));
531 }
532 {
533 // replace prototype
534 class OnReplacePrototypeAction: public virtual Action
535 {
536 public:
537 void performAction() override {
538 sceneEditorTabController->onReplacePrototype();
539 }
540 OnReplacePrototypeAction(SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
541 }
542 private:
543 SceneEditorTabController* sceneEditorTabController;
544 };
545 popUps->getContextMenuScreenController()->addMenuItem("Replace prototype", "contextmenu_replaceprototype", new OnReplacePrototypeAction(this));
546 }
547 {
548 // jump to prototype
549 class JumpToPrototypeAction: public virtual Action
550 {
551 public:
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());
563 }
564 JumpToPrototypeAction(SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
565 }
566 private:
567 SceneEditorTabController* sceneEditorTabController;
568 };
569 popUps->getContextMenuScreenController()->addMenuItem("Jump to prototype", "contextmenu_jumptoprototype", new JumpToPrototypeAction(this));
570 }
571 {
572 // delete
573 class OnDeleteAction: public virtual Action
574 {
575 public:
576 void performAction() override {
577 sceneEditorTabController->view->removeEntities();
578 }
579 OnDeleteAction(SceneEditorTabController* sceneEditorTabController): sceneEditorTabController(sceneEditorTabController) {
580 }
581 private:
582 SceneEditorTabController* sceneEditorTabController;
583 };
585 popUps->getContextMenuScreenController()->addMenuItem("Delete", "contextmenu_delete", new OnDeleteAction(this));
586 }
587 //
588 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
589 }
590 } else {
592 }
593}
594
596{
597 if (type != GUIActionListenerType::PERFORMED) return;
598 if (node->getId() == "tdme.entities.rename_input") {
599 renameEntity();
600 } else
601 if (node->getId() == "sky_model_remove") {
602 view->removeSky();
603 auto scene = view->getScene();
604 scene->setSkyModel(nullptr);
605 scene->setSkyModelFileName(string());
606 scene->setSkyModelScale(Vector3(1.0f, 1.0f, 1.0f));
608 } else
609 if (node->getId() == "sky_model_open") {
610 class OnLoadSkyModelAction: public virtual Action
611 {
612 public:
613 void performAction() override {
614 try {
615 sceneEditorTabController->view->removeSky();
616 auto scene = sceneEditorTabController->view->getScene();
617 scene->setSkyModelFileName(
618 sceneEditorTabController->popUps->getFileDialogScreenController()->getPathName() +
619 "/" +
620 sceneEditorTabController->popUps->getFileDialogScreenController()->getFileName()
621 );
622 scene->setSkyModelScale(Vector3(1.0f, 1.0f, 1.0f));
623 scene->setSkyModel(
624 ModelReader::read(
625 Tools::getPathName(scene->getSkyModelFileName()),
626 Tools::getFileName(scene->getSkyModelFileName()))
627 );
628 sceneEditorTabController->view->updateSky();
629 sceneEditorTabController->setSkyDetails();
630 } catch (Exception& exception) {
631 Console::println(string("OnLoadSkyModel::performAction(): An error occurred: ") + exception.what());;
632 sceneEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
633 }
634 sceneEditorTabController->updateDetails("scene");
635 sceneEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
636 }
637
638 /**
639 * Public constructor
640 * @param sceneEditorTabController scene editor tab controller
641 */
642 OnLoadSkyModelAction(SceneEditorTabController* sceneEditorTabController)
643 : sceneEditorTabController(sceneEditorTabController) {
644 //
645 }
646
647 private:
648 SceneEditorTabController* sceneEditorTabController;
649 };
650
651 auto extensions = ModelReader::getModelExtensions();
653 string(),
654 "Load sky model from: ",
655 extensions,
656 string(),
657 true,
658 new OnLoadSkyModelAction(this)
659 );
660 } else
661 if (node->getId() == "prototype_place") {
662 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
663 auto prototypeId = Integer::parse(StringTools::substring(outlinerNode, string("scene.prototypes.").size()));
664 auto scene = view->getScene();
665 auto sceneLibrary = scene->getLibrary();
666 auto prototype = sceneLibrary->getPrototype(prototypeId);
667 if (prototype != nullptr) view->setPlaceEntityMode(prototype);
668 } else
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
673 {
674 public:
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);
682 }
683 OnColorChangeAction(SceneEditorTabController* sceneEditorTabController, int lightIdx): sceneEditorTabController(sceneEditorTabController), lightIdx(lightIdx) {
684 }
685 private:
686 SceneEditorTabController* sceneEditorTabController;
687 int lightIdx;
688 };
689 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
690 if (StringTools::startsWith(outlinerNode, "scene.lights.") == true) {
691 auto lightIdx = Integer::parse(StringTools::substring(outlinerNode, string("scene.lights.light").size()));
692 auto scene = view->getScene();
693 if (scene == nullptr) return;
694 auto light = scene->getLightAt(lightIdx);
695 if (light == nullptr) return;
696 popUps->getColorPickerScreenController()->show(light->getAmbient(), new OnColorChangeAction(this, lightIdx));
697 }
698 } else
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
703 {
704 public:
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);
712 }
713 OnColorChangeAction(SceneEditorTabController* sceneEditorTabController, int lightIdx): sceneEditorTabController(sceneEditorTabController), lightIdx(lightIdx) {
714 }
715 private:
716 SceneEditorTabController* sceneEditorTabController;
717 int lightIdx;
718 };
719 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
720 if (StringTools::startsWith(outlinerNode, "scene.lights.") == true) {
721 auto lightIdx = Integer::parse(StringTools::substring(outlinerNode, string("scene.lights.light").size()));
722 auto scene = view->getScene();
723 if (scene == nullptr) return;
724 auto light = scene->getLightAt(lightIdx);
725 if (light == nullptr) return;
726 popUps->getColorPickerScreenController()->show(light->getDiffuse(), new OnColorChangeAction(this, lightIdx));
727 }
728 } else
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
733 {
734 public:
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);
742 }
743 OnColorChangeAction(SceneEditorTabController* sceneEditorTabController, int lightIdx): sceneEditorTabController(sceneEditorTabController), lightIdx(lightIdx) {
744 }
745 private:
746 SceneEditorTabController* sceneEditorTabController;
747 int lightIdx;
748 };
749 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
750 if (StringTools::startsWith(outlinerNode, "scene.lights.") == true) {
751 auto lightIdx = Integer::parse(StringTools::substring(outlinerNode, string("scene.lights.light").size()));
752 auto scene = view->getScene();
753 if (scene == nullptr) return;
754 auto light = scene->getLightAt(lightIdx);
755 if (light == nullptr) return;
756 popUps->getColorPickerScreenController()->show(light->getSpecular(), new OnColorChangeAction(this, lightIdx));
757 }
758 } else {
760 }
761}
762
764 Console::println("SceneEditorTabController::setSkyDetails(): ");
765
766 auto scene = view->getScene();
767
769 string("<template id=\"details_sky\" src=\"resources/engine/gui/template_details_sky.xml\" />")
770 );
771
772 //
773 try {
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()))
777 );
778 if (scene->getSkyModelFileName().empty() == false) {
779 required_dynamic_cast<GUIImageNode*>(screenNode->getNodeById("sky_model"))->setSource(scene->getSkyModelFileName());
780 }
781 } catch (Exception& exception) {
782 Console::println(string("SceneEditorTabController::setSkyDetails(): An error occurred: ") + exception.what());;
783 showErrorPopUp("Warning", (string(exception.what())));
784 }
785}
786
788 Console::println("SceneEditorTabController::setLightDetails(): " + to_string(lightIdx));
789
790 auto scene = view->getScene();
791 if (scene == nullptr) return;
792 auto light = scene->getLightAt(lightIdx);
793 if (light == nullptr) return;
794 enum LightType { LIGHTTYPE_AMBIENT, LIGHTTYPE_SPOTLIGHT, LIGHTTYPE_DIRECTIONAL };
795 LightType lightType;
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;
799
801 string("<template id=\"details_light\" src=\"resources/engine/gui/template_details_light.xml\" />")
802 );
803
804 //
805 try {
806 //
807 auto spotDirection = light->getSpotDirection().computeLengthSquared() < Math::square(Math::EPSILON)?Vector3(0.0f, -1.0f, 1.0f):light->getSpotDirection().clone().normalize();
808
809 //
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()));
813
814 //
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()));
818 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_spot_position_x"))->getController()->setValue(MutableString(light->getPosition().getX()));
819 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_spot_position_y"))->getController()->setValue(MutableString(light->getPosition().getY()));
820 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_spot_position_z"))->getController()->setValue(MutableString(light->getPosition().getZ()));
821 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_spot_direction_x"))->getController()->setValue(MutableString(spotDirection.getX()));
822 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_spot_direction_y"))->getController()->setValue(MutableString(spotDirection.getY()));
823 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_spot_direction_z"))->getController()->setValue(MutableString(spotDirection.getZ()));
824 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_spot_cutoff"))->getController()->setValue(MutableString(light->getSpotCutOff()));
825 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_spot_exponent"))->getController()->setValue(MutableString(light->getSpotExponent()));
826
827 //
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()));
831 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_directional_direction_x"))->getController()->setValue(MutableString(spotDirection.getX()));
832 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_directional_direction_y"))->getController()->setValue(MutableString(spotDirection.getY()));
833 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_directional_direction_z"))->getController()->setValue(MutableString(spotDirection.getZ()));
834
835 //
836 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_light"))->getActiveConditions().add("open");
837 switch (lightType) {
838 case LIGHTTYPE_AMBIENT:
839 {
840 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_type"))->getController()->setValue(MutableString(4));
841 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_type_details"))->getActiveConditions().set("ambient");
842 break;
843 }
844 case LIGHTTYPE_SPOTLIGHT:
845 {
846 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_type"))->getController()->setValue(MutableString(2));
847 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_type_details"))->getActiveConditions().set("spot");
848 break;
849 }
850 case LIGHTTYPE_DIRECTIONAL:
851 {
852 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_type"))->getController()->setValue(MutableString(3));
853 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_type_details"))->getActiveConditions().set("directional");
854 break;
855 }
856 }
857 } catch (Exception& exception) {
858 Console::println(string("SceneEditorTabController::setLightDetails(): An error occurred: ") + exception.what());;
859 showErrorPopUp("Warning", (string(exception.what())));
860 }
861
862 //
863 updateLightDetails(lightIdx);
864}
865
867 auto scene = view->getScene();
868 if (scene == nullptr) return;
869 auto light = scene->getLightAt(lightIdx);
870 if (light == nullptr) return;
871
872 try {
873 //
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()));
877
878 //
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()));
882
883 //
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()));
887 } catch (Exception& exception) {
888 Console::println(string("SceneEditorTabController::updateLightDetails(): An error occurred: ") + exception.what());;
889 showErrorPopUp("Warning", (string(exception.what())));
890 }
891
892 //
894}
895
897 Console::println("SceneEditorTabController::applyLightDetails(): " + to_string(lightIdx));
898
899 //
900 auto scene = view->getScene();
901 if (scene == nullptr) return;
902 auto light = scene->getLightAt(lightIdx);
903 if (light == nullptr) return;
904
905 //
906 try {
907 //
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())) {
910 case 4:
911 //ambient
912 {
913 //
914 light->setConstantAttenuation(Float::parse(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("light_ambient_constant_attenuation"))->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()));
917 light->setPosition(Vector4());
918 light->setSpotDirection(Vector3());
919 light->setSpotCutOff(180.0f);
920 light->setSpotExponent(0.0f);
921 break;
922 }
923 case 2:
924 // spot light
925 {
926 //
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()));
930 light->setPosition(
931 Vector4(
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()),
935 1.0f
936 )
937 );
938 light->setSpotDirection(
939 Vector3(
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())
943 ).normalize()
944 );
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()));
947 break;
948 }
949 case 3:
950 // directional
951 {
952 //
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()));
956 light->setPosition(
957 Vector4(
958 light->getPosition().getX(),
959 light->getPosition().getY(),
960 light->getPosition().getZ(),
961 0.0f
962 )
963 );
964 light->setSpotDirection(
965 Vector3(
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())
969 ).normalize()
970 );
971 light->setSpotCutOff(180.0f);
972 light->setSpotExponent(0.0f);
973 break;
974 }
975 }
976 } catch (Exception& exception) {
977 Console::println(string("SceneEditorTabController::applyLightDetails(): An error occurred: ") + exception.what());;
978 showErrorPopUp("Warning", (string(exception.what())));
979 }
980
981 //
983}
984
986 auto scene = view->getScene();
987
989 string("<template id=\"details_prototype\" src=\"resources/engine/gui/template_details_prototype.xml\" />")
990 );
991
992 //
993 try {
994 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_prototype"))->getActiveConditions().add("open");
995 } catch (Exception& exception) {
996 Console::println(string("SceneEditorTabController::setEntityDetails(): An error occurred: ") + exception.what());;
997 showErrorPopUp("Warning", (string(exception.what())));
998 }
999}
1000
1001void SceneEditorTabController::updateReflectionEnvironmentMappingDetailsDropDown(const string& selectedReflectionEnvironmentMappingId) {
1002 auto scene = view->getScene();
1003 if (scene == nullptr) return;
1004
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) +
1011 "\" value=\"" +
1012 GUIParser::escapeQuotes(environmentMappingId) +
1013 "\" " +
1014 (selectedReflectionEnvironmentMappingId == environmentMappingId?"selected=\"true\" ":"") +
1015 " />\n";
1016 }
1017
1018 try {
1019 required_dynamic_cast<GUIParentNode*>(screenNode->getInnerNodeById("reflection_environmentmap"))->replaceSubNodes(reflectionEnvironmentMappingIdsXML, true);
1020 } catch (Exception& exception) {
1021 Console::print(string("SceneEditorTabController::updateReflectionEnvironmentMappingDetailsDropDown(): An error occurred: "));
1022 Console::println(string(exception.what()));
1023 }
1024}
1025
1027 Console::println("SceneEditorTabController::setEntityDetails(): " + entityId);
1028
1029 auto scene = view->getScene();
1030 auto entity = scene->getEntity(entityId);
1031 if (entity == nullptr) return;
1032
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\" />")
1037 );
1038
1039 //
1040 try {
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");
1045 }
1046 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_reflections"))->getActiveConditions().add("open");
1047
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());
1050 } catch (Exception& exception) {
1051 Console::println(string("SceneEditorTabController::setEntityDetails(): An error occurred: ") + exception.what());;
1052 showErrorPopUp("Warning", (string(exception.what())));
1053 }
1054
1055 //
1056 updateReflectionEnvironmentMappingDetailsDropDown(entity->getReflectionEnvironmentMappingId());
1057 updateEntityDetails(entity->getTransformations());
1058}
1059
1060void SceneEditorTabController::setEntityDetailsMultiple(const Vector3& pivot, const string& selectedReflectionEnvironmentMappingId) {
1061 Console::println("SceneEditorTabController::setEntityDetailsMultiple(): ");
1062
1063 auto scene = view->getScene();
1064
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\" />")
1068 );
1069
1070 //
1071 try {
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");
1075 } catch (Exception& exception) {
1076 Console::println(string("SceneEditorTabController::setEntityDetails(): An error occurred: ") + exception.what());;
1077 showErrorPopUp("Warning", (string(exception.what())));
1078 }
1079
1080 //
1081 updateReflectionEnvironmentMappingDetailsDropDown(selectedReflectionEnvironmentMappingId);
1083 pivot,
1084 Vector3(),
1085 Vector3(1.0f, 1.0f, 1.0f)
1086 );
1087}
1088
1090 auto scene = view->getScene();
1092 transformations.getTranslation(),
1093 Vector3(
1094 transformations.getRotationAngle(scene->getRotationOrder()->getAxisXIndex()),
1095 transformations.getRotationAngle(scene->getRotationOrder()->getAxisYIndex()),
1096 transformations.getRotationAngle(scene->getRotationOrder()->getAxisZIndex())
1097 ),
1098 transformations.getScale()
1099 );
1100
1101}
1102
1103void SceneEditorTabController::updateEntityDetails(const Vector3& translation, const Vector3& rotation, const Vector3& scale) {
1104 //
1105 try {
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());
1109
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());
1113
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());
1117 } catch (Exception& exception) {
1118 Console::println(string("SceneEditorTabController::updateEntityDetails(): An error occurred: ") + exception.what());;
1119 showErrorPopUp("Warning", (string(exception.what())));
1120 }
1121}
1122
1124
1125 string xml;
1126 xml+= "<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes("Scene") + "\" value=\"" + GUIParser::escapeQuotes("scene") + "\">\n";
1127 auto scene = view->getScene();
1128 if (scene != nullptr) {
1130 xml+= " <selectbox-option image=\"resources/engine/images/sky.png\" text=\"Sky\" value=\"scene.sky\" />\n";
1131 {
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";
1136 }
1137 xml+= "</selectbox-parent-option>\n";
1138 }
1139 {
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);
1144 auto icon = getPrototypeIcon(prototype->getType());
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";
1148 }
1149 xml+= "</selectbox-parent-option>\n";
1150 }
1151 {
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();
1157 auto icon = getPrototypeIcon(prototype->getType());
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";
1160 }
1161 xml+= "</selectbox-parent-option>\n";
1162 }
1163 }
1164 xml+= "</selectbox-parent-option>\n";
1166}
1167
1170}
1171
1173 view->getEditorView()->setDetailsContent(string());
1174}
1175
1176void SceneEditorTabController::updateDetails(const string& outlinerNode) {
1177 view->getEditorView()->setDetailsContent(string());
1178 if (outlinerNode == "scene.sky") {
1179 setSkyDetails();
1180 } else
1181 if (StringTools::startsWith(outlinerNode, "scene.lights.") == true) {
1182 auto lightIdx = Integer::parse(StringTools::substring(outlinerNode, string("scene.lights.light").size()));
1183 setLightDetails(lightIdx);
1184 } else
1185 if (StringTools::startsWith(outlinerNode, "scene.prototypes.") == true) {
1187 } else
1188 if (StringTools::startsWith(outlinerNode, "scene.entities.") == true) {
1189 auto entityId = StringTools::substring(outlinerNode, string("scene.entities.").size());
1190 setEntityDetails(entityId);
1191 } else {
1193 }
1194}
1195
1198 updateDetails("scene.entities");
1199}
1200
1201void SceneEditorTabController::unselectEntity(const string& entityId) {
1202 auto outlinerSelection = StringTools::tokenize(view->getEditorView()->getScreenController()->getOutlinerSelection(), "|");
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);
1209 }
1210 selectEntities(selectedEntityIds);
1211}
1212
1213void SceneEditorTabController::selectEntity(const string& entityId) {
1214 auto outlinerSelection = StringTools::tokenize(view->getEditorView()->getScreenController()->getOutlinerSelection(), "|");
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);
1221 }
1222 selectedEntityIds.push_back(entityIdToAdd);
1223 selectEntities(selectedEntityIds);
1224}
1225
1226void SceneEditorTabController::selectEntities(const vector<string>& selectedOutlinerEntityIds) {
1227 if (selectedOutlinerEntityIds.empty() == true) {
1228 auto newOutlinerSelection = string("scene.entities");
1229 view->getEditorView()->getScreenController()->setOutlinerSelection(newOutlinerSelection);
1230 updateDetails(newOutlinerSelection);
1231 } else
1232 if (selectedOutlinerEntityIds.size() == 1) {
1233 auto newOutlinerSelection = string(selectedOutlinerEntityIds[0]);
1234 view->getEditorView()->getScreenController()->setOutlinerSelection(newOutlinerSelection);
1235 updateDetails(StringTools::substring(newOutlinerSelection, string("scene.entities.").size()));
1236 } else {
1237 auto newOutlinerSelection = string("|");
1238 for (auto& entityId: selectedOutlinerEntityIds) {
1239 newOutlinerSelection+= entityId + "|";
1240 }
1241 view->getEditorView()->getScreenController()->setOutlinerSelection(newOutlinerSelection);
1242 updateDetails("scene.entities");
1243 }
1244}
1245
1247 class OnReplacePrototypeAction: public virtual Action
1248 {
1249 public:
1250 void performAction() override {
1251 try {
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(
1263 Prototype::ID_NONE,
1264 sceneEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
1265 sceneEditorTabController->popUps->getFileDialogScreenController()->getFileName()
1266 );
1267 sceneLibrary->addPrototype(newPrototype);
1268 sceneEditorTabController->view->clearScene();
1269 scene->replacePrototypeByIds(prototype->getId(), newPrototype->getId());
1270 sceneLibrary->removePrototype(prototype->getId());
1271 sceneEditorTabController->view->reloadScene();
1272
1273 //
1274 class ReloadTabOutlinerAction: public Action {
1275 private:
1276 EditorView* editorView;
1277 string outlinerNode;
1278 public:
1279 ReloadTabOutlinerAction(EditorView* editorView, const string& outlinerNode): editorView(editorView), outlinerNode(outlinerNode) {}
1280 virtual void performAction() {
1281 editorView->reloadTabOutliner(outlinerNode);
1282 }
1283 };
1284 Engine::getInstance()->enqueueAction(new ReloadTabOutlinerAction(sceneEditorTabController->view->getEditorView(), "scene.entities"));
1285 } catch (Exception& exception) {
1286 Console::println(string("OnReplacePrototypeAction::performAction(): An error occurred: ") + exception.what());;
1287 sceneEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
1288 }
1289 sceneEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
1290 }
1291
1292 /**
1293 * Public constructor
1294 * @param sceneEditorTabController scene editor tab controller
1295 */
1296 OnReplacePrototypeAction(SceneEditorTabController* sceneEditorTabController)
1297 : sceneEditorTabController(sceneEditorTabController) {
1298 //
1299 }
1300
1301 private:
1302 SceneEditorTabController* sceneEditorTabController;
1303 };
1304
1305 auto extensions = PrototypeReader::getPrototypeExtensions();
1307 string(),
1308 "Replace prototype with: ",
1309 extensions,
1310 string(),
1311 true,
1312 new OnReplacePrototypeAction(this)
1313 );
1314}
1315
1316void SceneEditorTabController::startRenameEntity(const string& entityName) {
1317 auto scene = view->getScene();
1318 auto sceneEntity = scene->getEntity(entityName);
1319 if (sceneEntity == nullptr) return;
1320 auto selectBoxOptionParentNode = dynamic_cast<GUIParentNode*>(view->getEditorView()->getScreenController()->getScreenNode()->getNodeById("scene.entities." + entityName));
1321 if (selectBoxOptionParentNode == nullptr) return;
1322 renameEntityName = entityName;
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",
1325 true
1326 );
1327 Engine::getInstance()->getGUI()->setFoccussedNode(dynamic_cast<GUIElementNode*>(view->getEditorView()->getScreenController()->getScreenNode()->getNodeById("tdme.entities.rename_input")));
1328 view->getEditorView()->getScreenController()->getScreenNode()->delegateValueChanged(required_dynamic_cast<GUIElementNode*>(view->getEditorView()->getScreenController()->getScreenNode()->getNodeById("selectbox_outliner")));
1329}
1330
1332 auto scene = view->getScene();
1333 auto sceneEntity = scene->getEntity(renameEntityName);
1334 renameEntityName.clear();
1335 if (sceneEntity != nullptr) {
1336 try {
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");
1339 if (view->applyBase(
1340 name,
1341 sceneEntity->getDescription()
1342 ) == false) {
1343 throw ExceptionBase("Could not rename entity");
1344 }
1345 view->reloadScene();
1346 } catch (Exception& exception) {
1347 Console::println(string("SceneEditorTabController::renameProperty(): An error occurred: ") + exception.what());;
1348 showErrorPopUp("Warning", (string(exception.what())));
1349 }
1350 }
1351
1352 //
1353 class ReloadTabOutlinerAction: public Action {
1354 private:
1355 EditorView* editorView;
1356 string outlinerNode;
1357 public:
1358 ReloadTabOutlinerAction(EditorView* editorView, const string& outlinerNode): editorView(editorView), outlinerNode(outlinerNode) {}
1359 virtual void performAction() {
1360 editorView->reloadTabOutliner(outlinerNode);
1361 }
1362 };
1363 Engine::getInstance()->enqueueAction(new ReloadTabOutlinerAction(view->getEditorView(), "scene.entities" + (sceneEntity != nullptr?"." + sceneEntity->getName():"")));
1364}
Engine main class.
Definition: Engine.h:122
Transformations which contain scale, rotations and translation.
const Vector3 & getScale() const
const Vector3 & getTranslation() const
const float getRotationAngle(const int idx) const
Color 4 definition.
Definition: Color4.h:20
Represents rotation orders of a model.
Definition: RotationOrder.h:23
Base property model class.
Definition: BaseProperty.h:16
Prototype definition.
Definition: Prototype.h:49
Scene entity definition.
Definition: SceneEntity.h:24
Scene prototype library definition.
Definition: SceneLibrary.h:27
Prototype * getPrototype(int id)
Get a prototype by given id.
void setConstantAttenuation(float constantAttenuation)
Set up constant attenuation.
Definition: SceneLight.h:182
Scene definition.
Definition: Scene.h:41
SceneLibrary * getLibrary()
Definition: Scene.h:168
SceneLight * getLightAt(int i)
Get light at given index.
Definition: Scene.h:140
const string & getFileName()
Definition: Scene.h:101
void setSkyModelScale(const Vector3 &skyModelScale)
Set sky model scale.
Definition: Scene.h:328
void setSkyModel(Model *model)
Set sky model.
Definition: Scene.cpp:268
SceneEntity * getEntity(const string &id)
Returns scene entity by id.
Definition: Scene.cpp:259
GUI parser.
Definition: GUIParser.h:39
GUI element node conditions.
GUI node controller base class.
virtual const MutableString & getValue()=0
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.
Standard math functions.
Definition: Math.h:21
3D vector 3 class
Definition: Vector3.h:22
float getY() const
Definition: Vector3.h:119
float getX() const
Definition: Vector3.h:103
float getZ() const
Definition: Vector3.h:136
Vector3 & normalize()
Normalize the vector.
Definition: Vector3.h:288
3D vector 4 class
Definition: Vector4.h:19
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 setOutlinerSelection(const string &newSelectionValue)
Set outliner selection.
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.
void setGizmoType(GizmoType gizmoType)
Set GIZMO type.
Definition: Gizmo.h:112
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 updateInfoText(const MutableString &text)
Update info text line.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY) override
On mouse over.
void updateEntityDetails(const Transformations &transformations)
Update entity details.
void onValueChanged(GUIElementNode *node) override
On value changed.
void selectEntities(const vector< string > &selectedOutlinerEntityIds)
Select exactly given entities.
void updateDetails(const string &outlinerNode)
Update details panel.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
void setEntityDetailsMultiple(const Vector3 &pivot, const string &selectedReflectionEnvironmentMappingId)
Set entity details for multiple entity selection.
const string getPrototypeIcon(Prototype_Type *prototypeType)
Get prototype icon.
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
void updateReflectionEnvironmentMappingDetailsDropDown(const string &selectedReflectionEnvironmentMappingId)
Update reflection details drop down.
void setEntityDetails(const string &entityId)
Set entity details.
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 applyTranslation(const Vector3 &translation)
Apply translation.
bool applyBase(const string &name, const string &description)
Apply base information.
void setSnapping(bool snappingEnabled, float snappingX, float snappingZ)
Set snapping.
void selectEntities(const vector< string > &entityIds)
Select entities.
void applyScale(const Vector3 &scale)
Apply scale.
void setPlaceEntityMode(Prototype *prototype)
Initialize place entity mode.
void applyReflectionEnvironmentMappingId(const string &reflectionEnvironmentMappingId)
Apply reflection environment mapping id.
void applyRotation(const Vector3 &rotation)
Apply rotation.
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
bool equals(const string &s2) const
Equals.
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