diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-17 14:29:40 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-17 14:29:40 +0100 |
commit | 3bf66dfec22249a793faea6b51911a004f28e2d6 (patch) | |
tree | 726f4464ab81eff15293dc144bee4f08ca96726c /src/main/java/at | |
parent | beb28a72410852cda6d2ad88287307e3ef8d6325 (diff) | |
download | skyhanni-3bf66dfec22249a793faea6b51911a004f28e2d6.tar.gz skyhanni-3bf66dfec22249a793faea6b51911a004f28e2d6.tar.bz2 skyhanni-3bf66dfec22249a793faea6b51911a004f28e2d6.zip |
Display garden height limit with F3+G on.
Diffstat (limited to 'src/main/java/at')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotAPI.kt | 29 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotBorders.kt | 2 |
2 files changed, 22 insertions, 9 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotAPI.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotAPI.kt index 7dde87771..f2f294d86 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotAPI.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotAPI.kt @@ -89,7 +89,6 @@ object GardenPlotAPI { !it.sprayHasNotified && it.sprayExpiryTime?.isInPast() == true } == true - fun Plot.markExpiredSprayAsNotified() { getData()?.apply { sprayHasNotified = true } } @@ -169,7 +168,12 @@ object GardenPlotAPI { fun getPlotByName(plotName: String) = plots.firstOrNull { it.name == plotName } - fun LorenzRenderWorldEvent.renderPlot(plot: Plot, lineColor: Color, cornerColor: Color) { + fun LorenzRenderWorldEvent.renderPlot( + plot: Plot, + lineColor: Color, + cornerColor: Color, + showBuildLimit: Boolean = false + ) { // These don't refer to Minecraft chunks but rather garden plots, but I use // the word chunk as the logic closely represents how chunk borders are rendered in latter mc versions @@ -181,7 +185,7 @@ object GardenPlotAPI { // Lowest point in the garden val minHeight = 66 - val maxHeight = 256 + val maxHeight = 66 + 36 // Render 4 vertical corners for (i in 0..plotSize step plotSize) { @@ -213,16 +217,25 @@ object GardenPlotAPI { } // Render horizontal - for (y in minHeight..maxHeight step 4) { + val buildLimit = minHeight + 11 + val ints = if (showBuildLimit) { + (minHeight..maxHeight step 4) + buildLimit + } else { + minHeight..maxHeight step 4 + } + for (y in ints) { val start = LorenzVec(chunkMinX, y, chunkMinZ) + val isRedLine = y == buildLimit + val color = if (isRedLine) Color.red else lineColor + val depth = if (isRedLine) 2 else 1 // (minX, minZ) -> (minX, minZ + 96) - tryDraw3DLine(start, start.add(z = plotSize), lineColor, 1, true) + tryDraw3DLine(start, start.add(z = plotSize), color, depth, true) // (minX, minZ + 96) -> (minX + 96, minZ + 96) - tryDraw3DLine(start.add(z = plotSize), start.add(x = plotSize, z = plotSize), lineColor, 1, true) + tryDraw3DLine(start.add(z = plotSize), start.add(x = plotSize, z = plotSize), color, depth, true) // (minX + 96, minZ + 96) -> (minX + 96, minZ) - tryDraw3DLine(start.add(x = plotSize, z = plotSize), start.add(x = plotSize), lineColor, 1, true) + tryDraw3DLine(start.add(x = plotSize, z = plotSize), start.add(x = plotSize), color, depth, true) // (minX + 96, minZ) -> (minX, minZ) - tryDraw3DLine(start.add(x = plotSize), start, lineColor, 1, true) + tryDraw3DLine(start.add(x = plotSize), start, color, depth, true) } } diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotBorders.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotBorders.kt index e9e651626..5fbebd263 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotBorders.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotBorders.kt @@ -36,7 +36,7 @@ object GardenPlotBorders { if (!isEnabled()) return if (!showBorders) return val plot = GardenPlotAPI.getCurrentPlot() ?: getClosestPlot() ?: return - event.renderPlot(plot, LorenzColor.YELLOW.toColor(), LorenzColor.DARK_BLUE.toColor()) + event.renderPlot(plot, LorenzColor.YELLOW.toColor(), LorenzColor.DARK_BLUE.toColor(), showBuildLimit = true) } private fun getClosestPlot(): GardenPlotAPI.Plot? = |