VS: Better ux
* In VS functions' put the current node type first. * Cleanup and merge property and method sections.
This commit is contained in:
parent
a9c6c98a67
commit
4e6420b5a8
1 changed files with 141 additions and 197 deletions
|
@ -87,38 +87,17 @@ void VisualScriptPropertySelector::_update_search() {
|
||||||
|
|
||||||
TreeItem *root = search_options->create_item();
|
TreeItem *root = search_options->create_item();
|
||||||
bool found = false;
|
bool found = false;
|
||||||
|
|
||||||
if (properties) {
|
|
||||||
|
|
||||||
List<PropertyInfo> props;
|
|
||||||
|
|
||||||
if (instance) {
|
|
||||||
instance->get_property_list(&props, true);
|
|
||||||
} else if (type != Variant::NIL) {
|
|
||||||
Variant v;
|
|
||||||
Variant::CallError ce;
|
|
||||||
v = Variant::construct(type, NULL, 0, ce);
|
|
||||||
|
|
||||||
v.get_property_list(&props);
|
|
||||||
} else {
|
|
||||||
|
|
||||||
Object *obj = ObjectDB::get_instance(script);
|
|
||||||
if (Object::cast_to<Script>(obj)) {
|
|
||||||
|
|
||||||
props.push_back(PropertyInfo(Variant::NIL, "Script Variables", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_CATEGORY));
|
|
||||||
Object::cast_to<Script>(obj)->get_script_property_list(&props);
|
|
||||||
}
|
|
||||||
|
|
||||||
StringName base = base_type;
|
StringName base = base_type;
|
||||||
|
List<StringName> base_list;
|
||||||
while (base) {
|
while (base) {
|
||||||
props.push_back(PropertyInfo(Variant::NIL, base, PROPERTY_HINT_NONE, "", PROPERTY_USAGE_CATEGORY));
|
base_list.push_back(base);
|
||||||
ClassDB::get_property_list(base, &props, true);
|
|
||||||
base = ClassDB::get_parent_class_nocheck(base);
|
base = ClassDB::get_parent_class_nocheck(base);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
for (List<StringName>::Element *E = base_list.front(); E; E = E->next()) {
|
||||||
|
List<MethodInfo> methods;
|
||||||
|
List<PropertyInfo> props;
|
||||||
TreeItem *category = NULL;
|
TreeItem *category = NULL;
|
||||||
|
|
||||||
Ref<Texture> type_icons[Variant::VARIANT_MAX] = {
|
Ref<Texture> type_icons[Variant::VARIANT_MAX] = {
|
||||||
Control::get_icon("Variant", "EditorIcons"),
|
Control::get_icon("Variant", "EditorIcons"),
|
||||||
Control::get_icon("bool", "EditorIcons"),
|
Control::get_icon("bool", "EditorIcons"),
|
||||||
|
@ -148,44 +127,46 @@ void VisualScriptPropertySelector::_update_search() {
|
||||||
Control::get_icon("PoolVector3Array", "EditorIcons"),
|
Control::get_icon("PoolVector3Array", "EditorIcons"),
|
||||||
Control::get_icon("PoolColorArray", "EditorIcons")
|
Control::get_icon("PoolColorArray", "EditorIcons")
|
||||||
};
|
};
|
||||||
|
{
|
||||||
for (List<PropertyInfo>::Element *E = props.front(); E; E = E->next()) {
|
String b = String(E->get());
|
||||||
if (E->get().usage == PROPERTY_USAGE_CATEGORY) {
|
|
||||||
if (category && category->get_children() == NULL) {
|
|
||||||
memdelete(category); //old category was unused
|
|
||||||
}
|
|
||||||
category = search_options->create_item(root);
|
category = search_options->create_item(root);
|
||||||
category->set_text(0, E->get().name);
|
category->set_text(0, b.replace_first("*", ""));
|
||||||
category->set_selectable(0, false);
|
category->set_selectable(0, false);
|
||||||
|
|
||||||
Ref<Texture> icon;
|
Ref<Texture> icon;
|
||||||
if (E->get().name == "Script Variables") {
|
String rep = b.replace("*", "");
|
||||||
icon = get_icon("Script", "EditorIcons");
|
icon = EditorNode::get_singleton()->get_class_icon(rep);
|
||||||
} else {
|
|
||||||
icon = EditorNode::get_singleton()->get_class_icon(E->get().name);
|
|
||||||
}
|
|
||||||
category->set_icon(0, icon);
|
category->set_icon(0, icon);
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
if (properties || seq_connect) {
|
||||||
if (!(E->get().usage & PROPERTY_USAGE_EDITOR) && !(E->get().usage & PROPERTY_USAGE_SCRIPT_VARIABLE))
|
if (instance) {
|
||||||
|
instance->get_property_list(&props, true);
|
||||||
|
} else {
|
||||||
|
Object *obj = ObjectDB::get_instance(script);
|
||||||
|
if (Object::cast_to<Script>(obj)) {
|
||||||
|
Object::cast_to<Script>(obj)->get_script_property_list(&props);
|
||||||
|
} else {
|
||||||
|
ClassDB::get_property_list(E->get(), &props, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (List<PropertyInfo>::Element *F = props.front(); F; F = F->next()) {
|
||||||
|
if (!(F->get().usage & PROPERTY_USAGE_EDITOR) && !(F->get().usage & PROPERTY_USAGE_SCRIPT_VARIABLE))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (type_filter.size() && type_filter.find(E->get().type) == -1)
|
if (type_filter.size() && type_filter.find(F->get().type) == -1)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// capitalize() also converts underscore to space, we'll match again both possible styles
|
// capitalize() also converts underscore to space, we'll match again both possible styles
|
||||||
String get_text_raw = String(vformat(TTR("Get %s"), E->get().name));
|
String get_text_raw = String(vformat(TTR("Get %s"), F->get().name));
|
||||||
String get_text = get_text_raw.capitalize();
|
String get_text = get_text_raw.capitalize();
|
||||||
String set_text_raw = String(vformat(TTR("Set %s"), E->get().name));
|
String set_text_raw = String(vformat(TTR("Set %s"), F->get().name));
|
||||||
String set_text = set_text_raw.capitalize();
|
String set_text = set_text_raw.capitalize();
|
||||||
String input = search_box->get_text().capitalize();
|
String input = search_box->get_text().capitalize();
|
||||||
|
|
||||||
if (input == String() || get_text_raw.findn(input) != -1 || get_text.findn(input) != -1) {
|
if (input == String() || get_text_raw.findn(input) != -1 || get_text.findn(input) != -1) {
|
||||||
TreeItem *item = search_options->create_item(category ? category : root);
|
TreeItem *item = search_options->create_item(category ? category : root);
|
||||||
item->set_text(0, get_text);
|
item->set_text(0, get_text);
|
||||||
item->set_metadata(0, E->get().name);
|
item->set_metadata(0, F->get().name);
|
||||||
item->set_icon(0, type_icons[E->get().type]);
|
item->set_icon(0, type_icons[F->get().type]);
|
||||||
item->set_metadata(1, "get");
|
item->set_metadata(1, "get");
|
||||||
item->set_collapsed(1);
|
item->set_collapsed(1);
|
||||||
item->set_selectable(0, true);
|
item->set_selectable(0, true);
|
||||||
|
@ -197,8 +178,8 @@ void VisualScriptPropertySelector::_update_search() {
|
||||||
if (input == String() || set_text_raw.findn(input) != -1 || set_text.findn(input) != -1) {
|
if (input == String() || set_text_raw.findn(input) != -1 || set_text.findn(input) != -1) {
|
||||||
TreeItem *item = search_options->create_item(category ? category : root);
|
TreeItem *item = search_options->create_item(category ? category : root);
|
||||||
item->set_text(0, set_text);
|
item->set_text(0, set_text);
|
||||||
item->set_metadata(0, E->get().name);
|
item->set_metadata(0, F->get().name);
|
||||||
item->set_icon(0, type_icons[E->get().type]);
|
item->set_icon(0, type_icons[F->get().type]);
|
||||||
item->set_metadata(1, "set");
|
item->set_metadata(1, "set");
|
||||||
item->set_selectable(0, true);
|
item->set_selectable(0, true);
|
||||||
item->set_selectable(1, false);
|
item->set_selectable(1, false);
|
||||||
|
@ -206,15 +187,9 @@ void VisualScriptPropertySelector::_update_search() {
|
||||||
item->set_metadata(2, connecting);
|
item->set_metadata(2, connecting);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (category && category->get_children() == NULL) {
|
|
||||||
memdelete(category); //old category was unused
|
|
||||||
}
|
}
|
||||||
}
|
bool script_methods = false;
|
||||||
|
{
|
||||||
|
|
||||||
List<MethodInfo> methods;
|
|
||||||
|
|
||||||
if (type != Variant::NIL) {
|
if (type != Variant::NIL) {
|
||||||
Variant v;
|
Variant v;
|
||||||
Variant::CallError ce;
|
Variant::CallError ce;
|
||||||
|
@ -224,55 +199,28 @@ void VisualScriptPropertySelector::_update_search() {
|
||||||
|
|
||||||
Object *obj = ObjectDB::get_instance(script);
|
Object *obj = ObjectDB::get_instance(script);
|
||||||
if (Object::cast_to<Script>(obj)) {
|
if (Object::cast_to<Script>(obj)) {
|
||||||
|
|
||||||
methods.push_back(MethodInfo("*Script Methods"));
|
methods.push_back(MethodInfo("*Script Methods"));
|
||||||
Object::cast_to<Script>(obj)->get_script_method_list(&methods);
|
Object::cast_to<Script>(obj)->get_script_method_list(&methods);
|
||||||
}
|
|
||||||
|
|
||||||
StringName base = base_type;
|
|
||||||
while (base) {
|
|
||||||
methods.push_back(MethodInfo("*" + String(base)));
|
|
||||||
ClassDB::get_method_list(base, &methods, true, true);
|
|
||||||
base = ClassDB::get_parent_class_nocheck(base);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
TreeItem *category = NULL;
|
|
||||||
bool script_methods = false;
|
|
||||||
|
|
||||||
for (List<MethodInfo>::Element *E = methods.front(); E; E = E->next()) {
|
|
||||||
if (E->get().name.begins_with("*")) {
|
|
||||||
if (category && category->get_children() == NULL) {
|
|
||||||
memdelete(category); //old category was unused
|
|
||||||
}
|
|
||||||
category = search_options->create_item(root);
|
|
||||||
category->set_text(0, E->get().name.replace_first("*", ""));
|
|
||||||
category->set_selectable(0, false);
|
|
||||||
|
|
||||||
Ref<Texture> icon;
|
|
||||||
script_methods = false;
|
|
||||||
String rep = E->get().name.replace("*", "");
|
|
||||||
if (E->get().name == "*Script Methods") {
|
|
||||||
icon = get_icon("Script", "EditorIcons");
|
|
||||||
script_methods = true;
|
|
||||||
} else {
|
} else {
|
||||||
icon = EditorNode::get_singleton()->get_class_icon(rep);
|
methods.push_back(MethodInfo("*" + String(E->get())));
|
||||||
|
ClassDB::get_method_list(E->get(), &methods, true, true);
|
||||||
}
|
}
|
||||||
category->set_icon(0, icon);
|
|
||||||
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
for (List<MethodInfo>::Element *M = methods.front(); M; M = M->next()) {
|
||||||
|
|
||||||
String name = E->get().name.get_slice(":", 0);
|
String name = M->get().name.get_slice(":", 0);
|
||||||
if (!script_methods && name.begins_with("_") && !(E->get().flags & METHOD_FLAG_VIRTUAL))
|
if (!script_methods && name.begins_with("_") && !(M->get().flags & METHOD_FLAG_VIRTUAL))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (virtuals_only && !(E->get().flags & METHOD_FLAG_VIRTUAL))
|
if (virtuals_only && !(M->get().flags & METHOD_FLAG_VIRTUAL))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (!virtuals_only && (E->get().flags & METHOD_FLAG_VIRTUAL))
|
if (!virtuals_only && (M->get().flags & METHOD_FLAG_VIRTUAL))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
MethodInfo mi = E->get();
|
MethodInfo mi = M->get();
|
||||||
String desc_arguments;
|
String desc_arguments;
|
||||||
if (mi.arguments.size() > 0) {
|
if (mi.arguments.size() > 0) {
|
||||||
desc_arguments = "(";
|
desc_arguments = "(";
|
||||||
|
@ -314,12 +262,12 @@ void VisualScriptPropertySelector::_update_search() {
|
||||||
|
|
||||||
item->set_selectable(2, false);
|
item->set_selectable(2, false);
|
||||||
item->set_metadata(2, connecting);
|
item->set_metadata(2, connecting);
|
||||||
|
}
|
||||||
|
|
||||||
if (category && category->get_children() == NULL) {
|
if (category && category->get_children() == NULL) {
|
||||||
memdelete(category); //old category was unused
|
memdelete(category); //old category was unused
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (properties) {
|
if (properties) {
|
||||||
if (!seq_connect && !visual_script_generic) {
|
if (!seq_connect && !visual_script_generic) {
|
||||||
get_visual_node_names("flow_control/type_cast", Set<String>(), found, root, search_box);
|
get_visual_node_names("flow_control/type_cast", Set<String>(), found, root, search_box);
|
||||||
|
@ -350,7 +298,7 @@ void VisualScriptPropertySelector::_update_search() {
|
||||||
get_visual_node_names("functions/built_in/print", Set<String>(), found, root, search_box);
|
get_visual_node_names("functions/built_in/print", Set<String>(), found, root, search_box);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (visual_script_generic) {
|
if ((properties || seq_connect) && visual_script_generic) {
|
||||||
get_visual_node_names("", Set<String>(), found, root, search_box);
|
get_visual_node_names("", Set<String>(), found, root, search_box);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -360,10 +308,6 @@ void VisualScriptPropertySelector::_update_search() {
|
||||||
found = true;
|
found = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (category && category->get_children() == NULL) {
|
|
||||||
memdelete(category); //old category was unused
|
|
||||||
}
|
|
||||||
|
|
||||||
get_ok()->set_disabled(root->get_children() == NULL);
|
get_ok()->set_disabled(root->get_children() == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -491,23 +435,23 @@ void VisualScriptPropertySelector::_item_selected() {
|
||||||
|
|
||||||
while (at_class != String()) {
|
while (at_class != String()) {
|
||||||
|
|
||||||
Map<String, DocData::ClassDoc>::Element *E = dd->class_list.find(at_class);
|
Map<String, DocData::ClassDoc>::Element *C = dd->class_list.find(at_class);
|
||||||
if (E) {
|
if (C) {
|
||||||
for (int i = 0; i < E->get().methods.size(); i++) {
|
for (int i = 0; i < C->get().methods.size(); i++) {
|
||||||
if (E->get().methods[i].name == name) {
|
if (C->get().methods[i].name == name) {
|
||||||
text = E->get().methods[i].description;
|
text = C->get().methods[i].description;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
at_class = ClassDB::get_parent_class_nocheck(at_class);
|
at_class = ClassDB::get_parent_class_nocheck(at_class);
|
||||||
}
|
}
|
||||||
Map<String, DocData::ClassDoc>::Element *E = dd->class_list.find(class_type);
|
Map<String, DocData::ClassDoc>::Element *T = dd->class_list.find(class_type);
|
||||||
if (E) {
|
if (T) {
|
||||||
for (int i = 0; i < E->get().methods.size(); i++) {
|
for (int i = 0; i < T->get().methods.size(); i++) {
|
||||||
Vector<String> functions = name.rsplit("/", false, 1);
|
Vector<String> functions = name.rsplit("/", false, 1);
|
||||||
if (E->get().methods[i].name == functions[functions.size() - 1]) {
|
if (T->get().methods[i].name == functions[functions.size() - 1]) {
|
||||||
text = E->get().methods[i].description;
|
text = T->get().methods[i].description;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue