Search in sources :

Example 1 with MinecraftServer

use of net.minecraft.server.v1_16_R3.MinecraftServer in project Denizen-For-Bukkit by DenizenScript.

the class Handler_v1_10_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.ay().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_10_R1.CraftServer) Property(com.mojang.authlib.properties.Property) MinecraftServer(net.minecraft.server.v1_10_R1.MinecraftServer)

Example 2 with MinecraftServer

use of net.minecraft.server.v1_16_R3.MinecraftServer in project Denizen-For-Bukkit by DenizenScript.

the class PlayerHelper_v1_11_R1 method setTemporaryOp.

@Override
public void setTemporaryOp(Player player, boolean op) {
    MinecraftServer server = ((CraftServer) Bukkit.getServer()).getServer();
    GameProfile profile = ((CraftPlayer) player).getProfile();
    OpList opList = server.getPlayerList().getOPs();
    if (op) {
        int permLevel = server.q();
        opList.add(new OpListEntry(profile, permLevel, opList.b(profile)));
    } else {
        opList.remove(profile);
    }
    player.recalculatePermissions();
}
Also used : OpList(net.minecraft.server.v1_11_R1.OpList) GameProfile(com.mojang.authlib.GameProfile) CraftPlayer(org.bukkit.craftbukkit.v1_11_R1.entity.CraftPlayer) CraftServer(org.bukkit.craftbukkit.v1_11_R1.CraftServer) OpListEntry(net.minecraft.server.v1_11_R1.OpListEntry) MinecraftServer(net.minecraft.server.v1_11_R1.MinecraftServer)

Example 3 with MinecraftServer

use of net.minecraft.server.v1_16_R3.MinecraftServer in project Denizen-For-Bukkit by DenizenScript.

the class Handler_v1_8_R3 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.aD().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_8_R3.CraftServer) Property(com.mojang.authlib.properties.Property) MinecraftServer(net.minecraft.server.v1_8_R3.MinecraftServer)

Example 4 with MinecraftServer

use of net.minecraft.server.v1_16_R3.MinecraftServer in project Denizen-For-Bukkit by DenizenScript.

the class PlayerHelper_v1_10_R1 method setTemporaryOp.

@Override
public void setTemporaryOp(Player player, boolean op) {
    MinecraftServer server = ((CraftServer) Bukkit.getServer()).getServer();
    GameProfile profile = ((CraftPlayer) player).getProfile();
    OpList opList = server.getPlayerList().getOPs();
    if (op) {
        int permLevel = server.q();
        opList.add(new OpListEntry(profile, permLevel, opList.b(profile)));
    } else {
        opList.remove(profile);
    }
    player.recalculatePermissions();
}
Also used : OpList(net.minecraft.server.v1_10_R1.OpList) GameProfile(com.mojang.authlib.GameProfile) CraftPlayer(org.bukkit.craftbukkit.v1_10_R1.entity.CraftPlayer) CraftServer(org.bukkit.craftbukkit.v1_10_R1.CraftServer) OpListEntry(net.minecraft.server.v1_10_R1.OpListEntry) MinecraftServer(net.minecraft.server.v1_10_R1.MinecraftServer)

Example 5 with MinecraftServer

use of net.minecraft.server.v1_16_R3.MinecraftServer in project CoordsOffline by elliotnash.

the class v1_16_R2 method loadOfflinePlayer.

public Player loadOfflinePlayer(OfflinePlayer player) {
    MinecraftServer minecraftserver = MinecraftServer.getServer();
    GameProfile gameprofile = new GameProfile(player.getUniqueId(), player.getName());
    EntityPlayer entity = new EntityPlayer(minecraftserver, minecraftserver.getWorldServer(World.OVERWORLD), gameprofile, new PlayerInteractManager(minecraftserver.getWorldServer(World.OVERWORLD)));
    final Player target = entity.getBukkitEntity();
    if (target != null)
        target.loadData();
    return target;
}
Also used : EntityPlayer(net.minecraft.server.v1_16_R2.EntityPlayer) Player(org.bukkit.entity.Player) OfflinePlayer(org.bukkit.OfflinePlayer) GameProfile(com.mojang.authlib.GameProfile) PlayerInteractManager(net.minecraft.server.v1_16_R2.PlayerInteractManager) EntityPlayer(net.minecraft.server.v1_16_R2.EntityPlayer) MinecraftServer(net.minecraft.server.v1_16_R2.MinecraftServer)

Aggregations

GameProfile (com.mojang.authlib.GameProfile)23 OfflinePlayer (org.bukkit.OfflinePlayer)15 Player (org.bukkit.entity.Player)15 Property (com.mojang.authlib.properties.Property)4 PlayerProfile (net.aufdemrand.denizen.nms.util.PlayerProfile)4 MinecraftServer (net.minecraft.server.v1_10_R1.MinecraftServer)3 MinecraftServer (net.minecraft.server.v1_11_R1.MinecraftServer)3 MinecraftServer (net.minecraft.server.v1_8_R3.MinecraftServer)3 MinecraftServer (net.minecraft.server.v1_9_R2.MinecraftServer)3 CraftServer (org.bukkit.craftbukkit.v1_10_R1.CraftServer)3 EntityPlayer (net.minecraft.server.v1_16_R1.EntityPlayer)2 MinecraftServer (net.minecraft.server.v1_16_R1.MinecraftServer)2 PlayerInteractManager (net.minecraft.server.v1_16_R1.PlayerInteractManager)2 EntityPlayer (net.minecraft.server.v1_16_R2.EntityPlayer)2 MinecraftServer (net.minecraft.server.v1_16_R2.MinecraftServer)2 PlayerInteractManager (net.minecraft.server.v1_16_R2.PlayerInteractManager)2 EntityPlayer (net.minecraft.server.v1_16_R3.EntityPlayer)2 MinecraftServer (net.minecraft.server.v1_16_R3.MinecraftServer)2 PlayerInteractManager (net.minecraft.server.v1_16_R3.PlayerInteractManager)2 CraftPlayer (org.bukkit.craftbukkit.v1_10_R1.entity.CraftPlayer)2