| package li.cil.oc.common.block |
| |
| import li.cil.oc.common.tileentity |
| import net.minecraft.block.Block |
| import net.minecraft.world.{World, IBlockAccess} |
| import net.minecraftforge.common.util.ForgeDirection |
| |
| abstract class RedstoneAware extends Delegate { |
| override def hasTileEntity = true |
| |
| override def canConnectToRedstone(world: IBlockAccess, x: Int, y: Int, z: Int, side: ForgeDirection) = |
| world.getTileEntity(x, y, z) match { |
| case redstone: tileentity.RedstoneAware => redstone.isOutputEnabled |
| case _ => false |
| } |
| |
| override def isProvidingStrongPower(world: IBlockAccess, x: Int, y: Int, z: Int, side: ForgeDirection) = |
| isProvidingWeakPower(world, x, y, z, side) |
| |
| override def isProvidingWeakPower(world: IBlockAccess, x: Int, y: Int, z: Int, side: ForgeDirection) = |
| world.getTileEntity(x, y, z) match { |
| case redstone: tileentity.RedstoneAware => math.min(math.max(redstone.output(side), 0), 15) |
| case _ => super.isProvidingWeakPower(world, x, y, z, side) |
| } |
| |
| override def neighborBlockChanged(world: World, x: Int, y: Int, z: Int, block: Block) = |
| world.getTileEntity(x, y, z) match { |
| case redstone: tileentity.RedstoneAware => redstone.checkRedstoneInputChanged() |
| case _ => // Ignore. |
| } |
| } |