449 lines
17 KiB
Java
449 lines
17 KiB
Java
![]() |
package game.block;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
import game.audio.SoundType;
|
||
|
import game.color.Colorizer;
|
||
|
import game.entity.npc.EntityNPC;
|
||
|
import game.entity.types.EntityLiving;
|
||
|
import game.init.Blocks;
|
||
|
import game.init.Config;
|
||
|
import game.init.ItemRegistry;
|
||
|
import game.init.Items;
|
||
|
import game.item.CheatTab;
|
||
|
import game.item.Item;
|
||
|
import game.item.ItemShears;
|
||
|
import game.item.ItemStack;
|
||
|
import game.material.Material;
|
||
|
import game.properties.IProperty;
|
||
|
import game.properties.IStringSerializable;
|
||
|
import game.properties.PropertyEnum;
|
||
|
import game.renderer.blockmodel.ModelBlock;
|
||
|
import game.rng.Random;
|
||
|
import game.tileentity.TileEntity;
|
||
|
import game.world.BlockPos;
|
||
|
import game.world.Facing;
|
||
|
import game.world.Facing.Axis;
|
||
|
import game.world.IWorldAccess;
|
||
|
import game.world.State;
|
||
|
import game.world.World;
|
||
|
import game.world.WorldServer;
|
||
|
|
||
|
public class BlockDoublePlant extends BlockBush implements IGrowable
|
||
|
{
|
||
|
public static final PropertyEnum<BlockDoublePlant.EnumPlantType> VARIANT = PropertyEnum.<BlockDoublePlant.EnumPlantType>create("variant", BlockDoublePlant.EnumPlantType.class);
|
||
|
public static final PropertyEnum<BlockDoublePlant.EnumBlockHalf> HALF = PropertyEnum.<BlockDoublePlant.EnumBlockHalf>create("half", BlockDoublePlant.EnumBlockHalf.class);
|
||
|
public static final PropertyEnum<Facing> FACING = BlockDirectional.FACING;
|
||
|
|
||
|
public BlockDoublePlant()
|
||
|
{
|
||
|
super(Material.vine);
|
||
|
this.setDefaultState(this.getBaseState().withProperty(VARIANT, BlockDoublePlant.EnumPlantType.SUNFLOWER).withProperty(HALF, BlockDoublePlant.EnumBlockHalf.LOWER).withProperty(FACING, Facing.NORTH));
|
||
|
this.setHardness(0.0F);
|
||
|
this.setStepSound(SoundType.GRASS);
|
||
|
// this.setDisplay("doublePlant");
|
||
|
// this.setTickRandomly();
|
||
|
}
|
||
|
|
||
|
public void updateTick(WorldServer worldIn, BlockPos pos, State state, Random rand)
|
||
|
{
|
||
|
if(Config.plantDry && worldIn.getTemperatureC(pos) >= 50.0f)
|
||
|
{
|
||
|
boolean upper = state.getValue(HALF) == EnumBlockHalf.UPPER;
|
||
|
if(!upper)
|
||
|
pos = pos.up();
|
||
|
if(upper || worldIn.getState(pos).getBlock() == this)
|
||
|
worldIn.setState(pos, Blocks.air.getState());
|
||
|
pos = pos.down();
|
||
|
if(!upper || worldIn.getState(pos).getBlock() == this)
|
||
|
worldIn.setState(pos, state.getValue(VARIANT) == EnumPlantType.GRASS || worldIn.rand.chance(20) ? Blocks.air.getState() :
|
||
|
Blocks.tallgrass.getState().withProperty(BlockTallGrass.TYPE, BlockTallGrass.EnumType.DEAD_BUSH));
|
||
|
return;
|
||
|
}
|
||
|
super.updateTick(worldIn, pos, state, rand);
|
||
|
}
|
||
|
|
||
|
public void setBlockBoundsBasedOnState(IWorldAccess worldIn, BlockPos pos)
|
||
|
{
|
||
|
this.setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, 1.0F, 1.0F);
|
||
|
}
|
||
|
|
||
|
public BlockDoublePlant.EnumPlantType getVariant(IWorldAccess worldIn, BlockPos pos)
|
||
|
{
|
||
|
State iblockstate = worldIn.getState(pos);
|
||
|
|
||
|
if (iblockstate.getBlock() == this)
|
||
|
{
|
||
|
iblockstate = this.getActualState(iblockstate, worldIn, pos);
|
||
|
return (BlockDoublePlant.EnumPlantType)iblockstate.getValue(VARIANT);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return BlockDoublePlant.EnumPlantType.FERN;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public boolean canPlaceBlockAt(World worldIn, BlockPos pos)
|
||
|
{
|
||
|
return super.canPlaceBlockAt(worldIn, pos) && worldIn.isAirBlock(pos.up());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Whether this Block can be replaced directly by other blocks (true for e.g. tall grass)
|
||
|
*/
|
||
|
public boolean isReplaceable(World worldIn, BlockPos pos)
|
||
|
{
|
||
|
State iblockstate = worldIn.getState(pos);
|
||
|
|
||
|
if (iblockstate.getBlock() != this)
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
BlockDoublePlant.EnumPlantType blockdoubleplant$enumplanttype = (BlockDoublePlant.EnumPlantType)this.getActualState(iblockstate, worldIn, pos).getValue(VARIANT);
|
||
|
return blockdoubleplant$enumplanttype == BlockDoublePlant.EnumPlantType.FERN || blockdoubleplant$enumplanttype == BlockDoublePlant.EnumPlantType.GRASS;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
protected void checkAndDropBlock(World worldIn, BlockPos pos, State state)
|
||
|
{
|
||
|
if (!this.canBlockStay(worldIn, pos, state))
|
||
|
{
|
||
|
boolean flag = state.getValue(HALF) == BlockDoublePlant.EnumBlockHalf.UPPER;
|
||
|
BlockPos blockpos = flag ? pos : pos.up();
|
||
|
BlockPos blockpos1 = flag ? pos.down() : pos;
|
||
|
Block block = (Block)(flag ? this : worldIn.getState(blockpos).getBlock());
|
||
|
Block block1 = (Block)(flag ? worldIn.getState(blockpos1).getBlock() : this);
|
||
|
|
||
|
if (block == this)
|
||
|
{
|
||
|
worldIn.setState(blockpos, Blocks.air.getState(), 2);
|
||
|
}
|
||
|
|
||
|
if (block1 == this)
|
||
|
{
|
||
|
worldIn.setState(blockpos1, Blocks.air.getState(), 3);
|
||
|
|
||
|
if (!flag)
|
||
|
{
|
||
|
this.dropBlockAsItem(worldIn, blockpos1, state, 0);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public boolean canBlockStay(World worldIn, BlockPos pos, State state)
|
||
|
{
|
||
|
if (state.getValue(HALF) == BlockDoublePlant.EnumBlockHalf.UPPER)
|
||
|
{
|
||
|
return worldIn.getState(pos.down()).getBlock() == this;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
State iblockstate = worldIn.getState(pos.up());
|
||
|
return iblockstate.getBlock() == this && super.canBlockStay(worldIn, pos, iblockstate);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the Item that this Block should drop when harvested.
|
||
|
*/
|
||
|
public Item getItemDropped(State state, Random rand, int fortune)
|
||
|
{
|
||
|
if (state.getValue(HALF) == BlockDoublePlant.EnumBlockHalf.UPPER)
|
||
|
{
|
||
|
return null;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
BlockDoublePlant.EnumPlantType blockdoubleplant$enumplanttype = (BlockDoublePlant.EnumPlantType)state.getValue(VARIANT);
|
||
|
return blockdoubleplant$enumplanttype == BlockDoublePlant.EnumPlantType.FERN ? null : (blockdoubleplant$enumplanttype == BlockDoublePlant.EnumPlantType.GRASS ? (rand.chance(8) ? Items.wheat : null) : ItemRegistry.getItemFromBlock(this));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Gets the metadata of the item this Block can drop. This method is called when the block gets destroyed. It
|
||
|
* returns the metadata of the dropped item based on the old metadata of the block.
|
||
|
*/
|
||
|
public int damageDropped(State state)
|
||
|
{
|
||
|
return state.getValue(HALF) != BlockDoublePlant.EnumBlockHalf.UPPER && state.getValue(VARIANT) != BlockDoublePlant.EnumPlantType.GRASS ? ((BlockDoublePlant.EnumPlantType)state.getValue(VARIANT)).getMeta() : 0;
|
||
|
}
|
||
|
|
||
|
public int colorMultiplier(IWorldAccess worldIn, BlockPos pos, int renderPass)
|
||
|
{
|
||
|
BlockDoublePlant.EnumPlantType blockdoubleplant$enumplanttype = this.getVariant(worldIn, pos);
|
||
|
return blockdoubleplant$enumplanttype != BlockDoublePlant.EnumPlantType.GRASS && blockdoubleplant$enumplanttype != BlockDoublePlant.EnumPlantType.FERN ? 16777215 : Colorizer.getGrassColor(worldIn, pos);
|
||
|
}
|
||
|
|
||
|
public void placeAt(World worldIn, BlockPos lowerPos, BlockDoublePlant.EnumPlantType variant, int flags)
|
||
|
{
|
||
|
worldIn.setState(lowerPos, this.getState().withProperty(HALF, BlockDoublePlant.EnumBlockHalf.LOWER).withProperty(VARIANT, variant), flags);
|
||
|
worldIn.setState(lowerPos.up(), this.getState().withProperty(HALF, BlockDoublePlant.EnumBlockHalf.UPPER), flags);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Called by ItemBlocks after a block is set in the world, to allow post-place logic
|
||
|
*/
|
||
|
public void onBlockPlacedBy(World worldIn, BlockPos pos, State state, EntityLiving placer, ItemStack stack)
|
||
|
{
|
||
|
worldIn.setState(pos.up(), this.getState().withProperty(HALF, BlockDoublePlant.EnumBlockHalf.UPPER), 2);
|
||
|
}
|
||
|
|
||
|
public void harvestBlock(World worldIn, EntityNPC player, BlockPos pos, State state, TileEntity te)
|
||
|
{
|
||
|
if (worldIn.client || player.getCurrentEquippedItem() == null || !(player.getCurrentEquippedItem().getItem() instanceof ItemShears) || state.getValue(HALF) != BlockDoublePlant.EnumBlockHalf.LOWER || !this.onHarvest(worldIn, pos, state, player))
|
||
|
{
|
||
|
super.harvestBlock(worldIn, player, pos, state, te);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public void onBlockHarvested(World worldIn, BlockPos pos, State state, EntityNPC player)
|
||
|
{
|
||
|
if (state.getValue(HALF) == BlockDoublePlant.EnumBlockHalf.UPPER)
|
||
|
{
|
||
|
if (worldIn.getState(pos.down()).getBlock() == this)
|
||
|
{
|
||
|
// if (!player.creative)
|
||
|
// {
|
||
|
State iblockstate = worldIn.getState(pos.down());
|
||
|
BlockDoublePlant.EnumPlantType blockdoubleplant$enumplanttype = (BlockDoublePlant.EnumPlantType)iblockstate.getValue(VARIANT);
|
||
|
|
||
|
if (blockdoubleplant$enumplanttype != BlockDoublePlant.EnumPlantType.FERN && blockdoubleplant$enumplanttype != BlockDoublePlant.EnumPlantType.GRASS)
|
||
|
{
|
||
|
worldIn.destroyBlock(pos.down(), true);
|
||
|
}
|
||
|
else if (!worldIn.client)
|
||
|
{
|
||
|
if (player.getCurrentEquippedItem() != null && player.getCurrentEquippedItem().getItem() instanceof ItemShears)
|
||
|
{
|
||
|
this.onHarvest(worldIn, pos, iblockstate, player);
|
||
|
worldIn.setBlockToAir(pos.down());
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
worldIn.destroyBlock(pos.down(), true);
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
worldIn.setBlockToAir(pos.down());
|
||
|
}
|
||
|
// }
|
||
|
// else
|
||
|
// {
|
||
|
// worldIn.setBlockToAir(pos.down());
|
||
|
// }
|
||
|
}
|
||
|
}
|
||
|
// else if (player.creative && worldIn.getState(pos.up()).getBlock() == this)
|
||
|
// {
|
||
|
// worldIn.setState(pos.up(), Blocks.air.getState(), 2);
|
||
|
// }
|
||
|
|
||
|
super.onBlockHarvested(worldIn, pos, state, player);
|
||
|
}
|
||
|
|
||
|
private boolean onHarvest(World worldIn, BlockPos pos, State state, EntityNPC player)
|
||
|
{
|
||
|
BlockDoublePlant.EnumPlantType blockdoubleplant$enumplanttype = (BlockDoublePlant.EnumPlantType)state.getValue(VARIANT);
|
||
|
|
||
|
if (blockdoubleplant$enumplanttype != BlockDoublePlant.EnumPlantType.FERN && blockdoubleplant$enumplanttype != BlockDoublePlant.EnumPlantType.GRASS)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
// player.triggerAchievement(StatRegistry.mineBlockStatArray[BlockRegistry.getIdFromBlock(this)]);
|
||
|
int i = (blockdoubleplant$enumplanttype == BlockDoublePlant.EnumPlantType.GRASS ? BlockTallGrass.EnumType.GRASS : BlockTallGrass.EnumType.FERN).getMeta();
|
||
|
spawnAsEntity(worldIn, pos, new ItemStack(Blocks.tallgrass, 2, i));
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* returns a list of blocks with the same ID, but different meta (eg: wood returns 4 blocks)
|
||
|
*/
|
||
|
public void getSubBlocks(Item itemIn, CheatTab tab, List<ItemStack> list)
|
||
|
{
|
||
|
for (BlockDoublePlant.EnumPlantType blockdoubleplant$enumplanttype : BlockDoublePlant.EnumPlantType.values())
|
||
|
{
|
||
|
list.add(new ItemStack(itemIn, 1, blockdoubleplant$enumplanttype.getMeta()));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Gets the meta to use for the Pick Block ItemStack result
|
||
|
*/
|
||
|
public int getDamageValue(World worldIn, BlockPos pos)
|
||
|
{
|
||
|
return this.getVariant(worldIn, pos).getMeta();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Whether this IGrowable can grow
|
||
|
*/
|
||
|
public boolean canGrow(World worldIn, BlockPos pos, State state, boolean isClient)
|
||
|
{
|
||
|
BlockDoublePlant.EnumPlantType blockdoubleplant$enumplanttype = this.getVariant(worldIn, pos);
|
||
|
return blockdoubleplant$enumplanttype != BlockDoublePlant.EnumPlantType.GRASS && blockdoubleplant$enumplanttype != BlockDoublePlant.EnumPlantType.FERN;
|
||
|
}
|
||
|
|
||
|
public boolean canUseBonemeal(World worldIn, Random rand, BlockPos pos, State state)
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public void grow(WorldServer worldIn, Random rand, BlockPos pos, State state)
|
||
|
{
|
||
|
spawnAsEntity(worldIn, pos, new ItemStack(this, 1, this.getVariant(worldIn, pos).getMeta()));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Convert the given metadata into a BlockState for this Block
|
||
|
*/
|
||
|
public State getStateFromMeta(int meta)
|
||
|
{
|
||
|
return (meta & 8) > 0 ? this.getState().withProperty(HALF, BlockDoublePlant.EnumBlockHalf.UPPER) : this.getState().withProperty(HALF, BlockDoublePlant.EnumBlockHalf.LOWER).withProperty(VARIANT, BlockDoublePlant.EnumPlantType.byMetadata(meta & 7));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the actual Block state of this Block at the given position. This applies properties not visible in the
|
||
|
* metadata, such as fence connections.
|
||
|
*/
|
||
|
public State getActualState(State state, IWorldAccess worldIn, BlockPos pos)
|
||
|
{
|
||
|
if (state.getValue(HALF) == BlockDoublePlant.EnumBlockHalf.UPPER)
|
||
|
{
|
||
|
State iblockstate = worldIn.getState(pos.down());
|
||
|
|
||
|
if (iblockstate.getBlock() == this)
|
||
|
{
|
||
|
state = state.withProperty(VARIANT, iblockstate.getValue(VARIANT));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return state;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Convert the BlockState into the correct metadata value
|
||
|
*/
|
||
|
public int getMetaFromState(State state)
|
||
|
{
|
||
|
return state.getValue(HALF) == BlockDoublePlant.EnumBlockHalf.UPPER ? 8 | ((Facing)state.getValue(FACING)).getHorizontalIndex() : ((BlockDoublePlant.EnumPlantType)state.getValue(VARIANT)).getMeta();
|
||
|
}
|
||
|
|
||
|
protected IProperty[] getProperties()
|
||
|
{
|
||
|
return new IProperty[] {HALF, VARIANT, FACING};
|
||
|
}
|
||
|
|
||
|
// public EnumOffsetType getOffsetType()
|
||
|
// {
|
||
|
// return EnumOffsetType.XZ;
|
||
|
// }
|
||
|
|
||
|
public ModelBlock getModel(String name, State state) {
|
||
|
if(state.getValue(VARIANT) == EnumPlantType.SUNFLOWER && state.getValue(HALF) == EnumBlockHalf.UPPER)
|
||
|
return new ModelBlock("sunflower_front").noOcclude()
|
||
|
.add(0.8f, 0f, 8f, 15.2f, 8f, 8f).noShade().rotate(8, 8, 8, Axis.Y, 45, true).ns("sunflower_top")
|
||
|
.uv(0, 8, 16, 16).noCull()
|
||
|
.add(8f, 0f, 0.8f, 8f, 8f, 15.2f).noShade().rotate(8, 8, 8, Axis.Y, 45, true).we("sunflower_top")
|
||
|
.uv(0, 8, 16, 16).noCull()
|
||
|
.add(9.6f, -1f, 1f, 9.6f, 15f, 15f).noShade().rotate(8, 8, 8, Axis.Z, 22.5f, true).w("sunflower_back")
|
||
|
.uv(0, 0, 16, 16).noCull().e().uv(0, 0, 16, 16).noCull();
|
||
|
else if(state.getValue(VARIANT) == EnumPlantType.FERN || state.getValue(VARIANT) == EnumPlantType.GRASS)
|
||
|
return new ModelBlock(state.getValue(VARIANT).getName() + "_" + (state.getValue(HALF) == EnumBlockHalf.UPPER
|
||
|
? "top" : "bottom")).crossTint();
|
||
|
else
|
||
|
return new ModelBlock(state.getValue(VARIANT).getName() + "_" + (state.getValue(HALF) == EnumBlockHalf.UPPER
|
||
|
? "top" : "bottom")).cross();
|
||
|
}
|
||
|
|
||
|
public IProperty<?>[] getIgnoredProperties() {
|
||
|
return new IProperty[] {FACING};
|
||
|
}
|
||
|
|
||
|
public static enum EnumBlockHalf implements IStringSerializable
|
||
|
{
|
||
|
UPPER,
|
||
|
LOWER;
|
||
|
|
||
|
public String toString()
|
||
|
{
|
||
|
return this.getName();
|
||
|
}
|
||
|
|
||
|
public String getName()
|
||
|
{
|
||
|
return this == UPPER ? "upper" : "lower";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public static enum EnumPlantType implements IStringSerializable
|
||
|
{
|
||
|
SUNFLOWER(0, "sunflower", "Sonnenblume"),
|
||
|
SYRINGA(1, "syringa", "Flieder"),
|
||
|
GRASS(2, "double_grass", "Hohes Gras"),
|
||
|
FERN(3, "double_fern", "Großer Farn"),
|
||
|
ROSE(4, "double_rose", "Rosenstrauch"),
|
||
|
PAEONIA(5, "paeonia", "Pfingstrose");
|
||
|
|
||
|
private static final BlockDoublePlant.EnumPlantType[] META_LOOKUP = new BlockDoublePlant.EnumPlantType[values().length];
|
||
|
private final int meta;
|
||
|
private final String name;
|
||
|
private final String display;
|
||
|
|
||
|
// private EnumPlantType(int meta, String name)
|
||
|
// {
|
||
|
// this(meta, name, name);
|
||
|
// }
|
||
|
|
||
|
private EnumPlantType(int meta, String name, String display)
|
||
|
{
|
||
|
this.meta = meta;
|
||
|
this.name = name;
|
||
|
this.display = display;
|
||
|
}
|
||
|
|
||
|
public int getMeta()
|
||
|
{
|
||
|
return this.meta;
|
||
|
}
|
||
|
|
||
|
public String toString()
|
||
|
{
|
||
|
return this.name;
|
||
|
}
|
||
|
|
||
|
public static BlockDoublePlant.EnumPlantType byMetadata(int meta)
|
||
|
{
|
||
|
if (meta < 0 || meta >= META_LOOKUP.length)
|
||
|
{
|
||
|
meta = 0;
|
||
|
}
|
||
|
|
||
|
return META_LOOKUP[meta];
|
||
|
}
|
||
|
|
||
|
public String getName()
|
||
|
{
|
||
|
return this.name;
|
||
|
}
|
||
|
|
||
|
public String getDisplay()
|
||
|
{
|
||
|
return this.display;
|
||
|
}
|
||
|
|
||
|
static {
|
||
|
for (BlockDoublePlant.EnumPlantType blockdoubleplant$enumplanttype : values())
|
||
|
{
|
||
|
META_LOOKUP[blockdoubleplant$enumplanttype.getMeta()] = blockdoubleplant$enumplanttype;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|