213 lines
5.6 KiB
Java

package com.hbm.blocks.generic;
import java.util.Random;
import java.util.Set;
import com.google.common.collect.Sets;
import com.hbm.blocks.ModBlocks;
import com.hbm.config.GeneralConfig;
import com.hbm.world.feature.HugeMush;
import net.minecraft.block.Block;
import net.minecraft.block.IGrowable;
import net.minecraft.block.material.Material;
import net.minecraft.util.AxisAlignedBB;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import net.minecraftforge.common.EnumPlantType;
import net.minecraftforge.common.IPlantable;
import net.minecraftforge.common.util.ForgeDirection;
public class BlockMush extends Block implements IGrowable, IPlantable {
public BlockMush(Material p_i45394_1_) {
super(p_i45394_1_);
float f = 0.2F;
this.setBlockBounds(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, f * 2.0F, 0.5F + f);
this.setTickRandomly(true);
}
protected boolean canPlaceBlockOn(Block block) {
return block.func_149730_j();
}
@Override
public boolean canPlaceBlockAt(World world, int x, int y, int z) {
return super.canPlaceBlockAt(world, x, y, z) && this.canBlockStay(world, x, y, z);
}
@Override
public boolean canBlockStay(World world, int x, int y, int z) {
if(y >= 0 && y < 256) {
Block block = world.getBlock(x, y - 1, z);
return block.canSustainPlant(world, x, y - 1, z, ForgeDirection.UP, this) || canMushGrowHere(world, x, y, z);
} else {
return false;
}
}
private static final Set<Block> canGrowOn = Sets.newHashSet(new Block[] {
ModBlocks.waste_earth,
ModBlocks.waste_mycelium,
ModBlocks.waste_trinitite,
ModBlocks.waste_trinitite_red,
ModBlocks.block_waste,
ModBlocks.block_waste_painted,
ModBlocks.block_waste_vitrified
});
public boolean canMushGrowHere(World world, int x, int y, int z) {
Block block = world.getBlock(x, y - 1, z);
return canGrowOn.contains(block);
}
public boolean growHuge(World world, int x, int y, int z, Random rand) {
world.getBlockMetadata(x, y, z);
world.setBlockToAir(x, y, z);
(new HugeMush()).generate(world, rand, x, y, z);
return true;
}
/**
* General grow condition ("has space?")
*/
@Override
public boolean func_149851_a(World world, int x, int y, int z, boolean b) {
return this.canMushGrowHere(world, x, y, z);
}
/**
* Grow chance (40%)
*/
@Override
public boolean func_149852_a(World p_149852_1_, Random p_149852_2_, int p_149852_3_, int p_149852_4_, int p_149852_5_) {
return p_149852_2_.nextFloat() < 0.4D;
}
/**
* On successful bonemeal grow
*/
@Override
public void func_149853_b(World world, Random rand, int x, int y, int z) {
this.growHuge(world, x, y, z, rand);
}
@Override
public AxisAlignedBB getCollisionBoundingBoxFromPool(World world, int x, int y, int z) {
return null;
}
/**
* Is this block (a) opaque and (b) a full 1m cube? This determines whether
* or not to render the shared face of two adjacent blocks and also whether
* the player can attach torches, redstone wire, etc to this block.
*/
@Override
public boolean isOpaqueCube() {
return false;
}
/**
* If this block doesn't render as an ordinary block it will return False
* (examples: signs, buttons, stairs, etc)
*/
@Override
public boolean renderAsNormalBlock() {
return false;
}
/**
* The type of render function that is called for this block
*/
@Override
public int getRenderType() {
return 1;
}
@Override
public void onNeighborBlockChange(World world, int x, int y, int z, Block b) {
super.onNeighborBlockChange(world, x, y, z, b);
this.checkAndDropBlock(world, x, y, z);
}
/**
* checks if the block can stay, if not drop as item
*/
protected void checkAndDropBlock(World world, int x, int y, int z) {
if(!this.canBlockStay(world, x, y, z)) {
this.dropBlockAsItem(world, x, y, z, world.getBlockMetadata(x, y, z), 0);
world.setBlockToAir(x, y, z);
}
}
@Override
public void updateTick(World world, int x, int y, int z, Random rand) {
this.checkAndDropBlock(world, x, y, z);
if(GeneralConfig.enableMycelium && world.getBlock(x, y - 1, z) == ModBlocks.waste_earth && rand.nextInt(5) == 0) {
world.setBlock(x, y - 1, z, ModBlocks.waste_mycelium);
}
if(rand.nextInt(25) == 0) {
byte range = 4;
int maxShroom = 3;
int ix;
int iy;
int iz;
for(ix = x - range; ix <= x + range; ++ix) {
for(iy = y - range; iy <= y + range; ++iy) {
for(iz = z - 1; iz <= z + 1; ++iz) {
if(world.getBlock(ix, iz, iy) == this) {
--maxShroom;
if(maxShroom <= 0) {
return;
}
}
}
}
}
ix = x + rand.nextInt(5) - 2;
iy = z + rand.nextInt(2) - rand.nextInt(2);
iz = y + rand.nextInt(5) - 2;
for(int l1 = 0; l1 < 4; ++l1) {
if(world.isAirBlock(ix, iy, iz) && this.canMushGrowHere(world, ix, iy, iz)) {
x = ix;
z = iy;
y = iz;
}
ix = x + rand.nextInt(5) - 2;
iy = z + rand.nextInt(2) - rand.nextInt(2);
iz = y + rand.nextInt(5) - 2;
}
if(world.isAirBlock(ix, iy, iz) && this.canMushGrowHere(world, ix, iy, iz)) {
world.setBlock(ix, iy, iz, this, 0, 2);
}
}
}
@Override
public EnumPlantType getPlantType(IBlockAccess world, int x, int y, int z) {
return EnumPlantType.Cave;
}
@Override
public Block getPlant(IBlockAccess world, int x, int y, int z) {
return this;
}
@Override
public int getPlantMetadata(IBlockAccess world, int x, int y, int z) {
return world.getBlockMetadata(x, y, z);
}
}