Skip to content

Commit c97a47d

Browse files
committed
Refactor
1 parent 7165d1a commit c97a47d

File tree

3 files changed

+22
-26
lines changed

3 files changed

+22
-26
lines changed

src/main/kotlin/com/lambda/client/gui/hudgui/elements/world/ChestCounter.kt

+10-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,16 @@ internal object ChestCounter : LabelHud(
1313
private val shulkers by setting("Count Shulkers", true, description = "Counts shulkers in the world")
1414

1515
override fun SafeClientEvent.updateText() {
16-
displayText.add(if (dubs) "Dubs:" else "Chests:", primaryColor)
17-
displayText.add(if (dubs) "${ChestCountManager.dubsCount}" else "${ChestCountManager.chestCount}", secondaryColor)
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+
1826
if (!shulkers) return
1927
displayText.add("Shulkers:", primaryColor)
2028
displayText.add("${ChestCountManager.shulkerCount}", secondaryColor)
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package com.lambda.client.manager.managers
22

3-
import com.lambda.client.LambdaMod
43
import com.lambda.client.event.SafeClientEvent
54
import com.lambda.client.gui.hudgui.elements.world.ChestCounter
65
import com.lambda.client.manager.Manager
@@ -16,7 +15,7 @@ import net.minecraft.tileentity.TileEntityShulkerBox
1615
import net.minecraftforge.fml.common.gameevent.TickEvent
1716

1817
object ChestCountManager : Manager {
19-
private const val searchDelayTicks = 5L
18+
private const val SEARCH_DELAY_TICKS = 5L
2019
private val delayTimer: TickTimer = TickTimer(TimeUnit.TICKS)
2120
var chestCount = 0
2221
private set
@@ -31,31 +30,20 @@ object ChestCountManager : Manager {
3130
if (it.phase != TickEvent.Phase.END) return@safeListener
3231
if (!ChestCounter.visible && !StorageESP.chestCountSetting) return@safeListener
3332
if (chestCountSearchJob?.isActive == true) return@safeListener
34-
if (delayTimer.tick(searchDelayTicks)) {
35-
chestCountSearchJob = defaultScope.launch {
36-
searchLoadedTileEntities()
37-
delayTimer.reset()
38-
}
33+
if (!delayTimer.tick(SEARCH_DELAY_TICKS)) return@safeListener
34+
35+
chestCountSearchJob = defaultScope.launch {
36+
searchLoadedTileEntities()
37+
delayTimer.reset()
3938
}
4039
}
4140
}
4241

4342
private fun SafeClientEvent.searchLoadedTileEntities() {
44-
try {
45-
var dubsC = 0
46-
var chestC = 0
47-
var shulkC = 0
48-
for (tileEntity in world.loadedTileEntityList) {
49-
if (tileEntity is TileEntityChest) {
50-
chestC++
51-
if (tileEntity.adjacentChestXPos != null || tileEntity.adjacentChestZPos != null) dubsC++
52-
} else if (tileEntity is TileEntityShulkerBox) shulkC++
53-
}
54-
dubsCount = dubsC
55-
chestCount = chestC
56-
shulkerCount = shulkC
57-
} catch (e: Exception) {
58-
LambdaMod.LOG.error("ChestCounter: Error searching loaded tile entities", e)
59-
}
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
6048
}
6149
}

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ object StorageESP : Module(
4040
private val dispenser by setting("Dispenser", false, { page == Page.TYPE })
4141
private val hopper by setting("Hopper", false, { page == Page.TYPE })
4242
private val cart by setting("Minecart", false, { page == Page.TYPE })
43-
private val infinite by setting("Infinite Range", true, { page == Page.TYPE}) // 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
4444
private val range by setting("Range", 64, 8..512, 1, { page == Page.TYPE && !infinite }, unit = " blocks")
4545

4646
/* Color settings */

0 commit comments

Comments
 (0)