aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorKimbrian Marshall <cimbraien@gmail.com>2023-11-05 17:16:25 +0700
committerGitHub <noreply@github.com>2023-11-05 11:16:25 +0100
commitadcd8ef05c81592716217a86544901783cb21f37 (patch)
treee9cc4f0041f92d1925568d27d15ba7ea443c9190 /src/main
parentfd47344a8fb5c9b1657a2696bc298659b9458fd9 (diff)
downloadskyhanni-adcd8ef05c81592716217a86544901783cb21f37.tar.gz
skyhanni-adcd8ef05c81592716217a86544901783cb21f37.tar.bz2
skyhanni-adcd8ef05c81592716217a86544901783cb21f37.zip
Feature: Fish Bait Warning (#635)
Added Fishing Bait Warnings. #635
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/FishingConfig.java19
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/fishing/BaitChangeWarning.kt89
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/fishing/ShowFishingItemName.kt3
4 files changed, 112 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
index 6765e67be..02d196cc3 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt
@@ -105,6 +105,7 @@ import at.hannibal2.skyhanni.features.event.jerry.frozentreasure.FrozenTreasureT
import at.hannibal2.skyhanni.features.event.spook.TheGreatSpook
import at.hannibal2.skyhanni.features.fame.AccountUpgradeReminder
import at.hannibal2.skyhanni.features.fame.CityProjectFeatures
+import at.hannibal2.skyhanni.features.fishing.BaitChangeWarning
import at.hannibal2.skyhanni.features.fishing.ChumBucketHider
import at.hannibal2.skyhanni.features.fishing.FishingHookDisplay
import at.hannibal2.skyhanni.features.fishing.FishingTimer
@@ -621,6 +622,7 @@ class SkyHanniMod {
loadModule(LockMouseLook)
loadModule(DungeonFinderFeatures())
loadModule(PabloHelper())
+ loadModule(BaitChangeWarning());
init()
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/FishingConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/FishingConfig.java
index 6b47c6025..235b606f8 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/FishingConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/FishingConfig.java
@@ -234,6 +234,25 @@ public class FishingConfig {
}
@Expose
+ @ConfigOption(name = "Bait Warnings", desc = "")
+ @Accordion
+ public FishingBaitWarningsConfig fishingBaitWarning = new FishingBaitWarningsConfig();
+
+ public static class FishingBaitWarningsConfig {
+ @Expose
+ @ConfigOption(name = "Bait Change Warning", desc = "Show warning when fishing bait is changed")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean baitChangeWarning = false;
+
+ @Expose
+ @ConfigOption(name = "No Bait Warning", desc = "Show warning when no bait is used")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean noBaitWarning = false;
+ }
+
+ @Expose
@ConfigOption(name = "Rare Sea Creatures", desc = "")
@Accordion
public RareCatches rareCatches = new RareCatches();
diff --git a/src/main/java/at/hannibal2/skyhanni/features/fishing/BaitChangeWarning.kt b/src/main/java/at/hannibal2/skyhanni/features/fishing/BaitChangeWarning.kt
new file mode 100644
index 000000000..3f0487639
--- /dev/null
+++ b/src/main/java/at/hannibal2/skyhanni/features/fishing/BaitChangeWarning.kt
@@ -0,0 +1,89 @@
+package at.hannibal2.skyhanni.features.fishing
+
+import at.hannibal2.skyhanni.SkyHanniMod
+import at.hannibal2.skyhanni.events.LorenzRenderWorldEvent
+import at.hannibal2.skyhanni.events.LorenzTickEvent
+import at.hannibal2.skyhanni.utils.EntityUtils
+import at.hannibal2.skyhanni.utils.ItemUtils.name
+import at.hannibal2.skyhanni.utils.LorenzUtils
+import at.hannibal2.skyhanni.utils.SoundUtils
+import at.hannibal2.skyhanni.utils.StringUtils.removeColor
+import at.hannibal2.skyhanni.utils.getLorenzVec
+import at.hannibal2.skyhanni.utils.toLorenzVec
+import net.minecraft.client.Minecraft
+import net.minecraft.entity.item.EntityItem
+import net.minecraft.entity.projectile.EntityFishHook
+import net.minecraftforge.event.entity.EntityJoinWorldEvent
+import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
+import kotlin.time.Duration.Companion.seconds
+
+class BaitChangeWarning {
+ private val config get() = SkyHanniMod.feature.fishing.fishingBaitWarning
+ private var bobber: EntityFishHook? = null
+ private var lastBait: String? = null
+ private var timeLastCast: Long = 0L
+ private var isUsingBait: Boolean = false
+
+ @SubscribeEvent
+ fun onJoinWorld(event: EntityJoinWorldEvent){
+ if(!isEnabled()) return
+ val entity = event.entity ?: return
+ if(entity !is EntityFishHook) return
+ if(entity.angler != Minecraft.getMinecraft().thePlayer) return
+
+ bobber = entity;
+ timeLastCast = System.currentTimeMillis()
+ isUsingBait = false
+ }
+
+ @SubscribeEvent
+ fun onTick(event: LorenzTickEvent){
+ if(!isEnabled() || bobber == null) return
+ //Is there a way to get event sent time to be more accurate?
+ if(System.currentTimeMillis() - timeLastCast < 1000L) return
+
+ if(!isUsingBait && config.noBaitWarning) showNoBaitWarning()
+ reset()
+ }
+
+ fun reset(){
+ bobber = null
+ isUsingBait = false
+ }
+
+ @SubscribeEvent
+ fun onRenderWorld(event: LorenzRenderWorldEvent){
+ if(!isEnabled() || !config.baitChangeWarning) return
+ if(bobber == null) return
+ for(entityItem in EntityUtils.getEntitiesNearby<EntityItem>(bobber!!.getLorenzVec(), 1.5)){
+ val itemStack = entityItem.entityItem
+ var name = itemStack.name ?: continue
+ name = name.removeColor()
+
+ if((!name.endsWith(" Bait") && !name.startsWith("Obfuscated"))
+ || itemStack.stackSize != 1) continue
+
+ isUsingBait = true
+ if(lastBait == null){
+ lastBait = name.removeColor()
+ continue
+ }
+ if(name.removeColor() == lastBait) continue
+ showBaitChangeWarning(lastBait!!, name.removeColor())
+ lastBait = name.removeColor()
+ }
+ }
+
+ fun showBaitChangeWarning(before: String, after: String){
+ SoundUtils.playClickSound()
+ LorenzUtils.sendTitle("§eBait changed!", 2.seconds)
+ LorenzUtils.chat("§e" + before + " -> " + after)
+ }
+
+ fun showNoBaitWarning(){
+ SoundUtils.playErrorSound()
+ LorenzUtils.sendTitle("§cNo bait is used!", 2.seconds)
+ }
+
+ private fun isEnabled() = LorenzUtils.inSkyBlock && FishingAPI.hasFishingRodInHand()
+}
diff --git a/src/main/java/at/hannibal2/skyhanni/features/fishing/ShowFishingItemName.kt b/src/main/java/at/hannibal2/skyhanni/features/fishing/ShowFishingItemName.kt
index 179b6af20..99fcca5e4 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/fishing/ShowFishingItemName.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/fishing/ShowFishingItemName.kt
@@ -55,7 +55,8 @@ class ShowFishingItemName {
if (name.removeColor() == "Stone") continue
val size = itemStack.stackSize
- val isBait = name.endsWith(" Bait") && size == 1
+ val isBait = (name.removeColor().startsWith("Obfuscated")
+ || name.endsWith(" Bait")) && size == 1
val prefix = if (!isBait) {
"§a§l+"
} else {