aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/minion/MinionFeatures.kt
blob: cbf3f7fd15625ccf438584d36cde14b04bdf07de (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
package at.hannibal2.skyhanni.features.minion

import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.data.IslandType
import at.hannibal2.skyhanni.events.ConfigLoadEvent
import at.hannibal2.skyhanni.events.LorenzChatEvent
import at.hannibal2.skyhanni.test.GriffinUtils.drawWaypointFilled
import at.hannibal2.skyhanni.utils.*
import at.hannibal2.skyhanni.utils.ItemUtils.getLore
import at.hannibal2.skyhanni.utils.ItemUtils.name
import at.hannibal2.skyhanni.utils.LorenzUtils.formatInteger
import at.hannibal2.skyhanni.utils.NumberUtil.romanToDecimal
import at.hannibal2.skyhanni.utils.RenderUtils.drawString
import at.hannibal2.skyhanni.utils.RenderUtils.renderString
import at.hannibal2.skyhanni.utils.StringUtils.matchRegex
import net.minecraft.client.Minecraft
import net.minecraft.entity.EntityLivingBase
import net.minecraft.entity.item.EntityArmorStand
import net.minecraftforge.client.event.GuiScreenEvent
import net.minecraftforge.client.event.RenderLivingEvent
import net.minecraftforge.client.event.RenderWorldLastEvent
import net.minecraftforge.event.world.WorldEvent
import net.minecraftforge.fml.common.eventhandler.EventPriority
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import net.minecraftforge.fml.common.gameevent.InputEvent
import net.minecraftforge.fml.common.gameevent.TickEvent
import org.lwjgl.input.Mouse
import java.awt.Color

class MinionFeatures {

    private var lastClickedEntity: LorenzVec? = null
    private var lastMinion: LorenzVec? = null
    private var lastMinionOpened = 0L
    private var minionInventoryOpen = false

    private var lastCoinsRecived = 0L
    private var lastMinionPickedUp = 0L
    private val minions = mutableMapOf<LorenzVec, MinionData>()
    private var coinsPerDay = ""

    @SubscribeEvent
    fun onConfigLoad(event: ConfigLoadEvent) {
        for (minion in SkyHanniMod.feature.hidden.minionLastClick) {
            val key = minion.key
            val vec = LorenzVec.decodeFromString(key)
            val name = SkyHanniMod.feature.hidden.minionName[key] ?: "§cNo name saved!"
            val data = MinionData(name, minion.value)
            minions[vec] = data
        }
    }

    @SubscribeEvent
    fun onClick(event: InputEvent.MouseInputEvent) {
        if (!LorenzUtils.inSkyBlock) return
        if (LorenzUtils.skyBlockIsland != IslandType.PRIVATE_ISLAND) return

        if (!Mouse.getEventButtonState()) return
        if (Mouse.getEventButton() != 1) return

        val minecraft = Minecraft.getMinecraft()
        val entity = minecraft.pointedEntity
        if (entity != null) {
            lastClickedEntity = entity.getLorenzVec()
        }
    }

    @SubscribeEvent
    fun onRenderLastClickedMinion(event: RenderWorldLastEvent) {
        if (!LorenzUtils.inSkyBlock) return
        if (LorenzUtils.skyBlockIsland != IslandType.PRIVATE_ISLAND) return
        if (!SkyHanniMod.feature.minions.lastClickedMinionDisplay) return

        val special = SkyHanniMod.feature.minions.lastOpenedMinionColor
        val color = Color(SpecialColour.specialToChromaRGB(special), true)

        val loc = lastMinion
        if (loc != null) {
            val time = SkyHanniMod.feature.minions.lastOpenedMinionTime * 1_000
            if (lastMinionOpened + time > System.currentTimeMillis()) {
                event.drawWaypointFilled(
                    loc.add(-0.5, 0.0, -0.5),
                    color,
                    true,
                    extraSize = -0.25,
                    extraSizeTopY = 0.2,
                    extraSizeBottomY = 0.0
                )
            }
        }
    }

    @SubscribeEvent
    fun onTick(event: TickEvent.ClientTickEvent) {
        if (LorenzUtils.skyBlockIsland != IslandType.PRIVATE_ISLAND) return

        val openInventory = InventoryUtils.currentlyOpenInventory()
        if (openInventory.contains("Minion")) {
            lastClickedEntity?.let {
                val name = getMinionName(openInventory)
                if (!minions.contains(it)) {
                    minions[it] = MinionData(name, 0)
                    saveConfig()
                } else {
                    if (minions[it]!!.name != name) {
                        minions[it]!!.name = name
                        saveConfig()
                    }
                }
                lastMinion = it
                lastClickedEntity = null
                minionInventoryOpen = true
                lastMinionOpened = 0
            }
        } else {
            if (minionInventoryOpen) {
                minionInventoryOpen = false
                lastMinionOpened = System.currentTimeMillis()

                val location = lastMinion
                if (location != null) {

                    if (System.currentTimeMillis() - lastCoinsRecived < 2_000) {
                        minions[location]!!.lastClicked = System.currentTimeMillis()
                        saveConfig()
                    }
                    if (location !in minions) {
                        minions[location]!!.lastClicked = 0
                    }

                    if (System.currentTimeMillis() - lastMinionPickedUp < 2_000) {
                        minions.remove(location)
                        saveConfig()
                    }
                }
            }
        }

        if (SkyHanniMod.feature.minions.hopperProfitDisplay) {
            coinsPerDay = if (minionInventoryOpen) {
                updateCoinsPerDay()
            } else {
                ""
            }
        }
    }

    private fun getMinionName(inventoryName: String): String {
        var list = inventoryName.split(" ").toList()
        val last = list.last()
        val number = last.romanToDecimal()
        list = list.dropLast(1)

        return list.joinToString(" ") + " $number"
    }

    private fun updateCoinsPerDay(): String {
        val loc = lastMinion!!
        val slot = InventoryUtils.getItemsInOpenChest().find { it.slotNumber == 28 } ?: return ""

        val stack = slot.stack
        val line = stack.getLore().find { it.contains("Held Coins") } ?: return ""

        if (coinsPerDay != "") return coinsPerDay

        val lastClicked = minions[loc]!!.lastClicked
        if (lastClicked == 0L) {
            return "Can't calculate coins/day: No time data available!"
        }
        val duration = System.currentTimeMillis() - lastClicked

        //§7Held Coins: §b151,389
        val coins = line.split(": §b")[1].replace(",", "").toDouble()

        val coinsPerDay = (coins / (duration.toDouble())) * 1000 * 60 * 60 * 24

        val format = formatInteger(coinsPerDay.toInt())
        val hopperName = stack.name
        return "§7Coins/day with $hopperName§7: §6$format coins"
    }

    private fun saveConfig() {
        val minionConfig = SkyHanniMod.feature.hidden.minionLastClick
        val minionName = SkyHanniMod.feature.hidden.minionName

        minionConfig.clear()
        minionName.clear()
        for (minion in minions) {
            val coordinates = minion.key.encodeToString()
            val data = minion.value
            minionConfig[coordinates] = data.lastClicked
            minionName[coordinates] = data.name
        }
    }

    @SubscribeEvent
    fun onWorldChange(event: WorldEvent.Load) {
        lastClickedEntity = null
        lastMinion = null
        lastMinionOpened = 0L
        minionInventoryOpen = false
    }

    @SubscribeEvent
    fun onChatMessage(event: LorenzChatEvent) {
        if (!LorenzUtils.inSkyBlock) return
        if (LorenzUtils.skyBlockIsland != IslandType.PRIVATE_ISLAND) return

        if (event.message.matchRegex("§aYou received §r§6(.*) coins§r§a!")) {
            lastCoinsRecived = System.currentTimeMillis()
        }
        if (event.message.startsWith("§aYou picked up a minion!")) {
            lastMinionPickedUp = System.currentTimeMillis()
        }
    }

    @SubscribeEvent
    fun onRenderLastEmptied(event: RenderWorldLastEvent) {
        if (!LorenzUtils.inSkyBlock) return
        if (LorenzUtils.skyBlockIsland != IslandType.PRIVATE_ISLAND) return

        val playerLocation = LocationUtils.playerLocation()
        val playerEyeLocation = LocationUtils.playerEyeLocation()
        for (minion in minions) {
            val location