aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-01-11 13:44:53 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-01-11 13:44:53 +0100
commit96cdf8e2aef9dbc025f431a81df0d5aa6f257dbb (patch)
tree562382a8044d814ad43d363044c06da835fe5f13 /src
parentb0fb9180d1d47c5bd01de536965cf3f630bfc1ba (diff)
downloadskyhanni-96cdf8e2aef9dbc025f431a81df0d5aa6f257dbb.tar.gz
skyhanni-96cdf8e2aef9dbc025f431a81df0d5aa6f257dbb.tar.bz2
skyhanni-96cdf8e2aef9dbc025f431a81df0d5aa6f257dbb.zip
code cleanup
Diffstat (limited to 'src')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/garden/fortuneguide/CaptureFarmingGear.kt245
1 files changed, 140 insertions, 105 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/fortuneguide/CaptureFarmingGear.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/fortuneguide/CaptureFarmingGear.kt
index 2b3e5d04a..3a54b0b1e 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/garden/fortuneguide/CaptureFarmingGear.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/garden/fortuneguide/CaptureFarmingGear.kt
@@ -1,5 +1,6 @@
package at.hannibal2.skyhanni.features.garden.fortuneguide
+import at.hannibal2.skyhanni.config.Storage
import at.hannibal2.skyhanni.data.ProfileStorageData
import at.hannibal2.skyhanni.events.GardenToolChangeEvent
import at.hannibal2.skyhanni.events.InventoryFullyOpenedEvent
@@ -19,6 +20,7 @@ import at.hannibal2.skyhanni.utils.StringUtils.matchMatcher
import at.hannibal2.skyhanni.utils.StringUtils.removeColor
import at.hannibal2.skyhanni.utils.TabListData
import at.hannibal2.skyhanni.utils.repopatterns.RepoPattern
+import net.minecraft.item.ItemStack
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import kotlin.math.round
import kotlin.time.Duration.Companion.days
@@ -117,134 +119,167 @@ class CaptureFarmingGear {
val storage = GardenAPI.storage?.fortune ?: return
val farmingItems = farmingItems ?: return
val outdatedItems = outdatedItems ?: return
- if (event.inventoryName == "Your Equipment and Stats") {
- for ((_, slot) in event.inventoryItems) {
- val split = slot.getInternalName().asString().split("_")
- if (split.first() == "LOTUS") {
- for (item in FarmingItems.entries) {
- if (item.name == split.last()) {
- farmingItems[item] = slot
- outdatedItems[item] = false
- }
- }
- FarmingFortuneDisplay.loadFortuneLineData(slot, 0.0)
- val enchantments = slot.getEnchantments() ?: emptyMap()
- val greenThumbLvl = (enchantments["green_thumb"] ?: continue)
- val visitors = FarmingFortuneDisplay.greenThumbFortune / (greenThumbLvl * 0.05)
- GardenAPI.storage?.uniqueVisitors = round(visitors).toInt()
+ val items = event.inventoryItems
+ when (event.inventoryName) {
+ "Your Equipment and Stats" -> equipmentAndStats(items, farmingItems, outdatedItems)
+ "Pets" -> pets(farmingItems, items, outdatedItems)
+ "Your Skills" -> skills(items, storage)
+ "Community Shop" -> communityShop(items)
+ "Configure Plots" -> configurePlots(items, storage)
+ "Anita" -> anita(items, storage)
+ "Visitor Milestones" -> visitorMilestones(items)
+ }
+ }
+
+ private fun visitorMilestones(items: Map<Int, ItemStack>) {
+ for ((_, item) in items) {
+ if (item.displayName != "§aUnique Visitors Served") continue
+
+ var tier = -1
+ var tierProgress = -1
+ for (line in item.getLore()) {
+ tierPattern.matchMatcher(line) {
+ tier = group("nextTier").toInt() - 1
+ }
+ tierProgressPattern.matchMatcher(line) {
+ tierProgress = group("having").toInt()
}
}
+ if (tier > -1 && tierProgress > -1) {
+ GardenAPI.storage?.uniqueVisitors = getUniqueVisitorsForTier(tier) + tierProgress
+ }
}
- if (event.inventoryName.contains("Pets")) {
- // If they've 2 of same pet, one will be overwritten
- // optimize
+ }
- for (pet in listOf(
- FarmingItems.ELEPHANT,
- FarmingItems.MOOSHROOM_COW,
- FarmingItems.RABBIT,
- FarmingItems.BEE
- )) {
- if (farmingItems[pet] == null) {
- farmingItems[pet] = FFGuideGUI.getFallbackItem(pet)
+ private fun anita(
+ items: Map<Int, ItemStack>,
+ storage: Storage.ProfileSpecific.GardenStorage.Fortune
+ ) {
+ var level = -1
+ for ((_, item) in items) {
+ if (item.displayName.contains("Extra Farming Fortune")) {
+ level = 0
+ for (line in item.getLore()) {
+ anitaMenuPattern.matchMatcher(line) {
+ level = group("level").toInt() / 4
+ }
}
}
+ }
+ if (level == -1) {
+ storage.anitaUpgrade = 15
+ } else {
+ storage.anitaUpgrade = level
+ }
+ }
- // setting to current saved level -1 to stop later pages saving low rarity pets
- var highestElephantRarity = (farmingItems[FarmingItems.ELEPHANT]?.getItemRarityOrNull()?.id ?: -1) - 1
- var highestMooshroomRarity = (farmingItems[FarmingItems.MOOSHROOM_COW]?.getItemRarityOrNull()?.id ?: -1) - 1
- var highestRabbitRarity = (farmingItems[FarmingItems.RABBIT]?.getItemRarityOrNull()?.id ?: -1) - 1
- var highestBeeRarity = (farmingItems[FarmingItems.BEE]?.getItemRarityOrNull()?.id ?: -1) - 1
-
- for ((_, item) in event.inventoryItems) {
- val split = item.getInternalName().asString().split(";")
- if (split.first() == "ELEPHANT" && split.last().toInt() > highestElephantRarity) {
- farmingItems[FarmingItems.ELEPHANT] = item
- outdatedItems[FarmingItems.ELEPHANT] = false
- highestElephantRarity = split.last().toInt()
- }
- if (split.first() == "MOOSHROOM_COW" && split.last().toInt() > highestMooshroomRarity) {
- farmingItems[FarmingItems.MOOSHROOM_COW] = item
- outdatedItems[FarmingItems.MOOSHROOM_COW] = false
- highestMooshroomRarity = split.last().toInt()
- }
- if (split.first() == "RABBIT" && split.last().toInt() > highestRabbitRarity) {
- farmingItems[FarmingItems.RABBIT] = item
- outdatedItems[FarmingItems.RABBIT] = false
- highestRabbitRarity = split.last().toInt()
- }
- if (split.first() == "BEE" && split.last().toInt() > highestBeeRarity) {
- farmingItems[FarmingItems.BEE] = item
- outdatedItems[FarmingItems.BEE] = false
- highestBeeRarity = split.last().toInt()
- }
+ private fun configurePlots(
+ items: Map<Int, ItemStack>,
+ storage: Storage.ProfileSpecific.GardenStorage.Fortune
+ ) {
+ var plotsUnlocked = 24
+ for (slot in items) {
+ if (slot.value.getLore().contains("§7Cost:")) {
+ plotsUnlocked -= 1
}
}
+ storage.plotsUnlocked = plotsUnlocked
+ }
- if (event.inventoryName.contains("Your Skills")) {
- for ((_, item) in event.inventoryItems) {
- if (item.displayName.contains("Farming ")) {
- storage.farmingLevel = item.displayName.split(" ").last().romanToDecimalIfNecessary()
+ private fun communityShop(items: Map<Int, ItemStack>) {
+ for ((_, item) in items) {
+ if (item.displayName.contains("Garden Farming Fortune")) {
+ if (item.getLore().contains("§aMaxed out!")) {
+ ProfileStorageData.playerSpecific?.gardenCommunityUpgrade =
+ item.displayName.split(" ").last().romanToDecimal()
+ } else {
+ ProfileStorageData.playerSpecific?.gardenCommunityUpgrade =
+ item.displayName.split(" ").last().romanToDecimal() - 1
}
}
}
- if (event.inventoryName.contains("Community Shop")) {
- for ((_, item) in event.inventoryItems) {
- if (item.displayName.contains("Garden Farming Fortune")) {
- if (item.getLore().contains("§aMaxed out!")) {
- ProfileStorageData.playerSpecific?.gardenCommunityUpgrade =
- item.displayName.split(" ").last().romanToDecimal()
- } else {
- ProfileStorageData.playerSpecific?.gardenCommunityUpgrade =
- item.displayName.split(" ").last().romanToDecimal() - 1
- }
- }
+ }
+
+ private fun skills(
+ items: Map<Int, ItemStack>,
+ storage: Storage.ProfileSpecific.GardenStorage.Fortune
+ ) {
+ for ((_, item) in items) {
+ if (item.displayName.contains("Farming ")) {
+ storage.farmingLevel = item.displayName.split(" ").last().romanToDecimalIfNecessary()
}
}
- if (event.inventoryName.contains("Configure Plots")) {
- var plotsUnlocked = 24
- for (slot in event.inventoryItems) {
- if (slot.value.getLore().contains("§7Cost:")) {
- plotsUnlocked -= 1
- }
+ }
+
+ private fun pets(
+ farmingItems: MutableMap<FarmingItems, ItemStack>,
+ items: Map<Int, ItemStack>,
+ outdatedItems: MutableMap<FarmingItems, Boolean>
+ ) {
+ // If they've 2 of same pet, one will be overwritten
+ // optimize
+
+ for (pet in listOf(
+ FarmingItems.ELEPHANT,
+ FarmingItems.MOOSHROOM_COW,
+ FarmingItems.RABBIT,
+ FarmingItems.BEE
+ )) {
+ if (farmingItems[pet] == null) {
+ farmingItems[pet] = FFGuideGUI.getFallbackItem(pet)
}
- storage.plotsUnlocked = plotsUnlocked
}
- if (event.inventoryName.contains("Anita")) {
- var level = -1
- for ((_, item) in event.inventoryItems) {
- if (item.displayName.contains("Extra Farming Fortune")) {
- level = 0
- for (line in item.getLore()) {
- anitaMenuPattern.matchMatcher(line) {
- level = group("level").toInt() / 4
- }
- }
- }
+
+ // setting to current saved level -1 to stop later pages saving low rarity pets
+ var highestElephantRarity = (farmingItems[FarmingItems.ELEPHANT]?.getItemRarityOrNull()?.id ?: -1) - 1
+ var highestMooshroomRarity = (farmingItems[FarmingItems.MOOSHROOM_COW]?.getItemRarityOrNull()?.id ?: -1) - 1
+ var highestRabbitRarity = (farmingItems[FarmingItems.RABBIT]?.getItemRarityOrNull()?.id ?: -1) - 1
+ var highestBeeRarity = (farmingItems[FarmingItems.BEE]?.getItemRarityOrNull()?.id ?: -1) - 1
+
+ for ((_, item) in items) {
+ val split = item.getInternalName().asString().split(";")
+ if (split.first() == "ELEPHANT" && split.last().toInt() > highestElephantRarity) {
+ farmingItems[FarmingItems.ELEPHANT] = item
+ outdatedItems[FarmingItems.ELEPHANT] = false
+ highestElephantRarity = split.last().toInt()
}
- if (level == -1) {
- storage.anitaUpgrade = 15
- } else {
- storage.anitaUpgrade = level
+ if (split.first() == "MOOSHROOM_COW" && split.last().toInt() > highestMooshroomRarity) {
+ farmingItems[FarmingItems.MOOSHROOM_COW] = item
+ outdatedItems[FarmingItems.MOOSHROOM_COW] = false
+ highestMooshroomRarity = split.last().toInt()
+ }
+ if (split.first() == "RABBIT" && split.last().toInt() > highestRabbitRarity) {
+ farmingItems[FarmingItems.RABBIT] = item
+ outdatedItems[FarmingItems.RABBIT] = false
+ highestRabbitRarity = split.last().toInt()
+ }
+ if (split.first() == "BEE" && split.last().toInt() > highestBeeRarity) {
+ farmingItems[FarmingItems.BEE] = item
+ outdatedItems[FarmingItems.BEE] = false
+ highestBeeRarity = split.last().toInt()
}
}
- if (event.inventoryName.contains("Visitor Milestones")) {
- for ((_, item) in event.inventoryItems) {
- if (item.displayName != "§aUnique Visitors Served") continue
+ }
- var tier = -1
- var tierProgress = -1
- for (line in item.getLore()) {
- tierPattern.matchMatcher(line) {
- tier = group("nextTier").toInt() - 1
- }
- tierProgressPattern.matchMatcher(line) {
- tierProgress = group("having").toInt()
+ private fun equipmentAndStats(
+ items: Map<Int, ItemStack>,
+ farmingItems: MutableMap<FarmingItems, ItemStack>,
+ outdatedItems: MutableMap<FarmingItems, Boolean>
+ ) {
+ for ((_, slot) in items) {
+ val split = slot.getInternalName().asString().split("_")
+ if (split.first() == "LOTUS") {
+ for (item in FarmingItems.entries) {
+ if (item.name == split.last()) {
+ farmingItems[item] = slot
+ outdatedItems[item] = false
}
}
- if (tier > -1 && tierProgress > -1) {
- GardenAPI.storage?.uniqueVisitors = getUniqueVisitorsForTier(tier) + tierProgress
- }
+ FarmingFortuneDisplay.loadFortuneLineData(slot, 0.0)
+ val enchantments = slot.getEnchantments() ?: emptyMap()
+ val greenThumbLvl = (enchantments["green_thumb"] ?: continue)
+ val visitors = FarmingFortuneDisplay.greenThumbFortune / (greenThumbLvl * 0.05)
+ GardenAPI.storage?.uniqueVisitors = round(visitors).toInt()
}
}
}