Search in sources :

Example 6 with EnchantmentType

use of org.spongepowered.api.item.enchantment.EnchantmentType in project SpongeCommon by SpongePowered.

the class NbtDataUtil method setItemEnchantments.

public static void setItemEnchantments(ItemStack itemStack, List<Enchantment> value) {
    final NBTTagCompound compound;
    if (itemStack.getTagCompound() == null) {
        compound = new NBTTagCompound();
        itemStack.setTagCompound(compound);
    } else {
        compound = itemStack.getTagCompound();
    }
    if (value.isEmpty()) {
        // if there's no enchantments, remove the tag that says there's enchantments
        compound.removeTag(NbtDataUtil.ITEM_ENCHANTMENT_LIST);
        return;
    }
    final Map<EnchantmentType, Integer> valueMap = Maps.newLinkedHashMap();
    for (Enchantment enchantment : value) {
        // convert ItemEnchantment to map
        valueMap.put(enchantment.getType(), enchantment.getLevel());
    }
    // construct the enchantment list
    final NBTTagList newList = new NBTTagList();
    for (Map.Entry<EnchantmentType, Integer> entry : valueMap.entrySet()) {
        final NBTTagCompound enchantmentCompound = new NBTTagCompound();
        enchantmentCompound.setShort(NbtDataUtil.ITEM_ENCHANTMENT_ID, (short) net.minecraft.enchantment.Enchantment.getEnchantmentID((net.minecraft.enchantment.Enchantment) entry.getKey()));
        enchantmentCompound.setShort(NbtDataUtil.ITEM_ENCHANTMENT_LEVEL, entry.getValue().shortValue());
        newList.appendTag(enchantmentCompound);
    }
    compound.setTag(NbtDataUtil.ITEM_ENCHANTMENT_LIST, newList);
}
Also used : NBTTagList(net.minecraft.nbt.NBTTagList) EnchantmentType(org.spongepowered.api.item.enchantment.EnchantmentType) NBTTagCompound(net.minecraft.nbt.NBTTagCompound) Enchantment(org.spongepowered.api.item.enchantment.Enchantment) SpongeEnchantment(org.spongepowered.common.item.enchantment.SpongeEnchantment) Map(java.util.Map)

Example 7 with EnchantmentType

use of org.spongepowered.api.item.enchantment.EnchantmentType in project SpongeCommon by SpongePowered.

the class EnchantmentTest method onGameInitialization.

