aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/dulkirmod/features/Croesus.kt
blob: 36bf3ee25f1ab1b53ce641df05e9ff909451ac65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package dulkirmod.features

import dulkirmod.DulkirMod.Companion.mc
import dulkirmod.config.Config
import dulkirmod.utils.ContainerNameUtil
import net.minecraft.client.gui.inventory.GuiChest
import net.minecraft.inventory.Slot
import net.minecraft.nbt.NBTTagList
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import net.minecraftforge.fml.common.gameevent.TickEvent

class Croesus {

    var lastGuiOpenEvent: Long = 0
    var lastPageNumber = 1

    @SubscribeEvent
    fun onTick(event: TickEvent.ClientTickEvent) {
        val lastInCroesus = inCroesusBool
        var pageNumber = 1

        if (!Config.hideOpenedChests) return
        if (mc.currentScreen == null || !(mc.currentScreen is GuiChest)) {
            inCroesusBool = false
            return
        }
        inCroesusBool = (ContainerNameUtil.currentGuiChestName == "Croesus")

        if (inCroesusBool) {
            pageNumber = findPageNumber()
        }

        // weird way of detecting page turn
        if(lastPageNumber != pageNumber)
            lastGuiOpenEvent = System.currentTimeMillis()

        if (inCroesusBool && !lastInCroesus) {
            lastGuiOpenEvent = System.currentTimeMillis()
        }

        if (inCroesusBool && System.currentTimeMillis() - lastGuiOpenEvent < 300) {
            for (i in 9..44) {
                boolArray[i - 9] = false
                val slotIn = mc.thePlayer.openContainer.getSlot(i)

                if (slotIn.stack == null) continue
                val stack = slotIn.stack

                val tagList: NBTTagList = stack.getSubCompound("display", false)?.getTagList("Lore", 8) ?: continue
                for (j in 0 until tagList.tagCount()) {
                    if (tagList.getStringTagAt(j) == "§aChests have been opened!") boolArray[i - 9] = true
                }
            }
        }
    }

    private fun findPageNumber(): Int {
        val stackPrev = mc.thePlayer.openContainer.getSlot(45).stack ?: return lastPageNumber

        val stackPrevLore = stackPrev.getSubCompound("display", false)?.getTagList("Lore", 8) ?: return 1

        if (stackPrevLore.getStringTagAt(0).contains("1")) return 2

        return 3
    }

    companion object {
        var inCroesusBool: Boolean = false
        var boolArray = BooleanArray(36) { false }

        fun inCroesus(): Boolean {
            return inCroesusBool
        }

        fun isChestOpened(slotIn: Slot): Boolean {
            if (!inCroesusBool) return false
            if (slotIn.inventory == mc.thePlayer.inventory) return false
            val slotindex = slotIn.slotIndex
            if (slotindex !in 9..44) return false
            return boolArray[slotindex - 9]
        }
    }
}