2018-01-19 06:38:49 +01:00
|
|
|
From 96b4614b35bf8df7a2d95c91f6b7df1b05641359 Mon Sep 17 00:00:00 2001
|
2018-01-16 04:13:17 +01:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Mon, 15 Jan 2018 22:11:48 -0500
|
|
|
|
Subject: [PATCH] Basic PlayerProfile API
|
|
|
|
|
|
|
|
|
2018-01-19 06:03:09 +01:00
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/profile/CraftPlayerProfile.java b/src/main/java/com/destroystokyo/paper/profile/CraftPlayerProfile.java
|
2018-01-16 04:13:17 +01:00
|
|
|
new file mode 100644
|
2018-01-19 06:38:49 +01:00
|
|
|
index 000000000..6868ee9a4
|
2018-01-16 04:13:17 +01:00
|
|
|
--- /dev/null
|
2018-01-19 06:03:09 +01:00
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/profile/CraftPlayerProfile.java
|
2018-01-19 06:38:49 +01:00
|
|
|
@@ -0,0 +1,133 @@
|
2018-01-16 04:13:17 +01:00
|
|
|
+package com.destroystokyo.paper.profile;
|
|
|
|
+
|
|
|
|
+import com.mojang.authlib.GameProfile;
|
|
|
|
+import com.mojang.authlib.properties.Property;
|
|
|
|
+import com.mojang.authlib.properties.PropertyMap;
|
|
|
|
+
|
|
|
|
+import javax.annotation.Nonnull;
|
|
|
|
+import javax.annotation.Nullable;
|
|
|
|
+import java.util.Collection;
|
|
|
|
+import java.util.Set;
|
|
|
|
+import java.util.UUID;
|
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
+
|
2018-01-19 06:03:09 +01:00
|
|
|
+public class CraftPlayerProfile implements PlayerProfile {
|
2018-01-16 04:13:17 +01:00
|
|
|
+
|
|
|
|
+ private final GameProfile profile;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Constructs a new Game Profile with the specified ID and name.
|
|
|
|
+ * <p/>
|
|
|
|
+ * Either ID or name may be null/empty, but at least one must be filled.
|
|
|
|
+ *
|
|
|
|
+ * @param id Unique ID of the profile
|
|
|
|
+ * @param name Display name of the profile
|
|
|
|
+ * @throws IllegalArgumentException Both ID and name are either null or empty
|
|
|
|
+ */
|
2018-01-19 06:03:09 +01:00
|
|
|
+ public CraftPlayerProfile(UUID id, String name) {
|
2018-01-16 04:13:17 +01:00
|
|
|
+ this.profile = new GameProfile(id, name);
|
|
|
|
+ }
|
|
|
|
+
|
2018-01-19 06:38:49 +01:00
|
|
|
+ public CraftPlayerProfile(GameProfile profile) {
|
|
|
|
+ this.profile = profile;
|
|
|
|
+ }
|
|
|
|
+
|
2018-01-16 04:13:17 +01:00
|
|
|
+ public GameProfile getGameProfile() {
|
|
|
|
+ return profile;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Nullable
|
|
|
|
+ @Override
|
|
|
|
+ public UUID getId() {
|
|
|
|
+ return profile.getId();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Nonnull
|
|
|
|
+ @Override
|
|
|
|
+ public Set<ProfileProperty> getProperties() {
|
2018-01-19 06:03:09 +01:00
|
|
|
+ return profile.getProperties().values().stream().map(CraftPlayerProfile::toBukkit).collect(Collectors.toSet());
|
2018-01-16 04:13:17 +01:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Nullable
|
|
|
|
+ @Override
|
|
|
|
+ public String getName() {
|
|
|
|
+ return profile.getName();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public boolean equals(Object o) {
|
|
|
|
+ return profile.equals(o);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public int hashCode() {
|
|
|
|
+ return profile.hashCode();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public String toString() {
|
|
|
|
+ return profile.toString();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
2018-01-19 06:38:49 +01:00
|
|
|
+ public CraftPlayerProfile clone() {
|
|
|
|
+ CraftPlayerProfile clone = new CraftPlayerProfile(this.getId(), this.getName());
|
|
|
|
+ clone.setProperties(getProperties());
|
|
|
|
+ return clone;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
2018-01-16 04:13:17 +01:00
|
|
|
+ public void setProperty(ProfileProperty property) {
|
|
|
|
+ String name = property.getName();
|
|
|
|
+ PropertyMap properties = profile.getProperties();
|
|
|
|
+ properties.removeAll(name);
|
|
|
|
+ properties.put(name, new Property(name, property.getValue(), property.getSignature()));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void setProperties(Collection<ProfileProperty> properties) {
|
|
|
|
+ properties.forEach(this::setProperty);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public boolean removeProperty(String property) {
|
|
|
|
+ return !profile.getProperties().removeAll(property).isEmpty();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void clearProperties() {
|
|
|
|
+ profile.getProperties().clear();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public boolean isComplete() {
|
|
|
|
+ return profile.isComplete();
|
|
|
|
+ }
|
|
|
|
+
|
2018-01-19 06:03:09 +01:00
|
|
|
+ private static ProfileProperty toBukkit(Property property) {
|
2018-01-16 04:13:17 +01:00
|
|
|
+ return new ProfileProperty(property.getName(), property.getValue(), property.getSignature());
|
|
|
|
+ }
|
2018-01-19 06:03:09 +01:00
|
|
|
+
|
2018-01-19 06:38:49 +01:00
|
|
|
+ public static PlayerProfile asBukkitCopy(GameProfile gameProfile) {
|
2018-01-19 06:03:09 +01:00
|
|
|
+ PlayerProfile profile = new CraftPlayerProfile(gameProfile.getId(), gameProfile.getName());
|
|
|
|
+ gameProfile.getProperties().values().forEach(property -> profile.setProperty(toBukkit(property)));
|
|
|
|
+ return profile;
|
|
|
|
+ }
|
|
|
|
+
|
2018-01-19 06:38:49 +01:00
|
|
|
+ public static PlayerProfile asBukkitMirror(GameProfile profile) {
|
|
|
|
+ return new CraftPlayerProfile(profile);
|
|
|
|
+ }
|
|
|
|
+
|
2018-01-19 06:03:09 +01:00
|
|
|
+ public static Property asAuthlib(ProfileProperty property) {
|
|
|
|
+ return new Property(property.getName(), property.getValue(), property.getSignature());
|
|
|
|
+ }
|
2018-01-19 06:38:49 +01:00
|
|
|
+ public static GameProfile asAuthlibCopy(PlayerProfile profile) {
|
|
|
|
+ CraftPlayerProfile craft = ((CraftPlayerProfile) profile);
|
|
|
|
+ return asAuthlib(craft.clone());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public static GameProfile asAuthlib(PlayerProfile profile) {
|
|
|
|
+ CraftPlayerProfile craft = ((CraftPlayerProfile) profile);
|
|
|
|
+ return craft.getGameProfile();
|
|
|
|
+ }
|
2018-01-16 04:13:17 +01:00
|
|
|
+}
|
2018-01-19 06:12:03 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/MCUtil.java b/src/main/java/net/minecraft/server/MCUtil.java
|
2018-01-19 06:38:49 +01:00
|
|
|
index 02940d697..4539b5601 100644
|
2018-01-19 06:12:03 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/MCUtil.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/MCUtil.java
|
|
|
|
@@ -1,6 +1,9 @@
|
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
+import com.destroystokyo.paper.profile.CraftPlayerProfile;
|
|
|
|
+import com.destroystokyo.paper.profile.PlayerProfile;
|
|
|
|
import com.google.common.util.concurrent.ThreadFactoryBuilder;
|
|
|
|
+import com.mojang.authlib.GameProfile;
|
|
|
|
import org.apache.commons.lang.exception.ExceptionUtils;
|
|
|
|
import org.bukkit.Location;
|
|
|
|
import org.bukkit.craftbukkit.CraftWorld;
|
|
|
|
@@ -66,6 +69,10 @@ public final class MCUtil {
|
|
|
|
return run.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public static PlayerProfile toBukkit(GameProfile profile) {
|
2018-01-19 06:38:49 +01:00
|
|
|
+ return CraftPlayerProfile.asBukkitMirror(profile);
|
2018-01-19 06:12:03 +01:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
/**
|
|
|
|
* Calculates distance between 2 entities
|
|
|
|
* @param e1
|
2018-01-16 04:13:17 +01:00
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2018-01-19 06:03:09 +01:00
|
|
|
index 8d0a9e8ca..f0ae65f08 100644
|
2018-01-16 04:13:17 +01:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
|
|
@@ -135,6 +135,10 @@ import org.bukkit.craftbukkit.util.CraftNamespacedKey;
|
|
|
|
import org.bukkit.event.server.TabCompleteEvent;
|
|
|
|
import net.md_5.bungee.api.chat.BaseComponent;
|
|
|
|
|
|
|
|
+import javax.annotation.Nullable; // Paper
|
|
|
|
+import javax.annotation.Nonnull; // Paper
|
|
|
|
+
|
|
|
|
+
|
|
|
|
public final class CraftServer implements Server {
|
|
|
|
private final String serverName = "Paper";
|
|
|
|
private final String serverVersion;
|
|
|
|
@@ -1923,5 +1927,17 @@ public final class CraftServer implements Server {
|
|
|
|
public boolean suggestPlayerNamesWhenNullTabCompletions() {
|
|
|
|
return com.destroystokyo.paper.PaperConfig.suggestPlayersWhenNullTabCompletions;
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public com.destroystokyo.paper.profile.PlayerProfile createProfile(@Nonnull UUID uuid) {
|
|
|
|
+ return createProfile(uuid, null);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public com.destroystokyo.paper.profile.PlayerProfile createProfile(@Nonnull String name) {
|
|
|
|
+ return createProfile(null, name);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public com.destroystokyo.paper.profile.PlayerProfile createProfile(@Nullable UUID uuid, @Nullable String name) {
|
2018-01-19 06:03:09 +01:00
|
|
|
+ return new com.destroystokyo.paper.profile.CraftPlayerProfile(uuid, name);
|
2018-01-16 04:13:17 +01:00
|
|
|
+ }
|
|
|
|
// Paper end
|
|
|
|
}
|
|
|
|
--
|
|
|
|
2.15.1
|
|
|
|
|