2020-09-09 16:49:01 +02:00
|
|
|
package de.ellpeck.actuallyadditions.common.blocks;
|
2015-02-17 16:15:16 +01:00
|
|
|
|
2020-09-09 16:49:01 +02:00
|
|
|
import de.ellpeck.actuallyadditions.common.ActuallyAdditions;
|
|
|
|
import de.ellpeck.actuallyadditions.common.blocks.base.BlockContainerBase;
|
|
|
|
import de.ellpeck.actuallyadditions.common.inventory.GuiHandler;
|
|
|
|
import de.ellpeck.actuallyadditions.common.tile.TileEntityFeeder;
|
2020-09-08 16:41:52 +02:00
|
|
|
import net.minecraft.block.Block;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.block.SoundType;
|
2015-02-17 16:15:16 +01:00
|
|
|
import net.minecraft.block.material.Material;
|
2016-01-07 21:41:28 +01:00
|
|
|
import net.minecraft.block.state.IBlockState;
|
2015-02-17 16:15:16 +01:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2015-03-07 02:23:31 +01:00
|
|
|
import net.minecraft.item.EnumRarity;
|
2015-02-17 16:15:16 +01:00
|
|
|
import net.minecraft.tileentity.TileEntity;
|
2016-01-07 21:41:28 +01:00
|
|
|
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-02-17 16:15:16 +01:00
|
|
|
import net.minecraft.world.World;
|
2020-09-08 16:41:52 +02:00
|
|
|
import net.minecraftforge.common.ToolType;
|
2015-02-17 16:15:16 +01:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public class BlockFeeder extends BlockContainerBase {
|
2015-02-17 16:15:16 +01:00
|
|
|
|
2020-09-08 16:41:52 +02:00
|
|
|
public BlockFeeder() {
|
|
|
|
super(Block.Properties.create(Material.ROCK)
|
|
|
|
.hardnessAndResistance(0.5f, 6.0f)
|
|
|
|
.harvestTool(ToolType.PICKAXE)
|
|
|
|
.sound(SoundType.STONE));
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public TileEntity createNewTileEntity(World world, int par2) {
|
2015-02-17 16:15:16 +01:00
|
|
|
return new TileEntityFeeder();
|
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing par6, float par7, float par8, float par9) {
|
|
|
|
if (!world.isRemote) {
|
|
|
|
TileEntityFeeder feeder = (TileEntityFeeder) world.getTileEntity(pos);
|
|
|
|
if (feeder != null) {
|
2018-05-10 11:38:58 +02:00
|
|
|
player.openGui(ActuallyAdditions.INSTANCE, GuiHandler.GuiTypes.FEEDER.ordinal(), world, pos.getX(), pos.getY(), pos.getZ());
|
2015-10-02 16:48:01 +02:00
|
|
|
}
|
2015-02-17 16:15:16 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|