2016-08-03 04:01:47 +02:00
|
|
|
/*
|
2016-10-31 19:05:29 +01:00
|
|
|
* This file ("BlockEmpowerer.java") is part of the Actually Additions mod for Minecraft.
|
2016-08-03 04:01:47 +02:00
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
|
|
|
* http://ellpeck.de/actaddlicense
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 Ellpeck
|
2016-08-03 04:01:47 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
package de.ellpeck.actuallyadditions.mod.blocks;
|
|
|
|
|
|
|
|
import de.ellpeck.actuallyadditions.mod.blocks.base.BlockContainerBase;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.tile.TileEntityEmpowerer;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ItemUtil;
|
2016-11-16 16:59:00 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2016-08-03 04:01:47 +02:00
|
|
|
import net.minecraft.block.SoundType;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import net.minecraft.block.state.IBlockState;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
import net.minecraft.util.EnumFacing;
|
|
|
|
import net.minecraft.util.EnumHand;
|
2016-08-03 14:34:08 +02:00
|
|
|
import net.minecraft.util.math.AxisAlignedBB;
|
2016-08-03 04:01:47 +02:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2016-08-03 14:34:08 +02:00
|
|
|
import net.minecraft.world.IBlockAccess;
|
2016-08-03 04:01:47 +02:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
|
|
|
public class BlockEmpowerer extends BlockContainerBase{
|
|
|
|
|
|
|
|
public BlockEmpowerer(String name){
|
|
|
|
super(Material.ROCK, name);
|
|
|
|
|
|
|
|
this.setHarvestLevel("pickaxe", 0);
|
|
|
|
this.setHardness(1.5F);
|
|
|
|
this.setResistance(10.0F);
|
|
|
|
this.setSoundType(SoundType.STONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public TileEntity createNewTileEntity(World worldIn, int meta){
|
|
|
|
return new TileEntityEmpowerer();
|
|
|
|
}
|
|
|
|
|
2016-08-03 14:34:08 +02:00
|
|
|
@Override
|
|
|
|
public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos){
|
|
|
|
return BlockSlabs.AABB_BOTTOM_HALF;
|
|
|
|
}
|
|
|
|
|
2016-08-03 04:01:47 +02:00
|
|
|
@Override
|
2016-11-19 21:11:17 +01:00
|
|
|
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing par6, float par7, float par8, float par9){
|
|
|
|
ItemStack heldItem = player.getHeldItem(hand);
|
2016-08-03 04:01:47 +02:00
|
|
|
if(!world.isRemote){
|
|
|
|
TileEntityEmpowerer empowerer = (TileEntityEmpowerer)world.getTileEntity(pos);
|
|
|
|
if(empowerer != null){
|
2016-12-04 00:10:52 +01:00
|
|
|
ItemStack stackThere = empowerer.slots.getStackInSlot(0);
|
2016-11-16 16:59:00 +01:00
|
|
|
if(StackUtil.isValid(heldItem)){
|
|
|
|
if(!StackUtil.isValid(stackThere) && !TileEntityEmpowerer.getRecipesForInput(heldItem).isEmpty()){
|
2016-08-03 04:01:47 +02:00
|
|
|
ItemStack toPut = heldItem.copy();
|
2016-11-16 16:59:00 +01:00
|
|
|
toPut = StackUtil.setStackSize(toPut, 1);
|
2016-12-04 00:10:52 +01:00
|
|
|
empowerer.slots.setStackInSlot(0, toPut);
|
2016-11-16 16:59:00 +01:00
|
|
|
player.setHeldItem(hand, StackUtil.addStackSize(heldItem, -1));
|
2016-08-03 04:01:47 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(ItemUtil.canBeStacked(heldItem, stackThere)){
|
2016-11-16 16:59:00 +01:00
|
|
|
int maxTransfer = Math.min(StackUtil.getStackSize(stackThere), heldItem.getMaxStackSize()-StackUtil.getStackSize(heldItem));
|
2016-08-03 04:01:47 +02:00
|
|
|
if(maxTransfer > 0){
|
2016-11-16 16:59:00 +01:00
|
|
|
player.setHeldItem(hand, StackUtil.addStackSize(heldItem, maxTransfer));
|
2016-08-03 04:01:47 +02:00
|
|
|
ItemStack newStackThere = stackThere.copy();
|
2016-11-18 23:14:49 +01:00
|
|
|
newStackThere = StackUtil.addStackSize(newStackThere, -maxTransfer);
|
2016-12-04 00:10:52 +01:00
|
|
|
empowerer.slots.setStackInSlot(0, StackUtil.validateCheck(newStackThere));
|
2016-08-03 04:01:47 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
2016-11-16 16:59:00 +01:00
|
|
|
if(StackUtil.isValid(stackThere)){
|
|
|
|
player.setHeldItem(hand, stackThere.copy());
|
2017-11-02 22:49:53 +01:00
|
|
|
empowerer.slots.setStackInSlot(0, StackUtil.getEmpty());
|
2016-08-03 04:01:47 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isOpaqueCube(IBlockState state){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
return EnumRarity.RARE;
|
|
|
|
}
|
|
|
|
}
|