@Listener
public void onGameInitialization(final GameInitializationEvent event) {
    Sponge.getCommandManager().register(this, CommandSpec.builder().arguments(GenericArguments.onlyOne(GenericArguments.catalogedElement(Text.of("enchantment"), EnchantmentType.class)), GenericArguments.onlyOne(GenericArguments.integer(Text.of("level")))).executor((src, args) -> {
        if (!(src instanceof Player)) {
            throw new CommandException(Text.of(TextColors.RED, "You must be a player to use this command!"));
        }
        final Player player = (Player) src;
        final ItemStack itemStack = player.getItemInHand(HandTypes.MAIN_HAND).orElse(ItemStack.empty());
        if (!itemStack.supports(Keys.ITEM_ENCHANTMENTS)) {
            throw new CommandException(Text.of(TextColors.RED, "This item does not support item enchantments."));
        }
        final EnchantmentType type = args.<EnchantmentType>getOne("enchantment").orElse(EnchantmentTypes.BINDING_CURSE);
        final int level = args.<Integer>getOne("level").orElse(1);
        final Enchantment newEnchantment = Enchantment.builder().type(type).level(level).build();
        final List<Enchantment> enchantments = itemStack.get(Keys.ITEM_ENCHANTMENTS).orElse(new ArrayList<>());
        enchantments.add(newEnchantment);
        itemStack.offer(Keys.ITEM_ENCHANTMENTS, enchantments);
        player.setItemInHand(HandTypes.MAIN_HAND, itemStack);
        player.sendMessage(Text.of(TextColors.GOLD, "You have successfully added the enchantment " + type.getName() + " with a level of " + level + "."));
        return CommandResult.success();
    }).build(), "spongeenchant");
    Sponge.getCommandManager().register(this, CommandSpec.builder().executor((src, args) -> {
        if (!(src instanceof Player)) {
            throw new CommandException(Text.of(TextColors.RED, "You must be a player to use this command!"));
        }
        final Player player = (Player) src;
        final ItemStack itemStack = player.getItemInHand(HandTypes.MAIN_HAND).orElse(ItemStack.empty());
        if (!itemStack.supports(Keys.ITEM_ENCHANTMENTS)) {
            throw new CommandException(Text.of(TextColors.RED, "This item does not support item enchantments."));
        }
        final List<Enchantment> enchantments = itemStack.get(Keys.ITEM_ENCHANTMENTS).orElse(ImmutableList.of());
        if (enchantments.isEmpty()) {
            src.sendMessage(Text.of(TextColors.RED, "This item has no enchantments!"));
        }
        enchantments.forEach(enchantment -> {
            final EnchantmentType type = enchantment.getType();
            src.sendMessage(Text.of(TextColors.GOLD, "============================="));
            src.sendMessage(Text.of(TextColors.GOLD, "Type: ", TextColors.GRAY, type.getName()));
            src.sendMessage(Text.of(TextColors.GOLD, "Type ID: ", TextColors.GRAY, type.getId()));
            src.sendMessage(Text.of(TextColors.GOLD, "Translation: ", TextColors.GRAY, enchantment.getType().getTranslation()));
            src.sendMessage(Text.of(TextColors.GOLD, "Level: ", TextColors.GRAY, enchantment.getLevel()));
            src.sendMessage(Text.of(TextColors.GOLD, "Maximum level: ", TextColors.GRAY, type.getMaximumLevel()));
            src.sendMessage(Text.of(TextColors.GOLD, "Minimum level: ", TextColors.GRAY, type.getMinimumLevel()));
            src.sendMessage(Text.of(TextColors.GOLD, "Weight: ", TextColors.GRAY, type.getWeight()));
            src.sendMessage(Text.of(TextColors.GOLD, "Curse: ", TextColors.GRAY, type.isCurse()));
            src.sendMessage(Text.of(TextColors.GOLD, "Treasure: ", TextColors.GRAY, type.isTreasure()));
        });
        return CommandResult.success();
    }).build(), "spongeenchantinfo");
}
Also used : Player(org.spongepowered.api.entity.living.player.Player) EnchantmentType(org.spongepowered.api.item.enchantment.EnchantmentType) CommandException(org.spongepowered.api.command.CommandException) ItemStack(org.spongepowered.api.item.inventory.ItemStack) Enchantment(org.spongepowered.api.item.enchantment.Enchantment) Listener(org.spongepowered.api.event.Listener)

Aggregations

EnchantmentType (org.spongepowered.api.item.enchantment.EnchantmentType)7 Enchantment (org.spongepowered.api.item.enchantment.Enchantment)6 NBTTagCompound (net.minecraft.nbt.NBTTagCompound)3 NBTTagList (net.minecraft.nbt.NBTTagList)3 Player (org.spongepowered.api.entity.living.player.Player)3 SpongeEnchantment (org.spongepowered.common.item.enchantment.SpongeEnchantment)3 Map (java.util.Map)2 EnchantmentData (org.spongepowered.api.data.manipulator.mutable.item.EnchantmentData)2 ItemStack (org.spongepowered.api.item.inventory.ItemStack)2 Text (org.spongepowered.api.text.Text)2 Maps (com.google.common.collect.Maps)1 Util (io.github.nucleuspowered.nucleus.Util)1 BoundedIntegerArgument (io.github.nucleuspowered.nucleus.argumentparsers.BoundedIntegerArgument)1 ImprovedCatalogTypeArgument (io.github.nucleuspowered.nucleus.argumentparsers.ImprovedCatalogTypeArgument)1 Permissions (io.github.nucleuspowered.nucleus.internal.annotations.command.Permissions)1 RegisterCommand (io.github.nucleuspowered.nucleus.internal.annotations.command.RegisterCommand)1 AbstractCommand (io.github.nucleuspowered.nucleus.internal.command.AbstractCommand)1 EssentialsEquivalent (io.github.nucleuspowered.nucleus.internal.docgen.annotations.EssentialsEquivalent)1 PermissionInformation (io.github.nucleuspowered.nucleus.internal.permissions.PermissionInformation)1 SuggestedLevel (io.github.nucleuspowered.nucleus.internal.permissions.SuggestedLevel)1