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;
}
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;
}
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;
}
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());
}
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);
}
Aggregations