animation_player.h 11 KB

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