| package li.cil.oc.common.tileentity |
| |
| import cpw.mods.fml.relauncher.{SideOnly, Side} |
| import li.cil.oc.api.network.{Analyzable, Node, Visibility} |
| import li.cil.oc.server.{PacketSender => ServerPacketSender} |
| import li.cil.oc.{Settings, api} |
| import net.minecraft.entity.player.EntityPlayer |
| import net.minecraft.nbt.NBTTagCompound |
| import net.minecraft.util.ChatMessageComponent |
| import net.minecraftforge.common.ForgeDirection |
| |
| class Charger extends traits.Environment with traits.RedstoneAware with traits.Rotatable with Analyzable { |
| val node = api.Network.newNode(this, Visibility.None). |
| withConnector(). |
| create() |
| |
| val robots = Array.fill(6)(None: Option[RobotProxy]) |
| |
| var chargeSpeed = 0.0 |
| |
| var invertSignal = false |
| |
| // ----------------------------------------------------------------------- // |
| |
| def onAnalyze(player: EntityPlayer, side: Int, hitX: Float, hitY: Float, hitZ: Float) = { |
| player.sendChatToPlayer(ChatMessageComponent.createFromTranslationWithSubstitutions( |
| Settings.namespace + "gui.Analyzer.ChargerSpeed", |
| (chargeSpeed * 100).toInt + "%")) |
| null |
| } |
| |
| // ----------------------------------------------------------------------- // |
| |
| override def canUpdate = true |
| |
| override def updateEntity() { |
| super.updateEntity() |
| if (isServer) { |
| val charge = Settings.get.chargeRate * chargeSpeed |
| robots.collect { |
| case Some(proxy) => node.changeBuffer(proxy.robot.bot.node.changeBuffer(charge + node.changeBuffer(-charge))) |
| } |
| } |
| else if (chargeSpeed > 0 && world.getWorldInfo.getWorldTotalTime % 10 == 0) { |
| ForgeDirection.VALID_DIRECTIONS.map(side => world.getBlockTileEntity(x + side.offsetX, y + side.offsetY, z + side.offsetZ)).collect { |
| case proxy: RobotProxy if proxy.globalBuffer / proxy.globalBufferSize < 0.95 => |
| val theta = world.rand.nextDouble * Math.PI |
| val phi = world.rand.nextDouble * Math.PI * 2 |
| val dx = 0.45 * Math.sin(theta) * Math.cos(phi) |
| val dy = 0.45 * Math.sin(theta) * Math.sin(phi) |
| val dz = 0.45 * Math.cos(theta) |
| world.spawnParticle("happyVillager", proxy.x + 0.5 + dx, proxy.y + 0.5 + dz, proxy.z + 0.5 + dy, 0, 0, 0) |
| } |
| } |
| } |
| |
| override def onConnect(node: Node) { |
| super.onConnect(node) |
| if (node == this.node) { |
| onNeighborChanged() |
| } |
| } |
| |
| // ----------------------------------------------------------------------- // |
| |
| override def readFromNBT(nbt: NBTTagCompound) { |
| super.readFromNBT(nbt) |
| chargeSpeed = nbt.getDouble("chargeSpeed") max 0 min 1 |
| invertSignal = nbt.getBoolean("invertSignal") |
| } |
| |
| override def writeToNBT(nbt: NBTTagCompound) { |
| super.writeToNBT(nbt) |
| nbt.setDouble("chargeSpeed", chargeSpeed) |
| nbt.setBoolean("invertSignal", invertSignal) |
| } |
| |
| @SideOnly(Side.CLIENT) |
| override def readFromNBTForClient(nbt: NBTTagCompound) { |
| super.readFromNBTForClient(nbt) |
| chargeSpeed = nbt.getDouble("chargeSpeed") |
| } |
| |
| override def writeToNBTForClient(nbt: NBTTagCompound) { |
| super.writeToNBTForClient(nbt) |
| nbt.setDouble("chargeSpeed", chargeSpeed) |
| } |
| |
| // ----------------------------------------------------------------------- // |
| |
| override protected def updateRedstoneInput(side: ForgeDirection) { |
| super.updateRedstoneInput(side) |
| val signal = math.max(0, math.min(15, ForgeDirection.VALID_DIRECTIONS.map(input).max)) |
| |
| if (invertSignal) chargeSpeed = (15 - signal) / 15.0 |
| else chargeSpeed = signal / 15.0 |
| if (isServer) { |
| ServerPacketSender.sendChargerState(this) |
| } |
| } |
| |
| def onNeighborChanged() { |
| checkRedstoneInputChanged() |
| ForgeDirection.VALID_DIRECTIONS.map(side => (side.ordinal(), world.getBlockTileEntity(x + side.offsetX, y + side.offsetY, z + side.offsetZ))).collect { |
| case (side, proxy: RobotProxy) => robots(side) = Some(proxy) |
| case (side, _) => robots(side) = None |
| } |
| } |
| } |