38Gizmo::Gizmo(
Engine* engine,
const string&
id, int32_t gizmoTypeMask)
59 q1.
rotate(zNearNormal, -45.0f);
60 q2.
rotate(zNearNormal, 135.0f);
77 auto baXDivdcX = baX / dcX;
78 auto baYDivdcY = baY / dcY;
79 auto scale = baXDivdcX / 3.0f ;
205 if (gizmoEntity ==
nullptr) gizmoEntity =
dynamic_cast<Object3D*
>(
engine->
getEntity(
id +
".tdme.gizmo.translation"));
206 if (gizmoEntity ==
nullptr) gizmoEntity =
dynamic_cast<Object3D*
>(
engine->
getEntity(
id +
".tdme.gizmo.rotations"));
207 if (gizmoEntity ==
nullptr) gizmoEntity =
dynamic_cast<Object3D*
>(
engine->
getEntity(
id +
".tdme.gizmo.scale"));
221 if (gizmoEntity ==
nullptr)
return false;
225 for (
auto& vertex: vertices) {
226 vertex.
add(gizmoEntity->getTranslation());
228 if (LineSegment::doesLineSegmentCollideWithTriangle(
232 nearPlaneWorldCoordinate,
233 farPlaneWorldCoordinate,
234 lineTriangleContact) ==
true ||
235 LineSegment::doesLineSegmentCollideWithTriangle(
239 nearPlaneWorldCoordinate,
240 farPlaneWorldCoordinate,
241 lineTriangleContact) ==
true
244 if (success ==
true) {
256 auto deltaX = mouseX - mouseLastX;
257 auto deltaY = mouseY - mouseLastY;
258 deltaTranslation.
set(0.0f, 0.0f, 0.0f);
259 deltaRotation.
set(0.0f, 0.0f, 0.0f);
260 deltaScale.
set(1.0f, 1.0f, 1.0f);
262 const vector<Vector3> planeXY =
264 Vector3(-5000.0f, -5000.0f, 0.0f),
265 Vector3(-5000.0f, 5000.0f, 0.0f),
266 Vector3(5000.0f, 5000.0f, 0.0f),
267 Vector3(5000.0f, -5000.0f, 0.0f)
269 const vector<Vector3> planeXZ =
271 Vector3(-5000.0f, 0.0f, -5000.0f),
272 Vector3(-5000.0f, 0.0f, 5000.0f),
273 Vector3(5000.0f, 0.0f, 5000.0f),
274 Vector3(5000.0f, 0.0f, -5000.0f)
276 const vector<Vector3> planeYZ =
278 Vector3(0.0f, -5000.0f, -5000.0f),
279 Vector3(0.0f, -5000.0f, 5000.0f),
280 Vector3(0.0f, 5000.0f, 5000.0f),
281 Vector3(0.0f, 5000.0f, -5000.0f)
287 vector<Vector3> vertices = planeXZ;
289 deltaTranslation.
setX(gizmoDeltaMovement.
getX());
295 vector<Vector3> vertices = planeYZ;
297 deltaTranslation.
setY(gizmoDeltaMovement.
getY());
303 vector<Vector3> vertices = planeXZ;
305 deltaTranslation.
setZ(gizmoDeltaMovement.
getZ());
311 vector<Vector3> vertices = planeYZ;
313 deltaTranslation.
setY(gizmoDeltaMovement.
getY());
314 deltaTranslation.
setZ(gizmoDeltaMovement.
getZ());
320 vector<Vector3> vertices = planeXZ;
322 deltaTranslation.
setX(gizmoDeltaMovement.
getX());
323 deltaTranslation.
setZ(gizmoDeltaMovement.
getZ());
329 vector<Vector3> vertices = planeXY;
331 deltaTranslation.
setX(gizmoDeltaMovement.
getX());
332 deltaTranslation.
setY(gizmoDeltaMovement.
getY());
338 vector<Vector3> vertices = planeXZ;
346 vector<Vector3> vertices = planeYZ;
354 vector<Vector3> vertices = planeXZ;
362 vector<Vector3> vertices = planeYZ;
370 vector<Vector3> vertices = planeXZ;
378 vector<Vector3> vertices = planeXY;
401 if (selectedEntity !=
nullptr &&
402 StringTools::startsWith(selectedEntity->
getId(),
id +
".tdme.gizmo.") ==
true && selectedEntityNode !=
nullptr) {
403 auto selectedEntityNodeId = selectedEntityNode->
getId();
404 if (StringTools::startsWith(selectedEntityNodeId,
"all_") ==
true) selectedEntityNodeId = StringTools::substring(selectedEntityNodeId, 4);
430 if (gizmoEntity !=
nullptr) {
431 gizmoEntity->
setNodeTransformationsMatrix(
"scale_x", gizmoEntity->getModel()->getNodeById(
"scale_x")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
432 gizmoEntity->setNodeTransformationsMatrix(
"scale_y", gizmoEntity->getModel()->getNodeById(
"scale_y")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
433 gizmoEntity->setNodeTransformationsMatrix(
"scale_z", gizmoEntity->getModel()->getNodeById(
"scale_z")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
434 gizmoEntity->setNodeTransformationsMatrix(
"scale_x_plane", gizmoEntity->getModel()->getNodeById(
"scale_x_plane")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
435 gizmoEntity->setNodeTransformationsMatrix(
"scale_y_plane", gizmoEntity->getModel()->getNodeById(
"scale_y_plane")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
436 gizmoEntity->setNodeTransformationsMatrix(
"scale_z_plane", gizmoEntity->getModel()->getNodeById(
"scale_x_plane")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
437 gizmoEntity->update();
442 if (gizmoEntity !=
nullptr) {
443 gizmoEntity->
setNodeTransformationsMatrix(
"rotate_x", gizmoEntity->getModel()->getNodeById(
"rotate_x")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
444 gizmoEntity->setNodeTransformationsMatrix(
"rotate_y", gizmoEntity->getModel()->getNodeById(
"rotate_y")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
445 gizmoEntity->setNodeTransformationsMatrix(
"rotate_z", gizmoEntity->getModel()->getNodeById(
"rotate_z")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
446 gizmoEntity->update();
451 if (gizmoEntity !=
nullptr) {
452 if (gizmoEntity->getModel()->getNodeById(
"all_scale_x") !=
nullptr) gizmoEntity->
setNodeTransformationsMatrix(
"all_scale_x", gizmoEntity->getModel()->getNodeById(
"all_scale_x")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
453 if (gizmoEntity->getModel()->getNodeById(
"all_scale_y") !=
nullptr) gizmoEntity->setNodeTransformationsMatrix(
"all_scale_y", gizmoEntity->getModel()->getNodeById(
"all_scale_y")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
454 if (gizmoEntity->getModel()->getNodeById(
"all_scale_z") !=
nullptr) gizmoEntity->setNodeTransformationsMatrix(
"all_scale_z", gizmoEntity->getModel()->getNodeById(
"all_scale_z")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
455 if (gizmoEntity->getModel()->getNodeById(
"scale_x") !=
nullptr) gizmoEntity->setNodeTransformationsMatrix(
"scale_x", gizmoEntity->getModel()->getNodeById(
"scale_x")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
456 if (gizmoEntity->getModel()->getNodeById(
"scale_y") !=
nullptr) gizmoEntity->setNodeTransformationsMatrix(
"scale_y", gizmoEntity->getModel()->getNodeById(
"scale_y")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
457 if (gizmoEntity->getModel()->getNodeById(
"scale_z") !=
nullptr) gizmoEntity->setNodeTransformationsMatrix(
"scale_z", gizmoEntity->getModel()->getNodeById(
"scale_z")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
458 if (gizmoEntity->getModel()->getNodeById(
"scale_x_plane") !=
nullptr) gizmoEntity->setNodeTransformationsMatrix(
"scale_x_plane", gizmoEntity->getModel()->getNodeById(
"scale_x_plane")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
459 if (gizmoEntity->getModel()->getNodeById(
"scale_y_plane") !=
nullptr) gizmoEntity->setNodeTransformationsMatrix(
"scale_y_plane", gizmoEntity->getModel()->getNodeById(
"scale_y_plane")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
460 if (gizmoEntity->getModel()->getNodeById(
"scale_z_plane") !=
nullptr) gizmoEntity->setNodeTransformationsMatrix(
"scale_z_plane", gizmoEntity->getModel()->getNodeById(
"scale_x_plane")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
461 if (gizmoEntity->getModel()->getNodeById(
"rotate_x") !=
nullptr) gizmoEntity->setNodeTransformationsMatrix(
"rotate_x", gizmoEntity->getModel()->getNodeById(
"rotate_x")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
462 if (gizmoEntity->getModel()->getNodeById(
"rotate_y") !=
nullptr) gizmoEntity->setNodeTransformationsMatrix(
"rotate_y", gizmoEntity->getModel()->getNodeById(
"rotate_y")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
463 if (gizmoEntity->getModel()->getNodeById(
"rotate_z") !=
nullptr) gizmoEntity->setNodeTransformationsMatrix(
"rotate_z", gizmoEntity->getModel()->getNodeById(
"rotate_z")->getTransformationsMatrix().clone().multiply(rotationsMatrix));
464 gizmoEntity->update();
const Vector3 & getLookFrom() const
const Matrix4x4 & getModelViewProjectionMatrix() const
bool removeEntity(const string &id)
Removes an entity.
Vector3 computeWorldCoordinateByMousePosition(int32_t mouseX, int32_t mouseY, float z)
Compute world coordinate from mouse position and z value.
void addEntity(Entity *entity)
Adds an entity by id.
Entity * getEntity(const string &id)
Returns a entity by given id.
virtual const string & getId()=0
const array< Plane, 6 > & getPlanes()
Object 3D to be used with engine class.
void setTranslation(const Vector3 &translation) override
Set translation.
void update() override
Update transformations.
void setPickable(bool pickable) override
Set this object pickable.
void setScale(const Vector3 &scale) override
Set scale.
void setDisableDepthTest(bool disableDepthTest)
Set disable depth test.
int64_t getDeltaTime()
Gets the time passed between last and current frame.
Representation of a 3d model.
const string & getId()
Returns id.
Line segment helper functions.
void setNodeTransformationsMatrix(const string &id, const Matrix4x4 &matrix)
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.
Quaternion & rotate(const Vector3 &axis, float angle)
Creates a rotation quaternion.
Quaternion & multiply(const Quaternion q)
Multiplies this quaternion with quaternion q.
Matrix4x4 computeMatrix() const
Computes a matrix from given.
Vector3 & setZ(float z)
Set Z.
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 & setY(float y)
Set Y.
Vector4 & scale(float scale)
Scale this vector.