Advertisement
Guest User

Untitled

a guest
Nov 16th, 2017
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.19 KB | None | 0 0
  1. package com.minecolonies.coremod.blocks;
  2.  
  3. import com.minecolonies.api.util.constant.Constants;
  4. import com.minecolonies.coremod.creativetab.ModCreativeTabs;
  5. import net.minecraft.block.Block;
  6.  
  7. import java.util.List;
  8. import javax.annotation.Nullable;
  9.  
  10. import net.minecraft.block.material.MapColor;
  11. import net.minecraft.block.material.Material;
  12. import net.minecraft.block.properties.IProperty;
  13. import net.minecraft.block.properties.PropertyBool;
  14. import net.minecraft.block.properties.PropertyEnum;
  15. import net.minecraft.block.state.BlockStateContainer;
  16. import net.minecraft.block.state.IBlockState;
  17. import net.minecraft.creativetab.CreativeTabs;
  18. import net.minecraft.entity.Entity;
  19. import net.minecraft.init.Blocks;
  20. import net.minecraft.item.Item;
  21. import net.minecraft.item.ItemBlock;
  22. import net.minecraft.item.ItemStack;
  23. import net.minecraft.util.*;
  24. import net.minecraft.util.math.AxisAlignedBB;
  25. import net.minecraft.util.math.BlockPos;
  26. import net.minecraft.world.IBlockAccess;
  27. import net.minecraft.world.World;
  28. import net.minecraftforge.fml.common.registry.GameRegistry;
  29. import net.minecraftforge.fml.relauncher.Side;
  30. import net.minecraftforge.fml.relauncher.SideOnly;
  31. import org.jetbrains.annotations.NotNull;
  32.  
  33. public class BlockPaperwall extends Block
  34. {
  35. private static final PropertyEnum<BlockPaperwall.EnumType>
  36. VARIANT = PropertyEnum.create("variant", EnumType.class);
  37.  
  38. public static final PropertyBool NORTH = PropertyBool.create("north");
  39. public static final PropertyBool EAST = PropertyBool.create("east");
  40. public static final PropertyBool SOUTH = PropertyBool.create("south");
  41. public static final PropertyBool WEST = PropertyBool.create("west");
  42. private static final AxisAlignedBB[] AABB_BY_INDEX = new AxisAlignedBB[]{
  43. new AxisAlignedBB(0.4375D, 0.0D, 0.4375D, 0.5625D, 1.0D, 0.5625D),
  44. new AxisAlignedBB(0.4375D, 0.0D, 0.4375D, 0.5625D, 1.0D, 1.0D),
  45. new AxisAlignedBB(0.0D, 0.0D, 0.4375D, 0.5625D, 1.0D, 0.5625D),
  46. new AxisAlignedBB(0.0D, 0.0D, 0.4375D, 0.5625D, 1.0D, 1.0D),
  47. new AxisAlignedBB(0.4375D, 0.0D, 0.0D, 0.5625D, 1.0D, 0.5625D),
  48. new AxisAlignedBB(0.4375D, 0.0D, 0.0D, 0.5625D, 1.0D, 1.0D),
  49. new AxisAlignedBB(0.0D, 0.0D, 0.0D, 0.5625D, 1.0D, 0.5625D),
  50. new AxisAlignedBB(0.0D, 0.0D, 0.0D, 0.5625D, 1.0D, 1.0D),
  51. new AxisAlignedBB(0.4375D, 0.0D, 0.4375D, 1.0D, 1.0D, 0.5625D),
  52. new AxisAlignedBB(0.4375D, 0.0D, 0.4375D, 1.0D, 1.0D, 1.0D),
  53. new AxisAlignedBB(0.0D, 0.0D, 0.4375D, 1.0D, 1.0D, 0.5625D),
  54. new AxisAlignedBB(0.0D, 0.0D, 0.4375D, 1.0D, 1.0D, 1.0D),
  55. new AxisAlignedBB(0.4375D, 0.0D, 0.0D, 1.0D, 1.0D, 0.5625D),
  56. new AxisAlignedBB(0.4375D, 0.0D, 0.0D, 1.0D, 1.0D, 1.0D),
  57. new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 1.0D, 0.5625D),
  58. new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 1.0D, 1.0D)};
  59.  
  60.  
  61. /**
  62. * The hardness this block has.
  63. */
  64. private static final float BLOCK_HARDNESS = 3F;
  65.  
  66. /**
  67. * This blocks name.
  68. */
  69. private static final String BLOCK_NAME = "blockPaperwall";
  70.  
  71. /**
  72. * The resistance this block has.
  73. */
  74. private static final float RESISTANCE = 1F;
  75.  
  76. BlockPaperwall()
  77. {
  78. super(Material.WOOD);
  79. this.setDefaultState(this.blockState.getBaseState().withProperty(VARIANT, BlockPaperwall.EnumType.JUNGLE));
  80. initBlock();
  81. }
  82.  
  83. private void initBlock()
  84. {
  85. setRegistryName(BLOCK_NAME);
  86. setUnlocalizedName(String.format("%s.%s", Constants.MOD_ID.toLowerCase(), BLOCK_NAME));
  87. setCreativeTab(ModCreativeTabs.MINECOLONIES);
  88. GameRegistry.register(this);
  89. GameRegistry.register((new ItemBlock(this)).setRegistryName(this.getRegistryName()));
  90. setHardness(BLOCK_HARDNESS);
  91. setResistance(RESISTANCE);
  92. }
  93.  
  94. @Override
  95. public int damageDropped(@NotNull final IBlockState state)
  96. {
  97. return state.getValue(VARIANT).getMetadata();
  98. }
  99.  
  100. @SideOnly(Side.CLIENT)
  101. public void getSubBlocks(@NotNull final Item itemIn, final CreativeTabs tab, @NotNull final List<ItemStack> list)
  102. {
  103. for (BlockPaperwall.EnumType blockpaperwall$enumtype : BlockPaperwall.EnumType.values())
  104. {
  105. list.add(new ItemStack(itemIn, 1, blockpaperwall$enumtype.getMetadata()));
  106. }
  107. }
  108.  
  109. @NotNull
  110. public IBlockState getStateFromMeta(int meta)
  111. {
  112. return this.getDefaultState().withProperty(VARIANT, BlockPaperwall.EnumType.byMetadata(meta));
  113. }
  114.  
  115. @NotNull
  116. @Override
  117. public MapColor getMapColor(@NotNull IBlockState state)
  118. {
  119. return state.getValue(VARIANT).getMapColor();
  120. }
  121.  
  122. @Override
  123. public void addCollisionBoxToList(@NotNull final IBlockState iBlockState,
  124. @NotNull final World worldIn,
  125. @NotNull final BlockPos pos,
  126. @NotNull final AxisAlignedBB entityBox,
  127. @NotNull final List<AxisAlignedBB> collidingBoxes,
  128. @Nullable final Entity entityIn)
  129. {
  130. final IBlockState tempState = this.getActualState(iBlockState, worldIn, pos);
  131. addCollisionBoxToList(pos, entityBox, collidingBoxes, AABB_BY_INDEX[0]);
  132.  
  133. if (tempState.getValue(NORTH))
  134. {
  135. addCollisionBoxToList(pos, entityBox, collidingBoxes, AABB_BY_INDEX[getBoundingBoxIndex(EnumFacing.NORTH)]);
  136.  
  137. }
  138.  
  139. if (tempState.getValue(SOUTH))
  140. {
  141. addCollisionBoxToList(pos, entityBox, collidingBoxes, AABB_BY_INDEX[getBoundingBoxIndex(EnumFacing.SOUTH)]);
  142. }
  143.  
  144. if (tempState.getValue(EAST))
  145. {
  146. addCollisionBoxToList(pos, entityBox, collidingBoxes, AABB_BY_INDEX[getBoundingBoxIndex(EnumFacing.EAST)]);
  147. }
  148.  
  149. if (tempState.getValue(WEST))
  150. {
  151. addCollisionBoxToList(pos, entityBox, collidingBoxes, AABB_BY_INDEX[getBoundingBoxIndex(EnumFacing.WEST)]);
  152. }
  153. }
  154.  
  155. private static int getBoundingBoxIndex(final EnumFacing side)
  156. {
  157. return 1 << side.getHorizontalIndex();
  158. }
  159.  
  160. @NotNull
  161. @Override
  162. public AxisAlignedBB getBoundingBox(@NotNull final IBlockState blockState, @NotNull final IBlockAccess source, @NotNull final BlockPos pos)
  163. {
  164. final IBlockState tempState = this.getActualState(blockState, source, pos);
  165. return AABB_BY_INDEX[getBoundingBoxIndex(tempState)];
  166. }
  167.  
  168. private static int getBoundingBoxIndex(final IBlockState state)
  169. {
  170. int i = 0;
  171.  
  172. if (state.getValue(NORTH))
  173. {
  174. i |= getBoundingBoxIndex(EnumFacing.NORTH);
  175. }
  176.  
  177. if (state.getValue(EAST))
  178. {
  179. i |= getBoundingBoxIndex(EnumFacing.EAST);
  180. }
  181.  
  182. if (state.getValue(SOUTH))
  183. {
  184. i |= getBoundingBoxIndex(EnumFacing.SOUTH);
  185. }
  186.  
  187. if (state.getValue(WEST))
  188. {
  189. i |= getBoundingBoxIndex(EnumFacing.WEST);
  190. }
  191.  
  192. return i;
  193. }
  194.  
  195. /**
  196. * Get the actual Block state of this Block at the given position. This applies properties not visible in the
  197. * metadata, such as fence connections.
  198. */
  199. @NotNull
  200. @Override
  201. public IBlockState getActualState(@NotNull final IBlockState tempState,
  202. @NotNull final IBlockAccess worldIn,
  203. @NotNull final BlockPos pos)
  204. {
  205. return tempState.withProperty(NORTH, canPaneConnectTo(worldIn, pos, EnumFacing.NORTH))
  206. .withProperty(SOUTH, canPaneConnectTo(worldIn, pos, EnumFacing.SOUTH))
  207. .withProperty(WEST, canPaneConnectTo(worldIn, pos, EnumFacing.WEST))
  208. .withProperty(EAST, canPaneConnectTo(worldIn, pos, EnumFacing.EAST));
  209. }
  210.  
  211. /**
  212. * Used to determine ambient occlusion and culling when rebuilding chunks for render
  213. */
  214. @Override
  215. public boolean isOpaqueCube(@NotNull final IBlockState state)
  216. {
  217. return false;
  218. }
  219.  
  220. @Override
  221. public boolean isFullCube(@NotNull final IBlockState state)
  222. {
  223. return false;
  224. }
  225.  
  226. private boolean canPaneConnectToBlock(final Block blockIn)
  227. {
  228. return blockIn.getDefaultState().isFullCube()
  229. || blockIn == this || blockIn == Blocks.GLASS || blockIn == Blocks.STAINED_GLASS ||
  230. blockIn == Blocks.STAINED_GLASS_PANE || blockIn instanceof BlockPaperwall;
  231. }
  232.  
  233. @SideOnly(Side.CLIENT)
  234. @Override
  235. public boolean shouldSideBeRendered(@NotNull final IBlockState blockState,
  236. @NotNull final IBlockAccess blockAccess,
  237. @NotNull final BlockPos pos,
  238. @NotNull final EnumFacing side)
  239. {
  240. return blockAccess.getBlockState
  241. (pos.offset(side)).getBlock() != this && super.shouldSideBeRendered(blockState, blockAccess, pos, side);
  242. }
  243.  
  244. @NotNull
  245. @SideOnly(Side.CLIENT)
  246. @Override
  247. public BlockRenderLayer getBlockLayer()
  248. {
  249. return BlockRenderLayer.TRANSLUCENT;
  250. }
  251.  
  252. /**
  253. * Convert the BlockState into the correct metadata value
  254. */
  255. @Override
  256. public int getMetaFromState(@NotNull final IBlockState state)
  257. {
  258. return 0;
  259. }
  260.  
  261. /**
  262. * Returns the blockstate with the given rotation from the passed blockstate. If inapplicable, returns the passed
  263. * blockstate.
  264. */
  265. @NotNull
  266. @Override
  267. public IBlockState withRotation(@NotNull final IBlockState tempState,
  268. @NotNull final Rotation rot)
  269. {
  270. switch (rot)
  271. {
  272. case CLOCKWISE_180:
  273. return tempState.withProperty
  274. (NORTH, tempState.getValue(SOUTH)).withProperty
  275. (EAST, tempState.getValue(WEST)).withProperty
  276. (SOUTH, tempState.getValue(NORTH)).withProperty
  277. (WEST, tempState.getValue(EAST));
  278. case COUNTERCLOCKWISE_90:
  279. return tempState.withProperty
  280. (NORTH, tempState.getValue(EAST)).withProperty
  281. (EAST, tempState.getValue(SOUTH)).withProperty
  282. (SOUTH, tempState.getValue(WEST)).withProperty
  283. (WEST, tempState.getValue(NORTH));
  284. case CLOCKWISE_90:
  285. return tempState.withProperty
  286. (NORTH, tempState.getValue(WEST)).withProperty
  287. (EAST, tempState.getValue(NORTH)).withProperty
  288. (SOUTH, tempState.getValue(EAST)).withProperty
  289. (WEST, tempState.getValue(SOUTH));
  290. default:
  291. return tempState;
  292. }
  293. }
  294.  
  295. /**
  296. * Returns the blockstate with the given mirror of the passed blockstate. If inapplicable, returns the passed
  297. * blockstate.
  298. */
  299. @NotNull
  300. @Override
  301. public IBlockState withMirror(@NotNull final IBlockState tempState, final @NotNull Mirror mirrorIn)
  302. {
  303. switch (mirrorIn)
  304. {
  305. case LEFT_RIGHT:
  306. return tempState.withProperty(NORTH, tempState.getValue(SOUTH)).withProperty(SOUTH, tempState.getValue(NORTH));
  307. case FRONT_BACK:
  308. return tempState.withProperty(EAST, tempState.getValue(WEST)).withProperty(WEST, tempState.getValue(EAST));
  309. default:
  310. return super.withMirror(tempState, mirrorIn);
  311. }
  312. }
  313.  
  314. @NotNull
  315. @Override
  316. protected BlockStateContainer createBlockState()
  317. {
  318. return new BlockStateContainer(this, VARIANT, NORTH, EAST, WEST, SOUTH);
  319. }
  320.  
  321. private boolean canPaneConnectTo(final IBlockAccess world, final BlockPos pos, final EnumFacing dir)
  322. {
  323. final BlockPos off = pos.offset(dir);
  324. final IBlockState state = world.getBlockState(off);
  325. return canPaneConnectToBlock(state.getBlock()) || state.isSideSolid(world, off, dir.getOpposite());
  326. }
  327.  
  328. public enum EnumType implements IStringSerializable
  329. {
  330. OAK(0, "oak", MapColor.WOOD),
  331. SPRUCE(1, "spruce", MapColor.OBSIDIAN),
  332. BIRCH(2, "birch", MapColor.SAND),
  333. JUNGLE(3, "jungle", MapColor.DIRT);
  334.  
  335. private static final BlockPaperwall.EnumType[] META_LOOKUP = new BlockPaperwall.EnumType[values().length];
  336. private final int meta;
  337. private final String name;
  338. private final String unlocalizedName;
  339. /** The color that represents this entry on a map. */
  340. private final MapColor mapColor;
  341.  
  342. EnumType(int metaIn, String nameIn, MapColor mapColorIn)
  343. {
  344. this(metaIn, nameIn, nameIn, mapColorIn);
  345. }
  346.  
  347. EnumType(int metaIn, String nameIn, String unlocalizedNameIn, MapColor mapColorIn)
  348. {
  349. this.meta = metaIn;
  350. this.name = nameIn;
  351. this.unlocalizedName = unlocalizedNameIn;
  352. this.mapColor = mapColorIn;
  353. }
  354.  
  355. public int getMetadata()
  356. {
  357. return this.meta;
  358. }
  359.  
  360. /**
  361. * The color which represents this entry on a map.
  362. */
  363. public MapColor getMapColor()
  364. {
  365. return this.mapColor;
  366. }
  367.  
  368. public String toString()
  369. {
  370. return this.name;
  371. }
  372.  
  373. public static BlockPaperwall.EnumType byMetadata(int meta)
  374. {
  375. if (meta < 0 || meta >= META_LOOKUP.length)
  376. {
  377. meta = 0;
  378. }
  379.  
  380. return META_LOOKUP[meta];
  381. }
  382.  
  383. @NotNull
  384. public String getName()
  385. {
  386. return this.name;
  387. }
  388.  
  389. public String getUnlocalizedName()
  390. {
  391. return this.unlocalizedName;
  392. }
  393.  
  394. static
  395. {
  396. for (BlockPaperwall.EnumType blockpaperwall$enumtype : values())
  397. {
  398. META_LOOKUP[blockpaperwall$enumtype.getMetadata()] = blockpaperwall$enumtype;
  399. }
  400. }
  401. }
  402. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement