2018-08-29 22:38:13 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* animation_tree_editor_plugin.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/*************************************************************************/
|
2020-01-01 11:16:22 +01:00
|
|
|
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
|
2018-08-29 22:38:13 +02: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. */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "animation_tree_editor_plugin.h"
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
#include "animation_blend_space_1d_editor.h"
|
|
|
|
#include "animation_blend_space_2d_editor.h"
|
|
|
|
#include "animation_blend_tree_editor_plugin.h"
|
|
|
|
#include "animation_state_machine_editor.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "core/io/resource_loader.h"
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/math/delaunay.h"
|
|
|
|
#include "core/os/input.h"
|
|
|
|
#include "core/os/keyboard.h"
|
2017-07-21 13:57:46 +02:00
|
|
|
#include "core/project_settings.h"
|
2020-01-12 08:24:15 +01:00
|
|
|
#include "editor/editor_scale.h"
|
2018-08-20 18:38:18 +02:00
|
|
|
#include "scene/animation/animation_blend_tree.h"
|
|
|
|
#include "scene/animation/animation_player.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "scene/gui/menu_button.h"
|
|
|
|
#include "scene/gui/panel.h"
|
|
|
|
#include "scene/main/viewport.h"
|
2018-08-20 18:38:18 +02:00
|
|
|
#include "scene/scene_string_names.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
void AnimationTreeEditor::edit(AnimationTree *p_tree) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
if (tree == p_tree)
|
|
|
|
return;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
tree = p_tree;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
Vector<String> path;
|
|
|
|
if (tree->has_meta("_tree_edit_path")) {
|
|
|
|
path = tree->get_meta("_tree_edit_path");
|
|
|
|
edit_path(path);
|
|
|
|
} else {
|
2020-02-12 18:24:06 +01:00
|
|
|
current_root = ObjectID();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
void AnimationTreeEditor::_path_button_pressed(int p_path) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
edited_path.clear();
|
2018-12-17 20:08:41 +01:00
|
|
|
for (int i = 0; i <= p_path; i++) {
|
|
|
|
edited_path.push_back(button_path[i]);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
void AnimationTreeEditor::_update_path() {
|
2018-12-18 02:52:14 +01:00
|
|
|
while (path_hb->get_child_count() > 1) {
|
|
|
|
memdelete(path_hb->get_child(1));
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
Ref<ButtonGroup> group;
|
|
|
|
group.instance();
|
|
|
|
|
|
|
|
Button *b = memnew(Button);
|
|
|
|
b->set_text("root");
|
|
|
|
b->set_toggle_mode(true);
|
|
|
|
b->set_button_group(group);
|
|
|
|
b->set_pressed(true);
|
|
|
|
b->set_focus_mode(FOCUS_NONE);
|
2020-02-21 18:28:45 +01:00
|
|
|
b->connect("pressed", callable_mp(this, &AnimationTreeEditor::_path_button_pressed), varray(-1));
|
2018-08-20 18:38:18 +02:00
|
|
|
path_hb->add_child(b);
|
|
|
|
for (int i = 0; i < button_path.size(); i++) {
|
|
|
|
b = memnew(Button);
|
|
|
|
b->set_text(button_path[i]);
|
|
|
|
b->set_toggle_mode(true);
|
|
|
|
b->set_button_group(group);
|
|
|
|
path_hb->add_child(b);
|
|
|
|
b->set_pressed(true);
|
|
|
|
b->set_focus_mode(FOCUS_NONE);
|
2020-02-21 18:28:45 +01:00
|
|
|
b->connect("pressed", callable_mp(this, &AnimationTreeEditor::_path_button_pressed), varray(i));
|
2016-04-25 11:41:23 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
void AnimationTreeEditor::edit_path(const Vector<String> &p_path) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
button_path.clear();
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
Ref<AnimationNode> node = tree->get_tree_root();
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
if (node.is_valid()) {
|
|
|
|
current_root = node->get_instance_id();
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
for (int i = 0; i < p_path.size(); i++) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
Ref<AnimationNode> child = node->get_child_by_name(p_path[i]);
|
|
|
|
ERR_BREAK(child.is_null());
|
|
|
|
node = child;
|
|
|
|
button_path.push_back(p_path[i]);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:18:53 +02:00
|
|
|
edited_path = button_path;
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
for (int i = 0; i < editors.size(); i++) {
|
|
|
|
if (editors[i]->can_edit(node)) {
|
|
|
|
editors[i]->edit(node);
|
|
|
|
editors[i]->show();
|
|
|
|
} else {
|
|
|
|
editors[i]->edit(Ref<AnimationNode>());
|
|
|
|
editors[i]->hide();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2020-02-12 18:24:06 +01:00
|
|
|
current_root = ObjectID();
|
2019-07-11 20:18:53 +02:00
|
|
|
edited_path = button_path;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
_update_path();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
Vector<String> AnimationTreeEditor::get_edited_path() const {
|
|
|
|
return button_path;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
void AnimationTreeEditor::enter_editor(const String &p_path) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
Vector<String> path = edited_path;
|
|
|
|
path.push_back(p_path);
|
|
|
|
edit_path(path);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
void AnimationTreeEditor::_about_to_show_root() {
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void AnimationTreeEditor::_notification(int p_what) {
|
2018-08-20 18:38:18 +02:00
|
|
|
if (p_what == NOTIFICATION_PROCESS) {
|
2020-02-12 18:24:06 +01:00
|
|
|
ObjectID root;
|
2018-08-20 18:38:18 +02:00
|
|
|
if (tree && tree->get_tree_root().is_valid()) {
|
|
|
|
root = tree->get_tree_root()->get_instance_id();
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
if (root != current_root) {
|
|
|
|
edit_path(Vector<String>());
|
|
|
|
}
|
2018-12-17 20:08:41 +01:00
|
|
|
|
|
|
|
if (button_path.size() != edited_path.size()) {
|
|
|
|
edit_path(edited_path);
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
void AnimationTreeEditor::_bind_methods() {
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
AnimationTreeEditor *AnimationTreeEditor::singleton = NULL;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
void AnimationTreeEditor::add_plugin(AnimationTreeNodeEditorPlugin *p_editor) {
|
|
|
|
ERR_FAIL_COND(p_editor->get_parent());
|
|
|
|
editor_base->add_child(p_editor);
|
|
|
|
editors.push_back(p_editor);
|
|
|
|
p_editor->set_h_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
p_editor->set_v_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
p_editor->hide();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
void AnimationTreeEditor::remove_plugin(AnimationTreeNodeEditorPlugin *p_editor) {
|
|
|
|
ERR_FAIL_COND(p_editor->get_parent() != editor_base);
|
|
|
|
editor_base->remove_child(p_editor);
|
|
|
|
editors.erase(p_editor);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
String AnimationTreeEditor::get_base_path() {
|
|
|
|
String path = SceneStringNames::get_singleton()->parameters_base_path;
|
|
|
|
for (int i = 0; i < edited_path.size(); i++) {
|
|
|
|
path += edited_path[i] + "/";
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2018-08-20 18:38:18 +02:00
|
|
|
return path;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
bool AnimationTreeEditor::can_edit(const Ref<AnimationNode> &p_node) const {
|
|
|
|
for (int i = 0; i < editors.size(); i++) {
|
|
|
|
if (editors[i]->can_edit(p_node)) {
|
|
|
|
return true;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
2018-08-20 18:38:18 +02:00
|
|
|
return false;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
Vector<String> AnimationTreeEditor::get_animation_list() {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
if (!singleton->is_visible()) {
|
|
|
|
return Vector<String>();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
AnimationTree *tree = singleton->tree;
|
|
|
|
if (!tree || !tree->has_node(tree->get_animation_player()))
|
|
|
|
return Vector<String>();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
AnimationPlayer *ap = Object::cast_to<AnimationPlayer>(tree->get_node(tree->get_animation_player()));
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
if (!ap)
|
|
|
|
return Vector<String>();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
List<StringName> anims;
|
|
|
|
ap->get_animation_list(&anims);
|
|
|
|
Vector<String> ret;
|
|
|
|
for (List<StringName>::Element *E = anims.front(); E; E = E->next()) {
|
|
|
|
ret.push_back(E->get());
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
return ret;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
AnimationTreeEditor::AnimationTreeEditor() {
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
AnimationNodeAnimation::get_editable_animation_list = get_animation_list;
|
|
|
|
path_edit = memnew(ScrollContainer);
|
|
|
|
add_child(path_edit);
|
|
|
|
path_edit->set_enable_h_scroll(true);
|
|
|
|
path_edit->set_enable_v_scroll(false);
|
|
|
|
path_hb = memnew(HBoxContainer);
|
|
|
|
path_edit->add_child(path_hb);
|
2018-12-18 02:52:14 +01:00
|
|
|
path_hb->add_child(memnew(Label(TTR("Path:"))));
|
|
|
|
|
|
|
|
add_child(memnew(HSeparator));
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
singleton = this;
|
|
|
|
editor_base = memnew(PanelContainer);
|
|
|
|
editor_base->set_v_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
add_child(editor_base);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
add_plugin(memnew(AnimationNodeBlendTreeEditor));
|
|
|
|
add_plugin(memnew(AnimationNodeBlendSpace1DEditor));
|
|
|
|
add_plugin(memnew(AnimationNodeBlendSpace2DEditor));
|
|
|
|
add_plugin(memnew(AnimationNodeStateMachineEditor));
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void AnimationTreeEditorPlugin::edit(Object *p_object) {
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
anim_tree_editor->edit(Object::cast_to<AnimationTree>(p_object));
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AnimationTreeEditorPlugin::handles(Object *p_object) const {
|
|
|
|
|
2018-08-20 18:38:18 +02:00
|
|
|
return p_object->is_class("AnimationTree");
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void AnimationTreeEditorPlugin::make_visible(bool p_visible) {
|
|
|
|
|
|
|
|
if (p_visible) {
|
2017-01-14 12:26:56 +01:00
|
|
|
//editor->hide_animation_player_editors();
|
|
|
|
//editor->animation_panel_make_visible(true);
|
2016-01-18 00:03:57 +01:00
|
|
|
button->show();
|
|
|
|
editor->make_bottom_panel_item_visible(anim_tree_editor);
|
2018-08-20 18:38:18 +02:00
|
|
|
anim_tree_editor->set_process(true);
|
2014-02-10 02:10:30 +01:00
|
|
|
} else {
|
|
|
|
|
2017-01-13 14:45:50 +01:00
|
|
|
if (anim_tree_editor->is_visible_in_tree())
|
2016-01-18 00:03:57 +01:00
|
|
|
editor->hide_bottom_panel();
|
|
|
|
button->hide();
|
2018-08-20 18:38:18 +02:00
|
|
|
anim_tree_editor->set_process(false);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
AnimationTreeEditorPlugin::AnimationTreeEditorPlugin(EditorNode *p_node) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
editor = p_node;
|
|
|
|
anim_tree_editor = memnew(AnimationTreeEditor);
|
2020-01-12 08:24:15 +01:00
|
|
|
anim_tree_editor->set_custom_minimum_size(Size2(0, 300) * EDSCALE);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-12-23 15:40:15 +01:00
|
|
|
button = editor->add_bottom_panel_item(TTR("AnimationTree"), anim_tree_editor);
|
2016-01-18 00:03:57 +01:00
|
|
|
button->hide();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
AnimationTreeEditorPlugin::~AnimationTreeEditorPlugin() {
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|