Advertisement
Guest User

Untitled

a guest
Jun 15th, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.05 KB | None | 0 0
  1. package me.ferdz.placeableitems.block;
  2.  
  3. import me.ferdz.placeableitems.block.state.EnumPreciseFacing;
  4. import me.ferdz.placeableitems.init.ModBlocks;
  5. import net.minecraft.block.Block;
  6. import net.minecraft.block.material.Material;
  7. import net.minecraft.block.properties.IProperty;
  8. import net.minecraft.block.properties.PropertyDirection;
  9. import net.minecraft.block.properties.PropertyEnum;
  10. import net.minecraft.block.state.BlockStateContainer;
  11. import net.minecraft.block.state.IBlockState;
  12. import net.minecraft.entity.EntityLivingBase;
  13. import net.minecraft.item.Item;
  14. import net.minecraft.util.EnumFacing;
  15. import net.minecraft.util.math.AxisAlignedBB;
  16. import net.minecraft.util.math.BlockPos;
  17. import net.minecraft.util.math.MathHelper;
  18. import net.minecraft.world.IBlockAccess;
  19. import net.minecraft.world.World;
  20. import net.minecraftforge.fml.common.registry.GameRegistry;
  21.  
  22. public class BlockPlaceableItems extends Block {
  23.  
  24.     public static final PropertyEnum<EnumPreciseFacing> FACING = PropertyDirection.create("facing", EnumPreciseFacing.class);
  25.    
  26.     private AxisAlignedBB boundingBox;
  27.    
  28.     public BlockPlaceableItems(Material material, String name) {
  29.         super(material);
  30.        
  31.         setDefaultState(this.blockState.getBaseState().withProperty(FACING, EnumPreciseFacing.D0));
  32.         setUnlocalizedName(name);
  33.         setRegistryName(name);
  34.         GameRegistry.register(this);
  35.     }
  36.  
  37.     /**
  38.      * Will set the bounding box. Parameters are in pixels  
  39.      * 1 = 1 / 16 of a block
  40.      * @param x1
  41.      * @param y1
  42.      * @param z1
  43.      * @param x2
  44.      * @param y2
  45.      * @param z2
  46.      * @return
  47.      */
  48.     public BlockPlaceableItems setBoundingBox(double x1, double y1, double z1, double x2, double y2, double z2) {
  49.         this.boundingBox = new AxisAlignedBB(x1 / 16, y1 / 16, z1 / 16, x2 / 16, y2 / 16, z2 / 16);
  50.         return this;
  51.     }
  52.    
  53.     public BlockPlaceableItems setItem(Item item) {
  54.         ModBlocks.blockMap.put(item, this);
  55.         return this;
  56.     }
  57.    
  58.     @Override
  59.     public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) {
  60.         return this.boundingBox != null ? this.boundingBox : new AxisAlignedBB(0, 0, 0, 1, 1, 1);
  61.     }
  62.  
  63.     @Override
  64.     public IBlockState onBlockPlaced(World world, BlockPos pos, EnumFacing facing, float hitX, float hitY, float hitZ, int meta, EntityLivingBase placer) {
  65.         return this.getDefaultState().withProperty(FACING, EnumPreciseFacing.values()[MathHelper.floor_double((double)(placer.rotationYaw * 8.0F / 360.0F) + 0.5D) & 3]);
  66.     }
  67.  
  68.     @Override
  69.     public IBlockState getStateFromMeta(int meta) {
  70.         return this.getDefaultState().withProperty(FACING, EnumPreciseFacing.values()[meta]);
  71.     }
  72.  
  73.     @Override
  74.     public int getMetaFromState(IBlockState state) {
  75.         return state.getValue(FACING).ordinal();
  76.     }
  77.    
  78.     @Override
  79.     protected BlockStateContainer createBlockState() {
  80.         return new BlockStateContainer(this, new IProperty[]{FACING});
  81.     }
  82.  
  83.     @Override
  84.     public boolean isOpaqueCube(IBlockState state) {
  85.         return false;
  86.     }
  87.  
  88.     @Override
  89.     public boolean isFullCube(IBlockState state) {
  90.         return false;
  91.     }
  92.  
  93.     @Override
  94.     public boolean isVisuallyOpaque() {
  95.         return false;
  96.     }
  97. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement