Search in sources :

Example 26 with MinecraftServer

use of net.minecraft.server.v1_16_R3.MinecraftServer in project SilkSpawners by timbru31.

the class NMSHandler method loadPlayer.

@Override
public Player loadPlayer(final OfflinePlayer offline) {
    if (!offline.hasPlayedBefore()) {
        return null;
    }
    final GameProfile profile = new GameProfile(offline.getUniqueId(), offline.getName() != null ? offline.getName() : offline.getUniqueId().toString());
    final MinecraftServer server = ((CraftServer) Bukkit.getServer()).getServer();
    final EntityPlayer entity = new EntityPlayer(server, server.getWorldServer(0), profile, new PlayerInteractManager(server.getWorldServer(0)));
    final Player target = entity.getBukkitEntity();
    if (target != null) {
        target.loadData();
    }
    return target;
}
Also used : Player(org.bukkit.entity.Player) EntityPlayer(net.minecraft.server.v1_8_R3.EntityPlayer) OfflinePlayer(org.bukkit.OfflinePlayer) CraftPlayer(org.bukkit.craftbukkit.v1_8_R3.entity.CraftPlayer) GameProfile(com.mojang.authlib.GameProfile) PlayerInteractManager(net.minecraft.server.v1_8_R3.PlayerInteractManager) EntityPlayer(net.minecraft.server.v1_8_R3.EntityPlayer) CraftServer(org.bukkit.craftbukkit.v1_8_R3.CraftServer) MinecraftServer(net.minecraft.server.v1_8_R3.MinecraftServer)

Example 27 with MinecraftServer

use of net.minecraft.server.v1_16_R3.MinecraftServer in project PaperDev by Kamillaova.

the class CraftPlayerProfile method completeFromCache.

public boolean completeFromCache(boolean lookupName) {
    if (profile.isComplete()) {
        return true;
    }
    MinecraftServer server = MinecraftServer.getServer();
    String name = profile.getName();
    UserCache userCache = server.getUserCache();
    if (profile.getId() == null) {
        final GameProfile profile;
        boolean isOnlineMode = server.getOnlineMode() || (SpigotConfig.bungee && PaperConfig.bungeeOnlineMode);
        if (isOnlineMode) {
            profile = lookupName ? userCache.getProfile(name) : userCache.getProfileIfCached(name);
        } else {
            // Make an OfflinePlayer using an offline mode UUID since the name has no profile
            profile = new GameProfile(UUID.nameUUIDFromBytes(("OfflinePlayer:" + name).getBytes(Charsets.UTF_8)), name);
        }
        if (profile != null) {
            this.profile = profile;
        }
    }
    if (profile.getName() == null) {
        // If we need textures, skip this check, as we will get it below anyways.
        GameProfile profile = userCache.getProfile(this.profile.getId());
        if (profile != null) {
            this.profile = profile;
        }
    }
    return this.profile.isComplete();
}
Also used : GameProfile(com.mojang.authlib.GameProfile) UserCache(net.minecraft.server.v1_12_R1.UserCache) MinecraftServer(net.minecraft.server.v1_12_R1.MinecraftServer)

Aggregations

GameProfile (com.mojang.authlib.GameProfile)25 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_12_R1.MinecraftServer)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