2015-11-14 21:27:36 +01:00
|
|
|
/*
|
|
|
|
* This file ("BlockAtomicReconstructor.java") is part of the Actually Additions Mod for Minecraft.
|
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
|
|
|
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
|
|
|
* © 2015 Ellpeck
|
|
|
|
*/
|
|
|
|
|
|
|
|
package ellpeck.actuallyadditions.blocks;
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-11-22 18:52:11 +01:00
|
|
|
import ellpeck.actuallyadditions.items.IReconstructorLens;
|
2015-11-14 21:27:36 +01:00
|
|
|
import ellpeck.actuallyadditions.tile.TileEntityAtomicReconstructor;
|
|
|
|
import ellpeck.actuallyadditions.util.IActAddItemOrBlock;
|
2015-11-14 23:05:20 +01:00
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
2015-11-22 20:23:54 +01:00
|
|
|
import net.minecraft.block.Block;
|
2015-11-14 21:27:36 +01:00
|
|
|
import net.minecraft.block.BlockPistonBase;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
2015-11-15 03:15:19 +01:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2015-11-14 21:27:36 +01:00
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
2015-11-15 03:15:19 +01:00
|
|
|
import net.minecraft.util.ChatComponentText;
|
2015-11-14 21:27:36 +01:00
|
|
|
import net.minecraft.util.IIcon;
|
2015-11-14 23:05:20 +01:00
|
|
|
import net.minecraft.world.IBlockAccess;
|
2015-11-14 21:27:36 +01:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
|
|
|
public class BlockAtomicReconstructor extends BlockContainerBase implements IActAddItemOrBlock{
|
|
|
|
|
2015-11-14 23:05:20 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
private IIcon frontIcon;
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
private IIcon topIcon;
|
|
|
|
|
2015-11-14 21:27:36 +01:00
|
|
|
public BlockAtomicReconstructor(){
|
|
|
|
super(Material.rock);
|
|
|
|
this.setHarvestLevel("pickaxe", 0);
|
|
|
|
this.setHardness(6F);
|
|
|
|
this.setResistance(20F);
|
|
|
|
this.setStepSound(soundTypeStone);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
2015-11-14 23:05:20 +01:00
|
|
|
public IIcon getIcon(IBlockAccess world, int x, int y, int z, int side){
|
|
|
|
int meta = world.getBlockMetadata(x, y, z);
|
|
|
|
if(side != meta && (side == 0 || side == 1)){
|
|
|
|
return this.topIcon;
|
|
|
|
}
|
|
|
|
if(side == meta){
|
|
|
|
return this.frontIcon;
|
|
|
|
}
|
|
|
|
return this.blockIcon;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public IIcon getIcon(int side, int meta){
|
|
|
|
if(side == 0 || side == 1){
|
|
|
|
return this.topIcon;
|
|
|
|
}
|
|
|
|
if(side == 3){
|
|
|
|
return this.frontIcon;
|
|
|
|
}
|
2015-11-14 21:27:36 +01:00
|
|
|
return this.blockIcon;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void registerBlockIcons(IIconRegister iconReg){
|
2015-11-14 23:05:20 +01:00
|
|
|
this.blockIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName());
|
|
|
|
this.frontIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName()+"Front");
|
|
|
|
this.topIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName()+"Top");
|
2015-11-14 21:27:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getName(){
|
|
|
|
return "blockAtomicReconstructor";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
return EnumRarity.epic;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public TileEntity createNewTileEntity(World world, int i){
|
|
|
|
return new TileEntityAtomicReconstructor();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onBlockPlacedBy(World world, int x, int y, int z, EntityLivingBase player, ItemStack stack){
|
|
|
|
int rotation = BlockPistonBase.determineOrientation(world, x, y, z, player);
|
|
|
|
world.setBlockMetadataWithNotify(x, y, z, rotation, 2);
|
|
|
|
}
|
2015-11-15 03:15:19 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int par6, float par7, float par8, float par9){
|
|
|
|
if(!world.isRemote){
|
|
|
|
TileEntityAtomicReconstructor reconstructor = (TileEntityAtomicReconstructor)world.getTileEntity(x, y, z);
|
|
|
|
if(reconstructor != null){
|
2015-11-22 18:52:11 +01:00
|
|
|
if(!player.isSneaking()){
|
|
|
|
ItemStack heldItem = player.getCurrentEquippedItem();
|
|
|
|
if(heldItem != null){
|
|
|
|
if(heldItem.getItem() instanceof IReconstructorLens && reconstructor.getStackInSlot(0) == null){
|
|
|
|
ItemStack toPut = heldItem.copy();
|
|
|
|
toPut.stackSize = 1;
|
|
|
|
reconstructor.setInventorySlotContents(0, toPut);
|
|
|
|
|
|
|
|
player.inventory.decrStackSize(player.inventory.currentItem, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
if(reconstructor.getStackInSlot(0) != null){
|
|
|
|
player.inventory.setInventorySlotContents(player.inventory.currentItem, reconstructor.getStackInSlot(0).copy());
|
|
|
|
reconstructor.setInventorySlotContents(0, null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
player.addChatComponentMessage(new ChatComponentText(reconstructor.storage.getEnergyStored()+"/"+reconstructor.storage.getMaxEnergyStored()+" RF"));
|
|
|
|
}
|
2015-11-15 03:15:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2015-11-22 20:23:54 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void breakBlock(World world, int x, int y, int z, Block block, int par6){
|
|
|
|
this.dropInventory(world, x, y, z);
|
|
|
|
super.breakBlock(world, x, y, z, block, par6);
|
|
|
|
}
|
2015-11-14 21:27:36 +01:00
|
|
|
}
|