| package li.cil.oc.common.tileentity |
| import li.cil.oc.Settings |
| import li.cil.oc.api.network.Visibility |
| import li.cil.oc.server.component |
| import li.cil.oc.util.ExtendedNBT._ |
| import li.cil.oc.util.mods.BundledRedstone |
| import net.minecraft.nbt.NBTTagCompound |
| import net.minecraftforge.common.ForgeDirection |
| class Redstone extends Environment with BundledRedstoneAware { |
| val instance = if (BundledRedstone.isAvailable) new component.BundledRedstone(this) else new component.Redstone(this) |
| node.setVisibility(Visibility.Network) |
| override def updateEntity() { |
| override def readFromNBT(nbt: NBTTagCompound) { |
| instance.load(nbt.getCompoundTag(Settings.namespace + "redstone")) |
| override def writeToNBT(nbt: NBTTagCompound) { |
| nbt.setNewCompoundTag(Settings.namespace + "redstone", instance.save) |
| override protected def onRedstoneInputChanged(side: ForgeDirection) { |
| super.onRedstoneInputChanged(side) |
| node.sendToReachable("computer.signal", "redstone_changed", Int.box(side.ordinal())) |