Search in sources :

Example 1 with SkinDye

use of riskyken.armourersWorkshop.common.skin.data.SkinDye in project Armourers-Workshop by RiskyKen.

the class RecipeSkinCopy method getCraftingResult.

@Override
public ItemStack getCraftingResult(IInventory inventory) {
    ItemStack skinStack = null;
    ItemStack blackStack = null;
    for (int slotId = 0; slotId < inventory.getSizeInventory(); slotId++) {
        ItemStack stack = inventory.getStackInSlot(slotId);
        if (stack != null) {
            Item item = stack.getItem();
            if (item == ModItems.equipmentSkin && SkinNBTHelper.stackHasSkinData(stack)) {
                if (skinStack != null) {
                    return null;
                }
                skinStack = stack;
            } else if (item == ModItems.equipmentSkinTemplate & !SkinNBTHelper.stackHasSkinData(stack)) {
                if (blackStack != null) {
                    return null;
                }
                blackStack = stack;
            } else {
                return null;
            }
        }
    }
    if (skinStack != null && blackStack != null) {
        ItemStack returnStack = new ItemStack(ModItems.equipmentSkin, 1);
        SkinPointer skinData = SkinNBTHelper.getSkinPointerFromStack(skinStack);
        SkinNBTHelper.addSkinDataToStack(returnStack, skinData.getIdentifier(), false, new SkinDye(skinData.getSkinDye()));
        return returnStack;
    }
    return null;
}
Also used : Item(net.minecraft.item.Item) SkinPointer(riskyken.armourersWorkshop.common.skin.data.SkinPointer) SkinDye(riskyken.armourersWorkshop.common.skin.data.SkinDye) ItemStack(net.minecraft.item.ItemStack)

Example 2 with SkinDye

use of riskyken.armourersWorkshop.common.skin.data.SkinDye in project Armourers-Workshop by RiskyKen.

the class SkinNBTHelper method makeEquipmentSkinStack.

public static ItemStack makeEquipmentSkinStack(SkinPointer skinPointer) {
    ItemStack stack = new ItemStack(ModItems.equipmentSkin, 1);
    stack.setTagCompound(new NBTTagCompound());
    addSkinDataToStack(stack, skinPointer.getIdentifier(), false, new SkinDye(skinPointer.getSkinDye()));
    return stack;
}
Also used : ISkinDye(riskyken.armourersWorkshop.api.common.skin.data.ISkinDye) SkinDye(riskyken.armourersWorkshop.common.skin.data.SkinDye) NBTTagCompound(net.minecraft.nbt.NBTTagCompound) ItemStack(net.minecraft.item.ItemStack)

Example 3 with SkinDye

use of riskyken.armourersWorkshop.common.skin.data.SkinDye in project Armourers-Workshop by RiskyKen.

the class SkinNBTHelper method makeArmouerContainerStack.

public static ItemStack makeArmouerContainerStack(SkinPointer skinPointer) {
    ItemStack stack = new ItemStack(ModItems.armourContainer[skinPointer.getIdentifier().getSkinType().getVanillaArmourSlotId()], 1);
    stack.setTagCompound(new NBTTagCompound());
    addSkinDataToStack(stack, skinPointer.getIdentifier(), false, new SkinDye(skinPointer.getSkinDye()));
    return stack;
}
Also used : ISkinDye(riskyken.armourersWorkshop.api.common.skin.data.ISkinDye) SkinDye(riskyken.armourersWorkshop.common.skin.data.SkinDye) NBTTagCompound(net.minecraft.nbt.NBTTagCompound) ItemStack(net.minecraft.item.ItemStack)

Example 4 with SkinDye

use of riskyken.armourersWorkshop.common.skin.data.SkinDye in project Armourers-Workshop by RiskyKen.

the class CommandGiveSkin method processCommand.

