4#include <unordered_set>
42using std::unordered_set;
78SceneEditorTabView::SceneEditorTabView(
EditorView* editorView,
const string& tabId,
Scene* scene):
Gizmo(nullptr,
"le")
83 engine = Engine::createOffScreenInstance(512, 512,
true,
true,
true);
105 this->
gridModel = Tools::createGridModel();
125 bool filterEntity(
Entity* entity)
override {
126 return entity->
getId() !=
"tdme.sceneeditor.grid";
133 PrototypePickingFilterNoGrid(
SceneEditorTabView* sceneEditorTabView): sceneEditorTabView(sceneEditorTabView) {
148 bool filterEntity(
Entity* entity)
override {
150 entity->
getId() !=
"tdme.sceneeditor.placeentity" &&
151 StringTools::startsWith(entity->
getId(),
"tdme.sceneeditor.paste.") ==
false &&
152 StringTools::startsWith(entity->
getId(),
"le.tdme.gizmo.") ==
false;
159 PrototypePickingFilterPlacing(
SceneEditorTabView* sceneEditorTabView): sceneEditorTabView(sceneEditorTabView) {
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++) {
186 if (event.isProcessed() ==
true)
continue;
187 if (event.getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_TYPED)
continue;
188 auto isKeyDown =
event.getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED;
191 event.setProcessed(
true);
195 event.setProcessed(
true);
197 if (event.getKeyCode() == GUIKeyboardEvent::KEYCODE_ESCAPE) {
199 event.setProcessed(
true);
201 if (event.getKeyCode() == GUIKeyboardEvent::KEYCODE_BACKSPACE ||
202 event.getKeyCode() == GUIKeyboardEvent::KEYCODE_DELETE) {
203 keyDelete = isKeyDown;
204 event.setProcessed(
true);
206 if (Character::toLowerCase(event.getKeyChar()) == 24) {
207 keyControlX = isKeyDown;
208 event.setProcessed(
true);
210 if (Character::toLowerCase(event.getKeyChar()) == 3) {
211 keyControlC = isKeyDown;
212 event.setProcessed(
true);
214 if (Character::toLowerCase(event.getKeyChar()) == 22) {
215 keyControlV = isKeyDown;
216 event.setProcessed(
true);
218 if (Character::toLowerCase(event.getKeyChar()) ==
'x' &&
keyControl ==
true) {
219 keyControlX = isKeyDown;
220 event.setProcessed(
true);
222 if (Character::toLowerCase(event.getKeyChar()) ==
'c' &&
keyControl ==
true) {
223 keyControlC = isKeyDown;
224 event.setProcessed(
true);
226 if (Character::toLowerCase(event.getKeyChar()) ==
'v' &&
keyControl ==
true) {
227 keyControlV = isKeyDown;
228 event.setProcessed(
true);
230 if (Character::toLowerCase(event.getKeyChar()) ==
'.' && !isKeyDown ==
false) {
232 event.setProcessed(
true);
234 if (Character::toLowerCase(event.getKeyChar()) ==
',' && !isKeyDown ==
false) {
236 event.setProcessed(
true);
238 if (Character::toLowerCase(event.getKeyChar()) ==
'1' && isKeyDown ==
true) {
241 event.setProcessed(
true);
243 if (Character::toLowerCase(event.getKeyChar()) ==
'2' && isKeyDown ==
true) {
245 event.setProcessed(
true);
248 if (Character::toLowerCase(event.getKeyChar()) ==
'3' && isKeyDown ==
true) {
250 event.setProcessed(
true);
253 if (Character::toLowerCase(event.getKeyChar()) ==
'4' && isKeyDown ==
true) {
255 event.setProcessed(
true);
259 for (
auto i = 0; i <
engine->
getGUI()->getMouseEvents().size(); i++) {
262 if ((event.getType() == GUIMouseEvent::MOUSEEVENT_MOVED ||
263 event.getType() == GUIMouseEvent::MOUSEEVENT_DRAGGED) &&
264 event.getXUnscaled() >= 0 &&
265 event.getYUnscaled() >= 0) {
270 if (event.isProcessed() ==
true)
continue;
273 if (event.getType() == GUIMouseEvent::MOUSEEVENT_DRAGGED) {
279 event.setProcessed(
true);
287 event.setProcessed(
true);
292 if (event.getType() == GUIMouseEvent::MOUSEEVENT_RELEASED) {
303 event.setProcessed(
true);
306 Node* selectedEntityNode =
nullptr;
307 Entity* selectedEntity =
nullptr;
315 if (gizmoEntity !=
nullptr) {
323 if (_selectedEntity !=
nullptr && StringTools::startsWith(_selectedEntity->getId(),
"tdme.sceneeditor.") ==
false) {
325 if (sceneEntity ==
nullptr)
continue;
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) {
342 sceneEntity->getTransformations().update();
343 _selectedEntity->fromTransformations(sceneEntity->getTransformations());
348 if (_selectedEntity !=
nullptr) {
359 if (Math::abs(deltaTranslation.
getX()) > Math::EPSILON ||
360 Math::abs(deltaTranslation.
getY()) > Math::EPSILON ||
361 Math::abs(deltaTranslation.
getZ()) > Math::EPSILON) {
369 if (selectedEntity !=
nullptr &&
scene->
getEntity(selectedEntity->
getId()) ==
nullptr) selectedEntity =
nullptr;
371 vector<Entity*> entitiesToRemove;
377 if (selectedEntity !=
nullptr) entitiesToRemove.push_back(selectedEntity);
380 for (
auto entityToRemove: entitiesToRemove) {
390 if (selectedEntity !=
nullptr) {
408 if (sceneEntity !=
nullptr && sceneEntity->getPrototype()->getType()->hasNonEditScaleDownMode() ==
true) {
425 event.setProcessed(
true);
433 if (keyDelete ==
true) {
434 Console::println(
"SceneEditorTabView::handleInputEvents(): Backspace");
438 if (keyControlX ==
true) {
439 Console::println(
"SceneEditorTabView::handleInputEvents(): CTRL-X");
444 if (keyControlC ==
true) {
445 Console::println(
"SceneEditorTabView::handleInputEvents(): CTRL-C");
448 if (keyControlV ==
true) {
449 Console::println(
"SceneEditorTabView::handleInputEvents(): CTRL-V");
474 auto selectedEngineEntity =
engine->
getEntity(
"tdme.sceneeditor.placeentity");
487 selectedEngineEntity = SceneConnector::createEntity(
selectedPrototype,
"tdme.sceneeditor.placeentity", transformations);
488 if (selectedEngineEntity !=
nullptr)
engine->
addEntity(selectedEngineEntity);
490 if (selectedEngineEntity !=
nullptr) {
494 Vector3 snappedWorldCoordinate;
496 worldCoordinate = snappedWorldCoordinate;
502 selectedEngineEntity->fromTransformations(transformations);
511 Vector3 snappedWorldCoordinate;
513 worldCoordinate = snappedWorldCoordinate;
539 Console::print(
string(
"SceneEditorTabView::initialize(): An error occurred: "));
540 Console::println(
string(exception.what()));
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);
558 SceneConnector::addScene(
engine,
scene,
true,
true,
true,
true);
610 SceneConnector::addScene(
engine,
scene,
true,
true,
true,
true);
644 sky->setRenderPass(Entity::RENDERPASS_NOFRUSTUMCULLING);
645 sky->setShader(
"sky");
646 sky->setFrustumCulling(
false);
647 sky->setTranslation(
Vector3(0.0f, 0.0f, 0.0f));
650 sky->setContributesShadows(
false);
651 sky->setReceivesShadows(
false);
652 sky->setExcludeEffectPass(Engine::EFFECTPASS_LIGHTSCATTERING);
658 if (sky ==
nullptr)
return;
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());
686 auto& entityColor = entityColorIt->second;
694 if (entity ==
nullptr)
return;
697 if (sceneEntity ==
nullptr)
return;
698 if (sceneEntity->getPrototype()->getType()->hasNonEditScaleDownMode() ==
false)
return;
701 sceneEntity->getPrototype()->getType()->getNonEditScaleDownModeDimension().
723 for (
auto entityId: entityIds) {
724 Console::println(entityId);
726 if (selectedEntity ==
nullptr)
continue;
733 if (entityIds.size() == 1) {
735 if (selectedEntity !=
nullptr) {
740 if (entityIds.size() > 1) {
753 if (entityToRemove ==
nullptr)
continue;
765 if (selectedEntity !=
nullptr && StringTools::startsWith(selectedEntity->getId(),
"tdme.sceneeditor.") ==
false) {
767 if (sceneEntity ==
nullptr)
continue;
787 class ReloadOutlinerWithNewSelectionAction:
public Action {
789 void performAction()
override {
790 sceneEditorTabView->reloadOutliner();
792 sceneEditorTabView->sceneEditorTabController->unselectEntities();
793 for (
auto& entityId: entitiesToSelect) {
794 sceneEditorTabView->sceneEditorTabController->selectEntity(entityId);
796 sceneEditorTabView->selectEntities(entitiesToSelect);
798 ReloadOutlinerWithNewSelectionAction(
SceneEditorTabView* sceneEditorTabView,
const vector<string>& entitiesToSelect): sceneEditorTabView(sceneEditorTabView), entitiesToSelect(entitiesToSelect) {
803 vector<string> entitiesToSelect;
805 Engine::getInstance()->enqueueAction(
new ReloadOutlinerWithNewSelectionAction(
this,
selectedEntityIds));
821 sceneEntityTransformations.
update();
824 if (sceneEntity->getPrototype() ==
selectedPrototype && sceneEntity->getTransformations().getTranslation().equals(sceneEntityTransformations.
getTranslation())) {
831 sceneEntityTransformations,
836 auto entity = SceneConnector::createEntity(sceneEntity);
837 if (entity !=
nullptr) {
839 entity->setPickable(
true);
849 vector<Entity*> entitiesToRemove;
852 if (selectedEntity !=
nullptr && StringTools::startsWith(selectedEntity->
getId(),
"tdme.sceneeditor.") ==
false) {
855 entitiesToRemove.push_back(selectedEntity);
858 for (
auto entityToRemove: entitiesToRemove) {
869 class ReloadOutlinerAction:
public Action {
871 void performAction()
override {
872 sceneEditorTabView->reloadOutliner(outlinerNode);
874 ReloadOutlinerAction(
SceneEditorTabView* sceneEditorTabView,
const string& outlinerNode): sceneEditorTabView(sceneEditorTabView), outlinerNode(outlinerNode) {
881 Engine::getInstance()->enqueueAction(
new ReloadOutlinerAction(
this,
"scene.entities"));
892 auto pasteEntityIdx = 0;
894 auto pastePrototype = pasteEntity->getPrototype();
895 auto entityId =
"tdme.sceneeditor.paste." + pastePrototype->getName() +
"." + to_string(pasteEntityIdx);
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;
913 if (entity ==
nullptr)
continue;
917 if (entityBBMinXYZ[0] < pasteEntitiesMinX) pasteEntitiesMinX = entityBBMinXYZ[0];
918 if (entityBBMinXYZ[1] < pasteEntitiesMinY) pasteEntitiesMinY = entityBBMinXYZ[1];
919 if (entityBBMinXYZ[2] < pasteEntitiesMinZ) pasteEntitiesMinZ = entityBBMinXYZ[2];
921 if (entityBBMaxXYZ[0] > pasteEntitiesMaxX) pasteEntitiesMaxX = entityBBMaxXYZ[0];
922 if (entityBBMaxXYZ[1] > pasteEntitiesMaxY) pasteEntitiesMaxY = entityBBMaxXYZ[1];
923 if (entityBBMaxXYZ[2] > pasteEntitiesMaxZ) pasteEntitiesMaxZ = entityBBMaxXYZ[2];
925 auto centerX = (pasteEntitiesMaxX - pasteEntitiesMinX) / 2.0f;
926 auto centerZ = (pasteEntitiesMaxZ - pasteEntitiesMinZ) / 2.0f;
927 auto pasteEntitiesIdx = 0;
928 vector<string> entitiesToSelect;
930 auto pastePrototype = copiedEntity->getPrototype();
933 auto entityDiffX = copiedEntity->getTransformations().getTranslation().getX() - pasteEntitiesMinX;
934 auto entityDiffY = copiedEntity->getTransformations().getTranslation().getY() - pasteEntitiesMinY;
935 auto entityDiffZ = copiedEntity->getTransformations().getTranslation().getZ() - pasteEntitiesMinZ;
943 sceneEntityTransformations.
update();
944 if (displayOnly ==
false) {
947 if (sceneEntity->getPrototype() == pastePrototype && sceneEntity->getTransformations().getTranslation().equals(sceneEntityTransformations.
getTranslation())) {
952 if (displayOnly ==
false) {
958 sceneEntityTransformations,
964 sceneEntity->addProperty(property->getName(), property->getValue());
967 auto entity = SceneConnector::createEntity(pastePrototype, sceneEntityId, sceneEntityTransformations);
968 if (entity !=
nullptr) {
970 entity->setPickable(
true);
973 entitiesToSelect.push_back(sceneEntityId);
975 auto entityId =
"tdme.sceneeditor.paste." + pastePrototype->getName() +
"." + to_string(pasteEntitiesIdx);
977 if (entity !=
nullptr) {
980 entity = SceneConnector::createEntity(pastePrototype, entityId, sceneEntityTransformations);
981 if (entity !=
nullptr) {
983 entity->setPickable(
true);
992 if (displayOnly ==
false) {
994 class ReloadOutlinerWithNewSelectionAction:
public Action {
996 void performAction()
override {
997 sceneEditorTabView->reloadOutliner();
999 sceneEditorTabView->sceneEditorTabController->unselectEntities();
1000 for (
auto& entityId: entitiesToSelect) {
1001 sceneEditorTabView->sceneEditorTabController->selectEntity(entityId);
1003 sceneEditorTabView->selectEntities(entitiesToSelect);
1005 ReloadOutlinerWithNewSelectionAction(
SceneEditorTabView* sceneEditorTabView,
const vector<string>& entitiesToSelect): sceneEditorTabView(sceneEditorTabView), entitiesToSelect(entitiesToSelect) {
1010 vector<string> entitiesToSelect;
1012 Engine::getInstance()->enqueueAction(
new ReloadOutlinerWithNewSelectionAction(
this, entitiesToSelect));
1018 auto entityCount = 0;
1021 if (selectedEntity !=
nullptr && StringTools::startsWith(selectedEntity->getId(),
"tdme.sceneeditor.") ==
false) {
1023 if (sceneEntity ==
nullptr)
continue;
1024 pivot.
add(sceneEntity->getTransformations().getTranslation());
1028 if (entityCount > 1) pivot.
scale(1.0f / entityCount);
1033 string selectedEnvironmentMappingId;
1036 if (selectedEntity !=
nullptr && StringTools::startsWith(selectedEntity->getId(),
"tdme.sceneeditor.") ==
false) {
1038 if (sceneEntity ==
nullptr)
continue;
1039 if (selectedEnvironmentMappingId.empty() ==
true) {
1042 if (selectedEnvironmentMappingId != sceneEntity->getReflectionEnvironmentMappingId()) {
1043 selectedEnvironmentMappingId.clear();
1044 return selectedEnvironmentMappingId;
1048 return selectedEnvironmentMappingId;
1059 if (selectedEntity ==
nullptr)
continue;
1060 center.
add(selectedEntity->getBoundingBoxTransformed()->getMin().clone().add(selectedEntity->getBoundingBoxTransformed()->getMax()).scale(0.5f));
1073 auto prototype = sceneEntity !=
nullptr?sceneEntity->
getPrototype():
nullptr;
1074 vector<string> entitiesToSelect;
1077 if (_sceneEntity->getPrototype() != prototype)
continue;
1079 entitiesToSelect.push_back(_sceneEntity->getId());
1092 auto prototype = sceneEntity !=
nullptr?sceneEntity->
getPrototype():
nullptr;
1093 if (prototype ==
nullptr || prototype->getFileName().empty() ==
true) {
1111 auto entityCount = 0;
1114 if (selectedEntity !=
nullptr && StringTools::startsWith(selectedEntity->getId(),
"tdme.sceneeditor.") ==
false) {
1116 if (sceneEntity ==
nullptr)
continue;
1117 gizmoCenter.
add(sceneEntity->getTransformations().getTranslation());
1121 if (entityCount == 0) {
1125 if (entityCount == 1) {
1127 auto selectedPrototype = selectedSceneEntity !=
nullptr?selectedSceneEntity->getPrototype():
nullptr;
1128 if (selectedSceneEntity !=
nullptr) transformations.
fromTransformations(selectedSceneEntity->getTransformations());
1134 gizmoCenter.
scale(1.0f / entityCount);
1138 Gizmo::updateGizmo(gizmoCenter, transformations);
1145 if (selectedEntity ==
nullptr || StringTools::startsWith(selectedEntity->getId(),
"tdme.sceneeditor."))
return false;
1148 if (sceneEntity ==
nullptr)
return false;
1151 auto oldName = sceneEntity->getId();
1152 if (oldName == name)
return true;
1159 auto entity = SceneConnector::createEntity(sceneEntity);
1160 if (entity ==
nullptr) {
1166 entity->setPickable(
true);
1169 class ReloadOutlinerAction:
public Action {
1171 void performAction()
override {
1172 sceneEditorTabView->reloadOutliner(outlinerNode);
1174 ReloadOutlinerAction(
SceneEditorTabView* sceneEditorTabView,
const string& outlinerNode): sceneEditorTabView(sceneEditorTabView), outlinerNode(outlinerNode) {
1179 string outlinerNode;
1181 Engine::getInstance()->enqueueAction(
new ReloadOutlinerAction(
this,
"scene.entities." + entity->getId()));
1195 if (selectedEntity ==
nullptr)
return;
1197 if (sceneEntity ==
nullptr)
return;
1200 sceneEntity->getTransformations().update();
1201 selectedEntity->fromTransformations(sceneEntity->getTransformations());
1206 if (selectedEntity ==
nullptr)
continue;
1208 if (sceneEntity ==
nullptr)
continue;
1213 sceneEntity->getTransformations().update();
1214 selectedEntity->fromTransformations(sceneEntity->getTransformations());
1229 if (selectedEntity ==
nullptr)
return;
1231 if (sceneEntity ==
nullptr)
return;
1235 sceneEntity->getTransformations().update();
1236 selectedEntity->fromTransformations(sceneEntity->getTransformations());
1241 if (selectedEntity ==
nullptr)
continue;
1243 if (sceneEntity ==
nullptr)
continue;
1244 if ((sceneEntity->getPrototype()->getType()->getGizmoTypeMask() & Gizmo::GIZMOTYPE_ROTATE) == Gizmo::GIZMOTYPE_ROTATE) {
1249 sceneEntity->getTransformations().update();
1250 selectedEntity->fromTransformations(sceneEntity->getTransformations());
1265 if (selectedEntity ==
nullptr)
return;
1267 if (sceneEntity ==
nullptr)
return;
1270 sceneEntity->getTransformations().update();
1271 selectedEntity->fromTransformations(sceneEntity->getTransformations());
1276 if (selectedEntity ==
nullptr)
continue;
1278 if (sceneEntity ==
nullptr)
continue;
1281 sceneEntity->getTransformations().update();
1282 selectedEntity->fromTransformations(sceneEntity->getTransformations());
1297 if (selectedEntity ==
nullptr)
continue;
1299 if (sceneEntity ==
nullptr)
continue;
1301 auto object3D =
dynamic_cast<Object3D*
>(selectedEntity);
1303 sceneEntity->setReflectionEnvironmentMappingId(reflectionEnvironmentMappingId);
1330 this->gridY =
gridY;
1339 string entityId =
"tdme.sceneeditor.grid";
1341 if (entity ==
nullptr) {
1343 entity->setFrustumCulling(
false);
1347 entity->setTranslation(
1354 entity->setEnabled(
true);
1355 entity->setPickable(
true);
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());
1398 sceneLibrary->addPrototype(prototype);
1401 SceneConnector::addScene(
engine,
scene,
true,
true,
true,
true);
1407 sceneLibrary->addPrototype(prototype);
1410 Console::println(
string(
"SceneEditorTabView::addPrototype(): An error occurred: ") + exception.what());;
const Vector3 & getLookAt() const
void setLookAt(const Vector3 &lookAt)
Set look at.
bool removeEntity(const string &id)
Removes an entity.
void display()
Renders the scene.
Light * getLightAt(int32_t idx)
Returns light at idx (0 <= idx < 8)
Entity * getEntityByMousePosition(int32_t mouseX, int32_t mouseY, EntityPickingFilter *filter=nullptr, Node **object3DNode=nullptr, ParticleSystemEntity **particleSystemEntity=nullptr)
Retrieves entity by mouse position.
void addEntity(Entity *entity)
Adds an entity by id.
void dispose()
Shutdown the engine.
Entity * getEntity(const string &id)
Returns a entity by given id.
void setSceneColor(const Color4 &sceneColor)
Set scene color.
Entity * doRayCasting(const Vector3 &startPoint, const Vector3 &endPoint, Vector3 &contactPoint, EntityPickingFilter *filter=nullptr)
Does a ray casting of visible 3d object based entities.
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.
void setEnabled(bool enabled)
Set enabled.
void setAmbient(const Color4 &ambient)
Set ambient light component.
Object 3D to be used with engine class.
void setReflectionEnvironmentMappingId(const string &reflectionEnvironmentMappingId)
void setAngle(const float angle)
Scene engine/physics connector.
const Vector3 & getAxis0() const
int32_t getAxis0VectorIndex() const
int32_t getAxisXIndex() const
const Vector3 & getAxis2() const
int32_t getAxisYIndex() const
int32_t getAxis2VectorIndex() const
const Vector3 & getAxis1() const
int32_t getAxis1VectorIndex() const
int32_t getAxisZIndex() const
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
void fromBoundingVolumeWithTransformations(BoundingBox *original, const Transformations &transformations)
Create bounding volume from given original(of same type) with applied transformations.
const Vector3 & getDimensions() const
BaseProperty * getPropertyByIndex(int idx)
Get property by index.
BaseProperty * getProperty(const string &name)
Retrieve property by name.
Base property model class.
int32_t getGizmoTypeMask()
void setEmbedded(bool embedded)
Set embedded.
Prototype_Type * getType()
const string & getReflectionEnvironmentMappingId()
Prototype * getPrototype()
Transformations & getTransformations()
void setDescription(const string &description)
Set description.
Scene prototype library definition.
bool removeEntity(const string &id)
Removes an entity from scene.
const Vector3 & getSkyModelScale()
SceneLibrary * getLibrary()
RotationOrder * getRotationOrder()
bool renameEntity(const string &id, const string &newId)
Rename an entity from scene.
SceneEntity * getEntity(const string &id)
Returns scene entity by id.
void addEntity(SceneEntity *entity)
Adds an entity to scene.
void update()
Update scene dimension, bounding box, center.
SceneEntity * getEntityAt(int idx)
Returns entity at given index.
const Vector3 & getCenter()
BoundingBox * getBoundingBox()
vector< GUIMouseEvent > & getMouseEvents()
vector< GUIKeyboardEvent > & getKeyboardEvents()
GUI screen node that represents a screen that can be rendered via GUI system.
Quaternion & multiply(const Quaternion q)
Multiplies this quaternion with quaternion q.
Vector3 & setZ(float z)
Set Z.
Vector3 & normalize()
Normalize the vector.
Vector3 & set(float x, float y, float z)
Set up vector.
Vector3 & setX(float x)
Set X.
Vector3 clone() const
Clones the vector.
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Vector3 & add(const Vector3 &v)
Adds a vector.
Vector3 & scale(float scale)
Scale this vector.
Vector3 & setY(float y)
Set Y.
array< float, 3 > & getArray() const
MutableString & append(char c)
Append character.
std::exception Exception
Exception base class.