2019-06-14 04:27:40 +02:00
|
|
|
From 1f43185dc8047a82ea2c66403d677b4ca4f8cfc5 Mon Sep 17 00:00:00 2001
|
2018-05-25 03:02:38 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Thu, 24 May 2018 21:01:13 -0400
|
2018-05-25 03:06:06 +02:00
|
|
|
Subject: [PATCH] Location.toBlockLocation/toCenterLocation()
|
2018-05-25 03:02:38 +02:00
|
|
|
|
|
|
|
Convert location objects to their block coordinates, or the center of the block
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/Location.java b/src/main/java/org/bukkit/Location.java
|
2019-06-06 17:36:57 +02:00
|
|
|
index 6021e6729..4f695faf4 100644
|
2018-05-25 03:02:38 +02:00
|
|
|
--- a/src/main/java/org/bukkit/Location.java
|
|
|
|
+++ b/src/main/java/org/bukkit/Location.java
|
2019-05-06 04:58:04 +02:00
|
|
|
@@ -534,6 +534,31 @@ public class Location implements Cloneable, ConfigurationSerializable {
|
2018-05-25 03:02:38 +02:00
|
|
|
}
|
|
|
|
|
2019-05-06 04:58:04 +02:00
|
|
|
public boolean isChunkLoaded() { return this.getWorld().isChunkLoaded(locToBlock(x) >> 4, locToBlock(z) >> 4); } // Paper
|
2018-05-25 03:02:38 +02:00
|
|
|
+
|
|
|
|
+ // Paper start
|
|
|
|
+ /**
|
|
|
|
+ * @return A new location where X/Y/Z are on the Block location (integer value of X/Y/Z)
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
2018-05-25 03:02:38 +02:00
|
|
|
+ public Location toBlockLocation() {
|
2018-05-25 03:06:06 +02:00
|
|
|
+ Location blockLoc = clone();
|
|
|
|
+ blockLoc.setX(getBlockX());
|
|
|
|
+ blockLoc.setY(getBlockY());
|
|
|
|
+ blockLoc.setZ(getBlockZ());
|
|
|
|
+ return blockLoc;
|
2018-05-25 03:02:38 +02:00
|
|
|
+ }
|
|
|
|
+ /**
|
2018-05-25 03:06:06 +02:00
|
|
|
+ * @return A new location where X/Y/Z are the center of the block
|
2018-05-25 03:02:38 +02:00
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
2018-05-25 03:06:06 +02:00
|
|
|
+ public Location toCenterLocation() {
|
|
|
|
+ Location centerLoc = clone();
|
|
|
|
+ centerLoc.setX(getBlockX() + 0.5);
|
|
|
|
+ centerLoc.setY(getBlockY() + 0.5);
|
|
|
|
+ centerLoc.setZ(getBlockZ() + 0.5);
|
|
|
|
+ return centerLoc;
|
2018-05-25 03:02:38 +02:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
@Override
|
|
|
|
public boolean equals(Object obj) {
|
|
|
|
if (obj == null) {
|
|
|
|
--
|
2019-03-20 01:28:15 +01:00
|
|
|
2.21.0
|
2018-05-25 03:02:38 +02:00
|
|
|
|