2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* scene_tree_dock.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2016-01-01 14:50:53 +01:00
|
|
|
/* Copyright (c) 2007-2016 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 SCENE_TREE_DOCK_H
|
|
|
|
#define SCENE_TREE_DOCK_H
|
|
|
|
|
|
|
|
#include "scene/gui/control.h"
|
|
|
|
#include "scene/gui/tree.h"
|
|
|
|
#include "scene/gui/label.h"
|
|
|
|
#include "scene/gui/button.h"
|
|
|
|
#include "scene/gui/tool_button.h"
|
|
|
|
#include "scene/gui/box_container.h"
|
2016-05-16 04:41:48 +02:00
|
|
|
#include "scene/gui/popup_menu.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "scene_tree_editor.h"
|
|
|
|
#include "create_dialog.h"
|
|
|
|
#include "editor_data.h"
|
|
|
|
#include "groups_editor.h"
|
|
|
|
#include "connections_dialog.h"
|
|
|
|
#include "script_create_dialog.h"
|
|
|
|
#include "reparent_dialog.h"
|
|
|
|
#include "scene/animation/animation_player.h"
|
|
|
|
#include "editor_sub_scene.h"
|
|
|
|
class EditorNode;
|
|
|
|
|
|
|
|
class SceneTreeDock : public VBoxContainer {
|
|
|
|
|
|
|
|
OBJ_TYPE( SceneTreeDock, VBoxContainer );
|
|
|
|
|
|
|
|
enum Tool {
|
|
|
|
|
|
|
|
TOOL_NEW,
|
|
|
|
TOOL_INSTANCE,
|
|
|
|
TOOL_REPLACE,
|
|
|
|
TOOL_CONNECT,
|
|
|
|
TOOL_GROUP,
|
|
|
|
TOOL_SCRIPT,
|
|
|
|
TOOL_MOVE_UP,
|
|
|
|
TOOL_MOVE_DOWN,
|
|
|
|
TOOL_DUPLICATE,
|
|
|
|
TOOL_REPARENT,
|
2015-11-27 21:42:48 +01:00
|
|
|
TOOL_NEW_SCENE_FROM,
|
2016-05-27 19:18:40 +02:00
|
|
|
TOOL_MERGE_FROM_SCENE,
|
2015-08-25 05:08:45 +02:00
|
|
|
TOOL_MULTI_EDIT,
|
2014-02-10 02:10:30 +01:00
|
|
|
TOOL_ERASE,
|
|
|
|
TOOL_BUTTON_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-08-03 16:28:20 +02:00
|
|
|
bool restore_script_editor_on_drag;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
int current_option;
|
|
|
|
CreateDialog *create_dialog;
|
|
|
|
|
2016-05-17 23:27:15 +02:00
|
|
|
ToolButton *button_add;
|
|
|
|
ToolButton *button_instance;
|
2016-08-08 00:22:33 +02:00
|
|
|
ToolButton *button_create_script;
|
2016-05-17 23:27:15 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
SceneTreeEditor *scene_tree;
|
|
|
|
|
|
|
|
HBoxContainer *tool_hbc;
|
2014-05-09 12:50:48 +02:00
|
|
|
void _tool_selected(int p_tool, bool p_confirm_override = false);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
EditorData *editor_data;
|
|
|
|
EditorSelection *editor_selection;
|
|
|
|
|
2016-06-04 18:17:56 +02:00
|
|
|
//GroupsEditor *groups_editor;
|
2016-06-04 02:03:09 +02:00
|
|
|
//ConnectionsDialog *connect_dialog;
|
2014-02-10 02:10:30 +01:00
|
|
|
ScriptCreateDialog *script_create_dialog;
|
|
|
|
AcceptDialog *accept;
|
|
|
|
ConfirmationDialog *delete_dialog;
|
|
|
|
|
|
|
|
ReparentDialog *reparent_dialog;
|
2015-06-06 14:44:38 +02:00
|
|
|
EditorFileDialog *file;
|
2014-02-10 02:10:30 +01:00
|
|
|
EditorSubScene *import_subscene_dialog;
|
2015-11-27 21:42:48 +01:00
|
|
|
EditorFileDialog *new_scene_from_dialog;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-05-16 17:23:40 +02:00
|
|
|
LineEdit *filter;
|
|
|
|
TextureFrame *filter_icon;
|
|
|
|
|
2016-05-16 04:41:48 +02:00
|
|
|
PopupMenu * menu;
|
|
|
|
|
2015-06-14 07:13:47 +02:00
|
|
|
bool first_enter;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void _create();
|
|
|
|
Node *scene_root;
|
|
|
|
Node *edited_scene;
|
|
|
|
EditorNode *editor;
|
|
|
|
|
|
|
|
Node *_duplicate(Node *p_node, Map<Node*,Node*> &duplimap);
|
2016-01-02 15:57:47 +01:00
|
|
|
void _node_reparent(NodePath p_path, bool p_keep_global_xform);
|
2016-05-11 16:46:08 +02:00
|
|
|
void _do_reparent(Node* p_new_parent, int p_position_in_parent, Vector<Node*> p_nodes, bool p_keep_global_xform);
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void _set_owners(Node *p_owner, const Array& p_nodes);
|
|
|
|
void _load_request(const String& p_path);
|
|
|
|
void _script_open_request(const Ref<Script>& p_script);
|
|
|
|
|
2015-01-19 21:47:50 +01:00
|
|
|
bool _cyclical_dependency_exists(const String& p_target_scene_path, Node* p_desired_node);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void _node_selected();
|
2014-09-21 17:56:19 +02:00
|
|
|
void _node_renamed();
|
2014-02-10 02:10:30 +01:00
|
|
|
void _script_created(Ref<Script> p_script);
|
|
|
|
|
|
|
|
void _delete_confirm();
|
2016-05-17 23:27:15 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void _node_prerenamed(Node* p_node, const String& p_new_name);
|
|
|
|
|
2016-08-03 16:28:20 +02:00
|
|
|
void _nodes_drag_begin();
|
|
|
|
void _input(InputEvent p_event);
|
2014-02-10 02:10:30 +01:00
|
|
|
void _unhandled_key_input(InputEvent p_event);
|
|
|
|
|
|
|
|
void _import_subscene();
|
|
|
|
|
2015-11-27 21:42:48 +01:00
|
|
|
void _new_scene_from(String p_file);
|
|
|
|
|
2014-09-03 04:13:40 +02:00
|
|
|
bool _validate_no_foreign();
|
2015-08-25 05:08:45 +02:00
|
|
|
void _selection_changed();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void _fill_path_renames(Vector<StringName> base_path,Vector<StringName> new_base_path,Node * p_node, List<Pair<NodePath,NodePath> > *p_renames);
|
|
|
|
|
2016-07-01 04:19:44 +02:00
|
|
|
void _normalize_drop(Node*& to_node, int &to_pos, int p_type);
|
2016-05-12 01:57:52 +02:00
|
|
|
|
2016-05-11 16:46:08 +02:00
|
|
|
void _nodes_dragged(Array p_nodes,NodePath p_to,int p_type);
|
2016-05-12 01:57:52 +02:00
|
|
|
void _files_dropped(Vector<String> p_files,NodePath p_to,int p_type);
|
2016-05-11 16:46:08 +02:00
|
|
|
|
2016-05-16 04:41:48 +02:00
|
|
|
void _tree_rmb(const Vector2& p_menu_pos);
|
|
|
|
|
2016-05-16 17:23:40 +02:00
|
|
|
void _filter_changed(const String& p_filter);
|
|
|
|
|
2016-07-20 19:09:03 +02:00
|
|
|
void _perform_instance_scenes(const Vector<String>& p_files,Node* parent,int p_pos);
|
2016-10-11 16:54:46 +02:00
|
|
|
void _replace_with_branch_scene(const String& p_file,Node* base);
|
2016-07-20 19:09:03 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
protected:
|
|
|
|
|
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
public:
|
|
|
|
|
2016-05-16 17:23:40 +02:00
|
|
|
String get_filter();
|
|
|
|
void set_filter(const String& p_filter);
|
|
|
|
|
2016-07-28 21:37:52 +02:00
|
|
|
void _focus_node();
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void import_subscene();
|
|
|
|
void set_edited_scene(Node* p_scene);
|
2016-05-12 01:57:52 +02:00
|
|
|
void instance(const String& p_path);
|
2016-07-20 19:09:03 +02:00
|
|
|
void instance_scenes(const Vector<String>& p_files, Node *p_parent=NULL);
|
2014-07-02 09:34:46 +02:00
|
|
|
void set_selected(Node *p_node, bool p_emit_selected=false);
|
2014-02-10 02:10:30 +01:00
|
|
|
void fill_path_renames(Node* p_node, Node *p_new_parent, List<Pair<NodePath,NodePath> > *p_renames);
|
|
|
|
void perform_node_renames(Node* p_base,List<Pair<NodePath,NodePath> > *p_renames, Map<Ref<Animation>, Set<int> > *r_rem_anims=NULL);
|
2015-06-22 05:03:19 +02:00
|
|
|
SceneTreeEditor *get_tree_editor() { return scene_tree; }
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-06-04 18:17:56 +02:00
|
|
|
|
2016-09-13 00:31:07 +02:00
|
|
|
void open_script_dialog(Node* p_for_node);
|
2014-02-10 02:10:30 +01:00
|
|
|
SceneTreeDock(EditorNode *p_editor,Node *p_scene_root,EditorSelection *p_editor_selection,EditorData &p_editor_data);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SCENE_TREE_DOCK_H
|