2015-05-20 22:39:43 +02:00
|
|
|
package ellpeck.actuallyadditions.blocks;
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
import ellpeck.actuallyadditions.items.ItemSeed;
|
2015-06-18 13:14:57 +02:00
|
|
|
import ellpeck.actuallyadditions.util.BlockUtil;
|
2015-05-20 22:39:43 +02:00
|
|
|
import ellpeck.actuallyadditions.util.INameableItem;
|
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.BlockCrops;
|
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
2015-06-18 13:14:57 +02:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2015-05-20 22:39:43 +02:00
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraft.item.ItemBlock;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.IIcon;
|
|
|
|
import net.minecraft.world.World;
|
2015-05-22 17:48:50 +02:00
|
|
|
import powercrystals.minefactoryreloaded.api.FertilizerType;
|
|
|
|
import powercrystals.minefactoryreloaded.api.HarvestType;
|
|
|
|
import powercrystals.minefactoryreloaded.api.IFactoryFertilizable;
|
|
|
|
import powercrystals.minefactoryreloaded.api.IFactoryHarvestable;
|
2015-05-20 22:39:43 +02:00
|
|
|
|
|
|
|
import java.util.List;
|
2015-05-22 17:48:50 +02:00
|
|
|
import java.util.Map;
|
2015-05-20 22:39:43 +02:00
|
|
|
import java.util.Random;
|
|
|
|
|
2015-05-22 17:48:50 +02:00
|
|
|
public class BlockPlant extends BlockCrops implements INameableItem, IFactoryHarvestable, IFactoryFertilizable{
|
2015-05-20 22:39:43 +02:00
|
|
|
|
|
|
|
private IIcon[] textures;
|
|
|
|
private String name;
|
|
|
|
public Item seedItem;
|
2015-06-21 02:28:49 +02:00
|
|
|
public Item returnItem;
|
|
|
|
public int returnMeta;
|
2015-06-06 01:25:53 +02:00
|
|
|
private int minDropAmount;
|
|
|
|
private int addDropAmount;
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2015-06-06 01:25:53 +02:00
|
|
|
public BlockPlant(String name, int stages, int minDropAmount, int addDropAmount){
|
2015-05-20 22:39:43 +02:00
|
|
|
this.name = name;
|
|
|
|
this.textures = new IIcon[stages];
|
2015-06-06 01:25:53 +02:00
|
|
|
this.minDropAmount = minDropAmount;
|
|
|
|
this.addDropAmount = addDropAmount;
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canBlockStay(World world, int x, int y, int z){
|
|
|
|
return y > 0 && y < 256 && world.getBlock(x, y-1, z).getMaterial() == ((ItemSeed)this.seedItem).soilBlock.getMaterial();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-06-21 02:28:49 +02:00
|
|
|
public int quantityDropped(int meta, int fortune, Random random){
|
|
|
|
return random.nextInt(addDropAmount)+minDropAmount;
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canPlaceBlockOn(Block block){
|
|
|
|
return block == ((ItemSeed)this.seedItem).soilBlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public IIcon getIcon(int side, int meta){
|
|
|
|
if(meta < 7){
|
|
|
|
if (meta == 6) meta = 5;
|
|
|
|
return this.textures[meta >> 1];
|
|
|
|
}
|
|
|
|
else return this.textures[this.textures.length-1];
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Item func_149866_i(){
|
|
|
|
return this.seedItem;
|
|
|
|
}
|
|
|
|
|
2015-06-21 02:28:49 +02:00
|
|
|
@Override
|
|
|
|
public Item getItemDropped(int meta, Random rand, int par3){
|
|
|
|
return meta >= 7 ? this.func_149865_P() : this.func_149866_i();
|
|
|
|
}
|
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
@Override
|
|
|
|
public Item func_149865_P(){
|
2015-06-21 02:28:49 +02:00
|
|
|
return this.returnItem;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int damageDropped(int meta){
|
|
|
|
return this.returnMeta;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getDamageValue(World world, int x, int y, int z){
|
|
|
|
return 0;
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void registerBlockIcons(IIconRegister iconReg){
|
|
|
|
for (int i = 0; i < this.textures.length; i++){
|
|
|
|
textures[i] = iconReg.registerIcon(ModUtil.MOD_ID_LOWER + ":" + this.getName() + "Stage" + (i+1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getName(){
|
|
|
|
return this.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getOredictName(){
|
|
|
|
return this.getName();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class TheItemBlock extends ItemBlock{
|
|
|
|
|
|
|
|
private Block theBlock;
|
|
|
|
|
|
|
|
public TheItemBlock(Block block){
|
|
|
|
super(block);
|
|
|
|
this.theBlock = block;
|
|
|
|
this.setHasSubtypes(false);
|
|
|
|
this.setMaxDamage(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
return EnumRarity.uncommon;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getUnlocalizedName(ItemStack stack){
|
|
|
|
return this.getUnlocalizedName();
|
|
|
|
}
|
|
|
|
|
2015-06-18 13:14:57 +02:00
|
|
|
@Override
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isHeld) {
|
|
|
|
BlockUtil.addInformation(theBlock, list, 1, "");
|
|
|
|
}
|
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
@Override
|
|
|
|
public int getMetadata(int damage){
|
|
|
|
return damage;
|
|
|
|
}
|
|
|
|
}
|
2015-05-22 17:48:50 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public Block getPlant(){
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canFertilize(World world, int x, int y, int z, FertilizerType fertilizerType){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean fertilize(World world, Random rand, int x, int y, int z, FertilizerType fertilizerType){
|
|
|
|
if (this.func_149851_a(world, x, y, z, world.isRemote)){
|
|
|
|
if(!world.isRemote){
|
|
|
|
if(this.func_149852_a(world, world.rand, x, y, z)){
|
|
|
|
this.func_149853_b(world, world.rand, x, y, z);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public HarvestType getHarvestType(){
|
|
|
|
return HarvestType.Normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean breakBlock(){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canBeHarvested(World world, Map<String, Boolean> harvesterSettings, int x, int y, int z){
|
|
|
|
return world.getBlockMetadata(x, y, z) >= 7;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public List<ItemStack> getDrops(World world, Random rand, Map<String, Boolean> harvesterSettings, int x, int y, int z){
|
|
|
|
return this.getDrops(world, x, y, z, world.getBlockMetadata(x, y, z), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void preHarvest(World world, int x, int y, int z){
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void postHarvest(World world, int x, int y, int z){
|
|
|
|
|
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|