aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/lorenz/mod/items
diff options
context:
space:
mode:
authorLorenz <ESs95s3P5z8Pheb>2022-07-11 23:30:46 +0200
committerLorenz <ESs95s3P5z8Pheb>2022-07-11 23:30:46 +0200
commitf44e7afee230384e03307f052fa5a90aadbaff44 (patch)
treea1df487f4393f3ef8c4356ea1047f19757706e53 /src/main/java/at/lorenz/mod/items
parentcd502b4b48c9b1858a8004989d7bb2c55ee994af (diff)
downloadSkyHanni-f44e7afee230384e03307f052fa5a90aadbaff44.tar.gz
SkyHanni-f44e7afee230384e03307f052fa5a90aadbaff44.tar.bz2
SkyHanni-f44e7afee230384e03307f052fa5a90aadbaff44.zip
add action bar event, add item ability cooldown feature
Diffstat (limited to 'src/main/java/at/lorenz/mod/items')
-rw-r--r--src/main/java/at/lorenz/mod/items/ItemAbilityCooldown.kt288
-rw-r--r--src/main/java/at/lorenz/mod/items/WitherImpactDetection.kt65
2 files changed, 353 insertions, 0 deletions
diff --git a/src/main/java/at/lorenz/mod/items/ItemAbilityCooldown.kt b/src/main/java/at/lorenz/mod/items/ItemAbilityCooldown.kt
new file mode 100644
index 000000000..84ab089dc
--- /dev/null
+++ b/src/main/java/at/lorenz/mod/items/ItemAbilityCooldown.kt
@@ -0,0 +1,288 @@
+package at.lorenz.mod.items
+
+import at.lorenz.mod.LorenzMod
+import at.lorenz.mod.events.GuiRenderItemEvent
+import at.lorenz.mod.events.LorenzActionBarEvent
+import at.lorenz.mod.utils.ItemUtils
+import at.lorenz.mod.utils.ItemUtils.cleanName
+import at.lorenz.mod.utils.LorenzColor
+import at.lorenz.mod.utils.LorenzUtils
+import at.lorenz.mod.utils.LorenzUtils.between
+import net.minecraft.client.Minecraft
+import net.minecraft.client.renderer.GlStateManager
+import net.minecraft.item.ItemStack
+import net.minecraftforge.common.MinecraftForge
+import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
+import net.minecraftforge.fml.common.gameevent.TickEvent
+
+class ItemAbilityCooldown {
+
+ var lastAbility = ""
+ var tick = 0
+ val items = mutableMapOf<ItemStack, ItemText>()
+ val witherImpactDetection = WitherImpactDetection(this)
+
+ init {
+ MinecraftForge.EVENT_BUS.register(witherImpactDetection)
+ }
+
+ fun clickWitherImpact() {
+ Ability.WITHER_IMPACT.click()
+ }
+
+ @SubscribeEvent
+ fun onActionBar(event: LorenzActionBarEvent) {
+ if (!isEnabled()) return
+
+ val message: String = event.message
+ if (message.contains(" (§6")) {
+ if (message.contains("§b) ")) {
+ val name: String = message.between(" (§6", "§b) ")
+ if (name == lastAbility) return
+ lastAbility = name
+ for (ability in Ability.values()) {
+ if (ability.abilityName == name) {
+ click(ability)
+ return
+ }
+ }
+ return
+ }
+ }
+ lastAbility = ""
+ }
+
+ private fun isEnabled(): Boolean {
+ return LorenzUtils.inSkyblock && LorenzMod.feature.abilities.itemAbilityCooldown
+ }
+
+ private fun click(ability: Ability) {
+// if (ability.isActive()) return
+ if (!ability.actionBarDetection) return
+ ability.click()
+ }
+
+ @SubscribeEvent
+ fun onTick(event: TickEvent.ClientTickEvent) {
+ if (!isEnabled()) return
+
+ tick++
+ if (tick % 2 == 0) {
+ checkHotbar()
+ }
+ }
+
+ private fun checkHotbar() {
+ items.clear()
+ for ((stack, slot) in ItemUtils.getItemsInInventoryWithSlots(true)) {
+// val inHotbar = slot in 36..43
+
+ val itemName: String = stack.cleanName()
+ val ability = hasAbility(itemName)
+ if (ability != null) {
+
+ if (ability.isOnCooldown()) {
+ val duration: Long = ability.lastClick + ability.getCooldown() - System.currentTimeMillis()
+ val color = if (duration < 600) LorenzColor.RED else LorenzColor.YELLOW
+ items[stack] = ItemText(color, ability.getDurationText(), true)
+ } else {
+ items[stack] = ItemText(LorenzColor.GREEN, "R", false)
+ }
+ }
+ }
+
+ }
+
+ @SubscribeEvent
+ fun onRenderItemOverlayPost(event: GuiRenderItemEvent.RenderOverlayEvent.Post) {
+ if (!isEnabled()) return
+
+ val item = event.stack ?: return
+// if (item.stackSize != 1 || item.tagCompound?.hasKey("SkytilsNoItemOverlay") == true) return
+ if (item.stackSize != 1) return
+
+ var stackTip = ""
+
+ val guiOpen = Minecraft.getMinecraft().currentScreen != null
+ val itemText = items.filter { it.key == item }
+ .firstNotNullOfOrNull { it.value } ?: return
+ if (guiOpen && !itemText.onCooldown) return
+
+ stackTip = itemText.color.getChatColor() + itemText.text
+
+ if (stackTip.isNotEmpty()) {
+ GlStateManager.disableLighting()
+ GlStateManager.disableDepth()
+ GlStateManager.disableBlend()
+ event.fr.drawStringWithShadow(
+ stackTip,
+ (event.x + 17 - event.fr.getStringWidth(stackTip)).toFloat(),
+ (event.y + 9).toFloat(),
+ 16777215
+ )
+ GlStateManager.enableLighting()
+ GlStateManager.enableDepth()
+ }
+ }
+
+// @SubscribeEvent
+// fun onRenderItemOverlayPost(event: GuiRenderItemEvent.RenderOverlayEvent.Pre) {
+// if (!isEnabled()) return
+//
+// val item = event.stack ?: return
+//// if (item.stackSize != 1 || item.tagCompound?.hasKey("SkytilsNoItemOverlay") == true) return
+// if (item.stackSize != 1) return
+//
+// var stackTip = ""
+//
+// val isActive = Minecraft.getMinecraft().currentScreen == null
+// val itemText = items.filter { it.key == item && it.value.active }
+// .firstNotNullOfOrNull { it.value }
+//
+// if (itemText != null) return
+//// if (!isActive && !itemText.active) return
+//
+// stackTip = "T"
+//
+//// items.filter { it.key == item }
+//// .forEach { stackTip = it.value.color.getChatColor() + it.value.text }
+//
+// if (stackTip.isNotEmpty()) {
+// GlStateManager.disableLighting()
+// GlStateManager.disableDepth()
+// GlStateManager.disableBlend()
+// event.fr.drawStringWithShadow(
+// stackTip,
+// (event.x + 17 - event.fr.getStringWidth(stackTip)).toFloat(),
+// (event.y + 9).toFloat(),
+// 16777215
+// )
+// GlStateManager.enableLighting()
+// GlStateManager.enableDepth()
+// }
+// }
+
+// @SubscribeEvent
+// fun onGuiDrawEvent(event: GuiContainerEvent.BackgroundDrawnEvent) {
+// if (!isEnabled())
+//
+// val guiContainer: GuiContainer? = event.gui
+// if (guiContainer != null && guiContainer !is GuiInventory) return
+// val chest = guiContainer.inventorySlots
+//
+//// val chestName = chest.lowerChestInventory.displayName.unformattedText.trim()
+//// if (chestName != "Spirit Leap") return
+//
+// for (slot in chest.inventorySlots) {
+// if (slot == null) continue
+//// if (slot.slotNumber == slot.slotIndex) continue
+// if (slot.stack == null) continue
+//
+// val stack = slot.stack
+//
+//// for ((item, text) in map) {
+//// if (item == stack) {
+//// slot highlight text.color
+//// }
+//// }
+// map.filter { it.key == stack }.forEach { slot highlight it.value.color }
+//
+//// slot highlight LorenzColor.WHITE
+//
+//// val displayName = stack.displayName
+//// if (displayName == " ") continue
+//
+//// val itemLore = stack.getLore()
+//// if (itemLore.size == 1 && itemLore[0] == "§eClick to teleport!") {
+////
+//// if (displayName.contains(witherDoorName)) {
+//// if (lastWitherDoorOpened + 10_000 > System.currentTimeMillis()) {
+//// slot highlight LorenzColor.YELLOW
+//// return
+//// }
+//// }
+//// if (displayName.contains(teleportName)) {
+//// if (lastTeleport + 10_000 > System.currentTimeMillis()) {
+//// slot highlight LorenzColor.AQUA
+//// return
+//// }
+//// }
+//// } else {
+//// //TODO hide the item totally?
+//// slot highlight LorenzColor.RED
+//// }
+//
+// }
+// }
+
+ private fun hasAbility(itemName: String): Ability? {
+ for (ability in Ability.values()) {
+ for (name in ability.itemNames) {
+ if (itemName.contains(name)) {
+ return ability
+ }
+ }
+ }
+ return null
+ }
+
+ enum class Ability(
+ val abilityName: String,
+ val cooldownInSeconds: Long,
+ vararg val itemNames: String,
+ var lastClick: Long = 0L,
+ val actionBarDetection: Boolean = true
+ ) {
+ ATOMSPLIT("Soulcry", 4, "Atomsplit Katana", "Vorpal Katana", "Voidedge Katana"),
+ WITHER_IMPACT("Wither Impact", 5, "Hyperion", "Scylla", "Valkyrie", "Astrea", actionBarDetection = false),
+
+ HEAL_1("Small Heal", 7, "Wand of Healing"),
+ HEAL_2("Medium Heal", 7, "Wand of Mending"),
+ HEAL_3("Big Heal", 7, "Wand of Restoration"),
+ HEAL_4("Huge Heal", 7, "Wand of Atonement"),
+
+ ICE_SPRAY("Ice Spray", 5, "Ice Spray Wand"),
+ GYRO("Gravity Storm", 30, "Gyrokinetic Wand"),
+ GIANTS_SWORD("Giant's Slam", 30, "Giant's Sword"),
+
+ STAR_FALL("Starfall", 2, "Starlight Wand"),
+ VODOO_DOLL("Acupuncture", 5, "Voodoo Doll"),
+ INK_WAND("Ink Bomb", 30, "Ink Wand"),
+ GOLEM_SWORD("Iron Punch", 3, "Golem Sword"),
+ EMBER_ROD("Fire Blast", 30, "Ember Rod"),
+ ENDER_BOW("Ender Warp", 30, "Ender Bow"),
+
+ LIVID_DAGGER("Throw", 5, "Livid Dagger"),
+ WEIRD_TUBA("Howl", 20, "Weird Tuba"),
+
+ ENDSTONE_SWORD("Extreme Focus", 5, "End Stone Sword"),
+ PIGMAN_SWORD("Burning Souls", 5, "Pigman Sword"),
+
+ SOULWARD("Soulward", 20, "Soul Esoward");
+
+ fun click() {
+ lastClick = System.currentTimeMillis()
+ }
+
+ fun isOnCooldown(): Boolean = lastClick + getCooldown() > System.currentTimeMillis()
+
+ fun getCooldown(): Long = cooldownInSeconds * 1000
+
+ fun getDurationText(): String {
+ var duration: Long = lastClick + getCooldown() - System.currentTimeMillis()
+ return if (duration < 1600) {
+ duration /= 100
+ var d = duration.toDouble()
+ d /= 10.0
+ LorenzUtils.formatDouble(d)
+ } else {
+ duration /= 1000
+ duration++
+ LorenzUtils.formatInteger(duration.toInt())
+ }
+ }
+
+ }
+
+ class ItemText(val color: LorenzColor, val text: String, val onCooldown: Boolean)
+} \ No newline at end of file
diff --git a/src/main/java/at/lorenz/mod/items/WitherImpactDetection.kt b/src/main/java/at/lorenz/mod/items/WitherImpactDetection.kt
new file mode 100644
index 000000000..5312e28a3
--- /dev/null
+++ b/src/main/java/at/lorenz/mod/items/WitherImpactDetection.kt
@@ -0,0 +1,65 @@
+package at.lorenz.mod.items
+
+import at.lorenz.mod.events.PacketEvent
+import at.lorenz.mod.utils.ItemUtil.asStringSet
+import at.lorenz.mod.utils.ItemUtil.getExtraAttributes
+import at.lorenz.mod.utils.LorenzUtils
+import net.minecraft.client.Minecraft
+import net.minecraft.init.Items
+import net.minecraft.network.play.client.C08PacketPlayerBlockPlacement
+import net.minecraft.network.play.server.S1CPacketEntityMetadata
+import net.minecraft.network.play.server.S2APacketParticles
+import net.minecraft.util.EnumParticleTypes
+import net.minecraftforge.common.util.Constants
+import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
+import net.minecraftforge.fml.common.gameevent.TickEvent
+
+/**
+ * Taken from Skytils under AGPL 3.0
+ * Modified
+ * https://github.com/Skytils/SkytilsMod/blob/1.x/LICENSE.md
+ * @author Skytils
+ */
+class WitherImpactDetection(private val itemAbilityCooldown: ItemAbilityCooldown) {
+
+ val S2APacketParticles.type: EnumParticleTypes
+ get() = this.particleType
+ var lastShieldUse = -1L
+ var lastShieldClick = 0L
+
+ @SubscribeEvent
+ fun onReceivePacket(event: PacketEvent.ReceiveEvent) {
+ val mc = Minecraft.getMinecraft()
+ if (!LorenzUtils.inSkyblock || mc.theWorld == null) return
+
+ event.packet.apply {
+
+ if (this is S1CPacketEntityMetadata && lastShieldClick != -1L && entityId == mc.thePlayer?.entityId && System.currentTimeMillis() - lastShieldClick <= 500 && func_149376_c()?.any { it.dataValueId == 17 } == true) {
+ lastShieldUse = System.currentTimeMillis()
+ lastShieldClick = -1
+ itemAbilityCooldown.clickWitherImpact()
+ }
+ }
+ }
+
+ @SubscribeEvent
+ fun onSendPacket(event: PacketEvent.SendEvent) {
+ val mc = Minecraft.getMinecraft()
+ if (!LorenzUtils.inSkyblock || lastShieldUse != -1L || mc.thePlayer?.heldItem == null) return
+ if (event.packet is C08PacketPlayerBlockPlacement && mc.thePlayer.heldItem.item == Items.iron_sword && getExtraAttributes(
+ mc.thePlayer.heldItem
+ )?.getTagList("ability_scroll", Constants.NBT.TAG_STRING)?.asStringSet()
+ ?.contains("WITHER_SHIELD_SCROLL") == true
+ ) {
+ lastShieldClick = System.currentTimeMillis()
+ }
+ }
+
+ @SubscribeEvent
+ fun onTick(event: TickEvent.ClientTickEvent) {
+ if (lastShieldUse != -1L) {
+ val diff = ((lastShieldUse + 5000 - System.currentTimeMillis()) / 1000f)
+ if (diff < 0) lastShieldUse = -1
+ }
+ }
+} \ No newline at end of file