2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: BillyGalbreath <Blake.Galbreath@GMail.com>
|
|
|
|
Date: Sat, 22 Sep 2018 00:32:53 -0500
|
|
|
|
Subject: [PATCH] Add LivingEntity#getTargetEntity
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/entity/TargetEntityInfo.java b/src/main/java/com/destroystokyo/paper/entity/TargetEntityInfo.java
|
|
|
|
new file mode 100644
|
2022-12-15 18:10:03 +01:00
|
|
|
index 0000000000000000000000000000000000000000..af8765b213390cf75fe02a6eb68aecf7a06d5acf
|
2021-06-11 14:02:28 +02:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/entity/TargetEntityInfo.java
|
2022-12-15 18:10:03 +01:00
|
|
|
@@ -0,0 +1,40 @@
|
2021-06-11 14:02:28 +02:00
|
|
|
+package com.destroystokyo.paper.entity;
|
|
|
|
+
|
|
|
|
+import org.bukkit.entity.Entity;
|
|
|
|
+import org.bukkit.util.Vector;
|
|
|
|
+import org.jetbrains.annotations.NotNull;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * Represents information about a targeted entity
|
2022-12-15 18:10:03 +01:00
|
|
|
+ * @deprecated use {@link org.bukkit.util.RayTraceResult}
|
2021-06-11 14:02:28 +02:00
|
|
|
+ */
|
2022-12-15 18:10:03 +01:00
|
|
|
+@Deprecated(forRemoval = true)
|
2021-06-11 14:02:28 +02:00
|
|
|
+public class TargetEntityInfo {
|
|
|
|
+ private final Entity entity;
|
|
|
|
+ private final Vector hitVec;
|
|
|
|
+
|
|
|
|
+ public TargetEntityInfo(@NotNull Entity entity, @NotNull Vector hitVec) {
|
|
|
|
+ this.entity = entity;
|
|
|
|
+ this.hitVec = hitVec;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Get the entity that is targeted
|
|
|
|
+ *
|
|
|
|
+ * @return Targeted entity
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ public Entity getEntity() {
|
|
|
|
+ return entity;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Get the position the entity is targeted at
|
|
|
|
+ *
|
|
|
|
+ * @return Targeted position
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ public Vector getHitVector() {
|
|
|
|
+ return hitVec;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/LivingEntity.java b/src/main/java/org/bukkit/entity/LivingEntity.java
|
2023-12-25 23:51:56 +01:00
|
|
|
index b7bf0cc404634693d03c6700dc50c92697951c37..47c4096699bc0334eacf10b6403c4a4329797f0e 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/entity/LivingEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/LivingEntity.java
|
2023-12-25 23:51:56 +01:00
|
|
|
@@ -175,6 +175,77 @@ public interface LivingEntity extends Attributable, Damageable, ProjectileSource
|
2022-12-15 18:10:03 +01:00
|
|
|
@Deprecated(forRemoval = true)
|
2021-06-11 14:02:28 +02:00
|
|
|
@Nullable
|
|
|
|
public com.destroystokyo.paper.block.TargetBlockInfo getTargetBlockInfo(int maxDistance, @NotNull com.destroystokyo.paper.block.TargetBlockInfo.FluidMode fluidMode);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets information about the entity being targeted
|
|
|
|
+ *
|
|
|
|
+ * @param maxDistance this is the maximum distance to scan
|
|
|
|
+ * @return entity being targeted, or null if no entity is targeted
|
|
|
|
+ */
|
|
|
|
+ @Nullable
|
|
|
|
+ public default Entity getTargetEntity(int maxDistance) {
|
|
|
|
+ return getTargetEntity(maxDistance, false);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets information about the entity being targeted
|
|
|
|
+ *
|
|
|
|
+ * @param maxDistance this is the maximum distance to scan
|
|
|
|
+ * @param ignoreBlocks true to scan through blocks
|
|
|
|
+ * @return entity being targeted, or null if no entity is targeted
|
|
|
|
+ */
|
|
|
|
+ @Nullable
|
|
|
|
+ public Entity getTargetEntity(int maxDistance, boolean ignoreBlocks);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets information about the entity being targeted
|
|
|
|
+ *
|
|
|
|
+ * @param maxDistance this is the maximum distance to scan
|
|
|
|
+ * @return TargetEntityInfo about the entity being targeted,
|
|
|
|
+ * or null if no entity is targeted
|
2022-12-15 18:10:03 +01:00
|
|
|
+ * @deprecated use {@link #rayTraceEntities(int)}
|
2021-06-11 14:02:28 +02:00
|
|
|
+ */
|
2022-12-15 18:10:03 +01:00
|
|
|
+ @Deprecated(forRemoval = true)
|
2021-06-11 14:02:28 +02:00
|
|
|
+ @Nullable
|
|
|
|
+ public default com.destroystokyo.paper.entity.TargetEntityInfo getTargetEntityInfo(int maxDistance) {
|
|
|
|
+ return getTargetEntityInfo(maxDistance, false);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets information about the entity being targeted
|
|
|
|
+ *
|
|
|
|
+ * @param maxDistance this is the maximum distance to scan
|
2022-12-15 18:10:03 +01:00
|
|
|
+ * @return RayTraceResult about the entity being targeted,
|
|
|
|
+ * or null if no entity is targeted
|
|
|
|
+ */
|
|
|
|
+ @Nullable
|
|
|
|
+ default RayTraceResult rayTraceEntities(int maxDistance) {
|
|
|
|
+ return this.rayTraceEntities(maxDistance, false);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets information about the entity being targeted
|
|
|
|
+ *
|
|
|
|
+ * @param maxDistance this is the maximum distance to scan
|
2021-06-11 14:02:28 +02:00
|
|
|
+ * @param ignoreBlocks true to scan through blocks
|
|
|
|
+ * @return TargetEntityInfo about the entity being targeted,
|
|
|
|
+ * or null if no entity is targeted
|
2022-12-15 18:10:03 +01:00
|
|
|
+ * @deprecated use {@link #rayTraceEntities(int, boolean)}
|
2021-06-11 14:02:28 +02:00
|
|
|
+ */
|
2022-12-15 18:10:03 +01:00
|
|
|
+ @Deprecated(forRemoval = true)
|
2021-06-11 14:02:28 +02:00
|
|
|
+ @Nullable
|
|
|
|
+ public com.destroystokyo.paper.entity.TargetEntityInfo getTargetEntityInfo(int maxDistance, boolean ignoreBlocks);
|
2022-12-15 18:10:03 +01:00
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets information about the entity being targeted
|
|
|
|
+ *
|
|
|
|
+ * @param maxDistance this is the maximum distance to scan
|
|
|
|
+ * @param ignoreBlocks true to scan through blocks
|
|
|
|
+ * @return RayTraceResult about the entity being targeted,
|
|
|
|
+ * or null if no entity is targeted
|
|
|
|
+ */
|
|
|
|
+ @Nullable
|
|
|
|
+ RayTraceResult rayTraceEntities(int maxDistance, boolean ignoreBlocks);
|
2021-06-11 14:02:28 +02:00
|
|
|
// Paper end
|
|
|
|
|
|
|
|
/**
|