101PrototypePhysicsSubController::PrototypePhysicsSubController(
EditorView* editorView,
TabView* tabView,
bool isModelBoundingVolumes,
int maxBoundingVolumeCount, int32_t boundingVolumeTypeMask)
139 xml+=
"<selectbox-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"Physics") +
"\" value=\"" + GUIParser::escapeQuotes(
"physics") +
"\" />\n";
141 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"Physics") +
"\" value=\"" + GUIParser::escapeQuotes(
"physics") +
"\">\n";
143 auto boundingVolumeId = to_string(i);
144 xml+=
" <selectbox-option image=\"resources/engine/images/bv.png\" text=\"" + GUIParser::escapeQuotes(
"Bounding Volume " + boundingVolumeId) +
"\" value=\"" + GUIParser::escapeQuotes(
"physics.boundingvolumes." + boundingVolumeId) +
"\" />\n";
146 xml+=
"</selectbox-parent-option>\n";
152 if (physics ==
nullptr)
return;
155 "<template id=\"details_physics\" src=\"resources/engine/gui/template_details_physics.xml\" />\n"
160 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_physics"))->getActiveConditions().add(
"open");
162 if (physics->getType() == PrototypePhysics_BodyType::COLLISION_BODY) {
164 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_bodytype_details"))->getActiveConditions().add(
"open");
166 if (physics->getType() == PrototypePhysics_BodyType::DYNAMIC_RIGIDBODY) {
168 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_bodytype_details"))->getActiveConditions().add(
"dynamic");
170 if (physics->getType() == PrototypePhysics_BodyType::STATIC_RIGIDBODY) {
172 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_bodytype_details"))->getActiveConditions().add(
"static");
179 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_dynamic_inertiatensor_x"))->getController()->setValue(physics->getInertiaTensor().getX());
180 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_dynamic_inertiatensor_y"))->getController()->setValue(physics->getInertiaTensor().getY());
181 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_dynamic_inertiatensor_z"))->getController()->setValue(physics->getInertiaTensor().getZ());
184 Console::println(
string(
"PrototypePhysicsSubController::setPhysicsDetails(): An error occurred: ") + exception.what());;
192 auto bodyType = required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_bodytype"))->getController()->getValue().getString();
193 if (bodyType ==
"collisionbody") physics->
setType(PrototypePhysics_BodyType::COLLISION_BODY);
else
194 if (bodyType ==
"dynamicrigidbody") physics->setType(PrototypePhysics_BodyType::DYNAMIC_RIGIDBODY);
else
195 if (bodyType ==
"staticrigidbody") physics->setType(PrototypePhysics_BodyType::STATIC_RIGIDBODY);
196 physics->setMass(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_dynamic_mass"))->getController()->getValue().getString()));
197 physics->setRestitution(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_dynamic_bounciness"))->getController()->getValue().getString()));
198 physics->setFriction(Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_dynamic_friction"))->getController()->getValue().getString()));
199 physics->setInertiaTensor(
201 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_dynamic_inertiatensor_x"))->getController()->getValue().getString()),
202 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_dynamic_inertiatensor_y"))->getController()->getValue().getString()),
203 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_dynamic_inertiatensor_z"))->getController()->getValue().getString())
207 Console::println(
string(
"PrototypePhysicsSubController::applyPhysicsDetails(): An error occurred: ") + exception.what());;
213 if (StringTools::startsWith(outlinerNode,
"physics.boundingvolumes.") ==
true) {
214 boundingVolumeIdxActivated = Integer::parse(StringTools::substring(outlinerNode,
string(
"physics.boundingvolumes.").size(), outlinerNode.size()));
221 if (outlinerNode ==
"physics") {
241 Console::println(
string(
"PrototypePhysicsSubController::setBoundingVolumeSphereDetails(): An error occurred: ") + exception.what());;
256 Console::println(
string(
"PrototypePhysicsSubController::setBoundingVolumeCapsuleDetails(): An error occurred: ") + exception.what());;
265 rotationMatrix.
setAxes(axis0, axis1, axis2);
277 Console::println(
string(
"PrototypePhysicsSubController::setBoundingVolumeOBBDetails(): An error occurred: ") + exception.what());;
284 string(
"<template id=\"details_importconvexmesh\" src=\"resources/engine/gui/template_details_importconvexmesh.xml\" />\n")
288 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_importconvexmesh"))->getActiveConditions().add(
"open");
290 Console::println(
string(
"PrototypePhysicsSubController::setImportConvexMeshFromModelDetails(): An error occurred: ") + exception.what());;
297 string(
"<template id=\"details_generateconvexmesh\" src=\"resources/engine/gui/template_details_generateconvexmesh.xml\" />\n")
301 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_generateconvexmesh"))->getActiveConditions().add(
"open");
303 Console::println(
string(
"PrototypePhysicsSubController::setGenerateConvexMeshFromModelDetails(): An error occurred: ") + exception.what());;
311 if (boundingVolume ==
nullptr)
return;
314 (physics !=
nullptr?
string(
"<template id=\"details_physics\" src=\"resources/engine/gui/template_details_physics.xml\" />\n"):
string()) +
315 string(
"<template id=\"details_boundingvolume\" src=\"resources/engine/gui/template_details_boundingvolume.xml\" />\n")
319 if (prototype->
getModel() !=
nullptr) {
335 auto& halfExtensionXYZ = obb.getHalfExtension().
getArray();
336 if (halfExtensionXYZ[0] > halfExtensionXYZ[1] && halfExtensionXYZ[0] > halfExtensionXYZ[2]) {
337 radius = Math::sqrt(halfExtensionXYZ[1] * halfExtensionXYZ[1] + halfExtensionXYZ[2] * halfExtensionXYZ[2]);
338 a.
set(obb.getAxes()[0]);
339 a.
scale(-(halfExtensionXYZ[0] - radius));
340 a.
add(obb.getCenter());
341 b.
set(obb.getAxes()[0]);
342 b.
scale(+(halfExtensionXYZ[0] - radius));
343 b.
add(obb.getCenter());
345 if (halfExtensionXYZ[1] > halfExtensionXYZ[0] && halfExtensionXYZ[1] > halfExtensionXYZ[2]) {
346 radius = Math::sqrt(halfExtensionXYZ[0] * halfExtensionXYZ[0] + halfExtensionXYZ[2] * halfExtensionXYZ[2]);
347 a.
set(obb.getAxes()[1]);
348 a.
scale(-(halfExtensionXYZ[1] - radius));
349 a.
add(obb.getCenter());
350 b.
set(obb.getAxes()[1]);
351 b.
scale(+(halfExtensionXYZ[1] - radius));
352 b.
add(obb.getCenter());
354 radius = Math::sqrt(halfExtensionXYZ[0] * halfExtensionXYZ[0] + halfExtensionXYZ[1] * halfExtensionXYZ[1]);
355 a.
set(obb.getAxes()[2]);
356 a.
scale(-(halfExtensionXYZ[2] - radius));
357 a.
add(obb.getCenter());
358 b.
set(obb.getAxes()[2]);
359 b.
scale(+(halfExtensionXYZ[2] - radius));
360 b.
add(obb.getCenter());
366 setBoundingVolumeOBBDetails(obb.getCenter(), OrientedBoundingBox::AABB_AXIS_X, OrientedBoundingBox::AABB_AXIS_Y, OrientedBoundingBox::AABB_AXIS_Z, obb.getHalfExtension());
371 if (physics !=
nullptr) {
372 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_physics"))->getActiveConditions().add(
"open");
374 if (physics->getType() == PrototypePhysics_BodyType::COLLISION_BODY) {
376 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_bodytype_details"))->getActiveConditions().add(
"open");
378 if (physics->getType() == PrototypePhysics_BodyType::DYNAMIC_RIGIDBODY) {
380 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_bodytype_details"))->getActiveConditions().add(
"dynamic");
382 if (physics->getType() == PrototypePhysics_BodyType::STATIC_RIGIDBODY) {
384 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_bodytype_details"))->getActiveConditions().add(
"static");
391 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_dynamic_inertiatensor_x"))->getController()->setValue(physics->getInertiaTensor().getX());
392 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_dynamic_inertiatensor_y"))->getController()->setValue(physics->getInertiaTensor().getY());
393 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"physics_dynamic_inertiatensor_z"))->getController()->setValue(physics->getInertiaTensor().getZ());
397 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_boundingvolume"))->getActiveConditions().add(
"open");
400 auto bv = boundingVolume->getBoundingVolume();
403 if (
dynamic_cast<Sphere*
>(bv) !=
nullptr) {
404 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_type_details"))->getActiveConditions().add(
"sphere");
406 auto sphere =
dynamic_cast<Sphere*
>(bv);
409 if (
dynamic_cast<Capsule*
>(bv) !=
nullptr) {
410 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_type_details"))->getActiveConditions().add(
"capsule");
412 auto capsule =
dynamic_cast<Capsule*
>(bv);
416 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_type_details"))->getActiveConditions().add(
"obb");
420 orientedBoundingBox->getCenter(),
421 orientedBoundingBox->getAxes()[0],
422 orientedBoundingBox->getAxes()[1],
423 orientedBoundingBox->getAxes()[2],
424 orientedBoundingBox->getHalfExtension()
427 if (
dynamic_cast<ConvexMesh*
>(bv) !=
nullptr) {
428 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_type_details"))->getActiveConditions().add(
"convexmesh");
430 Texture* thumbnailTexture =
nullptr;
432 vector<uint8_t> thumbnailPNGData;
434 (boundingVolume->hasConvexMeshData() ==
false &&
435 StringTools::endsWith(StringTools::toLowerCase(boundingVolume->getConvexMeshFile()),
".tm") ==
true &&
436 FileSystem::getInstance()->getThumbnailAttachment(Tools::getPathName(boundingVolume->getConvexMeshFile()), Tools::getFileName(boundingVolume->getConvexMeshFile()), thumbnailPNGData) ==
true) ||
438 (boundingVolume->hasConvexMeshData() ==
true &&
439 FileSystem::getInstance()->getThumbnailAttachment(boundingVolume->getConvexMeshData(), thumbnailPNGData) ==
true)
441 thumbnailTexture = TextureReader::readPNG(
"tdme.editor.physics.convexmeshes." + to_string(
thumbnailTextureIdx++), thumbnailPNGData,
true);
442 if (thumbnailTexture !=
nullptr) {
447 required_dynamic_cast<GUITextureNode*>(
screenNode->
getNodeById(
"boundingvolume_convexmesh_file"))->setTexture(thumbnailTexture);
449 Console::println(
string(
"PrototypePhysicsSubController::setBoundingVolumeDetails(): invalid bounding volume@" + to_string(boundingVolumeIdx)));
453 Console::println(
string(
"PrototypePhysicsSubController::setBoundingVolumeDetails(): An error occurred: ") + exception.what());;
465 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_sphere_x"))->getController()->getValue().getString()),
466 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_sphere_y"))->getController()->getValue().getString()),
467 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_sphere_z"))->getController()->getValue().getString())
469 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_sphere_radius"))->getController()->getValue().getString())
484 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_capsule_a_x"))->getController()->getValue().getString()),
485 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_capsule_a_y"))->getController()->getValue().getString()),
486 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_capsule_a_z"))->getController()->getValue().getString())
489 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_capsule_b_x"))->getController()->getValue().getString()),
490 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_capsule_b_y"))->getController()->getValue().getString()),
491 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_capsule_b_z"))->getController()->getValue().getString())
493 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_capsule_radius"))->getController()->getValue().getString())
505 rotations.
addRotation(OrientedBoundingBox::AABB_AXIS_Z, Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_obb_rotation_x"))->getController()->getValue().getString()));
506 rotations.
addRotation(OrientedBoundingBox::AABB_AXIS_Y, Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_obb_rotation_y"))->getController()->getValue().getString()));
507 rotations.
addRotation(OrientedBoundingBox::AABB_AXIS_X, Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_obb_rotation_z"))->getController()->getValue().getString()));
517 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_obb_x"))->getController()->getValue().getString()),
518 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_obb_y"))->getController()->getValue().getString()),
519 Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_obb_z"))->getController()->getValue().getString())
525 0.5f * Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_obb_width"))->getController()->getValue().getString()),
526 0.5f * Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_obb_height"))->getController()->getValue().getString()),
527 0.5f * Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_obb_depth"))->getController()->getValue().getString())
542 boundingVolume !=
nullptr?boundingVolume->getConvexMeshFile():
string()
559 if (node->
getId() ==
"dropdown_outliner_add") {
561 if (addOutlinerType ==
"boundingvolume") {
566 if (node->
getId() == applyPhysicsNode) {
572 if (StringTools::startsWith(outlinerNode,
"physics.boundingvolumes.") ==
true) {
573 auto boundingVolumeIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"physics.boundingvolumes.").size(), outlinerNode.size()));
574 if (node->
getId() ==
"boundingvolume_type") {
575 auto boundingVolumeType = required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"boundingvolume_type"))->getController()->getValue().getString();
583 if (node->
getId() == applyBoundingVolumeSphereNode) {
589 if (node->
getId() == applyBoundingVolumeCapsuleNode) {
595 if (node->
getId() == applyBoundingVolumeOBBNode) {
627 if (node->
getId() ==
"boundingvolume_convexmesh_file_open") {
628 if (prototype !=
nullptr) {
629 class OnConvexMeshFileOpen:
public virtual Action
632 void performAction()
override {
634 prototypePhysicsSubController->view->applyBoundingVolumeConvexMesh(
637 prototypePhysicsSubController->popUps->getFileDialogScreenController()->getPathName() +
"/" + prototypePhysicsSubController->popUps->getFileDialogScreenController()->
getFileName()
640 Console::println(
string(
"OnConvexMeshFileOpen::performAction(): An error occurred: ") + exception.what());;
641 prototypePhysicsSubController->showErrorPopUp(
"Warning", (
string(exception.what())));
643 prototypePhysicsSubController->view->removeGizmo();
644 prototypePhysicsSubController->setBoundingVolumeDetails(prototype, boundingVolumeIdx);
645 prototypePhysicsSubController->popUps->getFileDialogScreenController()->close();
648 prototypePhysicsSubController(prototypePhysicsSubController),
649 prototype(prototype),
650 boundingVolumeIdx(boundingVolumeIdx) {
656 int boundingVolumeIdx;
660 if (boundingVolume !=
nullptr) {
663 fileName.empty() ==
false?Tools::getPathName(fileName):
string(),
664 "Load convex mesh from: ",
665 ModelReader::getModelExtensions(),
666 Tools::getFileName(fileName),
673 if (node->
getId() ==
"boundingvolume_convexmesh_file_remove") {
674 if (prototype !=
nullptr) {
676 if (boundingVolume !=
nullptr) {
683 if (node->
getId() ==
"importconvexmesh_file_open") {
684 if (prototype !=
nullptr) {
685 class OnConvexMeshesFileImport:
public virtual Action
688 void performAction()
override {
691 prototypePhysicsSubController->view->clearModelBoundingVolume(i);
696 vector<vector<uint8_t>> convexMeshTMsData;
697 if (GenerateConvexMeshes::generateConvexMeshes(
699 GenerateConvexMeshes::MODE_IMPORT,
700 prototypePhysicsSubController->popUps,
701 prototypePhysicsSubController->popUps->getFileDialogScreenController()->getPathName(),
702 prototypePhysicsSubController->popUps->getFileDialogScreenController()->
getFileName(),
705 GenerateConvexMeshes::removeConvexMeshes(prototype);
706 for (
auto& convexMeshTMData: convexMeshTMsData) {
710 prototypeBoundingVolume->setupConvexMesh(convexMeshTMData);
711 prototype->
addBoundingVolume(prototypeBoundingVolume->getId(), prototypeBoundingVolume);
713 Console::println(
string(
"OnConvexMeshesFileImport::performAction(): An error occurred: ") + exception.what());
718 Console::println(
string(
"OnConvexMeshesFileImport::performAction(): An error occurred: ") + exception.what());;
719 prototypePhysicsSubController->showErrorPopUp(
"Warning", (
string(exception.what())));
721 prototypePhysicsSubController->editorView->reloadTabOutliner(
"physics");
725 prototypePhysicsSubController->view->setupModelBoundingVolume(prototype, i);
729 prototypePhysicsSubController->popUps->getFileDialogScreenController()->close();
732 prototypePhysicsSubController(prototypePhysicsSubController),
733 prototype(prototype) {
743 "Import convex meshes from: ",
744 ModelReader::getModelExtensions(),
747 new OnConvexMeshesFileImport(
this, prototype)
751 if (node->
getId() ==
"generateconvexmesh_file_open") {
752 if (prototype !=
nullptr) {
753 class OnConvexMeshesFileOpen:
public virtual Action
756 void performAction()
override {
758 prototypePhysicsSubController->view->clearModelBoundingVolume(i);
764 VHACD::IVHACD::Parameters parameters;
765 parameters.m_resolution = Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"generateconvexmesh_resolution"))->getController()->getValue().getString());
766 parameters.m_concavity = Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"generateconvexmesh_concavity"))->getController()->getValue().getString());
767 parameters.m_planeDownsampling = Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"generateconvexmesh_planedownsampling"))->getController()->getValue().getString());
768 parameters.m_convexhullDownsampling = Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"generateconvexmesh_convexhullownsampling"))->getController()->getValue().getString());
769 parameters.m_alpha = Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"generateconvexmesh_alpha"))->getController()->getValue().getString());
770 parameters.m_beta = Float::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"generateconvexmesh_beta"))->getController()->getValue().getString());
771 parameters.m_pca = Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"generateconvexmesh_pca"))->getController()->getValue().getString());
772 parameters.m_maxNumVerticesPerCH = Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"generateconvexmesh_maxverticesperch"))->getController()->getValue().getString());
773 parameters.m_minVolumePerCH = Integer::parse(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"generateconvexmesh_minvolumeperch"))->getController()->getValue().getString());
775 vector<vector<uint8_t>> convexMeshTMsData;
776 if (GenerateConvexMeshes::generateConvexMeshes(
778 GenerateConvexMeshes::MODE_GENERATE,
779 prototypePhysicsSubController->popUps,
780 prototypePhysicsSubController->popUps->getFileDialogScreenController()->getPathName(),
781 prototypePhysicsSubController->popUps->getFileDialogScreenController()->
getFileName(),
785 GenerateConvexMeshes::removeConvexMeshes(prototype);
786 for (
auto& convexMeshTMData: convexMeshTMsData) {
790 prototypeBoundingVolume->setupConvexMesh(convexMeshTMData);
791 prototype->
addBoundingVolume(prototypeBoundingVolume->getId(), prototypeBoundingVolume);
793 Console::println(
string(
"OnConvexMeshesFileOpen::performAction(): An error occurred: ") + exception.what());
798 Console::println(
string(
"OnConvexMeshesFileOpen::performAction(): An error occurred: ") + exception.what());
799 prototypePhysicsSubController->showErrorPopUp(
"Warning", (
string(exception.what())));
801 prototypePhysicsSubController->editorView->reloadTabOutliner(
"physics");
805 prototypePhysicsSubController->view->setupModelBoundingVolume(prototype, i);
809 prototypePhysicsSubController->popUps->getFileDialogScreenController()->close();
812 prototypePhysicsSubController(prototypePhysicsSubController),
813 prototype(prototype) {
823 "Import convex meshes from: ",
824 ModelReader::getModelExtensions(),
827 new OnConvexMeshesFileOpen(
this, prototype)
835 if (node->
getId() ==
"selectbox_outliner") {
837 if (StringTools::startsWith(outlinerNode,
"physics.boundingvolumes.") ==
true) {
842 class OnDeleteAction:
public virtual Action
845 void performAction()
override {
846 auto outlinerNode = prototypePhysicsSubController->editorView->getScreenController()->getOutlinerSelection();
847 if (StringTools::startsWith(outlinerNode,
"physics.boundingvolumes.") ==
true) {
848 auto boundingVolumeIdx = Integer::parse(StringTools::substring(outlinerNode,
string(
"physics.boundingvolumes.").size(), outlinerNode.size()));
849 prototypePhysicsSubController->view->clearModelBoundingVolume(-1);
851 prototypePhysicsSubController->view->clearModelBoundingVolume(i);
855 prototypePhysicsSubController->view->setupModelBoundingVolume(prototype, i);
857 prototypePhysicsSubController->editorView->reloadTabOutliner(
"physics");
871 if (outlinerNode ==
"physics") {
876 class OnAddBoundingVolumeAction:
public virtual Action
879 void performAction()
override {
880 prototypePhysicsSubController->createBoundingVolume(prototype);
882 OnAddBoundingVolumeAction(
PrototypePhysicsSubController* prototypePhysicsSubController,
Prototype* prototype): prototypePhysicsSubController(prototypePhysicsSubController), prototype(prototype) {
891 class OnImportConvexMeshesFromModel:
public virtual Action
894 void performAction()
override {
895 prototypePhysicsSubController->setImportConvexMeshFromModelDetails();
905 class OnGenerateConvexMeshesFromModel:
public virtual Action
908 void performAction()
override {
909 prototypePhysicsSubController->setGenerateConvexMeshFromModelDetails();
911 OnGenerateConvexMeshesFromModel(
PrototypePhysicsSubController* prototypePhysicsSubController,
Prototype* prototype): prototypePhysicsSubController(prototypePhysicsSubController), prototype(prototype) {
920 class OnDeleteConvexMeshesFromModel:
public virtual Action
923 void performAction()
override {
925 prototypePhysicsSubController->view->clearModelBoundingVolume(i);
927 GenerateConvexMeshes::removeConvexMeshes(prototype);
928 prototypePhysicsSubController->editorView->reloadTabOutliner(
"physics");
929 prototypePhysicsSubController->updateDetails(prototype,
"physics");
931 prototypePhysicsSubController->view->setupModelBoundingVolume(prototype, i);
934 OnDeleteConvexMeshesFromModel(
PrototypePhysicsSubController* prototypePhysicsSubController,
Prototype* prototype): prototypePhysicsSubController(prototypePhysicsSubController), prototype(prototype) {
BoundingBox * getBoundingBox()
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Bounding volume interface.
Capsule physics primitive.
Convex mesh physics primitive.
Oriented bounding box physics primitive.
Sphere physics primitive.
Prototype bounding volume definition.
const string & getConvexMeshFile()
Prototype physics body type enum.
Prototype physics body definitions.
void setType(PrototypePhysics_BodyType *type)
Set type.
const string & getFileName()
bool addBoundingVolume(int idx, PrototypeBoundingVolume *prototypeBoundingVolume)
Add bounding volume at given index.
PrototypePhysics * getPhysics()
int getBoundingVolumeCount()
PrototypeBoundingVolume * getBoundingVolume(int idx)
Get bounding volume at given index.
void removeBoundingVolume(int idx)
Remove bounding volume at given index.
GUI element node conditions.
GUI node controller base class.
virtual const MutableString & getValue()=0
GUIScreenNode * getScreenNode()
GUINodeController * getController()
GUI parent node base class thats supporting child nodes.
GUI screen node that represents a screen that can be rendered via GUI system.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void getAxes(Vector3 &xAxis, Vector3 &yAxis, Vector3 &zAxis) const
Get coordinate system axes.
Vector3 computeEulerAngles() const
Compute Euler angles (rotation around x, y, z axes)
Matrix4x4 & identity()
Setup identity matrix.
Matrix4x4 clone()
Clones this matrix.
Matrix4x4 & setAxes(const Vector3 &xAxis, const Vector3 &yAxis, const Vector3 &zAxis)
Set coordinate system axes.
Vector3 & set(float x, float y, float z)
Set up vector.
Vector3 & add(const Vector3 &v)
Adds a vector.
Vector3 & scale(float scale)
Scale this vector.
array< float, 3 > & getArray() const
File system singleton class.
const string & getString() const
void acquireReference()
acquires a reference, incrementing the counter
std::exception Exception
Exception base class.