Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-14 20:10:05 +01:00
Move to MCUtil
Dieser Commit ist enthalten in:
Ursprung
dd06c40baa
Commit
364181d414
@ -4257,6 +4257,58 @@ index 0000000000000000000000000000000000000000..0449d4619e3a0752dea0981fb149542e
|
||||
+ asyncExecutor.execute(run);
|
||||
+ }
|
||||
+}
|
||||
diff --git a/src/main/java/io/papermc/paper/util/SizeLimitedSet.java b/src/main/java/io/papermc/paper/util/SizeLimitedSet.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..0ce9c117447ae07563c576944d2fc3f255d49cf1
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/io/papermc/paper/util/SizeLimitedSet.java
|
||||
@@ -0,0 +1,46 @@
|
||||
+package io.papermc.paper.util;
|
||||
+
|
||||
+import com.google.common.collect.ForwardingSet;
|
||||
+import java.util.Collection;
|
||||
+import java.util.Set;
|
||||
+import org.jspecify.annotations.NullMarked;
|
||||
+import org.jspecify.annotations.Nullable;
|
||||
+
|
||||
+@NullMarked
|
||||
+public class SizeLimitedSet<E> extends ForwardingSet<E> {
|
||||
+
|
||||
+ private final Set<E> delegate;
|
||||
+ private final int maxSize;
|
||||
+
|
||||
+ public SizeLimitedSet(final Set<E> delegate, final int maxSize) {
|
||||
+ this.delegate = delegate;
|
||||
+ this.maxSize = maxSize;
|
||||
+ }
|
||||
+
|
||||
+ @Override
|
||||
+ public boolean add(final E element) {
|
||||
+ if (this.size() >= this.maxSize) {
|
||||
+ return false;
|
||||
+ }
|
||||
+ return super.add(element);
|
||||
+ }
|
||||
+
|
||||
+ @Override
|
||||
+ public boolean addAll(final Collection<? extends @Nullable E> collection) {
|
||||
+ boolean edited = false;
|
||||
+
|
||||
+ for (final E element : collection) {
|
||||
+ if (this.size() >= this.maxSize) {
|
||||
+ break;
|
||||
+ }
|
||||
+
|
||||
+ edited |= super.add(element);
|
||||
+ }
|
||||
+ return edited;
|
||||
+ }
|
||||
+
|
||||
+ @Override
|
||||
+ protected Set<E> delegate() {
|
||||
+ return this.delegate;
|
||||
+ }
|
||||
+}
|
||||
diff --git a/src/main/java/io/papermc/paper/util/StackWalkerUtil.java b/src/main/java/io/papermc/paper/util/StackWalkerUtil.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..f7114d5b8f2f93f62883e24da29afaf9f74ee1a6
|
||||
|
@ -1,80 +0,0 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Intybyte <vaan.testwork@gmail.com>
|
||||
Date: Mon, 30 Sep 2024 17:16:36 +0200
|
||||
Subject: [PATCH] Create Limited set for Entity
|
||||
|
||||
|
||||
diff --git a/src/main/java/io/papermc/paper/util/SizeLimitedSet.java b/src/main/java/io/papermc/paper/util/SizeLimitedSet.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..0ce9c117447ae07563c576944d2fc3f255d49cf1
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/io/papermc/paper/util/SizeLimitedSet.java
|
||||
@@ -0,0 +1,46 @@
|
||||
+package io.papermc.paper.util;
|
||||
+
|
||||
+import com.google.common.collect.ForwardingSet;
|
||||
+import java.util.Collection;
|
||||
+import java.util.Set;
|
||||
+import org.jspecify.annotations.NullMarked;
|
||||
+import org.jspecify.annotations.Nullable;
|
||||
+
|
||||
+@NullMarked
|
||||
+public class SizeLimitedSet<E> extends ForwardingSet<E> {
|
||||
+
|
||||
+ private final Set<E> delegate;
|
||||
+ private final int maxSize;
|
||||
+
|
||||
+ public SizeLimitedSet(final Set<E> delegate, final int maxSize) {
|
||||
+ this.delegate = delegate;
|
||||
+ this.maxSize = maxSize;
|
||||
+ }
|
||||
+
|
||||
+ @Override
|
||||
+ public boolean add(final E element) {
|
||||
+ if (this.size() >= this.maxSize) {
|
||||
+ return false;
|
||||
+ }
|
||||
+ return super.add(element);
|
||||
+ }
|
||||
+
|
||||
+ @Override
|
||||
+ public boolean addAll(final Collection<? extends @Nullable E> collection) {
|
||||
+ boolean edited = false;
|
||||
+
|
||||
+ for (final E element : collection) {
|
||||
+ if (this.size() >= this.maxSize) {
|
||||
+ break;
|
||||
+ }
|
||||
+
|
||||
+ edited |= super.add(element);
|
||||
+ }
|
||||
+ return edited;
|
||||
+ }
|
||||
+
|
||||
+ @Override
|
||||
+ protected Set<E> delegate() {
|
||||
+ return this.delegate;
|
||||
+ }
|
||||
+}
|
||||
diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
|
||||
index 4b54d0ea31062972e68ee8fafe3cfaf68f65a5cd..2711cd3b13686efdb3227cf681ddcf98ee82fd06 100644
|
||||
--- a/src/main/java/net/minecraft/world/entity/Entity.java
|
||||
+++ b/src/main/java/net/minecraft/world/entity/Entity.java
|
||||
@@ -566,7 +566,7 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
||||
this.packetPositionCodec = new VecDeltaCodec();
|
||||
this.uuid = Mth.createInsecureUUID(this.random);
|
||||
this.stringUUID = this.uuid.toString();
|
||||
- this.tags = Sets.newHashSet();
|
||||
+ this.tags = new io.papermc.paper.util.SizeLimitedSet<>(new it.unimi.dsi.fastutil.objects.ObjectOpenHashSet<>(), MAX_ENTITY_TAG_COUNT);
|
||||
this.pistonDeltas = new double[]{0.0D, 0.0D, 0.0D};
|
||||
this.mainSupportingBlockPos = Optional.empty();
|
||||
this.onGroundNoBlocks = false;
|
||||
@@ -654,7 +654,7 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
||||
}
|
||||
|
||||
public boolean addTag(String tag) {
|
||||
- return this.tags.size() >= 1024 ? false : this.tags.add(tag);
|
||||
+ return this.tags.add(tag); // Paper - Create Limited set for Entity
|
||||
}
|
||||
|
||||
public boolean removeTag(String tag) {
|
@ -0,0 +1,28 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Intybyte <vaan.testwork@gmail.com>
|
||||
Date: Mon, 21 Oct 2024 01:41:04 +0200
|
||||
Subject: [PATCH] Create LimitedSet for entity scoreboard tags
|
||||
|
||||
|
||||
diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
|
||||
index 4b54d0ea31062972e68ee8fafe3cfaf68f65a5cd..2711cd3b13686efdb3227cf681ddcf98ee82fd06 100644
|
||||
--- a/src/main/java/net/minecraft/world/entity/Entity.java
|
||||
+++ b/src/main/java/net/minecraft/world/entity/Entity.java
|
||||
@@ -566,7 +566,7 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
||||
this.packetPositionCodec = new VecDeltaCodec();
|
||||
this.uuid = Mth.createInsecureUUID(this.random);
|
||||
this.stringUUID = this.uuid.toString();
|
||||
- this.tags = Sets.newHashSet();
|
||||
+ this.tags = new io.papermc.paper.util.SizeLimitedSet<>(new it.unimi.dsi.fastutil.objects.ObjectOpenHashSet<>(), MAX_ENTITY_TAG_COUNT);
|
||||
this.pistonDeltas = new double[]{0.0D, 0.0D, 0.0D};
|
||||
this.mainSupportingBlockPos = Optional.empty();
|
||||
this.onGroundNoBlocks = false;
|
||||
@@ -654,7 +654,7 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
||||
}
|
||||
|
||||
public boolean addTag(String tag) {
|
||||
- return this.tags.size() >= 1024 ? false : this.tags.add(tag);
|
||||
+ return this.tags.add(tag); // Paper - Create Limited set for Entity
|
||||
}
|
||||
|
||||
public boolean removeTag(String tag) {
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren