blob: e01dc4e0bcda0cf0221611f74d11b344256417be [file] [log] [blame] [raw]
package li.cil.oc.server.component
import li.cil.oc.api.network.{Component, Visibility, Message}
import li.cil.oc.common.component
import net.minecraft.nbt.NBTTagCompound
class GraphicsCard extends Component {
val supportedResolutions = List(List(40, 24), List(80, 24))
private var screen: Option[String] = None
override val name = "gpu"
override val visibility = Visibility.Neighbors
componentVisibility = visibility
// ----------------------------------------------------------------------- //
override def receive(message: Message) = super.receive(message).orElse {
message.data match {
case Array(address: Array[Byte]) if message.name == "gpu.bind" =>
network.fold(None: Option[Array[Any]])(network => {
network.node(new String(address, "UTF-8")) match {
case None => result(Unit, "invalid address")
case Some(node: component.Screen.Environment) =>
screen = node.address
result(true)
case _ => result(Unit, "not a screen")
}
})
case Array() if message.name == "system.disconnect" && message.source.address == screen => screen = None; None
case Array(w: Double, h: Double) if message.name == "gpu.resolution=" =>
if (supportedResolutions.contains((w.toInt, h.toInt)))
trySend("screen.resolution=", w.toInt, h.toInt)
else
result(Unit, "unsupported resolution")
case Array() if message.name == "gpu.resolution" => trySend("screen.resolution")
case Array() if message.name == "gpu.resolutions" => trySend("screen.resolutions") match {
case Some(Array(resolutions@_*)) =>
result(supportedResolutions.intersect(resolutions): _*)
case _ => None
}
case Array(x: Double, y: Double, value: Array[Byte]) if message.name == "gpu.set" =>
trySend("screen.set", x.toInt - 1, y.toInt - 1, new String(value, "UTF-8"))
case Array(x: Double, y: Double, w: Double, h: Double, value: Array[Byte]) if message.name == "gpu.fill" =>
val s = new String(value, "UTF-8")
if (s.length == 1)
trySend("screen.fill", x.toInt - 1, y.toInt - 1, w.toInt, h.toInt, s.charAt(0))
else
result(Unit, "invalid fill value")
case Array(x: Double, y: Double, w: Double, h: Double, tx: Double, ty: Double) if message.name == "gpu.copy" =>
trySend("screen.copy", x.toInt - 1, y.toInt - 1, w.toInt, h.toInt, tx.toInt, ty.toInt)
case _ => None
}
}
override protected def onDisconnect() = {
super.onDisconnect()
screen = None
}
override def readFromNBT(nbt: NBTTagCompound) = {
super.readFromNBT(nbt)
if (nbt.hasKey("screen"))
screen = Some(nbt.getString("screen"))
}
override def writeToNBT(nbt: NBTTagCompound) = {
super.writeToNBT(nbt)
if (screen.isDefined)
nbt.setString("screen", screen.get)
}
// ----------------------------------------------------------------------- //
private def trySend(name: String, data: Any*): Option[Array[Any]] =
screen match {
case None => result(Unit, "no screen")
case Some(screenAddress) => network.fold(None: Option[Array[Any]])(net => {
net.sendToAddress(this, screenAddress, name, data: _*)
})
}
}