101 if (prototypeBoundingVolume ==
nullptr)
return;
104 Vector3 objectScale(0.15f, 0.15f, 0.15f);
106 if (modelEntity !=
nullptr) objectScale = modelEntity->getScale();
107 auto modelBoundingVolumeEntityId =
"tdme.prototype.bv." + to_string(idx);
108 if (prototypeBoundingVolume->getModel() !=
nullptr) {
109 auto modelBoundingVolumeEntity =
new Object3D(modelBoundingVolumeEntityId, prototypeBoundingVolume->getModel());
110 modelBoundingVolumeEntity->setScale(objectScale);
111 modelBoundingVolumeEntity->setRenderPass(Entity::RENDERPASS_POST_POSTPROCESSING);
112 modelBoundingVolumeEntity->setEnabled(
false);
113 modelBoundingVolumeEntity->update();
118 auto modelBoundingVolumeEntityId =
"tdme.prototype.bv.editing";
120 if (prototypeBoundingVolume->getModel() !=
nullptr) {
130 transformations.
setScale(obb->getHalfExtension().clone().scale(2.0f));
131 transformations.
setScale(boundingVolumesEntity->getScale().clone().scale(transformations.
getScale()));
134 auto modelBoundingVolumeEntity =
new Object3D(modelBoundingVolumeEntityId, Tools::getDefaultObb());
135 modelBoundingVolumeEntity->fromTransformations(transformations);
136 modelBoundingVolumeEntity->setRenderPass(Entity::RENDERPASS_POST_POSTPROCESSING);
137 modelBoundingVolumeEntity->setEnabled(
false);
141 if (
dynamic_cast<Sphere*
>(bv->getBoundingVolume()) !=
nullptr) {
142 auto sphere =
dynamic_cast<Sphere*
>(bv->getBoundingVolume());
143 pivot = sphere->getCenter();
145 if (
dynamic_cast<Capsule*
>(bv->getBoundingVolume()) !=
nullptr) {
146 auto capsule =
dynamic_cast<Capsule*
>(bv->getBoundingVolume());
147 auto a = capsule->
getA();
148 auto b = capsule->getB();
149 pivot = capsule->getA().
clone().
add(capsule->getB()).scale(0.5f);
151 auto modelBoundingVolumeEntity =
new Object3D(modelBoundingVolumeEntityId, prototypeBoundingVolume->getModel());
152 modelBoundingVolumeEntity->setRenderPass(Entity::RENDERPASS_POST_POSTPROCESSING);
153 modelBoundingVolumeEntity->setPivot(pivot);
154 modelBoundingVolumeEntity->setScale(boundingVolumesEntity->getScale());
155 modelBoundingVolumeEntity->setPivot(modelBoundingVolumeEntity->getPivot().clone().scale(boundingVolumesEntity->getScale()));
156 modelBoundingVolumeEntity->setEnabled(
false);
157 modelBoundingVolumeEntity->update();
166 if (prototype ==
nullptr)
return;
175 if (prototype ==
nullptr)
return;
178 prototypeBoundingVolume->
setupSphere(center, radius);
184 if (prototype ==
nullptr)
return;
193 if (prototype ==
nullptr)
return;
196 prototypeBoundingVolume->
setupAabb(min, max);
202 if (prototype ==
nullptr)
return;
205 prototypeBoundingVolume->
setupObb(center, axis0, axis1, axis2, halfExtension);
211 if (prototype ==
nullptr)
return;
221 if (prototype ==
nullptr)
return;
225 FileSystem::getInstance()->getPathName(fileName),
226 FileSystem::getInstance()->getFileName(fileName)
232 if (prototype ==
nullptr)
return;
235 if (bvsEntityHierarchy !=
nullptr) {
236 for (
auto i = 0; i < bvsEntityHierarchy->getEntities().size(); i++) {
237 auto modelBoundingVolume = bvsEntityHierarchy->
getEntity(
"tdme.prototype.bv." + to_string(i));
241 auto modelBoundingVolume =
engine->
getEntity(
"tdme.prototype.bv.editing");
242 if (modelBoundingVolume !=
nullptr) {
244 modelBoundingVolume->setPickable(
true);
258 if (bv ==
nullptr)
return;
260 if (
dynamic_cast<Sphere*
>(bv->getBoundingVolume()) ==
nullptr &&
261 dynamic_cast<Capsule*
>(bv->getBoundingVolume()) ==
nullptr &&
266 for (
auto i = 0; i <
engine->
getGUI()->getKeyboardEvents().size(); i++) {
268 if (event.isProcessed() ==
true)
continue;
269 auto isKeyDown =
event.getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED;
275 for (
auto i = 0; i <
engine->
getGUI()->getMouseEvents().size(); i++) {
278 if (event.isProcessed() ==
true)
continue;
281 if (event.getType() == GUIMouseEvent::MOUSEEVENT_RELEASED) {
289 event.setProcessed(
true);
291 if (event.getType() == GUIMouseEvent::MOUSEEVENT_PRESSED) {
292 Node* selectedEntityNode =
nullptr;
293 Entity* selectedEntity =
nullptr;
298 event.setProcessed(
true);
303 event.setProcessed(
true);
305 if (selectedEntity !=
nullptr) {
308 event.setProcessed(
true);
311 if (event.getType() == GUIMouseEvent::MOUSEEVENT_DRAGGED) {
320 if (gizmoEntity !=
nullptr && selectedEntity !=
nullptr) {
321 selectedEntity->
setTranslation(selectedEntity->getTranslation().clone().add(deltaTranslation));
322 selectedEntity->setScale(selectedEntity->getScale().clone().scale(deltaScale));
323 if (selectedEntity->getRotationCount() == 0) {
324 selectedEntity->addRotation(Rotation::Z_AXIS, 0.0f);
325 selectedEntity->addRotation(Rotation::Y_AXIS, 0.0f);
326 selectedEntity->addRotation(Rotation::X_AXIS, 0.0f);
328 selectedEntity->setRotationAngle(0, selectedEntity->getRotationAngle(0) + deltaRotation[2]);
329 selectedEntity->setRotationAngle(1, selectedEntity->getRotationAngle(1) + deltaRotation[1]);
330 selectedEntity->setRotationAngle(2, selectedEntity->getRotationAngle(2) + deltaRotation[0]);
331 selectedEntity->update();
335 if (Math::abs(deltaTranslation.
getX()) > Math::EPSILON ||
336 Math::abs(deltaTranslation.
getY()) > Math::EPSILON ||
337 Math::abs(deltaTranslation.
getZ()) > Math::EPSILON) {
343 event.setProcessed(
true);
352 if (selectedEntity !=
nullptr) {
353 Gizmo::updateGizmo(selectedEntity->getBoundingBoxTransformed()->getCenter(), selectedEntity->getTransformations());
361 Gizmo::setGizmoRotation(transformations);
366 auto transformations = _transformations;
367 auto objectScaleInverted =
Vector3(
368 1.0f / objectScale.
getX(),
369 1.0f / objectScale.
getY(),
370 1.0f / objectScale.
getZ()
372 transformations.setScale(transformations.getScale().clone().scale(objectScaleInverted));
373 transformations.update();
375 if (
dynamic_cast<Sphere*
>(bv->getBoundingVolume()) !=
nullptr) {
376 auto sphere =
dynamic_cast<Sphere*
>(bv->getBoundingVolume());
377 auto center = sphere->
getCenter().
clone().
add(transformations.getTranslation().clone().scale(objectScaleInverted));
391 auto radius = Math::clamp(sphere->getRadius() * Math::abs(scale), 0.01f, 1000.0f);
395 if (
dynamic_cast<Capsule*
>(bv->getBoundingVolume()) !=
nullptr) {
396 auto capsule =
dynamic_cast<Capsule*
>(bv->getBoundingVolume());
397 auto a = capsule->
getA();
398 auto b = capsule->getB();
399 transformations.setTranslation(transformations.getTranslation().clone().scale(objectScaleInverted));
400 transformations.setPivot(transformations.getPivot().clone().scale(objectScaleInverted));
401 transformations.update();
402 a = transformations.getTransformationsMatrix().multiply(a);
403 b = transformations.getTransformationsMatrix().multiply(b);
417 auto radius = Math::clamp(capsule->getRadius() * Math::abs(scale), 0.01f, 1000.0f);
423 auto center = transformations.getTranslation().
clone().
scale(objectScaleInverted);
424 auto axis0 = OrientedBoundingBox::AABB_AXIS_X;
425 auto axis1 = OrientedBoundingBox::AABB_AXIS_Y;
426 auto axis2 = OrientedBoundingBox::AABB_AXIS_Z;
427 auto halfExtension = obb->getHalfExtension();
428 axis0 = transformations.getTransformationsMatrix().multiplyNoTranslation(axis0);
429 axis1 = transformations.getTransformationsMatrix().multiplyNoTranslation(axis1);
430 axis2 = transformations.getTransformationsMatrix().multiplyNoTranslation(axis2);
433 Math::clamp(axis0.computeLength() / 2.0f, 0.01f, 1000.0f),
434 Math::clamp(axis1.computeLength() / 2.0f, 0.01f, 1000.0f),
435 Math::clamp(axis2.computeLength() / 2.0f, 0.01f, 1000.0f)
441 if ((
boundingVolumeTypeMask & PrototypePhysicsSubController::BOUNDINGVOLUMETYPE_ORIENTEDBOUNDINGBOX) == PrototypePhysicsSubController::BOUNDINGVOLUMETYPE_ORIENTEDBOUNDINGBOX) {
445 if ((
boundingVolumeTypeMask & PrototypePhysicsSubController::BOUNDINGVOLUMETYPE_BOUNDINGBOX) == PrototypePhysicsSubController::BOUNDINGVOLUMETYPE_BOUNDINGBOX) {
bool removeEntity(const string &id)
Removes an entity.
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.
Entity * getEntity(const string &id)
Returns a entity by given id.
Entity hierarchy to be used with engine class.
Entity * getEntity(const string &id)
virtual void setTranslation(const Vector3 &translation)=0
Set translation.
virtual void setEnabled(bool enabled)=0
Enable/disable rendering.
Object 3D to be used with engine class.
Representation of a 3d model.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Bounding volume interface.
const Vector3 & getCenter() const
Capsule physics primitive.
const Vector3 & getA() const
Convex mesh physics primitive.
Oriented bounding box physics primitive.
BoundingVolume * clone() const override
Clones this bounding volume.
Sphere physics primitive.
Prototype bounding volume definition.
void clearConvexMesh()
Clear convex mesh.
void setupNone()
Setup bounding volume none.
void setupObb(const Vector3 ¢er, const Vector3 &axis0, const Vector3 &axis1, const Vector3 &axis2, const Vector3 &halfExtension)
Setup bounding volume oriented bounding box.
void setupSphere(const Vector3 ¢er, float radius)
Setup bounding volume sphere.
void setupAabb(const Vector3 &min, const Vector3 &max)
Setup bounding volume bounding box.
void setupCapsule(const Vector3 &a, const Vector3 &b, float radius)
Setup bounding volume capsule.
void setupConvexMesh(const string &pathName, const string &fileName)
Setup convex mesh.
PrototypeBoundingVolume * getBoundingVolume(int idx)
Get bounding volume at given index.
vector< GUIMouseEvent > & getMouseEvents()
vector< GUIKeyboardEvent > & getKeyboardEvents()
Matrix4x4 & identity()
Setup identity matrix.
Matrix4x4 & setAxes(const Vector3 &xAxis, const Vector3 &yAxis, const Vector3 &zAxis)
Set coordinate system axes.
Vector3 & normalize()
Normalize the vector.
Vector3 & set(float x, float y, float z)
Set up vector.
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.
File system singleton class.