2016-06-06 21:27:09 +02:00
|
|
|
/*
|
|
|
|
* This file ("BlockDisplayStand.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
|
2016-06-06 21:27:09 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
package de.ellpeck.actuallyadditions.mod.blocks;
|
|
|
|
|
|
|
|
import de.ellpeck.actuallyadditions.mod.blocks.base.BlockContainerBase;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.tile.TileEntityDisplayStand;
|
2022-02-16 02:36:31 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.tile.TileEntityEmpowerer;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.tile.TileEntityInventoryBase;
|
2016-08-03 04:01:47 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ItemUtil;
|
2016-11-16 16:59:00 +01:00
|
|
|
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;
|
2016-06-06 21:27:09 +02:00
|
|
|
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;
|
2016-06-06 21:27:09 +02:00
|
|
|
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;
|
2016-06-06 21:27:09 +02:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2021-02-28 15:47:54 +01:00
|
|
|
import javax.annotation.Nullable;
|
|
|
|
|
2018-06-23 01:39:30 +02:00
|
|
|
public class BlockDisplayStand extends BlockContainerBase {
|
2016-06-06 21:27:09 +02:00
|
|
|
|
2022-02-16 02:36:31 +01:00
|
|
|
public BlockDisplayStand(boolean empowerer) {
|
2021-02-28 15:47:54 +01:00
|
|
|
super(ActuallyBlocks.defaultPickProps(0));
|
2022-02-16 02:36:31 +01:00
|
|
|
isEmpowerer = empowerer;
|
|
|
|
}
|
|
|
|
|
|
|
|
private final boolean isEmpowerer;
|
|
|
|
|
|
|
|
public boolean isEmpowerer() {
|
|
|
|
return this.isEmpowerer;
|
2016-06-06 21:27:09 +02:00
|
|
|
}
|
|
|
|
|
2021-02-28 15:47:54 +01:00
|
|
|
@Nullable
|
2022-02-16 02:36:31 +01:00
|
|
|
@Override
|
|
|
|
public TileEntity createTileEntity(BlockState state, IBlockReader world) {
|
|
|
|
return isEmpowerer? new TileEntityEmpowerer(): new TileEntityDisplayStand();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean hasTileEntity(BlockState state) {
|
|
|
|
return true;
|
2016-06-06 21:27:09 +02:00
|
|
|
}
|
|
|
|
|
2016-08-03 14:34:08 +02:00
|
|
|
@Override
|
2021-08-22 17:09:06 +02:00
|
|
|
public ActionResultType use(BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, BlockRayTraceResult hit) {
|
|
|
|
ItemStack heldItem = player.getItemInHand(hand);
|
|
|
|
if (!world.isClientSide) {
|
2022-02-16 02:36:31 +01:00
|
|
|
TileEntityInventoryBase stand = (TileEntityInventoryBase) world.getBlockEntity(pos);
|
2018-06-23 01:39:30 +02:00
|
|
|
if (stand != null) {
|
2022-02-16 02:36:31 +01:00
|
|
|
ItemStack stackThere = stand.inv.getStackInSlot(0);
|
|
|
|
if (!heldItem.isEmpty()) {
|
|
|
|
if (stackThere.isEmpty() && (!isEmpowerer || TileEntityEmpowerer.isPossibleInput(heldItem))) {
|
2016-06-06 21:27:09 +02:00
|
|
|
ItemStack toPut = heldItem.copy();
|
2018-06-23 01:39:30 +02:00
|
|
|
toPut.setCount(1);
|
|
|
|
stand.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);
|
|
|
|
}
|
2022-02-16 02:36:31 +01:00
|
|
|
return ActionResultType.CONSUME;
|
|
|
|
} else if (ItemUtil.canBeStacked(heldItem, stackThere)) {
|
|
|
|
int maxTransfer = Math.min(stackThere.getCount(), heldItem.getMaxStackSize() - heldItem.getCount());
|
2018-06-23 01:39:30 +02:00
|
|
|
if (maxTransfer > 0) {
|
2022-02-16 02:36:31 +01:00
|
|
|
if (!player.isCreative())
|
|
|
|
player.setItemInHand(hand, StackUtil.grow(heldItem, maxTransfer));
|
|
|
|
ItemStack newStackThere = stackThere.copy();
|
|
|
|
newStackThere.shrink(maxTransfer);
|
|
|
|
stand.inv.setStackInSlot(0, newStackThere);
|
|
|
|
return ActionResultType.CONSUME;
|
2016-08-03 04:01:47 +02:00
|
|
|
}
|
|
|
|
}
|
2018-06-23 01:39:30 +02:00
|
|
|
} else {
|
2022-02-16 02:36:31 +01:00
|
|
|
if (!stackThere.isEmpty() && hand == Hand.MAIN_HAND) {
|
|
|
|
player.setItemInHand(hand, stackThere.copy());
|
|
|
|
stand.inv.setStackInSlot(0, ItemStack.EMPTY);
|
|
|
|
return ActionResultType.CONSUME;
|
2016-06-06 21:27:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-28 15:47:54 +01:00
|
|
|
return ActionResultType.FAIL;
|
2016-06-06 21:27:09 +02:00
|
|
|
}
|
2018-06-23 01:39:30 +02:00
|
|
|
|
2022-04-02 00:51:55 +02:00
|
|
|
return ActionResultType.CONSUME;
|
2017-10-06 00:36:35 +02:00
|
|
|
}
|
2016-06-06 21:27:09 +02:00
|
|
|
|
|
|
|
@Override
|
2021-02-28 15:47:54 +01:00
|
|
|
public VoxelShape getShape(BlockState state, IBlockReader worldIn, BlockPos pos, ISelectionContext context) {
|
|
|
|
return Shapes.DISPLAY_STAND_SHAPE;
|
2016-06-06 21:27:09 +02:00
|
|
|
}
|
|
|
|
}
|