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