2019-03-20 02:46:00 +01:00
|
|
|
From 4b2173326c910bed90cac49417bf04e35389fef6 Mon Sep 17 00:00:00 2001
|
2018-08-01 03:13:40 +02:00
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Tue, 31 Jul 2018 19:32:57 -0500
|
|
|
|
Subject: [PATCH] Make portal teleportation adjustment math more accurate
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EnumDirection.java b/src/main/java/net/minecraft/server/EnumDirection.java
|
2019-01-01 04:15:55 +01:00
|
|
|
index 13f0fb0b6..ce7181127 100644
|
2018-08-01 03:13:40 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EnumDirection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EnumDirection.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -82,6 +82,7 @@ public enum EnumDirection implements INamable {
|
2018-08-01 03:13:40 +02:00
|
|
|
return this.i;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public final EnumDirection.EnumAxisDirection getAxisDirection() { return c(); } // Paper - OBFHELPER
|
|
|
|
public EnumDirection.EnumAxisDirection c() {
|
|
|
|
return this.l;
|
|
|
|
}
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -90,6 +91,7 @@ public enum EnumDirection implements INamable {
|
2018-08-01 03:13:40 +02:00
|
|
|
return fromType1(this.h);
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public final EnumDirection rotateY() { return e(); } // Paper - OBFHELPER
|
|
|
|
public EnumDirection e() {
|
2019-01-01 04:15:55 +01:00
|
|
|
switch (this) {
|
2018-08-01 03:13:40 +02:00
|
|
|
case NORTH:
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -255,6 +257,7 @@ public enum EnumDirection implements INamable {
|
|
|
|
this.d = s;
|
2018-08-01 03:13:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+ public final int getOffset() { return a(); } // Paper - OBFHELPER
|
|
|
|
public int a() {
|
|
|
|
return this.c;
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/MathHelper.java b/src/main/java/net/minecraft/server/MathHelper.java
|
2019-01-01 04:15:55 +01:00
|
|
|
index 52918b971..8bb2593aa 100644
|
2018-08-01 03:13:40 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/MathHelper.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/MathHelper.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -81,6 +81,7 @@ public class MathHelper {
|
|
|
|
return f < f1 ? f1 : (f > f2 ? f2 : f);
|
2018-08-01 03:13:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+ public static double clamp(double d0, double d1, double d2) { return a(d0, d1, d2); } // Paper - OBFHELPER
|
|
|
|
public static double a(double d0, double d1, double d2) {
|
2019-01-01 04:15:55 +01:00
|
|
|
return d0 < d1 ? d1 : (d0 > d2 ? d2 : d0);
|
|
|
|
}
|
2018-08-01 03:13:40 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/PortalTravelAgent.java b/src/main/java/net/minecraft/server/PortalTravelAgent.java
|
2018-12-17 06:18:06 +01:00
|
|
|
index a24bd02d5..d30a8a6bd 100644
|
2018-08-01 03:13:40 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PortalTravelAgent.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PortalTravelAgent.java
|
|
|
|
@@ -208,11 +208,27 @@ public class PortalTravelAgent {
|
|
|
|
++d4;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start - Prevent portal suffocation (and therefore getting teleported up in an attempt to avoid it)
|
|
|
|
+ // Based on work by CarpetMod - Licensed GPL-3.0
|
|
|
|
+ double offset = (1.0D - entity.getPortalOffset().x) * (double) shapedetector_shapedetectorcollection.getWidth() * (double) shapedetector_shapedetectorcollection.getFacing().rotateY().getAxisDirection().getOffset();
|
|
|
|
+ double adjustedRadius = 1.02 * entity.width / 2;
|
|
|
|
+ if (adjustedRadius >= shapedetector_shapedetectorcollection.getWidth() - adjustedRadius) {
|
|
|
|
+ // entity wider than portal, place it in the middle
|
|
|
|
+ adjustedRadius = (double) shapedetector_shapedetectorcollection.getWidth() / 2 - 0.001;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (offset >= 0) {
|
|
|
|
+ offset = MathHelper.clamp(offset, adjustedRadius, (double) shapedetector_shapedetectorcollection.getWidth() - adjustedRadius);
|
|
|
|
+ } else {
|
|
|
|
+ offset = MathHelper.clamp(offset, (double) -shapedetector_shapedetectorcollection.getWidth() + adjustedRadius, -adjustedRadius);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
if (shapedetector_shapedetectorcollection.getFacing().k() == EnumDirection.EnumAxis.X) {
|
|
|
|
- d3 = d4 + (1.0D - entity.getPortalOffset().x) * (double) shapedetector_shapedetectorcollection.d() * (double) shapedetector_shapedetectorcollection.getFacing().e().c().a();
|
|
|
|
+ d3 = d4 + offset;
|
|
|
|
} else {
|
|
|
|
- d2 = d4 + (1.0D - entity.getPortalOffset().x) * (double) shapedetector_shapedetectorcollection.d() * (double) shapedetector_shapedetectorcollection.getFacing().e().c().a();
|
|
|
|
+ d2 = d4 + offset;
|
|
|
|
}
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
float f1 = 0.0F;
|
|
|
|
float f2 = 0.0F;
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/ShapeDetector.java b/src/main/java/net/minecraft/server/ShapeDetector.java
|
2019-01-01 04:15:55 +01:00
|
|
|
index 8ba4da0ea..8716f5fd9 100644
|
2018-08-01 03:13:40 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/ShapeDetector.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ShapeDetector.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -140,6 +140,7 @@ public class ShapeDetector {
|
2018-08-01 03:13:40 +02:00
|
|
|
return this.c;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public final int getWidth() { return this.d(); } // Paper - OBFHELPER
|
|
|
|
public int d() {
|
|
|
|
return this.e;
|
|
|
|
}
|
|
|
|
--
|
2019-03-20 02:46:00 +01:00
|
|
|
2.21.0
|
2018-08-01 03:13:40 +02:00
|
|
|
|