diff options
author | Roman / Linnea Gräf <nea@nea.moe> | 2023-05-03 18:12:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-03 18:12:36 +0200 |
commit | 46531787bf296e3c25e0062236d17bca80c62cb8 (patch) | |
tree | f300b5bf11d9820ee05518c17591e0f147ffb778 /src/main | |
parent | f7c2b1a41f1448baa32e0c9d850f25b0429b9ce1 (diff) | |
download | skyhanni-46531787bf296e3c25e0062236d17bca80c62cb8.tar.gz skyhanni-46531787bf296e3c25e0062236d17bca80c62cb8.tar.bz2 skyhanni-46531787bf296e3c25e0062236d17bca80c62cb8.zip |
Allow partial Rhys progress and multicrystalling (#86)
Diffstat (limited to 'src/main')
4 files changed, 69 insertions, 45 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/bingo/BingoNextStepHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/bingo/BingoNextStepHelper.kt index e68566ab7..d181caa3a 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/bingo/BingoNextStepHelper.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/bingo/BingoNextStepHelper.kt @@ -16,17 +16,21 @@ import at.hannibal2.skyhanni.utils.StringUtils.removeColor import net.minecraftforge.fml.common.eventhandler.SubscribeEvent import net.minecraftforge.fml.common.gameevent.TickEvent + + class BingoNextStepHelper { private val config get() = SkyHanniMod.feature.bingo.bingoCard private var tick = 0 private var dirty = true + private val crystalObtainedPattern = " *§r§e(?<crystalName>Topaz|Sapphire|Jade|Amethyst|Amber) Crystal".toPattern() private val itemIslandRequired = mutableMapOf<String, IslandVisitStep>() - private val itemRequired = mutableMapOf<String, NextStep>() + private val itemPreconditions = mutableMapOf<String, NextStep>() private val islands = mutableMapOf<IslandType, IslandVisitStep>() private val collectionPattern = "Reach (?<amount>[0-9]+(?:,\\d+)*) (?<name>.*) Collection\\.".toPattern() private val crystalPattern = "Obtain a (?<name>\\w+) Crystal in the Crystal Hollows\\.".toPattern() private val skillPattern = "Obtain level (?<level>.*) in the (?<skill>.*) Skill.".toPattern() + private val rhysTaskName = "30x Enchanted Redstone (for Rhys)" companion object { private val finalSteps = mutableListOf<NextStep>() @@ -129,18 +133,22 @@ class BingoNextStepHelper { if (!config.enabled) return for (currentStep in currentSteps) { - if (currentStep.displayName == "Obtain a Topaz Crystal") { + if (currentStep is ObtainCrystalStep) { if (event.message.matchRegex(" *§r§5§l✦ CRYSTAL FOUND §r§7\\(.§r§7/5§r§7\\)")) { nextMessageIsCrystal = true return } if (nextMessageIsCrystal) { nextMessageIsCrystal = false - if (event.message.matchRegex(" *§r§eTopaz Crystal")) { - currentStep.done() + crystalObtainedPattern.matchMatcher(event.message) { + if (group("crystalName") == currentStep.crystalName) + currentStep.done() } } } + if (currentStep is PartialProgressItemsStep && currentStep.displayName == rhysTaskName && event.message == "§e[NPC] §dRhys§f: §rThank you for the items!§r") { + currentStep.amountHavingHidden -= 10 + } } //TODO add thys message // if (event.message == "thys message") { @@ -221,52 +229,62 @@ class BingoNextStepHelper { dirty = false for (goal in personalGoals) { - readDescription(goal.description.removeColor()) + val bingoCardStep = readDescription(goal.description.removeColor()) + if (bingoCardStep == null) { + println("Warning: Could not find bingo steps for ${goal.description}") + } else { + finalSteps.add(bingoCardStep) + } } updateResult() } - private fun readDescription(description: String) { + private fun readDescription(description: String): NextStep? { collectionPattern.matchMatcher(description) { val amount = group("amount").replace(",", "").toInt() val name = group("name") - val collectionStep = CollectionStep(name, amount).apply { finalSteps.add(this) } - createItemIslandRequirement(name, collectionStep) - return + return CollectionStep(name, amount) withItemIslandRequirement name } if (description == "Craft an Emerald Ring.") { - CraftStep("Emerald Ring").apply { finalSteps.add(this) } requires ItemsStep( - "32x Enchanted Emerald", - "Emerald", - 160 * 32, - mapOf("Emerald" to 1, "Enchanted Emerald" to 160) - ).apply { this requires IslandType.DWARVEN_MINES.getStep() } + return CraftStep("Emerald Ring") requires ( + ItemsStep( + "32x Enchanted Emerald", + "Emerald", + 160 * 32, + mapOf("Emerald" to 1, "Enchanted Emerald" to 160) + ) requires IslandType.DWARVEN_MINES.getStep()) } if (description == "Obtain a Mathematical Hoe Blueprint.") { - CraftStep("Mathematical Hoe Blueprint").apply { finalSteps.add(this) } requires ItemsStep( - "32x Jacob's Ticket", - "Jacob's Ticket", - 32, - mapOf("Jacob's Ticket" to 1) - ).apply { this requires IslandType.GARDEN.getStep() }.addItemRequirements() + return CraftStep("Mathematical Hoe Blueprint") requires ( + ItemsStep( + "32x Jacob's Ticket", + "Jacob's Ticket", + 32, + mapOf("Jacob's Ticket" to 1) + ).addItemRequirements() requires IslandType.GARDEN.getStep()) } crystalPattern.matchMatcher(description) { val crystal = group("name") - ChatMessageStep("Obtain a $crystal Crystal").apply { finalSteps.add(this) } requires IslandType.CRYSTAL_HOLLOWS.getStep() + return ObtainCrystalStep(crystal) requires IslandType.CRYSTAL_HOLLOWS.getStep() } skillPattern.matchMatcher(description) { val level = group("level").toInt() val skill = group("skill") - SkillLevelStep(skill, level).apply { finalSteps.add(this) } + return SkillLevelStep(skill, level) } - println("No help for goal: '$description'") + return null + } + + fun <T : NextStep> T.makeFinalStep(): T { + finalSteps.add(this) + return this } @SubscribeEvent @@ -285,18 +303,14 @@ class BingoNextStepHelper { } } - private fun createItemIslandRequirement(itemName: String, step: NextStep): IslandVisitStep? { - val islandReachStep = itemIslandRequired.getOrDefault(itemName, null) - if (islandReachStep == null) { - println("no island required for item: '$itemName'") - return null - } - step requires islandReachStep - return islandReachStep + infix fun <T : NextStep> T.withItemIslandRequirement(itemName: String): T { + itemIslandRequired[itemName]?.let { this requires it } + return this } - private infix fun NextStep.requires(other: NextStep) { + infix fun <T : NextStep> T.requires(other: NextStep): T { requirements.add(other) + return this } private fun IslandType.getStep() = islands.getOrPut(this) { IslandVisitStep(this) } @@ -313,22 +327,24 @@ class BingoNextStepHelper { IslandType.GOLD_MINES.getStep() requires IslandType.HUB.getStep() IslandType.GOLD_MINES.getStep() requires SkillLevelStep("Mining", 1) - IslandType.DEEP_CAVERNS.getStep() requires IslandType.GOLD_MINES.getStep() + IslandType.DEEP_CAVERNS.getStep() requires IslandType.GOLD_MINES.getStep() IslandType.DEEP_CAVERNS.getStep() requires SkillLevelStep("Mining", 5) - val redstoneForThys = ItemsStep( - "30x Enchanted Redstone (for Thys)", + val redstoneForThys = PartialProgressItemsStep( + rhysTaskName, "Redstone", 160 * 10 * 3, mapOf("Redstone" to 1, "Enchanted Redstone" to 160) - ).apply { createItemIslandRequirement(itemName, this) } + ) redstoneForThys requires IslandType.DEEP_CAVERNS.getStep() + IslandType.DWARVEN_MINES.getStep() requires redstoneForThys IslandType.DWARVEN_MINES.getStep() requires SkillLevelStep( "Mining", 12 ).also { it requires IslandType.THE_FARMING_ISLANDS.getStep() } + IslandType.CRYSTAL_HOLLOWS.getStep() requires IslandType.DWARVEN_MINES.getStep() // TODO add skyblock level requirement @@ -337,10 +353,10 @@ class BingoNextStepHelper { val farmingContest = ChatMessageStep("Farming Contest") farmingContest requires SkillLevelStep("Farming", 10) - itemRequired["Jacob's Ticket"] = farmingContest + itemPreconditions["Jacob's Ticket"] = farmingContest - IslandType.DWARVEN_MINES.getStep().also { finalSteps.add(it) } - ChatMessageStep("Get Ender Armor").also { finalSteps.add(it) } requires IslandType.THE_END.getStep() + IslandType.DWARVEN_MINES.getStep().makeFinalStep() + ChatMessageStep("Get Ender Armor").makeFinalStep() requires IslandType.THE_END.getStep() IslandType.THE_END.getStep() requires SkillLevelStep( "Combat", 12 @@ -405,7 +421,7 @@ class BingoNextStepHelper { } private fun ItemsStep.addItemRequirements(): ItemsStep { - val step = itemRequired[itemName] + val step = itemPreconditions[itemName] if (step != null) { requirements.add(step) } diff --git a/src/main/java/at/hannibal2/skyhanni/features/bingo/nextstep/ChatMessageStep.kt b/src/main/java/at/hannibal2/skyhanni/features/bingo/nextstep/ChatMessageStep.kt index e1d548540..43dfcbcb3 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/bingo/nextstep/ChatMessageStep.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/bingo/nextstep/ChatMessageStep.kt @@ -1,3 +1,4 @@ package at.hannibal2.skyhanni.features.bingo.nextstep -class ChatMessageStep(displayName: String): NextStep(displayName)
\ No newline at end of file +class ChatMessageStep(displayName: String): NextStep(displayName) +class ObtainCrystalStep(val crystalName: String) : NextStep("Obtain a $crystalName Crystal") diff --git a/src/main/java/at/hannibal2/skyhanni/features/bingo/nextstep/ItemsStep.kt b/src/main/java/at/hannibal2/skyhanni/features/bingo/nextstep/ItemsStep.kt index e4efa3faa..c9e65b1b4 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/bingo/nextstep/ItemsStep.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/bingo/nextstep/ItemsStep.kt @@ -1,4 +1,11 @@ package at.hannibal2.skyhanni.features.bingo.nextstep -class ItemsStep(displayName: String, val itemName: String, amountNeeded: Long, val variants: Map<String, Int>) : - ProgressionStep(displayName, amountNeeded)
\ No newline at end of file +open class ItemsStep(displayName: String, val itemName: String, amountNeeded: Long, val variants: Map<String, Int>) : + ProgressionStep(displayName, amountNeeded) + +class PartialProgressItemsStep(displayName: String, itemName: String, amountNeeded: Long, variants: Map<String, Int>) : + ItemsStep(displayName, itemName, amountNeeded, variants) { + var amountHavingHidden: Int = 0 + override val amountNeeded: Long + get() = super.amountNeeded - amountHavingHidden +} diff --git a/src/main/java/at/hannibal2/skyhanni/features/bingo/nextstep/ProgressionStep.kt b/src/main/java/at/hannibal2/skyhanni/features/bingo/nextstep/ProgressionStep.kt index 07aaf5f20..5ef777ca1 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/bingo/nextstep/ProgressionStep.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/bingo/nextstep/ProgressionStep.kt @@ -1,3 +1,3 @@ package at.hannibal2.skyhanni.features.bingo.nextstep -abstract class ProgressionStep(displayName: String, val amountNeeded: Long, var amountHaving: Long = 0): NextStep(displayName)
\ No newline at end of file +abstract class ProgressionStep(displayName: String, open val amountNeeded: Long, var amountHaving: Long = 0): NextStep(displayName)
\ No newline at end of file |