@Override
public void processCommand(ICommandSender commandSender, String[] currentCommand) {
    if (currentCommand.length < 3) {
        throw new WrongUsageException(getCommandUsage(commandSender), (Object) currentCommand);
    }
    String playerName = currentCommand[1];
    EntityPlayerMP player = getPlayer(commandSender, playerName);
    if (player == null) {
        return;
    }
    String skinName = currentCommand[2];
    if (!skinName.substring(0, 1).equals("\"")) {
        throw new WrongUsageException(getCommandUsage(commandSender), (Object) skinName);
    }
    int usedCommands = 2;
    if (!skinName.substring(skinName.length() - 1, skinName.length()).equals("\"")) {
        for (int i = 3; i < currentCommand.length; i++) {
            skinName += " " + currentCommand[i];
            if (skinName.substring(skinName.length() - 1, skinName.length()).equals("\"")) {
                usedCommands = i;
                break;
            }
        }
    }
    ModLogger.log("usedCommands used: " + usedCommands);
    ModLogger.log("total commands used: " + currentCommand.length);
    if (!skinName.substring(skinName.length() - 1, skinName.length()).equals("\"")) {
        throw new WrongUsageException(getCommandUsage(commandSender), (Object) skinName);
    }
    skinName = skinName.replace("\"", "");
    SkinDye skinDye = new SkinDye();
    for (int i = usedCommands + 1; i < currentCommand.length; i++) {
        String dyeCommand = currentCommand[i];
        ModLogger.log("Command dye: " + dyeCommand);
        if (!dyeCommand.contains("-")) {
            throw new WrongUsageException(getCommandUsage(commandSender), (Object) skinName);
        }
        String[] commandSplit = dyeCommand.split("-");
        if (commandSplit.length != 2) {
            throw new WrongUsageException(getCommandUsage(commandSender), (Object) skinName);
        }
        int dyeIndex = parseIntBounded(commandSender, commandSplit[0], 1, 8) - 1;
        String dye = commandSplit[1];
        if (dye.startsWith("#") && dye.length() == 7) {
            // dye = dye.substring(2, 8);
            if (isValidHex(dye)) {
                Color dyeColour = Color.decode(dye);
                int r = dyeColour.getRed();
                int g = dyeColour.getGreen();
                int b = dyeColour.getBlue();
                skinDye.addDye(dyeIndex, new byte[] { (byte) r, (byte) g, (byte) b, (byte) 255 });
            } else {
                throw new WrongUsageException("commands.armourers.invalidDyeFormat", (Object) dye);
            }
        } else if (dye.length() >= 5 & dye.contains(",")) {
            String[] dyeValues = dye.split(",");
            if (dyeValues.length != 3) {
                throw new WrongUsageException(getCommandUsage(commandSender), (Object) skinName);
            }
            int r = parseIntBounded(commandSender, dyeValues[0], 0, 255);
            int g = parseIntBounded(commandSender, dyeValues[1], 0, 255);
            int b = parseIntBounded(commandSender, dyeValues[2], 0, 255);
            skinDye.addDye(dyeIndex, new byte[] { (byte) r, (byte) g, (byte) b, (byte) 255 });
        } else {
            throw new WrongUsageException("commands.armourers.invalidDyeFormat", (Object) dye);
        }
    }
    LibraryFile libraryFile = new LibraryFile(skinName);
    Skin skin = SkinIOUtils.loadSkinFromLibraryFile(libraryFile);
    if (skin == null) {
        throw new WrongUsageException("commands.armourers.fileNotFound", (Object) skinName);
    }
    try {
        skin.lightHash();
    } catch (Exception e) {
        ModLogger.log(Level.ERROR, String.format("Unable to create ID for file %s.", libraryFile.toString()));
        return;
    }
    CommonSkinCache.INSTANCE.addEquipmentDataToCache(skin, libraryFile);
    SkinIdentifier skinIdentifier = new SkinIdentifier(0, libraryFile, 0, skin.getSkinType());
    ItemStack skinStack = SkinNBTHelper.makeEquipmentSkinStack(new SkinPointer(skinIdentifier, skinDye));
    EntityItem entityItem = player.dropPlayerItemWithRandomChoice(skinStack, false);
    entityItem.delayBeforeCanPickup = 0;
    entityItem.func_145797_a(player.getCommandSenderName());
}
Also used : SkinPointer(riskyken.armourersWorkshop.common.skin.data.SkinPointer) SkinDye(riskyken.armourersWorkshop.common.skin.data.SkinDye) Color(java.awt.Color) WrongUsageException(net.minecraft.command.WrongUsageException) SkinIdentifier(riskyken.armourersWorkshop.common.skin.data.SkinIdentifier) WrongUsageException(net.minecraft.command.WrongUsageException) EntityPlayerMP(net.minecraft.entity.player.EntityPlayerMP) Skin(riskyken.armourersWorkshop.common.skin.data.Skin) LibraryFile(riskyken.armourersWorkshop.common.library.LibraryFile) ItemStack(net.minecraft.item.ItemStack) EntityItem(net.minecraft.entity.item.EntityItem)

Example 5 with SkinDye

use of riskyken.armourersWorkshop.common.skin.data.SkinDye in project Armourers-Workshop by RiskyKen.

the class CommandSetSkin method processCommand.

