animation_player.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. /**************************************************************************/
  2. /* animation_player.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. #pragma once
  31. #include "animation_mixer.h"
  32. #include "scene/resources/animation.h"
  33. class AnimationPlayer : public AnimationMixer {
  34. GDCLASS(AnimationPlayer, AnimationMixer);
  35. #ifndef DISABLE_DEPRECATED
  36. public:
  37. enum AnimationProcessCallback {
  38. ANIMATION_PROCESS_PHYSICS,
  39. ANIMATION_PROCESS_IDLE,
  40. ANIMATION_PROCESS_MANUAL,
  41. };
  42. enum AnimationMethodCallMode {
  43. ANIMATION_METHOD_CALL_DEFERRED,
  44. ANIMATION_METHOD_CALL_IMMEDIATE,
  45. };
  46. #endif // DISABLE_DEPRECATED
  47. private:
  48. AHashMap<StringName, StringName> animation_next_set; // For auto advance.
  49. float speed_scale = 1.0;
  50. double default_blend_time = 0.0;
  51. bool auto_capture = true;
  52. double auto_capture_duration = -1.0;
  53. Tween::TransitionType auto_capture_transition_type = Tween::TRANS_LINEAR;
  54. Tween::EaseType auto_capture_ease_type = Tween::EASE_IN;
  55. bool is_stopping = false;
  56. struct PlaybackData {
  57. AnimationData *from = nullptr;
  58. double pos = 0.0;
  59. float speed_scale = 1.0;
  60. double start_time = 0.0;
  61. double end_time = 0.0;
  62. double get_start_time() const {
  63. if (from && (Animation::is_less_approx(start_time, 0) || Animation::is_greater_approx(start_time, from->animation->get_length()))) {
  64. return 0;
  65. }
  66. return start_time;
  67. }
  68. double get_end_time() const {
  69. if (from && (Animation::is_less_approx(end_time, 0) || Animation::is_greater_approx(end_time, from->animation->get_length()))) {
  70. return from->animation->get_length();
  71. }
  72. return end_time;
  73. }
  74. };
  75. struct Blend {
  76. PlaybackData data;
  77. double blend_time = 0.0;
  78. double blend_left = 0.0;
  79. };
  80. struct Playback {
  81. PlaybackData current;
  82. StringName assigned;
  83. bool seeked = false;
  84. bool internal_seeked = false;
  85. bool started = false;
  86. List<Blend> blend;
  87. } playback;
  88. struct BlendKey {
  89. StringName from;
  90. StringName to;
  91. static uint32_t hash(const BlendKey &p_key) {
  92. return hash_one_uint64((uint64_t(p_key.from.hash()) << 32) | uint32_t(p_key.to.hash()));
  93. }
  94. bool operator==(const BlendKey &bk) const {
  95. return from == bk.from && to == bk.to;
  96. }
  97. bool operator<(const BlendKey &bk) const {
  98. if (from == bk.from) {
  99. return StringName::AlphCompare()(to, bk.to);
  100. } else {
  101. return StringName::AlphCompare()(from, bk.from);
  102. }
  103. }
  104. };
  105. HashMap<BlendKey, double, BlendKey> blend_times;
  106. List<StringName> playback_queue;
  107. ObjectID tmp_from;
  108. bool end_reached = false;
  109. bool end_notify = false;
  110. StringName autoplay;
  111. bool reset_on_save = true;
  112. bool movie_quit_on_finish = false;
  113. void _play(const StringName &p_name, double p_custom_blend = -1, float p_custom_scale = 1.0, bool p_from_end = false);
  114. void _capture(const StringName &p_name, bool p_from_end = false, double p_duration = -1.0, Tween::TransitionType p_trans_type = Tween::TRANS_LINEAR, Tween::EaseType p_ease_type = Tween::EASE_IN);
  115. void _process_playback_data(PlaybackData &cd, double p_delta, float p_blend, bool p_seeked, bool p_internal_seeked, bool p_started, bool p_is_current = false);
  116. void _blend_playback_data(double p_delta, bool p_started);
  117. void _stop_internal(bool p_reset, bool p_keep_state);
  118. void _check_immediately_after_start();
  119. float get_current_blend_amount();
  120. bool playing = false;
  121. protected:
  122. bool _set(const StringName &p_name, const Variant &p_value);
  123. bool _get(const StringName &p_name, Variant &r_ret) const;
  124. virtual void _validate_property(PropertyInfo &p_property) const override;
  125. void _get_property_list(List<PropertyInfo> *p_list) const;
  126. void _notification(int p_what);
  127. static void _bind_methods();
  128. // Make animation instances.
  129. virtual bool _blend_pre_process(double p_delta, int p_track_count, const AHashMap<NodePath, int> &p_track_map) override;
  130. virtual void _blend_capture(double p_delta) override;
  131. virtual void _blend_post_process() override;
  132. virtual void _animation_removed(const StringName &p_name, const StringName &p_library) override;
  133. virtual void _rename_animation(const StringName &p_from_name, const StringName &p_to_name) override;
  134. #ifndef DISABLE_DEPRECATED
  135. void _set_process_callback_bind_compat_80813(AnimationProcessCallback p_mode);
  136. AnimationProcessCallback _get_process_callback_bind_compat_80813() const;
  137. void _set_method_call_mode_bind_compat_80813(AnimationMethodCallMode p_mode);
  138. AnimationMethodCallMode _get_method_call_mode_bind_compat_80813() const;
  139. void _set_root_bind_compat_80813(const NodePath &p_root);
  140. NodePath _get_root_bind_compat_80813() const;
  141. void _seek_bind_compat_80813(double p_time, bool p_update = false);
  142. void _play_compat_84906(const StringName &p_name = StringName(), double p_custom_blend = -1, float p_custom_scale = 1.0, bool p_from_end = false);
  143. void _play_backwards_compat_84906(const StringName &p_name = StringName(), double p_custom_blend = -1);
  144. static void _bind_compatibility_methods();
  145. #endif // DISABLE_DEPRECATED
  146. public:
  147. void animation_set_next(const StringName &p_animation, const StringName &p_next);
  148. StringName animation_get_next(const StringName &p_animation) const;
  149. void set_blend_time(const StringName &p_animation1, const StringName &p_animation2, double p_time);
  150. double get_blend_time(const StringName &p_animation1, const StringName &p_animation2) const;
  151. void set_default_blend_time(double p_default);
  152. double get_default_blend_time() const;
  153. void set_auto_capture(bool p_auto_capture);
  154. bool is_auto_capture() const;
  155. void set_auto_capture_duration(double p_auto_capture_duration);
  156. double get_auto_capture_duration() const;
  157. void set_auto_capture_transition_type(Tween::TransitionType p_auto_capture_transition_type);
  158. Tween::TransitionType get_auto_capture_transition_type() const;
  159. void set_auto_capture_ease_type(Tween::EaseType p_auto_capture_ease_type);
  160. Tween::EaseType get_auto_capture_ease_type() const;
  161. #ifdef TOOLS_ENABLED
  162. void get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const override;
  163. #endif
  164. void play(const StringName &p_name = StringName(), double p_custom_blend = -1, float p_custom_scale = 1.0, bool p_from_end = false);
  165. void play_section_with_markers(const StringName &p_name = StringName(), const StringName &p_start_marker = StringName(), const StringName &p_end_marker = StringName(), double p_custom_blend = -1, float p_custom_scale = 1.0, bool p_from_end = false);
  166. void play_section(const StringName &p_name = StringName(), double p_start_time = -1, double p_end_time = -1, double p_custom_blend = -1, float p_custom_scale = 1.0, bool p_from_end = false);
  167. void play_backwards(const StringName &p_name = StringName(), double p_custom_blend = -1);
  168. void play_section_with_markers_backwards(const StringName &p_name = StringName(), const StringName &p_start_marker = StringName(), const StringName &p_end_marker = StringName(), double p_custom_blend = -1);
  169. void play_section_backwards(const StringName &p_name = StringName(), double p_start_time = -1, double p_end_time = -1, double p_custom_blend = -1);
  170. void play_with_capture(const StringName &p_name = StringName(), double p_duration = -1.0, double p_custom_blend = -1, float p_custom_scale = 1.0, bool p_from_end = false, Tween::TransitionType p_trans_type = Tween::TRANS_LINEAR, Tween::EaseType p_ease_type = Tween::EASE_IN);
  171. void queue(const StringName &p_name);
  172. Vector<String> get_queue();
  173. void clear_queue();
  174. void pause();
  175. void stop(bool p_keep_state = false);
  176. bool is_playing() const;
  177. String get_current_animation() const;
  178. void set_current_animation(const String &p_animation);
  179. String get_assigned_animation() const;
  180. void set_assigned_animation(const String &p_animation);
  181. bool is_valid() const;
  182. void set_speed_scale(float p_speed);
  183. float get_speed_scale() const;
  184. float get_playing_speed() const;
  185. void set_autoplay(const String &p_name);
  186. String get_autoplay() const;
  187. void set_movie_quit_on_finish_enabled(bool p_enabled);
  188. bool is_movie_quit_on_finish_enabled() const;
  189. void seek_internal(double p_time, bool p_update = false, bool p_update_only = false, bool p_is_internal_seek = false);
  190. void seek(double p_time, bool p_update = false, bool p_update_only = false);
  191. double get_current_animation_position() const;
  192. double get_current_animation_length() const;
  193. void set_section_with_markers(const StringName &p_start_marker = StringName(), const StringName &p_end_marker = StringName());
  194. void set_section(double p_start_time = -1, double p_end_time = -1);
  195. void reset_section();
  196. double get_section_start_time() const;
  197. double get_section_end_time() const;
  198. bool has_section() const;
  199. virtual void advance(double p_time) override;
  200. AnimationPlayer();
  201. ~AnimationPlayer();
  202. };
  203. #ifndef DISABLE_DEPRECATED
  204. VARIANT_ENUM_CAST(AnimationPlayer::AnimationProcessCallback);
  205. VARIANT_ENUM_CAST(AnimationPlayer::AnimationMethodCallMode);
  206. #endif // DISABLE_DEPRECATED