eaglercraft b302c97c42 u37
2024-09-21 22:29:10 -07:00

213 lines
7.4 KiB
Java
Executable File

package net.minecraft.block;
import java.util.List;
import net.lax1dude.eaglercraft.v1_8.EaglercraftRandom;
import net.minecraft.block.material.Material;
import net.minecraft.block.properties.IProperty;
import net.minecraft.block.properties.PropertyBool;
import net.minecraft.block.state.BlockState;
import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Items;
import net.minecraft.inventory.Container;
import net.minecraft.inventory.InventoryHelper;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.stats.StatList;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.tileentity.TileEntityBrewingStand;
import net.minecraft.util.AxisAlignedBB;
import net.minecraft.util.BlockPos;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.EnumParticleTypes;
import net.minecraft.util.EnumWorldBlockLayer;
import net.minecraft.util.StatCollector;
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 BlockBrewingStand extends BlockContainer {
public static final PropertyBool[] HAS_BOTTLE = new PropertyBool[] { PropertyBool.create("has_bottle_0"),
PropertyBool.create("has_bottle_1"), PropertyBool.create("has_bottle_2") };
public BlockBrewingStand() {
super(Material.iron);
this.setDefaultState(this.blockState.getBaseState().withProperty(HAS_BOTTLE[0], Boolean.valueOf(false))
.withProperty(HAS_BOTTLE[1], Boolean.valueOf(false))
.withProperty(HAS_BOTTLE[2], Boolean.valueOf(false)));
}
/**+
* Gets the localized name of this block. Used for the
* statistics page.
*/
public String getLocalizedName() {
return StatCollector.translateToLocal("item.brewingStand.name");
}
/**+
* Used to determine ambient occlusion and culling when
* rebuilding chunks for render
*/
public boolean isOpaqueCube() {
return false;
}
/**+
* The type of render function called. 3 for standard block
* models, 2 for TESR's, 1 for liquids, -1 is no render
*/
public int getRenderType() {
return 3;
}
/**+
* Returns a new instance of a block's tile entity class. Called
* on placing the block.
*/
public TileEntity createNewTileEntity(World var1, int var2) {
return new TileEntityBrewingStand();
}
public boolean isFullCube() {
return false;
}
/**+
* Add all collision boxes of this Block to the list that
* intersect with the given mask.
*/
public void addCollisionBoxesToList(World world, BlockPos blockpos, IBlockState iblockstate,
AxisAlignedBB axisalignedbb, List<AxisAlignedBB> list, Entity entity) {
this.setBlockBounds(0.4375F, 0.0F, 0.4375F, 0.5625F, 0.875F, 0.5625F);
super.addCollisionBoxesToList(world, blockpos, iblockstate, axisalignedbb, list, entity);
this.setBlockBoundsForItemRender();
super.addCollisionBoxesToList(world, blockpos, iblockstate, axisalignedbb, list, entity);
}
/**+
* Sets the block's bounds for rendering it as an item
*/
public void setBlockBoundsForItemRender() {
this.setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, 0.125F, 1.0F);
}
public boolean onBlockActivated(World world, BlockPos blockpos, IBlockState var3, EntityPlayer entityplayer,
EnumFacing var5, float var6, float var7, float var8) {
if (!world.isRemote) {
TileEntity tileentity = world.getTileEntity(blockpos);
if (tileentity instanceof TileEntityBrewingStand) {
entityplayer.displayGUIChest((TileEntityBrewingStand) tileentity);
entityplayer.triggerAchievement(StatList.field_181729_M);
}
}
return true;
}
/**+
* Called by ItemBlocks after a block is set in the world, to
* allow post-place logic
*/
public void onBlockPlacedBy(World world, BlockPos blockpos, IBlockState var3, EntityLivingBase var4,
ItemStack itemstack) {
if (itemstack.hasDisplayName()) {
TileEntity tileentity = world.getTileEntity(blockpos);
if (tileentity instanceof TileEntityBrewingStand) {
((TileEntityBrewingStand) tileentity).setName(itemstack.getDisplayName());
}
}
}
public void randomDisplayTick(World world, BlockPos blockpos, IBlockState var3, EaglercraftRandom random) {
double d0 = (double) ((float) blockpos.getX() + 0.4F + random.nextFloat() * 0.2F);
double d1 = (double) ((float) blockpos.getY() + 0.7F + random.nextFloat() * 0.3F);
double d2 = (double) ((float) blockpos.getZ() + 0.4F + random.nextFloat() * 0.2F);
world.spawnParticle(EnumParticleTypes.SMOKE_NORMAL, d0, d1, d2, 0.0D, 0.0D, 0.0D, new int[0]);
}
public void breakBlock(World world, BlockPos blockpos, IBlockState iblockstate) {
TileEntity tileentity = world.getTileEntity(blockpos);
if (tileentity instanceof TileEntityBrewingStand) {
InventoryHelper.dropInventoryItems(world, blockpos, (TileEntityBrewingStand) tileentity);
}
super.breakBlock(world, blockpos, iblockstate);
}
/**+
* Get the Item that this Block should drop when harvested.
*/
public Item getItemDropped(IBlockState var1, EaglercraftRandom var2, int var3) {
return Items.brewing_stand;
}
public Item getItem(World var1, BlockPos var2) {
return Items.brewing_stand;
}
public boolean hasComparatorInputOverride() {
return true;
}
public int getComparatorInputOverride(World world, BlockPos blockpos) {
return Container.calcRedstone(world.getTileEntity(blockpos));
}
public EnumWorldBlockLayer getBlockLayer() {
return EnumWorldBlockLayer.CUTOUT;
}
/**+
* Convert the given metadata into a BlockState for this Block
*/
public IBlockState getStateFromMeta(int i) {
IBlockState iblockstate = this.getDefaultState();
for (int j = 0; j < 3; ++j) {
iblockstate = iblockstate.withProperty(HAS_BOTTLE[j], Boolean.valueOf((i & 1 << j) > 0));
}
return iblockstate;
}
/**+
* Convert the BlockState into the correct metadata value
*/
public int getMetaFromState(IBlockState iblockstate) {
int i = 0;
for (int j = 0; j < 3; ++j) {
if (((Boolean) iblockstate.getValue(HAS_BOTTLE[j])).booleanValue()) {
i |= 1 << j;
}
}
return i;
}
protected BlockState createBlockState() {
return new BlockState(this, new IProperty[] { HAS_BOTTLE[0], HAS_BOTTLE[1], HAS_BOTTLE[2] });
}
}