Advertisement
hassansyyid

Untitled

Jul 7th, 2015
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.46 KB | None | 0 0
  1. package com.arisux.avp.block;
  2.  
  3. import java.util.ArrayList;
  4. import java.util.List;
  5. import java.util.Random;
  6.  
  7. import net.minecraft.block.Block;
  8. import net.minecraft.block.BlockContainer;
  9. import net.minecraft.block.material.Material;
  10. import net.minecraft.client.renderer.texture.IIconRegister;
  11. import net.minecraft.entity.EntityLivingBase;
  12. import net.minecraft.item.ItemStack;
  13. import net.minecraft.tileentity.TileEntity;
  14. import net.minecraft.world.IBlockAccess;
  15. import net.minecraft.world.World;
  16.  
  17. import com.arisux.airi.lib.BlockTypes.HookedBlockContainer;
  18. import com.arisux.avp.entities.tile.PoweredTileEntity;
  19. import com.arisux.avp.entities.tile.TileEntityPowerline;
  20. import com.arisux.avp.entities.tile.TileEntityR2PConvertor;
  21. import com.google.common.collect.Lists;
  22.  
  23. public class BlockPowerline extends HookedBlockContainer
  24. {
  25.     TileEntityPowerline pte;
  26.     public BlockPowerline(Material material)
  27.     {
  28.         super(material);
  29.         this.setBlockBounds(0F, 0F, 0F, 1F, 1F, 1F);
  30.         this.setTickRandomly(true);
  31.     }
  32.  
  33.     @Override
  34.     public void updateTick(World world, int posX, int posY, int posZ, Random rand)
  35.     {
  36.         super.updateTick(world, posX, posY, posZ, rand);
  37.     }
  38.    
  39.     @Override
  40.     public void registerBlockIcons(IIconRegister reg)
  41.     {
  42.         ;
  43.     }
  44.    
  45.     @Override
  46.     public void onBlockPlacedBy(World worldIn, int xPos, int yPos, int zPos, EntityLivingBase entityIn, ItemStack itemStackIn)
  47.     {
  48.         if(worldIn.getTileEntity(xPos, yPos, zPos) != null && worldIn.getTileEntity(xPos, yPos, zPos) instanceof TileEntityPowerline)
  49.         {
  50.             TileEntityPowerline te = (TileEntityPowerline) worldIn.getTileEntity(xPos, yPos, zPos);
  51.             te.updateState();
  52.         }
  53.     }
  54.  
  55. //  public int onBlockPlaced(World worldIn, int xPos, int yPos, int zPos, int side, float hitX, float hitY, float hitZ, int metadata)
  56. //    {
  57. //      if(worldIn.getTileEntity(xPos, yPos, zPos) != null && worldIn.getTileEntity(xPos, yPos, zPos) instanceof TileEntityPowerline)
  58. //      {
  59. //          System.out.println("dis far");
  60. //          TileEntityPowerline te = (TileEntityPowerline) worldIn.getTileEntity(xPos, yPos, zPos);
  61. //          te.updateState();
  62. //      }  
  63. //        return metadata;
  64. //    }
  65.    
  66.     @Override
  67.     public void onNeighborChange(IBlockAccess world, int x, int y, int z, int tileX, int tileY, int tileZ)
  68.     {
  69.        
  70.     }
  71.    
  72.     @Override
  73.     public TileEntity createNewTileEntity(World var1, int var2)
  74.     {
  75.         return new TileEntityPowerline();
  76.     }
  77.    
  78.     @Override
  79.     public void breakBlock(World worldIn, int posX, int posY, int posZ, Block blockBroken, int meta)
  80.     {
  81.         System.out.println("Should have something else after me..");
  82.         if(worldIn.getTileEntity(posX, posY, posZ) != null && worldIn.getTileEntity(posX, posY, posZ) instanceof TileEntityPowerline)
  83.         {
  84.             System.out.println("IN THE IF STATEMENT");
  85.             TileEntityPowerline te = (TileEntityPowerline) worldIn.getTileEntity(posX, posY, posZ);
  86.             System.out.println("Parents: " + te.parents.size() + " Children: " + te.children.size());
  87.             List<PoweredTileEntity> l = Lists.newArrayList(te.parents);
  88.             for(PoweredTileEntity tep : l)
  89.             {
  90.                 tep.children.remove(te);
  91.                 tep.updateState();
  92.             }
  93.             List<PoweredTileEntity> list = Lists.newArrayList(te.children);
  94.             for(PoweredTileEntity tep : list)
  95.             {
  96.                 tep.parents.remove(te);
  97.                 tep.updateState();
  98.             }
  99.             System.out.println("AFTER: Parents: " + te.parents.size() + " Children: " + te.children.size());
  100.         }  
  101.         super.breakBlock(worldIn, posX, posY, posZ, blockBroken, meta);
  102.     }
  103.    
  104.     @Override
  105.     public int getRenderType()
  106.     {
  107.         return -1;
  108.     }
  109. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement