Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.81 KB | None | 0 0
  1. //Block Class
  2.  
  3. public class EnderCrystalClass extends Block {
  4.     public static final PropertyDirection FACING = PropertyDirection.create("facing");
  5.     public static final PropertyEnum STAGE = PropertyEnum.create("stage", EnumStage.class);
  6.     public EnderCrystalClass(Material mat, MapColor map) {
  7.         super(mat, map);
  8.         setStepSound(soundTypeGlass);
  9.         setResistance(5f);
  10.         setHardness(4f);
  11.         //setHarvestLevel("pickaxe", 1);
  12.     }
  13.    
  14.     @Override
  15.     public boolean isFullBlock() {
  16.         return false;
  17.     }
  18.  
  19.     @Override
  20.     public boolean isBlockNormalCube() {
  21.         return false;
  22.     }
  23.  
  24.     @Override
  25.     public boolean isVisuallyOpaque() {
  26.         return false;
  27.     }
  28.  
  29.     @Override
  30.     public boolean isFullCube() {
  31.         return false;
  32.     }
  33.  
  34.     @Override
  35.     public boolean isOpaqueCube() {
  36.         return false;
  37.     }
  38.  
  39.     @Override
  40.     public IBlockState getStateFromMeta(int meta) {
  41.         EnumFacing facing = EnumFacing.getHorizontal(meta);
  42.         int stageBits = (meta & 0x0c) >> 2; //1100 >> 2 == 0011.
  43.         EnumStage stage = EnumStage.byMetadata(stageBits);
  44.         return this.getDefaultState().withProperty(FACING, facing).withProperty(STAGE, stage);
  45.     }
  46.    
  47.    
  48.  
  49.     @Override
  50.     public int getMetaFromState(IBlockState state) {
  51.         EnumFacing facing = (EnumFacing)state.getValue(FACING);
  52.         EnumStage stage = (EnumStage)state.getValue(STAGE);
  53.        
  54.         int facingbits = facing.getHorizontalIndex();
  55.         int stagebits = stage.getMetadata() << 2;
  56.         return facingbits | stagebits;
  57.     }
  58.    
  59.     @Override
  60.     protected BlockState createBlockState() {
  61.         return new BlockState(this, new IProperty[] {FACING, STAGE});
  62.     }
  63.    
  64.     @Override
  65.     public IBlockState onBlockPlaced(World worldIn, BlockPos pos, EnumFacing facing, float hitX, float hitY, float hitZ, int meta, EntityLivingBase placer)
  66.     {
  67.         EnumStage stage = EnumStage.byMetadata(meta);
  68.         EnumFacing enumFacing = (placer == null) ? EnumFacing.NORTH : EnumFacing.fromAngle(placer.rotationYaw);
  69.        
  70.         return this.getDefaultState().withProperty(FACING, enumFacing).withProperty(STAGE, stage);
  71.     }
  72.    
  73.    
  74.     @SideOnly(Side.CLIENT)
  75.     public EnumWorldBlockLayer getBlockLayer()
  76.     {
  77.         return EnumWorldBlockLayer.TRANSLUCENT;
  78.     }
  79.  
  80. //Enum Class
  81.  
  82. public enum EnumStage implements IStringSerializable{
  83.     STAGE1(0, "stage1"),
  84.     STAGE2(1, "stage2"),
  85.     STAGE3(2, "stage3"),
  86.     STAGE4(3, "stage4");
  87.  
  88.     public int getMetadata()
  89.     {
  90.         return this.meta;
  91.     }
  92.  
  93.     @Override
  94.     public String toString() {
  95.         return this.name();
  96.     }
  97.    
  98.     public static EnumStage byMetadata(int meta)
  99.     {
  100.         if(meta < 0 || meta >= META_LOOKUP.length)
  101.         {
  102.             meta = 0;
  103.         }
  104.         return META_LOOKUP[meta];
  105.     }
  106.    
  107.     @Override
  108.     public String getName() {
  109.         return this.name();
  110.     }
  111.    
  112.     private final int meta;
  113.     private final String name;
  114.     private static final EnumStage[] META_LOOKUP = new EnumStage[values().length];
  115.     private EnumStage(int i_meta, String i_name)
  116.     {
  117.         this.meta = i_meta;
  118.         this.name = i_name;
  119.     }
  120.    
  121.     static
  122.     {
  123.         for(EnumStage stage : values())
  124.         {
  125.             META_LOOKUP[stage.getMetadata()] = stage;
  126.         }
  127.     }
  128. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement