Search in sources :

Example 1 with EntityFakePlayerImpl

use of com.denizenscript.denizen.nms.v1_17.impl.entities.EntityFakePlayerImpl in project Denizen-For-Bukkit by DenizenScript.

the class DenizenNetworkManagerImpl method processFakePlayerSpawn.

public void processFakePlayerSpawn(Entity entity) {
    if (entity instanceof EntityFakePlayerImpl) {
        final EntityFakePlayerImpl fakePlayer = (EntityFakePlayerImpl) entity;
        sendPacket(new PacketPlayOutPlayerInfo(PacketPlayOutPlayerInfo.EnumPlayerInfoAction.ADD_PLAYER, fakePlayer));
        Bukkit.getScheduler().runTaskLater(NMSHandler.getJavaPlugin(), () -> sendPacket(new PacketPlayOutPlayerInfo(PacketPlayOutPlayerInfo.EnumPlayerInfoAction.REMOVE_PLAYER, fakePlayer)), 5);
    }
}
Also used : EntityFakePlayerImpl(com.denizenscript.denizen.nms.v1_16.impl.entities.EntityFakePlayerImpl)

Example 2 with EntityFakePlayerImpl

use of com.denizenscript.denizen.nms.v1_17.impl.entities.EntityFakePlayerImpl in project Denizen-For-Bukkit by DenizenScript.

the class CustomEntityHelperImpl method spawnFakePlayer.

public static FakePlayer spawnFakePlayer(Location location, String name, String skin, boolean doAdd) throws IllegalArgumentException {
    String fullName = name;
    String prefix = null;
    String suffix = null;
    if (name == null) {
        return null;
    } else if (fullName.length() > 16) {
        prefix = fullName.substring(0, 16);
        if (fullName.length() > 30) {
            int len = 30;
            name = fullName.substring(16, 30);
            if (name.matches(".*[^A-Za-z0-9_].*")) {
                if (fullName.length() >= 32) {
                    len = 32;
                    name = fullName.substring(16, 32);
                } else if (fullName.length() == 31) {
                    len = 31;
                    name = fullName.substring(16, 31);
                }
            } else if (name.length() > 46) {
                throw new IllegalArgumentException("You must specify a name with no more than 46 characters for FAKE_PLAYER entities!");
            } else {
                name = ChatColor.RESET + name;
            }
            suffix = fullName.substring(len);
        } else {
            name = fullName.substring(16);
            if (!name.matches(".*[^A-Za-z0-9_].*")) {
                name = ChatColor.RESET + name;
            }
            if (name.length() > 16) {
                suffix = name.substring(16);
                name = name.substring(0, 16);
            }
        }
    }
    if (skin != null && skin.length() > 16) {
        throw new IllegalArgumentException("You must specify a name with no more than 16 characters for FAKE_PLAYER entity skins!");
    }
    CraftWorld world = (CraftWorld) location.getWorld();
    ServerLevel worldServer = world.getHandle();
    PlayerProfile playerProfile = new PlayerProfile(name, null);
    if (skin == null && !name.matches(".*[^A-Za-z0-9_].*")) {
        playerProfile = NMSHandler.getInstance().fillPlayerProfile(playerProfile);
    }
    if (skin != null) {
        PlayerProfile skinProfile = new PlayerProfile(skin, null);
        skinProfile = NMSHandler.getInstance().fillPlayerProfile(skinProfile);
        playerProfile.setTexture(skinProfile.getTexture());
        playerProfile.setTextureSignature(skinProfile.getTextureSignature());
    }
    UUID uuid = UUID.randomUUID();
    if (uuid.version() == 4) {
        long msb = uuid.getMostSignificantBits();
        msb &= ~0x0000000000004000L;
        msb |= 0x0000000000002000L;
        uuid = new UUID(msb, uuid.getLeastSignificantBits());
    }
    playerProfile.setUniqueId(uuid);
    GameProfile gameProfile = new GameProfile(playerProfile.getUniqueId(), playerProfile.getName());
    gameProfile.getProperties().put("textures", new Property("textures", playerProfile.getTexture(), playerProfile.getTextureSignature()));
    final EntityFakePlayerImpl fakePlayer = new EntityFakePlayerImpl(worldServer.getServer(), worldServer, gameProfile, doAdd);
    fakePlayer.forceSetPositionRotation(location.getX(), location.getY(), location.getZ(), location.getYaw(), location.getPitch());
    CraftFakePlayerImpl craftFakePlayer = fakePlayer.getBukkitEntity();
    craftFakePlayer.fullName = fullName;
    if (prefix != null) {
        Scoreboard scoreboard = Bukkit.getScoreboardManager().getMainScoreboard();
        String teamName = "FAKE_PLAYER_TEAM_" + fullName;
        String hash = null;
        try {
            MessageDigest md = MessageDigest.getInstance("MD5");
            byte[] bytes = teamName.getBytes(StandardCharsets.UTF_8);
            md.update(bytes, 0, bytes.length);
            hash = new BigInteger(1, md.digest()).toString(16).substring(0, 16);
        } catch (Exception e) {
            Debug.echoError(e);
        }
        if (hash != null) {
            Team team = scoreboard.getTeam(hash);
            if (team == null) {
                team = scoreboard.registerNewTeam(hash);
                team.setPrefix(prefix);
                if (suffix != null) {
                    team.setSuffix(suffix);
                }
            }
            team.addPlayer(craftFakePlayer);
        }
    }
    return craftFakePlayer;
}
Also used : ServerLevel(net.minecraft.server.level.ServerLevel) CraftFakePlayerImpl(com.denizenscript.denizen.nms.v1_17.impl.entities.CraftFakePlayerImpl) PlayerProfile(com.denizenscript.denizen.nms.util.PlayerProfile) GameProfile(com.mojang.authlib.GameProfile) Scoreboard(org.bukkit.scoreboard.Scoreboard) BigInteger(java.math.BigInteger) Team(org.bukkit.scoreboard.Team) UUID(java.util.UUID) MessageDigest(java.security.MessageDigest) CraftWorld(org.bukkit.craftbukkit.v1_17_R1.CraftWorld) Property(com.mojang.authlib.properties.Property) EntityFakePlayerImpl(com.denizenscript.denizen.nms.v1_17.impl.entities.EntityFakePlayerImpl)

