2016-12-18 17:28:29 +01:00
|
|
|
/*
|
|
|
|
* This file ("BlockBatteryBox.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-12-18 17:28:29 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
package de.ellpeck.actuallyadditions.mod.blocks;
|
|
|
|
|
|
|
|
import de.ellpeck.actuallyadditions.mod.blocks.base.BlockContainerBase;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.ItemBattery;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.tile.TileEntityBatteryBox;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2021-02-27 17:22:03 +01:00
|
|
|
import net.minecraft.block.BlockState;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
2016-12-18 17:28:29 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
2021-02-27 17:22:03 +01:00
|
|
|
import net.minecraft.util.ActionResultType;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.util.Hand;
|
2016-12-18 17:28:29 +01:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2021-02-27 17:22:03 +01:00
|
|
|
import net.minecraft.util.math.BlockRayTraceResult;
|
|
|
|
import net.minecraft.world.IBlockReader;
|
2016-12-18 17:28:29 +01:00
|
|
|
import net.minecraft.world.World;
|
2021-02-27 17:22:03 +01:00
|
|
|
|
|
|
|
import javax.annotation.Nullable;
|
2016-12-18 17:28:29 +01:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public class BlockBatteryBox extends BlockContainerBase {
|
2016-12-18 17:28:29 +01:00
|
|
|
|
2021-02-27 13:24:45 +01:00
|
|
|
public BlockBatteryBox() {
|
2021-02-28 15:47:54 +01:00
|
|
|
super(ActuallyBlocks.defaultPickProps(0));
|
2016-12-18 17:28:29 +01:00
|
|
|
}
|
|
|
|
|
2021-02-27 17:22:03 +01:00
|
|
|
// @Override
|
|
|
|
// public AxisAlignedBB getBoundingBox(BlockState state, IBlockAccess source, BlockPos pos) {
|
|
|
|
// return BlockSlabs.AABB_BOTTOM_HALF;
|
|
|
|
// }
|
2016-12-18 17:28:29 +01:00
|
|
|
|
2021-02-27 17:22:03 +01:00
|
|
|
@Nullable
|
2016-12-18 17:28:29 +01:00
|
|
|
@Override
|
2021-08-22 17:09:06 +02:00
|
|
|
public TileEntity newBlockEntity(IBlockReader worldIn) {
|
2016-12-18 17:28:29 +01:00
|
|
|
return new TileEntityBatteryBox();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2021-08-22 17:09:06 +02:00
|
|
|
public ActionResultType use(BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, BlockRayTraceResult hit) {
|
|
|
|
TileEntity tile = world.getBlockEntity(pos);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (tile instanceof TileEntityBatteryBox) {
|
|
|
|
TileEntityBatteryBox box = (TileEntityBatteryBox) tile;
|
2021-08-22 17:09:06 +02:00
|
|
|
ItemStack stack = player.getItemInHand(hand);
|
2016-12-18 17:28:29 +01:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (StackUtil.isValid(stack)) {
|
|
|
|
if (stack.getItem() instanceof ItemBattery && !StackUtil.isValid(box.inv.getStackInSlot(0))) {
|
2018-06-23 01:39:30 +02:00
|
|
|
box.inv.setStackInSlot(0, stack.copy());
|
2021-08-22 17:09:06 +02:00
|
|
|
player.setItemInHand(hand, StackUtil.getEmpty());
|
2021-02-27 17:22:03 +01:00
|
|
|
return ActionResultType.SUCCESS;
|
2016-12-18 17:28:29 +01:00
|
|
|
}
|
2019-05-02 09:10:29 +02:00
|
|
|
} else {
|
2018-06-23 01:39:30 +02:00
|
|
|
ItemStack inSlot = box.inv.getStackInSlot(0);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (StackUtil.isValid(inSlot)) {
|
2021-08-22 17:09:06 +02:00
|
|
|
player.setItemInHand(hand, inSlot.copy());
|
2018-06-23 01:39:30 +02:00
|
|
|
box.inv.setStackInSlot(0, StackUtil.getEmpty());
|
2021-02-27 17:22:03 +01:00
|
|
|
return ActionResultType.SUCCESS;
|
2016-12-18 17:28:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-27 17:22:03 +01:00
|
|
|
return ActionResultType.PASS;
|
2016-12-18 17:28:29 +01:00
|
|
|
}
|
|
|
|
}
|