mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-01-11 22:18:04 -05:00
Rando menu tweaks
This commit is contained in:
parent
d2fe83edf4
commit
7de2c584b4
@ -2001,22 +2001,22 @@ namespace SohImGui {
|
|||||||
|
|
||||||
if (ImGui::BeginMenu("Rando Enhancements"))
|
if (ImGui::BeginMenu("Rando Enhancements"))
|
||||||
{
|
{
|
||||||
EnhancementCheckbox("Quest Item Fanfares", "gRandoQuestItemFanfares");
|
EnhancementCheckbox("Rando-Relevant Navi Hints", "gRandoRelevantNavi");
|
||||||
Tooltip(
|
Tooltip(
|
||||||
"Play unique fanfares when obtaining quest items "
|
"Replace Navi's overworld quest hints with rando-related gameplay hints."
|
||||||
"(medallions/stones/songs). Note that these fanfares are longer than usual."
|
|
||||||
);
|
);
|
||||||
PaddedEnhancementCheckbox("Random Rupee Names", "gRandomizeRupeeNames", true, false);
|
PaddedEnhancementCheckbox("Random Rupee Names", "gRandomizeRupeeNames", true, false);
|
||||||
Tooltip(
|
Tooltip(
|
||||||
"When obtaining rupees, randomize what the rupee is called in the textbox."
|
"When obtaining rupees, randomize what the rupee is called in the textbox."
|
||||||
);
|
);
|
||||||
PaddedEnhancementCheckbox("Rando-Relevant Navi Hints", "gRandoRelevantNavi", true, false);
|
|
||||||
Tooltip(
|
|
||||||
"Replace Navi's overworld quest hints with rando-related gameplay hints."
|
|
||||||
);
|
|
||||||
PaddedEnhancementCheckbox("Key Colors Match Dungeon", "gRandoMatchKeyColors", true, false);
|
PaddedEnhancementCheckbox("Key Colors Match Dungeon", "gRandoMatchKeyColors", true, false);
|
||||||
Tooltip(
|
Tooltip(
|
||||||
"Matches the color of small keys and boss keys to the dungeon they belong to. This helps identify keys from afar and adds a little bit of flair.");
|
"Matches the color of small keys and boss keys to the dungeon they belong to. This helps identify keys from afar and adds a little bit of flair.");
|
||||||
|
PaddedEnhancementCheckbox("Quest Item Fanfares", "gRandoQuestItemFanfares", true, false);
|
||||||
|
Tooltip(
|
||||||
|
"Play unique fanfares when obtaining quest items "
|
||||||
|
"(medallions/stones/songs). Note that these fanfares are longer than usual."
|
||||||
|
);
|
||||||
ImGui::EndMenu();
|
ImGui::EndMenu();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3327,8 +3327,8 @@ void DrawRandoEditor(bool& open) {
|
|||||||
ImGui::PushStyleVar(ImGuiStyleVar_CellPadding, cellPadding);
|
ImGui::PushStyleVar(ImGuiStyleVar_CellPadding, cellPadding);
|
||||||
if (ImGui::BeginTable("tableRandoOther", 3, ImGuiTableFlags_BordersH | ImGuiTableFlags_BordersV)) {
|
if (ImGui::BeginTable("tableRandoOther", 3, ImGuiTableFlags_BordersH | ImGuiTableFlags_BordersV)) {
|
||||||
ImGui::TableSetupColumn("Timesavers", ImGuiTableColumnFlags_WidthStretch, 200.0f);
|
ImGui::TableSetupColumn("Timesavers", ImGuiTableColumnFlags_WidthStretch, 200.0f);
|
||||||
ImGui::TableSetupColumn("Hint Settings", ImGuiTableColumnFlags_WidthStretch, 200.0f);
|
ImGui::TableSetupColumn("World Settings", ImGuiTableColumnFlags_WidthStretch, 200.0f);
|
||||||
ImGui::TableSetupColumn("Item Pool Settings", ImGuiTableColumnFlags_WidthStretch, 200.0f);
|
ImGui::TableSetupColumn("Hint & Item Pool Settings", ImGuiTableColumnFlags_WidthStretch, 200.0f);
|
||||||
ImGui::PushItemFlag(ImGuiItemFlags_Disabled, true);
|
ImGui::PushItemFlag(ImGuiItemFlags_Disabled, true);
|
||||||
ImGui::TableHeadersRow();
|
ImGui::TableHeadersRow();
|
||||||
ImGui::PopItemFlag();
|
ImGui::PopItemFlag();
|
||||||
@ -3400,7 +3400,15 @@ void DrawRandoEditor(bool& open) {
|
|||||||
"The cutscenes of the Poes in Forest Temple and Darunia in Fire Temple will not be skipped. "
|
"The cutscenes of the Poes in Forest Temple and Darunia in Fire Temple will not be skipped. "
|
||||||
"These cutscenes are only useful for glitched gameplay and can be safely skipped otherwise.");
|
"These cutscenes are only useful for glitched gameplay and can be safely skipped otherwise.");
|
||||||
|
|
||||||
// COLUMN 2 - HINT SETTINGS
|
// COLUMN 2 - WORLD SETTINGS
|
||||||
|
ImGui::TableNextColumn();
|
||||||
|
window->DC.CurrLineTextBaseOffset = 0.0f;
|
||||||
|
ImGui::PushItemWidth(-FLT_MIN);
|
||||||
|
ImGui::Text("Coming soon");
|
||||||
|
|
||||||
|
ImGui::PopItemWidth();
|
||||||
|
|
||||||
|
// COLUMN 3 - HINT & ITEM POOL SETTINGS
|
||||||
ImGui::TableNextColumn();
|
ImGui::TableNextColumn();
|
||||||
window->DC.CurrLineTextBaseOffset = 0.0f;
|
window->DC.CurrLineTextBaseOffset = 0.0f;
|
||||||
ImGui::PushItemWidth(-FLT_MIN);
|
ImGui::PushItemWidth(-FLT_MIN);
|
||||||
@ -3453,12 +3461,9 @@ void DrawRandoEditor(bool& open) {
|
|||||||
SohImGui::EnhancementCombobox("gRandomizeHintDistribution", randoHintDistribution, 4, 1);
|
SohImGui::EnhancementCombobox("gRandomizeHintDistribution", randoHintDistribution, 4, 1);
|
||||||
ImGui::Unindent();
|
ImGui::Unindent();
|
||||||
}
|
}
|
||||||
ImGui::PopItemWidth();
|
|
||||||
|
|
||||||
// COLUMN 3 - ITEM POOL SETTINGS
|
PaddedSeparator();
|
||||||
ImGui::TableNextColumn();
|
|
||||||
window->DC.CurrLineTextBaseOffset = 0.0f;
|
|
||||||
ImGui::PushItemWidth(-FLT_MIN);
|
|
||||||
ImGui::Text(Settings::ItemPoolValue.GetName().c_str());
|
ImGui::Text(Settings::ItemPoolValue.GetName().c_str());
|
||||||
InsertHelpHoverText("Sets how many major items appear in the item pool.\n"
|
InsertHelpHoverText("Sets how many major items appear in the item pool.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
Loading…
Reference in New Issue
Block a user