Example 3 with EntityFakePlayerImpl

use of com.denizenscript.denizen.nms.v1_17.impl.entities.EntityFakePlayerImpl in project Denizen-For-Bukkit by DenizenScript.

the class DenizenNetworkManagerImpl method processFakePlayerSpawn.

public void processFakePlayerSpawn(Entity entity) {
    if (entity instanceof EntityFakePlayerImpl) {
        final EntityFakePlayerImpl fakePlayer = (EntityFakePlayerImpl) entity;
        send(new ClientboundPlayerInfoPacket(ClientboundPlayerInfoPacket.Action.ADD_PLAYER, fakePlayer));
        Bukkit.getScheduler().runTaskLater(NMSHandler.getJavaPlugin(), () -> send(new ClientboundPlayerInfoPacket(ClientboundPlayerInfoPacket.Action.REMOVE_PLAYER, fakePlayer)), 5);
    }
}
Also used : EntityFakePlayerImpl(com.denizenscript.denizen.nms.v1_17.impl.entities.EntityFakePlayerImpl)

Example 4 with EntityFakePlayerImpl

use of com.denizenscript.denizen.nms.v1_17.impl.entities.EntityFakePlayerImpl in project Denizen-For-Bukkit by DenizenScript.

the class CustomEntityHelperImpl method spawnFakePlayer.

