collision_object_sw.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /*************************************************************************/
  2. /* collision_object_sw.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 COLLISION_OBJECT_SW_H
  31. #define COLLISION_OBJECT_SW_H
  32. #include "broad_phase_sw.h"
  33. #include "core/self_list.h"
  34. #include "servers/physics_server.h"
  35. #include "shape_sw.h"
  36. #ifdef DEBUG_ENABLED
  37. #define MAX_OBJECT_DISTANCE 3.1622776601683791e+18
  38. #define MAX_OBJECT_DISTANCE_X2 (MAX_OBJECT_DISTANCE * MAX_OBJECT_DISTANCE)
  39. #endif
  40. class SpaceSW;
  41. class CollisionObjectSW : public ShapeOwnerSW {
  42. public:
  43. enum Type {
  44. TYPE_AREA,
  45. TYPE_BODY
  46. };
  47. private:
  48. Type type;
  49. RID self;
  50. ObjectID instance_id;
  51. uint32_t collision_layer;
  52. uint32_t collision_mask;
  53. struct Shape {
  54. Transform xform;
  55. Transform xform_inv;
  56. BroadPhaseSW::ID bpid;
  57. AABB aabb_cache; //for rayqueries
  58. real_t area_cache;
  59. ShapeSW *shape;
  60. bool disabled;
  61. Shape() { disabled = false; }
  62. };
  63. Vector<Shape> shapes;
  64. SpaceSW *space;
  65. Transform transform;
  66. Transform inv_transform;
  67. bool _static;
  68. SelfList<CollisionObjectSW> pending_shape_update_list;
  69. void _update_shapes();
  70. protected:
  71. void _update_shapes_with_motion(const Vector3 &p_motion);
  72. void _unregister_shapes();
  73. _FORCE_INLINE_ void _set_transform(const Transform &p_transform, bool p_update_shapes = true) {
  74. #ifdef DEBUG_ENABLED
  75. if (p_transform.origin.length_squared() > MAX_OBJECT_DISTANCE_X2) {
  76. ERR_EXPLAIN("Object went too far away (more than " + itos(MAX_OBJECT_DISTANCE) + "mts from origin).");
  77. ERR_FAIL();
  78. }
  79. #endif
  80. transform = p_transform;
  81. if (p_update_shapes) _update_shapes();
  82. }
  83. _FORCE_INLINE_ void _set_inv_transform(const Transform &p_transform) { inv_transform = p_transform; }
  84. void _set_static(bool p_static);
  85. virtual void _shapes_changed() = 0;
  86. void _set_space(SpaceSW *p_space);
  87. bool ray_pickable;
  88. CollisionObjectSW(Type p_type);
  89. public:
  90. _FORCE_INLINE_ void set_self(const RID &p_self) { self = p_self; }
  91. _FORCE_INLINE_ RID get_self() const { return self; }
  92. _FORCE_INLINE_ void set_instance_id(const ObjectID &p_instance_id) { instance_id = p_instance_id; }
  93. _FORCE_INLINE_ ObjectID get_instance_id() const { return instance_id; }
  94. void _shape_changed();
  95. _FORCE_INLINE_ Type get_type() const { return type; }
  96. void add_shape(ShapeSW *p_shape, const Transform &p_transform = Transform());
  97. void set_shape(int p_index, ShapeSW *p_shape);
  98. void set_shape_transform(int p_index, const Transform &p_transform);
  99. _FORCE_INLINE_ int get_shape_count() const { return shapes.size(); }
  100. _FORCE_INLINE_ bool is_shape_disabled(int p_index) const {
  101. CRASH_BAD_INDEX(p_index, shapes.size());
  102. return shapes[p_index].disabled;
  103. }
  104. _FORCE_INLINE_ ShapeSW *get_shape(int p_index) const { return shapes[p_index].shape; }
  105. _FORCE_INLINE_ const Transform &get_shape_transform(int p_index) const { return shapes[p_index].xform; }
  106. _FORCE_INLINE_ const Transform &get_shape_inv_transform(int p_index) const { return shapes[p_index].xform_inv; }
  107. _FORCE_INLINE_ const AABB &get_shape_aabb(int p_index) const { return shapes[p_index].aabb_cache; }
  108. _FORCE_INLINE_ const real_t get_shape_area(int p_index) const { return shapes[p_index].area_cache; }
  109. _FORCE_INLINE_ Transform get_transform() const { return transform; }
  110. _FORCE_INLINE_ Transform get_inv_transform() const { return inv_transform; }
  111. _FORCE_INLINE_ SpaceSW *get_space() const { return space; }
  112. _FORCE_INLINE_ void set_ray_pickable(bool p_enable) { ray_pickable = p_enable; }
  113. _FORCE_INLINE_ bool is_ray_pickable() const { return ray_pickable; }
  114. _FORCE_INLINE_ void set_shape_as_disabled(int p_idx, bool p_enable) { shapes.write[p_idx].disabled = p_enable; }
  115. _FORCE_INLINE_ bool is_shape_set_as_disabled(int p_idx) const { return shapes[p_idx].disabled; }
  116. _FORCE_INLINE_ void set_collision_layer(uint32_t p_layer) { collision_layer = p_layer; }
  117. _FORCE_INLINE_ uint32_t get_collision_layer() const { return collision_layer; }
  118. _FORCE_INLINE_ void set_collision_mask(uint32_t p_mask) { collision_mask = p_mask; }
  119. _FORCE_INLINE_ uint32_t get_collision_mask() const { return collision_mask; }
  120. _FORCE_INLINE_ bool test_collision_mask(CollisionObjectSW *p_other) const {
  121. return collision_layer & p_other->collision_mask || p_other->collision_layer & collision_mask;
  122. }
  123. void remove_shape(ShapeSW *p_shape);
  124. void remove_shape(int p_index);
  125. virtual void set_space(SpaceSW *p_space) = 0;
  126. _FORCE_INLINE_ bool is_static() const { return _static; }
  127. virtual ~CollisionObjectSW() {}
  128. };
  129. #endif // COLLISION_OBJECT_SW_H