skeleton_ik_3d.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /**************************************************************************/
  2. /* skeleton_ik_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 SKELETON_IK_3D_H
  31. #define SKELETON_IK_3D_H
  32. #ifndef _3D_DISABLED
  33. #include "scene/3d/skeleton_3d.h"
  34. class FabrikInverseKinematic {
  35. struct EndEffector {
  36. BoneId tip_bone;
  37. Transform3D goal_transform;
  38. };
  39. struct ChainItem {
  40. Vector<ChainItem> children;
  41. ChainItem *parent_item = nullptr;
  42. // Bone info
  43. BoneId bone = -1;
  44. real_t length = 0.0;
  45. /// Positions relative to root bone
  46. Transform3D initial_transform;
  47. Vector3 current_pos;
  48. // Direction from this bone to child
  49. Vector3 current_ori;
  50. ChainItem *find_child(const BoneId p_bone_id);
  51. ChainItem *add_child(const BoneId p_bone_id);
  52. };
  53. struct ChainTip {
  54. ChainItem *chain_item = nullptr;
  55. const EndEffector *end_effector = nullptr;
  56. ChainTip() {}
  57. ChainTip(ChainItem *p_chain_item, const EndEffector *p_end_effector) :
  58. chain_item(p_chain_item),
  59. end_effector(p_end_effector) {}
  60. };
  61. struct Chain {
  62. ChainItem chain_root;
  63. ChainItem *middle_chain_item = nullptr;
  64. Vector<ChainTip> tips;
  65. Vector3 magnet_position;
  66. };
  67. public:
  68. struct Task {
  69. RID self;
  70. Skeleton3D *skeleton = nullptr;
  71. Chain chain;
  72. // Settings
  73. real_t min_distance = 0.01;
  74. int max_iterations = 10;
  75. // Bone data
  76. BoneId root_bone = -1;
  77. Vector<EndEffector> end_effectors;
  78. Transform3D goal_global_transform;
  79. Task() {}
  80. };
  81. private:
  82. /// Init a chain that starts from the root to tip
  83. static bool build_chain(Task *p_task, bool p_force_simple_chain = true);
  84. static void solve_simple(Task *p_task, bool p_solve_magnet, Vector3 p_origin_pos);
  85. /// Special solvers that solve only chains with one end effector
  86. static void solve_simple_backwards(const Chain &r_chain, bool p_solve_magnet);
  87. static void solve_simple_forwards(Chain &r_chain, bool p_solve_magnet, Vector3 p_origin_pos);
  88. public:
  89. static Task *create_simple_task(Skeleton3D *p_sk, BoneId root_bone, BoneId tip_bone, const Transform3D &goal_transform);
  90. static void free_task(Task *p_task);
  91. // The goal of chain should be always in local space
  92. static void set_goal(Task *p_task, const Transform3D &p_goal);
  93. static void make_goal(Task *p_task, const Transform3D &p_inverse_transf, real_t blending_delta);
  94. static void solve(Task *p_task, real_t blending_delta, bool override_tip_basis, bool p_use_magnet, const Vector3 &p_magnet_position);
  95. static void _update_chain(const Skeleton3D *p_skeleton, ChainItem *p_chain_item);
  96. };
  97. class SkeletonIK3D : public Node {
  98. GDCLASS(SkeletonIK3D, Node);
  99. StringName root_bone;
  100. StringName tip_bone;
  101. real_t interpolation = 1.0;
  102. Transform3D target;
  103. NodePath target_node_path_override;
  104. bool override_tip_basis = true;
  105. bool use_magnet = false;
  106. Vector3 magnet_position;
  107. real_t min_distance = 0.01;
  108. int max_iterations = 10;
  109. Skeleton3D *skeleton = nullptr;
  110. Node3D *target_node_override = nullptr;
  111. FabrikInverseKinematic::Task *task = nullptr;
  112. protected:
  113. void _validate_property(PropertyInfo &p_property) const;
  114. static void _bind_methods();
  115. virtual void _notification(int p_what);
  116. public:
  117. SkeletonIK3D();
  118. virtual ~SkeletonIK3D();
  119. void set_root_bone(const StringName &p_root_bone);
  120. StringName get_root_bone() const;
  121. void set_tip_bone(const StringName &p_tip_bone);
  122. StringName get_tip_bone() const;
  123. void set_interpolation(real_t p_interpolation);
  124. real_t get_interpolation() const;
  125. void set_target_transform(const Transform3D &p_target);
  126. const Transform3D &get_target_transform() const;
  127. void set_target_node(const NodePath &p_node);
  128. NodePath get_target_node();
  129. void set_override_tip_basis(bool p_override);
  130. bool is_override_tip_basis() const;
  131. void set_use_magnet(bool p_use);
  132. bool is_using_magnet() const;
  133. void set_magnet_position(const Vector3 &p_local_position);
  134. const Vector3 &get_magnet_position() const;
  135. void set_min_distance(real_t p_min_distance);
  136. real_t get_min_distance() const { return min_distance; }
  137. void set_max_iterations(int p_iterations);
  138. int get_max_iterations() const { return max_iterations; }
  139. Skeleton3D *get_parent_skeleton() const { return skeleton; }
  140. bool is_running();
  141. void start(bool p_one_time = false);
  142. void stop();
  143. private:
  144. Transform3D _get_target_transform();
  145. void reload_chain();
  146. void reload_goal();
  147. void _solve_chain();
  148. };
  149. #endif // _3D_DISABLED
  150. #endif // SKELETON_IK_3D_H