summaryrefslogtreecommitdiffstats
path: root/editor/animation_track_editor.h
diff options
context:
space:
mode:
authoremild <emil.dobetsberger@gmail.com>2024-02-06 18:57:10 +0100
committeremild <emil.dobetsberger@gmail.com>2024-02-06 18:57:10 +0100
commita5cb760d90c3193b15eead64edf3761daf0e9435 (patch)
tree98aa61f4b52b28de7c2a17c9708b62e8ab9803cd /editor/animation_track_editor.h
parent26b1fd0d842fa3c2f090ead47e8ea7cd2d6515e1 (diff)
downloadredot-engine-a5cb760d90c3193b15eead64edf3761daf0e9435.tar.gz
implement consistent select, copy, paste, duplicate in animation player
Diffstat (limited to 'editor/animation_track_editor.h')
-rw-r--r--editor/animation_track_editor.h33
1 files changed, 30 insertions, 3 deletions
diff --git a/editor/animation_track_editor.h b/editor/animation_track_editor.h
index b5242e2f67..8653034f89 100644
--- a/editor/animation_track_editor.h
+++ b/editor/animation_track_editor.h
@@ -230,6 +230,8 @@ class AnimationTrackEdit : public Control {
MENU_LOOP_CLAMP,
MENU_KEY_INSERT,
MENU_KEY_DUPLICATE,
+ MENU_KEY_COPY,
+ MENU_KEY_PASTE,
MENU_KEY_ADD_RESET,
MENU_KEY_DELETE,
MENU_USE_BLEND_ENABLED,
@@ -275,6 +277,7 @@ class AnimationTrackEdit : public Control {
void _path_submitted(const String &p_text);
void _play_position_draw();
bool _is_value_key_valid(const Variant &p_key_value, Variant::Type &r_valid_type) const;
+ bool _try_select_at_ui_pos(const Point2 &p_pos, bool p_aggregate, bool p_deselectable);
Ref<Texture2D> _get_key_type_icon() const;
@@ -375,6 +378,7 @@ public:
class AnimationTrackEditor : public VBoxContainer {
GDCLASS(AnimationTrackEditor, VBoxContainer);
friend class AnimationTimelineEdit;
+ friend class AnimationBezierTrackEdit;
Ref<Animation> animation;
bool read_only = false;
@@ -570,7 +574,13 @@ class AnimationTrackEditor : public VBoxContainer {
void _cleanup_animation(Ref<Animation> p_animation);
- void _anim_duplicate_keys(bool transpose);
+ void _anim_duplicate_keys(float p_ofs, int p_track);
+
+ void _anim_copy_keys();
+
+ bool _is_track_compatible(int p_target_track_idx, Variant::Type p_source_value_type, Animation::TrackType p_source_track_type);
+
+ void _anim_paste_keys(float p_ofs, int p_track);
void _view_group_toggle();
Button *view_group = nullptr;
@@ -600,8 +610,23 @@ class AnimationTrackEditor : public VBoxContainer {
Vector<Key> keys;
};
+ struct KeyClipboard {
+ int top_track;
+
+ struct Key {
+ Animation::TrackType track_type;
+ int track;
+ float time = 0;
+ float transition = 0;
+ Variant value;
+ };
+ Vector<Key> keys;
+ };
+
Vector<TrackClipboard> track_clipboard;
+ KeyClipboard key_clipboard;
+ void _set_key_clipboard(int p_top_track, float p_top_time, RBMap<SelectedKey, KeyInfo> &p_keymap);
void _insert_animation_key(NodePath p_path, const Variant &p_value);
void _pick_track_filter_text_changed(const String &p_newtext);
@@ -622,13 +647,14 @@ public:
EDIT_COPY_TRACKS,
EDIT_COPY_TRACKS_CONFIRM,
EDIT_PASTE_TRACKS,
+ EDIT_COPY_KEYS,
+ EDIT_PASTE_KEYS,
EDIT_SCALE_SELECTION,
EDIT_SCALE_FROM_CURSOR,
EDIT_SCALE_CONFIRM,
EDIT_EASE_SELECTION,
EDIT_EASE_CONFIRM,
- EDIT_DUPLICATE_SELECTION,
- EDIT_DUPLICATE_TRANSPOSED,
+ EDIT_DUPLICATE_SELECTED_KEYS,
EDIT_ADD_RESET_KEY,
EDIT_DELETE_SELECTION,
EDIT_GOTO_NEXT_STEP,
@@ -672,6 +698,7 @@ public:
bool is_key_selected(int p_track, int p_key) const;
bool is_selection_active() const;
+ bool is_key_clipboard_active() const;
bool is_moving_selection() const;
bool is_snap_enabled() const;
float get_moving_selection_offset() const;