Search in sources :

Example 11 with CraftWorld

use of org.bukkit.craftbukkit.v1_9_R2.CraftWorld in project Denizen-For-Bukkit by DenizenScript.

the class CustomEntityHelper_v1_11_R1 method spawnItemProjectile.

@Override
public ItemProjectile spawnItemProjectile(Location location, ItemStack itemStack) {
    CraftWorld world = (CraftWorld) location.getWorld();
    EntityItemProjectile_v1_11_R1 entity = new EntityItemProjectile_v1_11_R1(world, location, itemStack);
    return entity.getBukkitEntity();
}
Also used : CraftWorld(org.bukkit.craftbukkit.v1_11_R1.CraftWorld) EntityItemProjectile_v1_11_R1(net.aufdemrand.denizen.nms.impl.entities.EntityItemProjectile_v1_11_R1)

Example 12 with CraftWorld

use of org.bukkit.craftbukkit.v1_9_R2.CraftWorld in project Denizen-For-Bukkit by DenizenScript.

the class CustomEntityHelper_v1_8_R3 method spawnFakePlayer.

@Override
public FakePlayer spawnFakePlayer(Location location, String name, String skin) 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 EntityFakePlayer_v1_8_R3 fakePlayer = new EntityFakePlayer_v1_8_R3(worldServer.getMinecraftServer(), worldServer, gameProfile, new PlayerInteractManager(worldServer));
    fakePlayer.setPositionRotation(location.getX(), location.getY(), location.getZ(), location.getYaw(), location.getPitch());
    CraftFakePlayer_v1_8_R3 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("UTF-8");
            md.update(bytes, 0, bytes.length);
            hash = new BigInteger(1, md.digest()).toString(16).substring(0, 16);
        } catch (Exception e) {
            e.printStackTrace();
        }
        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 : PlayerProfile(net.aufdemrand.denizen.nms.util.PlayerProfile) WorldServer(net.minecraft.server.v1_8_R3.WorldServer) CraftFakePlayer_v1_8_R3(net.aufdemrand.denizen.nms.impl.entities.CraftFakePlayer_v1_8_R3) EntityFakePlayer_v1_8_R3(net.aufdemrand.denizen.nms.impl.entities.EntityFakePlayer_v1_8_R3) GameProfile(com.mojang.authlib.GameProfile) Scoreboard(org.bukkit.scoreboard.Scoreboard) PlayerInteractManager(net.minecraft.server.v1_8_R3.PlayerInteractManager) BigInteger(java.math.BigInteger) Team(org.bukkit.scoreboard.Team) UUID(java.util.UUID) MessageDigest(java.security.MessageDigest) CraftWorld(org.bukkit.craftbukkit.v1_8_R3.CraftWorld) Property(com.mojang.authlib.properties.Property)

Example 13 with CraftWorld

use of org.bukkit.craftbukkit.v1_9_R2.CraftWorld in project Denizen-For-Bukkit by DenizenScript.

the class WorldHelper_v1_8_R3 method setStatic.

@Override
public void setStatic(World world, boolean isStatic) {
    WorldServer worldServer = ((CraftWorld) world).getHandle();
    ReflectionHelper.setFieldValue(net.minecraft.server.v1_8_R3.World.class, "isClientSide", worldServer, isStatic);
}
Also used : WorldServer(net.minecraft.server.v1_8_R3.WorldServer) CraftWorld(org.bukkit.craftbukkit.v1_8_R3.CraftWorld)

Example 14 with CraftWorld

use of org.bukkit.craftbukkit.v1_9_R2.CraftWorld in project Denizen-For-Bukkit by DenizenScript.

the class FishingHelper_v1_11_R1 method getResult.

