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

57 lines
2 KiB
Java
Raw Normal View History

2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.blocks;
2015-04-26 20:07:57 +02:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
import de.ellpeck.actuallyadditions.mod.blocks.base.BlockContainerBase;
import de.ellpeck.actuallyadditions.mod.inventory.GuiHandler;
import de.ellpeck.actuallyadditions.mod.tile.TileEntityCanolaPress;
import net.minecraft.block.Block;
2016-03-18 23:47:22 +01:00
import net.minecraft.block.SoundType;
2015-04-26 20:07:57 +02:00
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
2015-04-26 20:07:57 +02:00
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.EnumFacing;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.EnumHand;
import net.minecraft.util.math.BlockPos;
2015-04-26 20:07:57 +02:00
import net.minecraft.world.World;
import net.minecraftforge.common.ToolType;
2015-04-26 20:07:57 +02:00
2019-05-02 09:10:29 +02:00
public class BlockCanolaPress extends BlockContainerBase {
2015-04-26 20:07:57 +02:00
public BlockCanolaPress() {
super(Block.Properties.create(Material.ROCK)
.hardnessAndResistance(1.5f, 10.0f)
.harvestTool(ToolType.PICKAXE)
.sound(SoundType.STONE));
2015-04-26 20:07:57 +02:00
}
2016-08-17 15:28:53 +02:00
@Override
2019-05-02 09:10:29 +02:00
public boolean isFullCube(IBlockState state) {
2016-08-17 15:28:53 +02:00
return false;
}
@Override
2019-05-02 09:10:29 +02:00
public boolean isOpaqueCube(IBlockState state) {
2016-08-17 15:28:53 +02:00
return false;
}
2015-04-26 20:07:57 +02:00
@Override
2019-05-02 09:10:29 +02:00
public TileEntity createNewTileEntity(World world, int par2) {
2015-05-20 22:39:43 +02:00
return new TileEntityCanolaPress();
2015-04-26 20:07:57 +02:00
}
@Override
2019-05-02 09:10:29 +02:00
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float par7, float par8, float par9) {
if (!world.isRemote) {
TileEntityCanolaPress press = (TileEntityCanolaPress) world.getTileEntity(pos);
if (press != null) {
if (!this.tryUseItemOnTank(player, hand, press.tank)) {
2018-05-10 11:38:58 +02:00
player.openGui(ActuallyAdditions.INSTANCE, GuiHandler.GuiTypes.CANOLA_PRESS.ordinal(), world, pos.getX(), pos.getY(), pos.getZ());
}
2015-10-02 16:48:01 +02:00
}
2015-05-20 22:39:43 +02:00
return true;
}
return true;
2015-04-26 20:07:57 +02:00
}
}