Merge pull request #97392 from BastiaanOlij/xr_cleanup_action_map_dialogs
Cleanup of action map dialogs
This commit is contained in:
commit
5d5cdc02c5
|
@ -66,7 +66,7 @@ void OpenXRSelectActionDialog::_on_select_action(const String p_action) {
|
||||||
void OpenXRSelectActionDialog::open() {
|
void OpenXRSelectActionDialog::open() {
|
||||||
ERR_FAIL_COND(action_map.is_null());
|
ERR_FAIL_COND(action_map.is_null());
|
||||||
|
|
||||||
// out with the old...
|
// Out with the old.
|
||||||
while (main_vb->get_child_count() > 0) {
|
while (main_vb->get_child_count() > 0) {
|
||||||
memdelete(main_vb->get_child(0));
|
memdelete(main_vb->get_child(0));
|
||||||
}
|
}
|
||||||
|
@ -74,6 +74,7 @@ void OpenXRSelectActionDialog::open() {
|
||||||
selected_action = "";
|
selected_action = "";
|
||||||
action_buttons.clear();
|
action_buttons.clear();
|
||||||
|
|
||||||
|
// In with the new.
|
||||||
Array action_sets = action_map->get_action_sets();
|
Array action_sets = action_map->get_action_sets();
|
||||||
for (int i = 0; i < action_sets.size(); i++) {
|
for (int i = 0; i < action_sets.size(); i++) {
|
||||||
Ref<OpenXRActionSet> action_set = action_sets[i];
|
Ref<OpenXRActionSet> action_set = action_sets[i];
|
||||||
|
|
|
@ -66,15 +66,15 @@ void OpenXRSelectInteractionProfileDialog::_on_select_interaction_profile(const
|
||||||
void OpenXRSelectInteractionProfileDialog::open(PackedStringArray p_do_not_include) {
|
void OpenXRSelectInteractionProfileDialog::open(PackedStringArray p_do_not_include) {
|
||||||
int available_count = 0;
|
int available_count = 0;
|
||||||
|
|
||||||
// out with the old...
|
// Out with the old.
|
||||||
while (main_vb->get_child_count() > 0) {
|
while (main_vb->get_child_count() > 1) {
|
||||||
memdelete(main_vb->get_child(0));
|
memdelete(main_vb->get_child(1));
|
||||||
}
|
}
|
||||||
|
|
||||||
selected_interaction_profile = "";
|
selected_interaction_profile = "";
|
||||||
ip_buttons.clear();
|
ip_buttons.clear();
|
||||||
|
|
||||||
// in with the new
|
// In with the new.
|
||||||
PackedStringArray interaction_profiles = OpenXRInteractionProfileMetadata::get_singleton()->get_interaction_profile_paths();
|
PackedStringArray interaction_profiles = OpenXRInteractionProfileMetadata::get_singleton()->get_interaction_profile_paths();
|
||||||
for (int i = 0; i < interaction_profiles.size(); i++) {
|
for (int i = 0; i < interaction_profiles.size(); i++) {
|
||||||
const String &path = interaction_profiles[i];
|
const String &path = interaction_profiles[i];
|
||||||
|
@ -82,6 +82,7 @@ void OpenXRSelectInteractionProfileDialog::open(PackedStringArray p_do_not_inclu
|
||||||
Button *ip_button = memnew(Button);
|
Button *ip_button = memnew(Button);
|
||||||
ip_button->set_flat(true);
|
ip_button->set_flat(true);
|
||||||
ip_button->set_text(OpenXRInteractionProfileMetadata::get_singleton()->get_profile(path)->display_name);
|
ip_button->set_text(OpenXRInteractionProfileMetadata::get_singleton()->get_profile(path)->display_name);
|
||||||
|
ip_button->set_text_alignment(HORIZONTAL_ALIGNMENT_LEFT);
|
||||||
ip_button->connect(SceneStringName(pressed), callable_mp(this, &OpenXRSelectInteractionProfileDialog::_on_select_interaction_profile).bind(path));
|
ip_button->connect(SceneStringName(pressed), callable_mp(this, &OpenXRSelectInteractionProfileDialog::_on_select_interaction_profile).bind(path));
|
||||||
main_vb->add_child(ip_button);
|
main_vb->add_child(ip_button);
|
||||||
|
|
||||||
|
@ -90,23 +91,16 @@ void OpenXRSelectInteractionProfileDialog::open(PackedStringArray p_do_not_inclu
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (available_count == 0) {
|
all_selected->set_visible(available_count == 0);
|
||||||
// give warning that we have all profiles selected
|
get_cancel_button()->set_visible(available_count > 0);
|
||||||
|
popup_centered();
|
||||||
} else {
|
|
||||||
// TODO maybe if we only have one, auto select it?
|
|
||||||
|
|
||||||
popup_centered();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void OpenXRSelectInteractionProfileDialog::ok_pressed() {
|
void OpenXRSelectInteractionProfileDialog::ok_pressed() {
|
||||||
if (selected_interaction_profile == "") {
|
if (selected_interaction_profile != "") {
|
||||||
return;
|
emit_signal("interaction_profile_selected", selected_interaction_profile);
|
||||||
}
|
}
|
||||||
|
|
||||||
emit_signal("interaction_profile_selected", selected_interaction_profile);
|
|
||||||
|
|
||||||
hide();
|
hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -118,6 +112,10 @@ OpenXRSelectInteractionProfileDialog::OpenXRSelectInteractionProfileDialog() {
|
||||||
add_child(scroll);
|
add_child(scroll);
|
||||||
|
|
||||||
main_vb = memnew(VBoxContainer);
|
main_vb = memnew(VBoxContainer);
|
||||||
// main_vb->set_h_size_flags(Control::SIZE_EXPAND_FILL);
|
main_vb->set_h_size_flags(Control::SIZE_EXPAND_FILL);
|
||||||
scroll->add_child(main_vb);
|
scroll->add_child(main_vb);
|
||||||
|
|
||||||
|
all_selected = memnew(Label);
|
||||||
|
all_selected->set_text(TTR("All interaction profiles have been added to the action map."));
|
||||||
|
main_vb->add_child(all_selected);
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,6 +51,7 @@ private:
|
||||||
|
|
||||||
VBoxContainer *main_vb = nullptr;
|
VBoxContainer *main_vb = nullptr;
|
||||||
ScrollContainer *scroll = nullptr;
|
ScrollContainer *scroll = nullptr;
|
||||||
|
Label *all_selected = nullptr;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
static void _bind_methods();
|
static void _bind_methods();
|
||||||
|
|
Loading…
Reference in New Issue