2019-03-24 18:16:59 +01:00
|
|
|
From 0c9f9a99d36b102cc16c1ac0c7482020fd4100a8 Mon Sep 17 00:00:00 2001
|
2018-10-09 03:14:55 +02:00
|
|
|
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
|
2019-03-24 18:16:59 +01:00
|
|
|
index 00000000..f52644fa
|
2018-10-09 03:14:55 +02:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/entity/TargetEntityInfo.java
|
2019-03-20 01:28:15 +01:00
|
|
|
@@ -0,0 +1,38 @@
|
2018-10-09 03:14:55 +02:00
|
|
|
+package com.destroystokyo.paper.entity;
|
|
|
|
+
|
|
|
|
+import org.bukkit.entity.Entity;
|
|
|
|
+import org.bukkit.util.Vector;
|
2019-03-20 01:28:15 +01:00
|
|
|
+import org.jetbrains.annotations.NotNull;
|
2018-10-09 03:14:55 +02:00
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * Represents information about a targeted entity
|
|
|
|
+ */
|
|
|
|
+public class TargetEntityInfo {
|
|
|
|
+ private final Entity entity;
|
|
|
|
+ private final Vector hitVec;
|
|
|
|
+
|
2019-03-20 01:28:15 +01:00
|
|
|
+ public TargetEntityInfo(@NotNull Entity entity, @NotNull Vector hitVec) {
|
2018-10-09 03:14:55 +02:00
|
|
|
+ this.entity = entity;
|
|
|
|
+ this.hitVec = hitVec;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Get the entity that is targeted
|
|
|
|
+ *
|
|
|
|
+ * @return Targeted entity
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
2018-10-09 03:14:55 +02:00
|
|
|
+ public Entity getEntity() {
|
|
|
|
+ return entity;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Get the position the entity is targeted at
|
|
|
|
+ *
|
|
|
|
+ * @return Targeted position
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
2018-10-09 03:14:55 +02:00
|
|
|
+ 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
|
2019-03-24 18:16:59 +01:00
|
|
|
index 4dec50ca..956d6886 100644
|
2018-10-09 03:14:55 +02:00
|
|
|
--- a/src/main/java/org/bukkit/entity/LivingEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/LivingEntity.java
|
2019-03-20 01:28:15 +01:00
|
|
|
@@ -150,6 +150,50 @@ public interface LivingEntity extends Attributable, Damageable, ProjectileSource
|
2018-10-09 03:14:55 +02:00
|
|
|
*/
|
|
|
|
@Nullable
|
2019-03-20 01:28:15 +01:00
|
|
|
public com.destroystokyo.paper.block.TargetBlockInfo getTargetBlockInfo(int maxDistance, @NotNull com.destroystokyo.paper.block.TargetBlockInfo.FluidMode fluidMode);
|
2018-10-09 03:14:55 +02:00
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 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
|
|
|
|
+ */
|
|
|
|
+ @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
|
|
|
|
+ * @param ignoreBlocks true to scan through blocks
|
|
|
|
+ * @return TargetEntityInfo about the entity being targeted,
|
|
|
|
+ * or null if no entity is targeted
|
|
|
|
+ */
|
|
|
|
+ @Nullable
|
|
|
|
+ public com.destroystokyo.paper.entity.TargetEntityInfo getTargetEntityInfo(int maxDistance, boolean ignoreBlocks);
|
|
|
|
// Paper end
|
|
|
|
|
|
|
|
/**
|
|
|
|
--
|
2019-03-24 18:16:59 +01:00
|
|
|
2.17.1
|
2018-10-09 03:14:55 +02:00
|
|
|
|