godot/tools/editor/groups_editor.cpp

162 lines
5 KiB
C++
Raw Normal View History

2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* groups_editor.cpp */
/*************************************************************************/
/* 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. */
/*************************************************************************/
#include "groups_editor.h"
2015-11-26 18:59:04 +01:00
#include "scene/gui/box_container.h"
2014-02-10 02:10:30 +01:00
#include "scene/gui/label.h"
2015-11-26 18:59:04 +01:00
void GroupsEditor::_add_group(const String& p_group) {
2014-02-10 02:10:30 +01:00
2015-11-26 18:59:04 +01:00
if (!node)
return;
2014-02-10 02:10:30 +01:00
2015-11-26 18:59:04 +01:00
String name = group_name->get_text();
if (name.strip_edges()=="")
return;
2014-02-10 02:10:30 +01:00
2015-11-26 18:59:04 +01:00
if (node->is_in_group(name))
2014-02-10 02:10:30 +01:00
return;
undo_redo->create_action(TTR("Add to Group"));
2015-11-26 18:59:04 +01:00
undo_redo->add_do_method(node,"add_to_group",name,true);
2014-02-10 02:10:30 +01:00
undo_redo->add_do_method(this,"update_tree");
2015-11-26 18:59:04 +01:00
undo_redo->add_undo_method(node,"remove_from_group",name,get_text());
2014-02-10 02:10:30 +01:00
undo_redo->add_undo_method(this,"update_tree");
undo_redo->commit_action();
group_name->clear();
2014-02-10 02:10:30 +01:00
}
2015-11-26 18:59:04 +01:00
void GroupsEditor::_remove_group(Object *p_item, int p_column, int p_id) {
2014-02-10 02:10:30 +01:00
if (!node)
return;
2015-11-26 18:59:04 +01:00
TreeItem *ti = p_item->cast_to<TreeItem>();
if (!ti)
2014-02-10 02:10:30 +01:00
return;
2015-11-26 18:59:04 +01:00
String name = ti->get_text(0);
undo_redo->create_action(TTR("Remove from Group"));
2015-11-26 18:59:04 +01:00
undo_redo->add_do_method(node,"remove_from_group",name);
undo_redo->add_do_method(this,"update_tree");
undo_redo->add_undo_method(node,"add_to_group",name,true);
undo_redo->add_undo_method(this,"update_tree");
undo_redo->commit_action();
2014-02-10 02:10:30 +01:00
}
2015-11-26 18:59:04 +01:00
struct _GroupInfoComparator {
bool operator()(const Node::GroupInfo& p_a, const Node::GroupInfo& p_b) const {
return p_a.name.operator String() < p_b.name.operator String();
}
};
2014-02-10 02:10:30 +01:00
void GroupsEditor::update_tree() {
tree->clear();
2015-11-26 18:59:04 +01:00
2014-02-10 02:10:30 +01:00
if (!node)
return;
2015-11-26 18:59:04 +01:00
List<Node::GroupInfo> groups;
2014-02-10 02:10:30 +01:00
node->get_groups(&groups);
2015-11-26 18:59:04 +01:00
groups.sort_custom<_GroupInfoComparator>();
2014-02-10 02:10:30 +01:00
TreeItem *root=tree->create_item();
2015-11-26 18:59:04 +01:00
2014-02-10 02:10:30 +01:00
for(List<GroupInfo>::Element *E=groups.front();E;E=E->next()) {
2015-11-26 18:59:04 +01:00
Node::GroupInfo gi = E->get();
if (!gi.persistent)
2014-02-10 02:10:30 +01:00
continue;
2015-11-26 18:59:04 +01:00
2014-02-10 02:10:30 +01:00
TreeItem *item=tree->create_item(root);
2015-11-26 18:59:04 +01:00
item->set_text(0, gi.name);
item->add_button(0, get_icon("Remove", "EditorIcons"), 0);
2014-02-10 02:10:30 +01:00
}
}
void GroupsEditor::set_current(Node* p_node) {
2015-11-26 18:59:04 +01:00
2014-02-10 02:10:30 +01:00
node=p_node;
update_tree();
}
void GroupsEditor::_bind_methods() {
2015-11-26 18:59:04 +01:00
ObjectTypeDB::bind_method("_add_group",&GroupsEditor::_add_group);
ObjectTypeDB::bind_method("_remove_group",&GroupsEditor::_remove_group);
2014-02-10 02:10:30 +01:00
ObjectTypeDB::bind_method("update_tree",&GroupsEditor::update_tree);
}
GroupsEditor::GroupsEditor() {
2015-11-26 18:59:04 +01:00
node=NULL;
set_title(TTR("Group Editor"));
2015-11-26 18:59:04 +01:00
VBoxContainer *vbc = memnew( VBoxContainer );
add_child(vbc);
set_child_rect(vbc);
HBoxContainer *hbc = memnew( HBoxContainer );
vbc->add_margin_child(TTR("Group"), hbc);
2015-11-26 18:59:04 +01:00
group_name = memnew( LineEdit );
group_name->set_h_size_flags(SIZE_EXPAND_FILL);
hbc->add_child(group_name);
group_name->connect("text_entered",this,"_add_group");
2014-02-10 02:10:30 +01:00
add = memnew( Button );
add->set_text(TTR("Add"));
2015-11-26 18:59:04 +01:00
hbc->add_child(add);
add->connect("pressed", this,"_add_group", varray(String()));
2014-02-10 02:10:30 +01:00
2015-11-26 18:59:04 +01:00
tree = memnew( Tree );
tree->set_hide_root(true);
tree->set_v_size_flags(SIZE_EXPAND_FILL);
vbc->add_margin_child(TTR("Node Group(s)"), tree, true);
2015-11-26 18:59:04 +01:00
tree->connect("button_pressed",this,"_remove_group");
2014-02-10 02:10:30 +01:00
get_ok()->set_text(TTR("Close"));
2014-02-10 02:10:30 +01:00
}
GroupsEditor::~GroupsEditor()
{
}