aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoman / Linnea Gräf <roman.graef@gmail.com>2023-05-27 19:23:19 +0200
committerGitHub <noreply@github.com>2023-05-27 19:23:19 +0200
commit3740ac08399d4c16802729511b5032e8f8ac6e14 (patch)
tree8d0a4d17cdc45583954915ef6052514e7e644cd9 /src
parent94c73a6eebe4ef07ea867036700bf24ab8b9db23 (diff)
downloadNotEnoughUpdates-3740ac08399d4c16802729511b5032e8f8ac6e14.tar.gz
NotEnoughUpdates-3740ac08399d4c16802729511b5032e8f8ac6e14.tar.bz2
NotEnoughUpdates-3740ac08399d4c16802729511b5032e8f8ac6e14.zip
Make builders ruler not work cross plot (#691)
Diffstat (limited to 'src')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CustomItemEffects.java27
-rw-r--r--src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/DevTestCommand.kt8
2 files changed, 33 insertions, 2 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CustomItemEffects.java b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CustomItemEffects.java
index c8c7a3da..55dedadf 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CustomItemEffects.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CustomItemEffects.java
@@ -24,6 +24,7 @@ import io.github.moulberry.notenoughupdates.autosubscribe.NEUAutoSubscribe;
import io.github.moulberry.notenoughupdates.util.SBInfo;
import io.github.moulberry.notenoughupdates.util.SpecialColour;
import io.github.moulberry.notenoughupdates.util.Utils;
+import lombok.var;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
@@ -53,6 +54,7 @@ import net.minecraft.util.AxisAlignedBB;
import net.minecraft.util.BlockPos;
import net.minecraft.util.EnumChatFormatting;
import net.minecraft.util.EnumFacing;
+import net.minecraft.util.MathHelper;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.util.Vec3;
import net.minecraft.util.Vec3i;
@@ -1003,6 +1005,11 @@ public class CustomItemEffects {
event.target.typeOfHit == MovingObjectPosition.MovingObjectType.BLOCK &&
NotEnoughUpdates.INSTANCE.config.itemOverlays.enableDirtWandOverlay) {
BlockPos hover = event.target.getBlockPos().offset(event.target.sideHit, 1);
+ if ("garden".equals(SBInfo.getInstance().getLocation()) &&
+ (hover.getX() > 239 || hover.getX() < -240 || hover.getZ() > 239 || hover.getZ() < -240 ||
+ hover.getY() <= 66 || hover.getY() > 76)) {
+ return;
+ }
IBlockState hoverState = Minecraft.getMinecraft().theWorld.getBlockState(event.target
.getBlockPos()
.offset(event.target.sideHit, 1));
@@ -1577,6 +1584,9 @@ public class CustomItemEffects {
(candidate.getY() + 0.5f - d1 - player.getEyeHeight()) *
(candidate.getY() + 0.5f - d1 - player.getEyeHeight()) +
(candidate.getZ() + 0.5f - d2) * (candidate.getZ() + 0.5f - d2));
+ if (candidate.getY() < 66 || candidate.getY() >= 76) {
+ continue;
+ }
candidatesOldSorted.computeIfAbsent(distSq, k -> new HashSet<>()).add(candidate);
candidatesOld.add(candidate);
@@ -1585,10 +1595,24 @@ public class CustomItemEffects {
Facing facing = Facing.forDirection(yaw);
int xOff = facing == Facing.WEST ? -1 : facing == Facing.EAST ? 1 : 0;
int zOff = facing == Facing.NORTH ? -1 : facing == Facing.SOUTH ? 1 : 0;
+ BlockPos posNew = candidate.add(xOff, 0, zOff);
+ if (
+ "garden".equals(SBInfo.getInstance().getLocation())
+ ) {
+ var plotX = MathHelper.floor_float((candidate.getX() + 48) / 96F);
+ var plotXNew = MathHelper.floor_float((posNew.getX() + 48) / 96F);
+ var plotZ = MathHelper.floor_float((candidate.getZ() + 48) / 96F);
+ var plotZNew = MathHelper.floor_float((posNew.getZ() + 48) / 96F);
+ if (plotX != plotXNew || plotZ != plotZNew) {
+ continue;
+ }
+ if (2 < plotXNew || plotXNew < -2 || 2 < plotZNew || plotZNew < -2) {
+ continue;
+ }
+ }
if (!sneaking) {
if (Minecraft.getMinecraft().theWorld.getBlockState(candidate.add(xOff, 1, zOff)).getBlock() == Blocks.air) {
- BlockPos posNew = candidate.add(xOff, 0, zOff);
if (!candidatesOld.contains(posNew) && !candidates.contains(posNew) && !candidatesNew.contains(posNew)) {
IBlockState blockNew = Minecraft.getMinecraft().theWorld.getBlockState(posNew.add(0, 1, 0));
if (blockNew.getBlock() == Blocks.air) {
@@ -1601,7 +1625,6 @@ public class CustomItemEffects {
} else {
if (Minecraft.getMinecraft().theWorld.getBlockState(candidate.add(xOff, 0, zOff)).getBlock()
== Minecraft.getMinecraft().theWorld.getBlockState(target.getBlockPos()).getBlock()) {
- BlockPos posNew = candidate.add(xOff, 0, zOff);
if (!candidatesOld.contains(posNew) && !candidates.contains(posNew) && !candidatesNew.contains(posNew)) {
IBlockState blockNew = Minecraft.getMinecraft().theWorld.getBlockState(posNew.add(0, 0, 0));
if (blockNew.getBlock() ==
diff --git a/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/DevTestCommand.kt b/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/DevTestCommand.kt
index 93c4ab90..bc1a0c74 100644
--- a/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/DevTestCommand.kt
+++ b/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/DevTestCommand.kt
@@ -47,6 +47,7 @@ import net.minecraftforge.common.MinecraftForge
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import java.util.function.Predicate
import kotlin.math.floor
+import kotlin.math.nextDown
@NEUAutoSubscribe
class DevTestCommand {
@@ -107,6 +108,13 @@ class DevTestCommand {
requires {
canPlayerExecute(it)
}
+ thenLiteralExecute("garden") {
+ val player = Minecraft.getMinecraft().thePlayer
+ reply("Is in Garden: ${SBInfo.getInstance().getLocation() == "garden"}")
+ val pp = player.position
+ reply("Plot X: ${floor((pp.getX() + 48) / 96F)}")
+ reply("Plot Z: ${floor((pp.getZ() + 48) / 96F)}")
+ }.withHelp("Show diagnostics information about the garden")
thenLiteralExecute("profileinfo") {
val currentProfile = SBInfo.getInstance().currentProfile
val gamemode = SBInfo.getInstance().getGamemodeForProfile(currentProfile)