TDME2 1.9.121
PrototypePhysicsSubView.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
4#include <tdme/math/Math.h>
5
15#include <tdme/engine/Engine.h>
16#include <tdme/engine/Entity.h>
23#include <tdme/gui/GUI.h>
24#include <tdme/math/Math.h>
25#include <tdme/math/Vector3.h>
35
37
39
57using tdme::gui::GUI;
69
70PrototypePhysicsSubView::PrototypePhysicsSubView(Engine* engine, PrototypePhysicsSubController* prototypePhysicsSubController, PopUps* popUps, int maxBoundingVolumeCount, int32_t boundingVolumeTypeMask): Gizmo(engine, "epv")
71{
72 this->engine = engine;
73 this->popUps = popUps;
74 this->prototypePhysicsSubController = prototypePhysicsSubController;
75 this->maxBoundingVolumeCount = maxBoundingVolumeCount;
79 this->displayBoundingVolume = false;
80 this->boundingVolumeTypeMask = boundingVolumeTypeMask;
81}
82
84}
85
87{
88 return popUps;
89}
90
93 dynamic_cast<EntityHierarchy*>(engine->getEntity("tdme.prototype.bvs"))->removeEntity("tdme.prototype.bv." + to_string(idx));
94 }
95 engine->removeEntity("tdme.prototype.bv.editing");
96}
97
99{
100 auto prototypeBoundingVolume = prototype->getBoundingVolume(idx);
101 if (prototypeBoundingVolume == nullptr) return;
102
103 {
104 Vector3 objectScale(0.15f, 0.15f, 0.15f); // TODO: have the default not as fixed constant here (this relates to bounding box fallback in Tools::setupPrototype() if none available)
105 auto modelEntity = engine->getEntity("model");
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();
114 dynamic_cast<EntityHierarchy*>(engine->getEntity("tdme.prototype.bvs"))->addEntity(modelBoundingVolumeEntity);
115 }
116 }
117 if (displayBoundingVolumeIdx == idx) {
118 auto modelBoundingVolumeEntityId = "tdme.prototype.bv.editing";
119 auto boundingVolumesEntity = engine->getEntity("tdme.prototype.bvs");
120 if (prototypeBoundingVolume->getModel() != nullptr) {
121 auto bv = prototype->getBoundingVolume(idx);
122 if (dynamic_cast<OrientedBoundingBox*>(bv->getBoundingVolume()) != nullptr) {
123 auto obb = dynamic_cast<OrientedBoundingBox*>(bv->getBoundingVolume());
124 Transformations transformations;
125 transformations.fromMatrix(
126 Matrix4x4().identity().setAxes(obb->getAxes()[0], obb->getAxes()[1], obb->getAxes()[2]),
127 RotationOrder::ZYX
128 );
129 transformations.setTranslation(obb->getCenter());
130 transformations.setScale(obb->getHalfExtension().clone().scale(2.0f));
131 transformations.setScale(boundingVolumesEntity->getScale().clone().scale(transformations.getScale()));
132 transformations.setTranslation(transformations.getTranslation().clone().scale(boundingVolumesEntity->getScale()));
133 transformations.update();
134 auto modelBoundingVolumeEntity = new Object3D(modelBoundingVolumeEntityId, Tools::getDefaultObb());
135 modelBoundingVolumeEntity->fromTransformations(transformations);
136 modelBoundingVolumeEntity->setRenderPass(Entity::RENDERPASS_POST_POSTPROCESSING);
137 modelBoundingVolumeEntity->setEnabled(false);
138 engine->addEntity(modelBoundingVolumeEntity);
139 } else {
140 Vector3 pivot;
141 if (dynamic_cast<Sphere*>(bv->getBoundingVolume()) != nullptr) {
142 auto sphere = dynamic_cast<Sphere*>(bv->getBoundingVolume());
143 pivot = sphere->getCenter();
144 } else
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);
150 }
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();
158 engine->addEntity(modelBoundingVolumeEntity);
159 }
160 }
161 }
162}
163
165{
166 if (prototype == nullptr) return;
168 auto prototypeBoundingVolume = prototype->getBoundingVolume(idx);
169 prototypeBoundingVolume->setupNone();
170 setupModelBoundingVolume(prototype, idx);
171}
172
173void PrototypePhysicsSubView::applyBoundingVolumeSphere(Prototype* prototype, int idx, const Vector3& center, float radius)
174{
175 if (prototype == nullptr) return;
177 auto prototypeBoundingVolume = prototype->getBoundingVolume(idx);
178 prototypeBoundingVolume->setupSphere(center, radius);
179 setupModelBoundingVolume(prototype, idx);
180}
181
182void PrototypePhysicsSubView::applyBoundingVolumeCapsule(Prototype* prototype, int idx, const Vector3& a, const Vector3& b, float radius)
183{
184 if (prototype == nullptr) return;
186 auto prototypeBoundingVolume = prototype->getBoundingVolume(idx);
187 prototypeBoundingVolume->setupCapsule(a, b, radius);
188 setupModelBoundingVolume(prototype, idx);
189}
190
191void PrototypePhysicsSubView::applyBoundingVolumeAabb(Prototype* prototype, int idx, const Vector3& min, const Vector3& max)
192{
193 if (prototype == nullptr) return;
195 auto prototypeBoundingVolume = prototype->getBoundingVolume(idx);
196 prototypeBoundingVolume->setupAabb(min, max);
197 setupModelBoundingVolume(prototype, idx);
198}
199
200void PrototypePhysicsSubView::applyBoundingVolumeObb(Prototype* prototype, int idx, const Vector3& center, const Vector3& axis0, const Vector3& axis1, const Vector3& axis2, const Vector3& halfExtension)
201{
202 if (prototype == nullptr) return;
204 auto prototypeBoundingVolume = prototype->getBoundingVolume(idx);
205 prototypeBoundingVolume->setupObb(center, axis0, axis1, axis2, halfExtension);
206 setupModelBoundingVolume(prototype, idx);
207}
208
210{
211 if (prototype == nullptr) return;
213 auto prototypeBoundingVolume = prototype->getBoundingVolume(idx);
214 prototypeBoundingVolume->clearConvexMesh();
215 setupModelBoundingVolume(prototype, idx);
216}
217
218
219void PrototypePhysicsSubView::applyBoundingVolumeConvexMesh(Prototype* prototype, int idx, const string& fileName)
220{
221 if (prototype == nullptr) return;
223 auto prototypeBoundingVolume = prototype->getBoundingVolume(idx);
224 prototypeBoundingVolume->setupConvexMesh(
225 FileSystem::getInstance()->getPathName(fileName),
226 FileSystem::getInstance()->getFileName(fileName)
227 );
228 setupModelBoundingVolume(prototype, idx);
229}
230
232 if (prototype == nullptr) return;
233
234 auto bvsEntityHierarchy = dynamic_cast<EntityHierarchy*>(engine->getEntity("tdme.prototype.bvs"));
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));
238 if (modelBoundingVolume != nullptr) modelBoundingVolume->setEnabled(displayBoundingVolume == true && displayBoundingVolumeIdx == DISPLAY_BOUNDINGVOLUMEIDX_ALL);
239 }
240 }
241 auto modelBoundingVolume = engine->getEntity("tdme.prototype.bv.editing");
242 if (modelBoundingVolume != nullptr) {
243 modelBoundingVolume->setEnabled(true);
244 modelBoundingVolume->setPickable(true);
245 } else
248 }
249}
250
253 removeGizmo();
254 return;
255 }
256 // we only support sphere, capsule and obb
257 auto bv = prototype->getBoundingVolume(displayBoundingVolumeIdx);
258 if (bv == nullptr) return;
259
260 if (dynamic_cast<Sphere*>(bv->getBoundingVolume()) == nullptr &&
261 dynamic_cast<Capsule*>(bv->getBoundingVolume()) == nullptr &&
262 dynamic_cast<OrientedBoundingBox*>(bv->getBoundingVolume()) == nullptr) {
263 return;
264 }
265
266 for (auto i = 0; i < engine->getGUI()->getKeyboardEvents().size(); i++) {
267 auto& event = engine->getGUI()->getKeyboardEvents()[i];
268 if (event.isProcessed() == true) continue;
269 auto isKeyDown = event.getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED;
270 if (Character::toLowerCase(event.getKeyChar()) == '1') { if (isKeyDown == true) setGizmoType(GIZMOTYPE_ALL); updateGizmo(prototype); event.setProcessed(true); }
271 if (Character::toLowerCase(event.getKeyChar()) == '2') { if (isKeyDown == true) setGizmoType(GIZMOTYPE_TRANSLATE); updateGizmo(prototype); event.setProcessed(true); }
272 if (Character::toLowerCase(event.getKeyChar()) == '3') { if (isKeyDown == true) setGizmoType(GIZMOTYPE_ROTATE); updateGizmo(prototype); event.setProcessed(true); }
273 if (Character::toLowerCase(event.getKeyChar()) == '4') { if (isKeyDown == true) setGizmoType(GIZMOTYPE_SCALE); updateGizmo(prototype); event.setProcessed(true); }
274 }
275 for (auto i = 0; i < engine->getGUI()->getMouseEvents().size(); i++) {
276 auto& event = engine->getGUI()->getMouseEvents()[i];
277
278 if (event.isProcessed() == true) continue;
279
280 if (event.getButton() == MOUSE_BUTTON_LEFT) {
281 if (event.getType() == GUIMouseEvent::MOUSEEVENT_RELEASED) {
282 auto selectedEntity = engine->getEntity("tdme.prototype.bv.editing");
283 if (selectedEntity != nullptr) applyBoundingVolumeTransformations(prototype, displayBoundingVolumeIdx, selectedEntity->getTransformations(), objectScale, false);
284 if (getGizmoMode() != GIZMOMODE_NONE) {
286 updateGizmo(prototype);
287 }
288 totalDeltaScale.set(0.0, 0.0f, 0.0f);
289 event.setProcessed(true);
290 } else
291 if (event.getType() == GUIMouseEvent::MOUSEEVENT_PRESSED) {
292 Node* selectedEntityNode = nullptr;
293 Entity* selectedEntity = nullptr;
294 if (getGizmoMode() == GIZMOMODE_NONE) selectedEntity = engine->getEntityByMousePosition(event.getXUnscaled(), event.getYUnscaled(), nullptr, &selectedEntityNode);
295 if (getGizmoMode() == GIZMOMODE_NONE && selectedEntity == nullptr) {
296 removeGizmo();
297 totalDeltaScale.set(0.0, 0.0f, 0.0f);
298 event.setProcessed(true);
299 } else
300 if (determineGizmoMode(selectedEntity, selectedEntityNode) == true) {
301 mouseDownLastX = event.getXUnscaled();
302 mouseDownLastY = event.getYUnscaled();
303 event.setProcessed(true);
304 } else
305 if (selectedEntity != nullptr) {
306 updateGizmo(prototype);
307 totalDeltaScale.set(0.0, 0.0f, 0.0f);
308 event.setProcessed(true);
309 }
310 } else
311 if (event.getType() == GUIMouseEvent::MOUSEEVENT_DRAGGED) {
312 if (getGizmoMode() != GIZMOMODE_NONE) {
313 Vector3 deltaTranslation;
314 Vector3 deltaRotation;
315 Vector3 deltaScale;
316 if (determineGizmoDeltaTransformations(mouseDownLastX, mouseDownLastY, event.getXUnscaled(), event.getYUnscaled(), deltaTranslation, deltaRotation, deltaScale) == true) {
317 totalDeltaScale.add(deltaScale.clone().sub(Vector3(1.0f, 1.0f, 1.0f)));
318 auto gizmoEntity = getGizmoObject3D();
319 auto selectedEntity = engine->getEntity("tdme.prototype.bv.editing");
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);
327 }
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();
332 setGizmoRotation(prototype, selectedEntity->getTransformations());
333 applyBoundingVolumeTransformations(prototype, displayBoundingVolumeIdx, selectedEntity->getTransformations(), objectScale, true);
334 }
335 if (Math::abs(deltaTranslation.getX()) > Math::EPSILON ||
336 Math::abs(deltaTranslation.getY()) > Math::EPSILON ||
337 Math::abs(deltaTranslation.getZ()) > Math::EPSILON) {
338 updateGizmo(prototype);
339 }
340 }
341 mouseDownLastX = event.getXUnscaled();
342 mouseDownLastY = event.getYUnscaled();
343 event.setProcessed(true);
344 }
345 }
346 }
347 }
348}
349
351 auto selectedEntity = engine->getEntity("tdme.prototype.bv.editing");
352 if (selectedEntity != nullptr) {
353 Gizmo::updateGizmo(selectedEntity->getBoundingBoxTransformed()->getCenter(), selectedEntity->getTransformations());
354 } else {
355 removeGizmo();
356 }
357}
358
361 Gizmo::setGizmoRotation(transformations);
362}
363
364void PrototypePhysicsSubView::applyBoundingVolumeTransformations(Prototype* prototype, int i, const Transformations& _transformations, const Vector3& objectScale, bool guiOnly) {
365 auto modelEntity = engine->getEntity("model");
366 auto transformations = _transformations;
367 auto objectScaleInverted = Vector3(
368 1.0f / objectScale.getX(),
369 1.0f / objectScale.getY(),
370 1.0f / objectScale.getZ()
371 );
372 transformations.setScale(transformations.getScale().clone().scale(objectScaleInverted));
373 transformations.update();
374 auto bv = prototype->getBoundingVolume(i);
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));
378 auto scale = 1.0f;
379 if (Math::abs(totalDeltaScale.getX()) > Math::abs(totalDeltaScale.getY()) &&
380 Math::abs(totalDeltaScale.getX()) > Math::abs(totalDeltaScale.getZ())) {
381 scale+= totalDeltaScale.getX();
382 } else
383 if (Math::abs(totalDeltaScale.getY()) > Math::abs(totalDeltaScale.getX()) &&
384 Math::abs(totalDeltaScale.getY()) > Math::abs(totalDeltaScale.getZ())) {
385 scale+= totalDeltaScale.getY();
386 } else
387 if (Math::abs(totalDeltaScale.getZ()) > Math::abs(totalDeltaScale.getX()) &&
388 Math::abs(totalDeltaScale.getZ()) > Math::abs(totalDeltaScale.getY())) {
389 scale+= totalDeltaScale.getZ();
390 }
391 auto radius = Math::clamp(sphere->getRadius() * Math::abs(scale), 0.01f, 1000.0f);
393 if (guiOnly == false) applyBoundingVolumeSphere(prototype, i, center, radius);
394 } else
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);
404 auto scale = 1.0f;
405 if (Math::abs(totalDeltaScale.getX()) > Math::abs(totalDeltaScale.getY()) &&
406 Math::abs(totalDeltaScale.getX()) > Math::abs(totalDeltaScale.getZ())) {
407 scale+= totalDeltaScale.getX();
408 } else
409 if (Math::abs(totalDeltaScale.getY()) > Math::abs(totalDeltaScale.getX()) &&
410 Math::abs(totalDeltaScale.getY()) > Math::abs(totalDeltaScale.getZ())) {
411 scale+= totalDeltaScale.getY();
412 } else
413 if (Math::abs(totalDeltaScale.getZ()) > Math::abs(totalDeltaScale.getX()) &&
414 Math::abs(totalDeltaScale.getZ()) > Math::abs(totalDeltaScale.getY())) {
415 scale+= totalDeltaScale.getZ();
416 }
417 auto radius = Math::clamp(capsule->getRadius() * Math::abs(scale), 0.01f, 1000.0f);
419 if (guiOnly == false) applyBoundingVolumeCapsule(prototype, i, a, b, radius);
420 } else
421 if (dynamic_cast<OrientedBoundingBox*>(bv->getBoundingVolume()) != nullptr) {
422 auto obb = dynamic_cast<OrientedBoundingBox*>(bv->getBoundingVolume());
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);
431 halfExtension.set(
432 Vector3(
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)
436 )
437 );
438 axis0.normalize();
439 axis1.normalize();
440 axis2.normalize();
441 if ((boundingVolumeTypeMask & PrototypePhysicsSubController::BOUNDINGVOLUMETYPE_ORIENTEDBOUNDINGBOX) == PrototypePhysicsSubController::BOUNDINGVOLUMETYPE_ORIENTEDBOUNDINGBOX) {
442 prototypePhysicsSubController->setBoundingVolumeOBBDetails(center, axis0, axis1, axis2, halfExtension);
443 if (guiOnly == false) applyBoundingVolumeObb(prototype, i, center, axis0, axis1, axis2, halfExtension);
444 } else
445 if ((boundingVolumeTypeMask & PrototypePhysicsSubController::BOUNDINGVOLUMETYPE_BOUNDINGBOX) == PrototypePhysicsSubController::BOUNDINGVOLUMETYPE_BOUNDINGBOX) {
446 OrientedBoundingBox obb(center, axis0, axis1, axis2, halfExtension);
447 BoundingBox aabb(&obb);
448 // prototypePhysicsSubController->setBoundingVolumeAABBDetails(i, aabb.getMin(), aabb.getMax());
449 if (guiOnly == false) applyBoundingVolumeAabb(prototype, i, aabb.getMin(), aabb.getMax());
450 }
451 }
452}
453
455 engine->removeEntity("tdme.prototype.bv.editing");
458}
459
461 engine->removeEntity("tdme.prototype.bv.editing");
463}
464
467}
#define MOUSE_BUTTON_LEFT
Engine main class.
Definition: Engine.h:122
bool removeEntity(const string &id)
Removes an entity.
Definition: Engine.cpp:451
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
Entity * getEntity(const string &id)
Returns a entity by given id.
Definition: Engine.h:981
Entity hierarchy to be used with engine class.
Entity * getEntity(const string &id)
TDME engine entity.
Definition: Entity.h:31
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.
Definition: Object3D.h:60
Rotation representation.
Definition: Rotation.h:18
Transformations which contain scale, rotations and translation.
virtual void fromMatrix(const Matrix4x4 &matrix, RotationOrder *rotationOrder)
Set up this transformations from given matrix and rotation order.
void setTranslation(const Vector3 &translation)
Set translation.
const Vector3 & getScale() const
void setScale(const Vector3 &scale)
Set scale.
virtual void update()
Computes transformation matrix.
const Vector3 & getTranslation() const
Representation of a 3d model.
Definition: Model.h:32
Model node.
Definition: Node.h:31
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
Capsule physics primitive.
Definition: Capsule.h:18
const Vector3 & getA() const
Definition: Capsule.cpp:34
Convex mesh physics primitive.
Definition: ConvexMesh.h:33
Oriented bounding box physics primitive.
BoundingVolume * clone() const override
Clones this bounding volume.
Sphere physics primitive.
Definition: Sphere.h:18
void setupObb(const Vector3 &center, const Vector3 &axis0, const Vector3 &axis1, const Vector3 &axis2, const Vector3 &halfExtension)
Setup bounding volume oriented bounding box.
void setupSphere(const Vector3 &center, 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.
Prototype definition.
Definition: Prototype.h:49
PrototypeBoundingVolume * getBoundingVolume(int idx)
Get bounding volume at given index.
Definition: Prototype.h:223
GUI module class.
Definition: GUI.h:66
vector< GUIMouseEvent > & getMouseEvents()
Definition: GUI.h:212
vector< GUIKeyboardEvent > & getKeyboardEvents()
Definition: GUI.h:219
Standard math functions.
Definition: Math.h:21
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Matrix4x4 & identity()
Setup identity matrix.
Definition: Matrix4x4.h:326
Matrix4x4 & setAxes(const Vector3 &xAxis, const Vector3 &yAxis, const Vector3 &zAxis)
Set coordinate system axes.
Definition: Matrix4x4.h:240
3D vector 3 class
Definition: Vector3.h:22
float getY() const
Definition: Vector3.h:119
float getX() const
Definition: Vector3.h:103
float getZ() const
Definition: Vector3.h:136
Vector3 & normalize()
Normalize the vector.
Definition: Vector3.h:288
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
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
File system singleton class.
Definition: FileSystem.h:14
Gizmo tool for views.
Definition: Gizmo.h:26
void setGizmoMode(GizmoMode gizmoMode)
Set GIZMO mode.
Definition: Gizmo.h:128
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
Pop ups controller accessor class.
Definition: PopUps.h:19
void setBoundingVolumeOBBDetails(const Vector3 &center, const Vector3 &axis0, const Vector3 &axis1, const Vector3 &axis2, const Vector3 &halfExtension)
Set bounding volume OOB details.
void setBoundingVolumeSphereDetails(const Vector3 &center, float radius)
Set bounding volume sphere details.
void setBoundingVolumeCapsuleDetails(const Vector3 &a, const Vector3 &b, float radius)
Set bounding volume capsule details.
void applyBoundingVolumeConvexMesh(Prototype *prototype, int idx, const string &fileName)
On bounding volume convex mesh apply.
void applyBoundingVolumeTransformations(Prototype *prototype, int idx, const Transformations &transformations, const Vector3 &objectScale, bool guiOnly)
Apply bounding volume transformations.
void applyBoundingVolumeCapsule(Prototype *prototype, int idx, const Vector3 &a, const Vector3 &b, float radius)
On bounding volume capsule apply.
void applyBoundingVolumeSphere(Prototype *prototype, int idx, const Vector3 &center, float radius)
On bounding volume sphere apply.
void applyBoundingVolumeObb(Prototype *prototype, int idx, const Vector3 &center, const Vector3 &axis0, const Vector3 &axis1, const Vector3 &axis2, const Vector3 &halfExtension)
On bounding volume OBB apply.
void applyBoundingVolumeConvexMeshClear(Prototype *prototype, int idx)
Apply bounding volume convex mesh clear.
void setGizmoRotation(Prototype *prototype, const Transformations &transformations)
Set GIZMO rotation.
void endEditingBoundingVolume(Prototype *prototype)
End editing bounding volume.
void handleInputEvents(Prototype *prototype, const Vector3 &objectScale)
Handle input events.
void startEditingBoundingVolume(Prototype *prototype)
Start editing bounding volume.
void applyBoundingVolumeAabb(Prototype *prototype, int idx, const Vector3 &min, const Vector3 &max)
On bounding volume AABB apply.
void applyBoundingVolumeNone(Prototype *prototype, int idx)
On bounding volume none apply.
void setupModelBoundingVolume(Prototype *prototype, int idx)
Setup model bounding volume.
Character class.
Definition: Character.h:15
Console class.
Definition: Console.h:26