aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-07-22 02:31:17 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-07-22 02:31:17 +0200
commit9dc0642c483f3f74297ebf6bdb6dc1dae8ac3679 (patch)
tree459d51a79dfccd051803dcccdcdf3e34674f50aa /src
parentfc6e7c4d7c7d4c535141c1bb15225e0f98660894 (diff)
downloadskyhanni-9dc0642c483f3f74297ebf6bdb6dc1dae8ac3679.tar.gz
skyhanni-9dc0642c483f3f74297ebf6bdb6dc1dae8ac3679.tar.bz2
skyhanni-9dc0642c483f3f74297ebf6bdb6dc1dae8ac3679.zip
fixed thorn forever
Diffstat (limited to 'src')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/damageindicator/DamageIndicatorManager.kt111
1 files changed, 67 insertions, 44 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/damageindicator/DamageIndicatorManager.kt b/src/main/java/at/hannibal2/skyhanni/features/damageindicator/DamageIndicatorManager.kt
index 49bfb00da..0e8d653b6 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/damageindicator/DamageIndicatorManager.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/damageindicator/DamageIndicatorManager.kt
@@ -9,7 +9,6 @@ import at.hannibal2.skyhanni.events.LorenzChatEvent
import at.hannibal2.skyhanni.features.dungeon.DungeonData
import at.hannibal2.skyhanni.features.slayer.blaze.HellionShield
import at.hannibal2.skyhanni.features.slayer.blaze.setHellionShield
-import at.hannibal2.skyhanni.test.SkyHanniTestCommand
import at.hannibal2.skyhanni.utils.*
import at.hannibal2.skyhanni.utils.EntityUtils.getNameTagWith
import at.hannibal2.skyhanni.utils.EntityUtils.hasNameTagWith
@@ -371,7 +370,14 @@ class DamageIndicatorManager {
): String? {
when (entityData.bossType) {
- BossType.DUNGEON_F4_THORN -> return checkThorn(health)
+ BossType.DUNGEON_F4_THORN -> {
+ val thorn = checkThorn(health, maxHealth)
+ if (thorn == null) {
+ val floor = DungeonData.dungeonFloor
+ LorenzUtils.error("problems with thorn detection! ($floor, $health/$maxHealth)")
+ }
+ return thorn
+ }
BossType.SLAYER_ENDERMAN_1,
BossType.SLAYER_ENDERMAN_2,
@@ -640,52 +646,69 @@ class DamageIndicatorManager {
return result
}
- private fun checkThorn(realHealth: Long): String? {
+ private fun checkThorn(realHealth: Long, realMaxHealth: Long): String? {
val maxHealth: Int
+ println(" ")
+ println("realHealth: $realHealth")
+ println("realMaxHealth: $realMaxHealth")
val health = if (DungeonData.isOneOf("F4")) {
maxHealth = 4
- when (realHealth.toInt()) {
- 300_000, 600_000 -> 4
- 222_000, 444_000 -> 3
- 144_000, 288_000 -> 2
- 66_000, 132_000 -> 1
- 1 -> 0
- else -> {
- LorenzUtils.error(
- "Unexpected health of thorn in f4! (${
- LorenzUtils.formatInteger(realHealth)
- })"
- )
- return null
+
+ if (realMaxHealth == 300_000L) {
+ // no derpy
+ when {
+ realHealth == 1L -> 0
+ realHealth <= 66_000 -> 1
+ realHealth <= 144_000 -> 2
+ realHealth <= 222_000 -> 3
+ realHealth <= 300_000 -> 4
+
+ else -> return null
+ }
+ } else {
+ // derpy
+ when {
+ realHealth == 1L -> 0
+ realHealth <= 132_000 -> 1
+ realHealth <= 288_000 -> 2
+ realHealth <= 444_000 -> 3
+ realHealth <= 600_000 -> 4
+
+ else -> return null
}
}
} else if (DungeonData.isOneOf("M4")) {
maxHealth = 6
- when (realHealth.toInt()) {
- //TODO test all non derpy values!
- 1_800_000 / 2, 1_800_000 -> 6
- 1_494_000 / 2, 1_494_000 -> 5
- 1_188_000 / 2, 1_188_000 -> 4
- 882_000 / 2, 882_000 -> 3
- 576_000 / 2, 576_000 -> 2
- 270_000 / 2, 270_000 -> 1
- 1 -> 0
- else -> {
- SkyHanniTestCommand.displayLine = "thorn has ${LorenzUtils.formatDouble(realHealth.toDouble())} hp!"
- LorenzUtils.error(
- "Unexpected health of thorn in m4! (${
- LorenzUtils.formatDouble(
- LorenzUtils.formatDouble(
- realHealth.toDouble()
- ).toDouble()
- )
- })"
- )
- return null
+
+ if (realMaxHealth == 900_000L) {
+ // no derpy
+ when {
+ realHealth == 1L -> 0
+ realHealth <= 135_000 -> 1
+ realHealth <= 288_000 -> 2
+ realHealth <= 441_000 -> 3
+ realHealth <= 594_000 -> 4
+ realHealth <= 747_000 -> 5
+ realHealth <= 900_000L -> 6
+
+ else -> return null
+ }
+ } else {
+ // derpy
+ when {
+ realHealth == 1L -> 0
+ realHealth <= 270_000 -> 1
+ realHealth <= 576_000 -> 2
+ realHealth <= 882_000 -> 3
+ realHealth <= 1_188_000 -> 4
+ realHealth <= 1_494_000 -> 5
+ realHealth <= 1_800_000 -> 6
+
+ else -> return null
}
}
} else {
- LorenzUtils.error("Invalid thorn floor!")
+ LorenzUtils.error("Invalid/impossible thorn floor!")
return null
}
val color = NumberUtil.percentageColor(health.toLong(), maxHealth.toLong())
@@ -717,12 +740,12 @@ class DamageIndicatorManager {
val entityResult = mobFinder?.tryAdd(entity) ?: return null
val entityData = EntityData(
- entity,
- entityResult.ignoreBlocks,
- entityResult.delayedStart,
- entityResult.finalDungeonBoss,
- entityResult.bossType,
- foundTime = System.currentTimeMillis()
+ entity,
+ entityResult.ignoreBlocks,
+ entityResult.delayedStart,
+ entityResult.finalDungeonBoss,
+ entityResult.bossType,
+ foundTime = System.currentTimeMillis()
)
DamageIndicatorDetectedEvent(entityData).postAndCatch()
return entityData