blob: afb3a00b5a6c4f2de47091e4c5af79305d700a6e [file] [log] [blame] [raw]
package li.cil.oc.server.driver.item
import li.cil.oc.Items
import li.cil.oc.api.driver.Slot
import li.cil.oc.common.tileentity.{BundledRedstoneAware, RedstoneAware}
import li.cil.oc.server.component
import li.cil.oc.util.mods.BundledRedstone
import net.minecraft.item.ItemStack
import net.minecraft.tileentity.{TileEntity => MCTileEntity}
object RedstoneCard extends Item {
override def worksWith(stack: ItemStack) = isOneOf(stack, Items.rs)
override def createEnvironment(stack: ItemStack, container: MCTileEntity) =
container match {
case redstone: BundledRedstoneAware if BundledRedstone.isAvailable => new component.BundledRedstone(redstone)
case redstone: RedstoneAware => new component.Redstone(redstone)
case _ => null
}
override def slot(stack: ItemStack) = Slot.Card
}