mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-01 05:47:45 +01:00
Inline shift fields in EnumDirection (#5082)
This commit is contained in:
parent
0718db9f9a
commit
2f5eaee571
55
Spigot-Server-Patches/Inline-shift-direction-fields.patch
Normal file
55
Spigot-Server-Patches/Inline-shift-direction-fields.patch
Normal file
@ -0,0 +1,55 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Andrew Steinborn <git@steinborn.me>
|
||||
Date: Mon, 18 Jan 2021 20:45:25 -0500
|
||||
Subject: [PATCH] Inline shift direction fields
|
||||
|
||||
Removes a layer of indirection for EnumDirection.getAdjacent(X|Y|Z)(), which is in the
|
||||
critical section for much of the server, including the lighting engine.
|
||||
|
||||
diff --git a/src/main/java/net/minecraft/server/EnumDirection.java b/src/main/java/net/minecraft/server/EnumDirection.java
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/main/java/net/minecraft/server/EnumDirection.java
|
||||
+++ b/src/main/java/net/minecraft/server/EnumDirection.java
|
||||
@@ -0,0 +0,0 @@ public enum EnumDirection implements INamable {
|
||||
}, (enumdirection, enumdirection1) -> {
|
||||
throw new IllegalArgumentException("Duplicate keys");
|
||||
}, Long2ObjectOpenHashMap::new));
|
||||
+ // Paper start
|
||||
+ private final int adjX;
|
||||
+ private final int adjY;
|
||||
+ private final int adjZ;
|
||||
+ // Paper end
|
||||
|
||||
private EnumDirection(int i, int j, int k, String s, EnumDirection.EnumAxisDirection enumdirection_enumaxisdirection, EnumDirection.EnumAxis enumdirection_enumaxis, BaseBlockPosition baseblockposition) {
|
||||
this.g = i;
|
||||
@@ -0,0 +0,0 @@ public enum EnumDirection implements INamable {
|
||||
this.k = enumdirection_enumaxis;
|
||||
this.l = enumdirection_enumaxisdirection;
|
||||
this.m = baseblockposition;
|
||||
+ // Paper start
|
||||
+ this.adjX = baseblockposition.getX();
|
||||
+ this.adjY = baseblockposition.getY();
|
||||
+ this.adjZ = baseblockposition.getZ();
|
||||
+ // Paper end
|
||||
}
|
||||
|
||||
public static EnumDirection[] a(Entity entity) {
|
||||
@@ -0,0 +0,0 @@ public enum EnumDirection implements INamable {
|
||||
}
|
||||
|
||||
public int getAdjacentX() {
|
||||
- return this.m.getX();
|
||||
+ return this.adjX; // Paper
|
||||
}
|
||||
|
||||
public int getAdjacentY() {
|
||||
- return this.m.getY();
|
||||
+ return this.adjY; // Paper
|
||||
}
|
||||
|
||||
public int getAdjacentZ() {
|
||||
- return this.m.getZ();
|
||||
+ return this.adjZ; // Paper
|
||||
}
|
||||
|
||||
public String m() {
|
Loading…
Reference in New Issue
Block a user