Organised code for purchase animal menu patch

master
Mohammad Shoaib Khan 2023-03-08 12:29:19 +05:30
parent 80963c4dc6
commit 6822bd4840
No known key found for this signature in database
GPG Key ID: D8040D966320B620
2 changed files with 69 additions and 59 deletions

View File

@ -273,9 +273,7 @@ namespace stardew_access.Patches
}
else if (menu is PurchaseAnimalsMenu)
{
PurchaseAnimalsMenuPatch.purchaseAnimalMenuQuery = "";
PurchaseAnimalsMenuPatch.firstTimeInNamingMenu = true;
PurchaseAnimalsMenuPatch.purchaseAnimalsMenu = null;
PurchaseAnimalsMenuPatch.Cleanup();
}
else if (menu is AnimalQueryMenu)
{

View File

@ -23,6 +23,26 @@ namespace stardew_access.Patches
animalBeingPurchased = ___animalBeingPurchased;
if (___onFarm && ___namingAnimal)
{
narrateNamingMenu(__instance, x, y);
}
else if (___onFarm && !___namingAnimal)
{
firstTimeInNamingMenu = true;
}
else if (!___onFarm && !___namingAnimal)
{
firstTimeInNamingMenu = true;
narratePurchasingMenu(__instance);
}
}
catch (Exception e)
{
MainClass.ErrorLog($"Unable to narrate Text:\n{e.Message}\n{e.StackTrace}");
}
}
private static void narrateNamingMenu(PurchaseAnimalsMenu __instance, int x, int y)
{
string toSpeak = "";
if (__instance.okButton != null && __instance.okButton.containsPoint(x, y))
@ -45,8 +65,8 @@ namespace stardew_access.Patches
// toSpeak = $"{toSpeak}, Value: {value}";
}
if (purchaseAnimalMenuQuery != toSpeak)
{
if (purchaseAnimalMenuQuery == toSpeak) return;
purchaseAnimalMenuQuery = toSpeak;
if (firstTimeInNamingMenu)
@ -57,16 +77,12 @@ namespace stardew_access.Patches
MainClass.ScreenReader.Say(toSpeak, true);
}
}
else if (___onFarm && !___namingAnimal)
{
firstTimeInNamingMenu = true;
}
else if (!___onFarm && !___namingAnimal)
{
firstTimeInNamingMenu = true;
if (__instance.hovered != null)
private static void narratePurchasingMenu(PurchaseAnimalsMenu __instance)
{
if (__instance.hovered == null)
return;
string toSpeak = "";
if (((StardewValley.Object)__instance.hovered.item).Type != null)
{
@ -81,21 +97,17 @@ namespace stardew_access.Patches
toSpeak = $"{displayName}, Price: {price}g, Description: {description}";
}
if (purchaseAnimalMenuQuery != toSpeak)
{
if (purchaseAnimalMenuQuery == toSpeak) return;
purchaseAnimalMenuQuery = toSpeak;
MainClass.ScreenReader.Say(toSpeak, true);
}
return;
}
}
}
catch (Exception e)
internal static void Cleanup()
{
MainClass.ErrorLog($"Unable to narrate Text:\n{e.Message}\n{e.StackTrace}");
purchaseAnimalMenuQuery = "";
firstTimeInNamingMenu = true;
purchaseAnimalsMenu = null;
}
}
}
}