Search in sources :

Example 21 with Property

use of com.mojang.authlib.properties.Property in project Denizen-For-Bukkit by DenizenScript.

the class ProfileEditor_v1_8_R3 method getGameProfile.

private static GameProfile getGameProfile(PlayerProfile playerProfile) {
    GameProfile gameProfile = new GameProfile(playerProfile.getUniqueId(), playerProfile.getName());
    gameProfile.getProperties().put("textures", new Property("textures", playerProfile.getTexture(), playerProfile.getTextureSignature()));
    return gameProfile;
}
Also used : GameProfile(com.mojang.authlib.GameProfile) Property(com.mojang.authlib.properties.Property)

Example 22 with Property

use of com.mojang.authlib.properties.Property in project Denizen-For-Bukkit by DenizenScript.

the class Handler_v1_11_R1 method getPlayerProfile.

@Override
public PlayerProfile getPlayerProfile(Player player) {
    GameProfile gameProfile = ((CraftPlayer) player).getProfile();
    Property property = Iterables.getFirst(gameProfile.getProperties().get("textures"), null);
    return new PlayerProfile(gameProfile.getName(), gameProfile.getId(), property != null ? property.getValue() : null, property != null ? property.getSignature() : null);
}
Also used : GameProfile(com.mojang.authlib.GameProfile) PlayerProfile(net.aufdemrand.denizen.nms.util.PlayerProfile) CraftPlayer(org.bukkit.craftbukkit.v1_11_R1.entity.CraftPlayer) Property(com.mojang.authlib.properties.Property)

Example 23 with Property

use of com.mojang.authlib.properties.Property in project Denizen-For-Bukkit by DenizenScript.

the class Handler_v1_11_R1 method fillPlayerProfile.

@Override
public PlayerProfile fillPlayerProfile(PlayerProfile playerProfile) {
    try {
        if (playerProfile != null) {
            GameProfile gameProfile = new GameProfile(playerProfile.getUniqueId(), playerProfile.getName());
            gameProfile.getProperties().get("textures").clear();
            if (playerProfile.getTextureSignature() != null) {
                gameProfile.getProperties().put("textures", new Property("textures", playerProfile.getTexture(), playerProfile.getTextureSignature()));
            } else {
                gameProfile.getProperties().put("textures", new Property("textures", playerProfile.getTexture()));
            }
            MinecraftServer minecraftServer = ((CraftServer) Bukkit.getServer()).getServer();
            GameProfile gameProfile1 = null;
            if (gameProfile.getId() != null) {
                gameProfile1 = minecraftServer.getUserCache().a(gameProfile.getId());
            }
            if (gameProfile1 == null && gameProfile.getName() != null) {
                gameProfile1 = minecraftServer.getUserCache().getProfile(gameProfile.getName());
            }
            if (gameProfile1 == null) {
                gameProfile1 = gameProfile;
            }
            if (playerProfile.hasTexture()) {
                gameProfile1.getProperties().get("textures").clear();
                if (playerProfile.getTextureSignature() != null) {
                    gameProfile1.getProperties().put("textures", new Property("textures", playerProfile.getTexture(), playerProfile.getTextureSignature()));
                } else {
                    gameProfile1.getProperties().put("textures", new Property("textures", playerProfile.getTexture()));
                }
            }
            if (Iterables.getFirst(gameProfile1.getProperties().get("textures"), null) == null) {
                gameProfile1 = minecraftServer.az().fillProfileProperties(gameProfile1, true);
            }
            Property property = Iterables.getFirst(gameProfile1.getProperties().get("textures"), null);
            return new PlayerProfile(gameProfile1.getName(), gameProfile1.getId(), property != null ? property.getValue() : null, property != null ? property.getSignature() : null);
        }
    } catch (Exception e) {
        if (dB.verbose) {
            dB.echoError(e);
        }
    }
    return null;
}
Also used : GameProfile(com.mojang.authlib.GameProfile) PlayerProfile(net.aufdemrand.denizen.nms.util.PlayerProfile) CraftServer(org.bukkit.craftbukkit.v1_11_R1.CraftServer) Property(com.mojang.authlib.properties.Property) MinecraftServer(net.minecraft.server.v1_11_R1.MinecraftServer)

Example 24 with Property

use of com.mojang.authlib.properties.Property in project Denizen-For-Bukkit by DenizenScript.

the class ProfileEditor_v1_11_R1 method getGameProfile.

