space_bullet.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. /*************************************************************************/
  2. /* space_bullet.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #ifndef SPACE_BULLET_H
  31. #define SPACE_BULLET_H
  32. #include "core/variant.h"
  33. #include "core/vector.h"
  34. #include "godot_result_callbacks.h"
  35. #include "rid_bullet.h"
  36. #include "servers/physics_server.h"
  37. #include <BulletCollision/BroadphaseCollision/btBroadphaseProxy.h>
  38. #include <BulletCollision/BroadphaseCollision/btOverlappingPairCache.h>
  39. #include <LinearMath/btScalar.h>
  40. #include <LinearMath/btTransform.h>
  41. #include <LinearMath/btVector3.h>
  42. /**
  43. @author AndreaCatania
  44. */
  45. class AreaBullet;
  46. class btBroadphaseInterface;
  47. class btCollisionDispatcher;
  48. class btConstraintSolver;
  49. class btDefaultCollisionConfiguration;
  50. class btDynamicsWorld;
  51. class btDiscreteDynamicsWorld;
  52. class btEmptyShape;
  53. class btGhostPairCallback;
  54. class btSoftRigidDynamicsWorld;
  55. class btSoftBodyWorldInfo;
  56. class ConstraintBullet;
  57. class CollisionObjectBullet;
  58. class RigidBodyBullet;
  59. class SpaceBullet;
  60. class SoftBodyBullet;
  61. class btGjkEpaPenetrationDepthSolver;
  62. class BulletPhysicsDirectSpaceState : public PhysicsDirectSpaceState {
  63. GDCLASS(BulletPhysicsDirectSpaceState, PhysicsDirectSpaceState)
  64. private:
  65. SpaceBullet *space;
  66. public:
  67. BulletPhysicsDirectSpaceState(SpaceBullet *p_space);
  68. virtual int intersect_point(const Vector3 &p_point, ShapeResult *r_results, int p_result_max, const Set<RID> &p_exclude = Set<RID>(), uint32_t p_collision_mask = 0xFFFFFFFF);
  69. virtual bool intersect_ray(const Vector3 &p_from, const Vector3 &p_to, RayResult &r_result, const Set<RID> &p_exclude = Set<RID>(), uint32_t p_collision_mask = 0xFFFFFFFF, bool p_pick_ray = false);
  70. virtual int intersect_shape(const RID &p_shape, const Transform &p_xform, float p_margin, ShapeResult *r_results, int p_result_max, const Set<RID> &p_exclude = Set<RID>(), uint32_t p_collision_mask = 0xFFFFFFFF);
  71. virtual bool cast_motion(const RID &p_shape, const Transform &p_xform, const Vector3 &p_motion, float p_margin, float &p_closest_safe, float &p_closest_unsafe, const Set<RID> &p_exclude = Set<RID>(), uint32_t p_collision_mask = 0xFFFFFFFF, ShapeRestInfo *r_info = NULL);
  72. /// Returns the list of contacts pairs in this order: Local contact, other body contact
  73. virtual bool collide_shape(RID p_shape, const Transform &p_shape_xform, float p_margin, Vector3 *r_results, int p_result_max, int &r_result_count, const Set<RID> &p_exclude = Set<RID>(), uint32_t p_collision_mask = 0xFFFFFFFF);
  74. virtual bool rest_info(RID p_shape, const Transform &p_shape_xform, float p_margin, ShapeRestInfo *r_info, const Set<RID> &p_exclude = Set<RID>(), uint32_t p_collision_mask = 0xFFFFFFFF);
  75. virtual Vector3 get_closest_point_to_object_volume(RID p_object, const Vector3 p_point) const;
  76. };
  77. class SpaceBullet : public RIDBullet {
  78. private:
  79. friend class AreaBullet;
  80. friend void onBulletTickCallback(btDynamicsWorld *world, btScalar timeStep);
  81. friend class BulletPhysicsDirectSpaceState;
  82. btBroadphaseInterface *broadphase;
  83. btDefaultCollisionConfiguration *collisionConfiguration;
  84. btCollisionDispatcher *dispatcher;
  85. btConstraintSolver *solver;
  86. btDiscreteDynamicsWorld *dynamicsWorld;
  87. btGhostPairCallback *ghostPairCallback;
  88. GodotFilterCallback *godotFilterCallback;
  89. btSoftBodyWorldInfo *soft_body_world_info;
  90. btGjkEpaPenetrationDepthSolver *gjk_epa_pen_solver;
  91. btVoronoiSimplexSolver *gjk_simplex_solver;
  92. BulletPhysicsDirectSpaceState *direct_access;
  93. Vector3 gravityDirection;
  94. real_t gravityMagnitude;
  95. Vector<AreaBullet *> areas;
  96. Vector<Vector3> contactDebug;
  97. int contactDebugCount;
  98. public:
  99. SpaceBullet(bool p_create_soft_world);
  100. virtual ~SpaceBullet();
  101. void flush_queries();
  102. void step(real_t p_delta_time);
  103. _FORCE_INLINE_ btBroadphaseInterface *get_broadphase() { return broadphase; }
  104. _FORCE_INLINE_ btCollisionDispatcher *get_dispatcher() { return dispatcher; }
  105. _FORCE_INLINE_ btSoftBodyWorldInfo *get_soft_body_world_info() { return soft_body_world_info; }
  106. _FORCE_INLINE_ bool is_using_soft_world() { return soft_body_world_info; }
  107. /// Used to set some parameters to Bullet world
  108. /// @param p_param:
  109. /// AREA_PARAM_GRAVITY to set the gravity magnitude of entire world
  110. /// AREA_PARAM_GRAVITY_VECTOR to set the gravity direction of entire world
  111. void set_param(PhysicsServer::AreaParameter p_param, const Variant &p_value);
  112. /// Used to get some parameters to Bullet world
  113. /// @param p_param:
  114. /// AREA_PARAM_GRAVITY to get the gravity magnitude of entire world
  115. /// AREA_PARAM_GRAVITY_VECTOR to get the gravity direction of entire world
  116. Variant get_param(PhysicsServer::AreaParameter p_param);
  117. void set_param(PhysicsServer::SpaceParameter p_param, real_t p_value);
  118. real_t get_param(PhysicsServer::SpaceParameter p_param);
  119. void add_area(AreaBullet *p_area);
  120. void remove_area(AreaBullet *p_area);
  121. void reload_collision_filters(AreaBullet *p_area);
  122. void add_rigid_body(RigidBodyBullet *p_body);
  123. void remove_rigid_body(RigidBodyBullet *p_body);
  124. void reload_collision_filters(RigidBodyBullet *p_body);
  125. void add_soft_body(SoftBodyBullet *p_body);
  126. void remove_soft_body(SoftBodyBullet *p_body);
  127. void reload_collision_filters(SoftBodyBullet *p_body);
  128. void add_constraint(ConstraintBullet *p_constraint, bool disableCollisionsBetweenLinkedBodies = false);
  129. void remove_constraint(ConstraintBullet *p_constraint);
  130. int get_num_collision_objects() const;
  131. void remove_all_collision_objects();
  132. BulletPhysicsDirectSpaceState *get_direct_state();
  133. void set_debug_contacts(int p_amount) { contactDebug.resize(p_amount); }
  134. _FORCE_INLINE_ bool is_debugging_contacts() const { return !contactDebug.empty(); }
  135. _FORCE_INLINE_ void reset_debug_contact_count() {
  136. contactDebugCount = 0;
  137. }
  138. _FORCE_INLINE_ void add_debug_contact(const Vector3 &p_contact) {
  139. if (contactDebugCount < contactDebug.size()) contactDebug[contactDebugCount++] = p_contact;
  140. }
  141. _FORCE_INLINE_ Vector<Vector3> get_debug_contacts() { return contactDebug; }
  142. _FORCE_INLINE_ int get_debug_contact_count() { return contactDebugCount; }
  143. const Vector3 &get_gravity_direction() const { return gravityDirection; }
  144. real_t get_gravity_magnitude() const { return gravityMagnitude; }
  145. void update_gravity();
  146. bool test_body_motion(RigidBodyBullet *p_body, const Transform &p_from, const Vector3 &p_motion, PhysicsServer::MotionResult *r_result);
  147. private:
  148. void create_empty_world(bool p_create_soft_world);
  149. void destroy_world();
  150. void check_ghost_overlaps();
  151. void check_body_collision();
  152. struct RecoverResult {
  153. bool hasPenetration;
  154. btVector3 normal;
  155. btVector3 pointWorld;
  156. btScalar penetration_distance; // Negative mean penetration
  157. int other_compound_shape_index;
  158. const btCollisionObject *other_collision_object;
  159. int local_shape_most_recovered;
  160. RecoverResult() :
  161. hasPenetration(false),
  162. normal(0, 0, 0),
  163. pointWorld(0, 0, 0),
  164. penetration_distance(1e20),
  165. other_compound_shape_index(0),
  166. other_collision_object(NULL),
  167. local_shape_most_recovered(0) {}
  168. };
  169. bool recover_from_penetration(RigidBodyBullet *p_body, const btTransform &p_body_position, btScalar p_recover_movement_scale, btVector3 &r_delta_recover_movement, RecoverResult *r_recover_result = NULL);
  170. /// This is an API that recover a kinematic object from penetration
  171. /// This allow only Convex Convex test and it always use GJK algorithm, With this API we don't benefit of Bullet special accelerated functions
  172. bool RFP_convex_convex_test(const btConvexShape *p_shapeA, const btConvexShape *p_shapeB, btCollisionObject *p_objectB, int p_shapeId_B, const btTransform &p_transformA, const btTransform &p_transformB, btScalar p_recover_movement_scale, btVector3 &r_delta_recover_movement, RecoverResult *r_recover_result = NULL);
  173. /// This is an API that recover a kinematic object from penetration
  174. /// Using this we leave Bullet to select the best algorithm, For example GJK in case we have Convex Convex, or a Bullet accelerated algorithm
  175. bool RFP_convex_world_test(const btConvexShape *p_shapeA, const btCollisionShape *p_shapeB, btCollisionObject *p_objectA, btCollisionObject *p_objectB, int p_shapeId_A, int p_shapeId_B, const btTransform &p_transformA, const btTransform &p_transformB, btScalar p_recover_movement_scale, btVector3 &r_delta_recover_movement, RecoverResult *r_recover_result = NULL);
  176. };
  177. #endif