Rewritten kinematic system
This commit is contained in:
parent
9a78efc7c2
commit
10f879bf88
16 changed files with 271 additions and 355 deletions
|
@ -634,6 +634,28 @@ float BulletPhysicsServer::body_get_param(RID p_body, BodyParameter p_param) con
|
||||||
return body->get_param(p_param);
|
return body->get_param(p_param);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void BulletPhysicsServer::body_set_kinematic_safe_margin(RID p_body, real_t p_margin) {
|
||||||
|
RigidBodyBullet *body = rigid_body_owner.get(p_body);
|
||||||
|
ERR_FAIL_COND(!body);
|
||||||
|
|
||||||
|
if (body->get_kinematic_utilities()) {
|
||||||
|
|
||||||
|
body->get_kinematic_utilities()->setSafeMargin(p_margin);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
real_t BulletPhysicsServer::body_get_kinematic_safe_margin(RID p_body) const {
|
||||||
|
RigidBodyBullet *body = rigid_body_owner.get(p_body);
|
||||||
|
ERR_FAIL_COND_V(!body, 0);
|
||||||
|
|
||||||
|
if (body->get_kinematic_utilities()) {
|
||||||
|
|
||||||
|
return body->get_kinematic_utilities()->safe_margin;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
void BulletPhysicsServer::body_set_state(RID p_body, BodyState p_state, const Variant &p_variant) {
|
void BulletPhysicsServer::body_set_state(RID p_body, BodyState p_state, const Variant &p_variant) {
|
||||||
RigidBodyBullet *body = rigid_body_owner.get(p_body);
|
RigidBodyBullet *body = rigid_body_owner.get(p_body);
|
||||||
ERR_FAIL_COND(!body);
|
ERR_FAIL_COND(!body);
|
||||||
|
@ -796,12 +818,12 @@ PhysicsDirectBodyState *BulletPhysicsServer::body_get_direct_state(RID p_body) {
|
||||||
return BulletPhysicsDirectBodyState::get_singleton(body);
|
return BulletPhysicsDirectBodyState::get_singleton(body);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool BulletPhysicsServer::body_test_motion(RID p_body, const Transform &p_from, const Vector3 &p_motion, float p_margin, MotionResult *r_result) {
|
bool BulletPhysicsServer::body_test_motion(RID p_body, const Transform &p_from, const Vector3 &p_motion, MotionResult *r_result) {
|
||||||
RigidBodyBullet *body = rigid_body_owner.get(p_body);
|
RigidBodyBullet *body = rigid_body_owner.get(p_body);
|
||||||
ERR_FAIL_COND_V(!body, false);
|
ERR_FAIL_COND_V(!body, false);
|
||||||
ERR_FAIL_COND_V(!body->get_space(), false);
|
ERR_FAIL_COND_V(!body->get_space(), false);
|
||||||
|
|
||||||
return body->get_space()->test_body_motion(body, p_from, p_motion, p_margin, r_result);
|
return body->get_space()->test_body_motion(body, p_from, p_motion, r_result);
|
||||||
}
|
}
|
||||||
|
|
||||||
RID BulletPhysicsServer::soft_body_create(bool p_init_sleeping) {
|
RID BulletPhysicsServer::soft_body_create(bool p_init_sleeping) {
|
||||||
|
|
|
@ -209,6 +209,9 @@ public:
|
||||||
virtual void body_set_param(RID p_body, BodyParameter p_param, float p_value);
|
virtual void body_set_param(RID p_body, BodyParameter p_param, float p_value);
|
||||||
virtual float body_get_param(RID p_body, BodyParameter p_param) const;
|
virtual float body_get_param(RID p_body, BodyParameter p_param) const;
|
||||||
|
|
||||||
|
virtual void body_set_kinematic_safe_margin(RID p_body, real_t p_margin);
|
||||||
|
virtual real_t body_get_kinematic_safe_margin(RID p_body) const;
|
||||||
|
|
||||||
virtual void body_set_state(RID p_body, BodyState p_state, const Variant &p_variant);
|
virtual void body_set_state(RID p_body, BodyState p_state, const Variant &p_variant);
|
||||||
virtual Variant body_get_state(RID p_body, BodyState p_state) const;
|
virtual Variant body_get_state(RID p_body, BodyState p_state) const;
|
||||||
|
|
||||||
|
@ -246,7 +249,7 @@ public:
|
||||||
// this function only works on physics process, errors and returns null otherwise
|
// this function only works on physics process, errors and returns null otherwise
|
||||||
virtual PhysicsDirectBodyState *body_get_direct_state(RID p_body);
|
virtual PhysicsDirectBodyState *body_get_direct_state(RID p_body);
|
||||||
|
|
||||||
virtual bool body_test_motion(RID p_body, const Transform &p_from, const Vector3 &p_motion, float p_margin = 0.001, MotionResult *r_result = NULL);
|
virtual bool body_test_motion(RID p_body, const Transform &p_from, const Vector3 &p_motion, MotionResult *r_result = NULL);
|
||||||
|
|
||||||
/* SOFT BODY API */
|
/* SOFT BODY API */
|
||||||
|
|
||||||
|
|
|
@ -101,7 +101,7 @@ void CollisionObjectBullet::remove_collision_exception(const CollisionObjectBull
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CollisionObjectBullet::has_collision_exception(const CollisionObjectBullet *p_otherCollisionObject) const {
|
bool CollisionObjectBullet::has_collision_exception(const CollisionObjectBullet *p_otherCollisionObject) const {
|
||||||
return !bt_collision_object->checkCollideWithOverride(p_otherCollisionObject->bt_collision_object);
|
return !bt_collision_object->checkCollideWith(p_otherCollisionObject->bt_collision_object);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CollisionObjectBullet::set_collision_enabled(bool p_enabled) {
|
void CollisionObjectBullet::set_collision_enabled(bool p_enabled) {
|
||||||
|
|
|
@ -242,50 +242,3 @@ btScalar GodotRestInfoContactResultCallback::addSingleResult(btManifoldPoint &cp
|
||||||
|
|
||||||
return cp.getDistance();
|
return cp.getDistance();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GodotRecoverAndClosestContactResultCallback::needsCollision(btBroadphaseProxy *proxy0) const {
|
|
||||||
const bool needs = GodotFilterCallback::test_collision_filters(m_collisionFilterGroup, m_collisionFilterMask, proxy0->m_collisionFilterGroup, proxy0->m_collisionFilterMask);
|
|
||||||
if (needs) {
|
|
||||||
btCollisionObject *btObj = static_cast<btCollisionObject *>(proxy0->m_clientObject);
|
|
||||||
CollisionObjectBullet *gObj = static_cast<CollisionObjectBullet *>(btObj->getUserPointer());
|
|
||||||
if (gObj == m_self_object) {
|
|
||||||
return false;
|
|
||||||
} else {
|
|
||||||
if (m_ignore_areas && gObj->getType() == CollisionObjectBullet::TYPE_AREA) {
|
|
||||||
return false;
|
|
||||||
} else if (m_self_object->has_collision_exception(gObj)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
btScalar GodotRecoverAndClosestContactResultCallback::addSingleResult(btManifoldPoint &cp, const btCollisionObjectWrapper *colObj0Wrap, int partId0, int index0, const btCollisionObjectWrapper *colObj1Wrap, int partId1, int index1) {
|
|
||||||
|
|
||||||
if (cp.getDistance() < -MAX_PENETRATION_DEPTH) {
|
|
||||||
if (m_most_penetrated_distance > cp.getDistance()) {
|
|
||||||
m_most_penetrated_distance = cp.getDistance();
|
|
||||||
|
|
||||||
// take other object
|
|
||||||
btScalar sign(1);
|
|
||||||
if (m_self_object == colObj0Wrap->getCollisionObject()->getUserPointer()) {
|
|
||||||
m_pointCollisionObject = colObj1Wrap->getCollisionObject();
|
|
||||||
m_other_compound_shape_index = cp.m_index1;
|
|
||||||
} else {
|
|
||||||
m_pointCollisionObject = colObj0Wrap->getCollisionObject();
|
|
||||||
sign = -1;
|
|
||||||
m_other_compound_shape_index = cp.m_index0;
|
|
||||||
}
|
|
||||||
|
|
||||||
m_pointNormalWorld = cp.m_normalWorldOnB * sign;
|
|
||||||
m_pointWorld = cp.getPositionWorldOnB();
|
|
||||||
m_penetration_distance = cp.getDistance();
|
|
||||||
|
|
||||||
m_recover_penetration -= cp.m_normalWorldOnB * sign * (cp.getDistance() + MAX_PENETRATION_DEPTH);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
|
@ -36,8 +36,6 @@
|
||||||
#include "btBulletDynamicsCommon.h"
|
#include "btBulletDynamicsCommon.h"
|
||||||
#include "servers/physics_server.h"
|
#include "servers/physics_server.h"
|
||||||
|
|
||||||
#define MAX_PENETRATION_DEPTH 0.005
|
|
||||||
|
|
||||||
class RigidBodyBullet;
|
class RigidBodyBullet;
|
||||||
|
|
||||||
/// This class is required to implement custom collision behaviour in the broadphase
|
/// This class is required to implement custom collision behaviour in the broadphase
|
||||||
|
@ -151,39 +149,4 @@ public:
|
||||||
virtual btScalar addSingleResult(btManifoldPoint &cp, const btCollisionObjectWrapper *colObj0Wrap, int partId0, int index0, const btCollisionObjectWrapper *colObj1Wrap, int partId1, int index1);
|
virtual btScalar addSingleResult(btManifoldPoint &cp, const btCollisionObjectWrapper *colObj0Wrap, int partId0, int index0, const btCollisionObjectWrapper *colObj1Wrap, int partId1, int index1);
|
||||||
};
|
};
|
||||||
|
|
||||||
struct GodotRecoverAndClosestContactResultCallback : public btCollisionWorld::ContactResultCallback {
|
|
||||||
public:
|
|
||||||
btVector3 m_pointNormalWorld;
|
|
||||||
btVector3 m_pointWorld;
|
|
||||||
btScalar m_penetration_distance;
|
|
||||||
int m_other_compound_shape_index;
|
|
||||||
const btCollisionObject *m_pointCollisionObject;
|
|
||||||
|
|
||||||
const RigidBodyBullet *m_self_object;
|
|
||||||
bool m_ignore_areas;
|
|
||||||
|
|
||||||
btScalar m_most_penetrated_distance;
|
|
||||||
btVector3 m_recover_penetration;
|
|
||||||
|
|
||||||
GodotRecoverAndClosestContactResultCallback()
|
|
||||||
: m_pointCollisionObject(NULL), m_penetration_distance(0), m_other_compound_shape_index(0), m_self_object(NULL), m_ignore_areas(true), m_most_penetrated_distance(1e20), m_recover_penetration(0, 0, 0) {}
|
|
||||||
|
|
||||||
GodotRecoverAndClosestContactResultCallback(const RigidBodyBullet *p_self_object, bool p_ignore_areas)
|
|
||||||
: m_pointCollisionObject(NULL), m_penetration_distance(0), m_other_compound_shape_index(0), m_self_object(p_self_object), m_ignore_areas(p_ignore_areas), m_most_penetrated_distance(9999999999), m_recover_penetration(0, 0, 0) {}
|
|
||||||
|
|
||||||
void reset() {
|
|
||||||
m_pointCollisionObject = NULL;
|
|
||||||
m_most_penetrated_distance = 1e20;
|
|
||||||
m_recover_penetration.setZero();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool hasHit() {
|
|
||||||
return m_pointCollisionObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual bool needsCollision(btBroadphaseProxy *proxy0) const;
|
|
||||||
|
|
||||||
virtual btScalar addSingleResult(btManifoldPoint &cp, const btCollisionObjectWrapper *colObj0Wrap, int partId0, int index0, const btCollisionObjectWrapper *colObj1Wrap, int partId1, int index1);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // GODOT_RESULT_CALLBACKS_H
|
#endif // GODOT_RESULT_CALLBACKS_H
|
||||||
|
|
|
@ -177,31 +177,21 @@ PhysicsDirectSpaceState *BulletPhysicsDirectBodyState::get_space_state() {
|
||||||
}
|
}
|
||||||
|
|
||||||
RigidBodyBullet::KinematicUtilities::KinematicUtilities(RigidBodyBullet *p_owner)
|
RigidBodyBullet::KinematicUtilities::KinematicUtilities(RigidBodyBullet *p_owner)
|
||||||
: m_owner(p_owner), m_margin(0.01) // Godot default margin 0.001
|
: owner(p_owner),
|
||||||
{
|
safe_margin(0.001) {
|
||||||
m_ghostObject = bulletnew(btPairCachingGhostObject);
|
|
||||||
|
|
||||||
int clearedCurrentFlags = m_ghostObject->getCollisionFlags();
|
|
||||||
clearedCurrentFlags &= ~(btCollisionObject::CF_KINEMATIC_OBJECT | btCollisionObject::CF_STATIC_OBJECT);
|
|
||||||
|
|
||||||
m_ghostObject->setCollisionFlags(clearedCurrentFlags | btCollisionObject::CF_KINEMATIC_OBJECT);
|
|
||||||
m_ghostObject->setUserPointer(p_owner);
|
|
||||||
m_ghostObject->setUserIndex(TYPE_KINEMATIC_GHOST_BODY);
|
|
||||||
|
|
||||||
resetDefShape();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
RigidBodyBullet::KinematicUtilities::~KinematicUtilities() {
|
RigidBodyBullet::KinematicUtilities::~KinematicUtilities() {
|
||||||
just_delete_shapes(m_shapes.size()); // don't need to resize
|
just_delete_shapes(shapes.size()); // don't need to resize
|
||||||
bulletdelete(m_ghostObject);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void RigidBodyBullet::KinematicUtilities::resetDefShape() {
|
void RigidBodyBullet::KinematicUtilities::setSafeMargin(btScalar p_margin) {
|
||||||
m_ghostObject->setCollisionShape(BulletPhysicsServer::get_empty_shape());
|
safe_margin = p_margin;
|
||||||
|
copyAllOwnerShapes();
|
||||||
}
|
}
|
||||||
|
|
||||||
void RigidBodyBullet::KinematicUtilities::copyAllOwnerShapes() {
|
void RigidBodyBullet::KinematicUtilities::copyAllOwnerShapes() {
|
||||||
const Vector<CollisionObjectBullet::ShapeWrapper> &shapes_wrappers(m_owner->get_shapes_wrappers());
|
const Vector<CollisionObjectBullet::ShapeWrapper> &shapes_wrappers(owner->get_shapes_wrappers());
|
||||||
const int shapes_count = shapes_wrappers.size();
|
const int shapes_count = shapes_wrappers.size();
|
||||||
|
|
||||||
just_delete_shapes(shapes_count);
|
just_delete_shapes(shapes_count);
|
||||||
|
@ -213,35 +203,35 @@ void RigidBodyBullet::KinematicUtilities::copyAllOwnerShapes() {
|
||||||
if (!shape_wrapper->active) {
|
if (!shape_wrapper->active) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
m_shapes[i].transform = shape_wrapper->transform;
|
shapes[i].transform = shape_wrapper->transform;
|
||||||
|
|
||||||
btConvexShape *&kin_shape_ref = m_shapes[i].shape;
|
btConvexShape *&kin_shape_ref = shapes[i].shape;
|
||||||
|
|
||||||
switch (shape_wrapper->shape->get_type()) {
|
switch (shape_wrapper->shape->get_type()) {
|
||||||
case PhysicsServer::SHAPE_SPHERE: {
|
case PhysicsServer::SHAPE_SPHERE: {
|
||||||
SphereShapeBullet *sphere = static_cast<SphereShapeBullet *>(shape_wrapper->shape);
|
SphereShapeBullet *sphere = static_cast<SphereShapeBullet *>(shape_wrapper->shape);
|
||||||
kin_shape_ref = ShapeBullet::create_shape_sphere(sphere->get_radius() * m_owner->body_scale[0] + m_margin);
|
kin_shape_ref = ShapeBullet::create_shape_sphere(sphere->get_radius() * owner->body_scale[0] + safe_margin);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case PhysicsServer::SHAPE_BOX: {
|
case PhysicsServer::SHAPE_BOX: {
|
||||||
BoxShapeBullet *box = static_cast<BoxShapeBullet *>(shape_wrapper->shape);
|
BoxShapeBullet *box = static_cast<BoxShapeBullet *>(shape_wrapper->shape);
|
||||||
kin_shape_ref = ShapeBullet::create_shape_box((box->get_half_extents() * m_owner->body_scale) + btVector3(m_margin, m_margin, m_margin));
|
kin_shape_ref = ShapeBullet::create_shape_box((box->get_half_extents() * owner->body_scale) + btVector3(safe_margin, safe_margin, safe_margin));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case PhysicsServer::SHAPE_CAPSULE: {
|
case PhysicsServer::SHAPE_CAPSULE: {
|
||||||
CapsuleShapeBullet *capsule = static_cast<CapsuleShapeBullet *>(shape_wrapper->shape);
|
CapsuleShapeBullet *capsule = static_cast<CapsuleShapeBullet *>(shape_wrapper->shape);
|
||||||
kin_shape_ref = ShapeBullet::create_shape_capsule(capsule->get_radius() * m_owner->body_scale[0] + m_margin, capsule->get_height() * m_owner->body_scale[1] + m_margin);
|
kin_shape_ref = ShapeBullet::create_shape_capsule(capsule->get_radius() * owner->body_scale[0] + safe_margin, capsule->get_height() * owner->body_scale[1] + safe_margin);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case PhysicsServer::SHAPE_CONVEX_POLYGON: {
|
case PhysicsServer::SHAPE_CONVEX_POLYGON: {
|
||||||
ConvexPolygonShapeBullet *godot_convex = static_cast<ConvexPolygonShapeBullet *>(shape_wrapper->shape);
|
ConvexPolygonShapeBullet *godot_convex = static_cast<ConvexPolygonShapeBullet *>(shape_wrapper->shape);
|
||||||
kin_shape_ref = ShapeBullet::create_shape_convex(godot_convex->vertices);
|
kin_shape_ref = ShapeBullet::create_shape_convex(godot_convex->vertices);
|
||||||
kin_shape_ref->setLocalScaling(m_owner->body_scale + btVector3(m_margin, m_margin, m_margin));
|
kin_shape_ref->setLocalScaling(owner->body_scale + btVector3(safe_margin, safe_margin, safe_margin));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case PhysicsServer::SHAPE_RAY: {
|
case PhysicsServer::SHAPE_RAY: {
|
||||||
RayShapeBullet *godot_ray = static_cast<RayShapeBullet *>(shape_wrapper->shape);
|
RayShapeBullet *godot_ray = static_cast<RayShapeBullet *>(shape_wrapper->shape);
|
||||||
kin_shape_ref = ShapeBullet::create_shape_ray(godot_ray->length * m_owner->body_scale[1] + m_margin);
|
kin_shape_ref = ShapeBullet::create_shape_ray(godot_ray->length * owner->body_scale[1] + safe_margin);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
@ -252,12 +242,12 @@ void RigidBodyBullet::KinematicUtilities::copyAllOwnerShapes() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void RigidBodyBullet::KinematicUtilities::just_delete_shapes(int new_size) {
|
void RigidBodyBullet::KinematicUtilities::just_delete_shapes(int new_size) {
|
||||||
for (int i = m_shapes.size() - 1; 0 <= i; --i) {
|
for (int i = shapes.size() - 1; 0 <= i; --i) {
|
||||||
if (m_shapes[i].shape) {
|
if (shapes[i].shape) {
|
||||||
bulletdelete(m_shapes[i].shape);
|
bulletdelete(shapes[i].shape);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
m_shapes.resize(new_size);
|
shapes.resize(new_size);
|
||||||
}
|
}
|
||||||
|
|
||||||
RigidBodyBullet::RigidBodyBullet()
|
RigidBodyBullet::RigidBodyBullet()
|
||||||
|
|
|
@ -162,17 +162,15 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
struct KinematicUtilities {
|
struct KinematicUtilities {
|
||||||
RigidBodyBullet *m_owner;
|
RigidBodyBullet *owner;
|
||||||
btScalar m_margin;
|
btScalar safe_margin;
|
||||||
btManifoldArray m_manifoldArray; ///keep track of the contact manifolds
|
Vector<KinematicShape> shapes;
|
||||||
class btPairCachingGhostObject *m_ghostObject;
|
|
||||||
Vector<KinematicShape> m_shapes;
|
|
||||||
|
|
||||||
KinematicUtilities(RigidBodyBullet *p_owner);
|
KinematicUtilities(RigidBodyBullet *p_owner);
|
||||||
~KinematicUtilities();
|
~KinematicUtilities();
|
||||||
|
|
||||||
|
void setSafeMargin(btScalar p_margin);
|
||||||
/// Used to set the default shape to ghost
|
/// Used to set the default shape to ghost
|
||||||
void resetDefShape();
|
|
||||||
void copyAllOwnerShapes();
|
void copyAllOwnerShapes();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
@ -50,9 +50,6 @@
|
||||||
#include "ustring.h"
|
#include "ustring.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
// test only
|
|
||||||
//#include "scene/3d/immediate_geometry.h"
|
|
||||||
|
|
||||||
BulletPhysicsDirectSpaceState::BulletPhysicsDirectSpaceState(SpaceBullet *p_space)
|
BulletPhysicsDirectSpaceState::BulletPhysicsDirectSpaceState(SpaceBullet *p_space)
|
||||||
: PhysicsDirectSpaceState(), space(p_space) {}
|
: PhysicsDirectSpaceState(), space(p_space) {}
|
||||||
|
|
||||||
|
@ -174,7 +171,7 @@ bool BulletPhysicsDirectSpaceState::cast_motion(const RID &p_shape, const Transf
|
||||||
btResult.m_collisionFilterGroup = p_collision_layer;
|
btResult.m_collisionFilterGroup = p_collision_layer;
|
||||||
btResult.m_collisionFilterMask = p_object_type_mask;
|
btResult.m_collisionFilterMask = p_object_type_mask;
|
||||||
|
|
||||||
space->dynamicsWorld->convexSweepTest(bt_convex_shape, bt_xform_from, bt_xform_to, btResult);
|
space->dynamicsWorld->convexSweepTest(bt_convex_shape, bt_xform_from, bt_xform_to, btResult, 0.002);
|
||||||
|
|
||||||
if (btResult.hasHit()) {
|
if (btResult.hasHit()) {
|
||||||
if (btCollisionObject::CO_RIGID_BODY == btResult.m_hitCollisionObject->getInternalType()) {
|
if (btCollisionObject::CO_RIGID_BODY == btResult.m_hitCollisionObject->getInternalType()) {
|
||||||
|
@ -281,10 +278,6 @@ Vector3 BulletPhysicsDirectSpaceState::get_closest_point_to_object_volume(RID p_
|
||||||
btVector3 bt_point;
|
btVector3 bt_point;
|
||||||
G_TO_B(p_point, bt_point);
|
G_TO_B(p_point, bt_point);
|
||||||
|
|
||||||
btGjkEpaPenetrationDepthSolver gjk_epa_pen_solver;
|
|
||||||
btVoronoiSimplexSolver gjk_simplex_solver;
|
|
||||||
gjk_simplex_solver.setEqualVertexThreshold(0.);
|
|
||||||
|
|
||||||
btSphereShape point_shape(0.);
|
btSphereShape point_shape(0.);
|
||||||
|
|
||||||
btCollisionShape *shape;
|
btCollisionShape *shape;
|
||||||
|
@ -308,7 +301,7 @@ Vector3 BulletPhysicsDirectSpaceState::get_closest_point_to_object_volume(RID p_
|
||||||
input.m_transformB = body_transform * child_transform;
|
input.m_transformB = body_transform * child_transform;
|
||||||
|
|
||||||
btPointCollector result;
|
btPointCollector result;
|
||||||
btGjkPairDetector gjk_pair_detector(&point_shape, convex_shape, &gjk_simplex_solver, &gjk_epa_pen_solver);
|
btGjkPairDetector gjk_pair_detector(&point_shape, convex_shape, space->gjk_simplex_solver, space->gjk_epa_pen_solver);
|
||||||
gjk_pair_detector.getClosestPoints(input, result, 0);
|
gjk_pair_detector.getClosestPoints(input, result, 0);
|
||||||
|
|
||||||
if (out_distance > result.m_distance) {
|
if (out_distance > result.m_distance) {
|
||||||
|
@ -558,13 +551,10 @@ btScalar calculateGodotCombinedRestitution(const btCollisionObject *body0, const
|
||||||
}
|
}
|
||||||
|
|
||||||
void SpaceBullet::create_empty_world(bool p_create_soft_world) {
|
void SpaceBullet::create_empty_world(bool p_create_soft_world) {
|
||||||
assert(NULL == broadphase);
|
|
||||||
assert(NULL == dispatcher);
|
gjk_epa_pen_solver = bulletnew(btGjkEpaPenetrationDepthSolver);
|
||||||
assert(NULL == solver);
|
gjk_simplex_solver = bulletnew(btVoronoiSimplexSolver);
|
||||||
assert(NULL == collisionConfiguration);
|
gjk_simplex_solver->setEqualVertexThreshold(0.f);
|
||||||
assert(NULL == dynamicsWorld);
|
|
||||||
assert(NULL == ghostPairCallback);
|
|
||||||
assert(NULL == godotFilterCallback);
|
|
||||||
|
|
||||||
void *world_mem;
|
void *world_mem;
|
||||||
if (p_create_soft_world) {
|
if (p_create_soft_world) {
|
||||||
|
@ -611,13 +601,6 @@ void SpaceBullet::create_empty_world(bool p_create_soft_world) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void SpaceBullet::destroy_world() {
|
void SpaceBullet::destroy_world() {
|
||||||
assert(NULL != broadphase);
|
|
||||||
assert(NULL != dispatcher);
|
|
||||||
assert(NULL != solver);
|
|
||||||
assert(NULL != collisionConfiguration);
|
|
||||||
assert(NULL != dynamicsWorld);
|
|
||||||
assert(NULL != ghostPairCallback);
|
|
||||||
assert(NULL != godotFilterCallback);
|
|
||||||
|
|
||||||
/// The world elements (like: Collision Objects, Constraints, Shapes) are managed by godot
|
/// The world elements (like: Collision Objects, Constraints, Shapes) are managed by godot
|
||||||
|
|
||||||
|
@ -637,14 +620,13 @@ void SpaceBullet::destroy_world() {
|
||||||
bulletdelete(dispatcher);
|
bulletdelete(dispatcher);
|
||||||
bulletdelete(collisionConfiguration);
|
bulletdelete(collisionConfiguration);
|
||||||
bulletdelete(soft_body_world_info);
|
bulletdelete(soft_body_world_info);
|
||||||
|
bulletdelete(gjk_simplex_solver);
|
||||||
|
bulletdelete(gjk_epa_pen_solver);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SpaceBullet::check_ghost_overlaps() {
|
void SpaceBullet::check_ghost_overlaps() {
|
||||||
|
|
||||||
/// Algorith support variables
|
/// Algorith support variables
|
||||||
btGjkEpaPenetrationDepthSolver gjk_epa_pen_solver;
|
|
||||||
btVoronoiSimplexSolver gjk_simplex_solver;
|
|
||||||
gjk_simplex_solver.setEqualVertexThreshold(0.f);
|
|
||||||
btConvexShape *other_body_shape;
|
btConvexShape *other_body_shape;
|
||||||
btConvexShape *area_shape;
|
btConvexShape *area_shape;
|
||||||
btGjkPairDetector::ClosestPointInput gjk_input;
|
btGjkPairDetector::ClosestPointInput gjk_input;
|
||||||
|
@ -701,7 +683,7 @@ void SpaceBullet::check_ghost_overlaps() {
|
||||||
gjk_input.m_transformB = otherObject->get_transform__bullet() * otherObject->get_compound_shape()->getChildTransform(z);
|
gjk_input.m_transformB = otherObject->get_transform__bullet() * otherObject->get_compound_shape()->getChildTransform(z);
|
||||||
|
|
||||||
btPointCollector result;
|
btPointCollector result;
|
||||||
btGjkPairDetector gjk_pair_detector(area_shape, other_body_shape, &gjk_simplex_solver, &gjk_epa_pen_solver);
|
btGjkPairDetector gjk_pair_detector(area_shape, other_body_shape, gjk_simplex_solver, gjk_epa_pen_solver);
|
||||||
gjk_pair_detector.getClosestPoints(gjk_input, result, 0);
|
gjk_pair_detector.getClosestPoints(gjk_input, result, 0);
|
||||||
|
|
||||||
if (0 >= result.m_distance) {
|
if (0 >= result.m_distance) {
|
||||||
|
@ -743,23 +725,11 @@ void SpaceBullet::check_body_collision() {
|
||||||
const int numManifolds = dynamicsWorld->getDispatcher()->getNumManifolds();
|
const int numManifolds = dynamicsWorld->getDispatcher()->getNumManifolds();
|
||||||
for (int i = 0; i < numManifolds; ++i) {
|
for (int i = 0; i < numManifolds; ++i) {
|
||||||
btPersistentManifold *contactManifold = dynamicsWorld->getDispatcher()->getManifoldByIndexInternal(i);
|
btPersistentManifold *contactManifold = dynamicsWorld->getDispatcher()->getManifoldByIndexInternal(i);
|
||||||
const btCollisionObject *obA = contactManifold->getBody0();
|
|
||||||
const btCollisionObject *obB = contactManifold->getBody1();
|
|
||||||
|
|
||||||
if (btCollisionObject::CO_RIGID_BODY != obA->getInternalType() || btCollisionObject::CO_RIGID_BODY != obB->getInternalType()) {
|
|
||||||
// This checks is required to be sure the ghost object is skipped
|
|
||||||
// The ghost object "getUserPointer" return the BodyBullet owner so this check is required
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Asserts all Godot objects are assigned
|
|
||||||
assert(NULL != obA->getUserPointer());
|
|
||||||
assert(NULL != obB->getUserPointer());
|
|
||||||
|
|
||||||
// I know this static cast is a bit risky. But I'm checking its type just after it.
|
// I know this static cast is a bit risky. But I'm checking its type just after it.
|
||||||
// This allow me to avoid a lot of other cast and checks
|
// This allow me to avoid a lot of other cast and checks
|
||||||
RigidBodyBullet *bodyA = static_cast<RigidBodyBullet *>(obA->getUserPointer());
|
RigidBodyBullet *bodyA = static_cast<RigidBodyBullet *>(contactManifold->getBody0()->getUserPointer());
|
||||||
RigidBodyBullet *bodyB = static_cast<RigidBodyBullet *>(obB->getUserPointer());
|
RigidBodyBullet *bodyB = static_cast<RigidBodyBullet *>(contactManifold->getBody1()->getUserPointer());
|
||||||
|
|
||||||
if (CollisionObjectBullet::TYPE_RIGID_BODY == bodyA->getType() && CollisionObjectBullet::TYPE_RIGID_BODY == bodyB->getType()) {
|
if (CollisionObjectBullet::TYPE_RIGID_BODY == bodyA->getType() && CollisionObjectBullet::TYPE_RIGID_BODY == bodyB->getType()) {
|
||||||
if (!bodyA->can_add_collision() && !bodyB->can_add_collision()) {
|
if (!bodyA->can_add_collision() && !bodyB->can_add_collision()) {
|
||||||
|
@ -784,13 +754,13 @@ void SpaceBullet::check_body_collision() {
|
||||||
if (bodyA->can_add_collision()) {
|
if (bodyA->can_add_collision()) {
|
||||||
B_TO_G(pt.getPositionWorldOnB(), collisionWorldPosition);
|
B_TO_G(pt.getPositionWorldOnB(), collisionWorldPosition);
|
||||||
/// pt.m_localPointB Doesn't report the exact point in local space
|
/// pt.m_localPointB Doesn't report the exact point in local space
|
||||||
B_TO_G(pt.getPositionWorldOnB() - obB->getWorldTransform().getOrigin(), collisionLocalPosition);
|
B_TO_G(pt.getPositionWorldOnB() - contactManifold->getBody1()->getWorldTransform().getOrigin(), collisionLocalPosition);
|
||||||
bodyA->add_collision_object(bodyB, collisionWorldPosition, collisionLocalPosition, normalOnB, pt.m_index1, pt.m_index0);
|
bodyA->add_collision_object(bodyB, collisionWorldPosition, collisionLocalPosition, normalOnB, pt.m_index1, pt.m_index0);
|
||||||
}
|
}
|
||||||
if (bodyB->can_add_collision()) {
|
if (bodyB->can_add_collision()) {
|
||||||
B_TO_G(pt.getPositionWorldOnA(), collisionWorldPosition);
|
B_TO_G(pt.getPositionWorldOnA(), collisionWorldPosition);
|
||||||
/// pt.m_localPointA Doesn't report the exact point in local space
|
/// pt.m_localPointA Doesn't report the exact point in local space
|
||||||
B_TO_G(pt.getPositionWorldOnA() - obA->getWorldTransform().getOrigin(), collisionLocalPosition);
|
B_TO_G(pt.getPositionWorldOnA() - contactManifold->getBody0()->getWorldTransform().getOrigin(), collisionLocalPosition);
|
||||||
bodyB->add_collision_object(bodyA, collisionWorldPosition, collisionLocalPosition, normalOnB * -1, pt.m_index0, pt.m_index1);
|
bodyB->add_collision_object(bodyA, collisionWorldPosition, collisionLocalPosition, normalOnB * -1, pt.m_index0, pt.m_index1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -817,7 +787,12 @@ void SpaceBullet::update_gravity() {
|
||||||
/// I'm leaving this here just for future tests.
|
/// I'm leaving this here just for future tests.
|
||||||
/// Debug motion and normal vector drawing
|
/// Debug motion and normal vector drawing
|
||||||
#define debug_test_motion 0
|
#define debug_test_motion 0
|
||||||
|
#define PERFORM_INITIAL_UNSTACK 1
|
||||||
|
|
||||||
#if debug_test_motion
|
#if debug_test_motion
|
||||||
|
|
||||||
|
#include "scene/3d/immediate_geometry.h"
|
||||||
|
|
||||||
static ImmediateGeometry *motionVec(NULL);
|
static ImmediateGeometry *motionVec(NULL);
|
||||||
static ImmediateGeometry *normalLine(NULL);
|
static ImmediateGeometry *normalLine(NULL);
|
||||||
static Ref<SpatialMaterial> red_mat;
|
static Ref<SpatialMaterial> red_mat;
|
||||||
|
@ -825,10 +800,10 @@ static Ref<SpatialMaterial> blue_mat;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define IGNORE_AREAS_TRUE true
|
#define IGNORE_AREAS_TRUE true
|
||||||
bool SpaceBullet::test_body_motion(RigidBodyBullet *p_body, const Transform &p_from, const Vector3 &p_motion, real_t p_margin, PhysicsServer::MotionResult *r_result) {
|
bool SpaceBullet::test_body_motion(RigidBodyBullet *p_body, const Transform &p_from, const Vector3 &p_motion, PhysicsServer::MotionResult *r_result) {
|
||||||
|
|
||||||
#if debug_test_motion
|
#if debug_test_motion
|
||||||
/// Yes I know this is not good, but I've used it as fast debugging.
|
/// Yes I know this is not good, but I've used it as fast debugging hack.
|
||||||
/// I'm leaving it here just for speedup the other eventual debugs
|
/// I'm leaving it here just for speedup the other eventual debugs
|
||||||
if (!normalLine) {
|
if (!normalLine) {
|
||||||
motionVec = memnew(ImmediateGeometry);
|
motionVec = memnew(ImmediateGeometry);
|
||||||
|
@ -866,43 +841,21 @@ bool SpaceBullet::test_body_motion(RigidBodyBullet *p_body, const Transform &p_f
|
||||||
// }
|
// }
|
||||||
//}
|
//}
|
||||||
|
|
||||||
btVector3 recover_initial_position;
|
btVector3 recover_initial_position(0, 0, 0);
|
||||||
recover_initial_position.setZero();
|
|
||||||
|
|
||||||
/// I'm performing the unstack at the end of movement so I'm sure the player is unstacked even after the movement.
|
|
||||||
/// I've removed the initial unstack because this is useful just for the first tick since after the first
|
|
||||||
/// the real unstack is performed at the end of process.
|
|
||||||
/// However I'm leaving here the old code.
|
|
||||||
/// Note: It has a bug when two shapes touches something simultaneously the body is moved too much away (I'm not fixing it for the reason written above).
|
|
||||||
#define INITIAL_UNSTACK 0
|
|
||||||
#if !INITIAL_UNSTACK
|
|
||||||
btTransform body_safe_position;
|
btTransform body_safe_position;
|
||||||
G_TO_B(p_from, body_safe_position);
|
G_TO_B(p_from, body_safe_position);
|
||||||
//btTransform body_unsafe_positino;
|
|
||||||
//G_TO_B(p_from, body_unsafe_positino);
|
|
||||||
#else
|
|
||||||
btTransform body_safe_position;
|
|
||||||
btTransform body_unsafe_positino;
|
|
||||||
{ /// Phase one - multi shapes depenetration using margin
|
{ /// Phase one - multi shapes depenetration using margin
|
||||||
G_TO_B(p_from, body_safe_position);
|
#if PERFORM_INITIAL_UNSTACK
|
||||||
G_TO_B(p_from, body_unsafe_positino);
|
if (recover_from_penetration(p_body, body_safe_position, recover_initial_position)) {
|
||||||
|
|
||||||
// MAX_PENETRATION_DEPTH Is useful have the ghost a bit penetrated so I can detect the floor easily
|
// Add recover position to "From" and "To" transforms
|
||||||
recover_from_penetration(p_body, body_safe_position, MAX_PENETRATION_DEPTH, /* p_depenetration_speed */ 1, recover_initial_position);
|
body_safe_position.getOrigin() += recover_initial_position;
|
||||||
|
}
|
||||||
/// Not required if I put p_depenetration_speed = 1
|
|
||||||
//for(int t = 0; t<4; ++t){
|
|
||||||
// if(!recover_from_penetration(p_body, body_safe_position, MAX_PENETRATION_DEPTH, /* p_depenetration_speed */0.2, recover_initial_position)){
|
|
||||||
// break;
|
|
||||||
// }
|
|
||||||
//}
|
|
||||||
|
|
||||||
// Add recover position to "From" and "To" transforms
|
|
||||||
body_safe_position.getOrigin() += recover_initial_position;
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
int shape_most_recovered(-1);
|
|
||||||
btVector3 recovered_motion;
|
btVector3 recovered_motion;
|
||||||
G_TO_B(p_motion, recovered_motion);
|
G_TO_B(p_motion, recovered_motion);
|
||||||
const int shape_count(p_body->get_shape_count());
|
const int shape_count(p_body->get_shape_count());
|
||||||
|
@ -930,127 +883,53 @@ bool SpaceBullet::test_body_motion(RigidBodyBullet *p_body, const Transform &p_f
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
btTransform shape_xform_from;
|
btTransform shape_world_from;
|
||||||
G_TO_B(p_body->get_shape_transform(shIndex), shape_xform_from);
|
G_TO_B(p_body->get_shape_transform(shIndex), shape_world_from);
|
||||||
//btTransform shape_xform_to(shape_xform_from);
|
|
||||||
|
|
||||||
// Add local shape transform
|
// Add local shape transform
|
||||||
shape_xform_from.getOrigin() += body_safe_position.getOrigin();
|
shape_world_from = body_safe_position * shape_world_from;
|
||||||
shape_xform_from.getBasis() *= body_safe_position.getBasis();
|
|
||||||
|
|
||||||
btTransform shape_xform_to(shape_xform_from);
|
btTransform shape_world_to(shape_world_from);
|
||||||
//shape_xform_to.getOrigin() += body_unsafe_positino.getOrigin();
|
shape_world_to.getOrigin() += recovered_motion;
|
||||||
//shape_xform_to.getBasis() *= body_unsafe_positino.getBasis();
|
|
||||||
shape_xform_to.getOrigin() += recovered_motion;
|
|
||||||
|
|
||||||
GodotKinClosestConvexResultCallback btResult(shape_xform_from.getOrigin(), shape_xform_to.getOrigin(), p_body, IGNORE_AREAS_TRUE);
|
GodotKinClosestConvexResultCallback btResult(shape_world_from.getOrigin(), shape_world_to.getOrigin(), p_body, IGNORE_AREAS_TRUE);
|
||||||
btResult.m_collisionFilterGroup = p_body->get_collision_layer();
|
btResult.m_collisionFilterGroup = p_body->get_collision_layer();
|
||||||
btResult.m_collisionFilterMask = p_body->get_collision_mask();
|
btResult.m_collisionFilterMask = p_body->get_collision_mask();
|
||||||
|
|
||||||
dynamicsWorld->convexSweepTest(convex_shape_test, shape_xform_from, shape_xform_to, btResult);
|
dynamicsWorld->convexSweepTest(convex_shape_test, shape_world_from, shape_world_to, btResult, 0.002);
|
||||||
|
|
||||||
if (btResult.hasHit()) {
|
if (btResult.hasHit()) {
|
||||||
//recovered_motion *= btResult.m_closestHitFraction;
|
|
||||||
/// Since for each sweep test I fix the motion of new shapes in base the recover result,
|
/// Since for each sweep test I fix the motion of new shapes in base the recover result,
|
||||||
/// if another shape will hit something it means that has a deepest recovering respect the previous shape
|
/// if another shape will hit something it means that has a deepest penetration respect the previous shape
|
||||||
shape_most_recovered = shIndex;
|
recovered_motion *= btResult.m_closestHitFraction;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool hasHit = false;
|
bool hasPenetration = false;
|
||||||
|
|
||||||
{ /// Phase three - contact test with margin
|
{ /// Phase three - Recover + contact test with margin
|
||||||
|
|
||||||
btGhostObject *ghost = p_body->get_kinematic_utilities()->m_ghostObject;
|
RecoverResult recover_result;
|
||||||
|
|
||||||
GodotRecoverAndClosestContactResultCallback result_callabck;
|
hasPenetration = recover_from_penetration(p_body, body_safe_position, recovered_motion, &recover_result);
|
||||||
|
|
||||||
if (false && 0 <= shape_most_recovered) {
|
|
||||||
result_callabck.m_self_object = p_body;
|
|
||||||
result_callabck.m_ignore_areas = IGNORE_AREAS_TRUE;
|
|
||||||
result_callabck.m_collisionFilterGroup = p_body->get_collision_layer();
|
|
||||||
result_callabck.m_collisionFilterMask = p_body->get_collision_mask();
|
|
||||||
|
|
||||||
const RigidBodyBullet::KinematicShape &kin(p_body->get_kinematic_utilities()->m_shapes[shape_most_recovered]);
|
|
||||||
ghost->setCollisionShape(kin.shape);
|
|
||||||
ghost->setWorldTransform(body_safe_position);
|
|
||||||
|
|
||||||
ghost->getWorldTransform().getOrigin() += recovered_motion;
|
|
||||||
ghost->getWorldTransform().getOrigin() += kin.transform.getOrigin();
|
|
||||||
ghost->getWorldTransform().getBasis() *= kin.transform.getBasis();
|
|
||||||
|
|
||||||
dynamicsWorld->contactTest(ghost, result_callabck);
|
|
||||||
|
|
||||||
recovered_motion += result_callabck.m_recover_penetration; // Required to avoid all kind of penetration
|
|
||||||
|
|
||||||
} else {
|
|
||||||
// The sweep result does not return a penetrated shape, so I've to check all shapes
|
|
||||||
// Then return the most penetrated shape
|
|
||||||
|
|
||||||
GodotRecoverAndClosestContactResultCallback iter_result_callabck(p_body, IGNORE_AREAS_TRUE);
|
|
||||||
iter_result_callabck.m_collisionFilterGroup = p_body->get_collision_layer();
|
|
||||||
iter_result_callabck.m_collisionFilterMask = p_body->get_collision_mask();
|
|
||||||
|
|
||||||
btScalar max_penetration(99999999999);
|
|
||||||
for (int i = 0; i < shape_count; ++i) {
|
|
||||||
|
|
||||||
const RigidBodyBullet::KinematicShape &kin(p_body->get_kinematic_utilities()->m_shapes[i]);
|
|
||||||
if (!kin.is_active()) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// reset callback each function
|
|
||||||
iter_result_callabck.reset();
|
|
||||||
|
|
||||||
ghost->setCollisionShape(kin.shape);
|
|
||||||
ghost->setWorldTransform(body_safe_position);
|
|
||||||
ghost->getWorldTransform().getOrigin() += recovered_motion;
|
|
||||||
ghost->getWorldTransform().getOrigin() += kin.transform.getOrigin();
|
|
||||||
ghost->getWorldTransform().getBasis() *= kin.transform.getBasis();
|
|
||||||
|
|
||||||
dynamicsWorld->contactTest(ghost, iter_result_callabck);
|
|
||||||
|
|
||||||
if (iter_result_callabck.hasHit()) {
|
|
||||||
if (max_penetration > iter_result_callabck.m_penetration_distance) {
|
|
||||||
max_penetration = iter_result_callabck.m_penetration_distance;
|
|
||||||
shape_most_recovered = i;
|
|
||||||
// This is more penetrated
|
|
||||||
result_callabck.m_pointCollisionObject = iter_result_callabck.m_pointCollisionObject;
|
|
||||||
result_callabck.m_pointNormalWorld = iter_result_callabck.m_pointNormalWorld;
|
|
||||||
result_callabck.m_pointWorld = iter_result_callabck.m_pointWorld;
|
|
||||||
result_callabck.m_penetration_distance = iter_result_callabck.m_penetration_distance;
|
|
||||||
result_callabck.m_other_compound_shape_index = iter_result_callabck.m_other_compound_shape_index;
|
|
||||||
|
|
||||||
recovered_motion += iter_result_callabck.m_recover_penetration; // Required to avoid all kind of penetration
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
hasHit = result_callabck.hasHit();
|
|
||||||
|
|
||||||
if (r_result) {
|
if (r_result) {
|
||||||
|
|
||||||
B_TO_G(recovered_motion + recover_initial_position, r_result->motion);
|
B_TO_G(recovered_motion + recover_initial_position, r_result->motion);
|
||||||
|
|
||||||
if (hasHit) {
|
if (hasPenetration) {
|
||||||
|
const btRigidBody *btRigid = static_cast<const btRigidBody *>(recover_result.other_collision_object);
|
||||||
if (btCollisionObject::CO_RIGID_BODY != result_callabck.m_pointCollisionObject->getInternalType()) {
|
|
||||||
ERR_PRINT("The collision is not against a rigid body. Please check what's going on.");
|
|
||||||
goto EndExecution;
|
|
||||||
}
|
|
||||||
const btRigidBody *btRigid = static_cast<const btRigidBody *>(result_callabck.m_pointCollisionObject);
|
|
||||||
CollisionObjectBullet *collisionObject = static_cast<CollisionObjectBullet *>(btRigid->getUserPointer());
|
CollisionObjectBullet *collisionObject = static_cast<CollisionObjectBullet *>(btRigid->getUserPointer());
|
||||||
|
|
||||||
r_result->remainder = p_motion - r_result->motion; // is the remaining movements
|
r_result->remainder = p_motion - r_result->motion; // is the remaining movements
|
||||||
B_TO_G(result_callabck.m_pointWorld, r_result->collision_point);
|
B_TO_G(recover_result.pointWorld, r_result->collision_point);
|
||||||
B_TO_G(result_callabck.m_pointNormalWorld, r_result->collision_normal);
|
B_TO_G(recover_result.pointNormalWorld, r_result->collision_normal);
|
||||||
B_TO_G(btRigid->getVelocityInLocalPoint(result_callabck.m_pointWorld - btRigid->getWorldTransform().getOrigin()), r_result->collider_velocity); // It calculates velocity at point and assign it using special function Bullet_to_Godot
|
B_TO_G(btRigid->getVelocityInLocalPoint(recover_result.pointWorld - btRigid->getWorldTransform().getOrigin()), r_result->collider_velocity); // It calculates velocity at point and assign it using special function Bullet_to_Godot
|
||||||
r_result->collider = collisionObject->get_self();
|
r_result->collider = collisionObject->get_self();
|
||||||
r_result->collider_id = collisionObject->get_instance_id();
|
r_result->collider_id = collisionObject->get_instance_id();
|
||||||
r_result->collider_shape = result_callabck.m_other_compound_shape_index;
|
r_result->collider_shape = recover_result.other_compound_shape_index;
|
||||||
r_result->collision_local_shape = shape_most_recovered;
|
r_result->collision_local_shape = recover_result.local_shape_most_recovered;
|
||||||
|
|
||||||
//{ /// Add manifold point to manage collisions
|
//{ /// Add manifold point to manage collisions
|
||||||
// btPersistentManifold* manifold = dynamicsWorld->getDispatcher()->getNewManifold(p_body->getBtBody(), btRigid);
|
// btPersistentManifold* manifold = dynamicsWorld->getDispatcher()->getNewManifold(p_body->getBtBody(), btRigid);
|
||||||
|
@ -1079,85 +958,144 @@ bool SpaceBullet::test_body_motion(RigidBodyBullet *p_body, const Transform &p_f
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
EndExecution:
|
return hasPenetration;
|
||||||
p_body->get_kinematic_utilities()->resetDefShape();
|
|
||||||
return hasHit;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Note: It has a bug when two shapes touches something simultaneously the body is moved too much away
|
struct RecoverPenetrationBroadPhaseCallback : public btBroadphaseAabbCallback {
|
||||||
/// (I'm not fixing it because I don't use it).
|
private:
|
||||||
bool SpaceBullet::recover_from_penetration(RigidBodyBullet *p_body, const btTransform &p_from, btScalar p_maxPenetrationDepth, btScalar p_depenetration_speed, btVector3 &out_recover_position) {
|
const btCollisionObject *self_collision_object;
|
||||||
|
uint32_t collision_layer;
|
||||||
|
uint32_t collision_mask;
|
||||||
|
|
||||||
|
public:
|
||||||
|
Vector<btCollisionObject *> result_collision_objects;
|
||||||
|
|
||||||
|
public:
|
||||||
|
RecoverPenetrationBroadPhaseCallback(const btCollisionObject *p_self_collision_object, uint32_t p_collision_layer, uint32_t p_collision_mask)
|
||||||
|
: self_collision_object(p_self_collision_object),
|
||||||
|
collision_layer(p_collision_layer),
|
||||||
|
collision_mask(p_collision_mask) {}
|
||||||
|
|
||||||
|
virtual ~RecoverPenetrationBroadPhaseCallback() {}
|
||||||
|
|
||||||
|
virtual bool process(const btBroadphaseProxy *proxy) {
|
||||||
|
|
||||||
|
btCollisionObject *co = static_cast<btCollisionObject *>(proxy->m_clientObject);
|
||||||
|
if (co->getInternalType() <= btCollisionObject::CO_RIGID_BODY) {
|
||||||
|
if (self_collision_object != proxy->m_clientObject && GodotFilterCallback::test_collision_filters(collision_layer, collision_mask, proxy->m_collisionFilterGroup, proxy->m_collisionFilterMask)) {
|
||||||
|
result_collision_objects.push_back(co);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void reset() {
|
||||||
|
result_collision_objects.empty();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
bool SpaceBullet::recover_from_penetration(RigidBodyBullet *p_body, const btTransform &p_body_position, btVector3 &out_recover_position, RecoverResult *recover_result) {
|
||||||
|
|
||||||
|
RecoverPenetrationBroadPhaseCallback recover_broad_result(p_body->get_bt_collision_object(), p_body->get_collision_layer(), p_body->get_collision_mask());
|
||||||
|
|
||||||
|
btTransform body_shape_position;
|
||||||
|
btTransform body_shape_position_recovered;
|
||||||
|
|
||||||
|
// Broad phase support
|
||||||
|
btVector3 minAabb, maxAabb;
|
||||||
|
|
||||||
|
// GJK support
|
||||||
|
btGjkPairDetector::ClosestPointInput gjk_input;
|
||||||
|
|
||||||
bool penetration = false;
|
bool penetration = false;
|
||||||
btPairCachingGhostObject *ghost = p_body->get_kinematic_utilities()->m_ghostObject;
|
|
||||||
|
|
||||||
for (int kinIndex = p_body->get_kinematic_utilities()->m_shapes.size() - 1; 0 <= kinIndex; --kinIndex) {
|
// For each shape
|
||||||
const RigidBodyBullet::KinematicShape &kin_shape(p_body->get_kinematic_utilities()->m_shapes[kinIndex]);
|
for (int kinIndex = p_body->get_kinematic_utilities()->shapes.size() - 1; 0 <= kinIndex; --kinIndex) {
|
||||||
|
|
||||||
|
recover_broad_result.reset();
|
||||||
|
|
||||||
|
const RigidBodyBullet::KinematicShape &kin_shape(p_body->get_kinematic_utilities()->shapes[kinIndex]);
|
||||||
if (!kin_shape.is_active()) {
|
if (!kin_shape.is_active()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
btConvexShape *convexShape = kin_shape.shape;
|
body_shape_position = p_body_position * kin_shape.transform;
|
||||||
btTransform shape_xform(kin_shape.transform);
|
body_shape_position_recovered = body_shape_position;
|
||||||
|
body_shape_position_recovered.getOrigin() += out_recover_position;
|
||||||
|
|
||||||
// from local to world
|
kin_shape.shape->getAabb(body_shape_position_recovered, minAabb, maxAabb);
|
||||||
shape_xform.getOrigin() += p_from.getOrigin();
|
dynamicsWorld->getBroadphase()->aabbTest(minAabb, maxAabb, recover_broad_result);
|
||||||
shape_xform.getBasis() *= p_from.getBasis();
|
|
||||||
|
|
||||||
// Apply last recovery to avoid doubling the recovering
|
for (int i = recover_broad_result.result_collision_objects.size() - 1; 0 <= i; --i) {
|
||||||
shape_xform.getOrigin() += out_recover_position;
|
btCollisionObject *otherObject = recover_broad_result.result_collision_objects[i];
|
||||||
|
if (!p_body->get_bt_collision_object()->checkCollideWith(otherObject) || !otherObject->checkCollideWith(p_body->get_bt_collision_object()))
|
||||||
ghost->setCollisionShape(convexShape);
|
|
||||||
ghost->setWorldTransform(shape_xform);
|
|
||||||
|
|
||||||
btVector3 minAabb, maxAabb;
|
|
||||||
convexShape->getAabb(shape_xform, minAabb, maxAabb);
|
|
||||||
dynamicsWorld->getBroadphase()->setAabb(ghost->getBroadphaseHandle(),
|
|
||||||
minAabb,
|
|
||||||
maxAabb,
|
|
||||||
dynamicsWorld->getDispatcher());
|
|
||||||
|
|
||||||
dynamicsWorld->getDispatcher()->dispatchAllCollisionPairs(ghost->getOverlappingPairCache(), dynamicsWorld->getDispatchInfo(), dynamicsWorld->getDispatcher());
|
|
||||||
|
|
||||||
for (int i = 0; i < ghost->getOverlappingPairCache()->getNumOverlappingPairs(); ++i) {
|
|
||||||
p_body->get_kinematic_utilities()->m_manifoldArray.resize(0);
|
|
||||||
|
|
||||||
btBroadphasePair *collisionPair = &ghost->getOverlappingPairCache()->getOverlappingPairArray()[i];
|
|
||||||
|
|
||||||
btCollisionObject *obj0 = static_cast<btCollisionObject *>(collisionPair->m_pProxy0->m_clientObject);
|
|
||||||
btCollisionObject *obj1 = static_cast<btCollisionObject *>(collisionPair->m_pProxy1->m_clientObject);
|
|
||||||
|
|
||||||
if ((obj0 && !obj0->hasContactResponse()) || (obj1 && !obj1->hasContactResponse()))
|
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// This is not required since the dispatched does all the job
|
if (otherObject->getCollisionShape()->isCompound()) { /// Execute GJK test against all shapes
|
||||||
//if (!needsCollision(obj0, obj1))
|
|
||||||
// continue;
|
|
||||||
|
|
||||||
if (collisionPair->m_algorithm)
|
// Each convex shape
|
||||||
collisionPair->m_algorithm->getAllContactManifolds(p_body->get_kinematic_utilities()->m_manifoldArray);
|
btCompoundShape *cs = static_cast<btCompoundShape *>(otherObject->getCollisionShape());
|
||||||
|
for (int x = cs->getNumChildShapes() - 1; 0 <= x; --x) {
|
||||||
|
|
||||||
for (int j = 0; j < p_body->get_kinematic_utilities()->m_manifoldArray.size(); ++j) {
|
if (!cs->getChildShape(x)->isConvex())
|
||||||
|
continue;
|
||||||
|
|
||||||
btPersistentManifold *manifold = p_body->get_kinematic_utilities()->m_manifoldArray[j];
|
// Initialize GJK input
|
||||||
btScalar directionSign = manifold->getBody0() == ghost ? btScalar(-1.0) : btScalar(1.0);
|
gjk_input.m_transformA = body_shape_position;
|
||||||
for (int p = 0; p < manifold->getNumContacts(); ++p) {
|
gjk_input.m_transformA.getOrigin() += out_recover_position;
|
||||||
const btManifoldPoint &pt = manifold->getContactPoint(p);
|
gjk_input.m_transformB = otherObject->getWorldTransform() * cs->getChildTransform(x);
|
||||||
|
|
||||||
btScalar dist = pt.getDistance();
|
// Perform GJK test
|
||||||
if (dist < -p_maxPenetrationDepth) {
|
btPointCollector result;
|
||||||
|
btGjkPairDetector gjk_pair_detector(kin_shape.shape, static_cast<const btConvexShape *>(cs->getChildShape(x)), gjk_simplex_solver, gjk_epa_pen_solver);
|
||||||
|
gjk_pair_detector.getClosestPoints(gjk_input, result, 0);
|
||||||
|
if (0 > result.m_distance) {
|
||||||
|
// Has penetration
|
||||||
|
out_recover_position += result.m_normalOnBInWorld * (result.m_distance * -1);
|
||||||
penetration = true;
|
penetration = true;
|
||||||
out_recover_position += pt.m_normalWorldOnB * directionSign * (dist + p_maxPenetrationDepth) * p_depenetration_speed;
|
|
||||||
//print_line("penetrate distance: " + rtos(dist));
|
if (recover_result) {
|
||||||
|
|
||||||
|
recover_result->hasPenetration = true;
|
||||||
|
recover_result->other_collision_object = otherObject;
|
||||||
|
recover_result->other_compound_shape_index = x;
|
||||||
|
recover_result->penetration_distance = result.m_distance;
|
||||||
|
recover_result->pointNormalWorld = result.m_normalOnBInWorld;
|
||||||
|
recover_result->pointWorld = result.m_pointInWorld;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} else if (otherObject->getCollisionShape()->isConvex()) { /// Execute GJK test against object shape
|
||||||
|
|
||||||
|
// Initialize GJK input
|
||||||
|
gjk_input.m_transformA = body_shape_position;
|
||||||
|
gjk_input.m_transformA.getOrigin() += out_recover_position;
|
||||||
|
gjk_input.m_transformB = otherObject->getWorldTransform();
|
||||||
|
|
||||||
|
// Perform GJK test
|
||||||
|
btPointCollector result;
|
||||||
|
btGjkPairDetector gjk_pair_detector(kin_shape.shape, static_cast<const btConvexShape *>(otherObject->getCollisionShape()), gjk_simplex_solver, gjk_epa_pen_solver);
|
||||||
|
gjk_pair_detector.getClosestPoints(gjk_input, result, 0);
|
||||||
|
if (0 > result.m_distance) {
|
||||||
|
// Has penetration
|
||||||
|
out_recover_position += result.m_normalOnBInWorld * (result.m_distance * -1);
|
||||||
|
penetration = true;
|
||||||
|
|
||||||
|
if (recover_result) {
|
||||||
|
|
||||||
|
recover_result->hasPenetration = true;
|
||||||
|
recover_result->other_collision_object = otherObject;
|
||||||
|
recover_result->other_compound_shape_index = 0;
|
||||||
|
recover_result->penetration_distance = result.m_distance;
|
||||||
|
recover_result->pointNormalWorld = result.m_normalOnBInWorld;
|
||||||
|
recover_result->pointWorld = result.m_pointInWorld;
|
||||||
}
|
}
|
||||||
//else {
|
|
||||||
// print_line("touching distance: " + rtos(dist));
|
|
||||||
//}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
p_body->get_kinematic_utilities()->resetDefShape();
|
|
||||||
return penetration;
|
return penetration;
|
||||||
}
|
}
|
||||||
|
|
|
@ -59,6 +59,7 @@ class CollisionObjectBullet;
|
||||||
class RigidBodyBullet;
|
class RigidBodyBullet;
|
||||||
class SpaceBullet;
|
class SpaceBullet;
|
||||||
class SoftBodyBullet;
|
class SoftBodyBullet;
|
||||||
|
class btGjkEpaPenetrationDepthSolver;
|
||||||
|
|
||||||
class BulletPhysicsDirectSpaceState : public PhysicsDirectSpaceState {
|
class BulletPhysicsDirectSpaceState : public PhysicsDirectSpaceState {
|
||||||
GDCLASS(BulletPhysicsDirectSpaceState, PhysicsDirectSpaceState)
|
GDCLASS(BulletPhysicsDirectSpaceState, PhysicsDirectSpaceState)
|
||||||
|
@ -93,6 +94,9 @@ private:
|
||||||
GodotFilterCallback *godotFilterCallback;
|
GodotFilterCallback *godotFilterCallback;
|
||||||
btSoftBodyWorldInfo *soft_body_world_info;
|
btSoftBodyWorldInfo *soft_body_world_info;
|
||||||
|
|
||||||
|
btGjkEpaPenetrationDepthSolver *gjk_epa_pen_solver;
|
||||||
|
btVoronoiSimplexSolver *gjk_simplex_solver;
|
||||||
|
|
||||||
BulletPhysicsDirectSpaceState *direct_access;
|
BulletPhysicsDirectSpaceState *direct_access;
|
||||||
Vector3 gravityDirection;
|
Vector3 gravityDirection;
|
||||||
real_t gravityMagnitude;
|
real_t gravityMagnitude;
|
||||||
|
@ -163,7 +167,7 @@ public:
|
||||||
|
|
||||||
void update_gravity();
|
void update_gravity();
|
||||||
|
|
||||||
bool test_body_motion(RigidBodyBullet *p_body, const Transform &p_from, const Vector3 &p_motion, real_t p_margin, PhysicsServer::MotionResult *r_result);
|
bool test_body_motion(RigidBodyBullet *p_body, const Transform &p_from, const Vector3 &p_motion, PhysicsServer::MotionResult *r_result);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void create_empty_world(bool p_create_soft_world);
|
void create_empty_world(bool p_create_soft_world);
|
||||||
|
@ -171,6 +175,19 @@ private:
|
||||||
void check_ghost_overlaps();
|
void check_ghost_overlaps();
|
||||||
void check_body_collision();
|
void check_body_collision();
|
||||||
|
|
||||||
bool recover_from_penetration(RigidBodyBullet *p_body, const btTransform &p_from, btScalar p_maxPenetrationDepth, btScalar p_depenetration_speed, btVector3 &out_recover_position);
|
struct RecoverResult {
|
||||||
|
bool hasPenetration;
|
||||||
|
btVector3 pointNormalWorld;
|
||||||
|
btVector3 pointWorld;
|
||||||
|
btScalar penetration_distance; // Negative is penetration
|
||||||
|
int other_compound_shape_index;
|
||||||
|
const btCollisionObject *other_collision_object;
|
||||||
|
int local_shape_most_recovered;
|
||||||
|
|
||||||
|
RecoverResult()
|
||||||
|
: hasPenetration(false) {}
|
||||||
|
};
|
||||||
|
|
||||||
|
bool recover_from_penetration(RigidBodyBullet *p_body, const btTransform &p_from, btVector3 &out_recover_position, RecoverResult *recover_result = NULL);
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -938,7 +938,7 @@ bool KinematicBody::move_and_collide(const Vector3 &p_motion, Collision &r_colli
|
||||||
|
|
||||||
Transform gt = get_global_transform();
|
Transform gt = get_global_transform();
|
||||||
PhysicsServer::MotionResult result;
|
PhysicsServer::MotionResult result;
|
||||||
bool colliding = PhysicsServer::get_singleton()->body_test_motion(get_rid(), gt, p_motion, margin, &result);
|
bool colliding = PhysicsServer::get_singleton()->body_test_motion(get_rid(), gt, p_motion, &result);
|
||||||
|
|
||||||
if (colliding) {
|
if (colliding) {
|
||||||
r_collision.collider_metadata = result.collider_metadata;
|
r_collision.collider_metadata = result.collider_metadata;
|
||||||
|
@ -1041,12 +1041,13 @@ bool KinematicBody::test_move(const Transform &p_from, const Vector3 &p_motion)
|
||||||
|
|
||||||
ERR_FAIL_COND_V(!is_inside_tree(), false);
|
ERR_FAIL_COND_V(!is_inside_tree(), false);
|
||||||
|
|
||||||
return PhysicsServer::get_singleton()->body_test_motion(get_rid(), p_from, p_motion, margin);
|
return PhysicsServer::get_singleton()->body_test_motion(get_rid(), p_from, p_motion);
|
||||||
}
|
}
|
||||||
|
|
||||||
void KinematicBody::set_safe_margin(float p_margin) {
|
void KinematicBody::set_safe_margin(float p_margin) {
|
||||||
|
|
||||||
margin = p_margin;
|
margin = p_margin;
|
||||||
|
PhysicsServer::get_singleton()->body_set_kinematic_safe_margin(get_rid(), margin);
|
||||||
}
|
}
|
||||||
|
|
||||||
float KinematicBody::get_safe_margin() const {
|
float KinematicBody::get_safe_margin() const {
|
||||||
|
|
|
@ -736,6 +736,10 @@ void BodySW::set_force_integration_callback(ObjectID p_id, const StringName &p_m
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void BodySW::set_kinematic_margin(real_t p_margin) {
|
||||||
|
kinematic_safe_margin = p_margin;
|
||||||
|
}
|
||||||
|
|
||||||
BodySW::BodySW()
|
BodySW::BodySW()
|
||||||
: CollisionObjectSW(TYPE_BODY), active_list(this), inertia_update_list(this), direct_state_query_list(this) {
|
: CollisionObjectSW(TYPE_BODY), active_list(this), inertia_update_list(this), direct_state_query_list(this) {
|
||||||
|
|
||||||
|
@ -743,6 +747,7 @@ BodySW::BodySW()
|
||||||
active = true;
|
active = true;
|
||||||
|
|
||||||
mass = 1;
|
mass = 1;
|
||||||
|
kinematic_safe_margin = 0.01;
|
||||||
//_inv_inertia=Transform();
|
//_inv_inertia=Transform();
|
||||||
_inv_mass = 1;
|
_inv_mass = 1;
|
||||||
bounce = 0;
|
bounce = 0;
|
||||||
|
|
|
@ -55,6 +55,7 @@ class BodySW : public CollisionObjectSW {
|
||||||
|
|
||||||
PhysicsServer::BodyAxisLock axis_lock;
|
PhysicsServer::BodyAxisLock axis_lock;
|
||||||
|
|
||||||
|
real_t kinematic_safe_margin;
|
||||||
real_t _inv_mass;
|
real_t _inv_mass;
|
||||||
Vector3 _inv_inertia; // Relative to the principal axes of inertia
|
Vector3 _inv_inertia; // Relative to the principal axes of inertia
|
||||||
|
|
||||||
|
@ -149,6 +150,9 @@ class BodySW : public CollisionObjectSW {
|
||||||
public:
|
public:
|
||||||
void set_force_integration_callback(ObjectID p_id, const StringName &p_method, const Variant &p_udata = Variant());
|
void set_force_integration_callback(ObjectID p_id, const StringName &p_method, const Variant &p_udata = Variant());
|
||||||
|
|
||||||
|
void set_kinematic_margin(real_t p_margin);
|
||||||
|
_FORCE_INLINE_ real_t get_kinematic_margin() { return kinematic_safe_margin; }
|
||||||
|
|
||||||
_FORCE_INLINE_ void add_area(AreaSW *p_area) {
|
_FORCE_INLINE_ void add_area(AreaSW *p_area) {
|
||||||
int index = areas.find(AreaCMP(p_area));
|
int index = areas.find(AreaCMP(p_area));
|
||||||
if (index > -1) {
|
if (index > -1) {
|
||||||
|
|
|
@ -695,6 +695,19 @@ real_t PhysicsServerSW::body_get_param(RID p_body, BodyParameter p_param) const
|
||||||
return body->get_param(p_param);
|
return body->get_param(p_param);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
void PhysicsServerSW::body_set_kinematic_safe_margin(RID p_body, real_t p_margin) {
|
||||||
|
BodySW *body = body_owner.get(p_body);
|
||||||
|
ERR_FAIL_COND(!body);
|
||||||
|
body->set_kinematic_margin(p_margin);
|
||||||
|
}
|
||||||
|
|
||||||
|
real_t PhysicsServerSW::body_get_kinematic_safe_margin(RID p_body) const {
|
||||||
|
BodySW *body = body_owner.get(p_body);
|
||||||
|
ERR_FAIL_COND_V(!body, 0);
|
||||||
|
|
||||||
|
return body->get_kinematic_margin();
|
||||||
|
}
|
||||||
|
|
||||||
void PhysicsServerSW::body_set_state(RID p_body, BodyState p_state, const Variant &p_variant) {
|
void PhysicsServerSW::body_set_state(RID p_body, BodyState p_state, const Variant &p_variant) {
|
||||||
|
|
||||||
BodySW *body = body_owner.get(p_body);
|
BodySW *body = body_owner.get(p_body);
|
||||||
|
@ -888,7 +901,7 @@ bool PhysicsServerSW::body_is_ray_pickable(RID p_body) const {
|
||||||
return body->is_ray_pickable();
|
return body->is_ray_pickable();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PhysicsServerSW::body_test_motion(RID p_body, const Transform &p_from, const Vector3 &p_motion, float p_margin, MotionResult *r_result) {
|
bool PhysicsServerSW::body_test_motion(RID p_body, const Transform &p_from, const Vector3 &p_motion, MotionResult *r_result) {
|
||||||
|
|
||||||
BodySW *body = body_owner.get(p_body);
|
BodySW *body = body_owner.get(p_body);
|
||||||
ERR_FAIL_COND_V(!body, false);
|
ERR_FAIL_COND_V(!body, false);
|
||||||
|
@ -897,7 +910,7 @@ bool PhysicsServerSW::body_test_motion(RID p_body, const Transform &p_from, cons
|
||||||
|
|
||||||
_update_shapes();
|
_update_shapes();
|
||||||
|
|
||||||
return body->get_space()->test_body_motion(body, p_from, p_motion, p_margin, r_result);
|
return body->get_space()->test_body_motion(body, p_from, p_motion, body->get_kinematic_margin(), r_result);
|
||||||
}
|
}
|
||||||
|
|
||||||
PhysicsDirectBodyState *PhysicsServerSW::body_get_direct_state(RID p_body) {
|
PhysicsDirectBodyState *PhysicsServerSW::body_get_direct_state(RID p_body) {
|
||||||
|
|
|
@ -187,6 +187,9 @@ public:
|
||||||
virtual void body_set_param(RID p_body, BodyParameter p_param, real_t p_value);
|
virtual void body_set_param(RID p_body, BodyParameter p_param, real_t p_value);
|
||||||
virtual real_t body_get_param(RID p_body, BodyParameter p_param) const;
|
virtual real_t body_get_param(RID p_body, BodyParameter p_param) const;
|
||||||
|
|
||||||
|
virtual void body_set_kinematic_safe_margin(RID p_body, real_t p_margin);
|
||||||
|
virtual real_t body_get_kinematic_safe_margin(RID p_body) const;
|
||||||
|
|
||||||
virtual void body_set_state(RID p_body, BodyState p_state, const Variant &p_variant);
|
virtual void body_set_state(RID p_body, BodyState p_state, const Variant &p_variant);
|
||||||
virtual Variant body_get_state(RID p_body, BodyState p_state) const;
|
virtual Variant body_get_state(RID p_body, BodyState p_state) const;
|
||||||
|
|
||||||
|
@ -221,7 +224,7 @@ public:
|
||||||
virtual void body_set_ray_pickable(RID p_body, bool p_enable);
|
virtual void body_set_ray_pickable(RID p_body, bool p_enable);
|
||||||
virtual bool body_is_ray_pickable(RID p_body) const;
|
virtual bool body_is_ray_pickable(RID p_body) const;
|
||||||
|
|
||||||
virtual bool body_test_motion(RID p_body, const Transform &p_from, const Vector3 &p_motion, float p_margin = 0.001, MotionResult *r_result = NULL);
|
virtual bool body_test_motion(RID p_body, const Transform &p_from, const Vector3 &p_motion, MotionResult *r_result = NULL);
|
||||||
|
|
||||||
// this function only works on physics process, errors and returns null otherwise
|
// this function only works on physics process, errors and returns null otherwise
|
||||||
virtual PhysicsDirectBodyState *body_get_direct_state(RID p_body);
|
virtual PhysicsDirectBodyState *body_get_direct_state(RID p_body);
|
||||||
|
|
|
@ -481,6 +481,9 @@ void PhysicsServer::_bind_methods() {
|
||||||
ClassDB::bind_method(D_METHOD("body_set_param", "body", "param", "value"), &PhysicsServer::body_set_param);
|
ClassDB::bind_method(D_METHOD("body_set_param", "body", "param", "value"), &PhysicsServer::body_set_param);
|
||||||
ClassDB::bind_method(D_METHOD("body_get_param", "body", "param"), &PhysicsServer::body_get_param);
|
ClassDB::bind_method(D_METHOD("body_get_param", "body", "param"), &PhysicsServer::body_get_param);
|
||||||
|
|
||||||
|
ClassDB::bind_method(D_METHOD("body_set_kinematic_safe_margin", "body", "margin"), &PhysicsServer::body_set_kinematic_safe_margin);
|
||||||
|
ClassDB::bind_method(D_METHOD("body_get_kinematic_safe_margin", "body"), &PhysicsServer::body_get_kinematic_safe_margin);
|
||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("body_set_state", "body", "state", "value"), &PhysicsServer::body_set_state);
|
ClassDB::bind_method(D_METHOD("body_set_state", "body", "state", "value"), &PhysicsServer::body_set_state);
|
||||||
ClassDB::bind_method(D_METHOD("body_get_state", "body", "state"), &PhysicsServer::body_get_state);
|
ClassDB::bind_method(D_METHOD("body_get_state", "body", "state"), &PhysicsServer::body_get_state);
|
||||||
|
|
||||||
|
|
|
@ -411,6 +411,9 @@ public:
|
||||||
virtual void body_set_param(RID p_body, BodyParameter p_param, float p_value) = 0;
|
virtual void body_set_param(RID p_body, BodyParameter p_param, float p_value) = 0;
|
||||||
virtual float body_get_param(RID p_body, BodyParameter p_param) const = 0;
|
virtual float body_get_param(RID p_body, BodyParameter p_param) const = 0;
|
||||||
|
|
||||||
|
virtual void body_set_kinematic_safe_margin(RID p_body, real_t p_margin) = 0;
|
||||||
|
virtual real_t body_get_kinematic_safe_margin(RID p_body) const = 0;
|
||||||
|
|
||||||
//state
|
//state
|
||||||
enum BodyState {
|
enum BodyState {
|
||||||
BODY_STATE_TRANSFORM,
|
BODY_STATE_TRANSFORM,
|
||||||
|
@ -482,7 +485,7 @@ public:
|
||||||
Variant collider_metadata;
|
Variant collider_metadata;
|
||||||
};
|
};
|
||||||
|
|
||||||
virtual bool body_test_motion(RID p_body, const Transform &p_from, const Vector3 &p_motion, float p_margin = 0.001, MotionResult *r_result = NULL) = 0;
|
virtual bool body_test_motion(RID p_body, const Transform &p_from, const Vector3 &p_motion, MotionResult *r_result = NULL) = 0;
|
||||||
|
|
||||||
/* JOINT API */
|
/* JOINT API */
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue