2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("BlockInputter.java") is part of the Actually Additions mod for Minecraft.
|
2015-08-29 14:33:25 +02:00
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
2016-05-16 22:52:27 +02:00
|
|
|
* http://ellpeck.de/actaddlicense
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-05-16 22:54:42 +02:00
|
|
|
* © 2015-2016 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.blocks;
|
2015-03-19 21:27:56 +01:00
|
|
|
|
2016-01-08 13:31:58 +01: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.blocks.base.ItemBlockBase;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.inventory.GuiHandler;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.tile.TileEntityInputter;
|
2016-05-14 17:50:10 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.tile.TileEntityInputterAdvanced;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.tile.TileEntityInventoryBase;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.Util;
|
2015-03-19 21:27:56 +01:00
|
|
|
import net.minecraft.block.Block;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.block.SoundType;
|
2015-03-19 21:27:56 +01:00
|
|
|
import net.minecraft.block.material.Material;
|
2016-01-07 21:41:28 +01:00
|
|
|
import net.minecraft.block.state.IBlockState;
|
2015-03-19 21:27:56 +01:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
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-03-19 21:27:56 +01:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public class BlockInputter extends BlockContainerBase{
|
2015-03-19 21:27:56 +01:00
|
|
|
|
2015-11-22 15:14:33 +01:00
|
|
|
public static final int NAME_FLAVOR_AMOUNTS = 15;
|
2015-03-19 21:27:56 +01:00
|
|
|
|
2016-05-19 20:05:12 +02:00
|
|
|
public final boolean isAdvanced;
|
2015-04-04 05:20:19 +02:00
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public BlockInputter(boolean isAdvanced, String name){
|
2016-04-20 21:39:03 +02:00
|
|
|
super(Material.ROCK, name);
|
2015-03-19 21:27:56 +01:00
|
|
|
this.setHarvestLevel("pickaxe", 0);
|
2015-07-07 01:13:39 +02:00
|
|
|
this.setHardness(1.5F);
|
|
|
|
this.setResistance(10.0F);
|
2016-04-20 21:39:03 +02:00
|
|
|
this.setSoundType(SoundType.STONE);
|
2015-03-19 21:27:56 +01:00
|
|
|
this.setTickRandomly(true);
|
2015-04-04 05:20:19 +02:00
|
|
|
this.isAdvanced = isAdvanced;
|
|
|
|
}
|
|
|
|
|
2016-05-29 23:49:35 +02:00
|
|
|
|
2015-03-19 21:27:56 +01:00
|
|
|
@Override
|
2016-05-29 23:49:35 +02:00
|
|
|
public TileEntity createNewTileEntity(World world, int par2){
|
2016-05-14 17:50:10 +02:00
|
|
|
return this.isAdvanced ? new TileEntityInputterAdvanced() : new TileEntityInputter();
|
2015-03-19 21:27:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-03-18 23:47:22 +01:00
|
|
|
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, ItemStack stack, EnumFacing par6, float par7, float par8, float par9){
|
2015-03-19 21:27:56 +01:00
|
|
|
if(!world.isRemote){
|
2016-01-07 21:41:28 +01:00
|
|
|
TileEntityInputter inputter = (TileEntityInputter)world.getTileEntity(pos);
|
2015-10-02 16:48:01 +02:00
|
|
|
if(inputter != null){
|
2016-01-07 21:41:28 +01:00
|
|
|
player.openGui(ActuallyAdditions.instance, this.isAdvanced ? GuiHandler.GuiTypes.INPUTTER_ADVANCED.ordinal() : GuiHandler.GuiTypes.INPUTTER.ordinal(), world, pos.getX(), pos.getY(), pos.getZ());
|
2015-10-02 16:48:01 +02:00
|
|
|
}
|
2015-03-19 21:27:56 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-10-03 10:19:40 +02:00
|
|
|
@Override
|
2016-05-29 23:49:35 +02:00
|
|
|
public void breakBlock(World world, BlockPos pos, IBlockState state){
|
2015-09-01 00:51:11 +02:00
|
|
|
if(!world.isRemote){
|
2016-01-07 21:41:28 +01:00
|
|
|
TileEntity aTile = world.getTileEntity(pos);
|
2015-09-13 19:39:02 +02:00
|
|
|
if(aTile instanceof TileEntityInventoryBase){
|
|
|
|
TileEntityInventoryBase tile = (TileEntityInventoryBase)aTile;
|
2016-01-08 13:31:58 +01:00
|
|
|
this.dropSlotFromInventory(0, tile, world, pos);
|
2015-09-01 00:51:11 +02:00
|
|
|
}
|
|
|
|
}
|
2016-01-07 21:41:28 +01:00
|
|
|
super.breakBlock(world, pos, state);
|
2015-03-19 21:27:56 +01:00
|
|
|
}
|
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
@Override
|
2016-04-20 21:39:03 +02:00
|
|
|
protected ItemBlockBase getItemBlock(){
|
|
|
|
return new TheItemBlock(this);
|
2015-12-03 20:15:07 +01:00
|
|
|
}
|
|
|
|
|
2015-12-19 10:30:39 +01:00
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
2016-01-07 21:41:28 +01:00
|
|
|
return EnumRarity.EPIC;
|
2015-12-19 10:30:39 +01:00
|
|
|
}
|
2016-06-11 15:42:28 +02:00
|
|
|
|
|
|
|
@Override
|
2016-07-20 22:14:30 +02:00
|
|
|
public void neighborsChangedCustom(World world, BlockPos pos){
|
|
|
|
super.neighborsChangedCustom(world, pos);
|
2016-07-06 21:56:15 +02:00
|
|
|
|
2016-07-20 22:14:30 +02:00
|
|
|
TileEntity tile = world.getTileEntity(pos);
|
|
|
|
if(tile instanceof TileEntityInputter){
|
|
|
|
((TileEntityInputter)tile).initVars();
|
2016-06-11 15:42:28 +02:00
|
|
|
}
|
|
|
|
}
|
2015-12-19 10:30:39 +01:00
|
|
|
|
2015-10-23 16:48:56 +02:00
|
|
|
public static class TheItemBlock extends ItemBlockBase{
|
2015-03-19 21:27:56 +01:00
|
|
|
|
2015-03-22 20:07:06 +01:00
|
|
|
private long lastSysTime;
|
|
|
|
private int toPick;
|
|
|
|
|
2015-03-19 21:27:56 +01:00
|
|
|
public TheItemBlock(Block block){
|
|
|
|
super(block);
|
|
|
|
this.setHasSubtypes(false);
|
|
|
|
this.setMaxDamage(0);
|
|
|
|
}
|
|
|
|
|
2016-05-29 23:49:35 +02:00
|
|
|
|
2015-03-19 21:27:56 +01:00
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
public String getUnlocalizedName(ItemStack stack){
|
|
|
|
return this.getUnlocalizedName();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getMetadata(int damage){
|
|
|
|
return damage;
|
2015-03-19 21:27:56 +01:00
|
|
|
}
|
|
|
|
|
2016-05-29 23:49:35 +02:00
|
|
|
|
2015-03-22 20:07:06 +01:00
|
|
|
@Override
|
2016-05-29 23:49:35 +02:00
|
|
|
public String getItemStackDisplayName(ItemStack stack){
|
2015-03-22 20:07:06 +01:00
|
|
|
long sysTime = System.currentTimeMillis();
|
|
|
|
|
|
|
|
if(this.lastSysTime+5000 < sysTime){
|
|
|
|
this.lastSysTime = sysTime;
|
2015-11-22 18:58:23 +01:00
|
|
|
this.toPick = Util.RANDOM.nextInt(NAME_FLAVOR_AMOUNTS)+1;
|
2015-03-22 20:07:06 +01:00
|
|
|
}
|
|
|
|
|
2016-04-20 21:39:03 +02:00
|
|
|
return StringUtil.localize(this.getUnlocalizedName()+".name")+" ("+StringUtil.localize("tile."+ModUtil.MOD_ID+".blockInputter.add."+this.toPick+".name")+")";
|
2015-03-22 20:07:06 +01:00
|
|
|
}
|
2015-03-19 21:27:56 +01:00
|
|
|
}
|
|
|
|
}
|