Add the ability to reorder arrays from the inspector

This commit is contained in:
Lightning_A 2021-03-29 10:45:42 -06:00
parent fb3961b2ef
commit ec67266af3
3 changed files with 244 additions and 140 deletions

View file

@ -30,16 +30,18 @@
#include "editor_properties_array_dict.h" #include "editor_properties_array_dict.h"
#include "core/input/input.h"
#include "core/io/marshalls.h" #include "core/io/marshalls.h"
#include "editor/editor_node.h"
#include "editor/editor_scale.h" #include "editor/editor_scale.h"
#include "editor_properties.h" #include "editor_properties.h"
bool EditorPropertyArrayObject::_set(const StringName &p_name, const Variant &p_value) { bool EditorPropertyArrayObject::_set(const StringName &p_name, const Variant &p_value) {
String pn = p_name; String name = p_name;
if (pn.begins_with("indices")) { if (name.begins_with("indices")) {
int idx = pn.get_slicec('/', 1).to_int(); int index = name.get_slicec('/', 1).to_int();
array.set(idx, p_value); array.set(index, p_value);
return true; return true;
} }
@ -47,12 +49,12 @@ bool EditorPropertyArrayObject::_set(const StringName &p_name, const Variant &p_
} }
bool EditorPropertyArrayObject::_get(const StringName &p_name, Variant &r_ret) const { bool EditorPropertyArrayObject::_get(const StringName &p_name, Variant &r_ret) const {
String pn = p_name; String name = p_name;
if (pn.begins_with("indices")) { if (name.begins_with("indices")) {
int idx = pn.get_slicec('/', 1).to_int(); int index = name.get_slicec('/', 1).to_int();
bool valid; bool valid;
r_ret = array.get(idx, &valid); r_ret = array.get(index, &valid);
if (r_ret.get_type() == Variant::OBJECT && Object::cast_to<EncodedObjectAsID>(r_ret)) { if (r_ret.get_type() == Variant::OBJECT && Object::cast_to<EncodedObjectAsID>(r_ret)) {
r_ret = Object::cast_to<EncodedObjectAsID>(r_ret)->get_object_id(); r_ret = Object::cast_to<EncodedObjectAsID>(r_ret)->get_object_id();
} }
@ -77,21 +79,21 @@ EditorPropertyArrayObject::EditorPropertyArrayObject() {
/////////////////// ///////////////////
bool EditorPropertyDictionaryObject::_set(const StringName &p_name, const Variant &p_value) { bool EditorPropertyDictionaryObject::_set(const StringName &p_name, const Variant &p_value) {
String pn = p_name; String name = p_name;
if (pn == "new_item_key") { if (name == "new_item_key") {
new_item_key = p_value; new_item_key = p_value;
return true; return true;
} }
if (pn == "new_item_value") { if (name == "new_item_value") {
new_item_value = p_value; new_item_value = p_value;
return true; return true;
} }
if (pn.begins_with("indices")) { if (name.begins_with("indices")) {
int idx = pn.get_slicec('/', 1).to_int(); int index = name.get_slicec('/', 1).to_int();
Variant key = dict.get_key_at_index(idx); Variant key = dict.get_key_at_index(index);
dict[key] = p_value; dict[key] = p_value;
return true; return true;
} }
@ -100,21 +102,21 @@ bool EditorPropertyDictionaryObject::_set(const StringName &p_name, const Varian
} }
bool EditorPropertyDictionaryObject::_get(const StringName &p_name, Variant &r_ret) const { bool EditorPropertyDictionaryObject::_get(const StringName &p_name, Variant &r_ret) const {
String pn = p_name; String name = p_name;
if (pn == "new_item_key") { if (name == "new_item_key") {
r_ret = new_item_key; r_ret = new_item_key;
return true; return true;
} }
if (pn == "new_item_value") { if (name == "new_item_value") {
r_ret = new_item_value; r_ret = new_item_value;
return true; return true;
} }
if (pn.begins_with("indices")) { if (name.begins_with("indices")) {
int idx = pn.get_slicec('/', 1).to_int(); int index = name.get_slicec('/', 1).to_int();
Variant key = dict.get_key_at_index(idx); Variant key = dict.get_key_at_index(index);
r_ret = dict[key]; r_ret = dict[key];
if (r_ret.get_type() == Variant::OBJECT && Object::cast_to<EncodedObjectAsID>(r_ret)) { if (r_ret.get_type() == Variant::OBJECT && Object::cast_to<EncodedObjectAsID>(r_ret)) {
r_ret = Object::cast_to<EncodedObjectAsID>(r_ret)->get_object_id(); r_ret = Object::cast_to<EncodedObjectAsID>(r_ret)->get_object_id();
@ -157,13 +159,13 @@ EditorPropertyDictionaryObject::EditorPropertyDictionaryObject() {
void EditorPropertyArray::_property_changed(const String &p_property, Variant p_value, const String &p_name, bool p_changing) { void EditorPropertyArray::_property_changed(const String &p_property, Variant p_value, const String &p_name, bool p_changing) {
if (p_property.begins_with("indices")) { if (p_property.begins_with("indices")) {
int idx = p_property.get_slice("/", 1).to_int(); int index = p_property.get_slice("/", 1).to_int();
Variant array = object->get_array(); Variant array = object->get_array();
array.set(idx, p_value); array.set(index, p_value);
emit_changed(get_edited_property(), array, "", true); emit_changed(get_edited_property(), array, "", true);
if (array.get_type() == Variant::ARRAY) { if (array.get_type() == Variant::ARRAY) {
array = array.call("duplicate"); //dupe, so undo/redo works better array = array.call("duplicate"); // Duplicate, so undo/redo works better.
} }
object->set_array(array); object->set_array(array);
} }
@ -171,7 +173,7 @@ void EditorPropertyArray::_property_changed(const String &p_property, Variant p_
void EditorPropertyArray::_change_type(Object *p_button, int p_index) { void EditorPropertyArray::_change_type(Object *p_button, int p_index) {
Button *button = Object::cast_to<Button>(p_button); Button *button = Object::cast_to<Button>(p_button);
changing_type_idx = p_index; changing_type_index = p_index;
Rect2 rect = button->get_screen_rect(); Rect2 rect = button->get_screen_rect();
change_type->set_as_minsize(); change_type->set_as_minsize();
change_type->set_position(rect.position + rect.size - Vector2(change_type->get_contents_minimum_size().x, 0)); change_type->set_position(rect.position + rect.size - Vector2(change_type->get_contents_minimum_size().x, 0));
@ -180,7 +182,7 @@ void EditorPropertyArray::_change_type(Object *p_button, int p_index) {
void EditorPropertyArray::_change_type_menu(int p_index) { void EditorPropertyArray::_change_type_menu(int p_index) {
if (p_index == Variant::VARIANT_MAX) { if (p_index == Variant::VARIANT_MAX) {
_remove_pressed(changing_type_idx); _remove_pressed(changing_type_index);
return; return;
} }
@ -188,12 +190,12 @@ void EditorPropertyArray::_change_type_menu(int p_index) {
Callable::CallError ce; Callable::CallError ce;
Variant::construct(Variant::Type(p_index), value, nullptr, 0, ce); Variant::construct(Variant::Type(p_index), value, nullptr, 0, ce);
Variant array = object->get_array(); Variant array = object->get_array();
array.set(changing_type_idx, value); array.set(changing_type_index, value);
emit_changed(get_edited_property(), array, "", true); emit_changed(get_edited_property(), array, "", true);
if (array.get_type() == Variant::ARRAY) { if (array.get_type() == Variant::ARRAY) {
array = array.call("duplicate"); //dupe, so undo/redo works better array = array.call("duplicate"); // Duplicate, so undo/redo works better.
} }
object->set_array(array); object->set_array(array);
@ -213,7 +215,7 @@ void EditorPropertyArray::update_property() {
arrtype = "Array"; arrtype = "Array";
} break; } break;
// arrays // Arrays.
case Variant::PACKED_BYTE_ARRAY: { case Variant::PACKED_BYTE_ARRAY: {
arrtype = "PackedByteArray"; arrtype = "PackedByteArray";
} break; } break;
@ -256,7 +258,12 @@ void EditorPropertyArray::update_property() {
return; return;
} }
edit->set_text(arrtype + " (size " + itos(array.call("size")) + ")"); int size = array.call("size");
int pages = MAX(0, size - 1) / page_length + 1;
page_index = MIN(page_index, pages - 1);
int offset = page_index * page_length;
edit->set_text(arrtype + " (size " + itos(size) + ")");
bool unfolded = get_edited_object()->editor_is_section_unfolded(get_edited_property()); bool unfolded = get_edited_object()->editor_is_section_unfolded(get_edited_property());
if (edit->is_pressed() != unfolded) { if (edit->is_pressed() != unfolded) {
@ -270,50 +277,50 @@ void EditorPropertyArray::update_property() {
vbox = memnew(VBoxContainer); vbox = memnew(VBoxContainer);
add_child(vbox); add_child(vbox);
set_bottom_editor(vbox); set_bottom_editor(vbox);
HBoxContainer *hbc = memnew(HBoxContainer);
vbox->add_child(hbc); HBoxContainer *hbox = memnew(HBoxContainer);
vbox->add_child(hbox);
Label *label = memnew(Label(TTR("Size: "))); Label *label = memnew(Label(TTR("Size: ")));
label->set_h_size_flags(SIZE_EXPAND_FILL); label->set_h_size_flags(SIZE_EXPAND_FILL);
hbc->add_child(label); hbox->add_child(label);
length = memnew(EditorSpinSlider);
length->set_step(1); size_slider = memnew(EditorSpinSlider);
length->set_max(1000000); size_slider->set_step(1);
length->set_h_size_flags(SIZE_EXPAND_FILL); size_slider->set_max(1000000);
hbc->add_child(length); size_slider->set_h_size_flags(SIZE_EXPAND_FILL);
length->connect("value_changed", callable_mp(this, &EditorPropertyArray::_length_changed)); size_slider->connect("value_changed", callable_mp(this, &EditorPropertyArray::_length_changed));
hbox->add_child(size_slider);
page_hbox = memnew(HBoxContainer);
vbox->add_child(page_hbox);
page_hb = memnew(HBoxContainer);
vbox->add_child(page_hb);
label = memnew(Label(TTR("Page: "))); label = memnew(Label(TTR("Page: ")));
label->set_h_size_flags(SIZE_EXPAND_FILL); label->set_h_size_flags(SIZE_EXPAND_FILL);
page_hb->add_child(label); page_hbox->add_child(label);
page = memnew(EditorSpinSlider);
page->set_step(1); page_slider = memnew(EditorSpinSlider);
page_hb->add_child(page); page_slider->set_step(1);
page->set_h_size_flags(SIZE_EXPAND_FILL); page_slider->set_h_size_flags(SIZE_EXPAND_FILL);
page->connect("value_changed", callable_mp(this, &EditorPropertyArray::_page_changed)); page_slider->connect("value_changed", callable_mp(this, &EditorPropertyArray::_page_changed));
page_hbox->add_child(page_slider);
} else { } else {
//bye bye children of the box // Bye bye children of the box.
while (vbox->get_child_count() > 2) { for (int i = vbox->get_child_count() - 1; i >= 2; i--) {
vbox->get_child(2)->queue_delete(); // button still needed after pressed is called Node *child = vbox->get_child(i);
vbox->remove_child(vbox->get_child(2)); if (child == reorder_selected_element_hbox) {
continue; // Don't remove the property that the user is moving.
}
child->queue_delete(); // Button still needed after pressed is called.
vbox->remove_child(child);
} }
} }
int len = array.call("size"); size_slider->set_value(size);
page_slider->set_max(pages);
length->set_value(len); page_slider->set_value(page_index);
page_hbox->set_visible(pages > 1);
int pages = MAX(0, len - 1) / page_len + 1;
page->set_max(pages);
page_idx = MIN(page_idx, pages - 1);
page->set_value(page_idx);
page_hb->set_visible(pages > 1);
int offset = page_idx * page_len;
int amount = MIN(len - offset, page_len);
if (array.get_type() == Variant::ARRAY) { if (array.get_type() == Variant::ARRAY) {
array = array.call("duplicate"); array = array.call("duplicate");
@ -321,7 +328,31 @@ void EditorPropertyArray::update_property() {
object->set_array(array); object->set_array(array);
int amount = MIN(size - offset, page_length);
for (int i = 0; i < amount; i++) { for (int i = 0; i < amount; i++) {
bool reorder_is_from_current_page = reorder_from_index / page_length == page_index;
if (reorder_is_from_current_page && i == reorder_from_index % page_length) {
// Don't duplicate the property that the user is moving.
continue;
}
if (!reorder_is_from_current_page && i == reorder_to_index % page_length) {
// Don't create the property the moving property will take the place of,
// e.g. (if page_length == 20) don't create element 20 if dragging an item from
// the first page to the second page because element 20 would become element 19.
continue;
}
HBoxContainer *hbox = memnew(HBoxContainer);
vbox->add_child(hbox);
Button *reorder_button = memnew(Button);
reorder_button->set_icon(get_theme_icon("TripleBar", "EditorIcons"));
reorder_button->set_default_cursor_shape(Control::CURSOR_MOVE);
reorder_button->connect("gui_input", callable_mp(this, &EditorPropertyArray::_reorder_button_gui_input));
reorder_button->connect("button_down", callable_mp(this, &EditorPropertyArray::_reorder_button_down), varray(i + offset));
reorder_button->connect("button_up", callable_mp(this, &EditorPropertyArray::_reorder_button_up));
hbox->add_child(reorder_button);
String prop_name = "indices/" + itos(i + offset); String prop_name = "indices/" + itos(i + offset);
EditorProperty *prop = nullptr; EditorProperty *prop = nullptr;
@ -346,29 +377,29 @@ void EditorPropertyArray::update_property() {
prop->connect("property_changed", callable_mp(this, &EditorPropertyArray::_property_changed)); prop->connect("property_changed", callable_mp(this, &EditorPropertyArray::_property_changed));
prop->connect("object_id_selected", callable_mp(this, &EditorPropertyArray::_object_id_selected)); prop->connect("object_id_selected", callable_mp(this, &EditorPropertyArray::_object_id_selected));
prop->set_h_size_flags(SIZE_EXPAND_FILL); prop->set_h_size_flags(SIZE_EXPAND_FILL);
hbox->add_child(prop);
HBoxContainer *hb = memnew(HBoxContainer);
vbox->add_child(hb);
hb->add_child(prop);
bool is_untyped_array = array.get_type() == Variant::ARRAY && subtype == Variant::NIL; bool is_untyped_array = array.get_type() == Variant::ARRAY && subtype == Variant::NIL;
if (is_untyped_array) { if (is_untyped_array) {
Button *edit = memnew(Button); Button *edit = memnew(Button);
edit->set_icon(get_theme_icon("Edit", "EditorIcons")); edit->set_icon(get_theme_icon("Edit", "EditorIcons"));
hb->add_child(edit); hbox->add_child(edit);
edit->connect("pressed", callable_mp(this, &EditorPropertyArray::_change_type), varray(edit, i + offset)); edit->connect("pressed", callable_mp(this, &EditorPropertyArray::_change_type), varray(edit, i + offset));
} else { } else {
Button *remove = memnew(Button); Button *remove = memnew(Button);
remove->set_icon(get_theme_icon("Remove", "EditorIcons")); remove->set_icon(get_theme_icon("Remove", "EditorIcons"));
remove->connect("pressed", callable_mp(this, &EditorPropertyArray::_remove_pressed), varray(i + offset)); remove->connect("pressed", callable_mp(this, &EditorPropertyArray::_remove_pressed), varray(i + offset));
hb->add_child(remove); hbox->add_child(remove);
} }
prop->update_property(); prop->update_property();
} }
if (reorder_to_index % page_length > 0) {
vbox->move_child(vbox->get_child(2), reorder_to_index % page_length + 2);
}
updating = false; updating = false;
} else { } else {
@ -384,12 +415,7 @@ void EditorPropertyArray::_remove_pressed(int p_index) {
Variant array = object->get_array(); Variant array = object->get_array();
array.call("remove", p_index); array.call("remove", p_index);
if (array.get_type() == Variant::ARRAY) {
array = array.call("duplicate");
}
emit_changed(get_edited_property(), array, "", false); emit_changed(get_edited_property(), array, "", false);
object->set_array(array);
update_property(); update_property();
} }
@ -414,14 +440,14 @@ bool EditorPropertyArray::_is_drop_valid(const Dictionary &p_drag_data) const {
for (int j = 0; j < allowed_type.get_slice_count(","); j++) { for (int j = 0; j < allowed_type.get_slice_count(","); j++) {
String at = allowed_type.get_slice(",", j).strip_edges(); String at = allowed_type.get_slice(",", j).strip_edges();
// Fail if one of the files is not of allowed type // Fail if one of the files is not of allowed type.
if (!ClassDB::is_parent_class(ftype, at)) { if (!ClassDB::is_parent_class(ftype, at)) {
return false; return false;
} }
} }
} }
// If no files fail, drop is valid // If no files fail, drop is valid.
return true; return true;
} }
@ -442,13 +468,13 @@ void EditorPropertyArray::drop_data_fw(const Point2 &p_point, const Variant &p_d
Variant array = object->get_array(); Variant array = object->get_array();
// Handle the case where array is not initialised yet // Handle the case where array is not initialised yet.
if (!array.is_array()) { if (!array.is_array()) {
Callable::CallError ce; Callable::CallError ce;
Variant::construct(array_type, array, nullptr, 0, ce); Variant::construct(array_type, array, nullptr, 0, ce);
} }
// Loop the file array and add to existing array // Loop the file array and add to existing array.
for (int i = 0; i < files.size(); i++) { for (int i = 0; i < files.size(); i++) {
String file = files[i]; String file = files[i];
@ -504,7 +530,7 @@ void EditorPropertyArray::_page_changed(double p_page) {
if (updating) { if (updating) {
return; return;
} }
page_idx = p_page; page_index = p_page;
update_property(); update_property();
} }
@ -530,10 +556,10 @@ void EditorPropertyArray::_length_changed(double p_page) {
} }
} }
} }
array = array.call("duplicate"); //dupe, so undo/redo works better array = array.call("duplicate"); // Duplicate, so undo/redo works better.
} else { } else {
int size = array.call("size"); int size = array.call("size");
// Pool*Array don't initialize their elements, have to do it manually // Pool*Array don't initialize their elements, have to do it manually.
for (int i = previous_size; i < size; i++) { for (int i = previous_size; i < size; i++) {
Callable::CallError ce; Callable::CallError ce;
Variant r; Variant r;
@ -551,7 +577,7 @@ void EditorPropertyArray::setup(Variant::Type p_array_type, const String &p_hint
array_type = p_array_type; array_type = p_array_type;
// The format of p_hint_string is: // The format of p_hint_string is:
// subType/subTypeHint:nextSubtype ... etc // subType/subTypeHint:nextSubtype ... etc.
if (array_type == Variant::ARRAY && !p_hint_string.is_empty()) { if (array_type == Variant::ARRAY && !p_hint_string.is_empty()) {
int hint_subtype_separator = p_hint_string.find(":"); int hint_subtype_separator = p_hint_string.find(":");
if (hint_subtype_separator >= 0) { if (hint_subtype_separator >= 0) {
@ -568,6 +594,73 @@ void EditorPropertyArray::setup(Variant::Type p_array_type, const String &p_hint
} }
} }
void EditorPropertyArray::_reorder_button_gui_input(const Ref<InputEvent> &p_event) {
if (reorder_from_index < 0) {
return;
}
Ref<InputEventMouseMotion> mm = p_event;
if (mm.is_valid()) {
Variant array = object->get_array();
int size = array.call("size");
if ((reorder_to_index == 0 && mm->get_relative().y < 0.0f) || (reorder_to_index == size - 1 && mm->get_relative().y > 0.0f)) {
return;
}
reorder_mouse_y_delta += mm->get_relative().y;
float required_y_distance = 20.0f * EDSCALE;
if (ABS(reorder_mouse_y_delta) > required_y_distance) {
int direction = reorder_mouse_y_delta > 0.0f ? 1 : -1;
reorder_mouse_y_delta -= required_y_distance * direction;
reorder_to_index += direction;
if ((direction < 0 && reorder_to_index % page_length == page_length - 1) || (direction > 0 && reorder_to_index % page_length == 0)) {
// Automatically move to the next/previous page.
page_slider->set_value(page_index + direction);
}
vbox->move_child(reorder_selected_element_hbox, reorder_to_index % page_length + 2);
// Ensure the moving element is visible.
EditorNode::get_singleton()->get_inspector()->ensure_control_visible(reorder_selected_element_hbox);
}
}
}
void EditorPropertyArray::_reorder_button_down(int p_index) {
reorder_from_index = p_index;
reorder_to_index = p_index;
reorder_selected_element_hbox = Object::cast_to<HBoxContainer>(vbox->get_child(p_index % page_length + 2));
reorder_selected_button = Object::cast_to<Button>(reorder_selected_element_hbox->get_child(0));
// Ideally it'd to be able to show the mouse but I had issues with
// Control's `mouse_exit()`/`mouse_entered()` signals not getting called.
Input::get_singleton()->set_mouse_mode(Input::MOUSE_MODE_CAPTURED);
}
void EditorPropertyArray::_reorder_button_up() {
if (reorder_from_index != reorder_to_index) {
// Move the element.
Variant array = object->get_array();
Variant value_to_move = array.get(reorder_from_index);
array.call("remove", reorder_from_index);
array.call("insert", reorder_to_index, value_to_move);
emit_changed(get_edited_property(), array, "", false);
object->set_array(array);
update_property();
}
reorder_from_index = -1;
reorder_to_index = -1;
reorder_mouse_y_delta = 0.0f;
Input::get_singleton()->set_mouse_mode(Input::MOUSE_MODE_VISIBLE);
reorder_selected_button->warp_mouse(reorder_selected_button->get_size() / 2.0f);
reorder_selected_element_hbox = nullptr;
reorder_selected_button = nullptr;
}
void EditorPropertyArray::_bind_methods() { void EditorPropertyArray::_bind_methods() {
ClassDB::bind_method(D_METHOD("_can_drop_data_fw"), &EditorPropertyArray::can_drop_data_fw); ClassDB::bind_method(D_METHOD("_can_drop_data_fw"), &EditorPropertyArray::can_drop_data_fw);
ClassDB::bind_method(D_METHOD("_drop_data_fw"), &EditorPropertyArray::drop_data_fw); ClassDB::bind_method(D_METHOD("_drop_data_fw"), &EditorPropertyArray::drop_data_fw);
@ -575,7 +668,7 @@ void EditorPropertyArray::_bind_methods() {
EditorPropertyArray::EditorPropertyArray() { EditorPropertyArray::EditorPropertyArray() {
object.instantiate(); object.instantiate();
page_len = int(EDITOR_GET("interface/inspector/max_array_dictionary_items_per_page")); page_length = int(EDITOR_GET("interface/inspector/max_array_dictionary_items_per_page"));
edit = memnew(Button); edit = memnew(Button);
edit->set_h_size_flags(SIZE_EXPAND_FILL); edit->set_h_size_flags(SIZE_EXPAND_FILL);
edit->set_clip_text(true); edit->set_clip_text(true);
@ -586,8 +679,8 @@ EditorPropertyArray::EditorPropertyArray() {
add_child(edit); add_child(edit);
add_focusable(edit); add_focusable(edit);
vbox = nullptr; vbox = nullptr;
page = nullptr; page_slider = nullptr;
length = nullptr; size_slider = nullptr;
updating = false; updating = false;
change_type = memnew(PopupMenu); change_type = memnew(PopupMenu);
add_child(change_type); add_child(change_type);
@ -599,7 +692,7 @@ EditorPropertyArray::EditorPropertyArray() {
} }
change_type->add_separator(); change_type->add_separator();
change_type->add_item(TTR("Remove Item"), Variant::VARIANT_MAX); change_type->add_item(TTR("Remove Item"), Variant::VARIANT_MAX);
changing_type_idx = -1; changing_type_index = -1;
subtype = Variant::NIL; subtype = Variant::NIL;
subtype_hint = PROPERTY_HINT_NONE; subtype_hint = PROPERTY_HINT_NONE;
@ -616,14 +709,14 @@ void EditorPropertyDictionary::_property_changed(const String &p_property, Varia
} else if (p_property == "new_item_value") { } else if (p_property == "new_item_value") {
object->set_new_item_value(p_value); object->set_new_item_value(p_value);
} else if (p_property.begins_with("indices")) { } else if (p_property.begins_with("indices")) {
int idx = p_property.get_slice("/", 1).to_int(); int index = p_property.get_slice("/", 1).to_int();
Dictionary dict = object->get_dict(); Dictionary dict = object->get_dict();
Variant key = dict.get_key_at_index(idx); Variant key = dict.get_key_at_index(index);
dict[key] = p_value; dict[key] = p_value;
emit_changed(get_edited_property(), dict, "", true); emit_changed(get_edited_property(), dict, "", true);
dict = dict.duplicate(); //dupe, so undo/redo works better dict = dict.duplicate(); // Duplicate, so undo/redo works better\.
object->set_dict(dict); object->set_dict(dict);
} }
} }
@ -635,7 +728,7 @@ void EditorPropertyDictionary::_change_type(Object *p_button, int p_index) {
change_type->set_as_minsize(); change_type->set_as_minsize();
change_type->set_position(rect.position + rect.size - Vector2(change_type->get_contents_minimum_size().x, 0)); change_type->set_position(rect.position + rect.size - Vector2(change_type->get_contents_minimum_size().x, 0));
change_type->popup(); change_type->popup();
changing_type_idx = p_index; changing_type_index = p_index;
} }
void EditorPropertyDictionary::_add_key_value() { void EditorPropertyDictionary::_add_key_value() {
@ -652,17 +745,17 @@ void EditorPropertyDictionary::_add_key_value() {
emit_changed(get_edited_property(), dict, "", false); emit_changed(get_edited_property(), dict, "", false);
dict = dict.duplicate(); //dupe, so undo/redo works better dict = dict.duplicate(); // Duplicate, so undo/redo works better.
object->set_dict(dict); object->set_dict(dict);
update_property(); update_property();
} }
void EditorPropertyDictionary::_change_type_menu(int p_index) { void EditorPropertyDictionary::_change_type_menu(int p_index) {
if (changing_type_idx < 0) { if (changing_type_index < 0) {
Variant value; Variant value;
Callable::CallError ce; Callable::CallError ce;
Variant::construct(Variant::Type(p_index), value, nullptr, 0, ce); Variant::construct(Variant::Type(p_index), value, nullptr, 0, ce);
if (changing_type_idx == -1) { if (changing_type_index == -1) {
object->set_new_item_key(value); object->set_new_item_key(value);
} else { } else {
object->set_new_item_value(value); object->set_new_item_value(value);
@ -677,16 +770,16 @@ void EditorPropertyDictionary::_change_type_menu(int p_index) {
Variant value; Variant value;
Callable::CallError ce; Callable::CallError ce;
Variant::construct(Variant::Type(p_index), value, nullptr, 0, ce); Variant::construct(Variant::Type(p_index), value, nullptr, 0, ce);
Variant key = dict.get_key_at_index(changing_type_idx); Variant key = dict.get_key_at_index(changing_type_index);
dict[key] = value; dict[key] = value;
} else { } else {
Variant key = dict.get_key_at_index(changing_type_idx); Variant key = dict.get_key_at_index(changing_type_index);
dict.erase(key); dict.erase(key);
} }
emit_changed(get_edited_property(), dict, "", false); emit_changed(get_edited_property(), dict, "", false);
dict = dict.duplicate(); //dupe, so undo/redo works better dict = dict.duplicate(); // Duplicate, so undo/redo works better\.
object->set_dict(dict); object->set_dict(dict);
update_property(); update_property();
} }
@ -695,7 +788,7 @@ void EditorPropertyDictionary::update_property() {
Variant updated_val = get_edited_object()->get(get_edited_property()); Variant updated_val = get_edited_object()->get(get_edited_property());
if (updated_val.get_type() == Variant::NIL) { if (updated_val.get_type() == Variant::NIL) {
edit->set_text("Dictionary (Nil)"); //This provides symmetry with the array property. edit->set_text("Dictionary (Nil)"); // This provides symmetry with the array property.
edit->set_pressed(false); edit->set_pressed(false);
if (vbox) { if (vbox) {
set_bottom_editor(nullptr); set_bottom_editor(nullptr);
@ -722,16 +815,16 @@ void EditorPropertyDictionary::update_property() {
add_child(vbox); add_child(vbox);
set_bottom_editor(vbox); set_bottom_editor(vbox);
page_hb = memnew(HBoxContainer); page_hbox = memnew(HBoxContainer);
vbox->add_child(page_hb); vbox->add_child(page_hbox);
Label *label = memnew(Label(TTR("Page: "))); Label *label = memnew(Label(TTR("Page: ")));
label->set_h_size_flags(SIZE_EXPAND_FILL); label->set_h_size_flags(SIZE_EXPAND_FILL);
page_hb->add_child(label); page_hbox->add_child(label);
page = memnew(EditorSpinSlider); page_slider = memnew(EditorSpinSlider);
page->set_step(1); page_slider->set_step(1);
page_hb->add_child(page); page_hbox->add_child(page_slider);
page->set_h_size_flags(SIZE_EXPAND_FILL); page_slider->set_h_size_flags(SIZE_EXPAND_FILL);
page->connect("value_changed", callable_mp(this, &EditorPropertyDictionary::_page_changed)); page_slider->connect("value_changed", callable_mp(this, &EditorPropertyDictionary::_page_changed));
} else { } else {
// Queue children for deletion, deleting immediately might cause errors. // Queue children for deletion, deleting immediately might cause errors.
for (int i = 1; i < vbox->get_child_count(); i++) { for (int i = 1; i < vbox->get_child_count(); i++) {
@ -739,18 +832,18 @@ void EditorPropertyDictionary::update_property() {
} }
} }
int len = dict.size(); int size = dict.size();
int pages = MAX(0, len - 1) / page_len + 1; int pages = MAX(0, size - 1) / page_length + 1;
page->set_max(pages); page_slider->set_max(pages);
page_idx = MIN(page_idx, pages - 1); page_index = MIN(page_index, pages - 1);
page->set_value(page_idx); page_slider->set_value(page_index);
page_hb->set_visible(pages > 1); page_hbox->set_visible(pages > 1);
int offset = page_idx * page_len; int offset = page_index * page_length;
int amount = MIN(len - offset, page_len); int amount = MIN(size - offset, page_length);
dict = dict.duplicate(); dict = dict.duplicate();
@ -782,7 +875,7 @@ void EditorPropertyDictionary::update_property() {
} break; } break;
// atomic types // Atomic types.
case Variant::BOOL: { case Variant::BOOL: {
prop = memnew(EditorPropertyCheck); prop = memnew(EditorPropertyCheck);
@ -803,7 +896,7 @@ void EditorPropertyDictionary::update_property() {
} break; } break;
// math types // Math types.
case Variant::VECTOR2: { case Variant::VECTOR2: {
EditorPropertyVector2 *editor = memnew(EditorPropertyVector2); EditorPropertyVector2 *editor = memnew(EditorPropertyVector2);
editor->setup(-100000, 100000, 0.001, true); editor->setup(-100000, 100000, 0.001, true);
@ -877,7 +970,7 @@ void EditorPropertyDictionary::update_property() {
} break; } break;
// misc types // Miscellaneous types.
case Variant::COLOR: { case Variant::COLOR: {
prop = memnew(EditorPropertyColor); prop = memnew(EditorPropertyColor);
@ -919,7 +1012,7 @@ void EditorPropertyDictionary::update_property() {
prop = editor; prop = editor;
} break; } break;
// arrays // Arrays.
case Variant::PACKED_BYTE_ARRAY: { case Variant::PACKED_BYTE_ARRAY: {
EditorPropertyArray *editor = memnew(EditorPropertyArray); EditorPropertyArray *editor = memnew(EditorPropertyArray);
editor->setup(Variant::PACKED_BYTE_ARRAY); editor->setup(Variant::PACKED_BYTE_ARRAY);
@ -1003,17 +1096,17 @@ void EditorPropertyDictionary::update_property() {
prop->connect("property_changed", callable_mp(this, &EditorPropertyDictionary::_property_changed)); prop->connect("property_changed", callable_mp(this, &EditorPropertyDictionary::_property_changed));
prop->connect("object_id_selected", callable_mp(this, &EditorPropertyDictionary::_object_id_selected)); prop->connect("object_id_selected", callable_mp(this, &EditorPropertyDictionary::_object_id_selected));
HBoxContainer *hb = memnew(HBoxContainer); HBoxContainer *hbox = memnew(HBoxContainer);
if (add_vbox) { if (add_vbox) {
add_vbox->add_child(hb); add_vbox->add_child(hbox);
} else { } else {
vbox->add_child(hb); vbox->add_child(hbox);
} }
hb->add_child(prop); hbox->add_child(prop);
prop->set_h_size_flags(SIZE_EXPAND_FILL); prop->set_h_size_flags(SIZE_EXPAND_FILL);
Button *edit = memnew(Button); Button *edit = memnew(Button);
edit->set_icon(get_theme_icon("Edit", "EditorIcons")); edit->set_icon(get_theme_icon("Edit", "EditorIcons"));
hb->add_child(edit); hbox->add_child(edit);
edit->connect("pressed", callable_mp(this, &EditorPropertyDictionary::_change_type), varray(edit, change_index)); edit->connect("pressed", callable_mp(this, &EditorPropertyDictionary::_change_type), varray(edit, change_index));
prop->update_property(); prop->update_property();
@ -1060,7 +1153,7 @@ void EditorPropertyDictionary::_page_changed(double p_page) {
if (updating) { if (updating) {
return; return;
} }
page_idx = p_page; page_index = p_page;
update_property(); update_property();
} }
@ -1069,7 +1162,7 @@ void EditorPropertyDictionary::_bind_methods() {
EditorPropertyDictionary::EditorPropertyDictionary() { EditorPropertyDictionary::EditorPropertyDictionary() {
object.instantiate(); object.instantiate();
page_len = int(EDITOR_GET("interface/inspector/max_array_dictionary_items_per_page")); page_length = int(EDITOR_GET("interface/inspector/max_array_dictionary_items_per_page"));
edit = memnew(Button); edit = memnew(Button);
edit->set_h_size_flags(SIZE_EXPAND_FILL); edit->set_h_size_flags(SIZE_EXPAND_FILL);
edit->set_clip_text(true); edit->set_clip_text(true);
@ -1078,7 +1171,7 @@ EditorPropertyDictionary::EditorPropertyDictionary() {
add_child(edit); add_child(edit);
add_focusable(edit); add_focusable(edit);
vbox = nullptr; vbox = nullptr;
page = nullptr; page_slider = nullptr;
updating = false; updating = false;
change_type = memnew(PopupMenu); change_type = memnew(PopupMenu);
add_child(change_type); add_child(change_type);
@ -1090,5 +1183,5 @@ EditorPropertyDictionary::EditorPropertyDictionary() {
} }
change_type->add_separator(); change_type->add_separator();
change_type->add_item(TTR("Remove Item"), Variant::VARIANT_MAX); change_type->add_item(TTR("Remove Item"), Variant::VARIANT_MAX);
changing_type_idx = -1; changing_type_index = -1;
} }

View file

@ -84,19 +84,25 @@ class EditorPropertyArray : public EditorProperty {
bool dropping; bool dropping;
Ref<EditorPropertyArrayObject> object; Ref<EditorPropertyArrayObject> object;
int page_len = 20; int page_length = 20;
int page_idx = 0; int page_index = 0;
int changing_type_idx; int changing_type_index;
Button *edit; Button *edit;
VBoxContainer *vbox; VBoxContainer *vbox;
EditorSpinSlider *length; EditorSpinSlider *size_slider;
EditorSpinSlider *page; EditorSpinSlider *page_slider;
HBoxContainer *page_hb; HBoxContainer *page_hbox;
Variant::Type array_type; Variant::Type array_type;
Variant::Type subtype; Variant::Type subtype;
PropertyHint subtype_hint; PropertyHint subtype_hint;
String subtype_hint_string; String subtype_hint_string;
int reorder_from_index = -1;
int reorder_to_index = -1;
float reorder_mouse_y_delta = 0.0f;
HBoxContainer *reorder_selected_element_hbox = nullptr;
Button *reorder_selected_button = nullptr;
void _page_changed(double p_page); void _page_changed(double p_page);
void _length_changed(double p_page); void _length_changed(double p_page);
void _edit_pressed(); void _edit_pressed();
@ -112,6 +118,10 @@ class EditorPropertyArray : public EditorProperty {
bool can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const; bool can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const;
void drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from); void drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from);
void _reorder_button_gui_input(const Ref<InputEvent> &p_event);
void _reorder_button_down(int p_index);
void _reorder_button_up();
protected: protected:
static void _bind_methods(); static void _bind_methods();
void _notification(int p_what); void _notification(int p_what);
@ -129,14 +139,14 @@ class EditorPropertyDictionary : public EditorProperty {
bool updating; bool updating;
Ref<EditorPropertyDictionaryObject> object; Ref<EditorPropertyDictionaryObject> object;
int page_len = 20; int page_length = 20;
int page_idx = 0; int page_index = 0;
int changing_type_idx; int changing_type_index;
Button *edit; Button *edit;
VBoxContainer *vbox; VBoxContainer *vbox;
EditorSpinSlider *length; EditorSpinSlider *size_slider;
EditorSpinSlider *page; EditorSpinSlider *page_slider;
HBoxContainer *page_hb; HBoxContainer *page_hbox;
void _page_changed(double p_page); void _page_changed(double p_page);
void _edit_pressed(); void _edit_pressed();

View file

@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m1.9375 4h12.062zm0 4h12.062zm0 4h12.062z" fill="none" stroke="#e0e0e0" stroke-opacity=".99608" stroke-width=".92823"/></svg>

After

Width:  |  Height:  |  Size: 218 B