2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* animation_player_editor_plugin.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2017-01-01 22:01:57 +01:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
|
|
|
#ifndef ANIMATION_PLAYER_EDITOR_PLUGIN_H
|
|
|
|
#define ANIMATION_PLAYER_EDITOR_PLUGIN_H
|
|
|
|
|
2017-03-05 14:21:25 +01:00
|
|
|
#include "editor/editor_node.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "editor/editor_plugin.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "scene/animation/animation_player.h"
|
|
|
|
#include "scene/gui/dialogs.h"
|
|
|
|
#include "scene/gui/slider.h"
|
|
|
|
#include "scene/gui/spin_box.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "scene/gui/texture_button.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
@author Juan Linietsky <reduzio@gmail.com>
|
|
|
|
*/
|
2016-01-18 00:03:57 +01:00
|
|
|
class AnimationKeyEditor;
|
2014-02-10 02:10:30 +01:00
|
|
|
class AnimationPlayerEditor : public VBoxContainer {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(AnimationPlayerEditor, VBoxContainer);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
EditorNode *editor;
|
|
|
|
AnimationPlayer *player;
|
|
|
|
|
2015-05-25 06:46:45 +02:00
|
|
|
enum {
|
|
|
|
TOOL_COPY_ANIM,
|
|
|
|
TOOL_PASTE_ANIM,
|
|
|
|
TOOL_EDIT_RESOURCE
|
|
|
|
};
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-10-19 21:40:24 +02:00
|
|
|
enum {
|
|
|
|
ANIM_SAVE,
|
|
|
|
ANIM_SAVE_AS
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
RESOURCE_LOAD,
|
|
|
|
RESOURCE_SAVE
|
|
|
|
};
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
OptionButton *animation;
|
|
|
|
Button *stop;
|
|
|
|
Button *play;
|
2015-05-25 06:46:45 +02:00
|
|
|
Button *play_from;
|
|
|
|
Button *play_bw;
|
|
|
|
Button *play_bw_from;
|
|
|
|
|
2017-01-14 12:26:56 +01:00
|
|
|
//Button *pause;
|
2014-02-10 02:10:30 +01:00
|
|
|
Button *add_anim;
|
|
|
|
Button *autoplay;
|
|
|
|
Button *rename_anim;
|
|
|
|
Button *duplicate_anim;
|
2016-01-18 00:03:57 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Button *resource_edit_anim;
|
|
|
|
Button *load_anim;
|
2015-10-19 21:40:24 +02:00
|
|
|
MenuButton *save_anim;
|
2014-02-10 02:10:30 +01:00
|
|
|
Button *blend_anim;
|
|
|
|
Button *remove_anim;
|
2015-05-25 06:46:45 +02:00
|
|
|
MenuButton *tool_anim;
|
2016-01-18 00:03:57 +01:00
|
|
|
ToolButton *pin;
|
|
|
|
Button *nodename;
|
2014-02-10 02:10:30 +01:00
|
|
|
SpinBox *frame;
|
|
|
|
LineEdit *scale;
|
|
|
|
LineEdit *name;
|
|
|
|
Label *name_title;
|
|
|
|
UndoRedo *undo_redo;
|
|
|
|
Ref<Texture> autoplay_icon;
|
|
|
|
bool last_active;
|
|
|
|
|
2015-06-06 14:44:38 +02:00
|
|
|
EditorFileDialog *file;
|
2015-10-19 21:40:24 +02:00
|
|
|
AcceptDialog *accept;
|
2017-03-05 16:44:50 +01:00
|
|
|
ConfirmationDialog *delete_dialog;
|
2015-10-19 21:40:24 +02:00
|
|
|
int current_option;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
struct BlendEditor {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
AcceptDialog *dialog;
|
2014-02-10 02:10:30 +01:00
|
|
|
Tree *tree;
|
2016-05-07 18:27:52 +02:00
|
|
|
OptionButton *next;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
} blend_editor;
|
|
|
|
|
|
|
|
ConfirmationDialog *name_dialog;
|
|
|
|
ConfirmationDialog *error_dialog;
|
|
|
|
bool renaming;
|
|
|
|
|
|
|
|
bool updating;
|
|
|
|
bool updating_blends;
|
|
|
|
|
2016-01-18 00:03:57 +01:00
|
|
|
AnimationKeyEditor *key_editor;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _select_anim_by_name(const String &p_anim);
|
2014-02-10 02:10:30 +01:00
|
|
|
void _play_pressed();
|
2015-05-25 06:46:45 +02:00
|
|
|
void _play_from_pressed();
|
|
|
|
void _play_bw_pressed();
|
|
|
|
void _play_bw_from_pressed();
|
2014-02-10 02:10:30 +01:00
|
|
|
void _autoplay_pressed();
|
|
|
|
void _stop_pressed();
|
|
|
|
void _pause_pressed();
|
|
|
|
void _animation_selected(int p_which);
|
|
|
|
void _animation_new();
|
|
|
|
void _animation_rename();
|
|
|
|
void _animation_name_edited();
|
|
|
|
void _animation_load();
|
2015-10-19 21:40:24 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _animation_save_in_path(const Ref<Resource> &p_resource, const String &p_path);
|
|
|
|
void _animation_save(const Ref<Resource> &p_resource);
|
|
|
|
void _animation_save_as(const Ref<Resource> &p_resource);
|
2015-10-19 21:40:24 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void _animation_remove();
|
2017-01-25 21:22:16 +01:00
|
|
|
void _animation_remove_confirmed();
|
2014-02-10 02:10:30 +01:00
|
|
|
void _animation_blend();
|
|
|
|
void _animation_edit();
|
|
|
|
void _animation_duplicate();
|
|
|
|
void _animation_resource_edit();
|
2017-03-05 16:44:50 +01:00
|
|
|
void _scale_changed(const String &p_scale);
|
2015-10-19 21:40:24 +02:00
|
|
|
void _dialog_action(String p_file);
|
2017-03-05 16:44:50 +01:00
|
|
|
void _seek_frame_changed(const String &p_frame);
|
|
|
|
void _seek_value_changed(float p_value, bool p_set = false);
|
2016-05-07 18:27:52 +02:00
|
|
|
void _blend_editor_next_changed(const int p_idx);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void _list_changed();
|
|
|
|
void _update_animation();
|
|
|
|
void _update_player();
|
|
|
|
void _blend_edited();
|
|
|
|
|
|
|
|
void _hide_anim_editors();
|
|
|
|
|
|
|
|
void _animation_player_changed(Object *p_pl);
|
|
|
|
|
2016-06-19 06:43:02 +02:00
|
|
|
void _animation_key_editor_seek(float p_pos, bool p_drag);
|
2014-02-10 02:10:30 +01:00
|
|
|
void _animation_key_editor_anim_len_changed(float p_new);
|
2016-01-18 00:03:57 +01:00
|
|
|
void _animation_key_editor_anim_step_changed(float p_len);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _unhandled_key_input(const InputEvent &p_ev);
|
2015-05-25 06:46:45 +02:00
|
|
|
void _animation_tool_menu(int p_option);
|
2015-10-19 21:40:24 +02:00
|
|
|
void _animation_save_menu(int p_option);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
AnimationPlayerEditor();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
protected:
|
2014-02-10 02:10:30 +01:00
|
|
|
void _notification(int p_what);
|
2017-01-08 20:28:12 +01:00
|
|
|
void _gui_input(InputEvent p_event);
|
2014-02-10 02:10:30 +01:00
|
|
|
void _node_removed(Node *p_node);
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2015-12-05 18:18:22 +01:00
|
|
|
AnimationPlayer *get_player() const;
|
|
|
|
static AnimationPlayerEditor *singleton;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
AnimationKeyEditor *get_key_editor() { return key_editor; }
|
2015-08-30 03:59:25 +02:00
|
|
|
Dictionary get_state() const;
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_state(const Dictionary &p_state);
|
2015-08-30 03:59:25 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void ensure_visibility();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_undo_redo(UndoRedo *p_undo_redo) { undo_redo = p_undo_redo; }
|
2014-02-10 02:10:30 +01:00
|
|
|
void edit(AnimationPlayer *p_player);
|
|
|
|
AnimationPlayerEditor(EditorNode *p_editor);
|
|
|
|
};
|
|
|
|
|
|
|
|
class AnimationPlayerEditorPlugin : public EditorPlugin {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(AnimationPlayerEditorPlugin, EditorPlugin);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
AnimationPlayerEditor *anim_editor;
|
|
|
|
EditorNode *editor;
|
|
|
|
|
|
|
|
public:
|
2015-08-30 03:59:25 +02:00
|
|
|
virtual Dictionary get_state() const { return anim_editor->get_state(); }
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual void set_state(const Dictionary &p_state) { anim_editor->set_state(p_state); }
|
2015-08-30 03:59:25 +02:00
|
|
|
|
2016-05-19 00:08:12 +02:00
|
|
|
virtual String get_name() const { return "Anim"; }
|
2014-02-10 02:10:30 +01:00
|
|
|
bool has_main_screen() const { return false; }
|
|
|
|
virtual void edit(Object *p_node);
|
|
|
|
virtual bool handles(Object *p_node) const;
|
|
|
|
virtual void make_visible(bool p_visible);
|
|
|
|
|
|
|
|
AnimationPlayerEditorPlugin(EditorNode *p_node);
|
|
|
|
~AnimationPlayerEditorPlugin();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ANIMATION_PLAYER_EDITOR_PLUGIN_H
|