@Override
public org.bukkit.inventory.ItemStack getResult(FishHook fishHook, CatchType catchType) {
    ItemStack result = null;
    EntityFishingHook nmsHook = ((CraftFish) fishHook).getHandle();
    if (catchType == CatchType.DEFAULT) {
        float f = ((CraftWorld) fishHook.getWorld()).getHandle().random.nextFloat();
        int i = EnchantmentManager.g(nmsHook.owner);
        int j = EnchantmentManager.a(Enchantments.LURE, nmsHook.owner);
        float f1 = 0.1F - (float) i * 0.025F - (float) j * 0.01F;
        float f2 = 0.05F + (float) i * 0.01F - (float) j * 0.01F;
        f1 = MathHelper.a(f1, 0.0F, 1.0F);
        f2 = MathHelper.a(f2, 0.0F, 1.0F);
        if (f < f1) {
            result = catchRandomJunk(nmsHook);
        } else {
            f -= f1;
            if (f < f2) {
                result = catchRandomTreasure(nmsHook);
            } else {
                result = catchRandomFish(nmsHook);
            }
        }
    } else if (catchType == CatchType.JUNK) {
        result = catchRandomJunk(nmsHook);
    } else if (catchType == CatchType.TREASURE) {
        result = catchRandomTreasure(nmsHook);
    } else if (catchType == CatchType.FISH) {
        result = catchRandomFish(nmsHook);
    }
    if (result != null) {
        return CraftItemStack.asBukkitCopy(result);
    } else {
        return null;
    }
}
Also used : CraftFish(org.bukkit.craftbukkit.v1_11_R1.entity.CraftFish) CraftItemStack(org.bukkit.craftbukkit.v1_11_R1.inventory.CraftItemStack) CraftWorld(org.bukkit.craftbukkit.v1_11_R1.CraftWorld)

Example 15 with CraftWorld

use of org.bukkit.craftbukkit.v1_9_R2.CraftWorld in project MyPet by xXKeyleXx.

the class EntityMySnowman method addAirBlocksInBB.

private void addAirBlocksInBB(org.bukkit.World bukkitWorld, AxisAlignedBB axisalignedbb) {
    int minX = MathHelper.floor(axisalignedbb.a - 0.1);
    int maxX = MathHelper.floor(axisalignedbb.d + 1.1D);
    int minY = MathHelper.floor(axisalignedbb.b - 0.1);
    int maxY = MathHelper.floor(axisalignedbb.e + 1.1D);
    int minZ = MathHelper.floor(axisalignedbb.c - 0.1);
    int maxZ = MathHelper.floor(axisalignedbb.f + 1.1D);
    WorldServer world = ((CraftWorld) bukkitWorld).getHandle();
    for (int x = minX; x < maxX; x++) {
        for (int z = minZ; z < maxZ; z++) {
            if (bukkitWorld.isChunkLoaded(x, z)) {
                for (int y = minY - 1; y < maxY; y++) {
                    Block block = world.getType(x, y, z);
                    if (block == Blocks.AIR) {
                        snowMap.put(new Location(bukkitWorld, x, y, z), 10);
                    }
                }
            }
        }
    }
}
Also used : CraftWorld(org.bukkit.craftbukkit.v1_7_R4.CraftWorld) Location(org.bukkit.Location)

Aggregations

Location (org.bukkit.Location)13 CraftWorld (org.bukkit.craftbukkit.v1_8_R3.CraftWorld)10 CraftWorld (org.bukkit.craftbukkit.v1_10_R1.CraftWorld)9 CraftWorld (org.bukkit.craftbukkit.v1_11_R1.CraftWorld)9 CraftWorld (org.bukkit.craftbukkit.v1_9_R2.CraftWorld)9 CraftWorld (org.bukkit.craftbukkit.v1_7_R4.CraftWorld)5 CraftWorld (org.bukkit.craftbukkit.v1_8_R1.CraftWorld)5 CraftWorld (org.bukkit.craftbukkit.v1_8_R2.CraftWorld)5 GameProfile (com.mojang.authlib.GameProfile)4 Property (com.mojang.authlib.properties.Property)4 BigInteger (java.math.BigInteger)4 MessageDigest (java.security.MessageDigest)4 UUID (java.util.UUID)4 PlayerProfile (net.aufdemrand.denizen.nms.util.PlayerProfile)4 CraftWorld (org.bukkit.craftbukkit.v1_9_R1.CraftWorld)4 CraftWorld (org.bukkit.craftbukkit.v1_12_R1.CraftWorld)3 Scoreboard (org.bukkit.scoreboard.Scoreboard)3 Team (org.bukkit.scoreboard.Team)3 Field (java.lang.reflect.Field)2 BlockPosition (net.minecraft.server.v1_10_R1.BlockPosition)2