node_3d.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. /**************************************************************************/
  2. /* node_3d.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  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 NODE_3D_H
  31. #define NODE_3D_H
  32. #include "scene/main/node.h"
  33. #include "scene/resources/3d/world_3d.h"
  34. class Node3DGizmo : public RefCounted {
  35. GDCLASS(Node3DGizmo, RefCounted);
  36. public:
  37. virtual void create() = 0;
  38. virtual void transform() = 0;
  39. virtual void clear() = 0;
  40. virtual void redraw() = 0;
  41. virtual void free() = 0;
  42. Node3DGizmo();
  43. virtual ~Node3DGizmo() {}
  44. };
  45. class Node3D : public Node {
  46. GDCLASS(Node3D, Node);
  47. public:
  48. // Edit mode for the rotation.
  49. // THIS MODE ONLY AFFECTS HOW DATA IS EDITED AND SAVED
  50. // IT DOES _NOT_ AFFECT THE TRANSFORM LOGIC (see comment in TransformDirty).
  51. enum RotationEditMode {
  52. ROTATION_EDIT_MODE_EULER,
  53. ROTATION_EDIT_MODE_QUATERNION,
  54. ROTATION_EDIT_MODE_BASIS,
  55. };
  56. private:
  57. // For the sake of ease of use, Node3D can operate with Transforms (Basis+Origin), Quaternion/Scale and Euler Rotation/Scale.
  58. // Transform and Quaternion are stored in data.local_transform Basis (so quaternion is not really stored, but converted back/forth from 3x3 matrix on demand).
  59. // Euler needs to be kept separate because converting to Basis and back may result in a different vector (which is troublesome for users
  60. // editing in the inspector, not only because of the numerical precision loss but because they expect these rotations to be consistent, or support
  61. // "redundant" rotations for animation interpolation, like going from 0 to 720 degrees).
  62. //
  63. // As such, the system works in a way where if the local transform is set (via transform/basis/quaternion), the EULER rotation and scale becomes dirty.
  64. // It will remain dirty until reading back is attempted (for performance reasons). Likewise, if the Euler rotation scale are set, the local transform
  65. // will become dirty (and again, will not become valid again until read).
  66. //
  67. // All this is transparent from outside the Node3D API, which allows everything to works by calling these functions in exchange.
  68. //
  69. // Additionally, setting either transform, quaternion, Euler rotation or scale makes the global transform dirty, which will be updated when read again.
  70. //
  71. // NOTE: Again, RotationEditMode is _independent_ of this mechanism, it is only meant to expose the right set of properties for editing (editor) and saving
  72. // (to scene, in order to keep the same values and avoid data loss on conversions). It has zero influence in the logic described above.
  73. enum TransformDirty {
  74. DIRTY_NONE = 0,
  75. DIRTY_EULER_ROTATION_AND_SCALE = 1,
  76. DIRTY_LOCAL_TRANSFORM = 2,
  77. DIRTY_GLOBAL_TRANSFORM = 4
  78. };
  79. struct ClientPhysicsInterpolationData {
  80. Transform3D global_xform_curr;
  81. Transform3D global_xform_prev;
  82. uint64_t current_physics_tick = 0;
  83. uint64_t timeout_physics_tick = 0;
  84. };
  85. mutable SelfList<Node> xform_change;
  86. SelfList<Node3D> _client_physics_interpolation_node_3d_list;
  87. // This Data struct is to avoid namespace pollution in derived classes.
  88. struct Data {
  89. mutable Transform3D global_transform;
  90. mutable Transform3D local_transform;
  91. mutable EulerOrder euler_rotation_order = EulerOrder::YXZ;
  92. mutable Vector3 euler_rotation;
  93. mutable Vector3 scale = Vector3(1, 1, 1);
  94. mutable RotationEditMode rotation_edit_mode = ROTATION_EDIT_MODE_EULER;
  95. mutable MTNumeric<uint32_t> dirty;
  96. Viewport *viewport = nullptr;
  97. bool top_level : 1;
  98. bool inside_world : 1;
  99. // This is cached, and only currently kept up to date in visual instances.
  100. // This is set if a visual instance is (a) in the tree AND (b) visible via is_visible_in_tree() call.
  101. bool vi_visible : 1;
  102. bool ignore_notification : 1;
  103. bool notify_local_transform : 1;
  104. bool notify_transform : 1;
  105. bool visible : 1;
  106. bool disable_scale : 1;
  107. RID visibility_parent;
  108. Node3D *parent = nullptr;
  109. List<Node3D *> children;
  110. List<Node3D *>::Element *C = nullptr;
  111. ClientPhysicsInterpolationData *client_physics_interpolation_data = nullptr;
  112. #ifdef TOOLS_ENABLED
  113. Vector<Ref<Node3DGizmo>> gizmos;
  114. bool gizmos_disabled : 1;
  115. bool gizmos_dirty : 1;
  116. bool transform_gizmo_visible : 1;
  117. #endif
  118. } data;
  119. NodePath visibility_parent_path;
  120. _FORCE_INLINE_ uint32_t _read_dirty_mask() const { return is_group_processing() ? data.dirty.mt.get() : data.dirty.st; }
  121. _FORCE_INLINE_ bool _test_dirty_bits(uint32_t p_bits) const { return is_group_processing() ? data.dirty.mt.bit_and(p_bits) : (data.dirty.st & p_bits); }
  122. void _replace_dirty_mask(uint32_t p_mask) const;
  123. void _set_dirty_bits(uint32_t p_bits) const;
  124. void _clear_dirty_bits(uint32_t p_bits) const;
  125. void _update_gizmos();
  126. void _notify_dirty();
  127. void _propagate_transform_changed(Node3D *p_origin);
  128. void _propagate_visibility_changed();
  129. void _propagate_visibility_parent();
  130. void _update_visibility_parent(bool p_update_root);
  131. void _propagate_transform_changed_deferred();
  132. protected:
  133. _FORCE_INLINE_ void set_ignore_transform_notification(bool p_ignore) { data.ignore_notification = p_ignore; }
  134. _FORCE_INLINE_ void _update_local_transform() const;
  135. _FORCE_INLINE_ void _update_rotation_and_scale() const;
  136. void _set_vi_visible(bool p_visible) { data.vi_visible = p_visible; }
  137. bool _is_vi_visible() const { return data.vi_visible; }
  138. Transform3D _get_global_transform_interpolated(real_t p_interpolation_fraction);
  139. void _disable_client_physics_interpolation();
  140. void _notification(int p_what);
  141. static void _bind_methods();
  142. void _validate_property(PropertyInfo &p_property) const;
  143. bool _property_can_revert(const StringName &p_name) const;
  144. bool _property_get_revert(const StringName &p_name, Variant &r_property) const;
  145. public:
  146. enum {
  147. NOTIFICATION_TRANSFORM_CHANGED = SceneTree::NOTIFICATION_TRANSFORM_CHANGED,
  148. NOTIFICATION_ENTER_WORLD = 41,
  149. NOTIFICATION_EXIT_WORLD = 42,
  150. NOTIFICATION_VISIBILITY_CHANGED = 43,
  151. NOTIFICATION_LOCAL_TRANSFORM_CHANGED = 44,
  152. };
  153. Node3D *get_parent_node_3d() const;
  154. Ref<World3D> get_world_3d() const;
  155. void set_position(const Vector3 &p_position);
  156. void set_rotation_edit_mode(RotationEditMode p_mode);
  157. RotationEditMode get_rotation_edit_mode() const;
  158. void set_rotation_order(EulerOrder p_order);
  159. void set_rotation(const Vector3 &p_euler_rad);
  160. void set_rotation_degrees(const Vector3 &p_euler_degrees);
  161. void set_scale(const Vector3 &p_scale);
  162. void set_global_position(const Vector3 &p_position);
  163. void set_global_basis(const Basis &p_basis);
  164. void set_global_rotation(const Vector3 &p_euler_rad);
  165. void set_global_rotation_degrees(const Vector3 &p_euler_degrees);
  166. Vector3 get_position() const;
  167. EulerOrder get_rotation_order() const;
  168. Vector3 get_rotation() const;
  169. Vector3 get_rotation_degrees() const;
  170. Vector3 get_scale() const;
  171. Vector3 get_global_position() const;
  172. Basis get_global_basis() const;
  173. Vector3 get_global_rotation() const;
  174. Vector3 get_global_rotation_degrees() const;
  175. void set_transform(const Transform3D &p_transform);
  176. void set_basis(const Basis &p_basis);
  177. void set_quaternion(const Quaternion &p_quaternion);
  178. void set_global_transform(const Transform3D &p_transform);
  179. Transform3D get_transform() const;
  180. Basis get_basis() const;
  181. Quaternion get_quaternion() const;
  182. Transform3D get_global_transform() const;
  183. Transform3D get_global_transform_interpolated();
  184. bool update_client_physics_interpolation_data();
  185. #ifdef TOOLS_ENABLED
  186. virtual Transform3D get_global_gizmo_transform() const;
  187. virtual Transform3D get_local_gizmo_transform() const;
  188. virtual void set_transform_gizmo_visible(bool p_enabled) { data.transform_gizmo_visible = p_enabled; }
  189. virtual bool is_transform_gizmo_visible() const { return data.transform_gizmo_visible; }
  190. #endif
  191. virtual void reparent(Node *p_parent, bool p_keep_global_transform = true) override;
  192. void set_disable_gizmos(bool p_enabled);
  193. void update_gizmos();
  194. void set_subgizmo_selection(Ref<Node3DGizmo> p_gizmo, int p_id, Transform3D p_transform = Transform3D());
  195. void clear_subgizmo_selection();
  196. Vector<Ref<Node3DGizmo>> get_gizmos() const;
  197. TypedArray<Node3DGizmo> get_gizmos_bind() const;
  198. void add_gizmo(Ref<Node3DGizmo> p_gizmo);
  199. void remove_gizmo(Ref<Node3DGizmo> p_gizmo);
  200. void clear_gizmos();
  201. void set_as_top_level(bool p_enabled);
  202. void set_as_top_level_keep_local(bool p_enabled);
  203. bool is_set_as_top_level() const;
  204. void set_disable_scale(bool p_enabled);
  205. bool is_scale_disabled() const;
  206. _FORCE_INLINE_ bool is_inside_world() const { return data.inside_world; }
  207. Transform3D get_relative_transform(const Node *p_parent) const;
  208. void rotate(const Vector3 &p_axis, real_t p_angle);
  209. void rotate_x(real_t p_angle);
  210. void rotate_y(real_t p_angle);
  211. void rotate_z(real_t p_angle);
  212. void translate(const Vector3 &p_offset);
  213. void scale(const Vector3 &p_ratio);
  214. void rotate_object_local(const Vector3 &p_axis, real_t p_angle);
  215. void scale_object_local(const Vector3 &p_scale);
  216. void translate_object_local(const Vector3 &p_offset);
  217. void global_rotate(const Vector3 &p_axis, real_t p_angle);
  218. void global_scale(const Vector3 &p_scale);
  219. void global_translate(const Vector3 &p_offset);
  220. void look_at(const Vector3 &p_target, const Vector3 &p_up = Vector3(0, 1, 0), bool p_use_model_front = false);
  221. void look_at_from_position(const Vector3 &p_pos, const Vector3 &p_target, const Vector3 &p_up = Vector3(0, 1, 0), bool p_use_model_front = false);
  222. Vector3 to_local(Vector3 p_global) const;
  223. Vector3 to_global(Vector3 p_local) const;
  224. void set_notify_transform(bool p_enabled);
  225. bool is_transform_notification_enabled() const;
  226. void set_notify_local_transform(bool p_enabled);
  227. bool is_local_transform_notification_enabled() const;
  228. void orthonormalize();
  229. void set_identity();
  230. void set_visible(bool p_visible);
  231. void show();
  232. void hide();
  233. bool is_visible() const;
  234. bool is_visible_in_tree() const;
  235. void force_update_transform();
  236. void set_visibility_parent(const NodePath &p_path);
  237. NodePath get_visibility_parent() const;
  238. Node3D();
  239. ~Node3D();
  240. };
  241. VARIANT_ENUM_CAST(Node3D::RotationEditMode)
  242. #endif // NODE_3D_H