blob: 922fa866b49f3101538a50919dd46ecf348f1664 [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.{LuaCallback, 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()
// ----------------------------------------------------------------------- //
@LuaCallback
def getValue(context: Context, args: Arguments): Array[AnyRef] = result(entity.getCommand)
@LuaCallback
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)
}
@LuaCallback
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))
}
}