use of net.mcft.copy.betterstorage.item.IDyeableItem in project BetterStorage by copygirl.
the class CommonProxy method onPlayerInteract.
@SubscribeEvent
public void onPlayerInteract(PlayerInteractEvent event) {
World world = event.entity.worldObj;
int x = event.x;
int y = event.y;
int z = event.z;
EntityPlayer player = event.entityPlayer;
ItemStack holding = player.getCurrentEquippedItem();
Block block = world.getBlock(x, y, z);
boolean leftClick = (event.action == Action.LEFT_CLICK_BLOCK);
boolean rightClick = (event.action == Action.RIGHT_CLICK_BLOCK);
// Interact with attachments.
if (leftClick || rightClick) {
IHasAttachments hasAttachments = WorldUtils.get(world, x, y, z, IHasAttachments.class);
if (hasAttachments != null) {
EnumAttachmentInteraction interactionType = ((event.action == Action.LEFT_CLICK_BLOCK) ? EnumAttachmentInteraction.attack : EnumAttachmentInteraction.use);
if (hasAttachments.getAttachments().interact(WorldUtils.rayTrace(player, 1.0F), player, interactionType)) {
event.useBlock = Result.DENY;
event.useItem = Result.DENY;
}
}
}
// Use cauldron to remove color from dyable items
if (rightClick && (block == Blocks.cauldron)) {
int metadata = world.getBlockMetadata(x, y, z);
if (metadata > 0) {
IDyeableItem dyeable = (((holding != null) && (holding.getItem() instanceof IDyeableItem)) ? (IDyeableItem) holding.getItem() : null);
if ((dyeable != null) && (dyeable.canDye(holding))) {
StackUtils.remove(holding, "display", "color");
world.setBlockMetadataWithNotify(x, y, z, metadata - 1, 2);
world.func_147453_f(x, y, z, block);
event.useBlock = Result.DENY;
event.useItem = Result.DENY;
}
}
}
// Prevent players from breaking blocks with broken cardboard items.
if (leftClick && (holding != null) && (holding.getItem() instanceof ICardboardItem) && !ItemCardboardSheet.isEffective(holding))
event.useItem = Result.DENY;
// Attach locks to iron doors.
if (!world.isRemote && BetterStorageTiles.lockableDoor != null && rightClick && block == Blocks.iron_door) {
MovingObjectPosition target = WorldUtils.rayTrace(player, 1F);
if (target != null && getIronDoorHightlightBox(player, world, x, y, z, target.hitVec, block) != null) {
int meta = world.getBlockMetadata(x, y, z);
boolean isMirrored;
if (meta >= 8) {
isMirrored = meta == 9;
y -= 1;
meta = world.getBlockMetadata(x, y, z);
} else
isMirrored = world.getBlockMetadata(x, y + 1, z) == 9;
int rotation = meta & 3;
ForgeDirection orientation = rotation == 0 ? ForgeDirection.WEST : rotation == 1 ? ForgeDirection.NORTH : rotation == 2 ? ForgeDirection.EAST : ForgeDirection.SOUTH;
orientation = isMirrored ? (orientation == ForgeDirection.WEST ? ForgeDirection.SOUTH : orientation == ForgeDirection.NORTH ? ForgeDirection.WEST : orientation == ForgeDirection.EAST ? ForgeDirection.NORTH : ForgeDirection.EAST) : orientation;
world.setBlock(x, y, z, BetterStorageTiles.lockableDoor, 0, SetBlockFlag.SEND_TO_CLIENT);
world.setBlock(x, y + 1, z, BetterStorageTiles.lockableDoor, 8, SetBlockFlag.SEND_TO_CLIENT);
TileEntityLockableDoor te = WorldUtils.get(world, x, y, z, TileEntityLockableDoor.class);
te.orientation = orientation;
te.isOpen = isMirrored;
te.isMirrored = isMirrored;
te.setLock(holding);
player.inventory.setInventorySlotContents(player.inventory.currentItem, null);
}
}
// Prevent eating of slime buckets after capturing them.
if (preventSlimeBucketUse) {
event.setCanceled(true);
preventSlimeBucketUse = false;
}
}
use of net.mcft.copy.betterstorage.item.IDyeableItem in project BetterStorage by copygirl.
the class DyeRecipe method getCraftingResult.
@Override
public ItemStack getCraftingResult(InventoryCrafting crafting) {
ItemStack armor = null;
IDyeableItem dyeable = null;
List<ItemStack> dyes = new ArrayList<ItemStack>();
for (int i = 0; i < crafting.getSizeInventory(); i++) {
ItemStack stack = crafting.getStackInSlot(i);
if (stack == null)
continue;
dyeable = ((stack.getItem() instanceof IDyeableItem) ? (IDyeableItem) stack.getItem() : null);
if ((dyeable != null) && dyeable.canDye(stack)) {
if (armor != null)
return null;
armor = stack.copy();
} else if (DyeUtils.isDye(stack))
dyes.add(stack);
else
return null;
}
if (dyes.isEmpty())
return null;
int oldColor = StackUtils.get(armor, -1, "display", "color");
int newColor = DyeUtils.getColorFromDyes(oldColor, dyes);
StackUtils.set(armor, newColor, "display", "color");
return armor;
}
use of net.mcft.copy.betterstorage.item.IDyeableItem in project BetterStorage by copygirl.
the class DyeRecipe method matches.
@Override
public boolean matches(InventoryCrafting crafting, World world) {
boolean hasArmor = false;
boolean hasDyes = false;
for (int i = 0; i < crafting.getSizeInventory(); i++) {
ItemStack stack = crafting.getStackInSlot(i);
if (stack == null)
continue;
IDyeableItem dyeable = ((stack.getItem() instanceof IDyeableItem) ? (IDyeableItem) stack.getItem() : null);
if ((dyeable != null) && dyeable.canDye(stack)) {
if (hasArmor)
return false;
hasArmor = true;
} else if (DyeUtils.isDye(stack))
hasDyes = true;
else
return false;
}
return (hasArmor && hasDyes);
}
Aggregations