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;
|
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;
|
2016-06-06 21:27:09 +02:00
|
|
|
import net.minecraft.block.SoundType;
|
|
|
|
import net.minecraft.block.material.Material;
|
2017-10-06 00:36:35 +02:00
|
|
|
import net.minecraft.block.state.BlockFaceShape;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.block.state.BlockState;
|
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
2016-06-06 21:27:09 +02:00
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
import net.minecraft.util.EnumFacing;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.util.Hand;
|
2016-08-03 14:34:08 +02:00
|
|
|
import net.minecraft.util.math.AxisAlignedBB;
|
2016-06-06 21:27:09 +02:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2016-08-03 14:34:08 +02:00
|
|
|
import net.minecraft.world.IBlockAccess;
|
2016-06-06 21:27:09 +02:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2018-06-23 01:39:30 +02:00
|
|
|
public class BlockDisplayStand extends BlockContainerBase {
|
2016-06-06 21:27:09 +02:00
|
|
|
|
2018-06-23 01:39:30 +02:00
|
|
|
public BlockDisplayStand(String name) {
|
2016-06-06 21:27:09 +02:00
|
|
|
super(Material.ROCK, name);
|
|
|
|
|
|
|
|
this.setHarvestLevel("pickaxe", 0);
|
|
|
|
this.setHardness(1.5F);
|
|
|
|
this.setResistance(10.0F);
|
|
|
|
this.setSoundType(SoundType.STONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2018-06-23 01:39:30 +02:00
|
|
|
public TileEntity createNewTileEntity(World worldIn, int meta) {
|
2016-06-06 21:27:09 +02:00
|
|
|
return new TileEntityDisplayStand();
|
|
|
|
}
|
|
|
|
|
2016-08-03 14:34:08 +02:00
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
public AxisAlignedBB getBoundingBox(BlockState state, IBlockAccess source, BlockPos pos) {
|
2016-08-03 14:34:08 +02:00
|
|
|
return BlockSlabs.AABB_BOTTOM_HALF;
|
|
|
|
}
|
|
|
|
|
2016-06-06 21:27:09 +02:00
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
public boolean onBlockActivated(World world, BlockPos pos, BlockState state, PlayerEntity player, Hand hand, EnumFacing par6, float par7, float par8, float par9) {
|
2016-11-19 21:11:17 +01:00
|
|
|
ItemStack heldItem = player.getHeldItem(hand);
|
2018-06-23 01:39:30 +02:00
|
|
|
if (!world.isRemote) {
|
|
|
|
TileEntityDisplayStand stand = (TileEntityDisplayStand) world.getTileEntity(pos);
|
|
|
|
if (stand != null) {
|
|
|
|
ItemStack display = stand.inv.getStackInSlot(0);
|
|
|
|
if (StackUtil.isValid(heldItem)) {
|
|
|
|
if (!StackUtil.isValid(display)) {
|
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-26 22:15:48 +01:00
|
|
|
if (!player.capabilities.isCreativeMode) {
|
|
|
|
heldItem.shrink(1);
|
|
|
|
}
|
2016-06-06 21:27:09 +02:00
|
|
|
return true;
|
2018-06-23 01:39:30 +02:00
|
|
|
} else if (ItemUtil.canBeStacked(heldItem, display)) {
|
|
|
|
int maxTransfer = Math.min(display.getCount(), heldItem.getMaxStackSize() - heldItem.getCount());
|
|
|
|
if (maxTransfer > 0) {
|
|
|
|
heldItem.grow(maxTransfer);
|
2016-08-03 04:01:47 +02:00
|
|
|
ItemStack newDisplay = display.copy();
|
2018-06-23 01:39:30 +02:00
|
|
|
newDisplay.shrink(maxTransfer);
|
|
|
|
stand.inv.setStackInSlot(0, newDisplay);
|
2016-08-03 04:01:47 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2018-06-23 01:39:30 +02:00
|
|
|
} else {
|
|
|
|
if (StackUtil.isValid(display)) {
|
2016-11-16 16:59:00 +01:00
|
|
|
player.setHeldItem(hand, display.copy());
|
2018-06-23 01:39:30 +02:00
|
|
|
stand.inv.setStackInSlot(0, StackUtil.getEmpty());
|
2016-06-06 21:27:09 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2018-06-23 01:39:30 +02:00
|
|
|
} else {
|
2016-06-06 21:27:09 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
public boolean isOpaqueCube(BlockState state) {
|
2016-06-06 21:27:09 +02:00
|
|
|
return false;
|
|
|
|
}
|
2018-06-23 01:39:30 +02:00
|
|
|
|
2017-10-06 00:36:35 +02:00
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
public boolean isFullCube(BlockState state) {
|
2017-10-06 00:36:35 +02:00
|
|
|
return false;
|
|
|
|
}
|
2018-06-23 01:39:30 +02:00
|
|
|
|
2017-10-06 00:36:35 +02:00
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
public BlockFaceShape getBlockFaceShape(IBlockAccess world, BlockState state, BlockPos pos, EnumFacing face) {
|
|
|
|
if (face == EnumFacing.DOWN) {
|
|
|
|
return BlockFaceShape.SOLID;
|
|
|
|
}
|
2018-06-23 01:39:30 +02:00
|
|
|
return BlockFaceShape.UNDEFINED;
|
2017-10-06 00:36:35 +02:00
|
|
|
}
|
2016-06-06 21:27:09 +02:00
|
|
|
|
|
|
|
@Override
|
2018-06-23 01:39:30 +02:00
|
|
|
public EnumRarity getRarity(ItemStack stack) {
|
2016-06-06 21:27:09 +02:00
|
|
|
return EnumRarity.RARE;
|
|
|
|
}
|
|
|
|
}
|