public static FakePlayer spawnFakePlayer(Location location, String name, String skin, boolean doAdd) throws IllegalArgumentException {
    String fullName = name;
    String prefix = null;
    String suffix = null;
    if (name == null) {
        return null;
    } else if (fullName.length() > 16) {
        prefix = fullName.substring(0, 16);
        if (fullName.length() > 30) {
            int len = 30;
            name = fullName.substring(16, 30);
            if (name.matches(".*[^A-Za-z0-9_].*")) {
                if (fullName.length() >= 32) {
                    len = 32;
                    name = fullName.substring(16, 32);
                } else if (fullName.length() == 31) {
                    len = 31;
                    name = fullName.substring(16, 31);
                }
            } else if (name.length() > 46) {
                throw new IllegalArgumentException("You must specify a name with no more than 46 characters for FAKE_PLAYER entities!");
            } else {
                name = ChatColor.RESET + name;
            }
            suffix = fullName.substring(len);
        } else {
            name = fullName.substring(16);
            if (!name.matches(".*[^A-Za-z0-9_].*")) {
                name = ChatColor.RESET + name;
            }
            if (name.length() > 16) {
                suffix = name.substring(16);
                name = name.substring(0, 16);
            }
        }
    }
    if (skin != null && skin.length() > 16) {
        throw new IllegalArgumentException("You must specify a name with no more than 16 characters for FAKE_PLAYER entity skins!");
    }
    CraftWorld world = (CraftWorld) location.getWorld();
    WorldServer worldServer = world.getHandle();
    PlayerProfile playerProfile = new PlayerProfile(name, null);
    if (skin == null && !name.matches(".*[^A-Za-z0-9_].*")) {
        playerProfile = NMSHandler.getInstance().fillPlayerProfile(playerProfile);
    }
    if (skin != null) {
        PlayerProfile skinProfile = new PlayerProfile(skin, null);
        skinProfile = NMSHandler.getInstance().fillPlayerProfile(skinProfile);
        playerProfile.setTexture(skinProfile.getTexture());
        playerProfile.setTextureSignature(skinProfile.getTextureSignature());
    }
    UUID uuid = UUID.randomUUID();
    if (uuid.version() == 4) {
        long msb = uuid.getMostSignificantBits();
        msb &= ~0x0000000000004000L;
        msb |= 0x0000000000002000L;
        uuid = new UUID(msb, uuid.getLeastSignificantBits());
    }
    playerProfile.setUniqueId(uuid);
    GameProfile gameProfile = new GameProfile(playerProfile.getUniqueId(), playerProfile.getName());
    gameProfile.getProperties().put("textures", new Property("textures", playerProfile.getTexture(), playerProfile.getTextureSignature()));
    final EntityFakePlayerImpl fakePlayer = new EntityFakePlayerImpl(worldServer.getMinecraftServer(), worldServer, gameProfile, new PlayerInteractManager(worldServer), doAdd);
    fakePlayer.setPositionRotation(location.getX(), location.getY(), location.getZ(), location.getYaw(), location.getPitch());
    CraftFakePlayerImpl craftFakePlayer = fakePlayer.getBukkitEntity();
    craftFakePlayer.fullName = fullName;
    if (prefix != null) {
        Scoreboard scoreboard = Bukkit.getScoreboardManager().getMainScoreboard();
        String teamName = "FAKE_PLAYER_TEAM_" + fullName;
        String hash = null;
        try {
            MessageDigest md = MessageDigest.getInstance("MD5");
            byte[] bytes = teamName.getBytes(StandardCharsets.UTF_8);
            md.update(bytes, 0, bytes.length);
            hash = new BigInteger(1, md.digest()).toString(16).substring(0, 16);
        } catch (Exception e) {
            Debug.echoError(e);
        }
        if (hash != null) {
            Team team = scoreboard.getTeam(hash);
            if (team == null) {
                team = scoreboard.registerNewTeam(hash);
                team.setPrefix(prefix);
                if (suffix != null) {
                    team.setSuffix(suffix);
                }
            }
            team.addPlayer(craftFakePlayer);
        }
    }
    return craftFakePlayer;
}
Also used : CraftFakePlayerImpl(com.denizenscript.denizen.nms.v1_16.impl.entities.CraftFakePlayerImpl) PlayerProfile(com.denizenscript.denizen.nms.util.PlayerProfile) WorldServer(net.minecraft.server.v1_16_R3.WorldServer) GameProfile(com.mojang.authlib.GameProfile) Scoreboard(org.bukkit.scoreboard.Scoreboard) PlayerInteractManager(net.minecraft.server.v1_16_R3.PlayerInteractManager) BigInteger(java.math.BigInteger) Team(org.bukkit.scoreboard.Team) UUID(java.util.UUID) MessageDigest(java.security.MessageDigest) CraftWorld(org.bukkit.craftbukkit.v1_16_R3.CraftWorld) Property(com.mojang.authlib.properties.Property) EntityFakePlayerImpl(com.denizenscript.denizen.nms.v1_16.impl.entities.EntityFakePlayerImpl)

