1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-23 21:07:17 +00:00

mode search and switchable include unused modes

This commit is contained in:
Zeno Rogue 2024-06-02 17:15:10 +02:00
parent 7cfda649be
commit d4cb90fe1c

View File

@ -1478,6 +1478,10 @@ void push_mode_screen_for(modecode_t mf) {
pushScreen(mode_screen_for_current); pushScreen(mode_screen_for_current);
} }
EX bool include_unused_modes;
EX string mode_to_search;
EX void list_saved_custom_modes() { EX void list_saved_custom_modes() {
dialog::start_list(2000, 2000, 'a'); dialog::start_list(2000, 2000, 'a');
@ -1486,6 +1490,8 @@ EX void list_saved_custom_modes() {
auto current_mc = modecode(); auto current_mc = modecode();
int unidentified = 0; int unidentified = 0;
int unused = 0;
int allmodes = 0;
for(auto m: meaning) { for(auto m: meaning) {
auto mf = m.first; auto mf = m.first;
@ -1496,20 +1502,30 @@ EX void list_saved_custom_modes() {
if(tactic::recordsum.count(m.first)) { if(tactic::recordsum.count(m.first)) {
out += XLAT(" tactic: %1", its(tactic::compute_tscore(mf))); out += XLAT(" tactic: %1", its(tactic::compute_tscore(mf)));
} }
if(out == "") out = XLAT(" NONE"); if(out == "") { unused++; if(!include_unused_modes) continue; }
out = out.substr(1); else out = out.substr(1);
if(mf == current_mc) mode_description_of[mf] = mode_description1(); if(mf == current_mc) mode_description_of[mf] = mode_description1();
string what; string what;
if(mode_description_of.count(mf)) what = mode_description_of[mf]; if(mode_description_of.count(mf)) what = mode_description_of[mf];
else what = "(mode " + its(mf) + ")", unidentified++; else what = "(mode " + its(mf) + ")", unidentified++;
if(what.find(mode_to_search) == string::npos) continue;
if(mf == current_mc) out += XLAT(" (ON)"); if(mf == current_mc) out += XLAT(" (ON)");
dialog::addSelItem(what, out, dialog::list_fake_key++); dialog::addSelItem(what, out, dialog::list_fake_key++);
dialog::add_action_confirmed([mf] { push_mode_screen_for(mf); }); dialog::add_action_confirmed([mf] { push_mode_screen_for(mf); });
allmodes++;
} }
dialog::end_list(); dialog::end_list();
dialog::addBreak(50); dialog::addBreak(50);
if(unused)
dialog::addBoolItem_action(XLAT("unused modes: %1", its(unused)), include_unused_modes, 'U');
if(allmodes >= 10) {
dialog::addSelItem(XLAT("search for mode"), mode_to_search, 'M');
dialog::add_action([] { dialog::edit_string(mode_to_search, XLAT("search for mode"), ""); });
}
if(unidentified) { if(unidentified) {
dialog::addSelItem(XLAT("unidentified modes"), its(unidentified), 'I'); dialog::addSelItem(XLAT("unidentified modes"), its(unidentified), 'I');
dialog::add_action_confirmed([] { dialog::add_action_confirmed([] {