ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/blocks/BlockEmpowerer.java

88 lines
3.6 KiB
Java
Raw Normal View History

/*
2016-10-31 19:05:29 +01:00
* This file ("BlockEmpowerer.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://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
*/
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;
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
2021-02-28 15:47:54 +01:00
import net.minecraft.block.BlockState;
2021-02-26 22:15:48 +01:00
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
2021-02-28 15:47:54 +01:00
import net.minecraft.util.ActionResultType;
2021-02-26 22:15:48 +01:00
import net.minecraft.util.Hand;
import net.minecraft.util.math.BlockPos;
2021-02-28 15:47:54 +01:00
import net.minecraft.util.math.BlockRayTraceResult;
import net.minecraft.util.math.shapes.ISelectionContext;
import net.minecraft.util.math.shapes.VoxelShape;
import net.minecraft.world.IBlockReader;
import net.minecraft.world.World;
2021-02-28 15:47:54 +01:00
import javax.annotation.Nullable;
2021-02-28 15:47:54 +01:00
public class BlockEmpowerer extends BlockContainerBase {
public BlockEmpowerer() {
2021-02-28 15:47:54 +01:00
super(ActuallyBlocks.defaultPickProps(0));
}
2021-02-28 15:47:54 +01:00
@Nullable
@Override
public TileEntity newBlockEntity(IBlockReader worldIn) {
return new TileEntityEmpowerer();
}
2016-08-03 14:34:08 +02:00
@Override
public ActionResultType use(BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, BlockRayTraceResult hit) {
ItemStack heldItem = player.getItemInHand(hand);
if (!world.isClientSide) {
TileEntityEmpowerer empowerer = (TileEntityEmpowerer) world.getBlockEntity(pos);
2019-05-02 09:10:29 +02:00
if (empowerer != null) {
ItemStack stackThere = empowerer.inv.getStackInSlot(0);
2019-05-02 09:10:29 +02:00
if (StackUtil.isValid(heldItem)) {
if (!StackUtil.isValid(stackThere) && TileEntityEmpowerer.isPossibleInput(heldItem)) {
ItemStack toPut = heldItem.copy();
2018-06-24 04:25:27 +02:00
toPut.setCount(1);
empowerer.inv.setStackInSlot(0, toPut);
2021-02-28 15:47:54 +01:00
if (!player.isCreative()) {
2021-02-26 22:15:48 +01:00
heldItem.shrink(1);
}
2021-02-28 15:47:54 +01:00
return ActionResultType.PASS;
2019-05-02 09:10:29 +02:00
} else if (ItemUtil.canBeStacked(heldItem, stackThere)) {
int maxTransfer = Math.min(stackThere.getCount(), heldItem.getMaxStackSize() - heldItem.getCount());
if (maxTransfer > 0) {
player.setItemInHand(hand, StackUtil.grow(heldItem, maxTransfer));
ItemStack newStackThere = stackThere.copy();
newStackThere = StackUtil.shrink(newStackThere, maxTransfer);
empowerer.inv.setStackInSlot(0, newStackThere);
2021-02-28 15:47:54 +01:00
return ActionResultType.PASS;
}
}
2019-05-02 09:10:29 +02:00
} else {
if (StackUtil.isValid(stackThere)) {
player.setItemInHand(hand, stackThere.copy());
empowerer.inv.setStackInSlot(0, StackUtil.getEmpty());
2021-02-28 15:47:54 +01:00
return ActionResultType.PASS;
}
}
}
2021-02-28 15:47:54 +01:00
return ActionResultType.FAIL;
}
2021-02-28 15:47:54 +01:00
return ActionResultType.PASS;
}
@Override
2021-02-28 15:47:54 +01:00
public VoxelShape getShape(BlockState state, IBlockReader worldIn, BlockPos pos, ISelectionContext context) {
return Shapes.EMPOWERER_SHAPE;
}
}