@@ -1,25 +1,7 @@
|
||||
--- a/net/minecraft/server/TickListServer.java
|
||||
+++ b/net/minecraft/server/TickListServer.java
|
||||
@@ -12,14 +12,15 @@
|
||||
import java.util.function.Function;
|
||||
import java.util.function.Predicate;
|
||||
import java.util.stream.Stream;
|
||||
+import org.bukkit.craftbukkit.util.HashTreeSet; // CraftBukkit
|
||||
|
||||
public class TickListServer<T> implements TickList<T> {
|
||||
|
||||
protected final Predicate<T> a;
|
||||
protected final Function<T, MinecraftKey> b;
|
||||
protected final Function<MinecraftKey, T> c;
|
||||
- protected final Set<NextTickListEntry<T>> nextTickListHash = Sets.newHashSet();
|
||||
- protected final TreeSet<NextTickListEntry<T>> nextTickList = new TreeSet();
|
||||
+ // protected final Set<NextTickListEntry<T>> nextTickListHash = Sets.newHashSet();
|
||||
+ protected final HashTreeSet<NextTickListEntry> nextTickList = new HashTreeSet<>(); // CraftBukkit - HashTreeSet
|
||||
private final WorldServer f;
|
||||
private final List<NextTickListEntry<T>> g = Lists.newArrayList();
|
||||
private final Consumer<NextTickListEntry<T>> h;
|
||||
@@ -35,16 +36,22 @@
|
||||
public void a() {
|
||||
@@ -37,11 +37,17 @@
|
||||
this.b();
|
||||
int i = this.nextTickList.size();
|
||||
|
||||
- if (i != this.nextTickListHash.size()) {
|
||||
@@ -37,48 +19,4 @@
|
||||
+ // CraftBukkit end
|
||||
}
|
||||
|
||||
this.f.getMethodProfiler().enter("cleaning");
|
||||
|
||||
- NextTickListEntry nextticklistentry;
|
||||
+ NextTickListEntry<T> nextticklistentry; // CraftBukkit - decompile error
|
||||
|
||||
for (int j = 0; j < i; ++j) {
|
||||
nextticklistentry = (NextTickListEntry) this.nextTickList.first();
|
||||
@@ -53,7 +60,7 @@
|
||||
}
|
||||
|
||||
this.nextTickList.remove(nextticklistentry);
|
||||
- this.nextTickListHash.remove(nextticklistentry);
|
||||
+ // this.nextTickListHash.remove(nextticklistentry); // CraftBukkit - use nextTickList
|
||||
this.g.add(nextticklistentry);
|
||||
}
|
||||
|
||||
@@ -122,7 +129,7 @@
|
||||
if (blockposition.getX() >= structureboundingbox.a && blockposition.getX() < structureboundingbox.d && blockposition.getZ() >= structureboundingbox.c && blockposition.getZ() < structureboundingbox.f) {
|
||||
if (flag) {
|
||||
if (i == 0) {
|
||||
- this.nextTickListHash.remove(nextticklistentry);
|
||||
+ // this.nextTickListHash.remove(nextticklistentry); // CraftBukkit - removed
|
||||
}
|
||||
|
||||
iterator.remove();
|
||||
@@ -196,7 +203,7 @@
|
||||
|
||||
@Override
|
||||
public boolean a(BlockPosition blockposition, T t0) {
|
||||
- return this.nextTickListHash.contains(new NextTickListEntry<>(blockposition, t0));
|
||||
+ return this.nextTickList.contains(new NextTickListEntry<>(blockposition, t0)); // CraftBukkit
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -220,8 +227,8 @@
|
||||
}
|
||||
|
||||
private void a(NextTickListEntry<T> nextticklistentry) {
|
||||
- if (!this.nextTickListHash.contains(nextticklistentry)) {
|
||||
- this.nextTickListHash.add(nextticklistentry);
|
||||
+ // CraftBukkit - use nextTickList
|
||||
+ if (!this.nextTickList.contains(nextticklistentry)) {
|
||||
this.nextTickList.add(nextticklistentry);
|
||||
}
|
||||
|
||||
this.h.getMethodProfiler().enter("selecting");
|
||||
|
||||
Reference in New Issue
Block a user