Skip to content

Commit 353913d

Browse files
authored
Merge pull request #568 from rfresh2/chestcounter
ChestCounter HUD element and StorageESP module list info
2 parents b9374bc + c97a47d commit 353913d

File tree

3 files changed

+90
-3
lines changed

3 files changed

+90
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
package com.lambda.client.gui.hudgui.elements.world
2+
3+
import com.lambda.client.event.SafeClientEvent
4+
import com.lambda.client.gui.hudgui.LabelHud
5+
import com.lambda.client.manager.managers.ChestCountManager
6+
7+
internal object ChestCounter : LabelHud(
8+
name = "ChestCounter",
9+
category = Category.WORLD,
10+
description = "Displays the number of chests and shulkers currently loaded"
11+
) {
12+
private val dubs by setting("Count Dubs", true, description = "Counts double chests instead of individual chests")
13+
private val shulkers by setting("Count Shulkers", true, description = "Counts shulkers in the world")
14+
15+
override fun SafeClientEvent.updateText() {
16+
if (dubs) {
17+
displayText.add("Dubs:", primaryColor)
18+
displayText.add("${ChestCountManager.dubsCount}", secondaryColor)
19+
displayText.add("Chests:", primaryColor)
20+
displayText.add("${ChestCountManager.chestCount - (ChestCountManager.dubsCount * 2)}", secondaryColor)
21+
} else {
22+
displayText.add("Chests:", primaryColor)
23+
displayText.add("${ChestCountManager.chestCount}", secondaryColor)
24+
}
25+
26+
if (!shulkers) return
27+
displayText.add("Shulkers:", primaryColor)
28+
displayText.add("${ChestCountManager.shulkerCount}", secondaryColor)
29+
}
30+
}
31+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
package com.lambda.client.manager.managers
2+
3+
import com.lambda.client.event.SafeClientEvent
4+
import com.lambda.client.gui.hudgui.elements.world.ChestCounter
5+
import com.lambda.client.manager.Manager
6+
import com.lambda.client.module.modules.render.StorageESP
7+
import com.lambda.client.util.TickTimer
8+
import com.lambda.client.util.TimeUnit
9+
import com.lambda.client.util.threads.defaultScope
10+
import com.lambda.client.util.threads.safeListener
11+
import kotlinx.coroutines.Job
12+
import kotlinx.coroutines.launch
13+
import net.minecraft.tileentity.TileEntityChest
14+
import net.minecraft.tileentity.TileEntityShulkerBox
15+
import net.minecraftforge.fml.common.gameevent.TickEvent
16+
17+
object ChestCountManager : Manager {
18+
private const val SEARCH_DELAY_TICKS = 5L
19+
private val delayTimer: TickTimer = TickTimer(TimeUnit.TICKS)
20+
var chestCount = 0
21+
private set
22+
var dubsCount = 0
23+
private set
24+
var shulkerCount = 0
25+
private set
26+
private var chestCountSearchJob: Job? = null
27+
28+
init {
29+
safeListener<TickEvent.ClientTickEvent> {
30+
if (it.phase != TickEvent.Phase.END) return@safeListener
31+
if (!ChestCounter.visible && !StorageESP.chestCountSetting) return@safeListener
32+
if (chestCountSearchJob?.isActive == true) return@safeListener
33+
if (!delayTimer.tick(SEARCH_DELAY_TICKS)) return@safeListener
34+
35+
chestCountSearchJob = defaultScope.launch {
36+
searchLoadedTileEntities()
37+
delayTimer.reset()
38+
}
39+
}
40+
}
41+
42+
private fun SafeClientEvent.searchLoadedTileEntities() {
43+
val chests = world.loadedTileEntityList.filterIsInstance<TileEntityChest>()
44+
45+
dubsCount = chests.count { it.adjacentChestXPos != null || it.adjacentChestZPos != null }
46+
chestCount = chests.size
47+
shulkerCount = world.loadedTileEntityList.filterIsInstance<TileEntityShulkerBox>().size
48+
}
49+
}

src/main/kotlin/com/lambda/client/module/modules/render/StorageESP.kt

+10-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package com.lambda.client.module.modules.render
33
import com.lambda.client.event.SafeClientEvent
44
import com.lambda.client.event.events.RenderWorldEvent
55
import com.lambda.client.event.listener.listener
6+
import com.lambda.client.manager.managers.ChestCountManager
67
import com.lambda.client.module.Category
78
import com.lambda.client.module.Module
89
import com.lambda.client.util.color.ColorHolder
@@ -39,7 +40,7 @@ object StorageESP : Module(
3940
private val dispenser by setting("Dispenser", false, { page == Page.TYPE })
4041
private val hopper by setting("Hopper", false, { page == Page.TYPE })
4142
private val cart by setting("Minecart", false, { page == Page.TYPE })
42-
private val infinite by setting("Infinite Range", true) // To avoid a hard to control range slider
43+
private val infinite by setting("Infinite Range", true, { page == Page.TYPE }) // To avoid a hard to control range slider
4344
private val range by setting("Range", 64, 8..512, 1, { page == Page.TYPE && !infinite }, unit = " blocks")
4445

4546
/* Color settings */
@@ -61,12 +62,18 @@ object StorageESP : Module(
6162
private val aTracer by setting("Tracer Alpha", 200, 0..255, 1, { page == Page.RENDER && tracer })
6263
private val thickness by setting("Line Thickness", 2.0f, 0.25f..5.0f, 0.25f, { page == Page.RENDER })
6364

65+
/* Count settings */
66+
val chestCountSetting by setting("Count", true, { page == Page.COUNT })
67+
private val dubs by setting("Dubs", true, visibility = { chestCountSetting && page == Page.COUNT})
68+
6469
private enum class Page {
65-
TYPE, COLOR, RENDER
70+
TYPE, COLOR, RENDER, COUNT
6671
}
6772

6873
override fun getHudInfo(): String {
69-
return renderer.size.toString()
74+
return if (chestCountSetting)
75+
(if(dubs) "${ChestCountManager.dubsCount}" else "${ChestCountManager.chestCount}")
76+
else ""
7077
}
7178

7279
private var cycler = HueCycler(600)

0 commit comments

Comments
 (0)