blob: e5acb21b1db036a8beba21ed9104bc212e00968d [file] [log] [blame] [raw]
package li.cil.oc.server.component
import li.cil.oc.Settings
import li.cil.oc.api.Network
import li.cil.oc.api.network.{Callback, Context, Arguments, Visibility}
import net.minecraft.tileentity.TileEntityCommandBlock
class CommandBlock(entity: TileEntityCommandBlock) extends ManagedComponent {
val node = Network.newNode(this, Visibility.Network).
withComponent("command_block").
create()
// ----------------------------------------------------------------------- //
@Callback
def getValue(context: Context, args: Arguments): Array[AnyRef] = result(entity.getCommand)
@Callback
def setValue(context: Context, args: Arguments): Array[AnyRef] = {
val value = args.checkString(0)
entity.setCommand(value)
entity.worldObj.markBlockForUpdate(entity.xCoord, entity.yCoord, entity.zCoord)
result(true)
}
@Callback
def run(context: Context, args: Arguments): Array[AnyRef] = {
val name = if (Settings.get.commandUser != null && !Settings.get.commandUser.isEmpty)
Settings.get.commandUser
else
context.address
entity.setCommandSenderName(name)
context.pause(0.1) // Make sure the command block has time to do its thing.
result(entity.executeCommandOnPowered(entity.worldObj))
}
}