package net.minecraft.block; import net.lax1dude.eaglercraft.v1_8.EaglercraftRandom; import net.minecraft.block.properties.PropertyBool; import net.minecraft.block.properties.PropertyInteger; import net.minecraft.block.state.BlockState; import net.minecraft.block.state.IBlockState; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.init.Blocks; import net.minecraft.init.Items; import net.minecraft.item.Item; import net.minecraft.util.BlockPos; import net.minecraft.util.EnumFacing; import net.minecraft.util.EnumParticleTypes; import net.minecraft.util.StatCollector; 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 are (c) 2022 LAX1DUDE. All Rights Reserved. * * WITH THE EXCEPTION OF PATCH FILES, MINIFIED JAVASCRIPT, AND ALL FILES * NORMALLY FOUND IN AN UNMODIFIED MINECRAFT RESOURCE PACK, YOU ARE NOT ALLOWED * TO SHARE, DISTRIBUTE, OR REPURPOSE ANY FILE USED BY OR PRODUCED BY THE * SOFTWARE IN THIS REPOSITORY WITHOUT PRIOR PERMISSION FROM THE PROJECT AUTHOR. * * NOT FOR COMMERCIAL OR MALICIOUS USE * * (please read the 'LICENSE' file this repo's root directory for more info) * */ public class BlockRedstoneRepeater extends BlockRedstoneDiode { public static final PropertyBool LOCKED = PropertyBool.create("locked"); public static final PropertyInteger DELAY = PropertyInteger.create("delay", 1, 4); protected BlockRedstoneRepeater(boolean powered) { super(powered); this.setDefaultState(this.blockState.getBaseState().withProperty(FACING, EnumFacing.NORTH) .withProperty(DELAY, Integer.valueOf(1)).withProperty(LOCKED, Boolean.valueOf(false))); } /**+ * Gets the localized name of this block. Used for the * statistics page. */ public String getLocalizedName() { return StatCollector.translateToLocal("item.diode.name"); } /**+ * 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 IBlockState getActualState(IBlockState iblockstate, IBlockAccess iblockaccess, BlockPos blockpos) { return iblockstate.withProperty(LOCKED, Boolean.valueOf(this.isLocked(iblockaccess, blockpos, iblockstate))); } public boolean onBlockActivated(World world, BlockPos blockpos, IBlockState iblockstate, EntityPlayer entityplayer, EnumFacing var5, float var6, float var7, float var8) { if (!entityplayer.capabilities.allowEdit) { return false; } else { world.setBlockState(blockpos, iblockstate.cycleProperty(DELAY), 3); return true; } } protected int getDelay(IBlockState iblockstate) { return iblockstate.getValue(DELAY).intValue() * 2; } protected IBlockState getPoweredState(IBlockState iblockstate) { Integer integer = iblockstate.getValue(DELAY); Boolean obool = iblockstate.getValue(LOCKED); EnumFacing enumfacing = iblockstate.getValue(FACING); return Blocks.powered_repeater.getDefaultState().withProperty(FACING, enumfacing).withProperty(DELAY, integer) .withProperty(LOCKED, obool); } protected IBlockState getUnpoweredState(IBlockState iblockstate) { Integer integer = iblockstate.getValue(DELAY); Boolean obool = iblockstate.getValue(LOCKED); EnumFacing enumfacing = iblockstate.getValue(FACING); return Blocks.unpowered_repeater.getDefaultState().withProperty(FACING, enumfacing).withProperty(DELAY, integer) .withProperty(LOCKED, obool); } /**+ * Get the Item that this Block should drop when harvested. */ public Item getItemDropped(IBlockState var1, EaglercraftRandom var2, int var3) { return Items.repeater; } public Item getItem(World var1, BlockPos var2) { return Items.repeater; } public boolean isLocked(IBlockAccess iblockaccess, BlockPos blockpos, IBlockState iblockstate) { return this.getPowerOnSides(iblockaccess, blockpos, iblockstate) > 0; } protected boolean canPowerSide(Block block) { return isRedstoneRepeaterBlockID(block); } public void randomDisplayTick(World world, BlockPos blockpos, IBlockState iblockstate, EaglercraftRandom random) { if (this.isRepeaterPowered) { EnumFacing enumfacing = iblockstate.getValue(FACING); double d0 = (double) ((float) blockpos.getX() + 0.5F) + (double) (random.nextFloat() - 0.5F) * 0.2D; double d1 = (double) ((float) blockpos.getY() + 0.4F) + (double) (random.nextFloat() - 0.5F) * 0.2D; double d2 = (double) ((float) blockpos.getZ() + 0.5F) + (double) (random.nextFloat() - 0.5F) * 0.2D; float f = -5.0F; if (random.nextBoolean()) { f = (float) (iblockstate.getValue(DELAY).intValue() * 2 - 1); } f = f / 16.0F; double d3 = f * (float) enumfacing.getFrontOffsetX(); double d4 = f * (float) enumfacing.getFrontOffsetZ(); world.spawnParticle(EnumParticleTypes.REDSTONE, d0 + d3, d1, d2 + d4, 0.0D, 0.0D, 0.0D); } } public void breakBlock(World world, BlockPos blockpos, IBlockState iblockstate) { super.breakBlock(world, blockpos, iblockstate); this.notifyNeighbors(world, blockpos, iblockstate); } /**+ * Convert the given metadata into a BlockState for this Block */ public IBlockState getStateFromMeta(int i) { return this.getDefaultState().withProperty(FACING, EnumFacing.getHorizontal(i)) .withProperty(LOCKED, Boolean.valueOf(false)).withProperty(DELAY, Integer.valueOf(1 + (i >> 2))); } /**+ * Convert the BlockState into the correct metadata value */ public int getMetaFromState(IBlockState iblockstate) { int i = 0; i = i | iblockstate.getValue(FACING).getHorizontalIndex(); i = i | iblockstate.getValue(DELAY).intValue() - 1 << 2; return i; } protected BlockState createBlockState() { return new BlockState(this, FACING, DELAY, LOCKED); } }