169 lines
6.5 KiB
Java
169 lines
6.5 KiB
Java
package net.minecraft.block;
|
|
|
|
import java.util.List;
|
|
|
|
import com.google.common.base.Predicate;
|
|
|
|
import net.minecraft.block.properties.IProperty;
|
|
import net.minecraft.block.properties.PropertyEnum;
|
|
import net.minecraft.block.state.BlockState;
|
|
import net.minecraft.block.state.IBlockState;
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.init.Items;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.stats.StatList;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.util.BlockPos;
|
|
import net.minecraft.world.ColorizerFoliage;
|
|
import net.minecraft.world.IBlockAccess;
|
|
import net.minecraft.world.World;
|
|
|
|
/**+
|
|
* This portion of EaglercraftX contains deobfuscated Minecraft 1.8 source code.
|
|
*
|
|
* Minecraft 1.8.8 bytecode is (c) 2015 Mojang AB. "Do not distribute!"
|
|
* Mod Coder Pack v9.18 deobfuscation configs are (c) Copyright by the MCP Team
|
|
*
|
|
* EaglercraftX 1.8 patch files (c) 2022-2024 lax1dude, ayunami2000. All Rights Reserved.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
*/
|
|
public class BlockOldLeaf extends BlockLeaves {
|
|
public static PropertyEnum<BlockPlanks.EnumType> VARIANT;
|
|
|
|
public BlockOldLeaf() {
|
|
this.setDefaultState(this.blockState.getBaseState().withProperty(VARIANT, BlockPlanks.EnumType.OAK)
|
|
.withProperty(CHECK_DECAY, Boolean.valueOf(true)).withProperty(DECAYABLE, Boolean.valueOf(true)));
|
|
}
|
|
|
|
public static void bootstrapStates() {
|
|
VARIANT = PropertyEnum.create("variant", BlockPlanks.EnumType.class, new Predicate<BlockPlanks.EnumType>() {
|
|
public boolean apply(BlockPlanks.EnumType blockplanks$enumtype) {
|
|
return blockplanks$enumtype.getMetadata() < 4;
|
|
}
|
|
});
|
|
}
|
|
|
|
public int getRenderColor(IBlockState iblockstate) {
|
|
if (iblockstate.getBlock() != this) {
|
|
return super.getRenderColor(iblockstate);
|
|
} else {
|
|
BlockPlanks.EnumType blockplanks$enumtype = (BlockPlanks.EnumType) iblockstate.getValue(VARIANT);
|
|
return blockplanks$enumtype == BlockPlanks.EnumType.SPRUCE ? ColorizerFoliage.getFoliageColorPine()
|
|
: (blockplanks$enumtype == BlockPlanks.EnumType.BIRCH ? ColorizerFoliage.getFoliageColorBirch()
|
|
: super.getRenderColor(iblockstate));
|
|
}
|
|
}
|
|
|
|
public int colorMultiplier(IBlockAccess iblockaccess, BlockPos blockpos, int i) {
|
|
IBlockState iblockstate = iblockaccess.getBlockState(blockpos);
|
|
if (iblockstate.getBlock() == this) {
|
|
BlockPlanks.EnumType blockplanks$enumtype = (BlockPlanks.EnumType) iblockstate.getValue(VARIANT);
|
|
if (blockplanks$enumtype == BlockPlanks.EnumType.SPRUCE) {
|
|
return ColorizerFoliage.getFoliageColorPine();
|
|
}
|
|
|
|
if (blockplanks$enumtype == BlockPlanks.EnumType.BIRCH) {
|
|
return ColorizerFoliage.getFoliageColorBirch();
|
|
}
|
|
}
|
|
|
|
return super.colorMultiplier(iblockaccess, blockpos, i);
|
|
}
|
|
|
|
protected void dropApple(World world, BlockPos blockpos, IBlockState iblockstate, int i) {
|
|
if (iblockstate.getValue(VARIANT) == BlockPlanks.EnumType.OAK && world.rand.nextInt(i) == 0) {
|
|
spawnAsEntity(world, blockpos, new ItemStack(Items.apple, 1, 0));
|
|
}
|
|
|
|
}
|
|
|
|
protected int getSaplingDropChance(IBlockState iblockstate) {
|
|
return iblockstate.getValue(VARIANT) == BlockPlanks.EnumType.JUNGLE ? 40
|
|
: super.getSaplingDropChance(iblockstate);
|
|
}
|
|
|
|
/**+
|
|
* returns a list of blocks with the same ID, but different meta
|
|
* (eg: wood returns 4 blocks)
|
|
*/
|
|
public void getSubBlocks(Item item, CreativeTabs var2, List<ItemStack> list) {
|
|
list.add(new ItemStack(item, 1, BlockPlanks.EnumType.OAK.getMetadata()));
|
|
list.add(new ItemStack(item, 1, BlockPlanks.EnumType.SPRUCE.getMetadata()));
|
|
list.add(new ItemStack(item, 1, BlockPlanks.EnumType.BIRCH.getMetadata()));
|
|
list.add(new ItemStack(item, 1, BlockPlanks.EnumType.JUNGLE.getMetadata()));
|
|
}
|
|
|
|
protected ItemStack createStackedBlock(IBlockState iblockstate) {
|
|
return new ItemStack(Item.getItemFromBlock(this), 1,
|
|
((BlockPlanks.EnumType) iblockstate.getValue(VARIANT)).getMetadata());
|
|
}
|
|
|
|
/**+
|
|
* Convert the given metadata into a BlockState for this Block
|
|
*/
|
|
public IBlockState getStateFromMeta(int i) {
|
|
return this.getDefaultState().withProperty(VARIANT, this.getWoodType(i))
|
|
.withProperty(DECAYABLE, Boolean.valueOf((i & 4) == 0))
|
|
.withProperty(CHECK_DECAY, Boolean.valueOf((i & 8) > 0));
|
|
}
|
|
|
|
/**+
|
|
* Convert the BlockState into the correct metadata value
|
|
*/
|
|
public int getMetaFromState(IBlockState iblockstate) {
|
|
int i = 0;
|
|
i = i | ((BlockPlanks.EnumType) iblockstate.getValue(VARIANT)).getMetadata();
|
|
if (!((Boolean) iblockstate.getValue(DECAYABLE)).booleanValue()) {
|
|
i |= 4;
|
|
}
|
|
|
|
if (((Boolean) iblockstate.getValue(CHECK_DECAY)).booleanValue()) {
|
|
i |= 8;
|
|
}
|
|
|
|
return i;
|
|
}
|
|
|
|
public BlockPlanks.EnumType getWoodType(int i) {
|
|
return BlockPlanks.EnumType.byMetadata((i & 3) % 4);
|
|
}
|
|
|
|
protected BlockState createBlockState() {
|
|
return new BlockState(this, new IProperty[] { VARIANT, CHECK_DECAY, DECAYABLE });
|
|
}
|
|
|
|
/**+
|
|
* 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(IBlockState iblockstate) {
|
|
return ((BlockPlanks.EnumType) iblockstate.getValue(VARIANT)).getMetadata();
|
|
}
|
|
|
|
public void harvestBlock(World world, EntityPlayer entityplayer, BlockPos blockpos, IBlockState iblockstate,
|
|
TileEntity tileentity) {
|
|
if (!world.isRemote && entityplayer.getCurrentEquippedItem() != null
|
|
&& entityplayer.getCurrentEquippedItem().getItem() == Items.shears) {
|
|
entityplayer.triggerAchievement(StatList.mineBlockStatArray[Block.getIdFromBlock(this)]);
|
|
spawnAsEntity(world, blockpos, new ItemStack(Item.getItemFromBlock(this), 1,
|
|
((BlockPlanks.EnumType) iblockstate.getValue(VARIANT)).getMetadata()));
|
|
} else {
|
|
super.harvestBlock(world, entityplayer, blockpos, iblockstate, tileentity);
|
|
}
|
|
}
|
|
} |