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;
|
2024-03-02 21:23:08 +01:00
|
|
|
import net.minecraft.core.BlockPos;
|
|
|
|
import net.minecraft.world.InteractionHand;
|
|
|
|
import net.minecraft.world.InteractionResult;
|
|
|
|
import net.minecraft.world.entity.player.Player;
|
|
|
|
import net.minecraft.world.item.ItemStack;
|
|
|
|
import net.minecraft.world.level.BlockGetter;
|
|
|
|
import net.minecraft.world.level.Level;
|
|
|
|
import net.minecraft.world.level.block.entity.BlockEntity;
|
|
|
|
import net.minecraft.world.level.block.entity.BlockEntityTicker;
|
|
|
|
import net.minecraft.world.level.block.entity.BlockEntityType;
|
|
|
|
import net.minecraft.world.level.block.state.BlockState;
|
|
|
|
import net.minecraft.world.phys.BlockHitResult;
|
|
|
|
import net.minecraft.world.phys.shapes.CollisionContext;
|
|
|
|
import net.minecraft.world.phys.shapes.VoxelShape;
|
2016-06-06 21:27:09 +02:00
|
|
|
|
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
|
|
|
|
2024-03-02 21:23:08 +01:00
|
|
|
public BlockDisplayStand(boolean empowerer) {
|
|
|
|
super(ActuallyBlocks.defaultPickProps());
|
|
|
|
isEmpowerer = empowerer;
|
|
|
|
}
|
2022-02-16 02:36:31 +01:00
|
|
|
|
2024-03-02 21:23:08 +01:00
|
|
|
private final boolean isEmpowerer;
|
2022-02-16 02:36:31 +01:00
|
|
|
|
2024-03-02 21:23:08 +01:00
|
|
|
public boolean isEmpowerer() {
|
|
|
|
return this.isEmpowerer;
|
|
|
|
}
|
2016-06-06 21:27:09 +02:00
|
|
|
|
2024-03-02 21:23:08 +01:00
|
|
|
@Nullable
|
|
|
|
@Override
|
|
|
|
public BlockEntity newBlockEntity(BlockPos pos, BlockState state) {
|
|
|
|
return isEmpowerer ? new TileEntityEmpowerer(pos, state) : new TileEntityDisplayStand(pos, state);
|
|
|
|
}
|
2022-02-16 02:36:31 +01:00
|
|
|
|
2024-03-02 21:23:08 +01:00
|
|
|
@Nullable
|
|
|
|
@Override
|
|
|
|
public <T extends BlockEntity> BlockEntityTicker<T> getTicker(Level level, BlockState blockState, BlockEntityType<T> entityType) {
|
|
|
|
return this.isEmpowerer
|
|
|
|
? level.isClientSide? TileEntityEmpowerer::clientTick : TileEntityEmpowerer::serverTick
|
|
|
|
: level.isClientSide? TileEntityDisplayStand::clientTick : TileEntityDisplayStand::serverTick;
|
|
|
|
}
|
2016-06-06 21:27:09 +02:00
|
|
|
|
2024-03-02 21:23:08 +01:00
|
|
|
@Override
|
|
|
|
public InteractionResult use(BlockState state, Level world, BlockPos pos, Player player, InteractionHand hand, BlockHitResult hit) {
|
|
|
|
ItemStack heldItem = player.getItemInHand(hand);
|
|
|
|
if (!world.isClientSide) {
|
|
|
|
TileEntityInventoryBase stand = (TileEntityInventoryBase) world.getBlockEntity(pos);
|
|
|
|
if (stand != null) {
|
|
|
|
ItemStack stackThere = stand.inv.getStackInSlot(0);
|
|
|
|
if (!heldItem.isEmpty()) {
|
|
|
|
if (stackThere.isEmpty() && (!isEmpowerer || TileEntityEmpowerer.isPossibleInput(heldItem))) {
|
|
|
|
ItemStack toPut = heldItem.copy();
|
|
|
|
toPut.setCount(1);
|
|
|
|
stand.inv.setStackInSlot(0, toPut);
|
|
|
|
if (!player.isCreative()) {
|
|
|
|
heldItem.shrink(1);
|
|
|
|
}
|
|
|
|
return InteractionResult.CONSUME;
|
|
|
|
} else if (ItemUtil.canBeStacked(heldItem, stackThere)) {
|
|
|
|
int maxTransfer = Math.min(stackThere.getCount(), heldItem.getMaxStackSize() - heldItem.getCount());
|
|
|
|
if (maxTransfer > 0) {
|
|
|
|
if (!player.isCreative())
|
|
|
|
player.setItemInHand(hand, StackUtil.grow(heldItem, maxTransfer));
|
|
|
|
ItemStack newStackThere = stackThere.copy();
|
|
|
|
newStackThere.shrink(maxTransfer);
|
|
|
|
stand.inv.setStackInSlot(0, newStackThere);
|
|
|
|
return InteractionResult.CONSUME;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!stackThere.isEmpty() && hand == InteractionHand.MAIN_HAND) {
|
|
|
|
player.setItemInHand(hand, stackThere.copy());
|
|
|
|
stand.inv.setStackInSlot(0, ItemStack.EMPTY);
|
|
|
|
return InteractionResult.CONSUME;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return InteractionResult.FAIL;
|
|
|
|
}
|
2018-06-23 01:39:30 +02:00
|
|
|
|
2024-03-02 21:23:08 +01:00
|
|
|
return InteractionResult.CONSUME;
|
|
|
|
}
|
2016-06-06 21:27:09 +02:00
|
|
|
|
2024-03-02 21:23:08 +01:00
|
|
|
@Override
|
|
|
|
public VoxelShape getShape(BlockState state, BlockGetter worldIn, BlockPos pos, CollisionContext context) {
|
|
|
|
return VoxelShapes.DISPLAY_STAND_SHAPE;
|
|
|
|
}
|
2016-06-06 21:27:09 +02:00
|
|
|
}
|