Example 5 with EntityFakePlayerImpl

use of com.denizenscript.denizen.nms.v1_17.impl.entities.EntityFakePlayerImpl in project Denizen-For-Bukkit by DenizenScript.

the class DenizenNetworkManagerImpl method processFakePlayerSpawn.

public void processFakePlayerSpawn(Entity entity) {
    if (entity instanceof EntityFakePlayerImpl) {
        final EntityFakePlayerImpl fakePlayer = (EntityFakePlayerImpl) entity;
        send(new ClientboundPlayerInfoPacket(ClientboundPlayerInfoPacket.Action.ADD_PLAYER, fakePlayer));
        Bukkit.getScheduler().runTaskLater(NMSHandler.getJavaPlugin(), () -> send(new ClientboundPlayerInfoPacket(ClientboundPlayerInfoPacket.Action.REMOVE_PLAYER, fakePlayer)), 5);
    }
}
Also used : EntityFakePlayerImpl(com.denizenscript.denizen.nms.v1_18.impl.entities.EntityFakePlayerImpl)

Aggregations

PlayerProfile (com.denizenscript.denizen.nms.util.PlayerProfile)3 GameProfile (com.mojang.authlib.GameProfile)3 Property (com.mojang.authlib.properties.Property)3 BigInteger (java.math.BigInteger)3 MessageDigest (java.security.MessageDigest)3 UUID (java.util.UUID)3 Scoreboard (org.bukkit.scoreboard.Scoreboard)3 Team (org.bukkit.scoreboard.Team)3 EntityFakePlayerImpl (com.denizenscript.denizen.nms.v1_16.impl.entities.EntityFakePlayerImpl)2 EntityFakePlayerImpl (com.denizenscript.denizen.nms.v1_17.impl.entities.EntityFakePlayerImpl)2 EntityFakePlayerImpl (com.denizenscript.denizen.nms.v1_18.impl.entities.EntityFakePlayerImpl)2 ServerLevel (net.minecraft.server.level.ServerLevel)2 CraftFakePlayerImpl (com.denizenscript.denizen.nms.v1_16.impl.entities.CraftFakePlayerImpl)1 CraftFakePlayerImpl (com.denizenscript.denizen.nms.v1_17.impl.entities.CraftFakePlayerImpl)1 CraftFakePlayerImpl (com.denizenscript.denizen.nms.v1_18.impl.entities.CraftFakePlayerImpl)1 PlayerInteractManager (net.minecraft.server.v1_16_R3.PlayerInteractManager)1 WorldServer (net.minecraft.server.v1_16_R3.WorldServer)1 CraftWorld (org.bukkit.craftbukkit.v1_16_R3.CraftWorld)1 CraftWorld (org.bukkit.craftbukkit.v1_17_R1.CraftWorld)1 CraftWorld (org.bukkit.craftbukkit.v1_18_R1.CraftWorld)1