Update Groups Editor

This commit is contained in:
Franklin Sobrinho 2015-11-26 14:59:04 -03:00
parent 145af960c8
commit 118f3cdcf6
2 changed files with 97 additions and 118 deletions

View file

@ -27,151 +27,130 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#include "groups_editor.h"
#include "scene/gui/box_container.h"
#include "scene/gui/box_container.h"
#include "scene/gui/label.h"
void GroupsEditor::_add_group(const String& p_group) {
#include "print_string.h"
void GroupsEditor::_notification(int p_what) {
if (p_what==NOTIFICATION_ENTER_TREE) {
connect("confirmed", this,"_close");
}
if (p_what==NOTIFICATION_EXIT_TREE) {
disconnect("confirmed", this,"_close");
}
}
void GroupsEditor::_close() {
hide();
}
void GroupsEditor::_add() {
if (!node)
return;
undo_redo->create_action("Add To Group");
undo_redo->add_do_method(node,"add_to_group",group_name->get_text(),true);
undo_redo->add_undo_method(node,"remove_from_group",group_name->get_text());
String name = group_name->get_text();
if (name.strip_edges()=="")
return;
if (node->is_in_group(name))
return;
undo_redo->create_action("Add to Group");
undo_redo->add_do_method(node,"add_to_group",name,true);
undo_redo->add_do_method(this,"update_tree");
undo_redo->add_undo_method(node,"remove_from_group",name,get_text());
undo_redo->add_undo_method(this,"update_tree");
undo_redo->commit_action();
}
void GroupsEditor::_remove_group(Object *p_item, int p_column, int p_id) {
void GroupsEditor::_remove() {
if (!tree->get_selected())
return;
if (!node)
return;
TreeItem *sel = tree->get_selected();
if (!sel)
TreeItem *ti = p_item->cast_to<TreeItem>();
if (!ti)
return;
node->remove_from_group( sel->get_text(0) );
update_tree();
String name = ti->get_text(0);
undo_redo->create_action("Remove from Group");
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();
}
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();
}
};
void GroupsEditor::update_tree() {
tree->clear();
if (!node)
return;
List<GroupInfo> groups;
node->get_groups(&groups);
TreeItem *root=tree->create_item();
for(List<GroupInfo>::Element *E=groups.front();E;E=E->next()) {
if (!E->get().persistent)
continue;
TreeItem *item=tree->create_item(root);
item->set_text(0, E->get().name);
}
List<Node::GroupInfo> groups;
node->get_groups(&groups);
groups.sort_custom<_GroupInfoComparator>();
TreeItem *root=tree->create_item();
for(List<GroupInfo>::Element *E=groups.front();E;E=E->next()) {
Node::GroupInfo gi = E->get();
if (!gi.persistent)
continue;
TreeItem *item=tree->create_item(root);
item->set_text(0, gi.name);
item->add_button(0, get_icon("Remove", "EditorIcons"), 0);
}
}
void GroupsEditor::set_current(Node* p_node) {
node=p_node;
update_tree();
}
void GroupsEditor::_bind_methods() {
ObjectTypeDB::bind_method("_add",&GroupsEditor::_add);
ObjectTypeDB::bind_method("_close",&GroupsEditor::_close);
ObjectTypeDB::bind_method("_remove",&GroupsEditor::_remove);
ObjectTypeDB::bind_method("_add_group",&GroupsEditor::_add_group);
ObjectTypeDB::bind_method("_remove_group",&GroupsEditor::_remove_group);
ObjectTypeDB::bind_method("update_tree",&GroupsEditor::update_tree);
}
GroupsEditor::GroupsEditor() {
node=NULL;
set_title("Group Editor");
Label * label = memnew( Label );
label->set_pos( Point2( 8,11) );
label->set_text("Groups:");
add_child(label);
group_name = memnew(LineEdit);
group_name->set_anchor( MARGIN_RIGHT, ANCHOR_END );
group_name->set_begin( Point2( 15,28) );
group_name->set_end( Point2( 94,48 ) );
add_child(group_name);
tree = memnew( Tree );
tree->set_anchor( MARGIN_RIGHT, ANCHOR_END );
tree->set_anchor( MARGIN_BOTTOM, ANCHOR_END );
tree->set_begin( Point2( 15,52) );
tree->set_end( Point2( 94,42 ) );
tree->set_hide_root(true);
add_child(tree);
VBoxContainer *vbc = memnew( VBoxContainer );
add_child(vbc);
set_child_rect(vbc);
HBoxContainer *hbc = memnew( HBoxContainer );
vbc->add_margin_child("Group", hbc);
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");
add = memnew( Button );
add->set_anchor( MARGIN_LEFT, ANCHOR_END );
add->set_anchor( MARGIN_RIGHT, ANCHOR_END );
add->set_begin( Point2( 90, 28 ) );
add->set_end( Point2( 15, 48 ) );
add->set_text("Add");
add_child(add);
remove = memnew( Button );
remove->set_anchor( MARGIN_LEFT, ANCHOR_END );
remove->set_anchor( MARGIN_RIGHT, ANCHOR_END );
remove->set_begin( Point2( 90, 52 ) );
remove->set_end( Point2( 15, 72 ) );
remove->set_text("Remove");
add_child(remove);
hbc->add_child(add);
add->connect("pressed", this,"_add_group", varray(String()));
tree = memnew( Tree );
tree->set_hide_root(true);
tree->set_v_size_flags(SIZE_EXPAND_FILL);
vbc->add_margin_child("Node Group(s)", tree, true);
tree->connect("button_pressed",this,"_remove_group");
get_ok()->set_text("Close");
add->connect("pressed", this,"_add");
remove->connect("pressed", this,"_remove");
node=NULL;
}
GroupsEditor::~GroupsEditor()
{
}

View file

@ -29,42 +29,42 @@
#ifndef GROUPS_EDITOR_H
#define GROUPS_EDITOR_H
#include "scene/gui/dialogs.h"
#include "scene/gui/button.h"
#include "scene/gui/tree.h"
#include "scene/gui/line_edit.h"
#include "undo_redo.h"
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
class GroupsEditor : public ConfirmationDialog {
OBJ_TYPE( GroupsEditor, ConfirmationDialog );
LineEdit *group_name;
Tree *tree;
Button *add;
Button *remove;
class GroupsEditor : public AcceptDialog {
OBJ_TYPE(GroupsEditor,AcceptDialog);
Node *node;
LineEdit *group_name;
Button *add;
Tree *tree;
UndoRedo *undo_redo;
void update_tree();
void _add();
void _remove();
void _add_group(const String& p_group="");
void _remove_group(Object *p_item, int p_column, int p_id);
void _close();
protected:
void _notification(int p_what);
static void _bind_methods();
static void _bind_methods();
public:
void set_undo_redo(UndoRedo *p_undoredo) { undo_redo=p_undoredo; }
void set_current(Node* p_node);
GroupsEditor();
~GroupsEditor();
};
#endif