package net.minecraft.block; import java.util.Random; import net.minecraft.block.material.Material; import net.minecraft.block.properties.IProperty; import net.minecraft.block.properties.PropertyInteger; import net.minecraft.block.state.BlockState; import net.minecraft.block.state.IBlockState; import net.minecraft.entity.EntityLivingBase; import net.minecraft.init.Blocks; import net.minecraft.init.Items; import net.minecraft.item.EnumDyeColor; import net.minecraft.item.ItemStack; import net.minecraft.util.AxisAlignedBB; import net.minecraft.util.BlockPos; import net.minecraft.util.EnumFacing; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; public class BlockCocoa extends BlockDirectional implements IGrowable { public static final PropertyInteger field_176501_a = PropertyInteger.create("age", 0, 2); private static final String __OBFID = "CL_00000216"; public BlockCocoa() { super(Material.plants); this.setDefaultState(this.blockState.getBaseState().withProperty(AGE, EnumFacing.NORTH).withProperty(field_176501_a, Integer.valueOf(0))); this.setTickRandomly(true); } public void updateTick(World worldIn, BlockPos pos, IBlockState state, Random rand) { if (!this.canBlockStay(worldIn, pos, state)) { this.dropBlock(worldIn, pos, state); } else if (worldIn.rand.nextInt(5) == 0) { int var5 = ((Integer)state.getValue(field_176501_a)).intValue(); if (var5 < 2) { worldIn.setBlockState(pos, state.withProperty(field_176501_a, Integer.valueOf(var5 + 1)), 2); } } } public boolean canBlockStay(World worldIn, BlockPos p_176499_2_, IBlockState p_176499_3_) { p_176499_2_ = p_176499_2_.offset((EnumFacing)p_176499_3_.getValue(AGE)); IBlockState var4 = worldIn.getBlockState(p_176499_2_); return var4.getBlock() == Blocks.log && var4.getValue(BlockPlanks.VARIANT_PROP) == BlockPlanks.EnumType.JUNGLE; } public boolean isFullCube() { return false; } public boolean isOpaqueCube() { return false; } public AxisAlignedBB getCollisionBoundingBox(World worldIn, BlockPos pos, IBlockState state) { this.setBlockBoundsBasedOnState(worldIn, pos); return super.getCollisionBoundingBox(worldIn, pos, state); } public void setBlockBoundsBasedOnState(IBlockAccess access, BlockPos pos) { IBlockState var3 = access.getBlockState(pos); EnumFacing var4 = (EnumFacing)var3.getValue(AGE); int var5 = ((Integer)var3.getValue(field_176501_a)).intValue(); int var6 = 4 + var5 * 2; int var7 = 5 + var5 * 2; float var8 = (float)var6 / 2.0F; switch (BlockCocoa.SwitchEnumFacing.FACINGARRAY[var4.ordinal()]) { case 1: this.setBlockBounds((8.0F - var8) / 16.0F, (12.0F - (float)var7) / 16.0F, (15.0F - (float)var6) / 16.0F, (8.0F + var8) / 16.0F, 0.75F, 0.9375F); break; case 2: this.setBlockBounds((8.0F - var8) / 16.0F, (12.0F - (float)var7) / 16.0F, 0.0625F, (8.0F + var8) / 16.0F, 0.75F, (1.0F + (float)var6) / 16.0F); break; case 3: this.setBlockBounds(0.0625F, (12.0F - (float)var7) / 16.0F, (8.0F - var8) / 16.0F, (1.0F + (float)var6) / 16.0F, 0.75F, (8.0F + var8) / 16.0F); break; case 4: this.setBlockBounds((15.0F - (float)var6) / 16.0F, (12.0F - (float)var7) / 16.0F, (8.0F - var8) / 16.0F, 0.9375F, 0.75F, (8.0F + var8) / 16.0F); } } public void onBlockPlacedBy(World worldIn, BlockPos pos, IBlockState state, EntityLivingBase placer, ItemStack stack) { EnumFacing var6 = EnumFacing.fromAngle((double)placer.rotationYaw); worldIn.setBlockState(pos, state.withProperty(AGE, var6), 2); } public IBlockState onBlockPlaced(World worldIn, BlockPos pos, EnumFacing facing, float hitX, float hitY, float hitZ, int meta, EntityLivingBase placer) { if (!facing.getAxis().isHorizontal()) { facing = EnumFacing.NORTH; } return this.getDefaultState().withProperty(AGE, facing.getOpposite()).withProperty(field_176501_a, Integer.valueOf(0)); } public void onNeighborBlockChange(World worldIn, BlockPos pos, IBlockState state, Block neighborBlock) { if (!this.canBlockStay(worldIn, pos, state)) { this.dropBlock(worldIn, pos, state); } } private void dropBlock(World worldIn, BlockPos p_176500_2_, IBlockState p_176500_3_) { worldIn.setBlockState(p_176500_2_, Blocks.air.getDefaultState(), 3); this.dropBlockAsItem(worldIn, p_176500_2_, p_176500_3_, 0); } /** * Spawns this Block's drops into the World as EntityItems. * * @param chance The chance that each Item is actually spawned (1.0 = always, 0.0 = never) * @param fortune The player's fortune level */ public void dropBlockAsItemWithChance(World worldIn, BlockPos pos, IBlockState state, float chance, int fortune) { int var6 = ((Integer)state.getValue(field_176501_a)).intValue(); byte var7 = 1; if (var6 >= 2) { var7 = 3; } for (int var8 = 0; var8 < var7; ++var8) { spawnAsEntity(worldIn, pos, new ItemStack(Items.dye, 1, EnumDyeColor.BROWN.getDyeColorDamage())); } } public int getDamageValue(World worldIn, BlockPos pos) { return EnumDyeColor.BROWN.getDyeColorDamage(); } public boolean isStillGrowing(World worldIn, BlockPos p_176473_2_, IBlockState p_176473_3_, boolean p_176473_4_) { return ((Integer)p_176473_3_.getValue(field_176501_a)).intValue() < 2; } public boolean canUseBonemeal(World worldIn, Random p_180670_2_, BlockPos p_180670_3_, IBlockState p_180670_4_) { return true; } public void grow(World worldIn, Random p_176474_2_, BlockPos p_176474_3_, IBlockState p_176474_4_) { worldIn.setBlockState(p_176474_3_, p_176474_4_.withProperty(field_176501_a, Integer.valueOf(((Integer)p_176474_4_.getValue(field_176501_a)).intValue() + 1)), 2); } /** * Convert the given metadata into a BlockState for this Block */ public IBlockState getStateFromMeta(int meta) { return this.getDefaultState().withProperty(AGE, EnumFacing.getHorizontal(meta)).withProperty(field_176501_a, Integer.valueOf((meta & 15) >> 2)); } /** * Convert the BlockState into the correct metadata value */ public int getMetaFromState(IBlockState state) { byte var2 = 0; int var3 = var2 | ((EnumFacing)state.getValue(AGE)).getHorizontalIndex(); var3 |= ((Integer)state.getValue(field_176501_a)).intValue() << 2; return var3; } protected BlockState createBlockState() { return new BlockState(this, new IProperty[] {AGE, field_176501_a}); } static final class SwitchEnumFacing { static final int[] FACINGARRAY = new int[EnumFacing.values().length]; private static final String __OBFID = "CL_00002130"; static { try { FACINGARRAY[EnumFacing.SOUTH.ordinal()] = 1; } catch (NoSuchFieldError var4) { ; } try { FACINGARRAY[EnumFacing.NORTH.ordinal()] = 2; } catch (NoSuchFieldError var3) { ; } try { FACINGARRAY[EnumFacing.WEST.ordinal()] = 3; } catch (NoSuchFieldError var2) { ; } try { FACINGARRAY[EnumFacing.EAST.ordinal()] = 4; } catch (NoSuchFieldError var1) { ; } } } }