@Override
public void processCommand(ICommandSender commandSender, String[] currentCommand) {
    if (currentCommand.length < 3) {
        throw new WrongUsageException(getCommandUsage(commandSender), (Object) currentCommand);
    }
    String playerName = currentCommand[1];
    EntityPlayerMP player = getPlayer(commandSender, playerName);
    if (player == null) {
        return;
    }
    int slotNum = 0;
    slotNum = parseIntBounded(commandSender, currentCommand[2], 1, 8);
    String skinName = currentCommand[3];
    if (!skinName.substring(0, 1).equals("\"")) {
        throw new WrongUsageException(getCommandUsage(commandSender), (Object) skinName);
    }
    int usedCommands = 3;
    if (!skinName.substring(skinName.length() - 1, skinName.length()).equals("\"")) {
        for (int i = 3; i < currentCommand.length; i++) {
            skinName += " " + currentCommand[i];
            if (skinName.substring(skinName.length() - 1, skinName.length()).equals("\"")) {
                usedCommands = i;
                break;
            }
        }
    }
    ModLogger.log("usedCommands used: " + usedCommands);
    ModLogger.log("total commands used: " + currentCommand.length);
    if (!skinName.substring(skinName.length() - 1, skinName.length()).equals("\"")) {
        throw new WrongUsageException(getCommandUsage(commandSender), (Object) skinName);
    }
    skinName = skinName.replace("\"", "");
    SkinDye skinDye = new SkinDye();
    for (int i = usedCommands + 1; i < currentCommand.length; i++) {
        String dyeCommand = currentCommand[i];
        ModLogger.log("Command dye: " + dyeCommand);
        if (!dyeCommand.contains("-")) {
            throw new WrongUsageException(getCommandUsage(commandSender), (Object) skinName);
        }
        String[] commandSplit = dyeCommand.split("-");
        if (commandSplit.length != 2) {
            throw new WrongUsageException(getCommandUsage(commandSender), (Object) skinName);
        }
        int dyeIndex = parseIntBounded(commandSender, commandSplit[0], 1, 8) - 1;
        String dye = commandSplit[1];
        if (dye.startsWith("#") && dye.length() == 7) {
            // dye = dye.substring(2, 8);
            if (isValidHex(dye)) {
                Color dyeColour = Color.decode(dye);
                int r = dyeColour.getRed();
                int g = dyeColour.getGreen();
                int b = dyeColour.getBlue();
                skinDye.addDye(dyeIndex, new byte[] { (byte) r, (byte) g, (byte) b, (byte) 255 });
            } else {
                throw new WrongUsageException("commands.armourers.invalidDyeFormat", (Object) dye);
            }
        } else if (dye.length() >= 5 & dye.contains(",")) {
            String[] dyeValues = dye.split(",");
            if (dyeValues.length != 3) {
                throw new WrongUsageException(getCommandUsage(commandSender), (Object) skinName);
            }
            int r = parseIntBounded(commandSender, dyeValues[0], 0, 255);
            int g = parseIntBounded(commandSender, dyeValues[1], 0, 255);
            int b = parseIntBounded(commandSender, dyeValues[2], 0, 255);
            skinDye.addDye(dyeIndex, new byte[] { (byte) r, (byte) g, (byte) b, (byte) 255 });
        } else {
            throw new WrongUsageException("commands.armourers.invalidDyeFormat", (Object) dye);
        }
    }
    LibraryFile libraryFile = new LibraryFile(skinName);
    Skin skin = SkinIOUtils.loadSkinFromLibraryFile(libraryFile);
    if (skin == null) {
        throw new WrongUsageException("commands.armourers.fileNotFound", (Object) skinName);
    }
    try {
        skin.lightHash();
    } catch (Exception e) {
        ModLogger.log(Level.ERROR, String.format("Unable to create ID for file %s.", libraryFile.toString()));
        return;
    }
    CommonSkinCache.INSTANCE.addEquipmentDataToCache(skin, libraryFile);
    SkinIdentifier skinIdentifier = new SkinIdentifier(0, libraryFile, 0, skin.getSkinType());
    ItemStack skinStack = SkinNBTHelper.makeEquipmentSkinStack(new SkinPointer(skinIdentifier, skinDye));
    ExPropsPlayerSkinData.get(player).setEquipmentStack(skinStack, slotNum - 1);
}
Also used : SkinPointer(riskyken.armourersWorkshop.common.skin.data.SkinPointer) SkinDye(riskyken.armourersWorkshop.common.skin.data.SkinDye) Color(java.awt.Color) WrongUsageException(net.minecraft.command.WrongUsageException) SkinIdentifier(riskyken.armourersWorkshop.common.skin.data.SkinIdentifier) WrongUsageException(net.minecraft.command.WrongUsageException) EntityPlayerMP(net.minecraft.entity.player.EntityPlayerMP) Skin(riskyken.armourersWorkshop.common.skin.data.Skin) LibraryFile(riskyken.armourersWorkshop.common.library.LibraryFile) ItemStack(net.minecraft.item.ItemStack)

Aggregations

ItemStack (net.minecraft.item.ItemStack)5 SkinDye (riskyken.armourersWorkshop.common.skin.data.SkinDye)5 SkinPointer (riskyken.armourersWorkshop.common.skin.data.SkinPointer)3 Color (java.awt.Color)2 WrongUsageException (net.minecraft.command.WrongUsageException)2 EntityPlayerMP (net.minecraft.entity.player.EntityPlayerMP)2 NBTTagCompound (net.minecraft.nbt.NBTTagCompound)2 ISkinDye (riskyken.armourersWorkshop.api.common.skin.data.ISkinDye)2 LibraryFile (riskyken.armourersWorkshop.common.library.LibraryFile)2 Skin (riskyken.armourersWorkshop.common.skin.data.Skin)2 SkinIdentifier (riskyken.armourersWorkshop.common.skin.data.SkinIdentifier)2 EntityItem (net.minecraft.entity.item.EntityItem)1 Item (net.minecraft.item.Item)1