TDME2 1.9.121
SceneEditorTabView.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <unordered_set>
5
6#include <tdme/tdme.h>
14#include <tdme/engine/Camera.h>
15#include <tdme/engine/Engine.h>
17#include <tdme/engine/Light.h>
20#include <tdme/engine/Timing.h>
24#include <tdme/gui/GUI.h>
39
40using std::string;
41using std::to_string;
42using std::unordered_set;
43
45
63using tdme::gui::GUI;
77
78SceneEditorTabView::SceneEditorTabView(EditorView* editorView, const string& tabId, Scene* scene): Gizmo(nullptr, "le")
79{
80 this->editorView = editorView;
81 this->tabId = tabId;
82 this->popUps = editorView->getPopUps();
83 engine = Engine::createOffScreenInstance(512, 512, true, true, true);
84 engine->setSceneColor(Color4(125.0f / 255.0f, 125.0f / 255.0f, 125.0f / 255.0f, 1.0f));
85 this->scene = scene;
87 this->keyControl = false;
88 this->keyShift = false;
89 this->keyEscape = false;
90 this->placeEntityYRotation = 0;
95 this->mouseDragging = false;
96 this->pasteMode = false;
97 this->pasteModeValid = false;
98 this->placeEntityMode = false;
99 this->placeEntityValid = false;
100 this->snappingX = 0.0f;
101 this->snappingZ = 0.0f;
102 this->snappingEnabled = false;
103 this->gridEnabled = false;
104 this->gridY = 0.0f;
105 this->gridModel = Tools::createGridModel();
106
107 //
109
110 //
111 entityColors["red"] = EntityColor(1.5f, 0.8f, 0.8f, 0.5f, 0.0f, 0.0f);
112 entityColors["green"] = EntityColor(0.8f, 1.5f, 0.8f, 0.0f, 0.5f, 0.0f);
113 entityColors["blue"] = EntityColor(0.8f, 0.8f, 1.5f, 0.0f, 0.0f, 0.5f);
114 entityColors["yellow"] = EntityColor(1.5f, 1.5f, 0.8f, 0.5f, 0.5f, 0.0f);
115 entityColors["magenta"] = EntityColor(1.5f, 0.8f, 1.5f, 0.5f, 0.0f, 0.5f);
116 entityColors["cyan"] = EntityColor(0.8f, 1.5f, 1.5f, 0.0f, 0.5f, 0.5f);
117 entityColors["none"] = EntityColor(1.0f, 1.0f, 1.0f, 0.0f, 0.0f, 0.0f);
118
119 //
120 {
121 // entity picking filter for no grid
122 class PrototypePickingFilterNoGrid: public virtual EntityPickingFilter
123 {
124 public:
125 bool filterEntity(Entity* entity) override {
126 return entity->getId() != "tdme.sceneeditor.grid";
127 }
128
129 /**
130 * Public constructor
131 * @param SceneEditorTabView scene editor tab view
132 */
133 PrototypePickingFilterNoGrid(SceneEditorTabView* sceneEditorTabView): sceneEditorTabView(sceneEditorTabView) {
134 }
135
136 private:
137 SceneEditorTabView* sceneEditorTabView;
138 };
139 entityPickingFilterNoGrid = new PrototypePickingFilterNoGrid(this);
140 }
141
142 //
143 {
144 // entity picking filter for no placing object
145 class PrototypePickingFilterPlacing: public virtual EntityPickingFilter
146 {
147 public:
148 bool filterEntity(Entity* entity) override {
149 return
150 entity->getId() != "tdme.sceneeditor.placeentity" &&
151 StringTools::startsWith(entity->getId(), "tdme.sceneeditor.paste.") == false &&
152 StringTools::startsWith(entity->getId(), "le.tdme.gizmo.") == false;
153 }
154
155 /**
156 * Public constructor
157 * @param sceneEditorTabView scene editor tab view
158 */
159 PrototypePickingFilterPlacing(SceneEditorTabView* sceneEditorTabView): sceneEditorTabView(sceneEditorTabView) {
160 }
161
162 private:
163 SceneEditorTabView* sceneEditorTabView;
164 };
165 entityPickingFilterPlacing = new PrototypePickingFilterPlacing(this);
166 }
167
168 //
170}
171
173 delete gridModel;
175 delete engine;
176}
177
179{
180 auto keyControlX = false;
181 auto keyControlC = false;
182 auto keyControlV = false;
183 auto keyDelete = false;
184 for (auto i = 0; i < engine->getGUI()->getKeyboardEvents().size(); i++) {
185 auto& event = engine->getGUI()->getKeyboardEvents()[i];
186 if (event.isProcessed() == true) continue;
187 if (event.getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_TYPED) continue;
188 auto isKeyDown = event.getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED;
189 if (event.getKeyCode() == KEYBOARD_KEYCODE_LEFT_SHIFT) {
190 keyShift = isKeyDown;
191 event.setProcessed(true);
192 }
193 if (event.getKeyCode() == KEYBOARD_KEYCODE_LEFT_CTRL) {
194 keyControl = isKeyDown;
195 event.setProcessed(true);
196 }
197 if (event.getKeyCode() == GUIKeyboardEvent::KEYCODE_ESCAPE) {
198 keyEscape = isKeyDown;
199 event.setProcessed(true);
200 }
201 if (event.getKeyCode() == GUIKeyboardEvent::KEYCODE_BACKSPACE ||
202 event.getKeyCode() == GUIKeyboardEvent::KEYCODE_DELETE) {
203 keyDelete = isKeyDown;
204 event.setProcessed(true);
205 }
206 if (Character::toLowerCase(event.getKeyChar()) == 24) {
207 keyControlX = isKeyDown;
208 event.setProcessed(true);
209 }
210 if (Character::toLowerCase(event.getKeyChar()) == 3) {
211 keyControlC = isKeyDown;
212 event.setProcessed(true);
213 }
214 if (Character::toLowerCase(event.getKeyChar()) == 22) {
215 keyControlV = isKeyDown;
216 event.setProcessed(true);
217 }
218 if (Character::toLowerCase(event.getKeyChar()) == 'x' && keyControl == true) {
219 keyControlX = isKeyDown;
220 event.setProcessed(true);
221 }
222 if (Character::toLowerCase(event.getKeyChar()) == 'c' && keyControl == true) {
223 keyControlC = isKeyDown;
224 event.setProcessed(true);
225 }
226 if (Character::toLowerCase(event.getKeyChar()) == 'v' && keyControl == true) {
227 keyControlV = isKeyDown;
228 event.setProcessed(true);
229 }
230 if (Character::toLowerCase(event.getKeyChar()) == '.' && !isKeyDown == false) {
232 event.setProcessed(true);
233 }
234 if (Character::toLowerCase(event.getKeyChar()) == ',' && !isKeyDown == false) {
236 event.setProcessed(true);
237 }
238 if (Character::toLowerCase(event.getKeyChar()) == '1' && isKeyDown == true) {
240 updateGizmo();
241 event.setProcessed(true);
242 }
243 if (Character::toLowerCase(event.getKeyChar()) == '2' && isKeyDown == true) {
245 event.setProcessed(true);
246 updateGizmo();
247 }
248 if (Character::toLowerCase(event.getKeyChar()) == '3' && isKeyDown == true) {
250 event.setProcessed(true);
251 updateGizmo();
252 }
253 if (Character::toLowerCase(event.getKeyChar()) == '4' && isKeyDown == true) {
255 event.setProcessed(true);
256 updateGizmo();
257 }
258 }
259 for (auto i = 0; i < engine->getGUI()->getMouseEvents().size(); i++) {
260 auto& event = engine->getGUI()->getMouseEvents()[i];
261
262 if ((event.getType() == GUIMouseEvent::MOUSEEVENT_MOVED ||
263 event.getType() == GUIMouseEvent::MOUSEEVENT_DRAGGED) &&
264 event.getXUnscaled() >= 0 &&
265 event.getYUnscaled() >= 0) {
266 placeEntityMouseX = event.getXUnscaled();
267 placeEntityMouseY = event.getYUnscaled();
268 }
269
270 if (event.isProcessed() == true) continue;
271
272 if (event.getButton() == MOUSE_BUTTON_LEFT) {
273 if (event.getType() == GUIMouseEvent::MOUSEEVENT_DRAGGED) {
274 if (mouseDragging == false) {
275 mouseDragging = true;
276 mouseDownLastX = event.getXUnscaled();
277 mouseDownLastY = event.getYUnscaled();
278 mouseDraggingLastEntity = nullptr;
279 event.setProcessed(true);
280 }
281 } else {
282 if (mouseDragging == true) {
285 mouseDragging = false;
286 mouseDraggingLastEntity = nullptr;
287 event.setProcessed(true);
288 }
289 }
290 }
291 if (event.getButton() == MOUSE_BUTTON_LEFT) {
292 if (event.getType() == GUIMouseEvent::MOUSEEVENT_RELEASED) {
293 if (pasteMode == true && pasteModeValid == true) {
294 pasteEntities(false);
295 if (keyShift == false) unsetPasteMode();
296 } else
297 if (placeEntityMode == true && placeEntityValid == true) {
298 placeEntity();
299 if (keyShift == false) unsetPlaceEntityMode(false);
300 } else {
302 }
303 event.setProcessed(true);
304 } else
305 if (placeEntityMode == false) {
306 Node* selectedEntityNode = nullptr;
307 Entity* selectedEntity = nullptr;
308 if (getGizmoMode() == GIZMOMODE_NONE) selectedEntity = engine->getEntityByMousePosition(event.getXUnscaled(), event.getYUnscaled(), entityPickingFilterNoGrid, &selectedEntityNode);
309 if (mouseDragging == true) {
310 Vector3 deltaTranslation;
311 Vector3 deltaRotation;
312 Vector3 absoluteScale;
313 if (determineGizmoDeltaTransformations(mouseDownLastX, mouseDownLastY, event.getXUnscaled(), event.getYUnscaled(), deltaTranslation, deltaRotation, absoluteScale) == true) {
314 auto gizmoEntity = getGizmoObject3D();
315 if (gizmoEntity != nullptr) {
316 Transformations rotations;
320 rotations.update();
321 for (auto selectedEntityId: selectedEntityIds) {
322 auto _selectedEntity = engine->getEntity(selectedEntityId);
323 if (_selectedEntity != nullptr && StringTools::startsWith(_selectedEntity->getId(), "tdme.sceneeditor.") == false) {
324 auto sceneEntity = scene->getEntity(_selectedEntity->getId());
325 if (sceneEntity == nullptr) continue;
326 auto translation = sceneEntity->getTransformations().getTranslation();
327 translation = gizmoEntity->getTranslation().clone().add(rotations.getRotationsQuaternion().multiply(translation.clone().sub(gizmoEntity->getTranslation())));
328 sceneEntity->getTransformations().setTranslation(translation.clone().add(deltaTranslation));
329 auto scale = sceneEntity->getTransformations().getScale().clone().scale(absoluteScale);
330 if (Math::abs(scale.getX()) < 0.01f) scale.setX(Math::sign(scale.getX()) * 0.01f);
331 if (Math::abs(scale.getY()) < 0.01f) scale.setY(Math::sign(scale.getY()) * 0.01f);
332 if (Math::abs(scale.getZ()) < 0.01f) scale.setZ(Math::sign(scale.getZ()) * 0.01f);
333 if (Math::abs(scale.getX()) > 100.0f) scale.setX(Math::sign(scale.getX()) * 100.0f);
334 if (Math::abs(scale.getY()) > 100.0f) scale.setY(Math::sign(scale.getY()) * 100.0f);
335 if (Math::abs(scale.getZ()) > 100.0f) scale.setZ(Math::sign(scale.getZ()) * 100.0f);
336 sceneEntity->getTransformations().setScale(scale);
337 if ((sceneEntity->getPrototype()->getType()->getGizmoTypeMask() & Gizmo::GIZMOTYPE_ROTATE) == Gizmo::GIZMOTYPE_ROTATE) {
338 sceneEntity->getTransformations().setRotationAngle(scene->getRotationOrder()->getAxisXIndex(), sceneEntity->getTransformations().getRotationAngle(scene->getRotationOrder()->getAxisXIndex()) + deltaRotation[0]);
339 sceneEntity->getTransformations().setRotationAngle(scene->getRotationOrder()->getAxisYIndex(), sceneEntity->getTransformations().getRotationAngle(scene->getRotationOrder()->getAxisYIndex()) + deltaRotation[1]);
340 sceneEntity->getTransformations().setRotationAngle(scene->getRotationOrder()->getAxisZIndex(), sceneEntity->getTransformations().getRotationAngle(scene->getRotationOrder()->getAxisZIndex()) + deltaRotation[2]);
341 }
342 sceneEntity->getTransformations().update();
343 _selectedEntity->fromTransformations(sceneEntity->getTransformations());
344 }
345 }
346 if (selectedEntityIds.size() == 1) {
347 auto _selectedEntity = engine->getEntity(selectedEntityIds[0]);
348 if (_selectedEntity != nullptr) {
349 sceneEditorTabController->updateEntityDetails(_selectedEntity->getTransformations());
350 setGizmoRotation(_selectedEntity->getTransformations());
351 }
352 } else {
353 multipleSelectionTranslation+= deltaTranslation;
354 multipleSelectionRotation+= deltaRotation;
355 multipleSelectionScale = absoluteScale;
357 }
358 }
359 if (Math::abs(deltaTranslation.getX()) > Math::EPSILON ||
360 Math::abs(deltaTranslation.getY()) > Math::EPSILON ||
361 Math::abs(deltaTranslation.getZ()) > Math::EPSILON) {
362 updateGizmo();
363 }
364 }
365 } else
366 if (determineGizmoMode(selectedEntity, selectedEntityNode) == true) {
367 // no op
368 } else {
369 if (selectedEntity != nullptr && scene->getEntity(selectedEntity->getId()) == nullptr) selectedEntity = nullptr;
370 if (keyControl == false) {
371 vector<Entity*> entitiesToRemove;
372 for (auto selectedEntityId: selectedEntityIds) {
373 auto selectedEntity = engine->getEntity(selectedEntityId);
374 if (mouseDragging == true && mouseDraggingLastEntity == selectedEntity) {
375 // no op
376 } else {
377 if (selectedEntity != nullptr) entitiesToRemove.push_back(selectedEntity);
378 }
379 }
380 for (auto entityToRemove: entitiesToRemove) {
381 selectedEntityIds.erase(remove(selectedEntityIds.begin(), selectedEntityIds.end(), entityToRemove->getId()), selectedEntityIds.end());
382 auto selectedEntitiyIdByIdIt = selectedEntityIdsById.find(entityToRemove->getId());
383 if (selectedEntitiyIdByIdIt != selectedEntityIdsById.end()) {
384 selectedEntityIdsById.erase(selectedEntitiyIdByIdIt);
385 }
386 sceneEditorTabController->unselectEntity(entityToRemove->getId());
387 resetEntity(entityToRemove);
388 }
389 }
390 if (selectedEntity != nullptr) {
391 if (selectedEntityIdsById.find(selectedEntity->getId()) == selectedEntityIdsById.end()) {
392 setStandardEntityColorEffect(selectedEntity);
393 setHighlightEntityColorEffect(selectedEntity);
394 selectedEntityIds.push_back(selectedEntity->getId());
395 selectedEntityIdsById.insert(selectedEntity->getId());
396 sceneEditorTabController->selectEntity(selectedEntity->getId());
397 } else {
398 resetEntity(selectedEntity);
399 selectedEntityIds.erase(remove(selectedEntityIds.begin(), selectedEntityIds.end(), selectedEntity->getId()), selectedEntityIds.end());
400 auto selectedEntityIdsByIdIt = selectedEntityIdsById.find(selectedEntity->getId());
401 if (selectedEntityIdsByIdIt != selectedEntityIdsById.end()) {
402 selectedEntityIdsById.erase(selectedEntityIdsByIdIt);
403 }
405 }
406 if (selectedEntityIds.size() == 1) {
407 auto sceneEntity = scene->getEntity(selectedEntity->getId());
408 if (sceneEntity != nullptr && sceneEntity->getPrototype()->getType()->hasNonEditScaleDownMode() == true) {
409 selectedEntity->fromTransformations(sceneEntity->getTransformations());
410 }
411 setGizmoRotation(selectedEntity->getTransformations());
413 } else
414 if (selectedEntityIds.size() > 1) {
417 multipleSelectionRotation.set(0.0f, 0.0f, 0.0f);
418 multipleSelectionScale.set(1.0f, 1.0f, 1.0f);
420 }
421 }
422 mouseDraggingLastEntity = selectedEntity;
423 updateGizmo();
424 }
425 event.setProcessed(true);
426 }
427 }
428 if (event.getButton() != MOUSE_BUTTON_NONE) {
429 mouseDownLastX = event.getXUnscaled();
430 mouseDownLastY = event.getYUnscaled();
431 }
432 }
433 if (keyDelete == true) {
434 Console::println("SceneEditorTabView::handleInputEvents(): Backspace");
435 removeGizmo();
437 }
438 if (keyControlX == true) {
439 Console::println("SceneEditorTabView::handleInputEvents(): CTRL-X");
440 removeGizmo();
441 copyEntities();
443 }
444 if (keyControlC == true) {
445 Console::println("SceneEditorTabView::handleInputEvents(): CTRL-C");
446 copyEntities();
447 }
448 if (keyControlV == true) {
449 Console::println("SceneEditorTabView::handleInputEvents(): CTRL-V");
450 removeGizmo();
451 setPasteMode();
452 }
453
454 //
456}
457
459{
460 if (needGizmoUpdate == true) {
461 updateGizmo();
462 needGizmoUpdate = false;
463 }
464
466
467 if ((placeEntityMode == true || pasteMode == true) && keyEscape == true) {
470 keyEscape = false;
471 }
472
473 {
474 auto selectedEngineEntity = engine->getEntity("tdme.sceneeditor.placeentity");
475 Vector3 worldCoordinate;
476 placeEntityValid = false;
477 pasteModeValid = false;
479 if (placeEntityMode == true) {
480 Transformations transformations;
481 transformations.setTranslation(worldCoordinate);
482 transformations.addRotation(scene->getRotationOrder()->getAxis0(), 0.0f);
483 transformations.addRotation(scene->getRotationOrder()->getAxis1(), 0.0f);
484 transformations.addRotation(scene->getRotationOrder()->getAxis2(), 0.0f);
485 transformations.update();
486 if (selectedEngineEntity == nullptr && selectedPrototype != nullptr) {
487 selectedEngineEntity = SceneConnector::createEntity(selectedPrototype, "tdme.sceneeditor.placeentity", transformations);
488 if (selectedEngineEntity != nullptr) engine->addEntity(selectedEngineEntity);
489 }
490 if (selectedEngineEntity != nullptr) {
491 if (snappingEnabled == true && (snappingX > Math::EPSILON || snappingZ > Math::EPSILON)) {
492 if (snappingX > Math::EPSILON) worldCoordinate.setX(static_cast<int>(worldCoordinate.getX() / snappingX) * snappingX);
493 if (snappingZ > Math::EPSILON) worldCoordinate.setZ(static_cast<int>(worldCoordinate.getZ() / snappingZ) * snappingZ);
494 Vector3 snappedWorldCoordinate;
495 if (engine->doRayCasting(worldCoordinate.clone().setY(10000.0f), worldCoordinate.clone().setY(-10000.0f), snappedWorldCoordinate, entityPickingFilterPlacing) != nullptr) {
496 worldCoordinate = snappedWorldCoordinate;
497 }
498 }
499 transformations.setTranslation(worldCoordinate);
500 transformations.setRotationAngle(scene->getRotationOrder()->getAxisYIndex(), static_cast<float>(placeEntityYRotation) * 90.0f);
501 transformations.update();
502 selectedEngineEntity->fromTransformations(transformations);
503 placeEntityTranslation = transformations.getTranslation();
504 placeEntityValid = true;
505 }
506 } else
507 if (pasteMode == true) {
508 if (snappingEnabled == true && (snappingX > Math::EPSILON || snappingZ > Math::EPSILON)) {
509 if (snappingX > Math::EPSILON) worldCoordinate.setX(static_cast<int>(worldCoordinate.getX() / snappingX) * snappingX);
510 if (snappingZ > Math::EPSILON) worldCoordinate.setZ(static_cast<int>(worldCoordinate.getZ() / snappingZ) * snappingZ);
511 Vector3 snappedWorldCoordinate;
512 if (engine->doRayCasting(worldCoordinate.clone().setY(10000.0f), worldCoordinate.clone().setY(-10000.0f), snappedWorldCoordinate, entityPickingFilterPlacing) != nullptr) {
513 worldCoordinate = snappedWorldCoordinate;
514 }
515 }
516 placeEntityTranslation = worldCoordinate;
517 pasteModeValid = true;
518 pasteEntities(true);
519 }
520 }
521 }
522
523 //
524 updateGrid();
525
526 //
528
529 //
530 engine->display();
531}
532
534{
535 try {
538 } catch (Exception& exception) {
539 Console::print(string("SceneEditorTabView::initialize(): An error occurred: "));
540 Console::println(string(exception.what()));
541 }
542 //
543 for (auto i = 1; i < engine->getLightCount(); i++) engine->getLightAt(i)->setEnabled(false);
544 auto light0 = engine->getLightAt(0);
545 light0->setAmbient(Color4(0.7f, 0.7f, 0.7f, 1.0f));
546 light0->setDiffuse(Color4(0.3f, 0.3f, 0.3f, 1.0f));
547 light0->setSpecular(Color4(1.0f, 1.0f, 1.0f, 1.0f));
548 light0->setPosition(Vector4(0.0f, 20000.0f, 0.0f, 0.0f));
549 light0->setSpotDirection(Vector3(0.0f, 0.0f, 0.0f).sub(Vector3(light0->getPosition().getX(), light0->getPosition().getY(), light0->getPosition().getZ())).normalize());
550 light0->setConstantAttenuation(0.5f);
551 light0->setLinearAttenuation(0.0f);
552 light0->setQuadraticAttenuation(0.0f);
553 light0->setSpotExponent(0.0f);
554 light0->setSpotCutOff(180.0f);
555 light0->setEnabled(true);
556 auto cam = engine->getCamera();
557 SceneConnector::setLights(engine, scene, Vector3());
558 SceneConnector::addScene(engine, scene, true, true, true, true);
559 updateSky();
561 updateGrid();
562 // TODO: load settings
563}
564
566{
567 engine->dispose();
568}
569
571}
572
574 return engine;
575}
576
582}
583
586}
587
589 SceneConnector::resetEngine(engine, scene);
590 keyControl = false;
591 keyShift = false;
592 keyEscape = false;
593
594 placeEntityMode = false;
595 placeEntityValid = false;
596 mouseDragging = false;
597 mouseDraggingLastEntity = nullptr;
598
599 pasteMode = false;
600 pasteModeValid = false;
601
602 selectedPrototype = nullptr;
603 selectedEntityIds.clear();
604 selectedEntityIdsById.clear();
605 copiedEntities.clear();
606}
607
609 clearScene();
610 SceneConnector::addScene(engine, scene, true, true, true, true);
611}
612
616}
617
618void SceneEditorTabView::reloadOutliner(const string& outlinerNode) {
622}
623
625 needGizmoUpdate = true;
626}
627
629 needGizmoUpdate = true;
630}
631
633 needGizmoUpdate = true;
634}
635
637 engine->removeEntity("tdme.sky");
638}
639
641 engine->removeEntity("tdme.sky");
642 if (scene->getSkyModel() == nullptr) return;
643 auto sky = new Object3D("tdme.sky", scene->getSkyModel());
644 sky->setRenderPass(Entity::RENDERPASS_NOFRUSTUMCULLING);
645 sky->setShader("sky");
646 sky->setFrustumCulling(false);
647 sky->setTranslation(Vector3(0.0f, 0.0f, 0.0f));
648 sky->setScale(scene->getSkyModelScale());
649 sky->update();
650 sky->setContributesShadows(false);
651 sky->setReceivesShadows(false);
652 sky->setExcludeEffectPass(Engine::EFFECTPASS_LIGHTSCATTERING);
653 engine->addEntity(sky);
654}
655
657 auto sky = engine->getEntity("tdme.sky");
658 if (sky == nullptr) return;
660 sky->update();
661}
662
664 SceneConnector::setLights(engine, scene, Vector3());
665}
666
668{
669 auto& red = entityColors["red"];
670 entity->setEffectColorAdd(Color4(red.colorAddR, red.colorAddG, red.colorAddB, 0.0f));
671 entity->setEffectColorMul(Color4(red.colorMulR, red.colorMulG, red.colorMulB, 1.0f));
672}
673
675{
676 auto& color = entityColors["none"];
677 entity->setEffectColorAdd(Color4(color.colorAddR, color.colorAddG, color.colorAddB, 0.0f));
678 entity->setEffectColorMul(Color4(color.colorMulR, color.colorMulG, color.colorMulB, 1.0f));
679 auto sceneEntity = scene->getEntity(entity->getId());
680 if (sceneEntity == nullptr) return;
681 auto colorProperty = sceneEntity->getProperty("object.color");
682 if (colorProperty == nullptr) colorProperty = sceneEntity->getPrototype()->getProperty("object.color");
683 if (colorProperty != nullptr) {
684 auto entityColorIt = entityColors.find(colorProperty->getValue());
685 if (entityColorIt != entityColors.end()) {
686 auto& entityColor = entityColorIt->second;
687 entity->setEffectColorAdd(Color4(entity->getEffectColorAdd().getRed() + entityColor.colorAddR, entity->getEffectColorAdd().getGreen() + entityColor.colorAddG, entity->getEffectColorAdd().getBlue() + entityColor.colorAddB, 0.0f));
688 entity->setEffectColorMul(Color4(entity->getEffectColorMul().getRed() * entityColor.colorMulR, entity->getEffectColorMul().getGreen() * entityColor.colorMulG, entity->getEffectColorMul().getBlue() * entityColor.colorMulB, 1.0f));
689 }
690 }
691}
692
694 if (entity == nullptr) return;
696 auto sceneEntity = scene->getEntity(entity->getId());
697 if (sceneEntity == nullptr) return;
698 if (sceneEntity->getPrototype()->getType()->hasNonEditScaleDownMode() == false) return;
699 entity->fromTransformations(sceneEntity->getTransformations());
700 entity->setScale(
701 sceneEntity->getPrototype()->getType()->getNonEditScaleDownModeDimension().
702 clone().
703 scale(
704 Vector3(
705 1.0f / (sceneEntity->getTransformations().getScale().getX() * entity->getBoundingBox()->getDimensions().getX()),
706 1.0f / (sceneEntity->getTransformations().getScale().getY() * entity->getBoundingBox()->getDimensions().getY()),
707 1.0f / (sceneEntity->getTransformations().getScale().getZ() * entity->getBoundingBox()->getDimensions().getZ())
708 )
709 )
710 );
711 entity->update();
712}
713
714void SceneEditorTabView::selectEntities(const vector<string>& entityIds)
715{
716 removeGizmo();
717 for (auto entityIdToRemove: selectedEntityIds) {
718 auto entityToRemove = engine->getEntity(entityIdToRemove);
719 if (entityToRemove != nullptr) setStandardEntityColorEffect(entityToRemove);
720 }
721 selectedEntityIds.clear();
722 selectedEntityIdsById.clear();
723 for (auto entityId: entityIds) {
724 Console::println(entityId);
725 auto selectedEntity = engine->getEntity(entityId);
726 if (selectedEntity == nullptr) continue;
727 setStandardEntityColorEffect(selectedEntity);
728 setHighlightEntityColorEffect(selectedEntity);
729 selectedEntityIds.push_back(entityId);
730 selectedEntityIdsById.insert(entityId);
731 }
732
733 if (entityIds.size() == 1) {
734 auto selectedEntity = engine->getEntity(entityIds[0]);
735 if (selectedEntity != nullptr) {
736 setGizmoRotation(selectedEntity->getTransformations());
737 sceneEditorTabController->setEntityDetails(selectedEntity->getId());
738 }
739 } else
740 if (entityIds.size() > 1) {
744 }
745 updateGizmo();
746}
747
749{
750 removeGizmo();
751 for (auto entityIdToRemove: selectedEntityIds) {
752 auto entityToRemove = engine->getEntity(entityIdToRemove);
753 if (entityToRemove == nullptr) continue;
754 resetEntity(entityToRemove);
755 }
756 selectedEntityIds.clear();
757 selectedEntityIdsById.clear();
758}
759
761{
762 copiedEntities.clear();
763 for (auto selectedEntityId: selectedEntityIds) {
764 auto selectedEntity = engine->getEntity(selectedEntityId);
765 if (selectedEntity != nullptr && StringTools::startsWith(selectedEntity->getId(), "tdme.sceneeditor.") == false) {
766 auto sceneEntity = scene->getEntity(selectedEntity->getId());
767 if (sceneEntity == nullptr) continue;
768 copiedEntities.push_back(sceneEntity);
769 }
770 }
771}
772
775 selectedPrototype = prototype;
776 placeEntityMode = true;
777 placeEntityValid = false;
778}
779
781 placeEntityMode = false;
782 placeEntityValid = false;
783 selectedPrototype = nullptr;
784 engine->removeEntity("tdme.sceneeditor.placeentity");
785 //
786 if (cancelled == false || selectedEntityIds.empty() == false) {
787 class ReloadOutlinerWithNewSelectionAction: public Action {
788 public:
789 void performAction() override {
790 sceneEditorTabView->reloadOutliner();
791 // select selected entities
792 sceneEditorTabView->sceneEditorTabController->unselectEntities();
793 for (auto& entityId: entitiesToSelect) {
794 sceneEditorTabView->sceneEditorTabController->selectEntity(entityId);
795 }
796 sceneEditorTabView->selectEntities(entitiesToSelect);
797 }
798 ReloadOutlinerWithNewSelectionAction(SceneEditorTabView* sceneEditorTabView, const vector<string>& entitiesToSelect): sceneEditorTabView(sceneEditorTabView), entitiesToSelect(entitiesToSelect) {
799
800 }
801 private:
802 SceneEditorTabView* sceneEditorTabView;
803 vector<string> entitiesToSelect;
804 };
805 Engine::getInstance()->enqueueAction(new ReloadOutlinerWithNewSelectionAction(this, selectedEntityIds));
806 }
807}
808
810{
811 if (selectedPrototype == nullptr) return;
812
813 Transformations sceneEntityTransformations;
814 sceneEntityTransformations.setTranslation(placeEntityTranslation);
815 sceneEntityTransformations.setScale(Vector3(1.0f, 1.0f, 1.0f));
816 sceneEntityTransformations.setPivot(selectedPrototype->getPivot());
817 sceneEntityTransformations.addRotation(scene->getRotationOrder()->getAxis0(), 0.0f);
818 sceneEntityTransformations.addRotation(scene->getRotationOrder()->getAxis1(), 0.0f);
819 sceneEntityTransformations.addRotation(scene->getRotationOrder()->getAxis2(), 0.0f);
820 sceneEntityTransformations.setRotationAngle(scene->getRotationOrder()->getAxisYIndex(), placeEntityYRotation * 90.0f);
821 sceneEntityTransformations.update();
822 for (auto i = 0; i < scene->getEntityCount(); i++) {
823 auto sceneEntity = scene->getEntityAt(i);
824 if (sceneEntity->getPrototype() == selectedPrototype && sceneEntity->getTransformations().getTranslation().equals(sceneEntityTransformations.getTranslation())) {
825 return;
826 }
827 }
828 auto sceneEntity = new SceneEntity(
829 selectedPrototype->getName() + "_" + to_string(scene->allocateEntityId()),
830 "",
831 sceneEntityTransformations,
833 );
834 scene->addEntity(sceneEntity);
835 selectedEntityIds.push_back(sceneEntity->getId());
836 auto entity = SceneConnector::createEntity(sceneEntity);
837 if (entity != nullptr) {
838 resetEntity(entity);
839 entity->setPickable(true);
840 engine->addEntity(entity);
841 }
842 scene->update();
844}
845
847{
848 removeGizmo();
849 vector<Entity*> entitiesToRemove;
850 for (auto selectedEntityId: selectedEntityIds) {
851 Entity* selectedEntity = engine->getEntity(selectedEntityId);
852 if (selectedEntity != nullptr && StringTools::startsWith(selectedEntity->getId(), "tdme.sceneeditor.") == false) {
853 scene->removeEntity(selectedEntity->getId());
854 engine->removeEntity(selectedEntity->getId());
855 entitiesToRemove.push_back(selectedEntity);
856 }
857 }
858 for (auto entityToRemove: entitiesToRemove) {
859 selectedEntityIds.erase(remove(selectedEntityIds.begin(), selectedEntityIds.end(), entityToRemove->getId()), selectedEntityIds.end());
860 auto selectedEntityIdsByIdIt = selectedEntityIdsById.find(entityToRemove->getId());
861 if (selectedEntityIdsByIdIt != selectedEntityIdsById.end()) {
862 selectedEntityIdsById.erase(selectedEntityIdsByIdIt);
863 }
864 }
865 scene->update();
867
868 //
869 class ReloadOutlinerAction: public Action {
870 public:
871 void performAction() override {
872 sceneEditorTabView->reloadOutliner(outlinerNode);
873 }
874 ReloadOutlinerAction(SceneEditorTabView* sceneEditorTabView, const string& outlinerNode): sceneEditorTabView(sceneEditorTabView), outlinerNode(outlinerNode) {
875
876 }
877 private:
878 SceneEditorTabView* sceneEditorTabView;
879 string outlinerNode;
880 };
881 Engine::getInstance()->enqueueAction(new ReloadOutlinerAction(this, "scene.entities"));
882}
883
887 pasteMode = true;
888 pasteModeValid = false;
889}
890
892 auto pasteEntityIdx = 0;
893 for (auto pasteEntity: copiedEntities) {
894 auto pastePrototype = pasteEntity->getPrototype();
895 auto entityId = "tdme.sceneeditor.paste." + pastePrototype->getName() + "." + to_string(pasteEntityIdx);
896 engine->removeEntity(entityId);
897 pasteEntityIdx++;
898 }
899 pasteMode = false;
900 pasteModeValid = false;
901}
902
904{
905 auto pasteEntitiesMinX = Float::MAX_VALUE;
906 auto pasteEntitiesMinZ = Float::MAX_VALUE;
907 auto pasteEntitiesMinY = Float::MAX_VALUE;
908 auto pasteEntitiesMaxX = Float::MIN_VALUE;
909 auto pasteEntitiesMaxZ = Float::MIN_VALUE;
910 auto pasteEntitiesMaxY = Float::MIN_VALUE;
911 for (auto copiedEntity: copiedEntities) {
912 auto entity = engine->getEntity(copiedEntity->getId());
913 if (entity == nullptr) continue;
914 BoundingBox cbv;
915 cbv.fromBoundingVolumeWithTransformations(entity->getBoundingBox(), copiedEntity->getTransformations());
916 auto& entityBBMinXYZ = cbv.getMin().getArray();
917 if (entityBBMinXYZ[0] < pasteEntitiesMinX) pasteEntitiesMinX = entityBBMinXYZ[0];
918 if (entityBBMinXYZ[1] < pasteEntitiesMinY) pasteEntitiesMinY = entityBBMinXYZ[1];
919 if (entityBBMinXYZ[2] < pasteEntitiesMinZ) pasteEntitiesMinZ = entityBBMinXYZ[2];
920 auto& entityBBMaxXYZ = cbv.getMax().getArray();
921 if (entityBBMaxXYZ[0] > pasteEntitiesMaxX) pasteEntitiesMaxX = entityBBMaxXYZ[0];
922 if (entityBBMaxXYZ[1] > pasteEntitiesMaxY) pasteEntitiesMaxY = entityBBMaxXYZ[1];
923 if (entityBBMaxXYZ[2] > pasteEntitiesMaxZ) pasteEntitiesMaxZ = entityBBMaxXYZ[2];
924 }
925 auto centerX = (pasteEntitiesMaxX - pasteEntitiesMinX) / 2.0f;
926 auto centerZ = (pasteEntitiesMaxZ - pasteEntitiesMinZ) / 2.0f;
927 auto pasteEntitiesIdx = 0;
928 vector<string> entitiesToSelect;
929 for (auto copiedEntity: copiedEntities) {
930 auto pastePrototype = copiedEntity->getPrototype();
931 Transformations sceneEntityTransformations;
932 sceneEntityTransformations.fromTransformations(copiedEntity->getTransformations());
933 auto entityDiffX = copiedEntity->getTransformations().getTranslation().getX() - pasteEntitiesMinX;
934 auto entityDiffY = copiedEntity->getTransformations().getTranslation().getY() - pasteEntitiesMinY;
935 auto entityDiffZ = copiedEntity->getTransformations().getTranslation().getZ() - pasteEntitiesMinZ;
936 sceneEntityTransformations.setTranslation(
937 Vector3(
938 placeEntityTranslation.getX() + entityDiffX - centerX,
939 placeEntityTranslation.getY() + entityDiffY,
940 placeEntityTranslation.getZ() + entityDiffZ - centerZ
941 )
942 );
943 sceneEntityTransformations.update();
944 if (displayOnly == false) {
945 for (auto i = 0; i < scene->getEntityCount(); i++) {
946 auto sceneEntity = scene->getEntityAt(i);
947 if (sceneEntity->getPrototype() == pastePrototype && sceneEntity->getTransformations().getTranslation().equals(sceneEntityTransformations.getTranslation())) {
948 continue;
949 }
950 }
951 }
952 if (displayOnly == false) {
953 //
954 auto sceneEntityId = pastePrototype->getName() + "_" + to_string(scene->allocateEntityId());
955 auto sceneEntity = new SceneEntity(
956 sceneEntityId,
957 "",
958 sceneEntityTransformations,
959 pastePrototype
960 );
961 BaseProperties* properties = copiedEntity;
962 for (int i = 0; i < properties->getPropertyCount(); i++) {
963 auto property = properties->getPropertyByIndex(i);
964 sceneEntity->addProperty(property->getName(), property->getValue());
965 }
966 scene->addEntity(sceneEntity);
967 auto entity = SceneConnector::createEntity(pastePrototype, sceneEntityId, sceneEntityTransformations);
968 if (entity != nullptr) {
969 resetEntity(entity);
970 entity->setPickable(true);
971 engine->addEntity(entity);
972 }
973 entitiesToSelect.push_back(sceneEntityId);
974 } else {
975 auto entityId = "tdme.sceneeditor.paste." + pastePrototype->getName() + "." + to_string(pasteEntitiesIdx);
976 auto entity = engine->getEntity(entityId);
977 if (entity != nullptr) {
978 entity->fromTransformations(sceneEntityTransformations);
979 } else {
980 entity = SceneConnector::createEntity(pastePrototype, entityId, sceneEntityTransformations);
981 if (entity != nullptr) {
983 entity->setPickable(true);
984 engine->addEntity(entity);
985 }
986 }
987 }
988 pasteEntitiesIdx++;
989 }
990
991 //
992 if (displayOnly == false) {
993 //
994 class ReloadOutlinerWithNewSelectionAction: public Action {
995 public:
996 void performAction() override {
997 sceneEditorTabView->reloadOutliner();
998 // select selected entities
999 sceneEditorTabView->sceneEditorTabController->unselectEntities();
1000 for (auto& entityId: entitiesToSelect) {
1001 sceneEditorTabView->sceneEditorTabController->selectEntity(entityId);
1002 }
1003 sceneEditorTabView->selectEntities(entitiesToSelect);
1004 }
1005 ReloadOutlinerWithNewSelectionAction(SceneEditorTabView* sceneEditorTabView, const vector<string>& entitiesToSelect): sceneEditorTabView(sceneEditorTabView), entitiesToSelect(entitiesToSelect) {
1006
1007 }
1008 private:
1009 SceneEditorTabView* sceneEditorTabView;
1010 vector<string> entitiesToSelect;
1011 };
1012 Engine::getInstance()->enqueueAction(new ReloadOutlinerWithNewSelectionAction(this, entitiesToSelect));
1013 }
1014}
1015
1017 Vector3 pivot;
1018 auto entityCount = 0;
1019 for (auto selectedEntityId: selectedEntityIds) {
1020 auto selectedEntity = engine->getEntity(selectedEntityId);
1021 if (selectedEntity != nullptr && StringTools::startsWith(selectedEntity->getId(), "tdme.sceneeditor.") == false) {
1022 auto sceneEntity = scene->getEntity(selectedEntity->getId());
1023 if (sceneEntity == nullptr) continue;
1024 pivot.add(sceneEntity->getTransformations().getTranslation());
1025 entityCount++;
1026 }
1027 }
1028 if (entityCount > 1) pivot.scale(1.0f / entityCount);
1029 return pivot;
1030}
1031
1033 string selectedEnvironmentMappingId;
1034 for (auto selectedEntityId: selectedEntityIds) {
1035 auto selectedEntity = engine->getEntity(selectedEntityId);
1036 if (selectedEntity != nullptr && StringTools::startsWith(selectedEntity->getId(), "tdme.sceneeditor.") == false) {
1037 auto sceneEntity = scene->getEntity(selectedEntity->getId());
1038 if (sceneEntity == nullptr) continue;
1039 if (selectedEnvironmentMappingId.empty() == true) {
1040 selectedEnvironmentMappingId = sceneEntity->getReflectionEnvironmentMappingId();
1041 } else
1042 if (selectedEnvironmentMappingId != sceneEntity->getReflectionEnvironmentMappingId()) {
1043 selectedEnvironmentMappingId.clear();
1044 return selectedEnvironmentMappingId;
1045 }
1046 }
1047 }
1048 return selectedEnvironmentMappingId;
1049}
1050
1052{
1053 if (selectedEntityIds.size() == 0) {
1054 return;
1055 }
1056 Vector3 center;
1057 for (auto selectedEntityId: selectedEntityIds) {
1058 auto selectedEntity = engine->getEntity(selectedEntityId);
1059 if (selectedEntity == nullptr) continue;
1060 center.add(selectedEntity->getBoundingBoxTransformed()->getMin().clone().add(selectedEntity->getBoundingBoxTransformed()->getMax()).scale(0.5f));
1061 }
1062 engine->getCamera()->setLookAt(center.scale(1.0f / selectedEntityIds.size()));
1063}
1064
1066{
1067 if (selectedEntityIds.size() == 0) {
1068 return;
1069 }
1071
1072 auto sceneEntity = scene->getEntity(selectedEntityIds[0]);
1073 auto prototype = sceneEntity != nullptr?sceneEntity->getPrototype():nullptr;
1074 vector<string> entitiesToSelect;
1075 for (auto i = 0; i < scene->getEntityCount(); i++) {
1076 auto _sceneEntity = scene->getEntityAt(i);
1077 if (_sceneEntity->getPrototype() != prototype) continue;
1078 sceneEditorTabController->selectEntity(_sceneEntity->getId());
1079 entitiesToSelect.push_back(_sceneEntity->getId());
1080 }
1081 selectEntities(entitiesToSelect);
1082}
1083
1085 if (selectedEntityIds.size() == 0) {
1086 return;
1087 }
1088
1090
1091 auto sceneEntity = scene->getEntity(selectedEntityIds[0]);
1092 auto prototype = sceneEntity != nullptr?sceneEntity->getPrototype():nullptr;
1093 if (prototype == nullptr || prototype->getFileName().empty() == true) {
1094 sceneEditorTabController->showErrorPopUp("Warning", "Prototype is embedded and can not be opened");
1095 } else {
1096 editorView->getScreenController()->openFile(prototype->getFileName());
1097 }
1098}
1099
1101 if (selectedEntityIds.size() == 0) {
1102 removeGizmo();
1103 return;
1104 }
1105
1106 // rotation for gizmo
1107 Transformations transformations;
1108
1109 //
1110 Vector3 gizmoCenter;
1111 auto entityCount = 0;
1112 for (auto selectedEntityId: selectedEntityIds) {
1113 auto selectedEntity = engine->getEntity(selectedEntityId);
1114 if (selectedEntity != nullptr && StringTools::startsWith(selectedEntity->getId(), "tdme.sceneeditor.") == false) {
1115 auto sceneEntity = scene->getEntity(selectedEntity->getId());
1116 if (sceneEntity == nullptr) continue;
1117 gizmoCenter.add(sceneEntity->getTransformations().getTranslation());
1118 entityCount++;
1119 }
1120 }
1121 if (entityCount == 0) {
1122 removeGizmo();
1123 return;
1124 } else
1125 if (entityCount == 1) {
1126 auto selectedSceneEntity = scene->getEntity(selectedEntityIds[0]);
1127 auto selectedPrototype = selectedSceneEntity != nullptr?selectedSceneEntity->getPrototype():nullptr;
1128 if (selectedSceneEntity != nullptr) transformations.fromTransformations(selectedSceneEntity->getTransformations());
1130 if (selectedSceneEntity == nullptr || selectedPrototype == nullptr) {
1131 removeGizmo();
1132 }
1133 } else {
1134 gizmoCenter.scale(1.0f / entityCount);
1135 }
1136
1137 //
1138 Gizmo::updateGizmo(gizmoCenter, transformations);
1139}
1140
1141bool SceneEditorTabView::applyBase(const string& name, const string& description) {
1142 if (selectedEntityIds.size() != 1) return false;
1143
1144 auto selectedEntity = engine->getEntity(selectedEntityIds[0]);
1145 if (selectedEntity == nullptr || StringTools::startsWith(selectedEntity->getId(), "tdme.sceneeditor.")) return false;
1146
1147 auto sceneEntity = scene->getEntity(selectedEntity->getId());
1148 if (sceneEntity == nullptr) return false;
1149
1150 sceneEntity->setDescription(description);
1151 auto oldName = sceneEntity->getId();
1152 if (oldName == name) return true;
1153
1154 if (engine->getEntity(name) != nullptr) return false;
1155 if (scene->renameEntity(sceneEntity->getId(), name) == true) {
1156 engine->removeEntity(oldName);
1157 selectedEntityIds.clear();
1158 selectedEntityIdsById.clear();
1159 auto entity = SceneConnector::createEntity(sceneEntity);
1160 if (entity == nullptr) {
1161 return false;
1162 } else {
1164 selectedEntityIds.push_back(entity->getId());
1165 selectedEntityIdsById.insert(entity->getId());
1166 entity->setPickable(true);
1167 engine->addEntity(entity);
1168 //
1169 class ReloadOutlinerAction: public Action {
1170 public:
1171 void performAction() override {
1172 sceneEditorTabView->reloadOutliner(outlinerNode);
1173 }
1174 ReloadOutlinerAction(SceneEditorTabView* sceneEditorTabView, const string& outlinerNode): sceneEditorTabView(sceneEditorTabView), outlinerNode(outlinerNode) {
1175
1176 }
1177 private:
1178 SceneEditorTabView* sceneEditorTabView;
1179 string outlinerNode;
1180 };
1181 Engine::getInstance()->enqueueAction(new ReloadOutlinerAction(this, "scene.entities." + entity->getId()));
1182 }
1183 return true;
1184 } else {
1185 return false;
1186 }
1187}
1188
1190 if (selectedEntityIds.size() == 0)
1191 return;
1192
1193 if (selectedEntityIds.size() == 1) {
1194 auto selectedEntity = engine->getEntity(selectedEntityIds[0]);
1195 if (selectedEntity == nullptr) return;
1196 auto sceneEntity = scene->getEntity(selectedEntity->getId());
1197 if (sceneEntity == nullptr) return;
1198
1199 sceneEntity->getTransformations().setTranslation(translation);
1200 sceneEntity->getTransformations().update();
1201 selectedEntity->fromTransformations(sceneEntity->getTransformations());
1202 } else
1203 if (selectedEntityIds.size() > 1) {
1204 for (auto selectedEntityId: selectedEntityIds) {
1205 auto selectedEntity = engine->getEntity(selectedEntityId);
1206 if (selectedEntity == nullptr) continue;
1207 auto sceneEntity = scene->getEntity(selectedEntity->getId());
1208 if (sceneEntity == nullptr) continue;
1209
1210 sceneEntity->getTransformations().setTranslation(
1211 sceneEntity->getTransformations().getTranslation().clone().add(translation.clone().sub(multipleSelectionTranslation))
1212 );
1213 sceneEntity->getTransformations().update();
1214 selectedEntity->fromTransformations(sceneEntity->getTransformations());
1215 }
1217 }
1218 scene->update();
1220 updateGizmo();
1221}
1222
1224 if (selectedEntityIds.size() == 0)
1225 return;
1226
1227 if (selectedEntityIds.size() == 1) {
1228 auto selectedEntity = engine->getEntity(selectedEntityIds[0]);
1229 if (selectedEntity == nullptr) return;
1230 auto sceneEntity = scene->getEntity(selectedEntity->getId());
1231 if (sceneEntity == nullptr) return;
1233 sceneEntity->getTransformations().getRotation(scene->getRotationOrder()->getAxisYIndex()).setAngle(rotation.getY());
1234 sceneEntity->getTransformations().getRotation(scene->getRotationOrder()->getAxisZIndex()).setAngle(rotation.getZ());
1235 sceneEntity->getTransformations().update();
1236 selectedEntity->fromTransformations(sceneEntity->getTransformations());
1237 } else
1238 if (selectedEntityIds.size() > 1) {
1239 for (auto selectedEntityId: selectedEntityIds) {
1240 auto selectedEntity = engine->getEntity(selectedEntityId);
1241 if (selectedEntity == nullptr) continue;
1242 auto sceneEntity = scene->getEntity(selectedEntity->getId());
1243 if (sceneEntity == nullptr) continue;
1244 if ((sceneEntity->getPrototype()->getType()->getGizmoTypeMask() & Gizmo::GIZMOTYPE_ROTATE) == Gizmo::GIZMOTYPE_ROTATE) {
1245 sceneEntity->getTransformations().getRotation(scene->getRotationOrder()->getAxisXIndex()).setAngle(sceneEntity->getTransformations().getRotation(scene->getRotationOrder()->getAxisXIndex()).getAngle() + (rotation.getX() - multipleSelectionRotation.getX()));
1246 sceneEntity->getTransformations().getRotation(scene->getRotationOrder()->getAxisYIndex()).setAngle(sceneEntity->getTransformations().getRotation(scene->getRotationOrder()->getAxisYIndex()).getAngle() + (rotation.getY() - multipleSelectionRotation.getY()));
1247 sceneEntity->getTransformations().getRotation(scene->getRotationOrder()->getAxisZIndex()).setAngle(sceneEntity->getTransformations().getRotation(scene->getRotationOrder()->getAxisZIndex()).getAngle() + (rotation.getZ() - multipleSelectionRotation.getZ()));
1248 }
1249 sceneEntity->getTransformations().update();
1250 selectedEntity->fromTransformations(sceneEntity->getTransformations());
1251 }
1253 }
1254 scene->update();
1256 updateGizmo();
1257}
1258
1260 if (selectedEntityIds.size() == 0)
1261 return;
1262
1263 if (selectedEntityIds.size() == 1) {
1264 auto selectedEntity = engine->getEntity(selectedEntityIds[0]);
1265 if (selectedEntity == nullptr) return;
1266 auto sceneEntity = scene->getEntity(selectedEntity->getId());
1267 if (sceneEntity == nullptr) return;
1268
1269 sceneEntity->getTransformations().setScale(Vector3(scale));
1270 sceneEntity->getTransformations().update();
1271 selectedEntity->fromTransformations(sceneEntity->getTransformations());
1272 } else
1273 if (selectedEntityIds.size() > 1) {
1274 for (auto selectedEntityId: selectedEntityIds) {
1275 auto selectedEntity = engine->getEntity(selectedEntityId);
1276 if (selectedEntity == nullptr) continue;
1277 auto sceneEntity = scene->getEntity(selectedEntity->getId());
1278 if (sceneEntity == nullptr) continue;
1279
1280 sceneEntity->getTransformations().setScale(sceneEntity->getTransformations().getScale().clone().scale(scale / multipleSelectionScale));
1281 sceneEntity->getTransformations().update();
1282 selectedEntity->fromTransformations(sceneEntity->getTransformations());
1283 }
1285 }
1286 scene->update();
1288 updateGizmo();
1289}
1290
1291void SceneEditorTabView::applyReflectionEnvironmentMappingId(const string& reflectionEnvironmentMappingId) {
1292 if (selectedEntityIds.size() == 0)
1293 return;
1294
1295 for (auto selectedEntityId: selectedEntityIds) {
1296 auto selectedEntity = engine->getEntity(selectedEntityId);
1297 if (selectedEntity == nullptr) continue;
1298 auto sceneEntity = scene->getEntity(selectedEntity->getId());
1299 if (sceneEntity == nullptr) continue;
1300
1301 auto object3D = dynamic_cast<Object3D*>(selectedEntity);
1302 if (object3D != nullptr) object3D->setReflectionEnvironmentMappingId(reflectionEnvironmentMappingId);
1303 sceneEntity->setReflectionEnvironmentMappingId(reflectionEnvironmentMappingId);
1304 }
1305}
1306
1308{
1309 return gridEnabled;
1310}
1311
1313{
1314 this->gridEnabled = gridEnabled;
1315 if (gridEnabled) {
1316 updateGrid();
1317 } else {
1318 removeGrid();
1319 }
1320}
1321
1323{
1324 return gridY;
1325}
1326
1328{
1329 if (gridEnabled == true) removeGrid();
1330 this->gridY = gridY;
1331 if (gridEnabled == true) updateGrid();
1332
1333}
1334
1336{
1337 if (gridEnabled == false) return;
1338
1339 string entityId = "tdme.sceneeditor.grid";
1340 auto entity = engine->getEntity(entityId);
1341 if (entity == nullptr) {
1342 entity = new Object3D(entityId, gridModel);
1343 entity->setFrustumCulling(false);
1344 entity->addRotation(scene->getRotationOrder()->getAxis0(), 0.0f);
1345 entity->addRotation(scene->getRotationOrder()->getAxis1(), 0.0f);
1346 entity->addRotation(scene->getRotationOrder()->getAxis2(), 0.0f);
1347 entity->setTranslation(
1348 Vector3(
1349 -5000.0f,
1350 gridY - 0.05f,
1351 -5000.0f
1352 )
1353 );
1354 entity->setEnabled(true);
1355 entity->setPickable(true);
1356 entity->update();
1357 auto selectedEntityIdsByIdIt = selectedEntityIdsById.find(entity->getId());
1358 if (selectedEntityIdsByIdIt != selectedEntityIdsById.end()) {
1360 } else {
1362 }
1363 engine->addEntity(entity);
1364 }
1365}
1366
1368{
1369 engine->removeEntity("tdme.sceneeditor.grid");
1370}
1371
1372void SceneEditorTabView::getSnapping(bool& snappingEnabled, float& snappingX, float& snappingZ) {
1374 snappingX = this->snappingX;
1375 snappingZ = this->snappingZ;
1376}
1377
1378void SceneEditorTabView::setSnapping(bool snappingEnabled, float snappingX, float snappingZ) {
1379 this->snappingEnabled = snappingEnabled;
1380 this->snappingX = snappingX;
1381 this->snappingZ = snappingZ;
1382}
1383
1385 try {
1386 prototype->setEmbedded(false);
1387 auto sceneLibrary = scene->getLibrary();
1388 if (prototype->getType() == Prototype_Type::TERRAIN) {
1389 while (sceneLibrary->getTerrainPrototype() != nullptr) {
1390 for (auto i = 0; i < sceneLibrary->getPrototypeCount(); i++) {
1391 auto prototype = sceneLibrary->getPrototypeAt(i);
1392 if (prototype->getType() == Prototype_Type::TERRAIN) {
1393 sceneLibrary->removePrototype(prototype->getId());
1394 break;
1395 }
1396 }
1397 }
1398 sceneLibrary->addPrototype(prototype);
1399 SceneConnector::resetEngine(engine, scene);
1400 SceneConnector::setLights(engine, scene, Vector3());
1401 SceneConnector::addScene(engine, scene, true, true, true, true);
1402 updateSky();
1403 scene->update();
1406 } else {
1407 sceneLibrary->addPrototype(prototype);
1408 }
1409 } catch (Exception& exception) {
1410 Console::println(string("SceneEditorTabView::addPrototype(): An error occurred: ") + exception.what());;
1411 sceneEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
1412 }
1413 reloadOutliner("scene.prototypes." + to_string(prototype->getId()));
1414}
#define KEYBOARD_KEYCODE_LEFT_CTRL
#define MOUSE_BUTTON_LEFT
#define MOUSE_BUTTON_NONE
#define KEYBOARD_KEYCODE_LEFT_SHIFT
const Vector3 & getLookAt() const
Definition: Camera.h:228
void setLookAt(const Vector3 &lookAt)
Set look at.
Definition: Camera.h:236
Engine main class.
Definition: Engine.h:122
bool removeEntity(const string &id)
Removes an entity.
Definition: Engine.cpp:451
Timing * getTiming()
Definition: Engine.h:900
int32_t getLightCount()
Definition: Engine.h:941
void display()
Renders the scene.
Definition: Engine.cpp:1269
Light * getLightAt(int32_t idx)
Returns light at idx (0 <= idx < 8)
Definition: Engine.h:950
Entity * getEntityByMousePosition(int32_t mouseX, int32_t mouseY, EntityPickingFilter *filter=nullptr, Node **object3DNode=nullptr, ParticleSystemEntity **particleSystemEntity=nullptr)
Retrieves entity by mouse position.
Definition: Engine.h:1068
void addEntity(Entity *entity)
Adds an entity by id.
Definition: Engine.cpp:364
void dispose()
Shutdown the engine.
Definition: Engine.cpp:1907
Entity * getEntity(const string &id)
Returns a entity by given id.
Definition: Engine.h:981
void setSceneColor(const Color4 &sceneColor)
Set scene color.
Definition: Engine.h:965
Camera * getCamera()
Definition: Engine.h:907
Entity * doRayCasting(const Vector3 &startPoint, const Vector3 &endPoint, Vector3 &contactPoint, EntityPickingFilter *filter=nullptr)
Does a ray casting of visible 3d object based entities.
Definition: Engine.h:1101
TDME engine entity.
Definition: Entity.h:31
virtual void setScale(const Vector3 &scale)=0
Set scale.
virtual const string & getId()=0
virtual void setEffectColorMul(const Color4 &effectColorMul)=0
Set effect color that will be multiplied with fragment color.
virtual const Color4 & getEffectColorAdd() const =0
The effect color will be added to fragment color.
virtual void setTranslation(const Vector3 &translation)=0
Set translation.
virtual void fromTransformations(const Transformations &transformations)=0
Set up this transformations from given transformations.
virtual void update()=0
Update transformations.
virtual BoundingBox * getBoundingBox()=0
virtual const Transformations & getTransformations() const =0
virtual const Color4 & getEffectColorMul() const =0
The effect color will be multiplied with fragment color.
virtual void setEffectColorAdd(const Color4 &effectColorAdd)=0
Set effect color that will be added to fragment color.
Light representation.
Definition: Light.h:32
void setEnabled(bool enabled)
Set enabled.
Definition: Light.h:82
void setAmbient(const Color4 &ambient)
Set ambient light component.
Definition: Light.h:97
Object 3D to be used with engine class.
Definition: Object3D.h:60
void setReflectionEnvironmentMappingId(const string &reflectionEnvironmentMappingId)
Definition: Object3D.h:408
void setAngle(const float angle)
Definition: Rotation.h:63
Scene engine/physics connector.
Timing class.
Definition: Timing.h:17
float getAvarageFPS()
Definition: Timing.h:100
Transformations which contain scale, rotations and translation.
Rotation & getRotation(const int idx)
Get rotation at given index.
void setRotationAngle(const int idx, const float angle)
void setTranslation(const Vector3 &translation)
Set translation.
const Quaternion & getRotationsQuaternion() const
void setScale(const Vector3 &scale)
Set scale.
virtual void fromTransformations(const Transformations &transformations)
Set up this transformations from given transformations.
virtual void update()
Computes transformation matrix.
const Vector3 & getTranslation() const
void setPivot(const Vector3 &pivot)
Set pivot.
void addRotation(const Vector3 &axis, const float angle)
Add rotation.
Color 4 definition.
Definition: Color4.h:20
Model node.
Definition: Node.h:31
const Vector3 & getAxis0() const
Definition: RotationOrder.h:60
const Vector3 & getAxis2() const
Definition: RotationOrder.h:74
const Vector3 & getAxis1() const
Definition: RotationOrder.h:67
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
void fromBoundingVolumeWithTransformations(BoundingBox *original, const Transformations &transformations)
Create bounding volume from given original(of same type) with applied transformations.
Definition: BoundingBox.cpp:79
const Vector3 & getDimensions() const
Definition: BoundingBox.h:127
BaseProperty * getPropertyByIndex(int idx)
Get property by index.
BaseProperty * getProperty(const string &name)
Retrieve property by name.
Base property model class.
Definition: BaseProperty.h:16
Prototype definition.
Definition: Prototype.h:49
void setEmbedded(bool embedded)
Set embedded.
Definition: Prototype.h:140
Scene entity definition.
Definition: SceneEntity.h:24
const string & getReflectionEnvironmentMappingId()
Definition: SceneEntity.h:100
Transformations & getTransformations()
Definition: SceneEntity.h:78
void setDescription(const string &description)
Set description.
Definition: SceneEntity.h:71
Scene prototype library definition.
Definition: SceneLibrary.h:27
Scene definition.
Definition: Scene.h:41
bool removeEntity(const string &id)
Removes an entity from scene.
Definition: Scene.cpp:227
const Vector3 & getSkyModelScale()
Definition: Scene.h:321
SceneLibrary * getLibrary()
Definition: Scene.h:168
RotationOrder * getRotationOrder()
Definition: Scene.h:116
bool renameEntity(const string &id, const string &newId)
Rename an entity from scene.
Definition: Scene.cpp:242
SceneEntity * getEntity(const string &id)
Returns scene entity by id.
Definition: Scene.cpp:259
void addEntity(SceneEntity *entity)
Adds an entity to scene.
Definition: Scene.cpp:211
void update()
Update scene dimension, bounding box, center.
Definition: Scene.cpp:274
SceneEntity * getEntityAt(int idx)
Returns entity at given index.
Definition: Scene.h:287
const Vector3 & getCenter()
Definition: Scene.h:189
BoundingBox * getBoundingBox()
Definition: Scene.h:182
GUI module class.
Definition: GUI.h:66
vector< GUIMouseEvent > & getMouseEvents()
Definition: GUI.h:212
vector< GUIKeyboardEvent > & getKeyboardEvents()
Definition: GUI.h:219
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
Quaternion & multiply(const Quaternion q)
Multiplies this quaternion with quaternion q.
Definition: Quaternion.h:227
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 & setZ(float z)
Set Z.
Definition: Vector3.h:145
Vector3 & normalize()
Normalize the vector.
Definition: Vector3.h:288
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
Vector3 & setX(float x)
Set X.
Definition: Vector3.h:111
Vector3 clone() const
Clones the vector.
Definition: Vector3.h:372
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Definition: Vector3.h:325
Vector3 & add(const Vector3 &v)
Adds a vector.
Definition: Vector3.h:301
Vector3 & scale(float scale)
Scale this vector.
Definition: Vector3.h:349
Vector3 & setY(float y)
Set Y.
Definition: Vector3.h:128
array< float, 3 > & getArray() const
Definition: Vector3.h:171
3D vector 4 class
Definition: Vector4.h:19
void setOutlinerSelection(const string &newSelectionValue)
Set outliner selection.
void restoreOutlinerState(const TabView::OutlinerState &outlinerState)
Restore outliner state.
void storeOutlinerState(TabView::OutlinerState &outlinerState)
Store outliner state.
void openFile(const string &absoluteFileName)
Open file.
void handleInputEvents() override
Handle input events that have not yet been processed.
void setSceneCenter(const Vector3 &sceneCenter)
Set scene center.
Gizmo tool for views.
Definition: Gizmo.h:26
void setGizmoMode(GizmoMode gizmoMode)
Set GIZMO mode.
Definition: Gizmo.h:128
void setEngine(Engine *engine)
Set engine.
Definition: Gizmo.h:81
void setGizmoRotation(const Transformations &transformations)
Set gizmo rotation.
Definition: Gizmo.cpp:426
bool determineGizmoDeltaTransformations(int mouseLastX, int mouseLastY, int mouseX, int mouseY, Vector3 &deltaTranslation, Vector3 &deltaRotation, Vector3 &deltaScale)
Determine GIZMO delta transformations.
Definition: Gizmo.cpp:254
void removeGizmo()
Remove gizmo.
Definition: Gizmo.cpp:211
void setGizmoType(GizmoType gizmoType)
Set GIZMO type.
Definition: Gizmo.h:112
GizmoMode getGizmoMode() const
Definition: Gizmo.h:120
bool determineGizmoMode(Entity *selectedEntity, Node *selectedEntityNode)
Select GIZMO mode.
Definition: Gizmo.cpp:400
void setGizmoTypeMask(int gizmoTypeMask)
Set GIZMO type mask.
Definition: Gizmo.h:96
void updateInfoText(const MutableString &text)
Update info text line.
void updateEntityDetails(const Transformations &transformations)
Update entity details.
void updateDetails(const string &outlinerNode)
Update details panel.
void setEntityDetailsMultiple(const Vector3 &pivot, const string &selectedReflectionEnvironmentMappingId)
Set entity details for multiple entity selection.
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
void setEntityDetails(const string &entityId)
Set entity details.
void applyTranslation(const Vector3 &translation)
Apply translation.
void pasteEntities(bool displayOnly)
Paste entities.
void setStandardEntityColorEffect(Entity *object)
Set standard entity color effect.
void placeEntity()
Places selected entity on selected object.
void setHighlightEntityColorEffect(Entity *object)
Set highlight entity color effect.
void onCameraRotation() override
On rotation event to be overloaded.
const Vector3 computeMultipleSelectionPivot()
Compute multiple selection pivot.
unordered_map< string, EntityColor > entityColors
bool applyBase(const string &name, const string &description)
Apply base information.
void setSnapping(bool snappingEnabled, float snappingX, float snappingZ)
Set snapping.
const string getSelectedReflectionEnvironmentMappingId()
Get selected reflection environment mapping id.
void resetEntity(Entity *object)
Reset scale to scene editor object scale.
void handleInputEvents() override
Handle input events that have not yet been processed.
void setGridY(float gridY)
Set grid y position.
void onCameraTranslation() override
On translation event to be overloaded.
void selectEntities(const vector< string > &entityIds)
Select entities.
void getSnapping(bool &snappingEnabled, float &snappingX, float &snappingZ)
Get snapping.
void unsetPlaceEntityMode(bool cancelled)
Finish place entity mode.
void applyScale(const Vector3 &scale)
Apply scale.
void setPlaceEntityMode(Prototype *prototype)
Initialize place entity mode.
void copyEntities()
Copy current selected entities.
void addPrototype(Prototype *prototype)
Add prototype to scene.
void applyReflectionEnvironmentMappingId(const string &reflectionEnvironmentMappingId)
Apply reflection environment mapping id.
void onCameraScale() override
On scale event to be overloaded.
void applyRotation(const Vector3 &rotation)
Apply rotation.
EditorScreenController * getScreenController()
Definition: EditorView.h:57
Character class.
Definition: Character.h:15
Console class.
Definition: Console.h:26
Float class.
Definition: Float.h:23
Mutable string class.
Definition: MutableString.h:16
MutableString & append(char c)
Append character.
String tools class.
Definition: StringTools.h:20
std::exception Exception
Exception base class.
Definition: Exception.h:19
Action Interface.
Definition: Action.h:12