private static GameProfile getGameProfile(PlayerProfile playerProfile) {
    GameProfile gameProfile = new GameProfile(playerProfile.getUniqueId(), playerProfile.getName());
    gameProfile.getProperties().put("textures", new Property("textures", playerProfile.getTexture(), playerProfile.getTextureSignature()));
    return gameProfile;
}
Also used : GameProfile(com.mojang.authlib.GameProfile) Property(com.mojang.authlib.properties.Property)

Example 25 with Property

use of com.mojang.authlib.properties.Property in project Denizen-For-Bukkit by DenizenScript.

the class ItemHelper_v1_11_R1 method setSkullSkin.

@Override
public ItemStack setSkullSkin(ItemStack itemStack, PlayerProfile playerProfile) {
    GameProfile gameProfile = new GameProfile(playerProfile.getUniqueId(), playerProfile.getName());
    if (playerProfile.hasTexture()) {
        gameProfile.getProperties().get("textures").clear();
        if (playerProfile.getTextureSignature() != null) {
            gameProfile.getProperties().put("textures", new Property("textures", playerProfile.getTexture(), playerProfile.getTextureSignature()));
        } else {
            gameProfile.getProperties().put("textures", new Property("textures", playerProfile.getTexture()));
        }
    }
    net.minecraft.server.v1_11_R1.ItemStack nmsItemStack = CraftItemStack.asNMSCopy(itemStack);
    NBTTagCompound tag = nmsItemStack.hasTag() ? nmsItemStack.getTag() : new NBTTagCompound();
    tag.set("SkullOwner", GameProfileSerializer.serialize(new NBTTagCompound(), gameProfile));
    nmsItemStack.setTag(tag);
    return CraftItemStack.asBukkitCopy(nmsItemStack);
}
Also used : GameProfile(com.mojang.authlib.GameProfile) CompoundTag_v1_11_R1(net.aufdemrand.denizen.nms.impl.jnbt.CompoundTag_v1_11_R1) NBTTagCompound(net.minecraft.server.v1_11_R1.NBTTagCompound) Property(com.mojang.authlib.properties.Property)

Aggregations

GameProfile (com.mojang.authlib.GameProfile)28 Property (com.mojang.authlib.properties.Property)28 PlayerProfile (net.aufdemrand.denizen.nms.util.PlayerProfile)16 UUID (java.util.UUID)8 BigInteger (java.math.BigInteger)4 MessageDigest (java.security.MessageDigest)4 Scoreboard (org.bukkit.scoreboard.Scoreboard)4 Team (org.bukkit.scoreboard.Team)4 CraftFakePlayer_v1_10_R1 (net.aufdemrand.denizen.nms.impl.entities.CraftFakePlayer_v1_10_R1)1 CraftFakePlayer_v1_11_R1 (net.aufdemrand.denizen.nms.impl.entities.CraftFakePlayer_v1_11_R1)1 CraftFakePlayer_v1_8_R3 (net.aufdemrand.denizen.nms.impl.entities.CraftFakePlayer_v1_8_R3)1 CraftFakePlayer_v1_9_R2 (net.aufdemrand.denizen.nms.impl.entities.CraftFakePlayer_v1_9_R2)1 EntityFakePlayer_v1_10_R1 (net.aufdemrand.denizen.nms.impl.entities.EntityFakePlayer_v1_10_R1)1 EntityFakePlayer_v1_11_R1 (net.aufdemrand.denizen.nms.impl.entities.EntityFakePlayer_v1_11_R1)1 EntityFakePlayer_v1_8_R3 (net.aufdemrand.denizen.nms.impl.entities.EntityFakePlayer_v1_8_R3)1 EntityFakePlayer_v1_9_R2 (net.aufdemrand.denizen.nms.impl.entities.EntityFakePlayer_v1_9_R2)1 CompoundTag_v1_10_R1 (net.aufdemrand.denizen.nms.impl.jnbt.CompoundTag_v1_10_R1)1 CompoundTag_v1_11_R1 (net.aufdemrand.denizen.nms.impl.jnbt.CompoundTag_v1_11_R1)1 CompoundTag_v1_8_R3 (net.aufdemrand.denizen.nms.impl.jnbt.CompoundTag_v1_8_R3)1 CompoundTag_v1_9_R2 (net.aufdemrand.denizen.nms.impl.jnbt.CompoundTag_v1_9_R2)1