TDME2 1.9.121
PrototypePhysicsSubController.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
27#include <tdme/gui/GUI.h>
28#include <tdme/gui/GUIParser.h>
29#include <tdme/math/Matrix4x4.h>
30#include <tdme/math/Vector3.h>
50
51using std::string;
52using std::to_string;
53
55
100
101PrototypePhysicsSubController::PrototypePhysicsSubController(EditorView* editorView, TabView* tabView, bool isModelBoundingVolumes, int maxBoundingVolumeCount, int32_t boundingVolumeTypeMask)
102{
103 this->editorView = editorView;
104 this->tabView = tabView;
105 this->view = new PrototypePhysicsSubView(tabView->getEngine(), this, editorView->getPopUps(), maxBoundingVolumeCount, boundingVolumeTypeMask);
106 this->popUps = editorView->getPopUps();
107 this->maxBoundingVolumeCount = maxBoundingVolumeCount;
108 this->isModelBoundingVolumes = isModelBoundingVolumes;
109 this->boundingVolumeTabActivated = false;
111 this->boundingVolumeTypeCount = 0;
112}
113
115 delete view;
116}
117
119{
120 return view;
121}
122
124 return screenNode;
125}
126
128{
129 this->screenNode = screenNode;
130}
131
132void PrototypePhysicsSubController::showErrorPopUp(const string& caption, const string& message)
133{
134 view->getPopUps()->getInfoDialogScreenController()->show(caption, message);
135}
136
138 if (prototype->getBoundingVolumeCount() == 0) {
139 xml+= "<selectbox-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes("Physics") + "\" value=\"" + GUIParser::escapeQuotes("physics") + "\" />\n";
140 } else {
141 xml+= "<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes("Physics") + "\" value=\"" + GUIParser::escapeQuotes("physics") + "\">\n";
142 for (auto i = 0; i < prototype->getBoundingVolumeCount(); i++) {
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";
145 }
146 xml+= "</selectbox-parent-option>\n";
147 }
148}
149
151 auto physics = prototype->getPhysics();
152 if (physics == nullptr) return;
153
155 "<template id=\"details_physics\" src=\"resources/engine/gui/template_details_physics.xml\" />\n"
156 );
157
158 try {
159 // physics
160 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_physics"))->getActiveConditions().add("open");
161
162 if (physics->getType() == PrototypePhysics_BodyType::COLLISION_BODY) {
163 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_bodytype"))->getController()->setValue(MutableString("collisionbody"));
164 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_bodytype_details"))->getActiveConditions().add("open");
165 } else
166 if (physics->getType() == PrototypePhysics_BodyType::DYNAMIC_RIGIDBODY) {
167 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_bodytype"))->getController()->setValue(MutableString("dynamicrigidbody"));
168 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_bodytype_details"))->getActiveConditions().add("dynamic");
169 } else
170 if (physics->getType() == PrototypePhysics_BodyType::STATIC_RIGIDBODY) {
171 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_bodytype"))->getController()->setValue(MutableString("staticrigidbody"));
172 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_bodytype_details"))->getActiveConditions().add("static");
173 } else {
174 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_bodytype"))->getController()->setValue(MutableString("none"));
175 }
176 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_dynamic_mass"))->getController()->setValue(MutableString(physics->getMass()));
177 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_dynamic_bounciness"))->getController()->setValue(MutableString(physics->getRestitution()));
178 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_dynamic_friction"))->getController()->setValue(MutableString(physics->getFriction()));
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());
182
183 } catch (Exception& exception) {
184 Console::println(string("PrototypePhysicsSubController::setPhysicsDetails(): An error occurred: ") + exception.what());;
185 showErrorPopUp("Warning", (string(exception.what())));
186 }
187}
188
190 try {
191 auto physics = prototype->getPhysics();
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(
200 Vector3(
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())
204 )
205 );
206 } catch (Exception& exception) {
207 Console::println(string("PrototypePhysicsSubController::applyPhysicsDetails(): An error occurred: ") + exception.what());;
208 showErrorPopUp("Warning", (string(exception.what())));
209 }
210}
211
212void PrototypePhysicsSubController::updateDetails(Prototype* prototype, const string& outlinerNode) {
213 if (StringTools::startsWith(outlinerNode, "physics.boundingvolumes.") == true) {
214 boundingVolumeIdxActivated = Integer::parse(StringTools::substring(outlinerNode, string("physics.boundingvolumes.").size(), outlinerNode.size()));
219 view->updateGizmo(prototype);
220 } else {
221 if (outlinerNode == "physics") {
222 setPhysicsDetails(prototype);
224 } else {
226 }
227 boundingVolumeIdxActivated = PrototypePhysicsSubView::DISPLAY_BOUNDINGVOLUMEIDX_ALL;
229 view->endEditingBoundingVolume(prototype);
230 view->removeGizmo();
231 }
232}
233
235 try {
236 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_sphere_x"))->getController()->setValue(MutableString(center.getX()));
237 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_sphere_y"))->getController()->setValue(MutableString(center.getY()));
238 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_sphere_z"))->getController()->setValue(MutableString(center.getZ()));
239 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_sphere_radius"))->getController()->setValue(MutableString(radius));
240 } catch (Exception& exception) {
241 Console::println(string("PrototypePhysicsSubController::setBoundingVolumeSphereDetails(): An error occurred: ") + exception.what());;
242 showErrorPopUp("Warning", (string(exception.what())));
243 }
244}
245
247 try {
248 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_capsule_a_x"))->getController()->setValue(MutableString(a.getX()));
249 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_capsule_a_y"))->getController()->setValue(MutableString(a.getY()));
250 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_capsule_a_z"))->getController()->setValue(MutableString(a.getZ()));
251 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_capsule_b_x"))->getController()->setValue(MutableString(b.getX()));
252 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_capsule_b_y"))->getController()->setValue(MutableString(b.getY()));
253 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_capsule_b_z"))->getController()->setValue(MutableString(b.getZ()));
254 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_capsule_radius"))->getController()->setValue(MutableString(radius));
255 } catch (Exception& exception) {
256 Console::println(string("PrototypePhysicsSubController::setBoundingVolumeCapsuleDetails(): An error occurred: ") + exception.what());;
257 showErrorPopUp("Warning", (string(exception.what())));
258 }
259}
260
261void PrototypePhysicsSubController::setBoundingVolumeOBBDetails(const Vector3& center, const Vector3& axis0, const Vector3& axis1, const Vector3& axis2, const Vector3& halfExtension) {
262 try {
263 Matrix4x4 rotationMatrix;
264 rotationMatrix.identity();
265 rotationMatrix.setAxes(axis0, axis1, axis2);
266 auto rotation = rotationMatrix.computeEulerAngles();
267 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_obb_x"))->getController()->setValue(MutableString(center.getX()));
268 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_obb_y"))->getController()->setValue(MutableString(center.getY()));
269 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_obb_z"))->getController()->setValue(MutableString(center.getZ()));
270 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_obb_rotation_x"))->getController()->setValue(MutableString(rotation.getX()));
271 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_obb_rotation_y"))->getController()->setValue(MutableString(rotation.getY()));
272 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_obb_rotation_z"))->getController()->setValue(MutableString(rotation.getZ()));
273 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_obb_width"))->getController()->setValue(MutableString(halfExtension.getX() * 2.0f));
274 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_obb_height"))->getController()->setValue(MutableString(halfExtension.getY() * 2.0f));
275 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_obb_depth"))->getController()->setValue(MutableString(halfExtension.getZ() * 2.0f));
276 } catch (Exception& exception) {
277 Console::println(string("PrototypePhysicsSubController::setBoundingVolumeOBBDetails(): An error occurred: ") + exception.what());;
278 showErrorPopUp("Warning", (string(exception.what())));
279 }
280}
281
284 string("<template id=\"details_importconvexmesh\" src=\"resources/engine/gui/template_details_importconvexmesh.xml\" />\n")
285 );
286
287 try {
288 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_importconvexmesh"))->getActiveConditions().add("open");
289 } catch (Exception& exception) {
290 Console::println(string("PrototypePhysicsSubController::setImportConvexMeshFromModelDetails(): An error occurred: ") + exception.what());;
291 showErrorPopUp("Warning", (string(exception.what())));
292 }
293}
294
297 string("<template id=\"details_generateconvexmesh\" src=\"resources/engine/gui/template_details_generateconvexmesh.xml\" />\n")
298 );
299
300 try {
301 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_generateconvexmesh"))->getActiveConditions().add("open");
302 } catch (Exception& exception) {
303 Console::println(string("PrototypePhysicsSubController::setGenerateConvexMeshFromModelDetails(): An error occurred: ") + exception.what());;
304 showErrorPopUp("Warning", (string(exception.what())));
305 }
306}
307
309 auto physics = prototype->getPhysics();
310 auto boundingVolume = prototype->getBoundingVolume(boundingVolumeIdx);
311 if (boundingVolume == nullptr) return;
312
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")
316 );
317
318 BoundingBox aabb;
319 if (prototype->getModel() != nullptr) {
320 aabb = *prototype->getModel()->getBoundingBox();
321 } else {
322 aabb = BoundingBox(Vector3(-0.5f, 0.0f, -0.5f), Vector3(0.5f, 3.0f, 0.5f));
323 }
324 auto obb = OrientedBoundingBox(&aabb);
325
326 // set default sphere
327 {
328 setBoundingVolumeSphereDetails(obb.getCenter(), obb.getHalfExtension().computeLength());
329 }
330 // set default capsule
331 {
332 Vector3 a;
333 Vector3 b;
334 auto radius = 0.0f;
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());
344 } else
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());
353 } else {
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());
361 }
363 }
364 // set default obb
365 {
366 setBoundingVolumeOBBDetails(obb.getCenter(), OrientedBoundingBox::AABB_AXIS_X, OrientedBoundingBox::AABB_AXIS_Y, OrientedBoundingBox::AABB_AXIS_Z, obb.getHalfExtension());
367 }
368
369 try {
370 // physics
371 if (physics != nullptr) {
372 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_physics"))->getActiveConditions().add("open");
373
374 if (physics->getType() == PrototypePhysics_BodyType::COLLISION_BODY) {
375 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_bodytype"))->getController()->setValue(MutableString("collisionbody"));
376 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_bodytype_details"))->getActiveConditions().add("open");
377 } else
378 if (physics->getType() == PrototypePhysics_BodyType::DYNAMIC_RIGIDBODY) {
379 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_bodytype"))->getController()->setValue(MutableString("dynamicrigidbody"));
380 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_bodytype_details"))->getActiveConditions().add("dynamic");
381 } else
382 if (physics->getType() == PrototypePhysics_BodyType::STATIC_RIGIDBODY) {
383 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_bodytype"))->getController()->setValue(MutableString("staticrigidbody"));
384 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_bodytype_details"))->getActiveConditions().add("static");
385 } else {
386 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_bodytype"))->getController()->setValue(MutableString("none"));
387 }
388 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_dynamic_mass"))->getController()->setValue(MutableString(physics->getMass()));
389 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_dynamic_bounciness"))->getController()->setValue(MutableString(physics->getRestitution()));
390 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("physics_dynamic_friction"))->getController()->setValue(MutableString(physics->getFriction()));
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());
394 }
395
396 // bounding volume
397 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_boundingvolume"))->getActiveConditions().add("open");
398
399 {
400 auto bv = boundingVolume->getBoundingVolume();
401 if (bv == nullptr) {
402 } else
403 if (dynamic_cast<Sphere*>(bv) != nullptr) {
404 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_type_details"))->getActiveConditions().add("sphere");
405 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_type"))->getController()->setValue(MutableString("sphere"));
406 auto sphere = dynamic_cast<Sphere*>(bv);
407 setBoundingVolumeSphereDetails(sphere->getCenter(), sphere->getRadius());
408 } else
409 if (dynamic_cast<Capsule*>(bv) != nullptr) {
410 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_type_details"))->getActiveConditions().add("capsule");
411 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_type"))->getController()->setValue(MutableString("capsule"));
412 auto capsule = dynamic_cast<Capsule*>(bv);
413 setBoundingVolumeCapsuleDetails(capsule->getA(), capsule->getB(), capsule->getRadius());
414 } else
415 if (dynamic_cast<OrientedBoundingBox*>(bv) != nullptr) {
416 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_type_details"))->getActiveConditions().add("obb");
417 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_type"))->getController()->setValue(MutableString("obb"));
418 auto orientedBoundingBox = dynamic_cast<OrientedBoundingBox*>(bv);
420 orientedBoundingBox->getCenter(),
421 orientedBoundingBox->getAxes()[0],
422 orientedBoundingBox->getAxes()[1],
423 orientedBoundingBox->getAxes()[2],
424 orientedBoundingBox->getHalfExtension()
425 );
426 } else
427 if (dynamic_cast<ConvexMesh*>(bv) != nullptr) {
428 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_type_details"))->getActiveConditions().add("convexmesh");
429 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_type"))->getController()->setValue(MutableString("convexmesh"));
430 Texture* thumbnailTexture = nullptr;
431 {
432 vector<uint8_t> thumbnailPNGData;
433 if (// extern
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) ||
437 // embedded
438 (boundingVolume->hasConvexMeshData() == true &&
439 FileSystem::getInstance()->getThumbnailAttachment(boundingVolume->getConvexMeshData(), thumbnailPNGData) == true)
440 ) {
441 thumbnailTexture = TextureReader::readPNG("tdme.editor.physics.convexmeshes." + to_string(thumbnailTextureIdx++), thumbnailPNGData, true);
442 if (thumbnailTexture != nullptr) {
443 thumbnailTexture->acquireReference();
444 }
445 }
446 }
447 required_dynamic_cast<GUITextureNode*>(screenNode->getNodeById("boundingvolume_convexmesh_file"))->setTexture(thumbnailTexture);
448 } else {
449 Console::println(string("PrototypePhysicsSubController::setBoundingVolumeDetails(): invalid bounding volume@" + to_string(boundingVolumeIdx)));
450 }
451 }
452 } catch (Exception& exception) {
453 Console::println(string("PrototypePhysicsSubController::setBoundingVolumeDetails(): An error occurred: ") + exception.what());;
454 showErrorPopUp("Warning", (string(exception.what())));
455 }
456}
457
459{
460 try {
462 prototype,
463 idx,
464 Vector3(
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())
468 ),
469 Float::parse(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_sphere_radius"))->getController()->getValue().getString())
470 );
471 } catch (Exception& exception) {
472 showErrorPopUp("Warning", (string(exception.what())));
473 }
474 view->updateGizmo(prototype);
475}
476
478{
479 try {
481 prototype,
482 idx,
483 Vector3(
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())
487 ),
488 Vector3(
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())
492 ),
493 Float::parse(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("boundingvolume_capsule_radius"))->getController()->getValue().getString())
494 );
495 } catch (Exception& exception) {
496 showErrorPopUp("Warning", (string(exception.what())));
497 }
498 view->updateGizmo(prototype);
499}
500
502{
503 try {
504 Transformations rotations;
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()));
508 rotations.update();
509 Vector3 xAxis;
510 Vector3 yAxis;
511 Vector3 zAxis;
512 rotations.getTransformationsMatrix().clone().getAxes(xAxis, yAxis, zAxis);
514 prototype,
515 idx,
516 Vector3(
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())
520 ),
521 xAxis,
522 yAxis,
523 zAxis,
524 Vector3(
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())
528 )
529 );
530 } catch (Exception& exception) {
531 showErrorPopUp("Warning", (string(exception.what())));
532 }
533 view->updateGizmo(prototype);
534}
535
537 try {
538 auto boundingVolume = prototype->getBoundingVolume(boundingVolumeIdxActivated);
540 prototype,
541 idx,
542 boundingVolume != nullptr?boundingVolume->getConvexMeshFile():string()
543 );
544 } catch (Exception& exception) {
545 showErrorPopUp("Warning", (string(exception.what())));
546 }
547 view->removeGizmo();
548}
549
551 auto boundingVolumeIdx = prototype->getBoundingVolumeCount();
552 auto boundingVolume = new PrototypeBoundingVolume(boundingVolumeIdx, prototype);
553 prototype->addBoundingVolume(boundingVolumeIdx, boundingVolume);
554 setBoundingVolumeDetails(prototype, boundingVolumeIdx);
555 editorView->reloadTabOutliner(string() + "physics.boundingvolumes." + to_string(boundingVolumeIdx));
556}
557
559 if (node->getId() == "dropdown_outliner_add") {
560 auto addOutlinerType = node->getController()->getValue().getString();
561 if (addOutlinerType == "boundingvolume") {
562 createBoundingVolume(prototype);
563 }
564 } else {
565 for (auto& applyPhysicsNode: applyPhysicsNodes) {
566 if (node->getId() == applyPhysicsNode) {
567 applyPhysicsDetails(prototype);
568 break;
569 }
570 }
571 auto outlinerNode = editorView->getScreenController()->getOutlinerSelection();
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();
576 if (boundingVolumeType == "sphere") applyBoundingVolumeSphereDetails(prototype, boundingVolumeIdx); else
577 if (boundingVolumeType == "capsule") applyBoundingVolumeCapsuleDetails(prototype, boundingVolumeIdx); else
578 if (boundingVolumeType == "obb") applyBoundingVolumeObbDetails(prototype, boundingVolumeIdx); else
579 if (boundingVolumeType == "convexmesh") applyBoundingVolumeConvexMeshDetails(prototype, boundingVolumeIdx); else
580 view->applyBoundingVolumeNone(prototype, boundingVolumeIdx);
581 } else {
582 for (auto& applyBoundingVolumeSphereNode: applyBoundingVolumSphereNodes) {
583 if (node->getId() == applyBoundingVolumeSphereNode) {
584 applyBoundingVolumeSphereDetails(prototype, boundingVolumeIdx);
585 break;
586 }
587 }
588 for (auto& applyBoundingVolumeCapsuleNode: applyBoundingVolumCapsuleNodes) {
589 if (node->getId() == applyBoundingVolumeCapsuleNode) {
590 applyBoundingVolumeCapsuleDetails(prototype, boundingVolumeIdx);
591 break;
592 }
593 }
594 for (auto& applyBoundingVolumeOBBNode: applyBoundingVolumOBBNodes) {
595 if (node->getId() == applyBoundingVolumeOBBNode) {
596 applyBoundingVolumeObbDetails(prototype, boundingVolumeIdx);
597 break;
598 }
599 }
600 }
601 }
602 }
603 if (node->getId() == tabView->getTabId() + "_tab_button_select") {
604 // not yet
605 } else
606 if (node->getId() == tabView->getTabId() + "_tab_button_translate") {
607 view->setGizmoType(Gizmo::GIZMOTYPE_TRANSLATE);
608 view->updateGizmo(prototype);
609 } else
610 if (node->getId() == tabView->getTabId() + "_tab_button_rotate") {
611 view->setGizmoType(Gizmo::GIZMOTYPE_ROTATE);
612 view->updateGizmo(prototype);
613 } else
614 if (node->getId() == tabView->getTabId() + "_tab_button_scale") {
615 view->setGizmoType(Gizmo::GIZMOTYPE_SCALE);
616 view->updateGizmo(prototype);
617 } else
618 if (node->getId() == tabView->getTabId() + "_tab_button_gizmo") {
619 view->setGizmoType(Gizmo::GIZMOTYPE_ALL);
620 view->updateGizmo(prototype);
621 }
622}
623
625{
627 if (node->getId() == "boundingvolume_convexmesh_file_open") {
628 if (prototype != nullptr) {
629 class OnConvexMeshFileOpen: public virtual Action
630 {
631 public:
632 void performAction() override {
633 try {
634 prototypePhysicsSubController->view->applyBoundingVolumeConvexMesh(
635 prototype,
636 boundingVolumeIdx,
637 prototypePhysicsSubController->popUps->getFileDialogScreenController()->getPathName() + "/" + prototypePhysicsSubController->popUps->getFileDialogScreenController()->getFileName()
638 );
639 } catch (Exception& exception) {
640 Console::println(string("OnConvexMeshFileOpen::performAction(): An error occurred: ") + exception.what());;
641 prototypePhysicsSubController->showErrorPopUp("Warning", (string(exception.what())));
642 }
643 prototypePhysicsSubController->view->removeGizmo();
644 prototypePhysicsSubController->setBoundingVolumeDetails(prototype, boundingVolumeIdx);
645 prototypePhysicsSubController->popUps->getFileDialogScreenController()->close();
646 }
647 OnConvexMeshFileOpen(PrototypePhysicsSubController* prototypePhysicsSubController, Prototype* prototype, int boundingVolumeIdx):
648 prototypePhysicsSubController(prototypePhysicsSubController),
649 prototype(prototype),
650 boundingVolumeIdx(boundingVolumeIdx) {
651 //
652 }
653 private:
654 PrototypePhysicsSubController* prototypePhysicsSubController;
655 Prototype* prototype;
656 int boundingVolumeIdx;
657 };
658
659 auto boundingVolume = prototype->getBoundingVolume(boundingVolumeIdxActivated);
660 if (boundingVolume != nullptr) {
661 auto fileName = boundingVolume->getConvexMeshFile();
663 fileName.empty() == false?Tools::getPathName(fileName):string(),
664 "Load convex mesh from: ",
665 ModelReader::getModelExtensions(),
666 Tools::getFileName(fileName),
667 false,
668 new OnConvexMeshFileOpen(this, prototype, boundingVolumeIdxActivated)
669 );
670 }
671 }
672 } else
673 if (node->getId() == "boundingvolume_convexmesh_file_remove") {
674 if (prototype != nullptr) {
675 auto boundingVolume = prototype->getBoundingVolume(boundingVolumeIdxActivated);
676 if (boundingVolume != nullptr) {
678 view->removeGizmo();
680 }
681 }
682 } else
683 if (node->getId() == "importconvexmesh_file_open") {
684 if (prototype != nullptr) {
685 class OnConvexMeshesFileImport: public virtual Action
686 {
687 public:
688 void performAction() override {
689 //
690 for (auto i = 0; i < prototype->getBoundingVolumeCount(); i++) {
691 prototypePhysicsSubController->view->clearModelBoundingVolume(i);
692 }
693
694 //
695 try {
696 vector<vector<uint8_t>> convexMeshTMsData;
697 if (GenerateConvexMeshes::generateConvexMeshes(
698 prototype,
699 GenerateConvexMeshes::MODE_IMPORT,
700 prototypePhysicsSubController->popUps,
701 prototypePhysicsSubController->popUps->getFileDialogScreenController()->getPathName(),
702 prototypePhysicsSubController->popUps->getFileDialogScreenController()->getFileName(),
703 convexMeshTMsData
704 ) == true) {
705 GenerateConvexMeshes::removeConvexMeshes(prototype);
706 for (auto& convexMeshTMData: convexMeshTMsData) {
707 //
708 try {
709 auto prototypeBoundingVolume = new PrototypeBoundingVolume(prototype->getBoundingVolumeCount(), prototype);
710 prototypeBoundingVolume->setupConvexMesh(convexMeshTMData);
711 prototype->addBoundingVolume(prototypeBoundingVolume->getId(), prototypeBoundingVolume);
712 } catch (Exception& exception) {
713 Console::println(string("OnConvexMeshesFileImport::performAction(): An error occurred: ") + exception.what());
714 }
715 }
716 }
717 } catch (Exception& exception) {
718 Console::println(string("OnConvexMeshesFileImport::performAction(): An error occurred: ") + exception.what());;
719 prototypePhysicsSubController->showErrorPopUp("Warning", (string(exception.what())));
720 }
721 prototypePhysicsSubController->editorView->reloadTabOutliner("physics");
722
723 //
724 for (auto i = 0; i < prototype->getBoundingVolumeCount(); i++) {
725 prototypePhysicsSubController->view->setupModelBoundingVolume(prototype, i);
726 }
727
728 //
729 prototypePhysicsSubController->popUps->getFileDialogScreenController()->close();
730 }
731 OnConvexMeshesFileImport(PrototypePhysicsSubController* prototypePhysicsSubController, Prototype* prototype):
732 prototypePhysicsSubController(prototypePhysicsSubController),
733 prototype(prototype) {
734 //
735 }
736 private:
737 PrototypePhysicsSubController* prototypePhysicsSubController;
738 Prototype* prototype;
739 };
740
742 string(),
743 "Import convex meshes from: ",
744 ModelReader::getModelExtensions(),
745 string(),
746 false,
747 new OnConvexMeshesFileImport(this, prototype)
748 );
749 }
750 } else
751 if (node->getId() == "generateconvexmesh_file_open") {
752 if (prototype != nullptr) {
753 class OnConvexMeshesFileOpen: public virtual Action
754 {
755 public:
756 void performAction() override {
757 for (auto i = 0; i < prototype->getBoundingVolumeCount(); i++) {
758 prototypePhysicsSubController->view->clearModelBoundingVolume(i);
759 }
760
761 //
762 try {
763 auto screenNode = prototypePhysicsSubController->getScreenNode();
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());
774
775 vector<vector<uint8_t>> convexMeshTMsData;
776 if (GenerateConvexMeshes::generateConvexMeshes(
777 prototype,
778 GenerateConvexMeshes::MODE_GENERATE,
779 prototypePhysicsSubController->popUps,
780 prototypePhysicsSubController->popUps->getFileDialogScreenController()->getPathName(),
781 prototypePhysicsSubController->popUps->getFileDialogScreenController()->getFileName(),
782 convexMeshTMsData,
783 parameters
784 ) == true) {
785 GenerateConvexMeshes::removeConvexMeshes(prototype);
786 for (auto& convexMeshTMData: convexMeshTMsData) {
787 //
788 try {
789 auto prototypeBoundingVolume = new PrototypeBoundingVolume(prototype->getBoundingVolumeCount(), prototype);
790 prototypeBoundingVolume->setupConvexMesh(convexMeshTMData);
791 prototype->addBoundingVolume(prototypeBoundingVolume->getId(), prototypeBoundingVolume);
792 } catch (Exception& exception) {
793 Console::println(string("OnConvexMeshesFileOpen::performAction(): An error occurred: ") + exception.what());
794 }
795 }
796 }
797 } catch (Exception& exception) {
798 Console::println(string("OnConvexMeshesFileOpen::performAction(): An error occurred: ") + exception.what());
799 prototypePhysicsSubController->showErrorPopUp("Warning", (string(exception.what())));
800 }
801 prototypePhysicsSubController->editorView->reloadTabOutliner("physics");
802
803 //
804 for (auto i = 0; i < prototype->getBoundingVolumeCount(); i++) {
805 prototypePhysicsSubController->view->setupModelBoundingVolume(prototype, i);
806 }
807
808 //
809 prototypePhysicsSubController->popUps->getFileDialogScreenController()->close();
810 }
811 OnConvexMeshesFileOpen(PrototypePhysicsSubController* prototypePhysicsSubController, Prototype* prototype):
812 prototypePhysicsSubController(prototypePhysicsSubController),
813 prototype(prototype) {
814 //
815 }
816 private:
817 PrototypePhysicsSubController* prototypePhysicsSubController;
818 Prototype* prototype;
819 };
820
822 string(),
823 "Import convex meshes from: ",
824 ModelReader::getModelExtensions(),
825 string(),
826 false,
827 new OnConvexMeshesFileOpen(this, prototype)
828 );
829 }
830 }
831 }
832}
833
835 if (node->getId() == "selectbox_outliner") {
836 auto outlinerNode = editorView->getScreenController()->getOutlinerSelection();
837 if (StringTools::startsWith(outlinerNode, "physics.boundingvolumes.") == true) {
838 // clear
840
841 // delete
842 class OnDeleteAction: public virtual Action
843 {
844 public:
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);
850 for (auto i = 0; i < prototype->getBoundingVolumeCount(); i++) {
851 prototypePhysicsSubController->view->clearModelBoundingVolume(i);
852 }
853 prototype->removeBoundingVolume(boundingVolumeIdx);
854 for (auto i = 0; i < prototype->getBoundingVolumeCount(); i++) {
855 prototypePhysicsSubController->view->setupModelBoundingVolume(prototype, i);
856 }
857 prototypePhysicsSubController->editorView->reloadTabOutliner("physics");
858 }
859 }
860 OnDeleteAction(PrototypePhysicsSubController* prototypePhysicsSubController, Prototype* prototype): prototypePhysicsSubController(prototypePhysicsSubController), prototype(prototype) {
861 }
862 private:
863 PrototypePhysicsSubController* prototypePhysicsSubController;
864 Prototype* prototype;
865 };
866 popUps->getContextMenuScreenController()->addMenuItem("Delete", "contextmenu_delete", new OnDeleteAction(this, prototype));
867
868 //
869 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
870 } else
871 if (outlinerNode == "physics") {
872 // clear
874
875 // add
876 class OnAddBoundingVolumeAction: public virtual Action
877 {
878 public:
879 void performAction() override {
880 prototypePhysicsSubController->createBoundingVolume(prototype);
881 }
882 OnAddBoundingVolumeAction(PrototypePhysicsSubController* prototypePhysicsSubController, Prototype* prototype): prototypePhysicsSubController(prototypePhysicsSubController), prototype(prototype) {
883 }
884 private:
885 PrototypePhysicsSubController* prototypePhysicsSubController;
886 Prototype* prototype;
887 };
888 popUps->getContextMenuScreenController()->addMenuItem("Add Bounding Volume", "contextmenu_add", new OnAddBoundingVolumeAction(this, prototype));
889
890 // import convex meshes from model
891 class OnImportConvexMeshesFromModel: public virtual Action
892 {
893 public:
894 void performAction() override {
895 prototypePhysicsSubController->setImportConvexMeshFromModelDetails();
896 }
897 OnImportConvexMeshesFromModel(PrototypePhysicsSubController* prototypePhysicsSubController, Prototype* prototype): prototypePhysicsSubController(prototypePhysicsSubController) {
898 }
899 private:
900 PrototypePhysicsSubController* prototypePhysicsSubController;
901 };
902 popUps->getContextMenuScreenController()->addMenuItem("Import convex meshes", "contextmenu_importconvexmeshfrommodel", new OnImportConvexMeshesFromModel(this, prototype));
903
904 // generate convex meshes from model
905 class OnGenerateConvexMeshesFromModel: public virtual Action
906 {
907 public:
908 void performAction() override {
909 prototypePhysicsSubController->setGenerateConvexMeshFromModelDetails();
910 }
911 OnGenerateConvexMeshesFromModel(PrototypePhysicsSubController* prototypePhysicsSubController, Prototype* prototype): prototypePhysicsSubController(prototypePhysicsSubController), prototype(prototype) {
912 }
913 private:
914 PrototypePhysicsSubController* prototypePhysicsSubController;
915 Prototype* prototype;
916 };
917 popUps->getContextMenuScreenController()->addMenuItem("Generate convex meshes", "contextmenu_generateconvexmeshfrommodel", new OnGenerateConvexMeshesFromModel(this, prototype));
918
919 // delete convex meshes
920 class OnDeleteConvexMeshesFromModel: public virtual Action
921 {
922 public:
923 void performAction() override {
924 for (auto i = 0; i < prototype->getBoundingVolumeCount(); i++) {
925 prototypePhysicsSubController->view->clearModelBoundingVolume(i);
926 }
927 GenerateConvexMeshes::removeConvexMeshes(prototype);
928 prototypePhysicsSubController->editorView->reloadTabOutliner("physics");
929 prototypePhysicsSubController->updateDetails(prototype, "physics");
930 for (auto i = 0; i < prototype->getBoundingVolumeCount(); i++) {
931 prototypePhysicsSubController->view->setupModelBoundingVolume(prototype, i);
932 }
933 }
934 OnDeleteConvexMeshesFromModel(PrototypePhysicsSubController* prototypePhysicsSubController, Prototype* prototype): prototypePhysicsSubController(prototypePhysicsSubController), prototype(prototype) {
935 }
936 private:
937 PrototypePhysicsSubController* prototypePhysicsSubController;
938 Prototype* prototype;
939 };
940 popUps->getContextMenuScreenController()->addMenuItem("Delete convex meshes", "contextmenu_deleteconvexmeshes", new OnDeleteConvexMeshesFromModel(this, prototype));
941
942 //
943 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
944 }
945 }
946}
947
949 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById(tabView->getTabId() + "_tab_viewport"))->getActiveConditions().add("tools");
950}
951
953 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById(tabView->getTabId() + "_tab_viewport"))->getActiveConditions().remove("tools");
954}
Transformations which contain scale, rotations and translation.
const Matrix4x4 & getTransformationsMatrix() const
virtual void update()
Computes transformation matrix.
void addRotation(const Vector3 &axis, const float angle)
Add rotation.
BoundingBox * getBoundingBox()
Definition: Model.cpp:142
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
Convex mesh physics primitive.
Definition: ConvexMesh.h:33
Oriented bounding box physics primitive.
Sphere physics primitive.
Definition: Sphere.h:18
Prototype physics body definitions.
void setType(PrototypePhysics_BodyType *type)
Set type.
Prototype definition.
Definition: Prototype.h:49
bool addBoundingVolume(int idx, PrototypeBoundingVolume *prototypeBoundingVolume)
Add bounding volume at given index.
Definition: Prototype.cpp:71
PrototypePhysics * getPhysics()
Definition: Prototype.h:244
PrototypeBoundingVolume * getBoundingVolume(int idx)
Get bounding volume at given index.
Definition: Prototype.h:223
void removeBoundingVolume(int idx)
Remove bounding volume at given index.
Definition: Prototype.cpp:85
GUI parser.
Definition: GUIParser.h:39
GUI element node conditions.
GUI node controller base class.
virtual const MutableString & getValue()=0
GUI node base class.
Definition: GUINode.h:63
const string & getId()
Definition: GUINode.h:329
GUIScreenNode * getScreenNode()
Definition: GUINode.h:315
GUINodeController * getController()
Definition: GUINode.h:586
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
4x4 3D Matrix class
Definition: Matrix4x4.h:24
void getAxes(Vector3 &xAxis, Vector3 &yAxis, Vector3 &zAxis) const
Get coordinate system axes.
Definition: Matrix4x4.h:227
Vector3 computeEulerAngles() const
Compute Euler angles (rotation around x, y, z axes)
Definition: Matrix4x4.h:661
Matrix4x4 & identity()
Setup identity matrix.
Definition: Matrix4x4.h:326
Matrix4x4 clone()
Clones this matrix.
Definition: Matrix4x4.h:624
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 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
Vector3 & add(const Vector3 &v)
Adds a vector.
Definition: Vector3.h:301
Vector3 & scale(float scale)
Scale this vector.
Definition: Vector3.h:349
array< float, 3 > & getArray() const
Definition: Vector3.h:171
File system singleton class.
Definition: FileSystem.h:14
void addMenuItem(const string &text, const string &id, Action *action=nullptr)
Add menu item.
void show(const string &cwd, const string &captionText, const vector< string > &extensions, const string &fileName, bool enableFilter, Action *applyAction, Action *cancelAction=nullptr, const string &settingsFileName=".filedialog.properties", const string &settingsPathName=string())
Shows the file dialog pop up.
void show(const string &caption, const string &message)
Shows the pop up.
void removeGizmo()
Remove gizmo.
Definition: Gizmo.cpp:211
void setGizmoType(GizmoType gizmoType)
Set GIZMO type.
Definition: Gizmo.h:112
Pop ups controller accessor class.
Definition: PopUps.h:19
FileDialogScreenController * getFileDialogScreenController()
Definition: PopUps.h:42
ContextMenuScreenController * getContextMenuScreenController()
Definition: PopUps.h:70
InfoDialogScreenController * getInfoDialogScreenController()
Definition: PopUps.h:49
void setBoundingVolumeDetails(Prototype *prototype, int boundingVolumeIdx)
Set bounding volume details.
void applyBoundingVolumeSphereDetails(Prototype *prototype, int idx)
Apply bounding volume sphere details.
void applyBoundingVolumeConvexMeshDetails(Prototype *prototype, int idx)
Apply bounding volume convex mesh details.
void createOutlinerPhysicsXML(Prototype *prototype, string &xml)
Create physics XML for outliner.
void applyBoundingVolumeObbDetails(Prototype *prototype, int idx)
Apply bounding volume obb details.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY, Prototype *prototype)
On context menu requested.
void applyBoundingVolumeCapsuleDetails(Prototype *prototype, int idx)
Apply bounding volume capsule details.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node, Prototype *prototype)
On action performed.
void setBoundingVolumeOBBDetails(const Vector3 &center, const Vector3 &axis0, const Vector3 &axis1, const Vector3 &axis2, const Vector3 &halfExtension)
Set bounding volume OOB details.
void updateDetails(Prototype *prototype, const string &outlinerNode)
Update details panel.
void setBoundingVolumeSphereDetails(const Vector3 &center, float radius)
Set bounding volume sphere details.
void onValueChanged(GUIElementNode *node, Prototype *prototype)
On value changed.
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
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 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 setDisplayBoundingVolumeIdx(int displayBoundingVolumeIdx)
Set display bounding volume idx.
void setDisplayBoundingVolume(bool displayBoundingVolume)
Set up bounding volume visibility.
void endEditingBoundingVolume(Prototype *prototype)
End editing bounding volume.
void startEditingBoundingVolume(Prototype *prototype)
Start editing bounding volume.
void applyBoundingVolumeNone(Prototype *prototype, int idx)
On bounding volume none apply.
void setDetailsContent(const string &xml)
Set details content.
Definition: EditorView.cpp:218
EditorScreenController * getScreenController()
Definition: EditorView.h:57
void reloadTabOutliner(const string &newSelectionValue=string())
Reload tab outliner.
Definition: EditorView.cpp:222
Console class.
Definition: Console.h:26
Float class.
Definition: Float.h:23
Integer class.
Definition: Integer.h:26
Mutable string class.
Definition: MutableString.h:16
const string & getString() const
void acquireReference()
acquires a reference, incrementing the counter
Definition: Reference.cpp:16
String tools class.
Definition: StringTools.h:20
std::exception Exception
Exception base class.
Definition: Exception.h:19
virtual const string & getTabId()=0
Action Interface.
Definition: Action.h:12