class HeadlessWorkspace extends AbstractWorkspaceScala with Controllable with WorldLoaderInterface with ViewSettings

The primary class for headless (no GUI) operation of NetLogo.

You may create more than one HeadlessWorkspace object. Multiple instances can operate separately and independently. (Behind the scenes, this is supported by creating a separate thread for each instance.)

When you are done using a HeadlessWorkspace, you should call its dispose() method. This will shut down the thread associated with the workspace and allow resources to be freed.

See the "Controlling" section of the NetLogo User Manual for example code.

Don't try to use the constructor yourself; use HeadlessWorkspace.newInstance instead.

Source
HeadlessWorkspace.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HeadlessWorkspace
  2. WorldLoaderInterface
  3. Controllable
  4. AbstractWorkspaceScala
  5. Exporting
  6. Plotting
  7. ExtendableWorkspaceMethods
  8. HubNetManager
  9. Components
  10. Traceable
  11. BehaviorSpaceInformation
  12. Compiling
  13. Procedures
  14. ModelTracker
  15. Evaluating
  16. Checksums
  17. Benchmarking
  18. APIConformant
  19. AbstractWorkspace
  20. HubNetWorkspaceInterface
  21. CompilerServices
  22. LogoThunkFactory
  23. LoggingWorkspace
  24. ExtendableWorkspace
  25. EditorWorkspace
  26. Workspace
  27. JobManagerOwner
  28. Workspace
  29. Controllable
  30. ViewSettings
  31. RandomServices
  32. LiteralParser
  33. ImporterUser
  34. WorldResizer
  35. AnyRef
  36. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HeadlessWorkspace(_world: World with CompilationManagement, compiler: PresentationCompilerInterface, renderer: RendererInterface, aggregateManager: AggregateManagerInterface, hubNetManagerFactory: HubNetManagerFactory)

Type Members

  1. abstract class FileImporter extends AnyRef
    Attributes
    protected[org.nlogo.workspace]
    Definition Classes
    AbstractWorkspace

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val _behaviorSpaceExperimentName: String
    Definition Classes
    BehaviorSpaceInformation
  5. val _behaviorSpaceRunNumber: Int
    Definition Classes
    BehaviorSpaceInformation
  6. val _modelFileName: String

    name of the currently loaded model.

    name of the currently loaded model. Will be null if this is a new (unsaved) model. To get a version for display to the user, see modelNameForDisplay(). This is NOT a full path name, however, it does end in ".nlogo".

    Definition Classes
    ModelTracker
  7. def addComponent[A <: AnyRef](componentClass: Class[A], component: A): Unit
    Definition Classes
    Components
  8. def addCustomShapes(filename: String): Unit
    Definition Classes
    Workspace
    Annotations
    @throws( classOf[IOException] )
  9. def addJobFromJobThread(job: Job): Unit
    Definition Classes
    AbstractWorkspaceWorkspace
  10. def addLifecycle[A <: AnyRef](lifecycle: ComponentLifecycle[A]): Unit
    Definition Classes
    Components
  11. val aggregateManager: AggregateManagerInterface
    Definition Classes
    HeadlessWorkspaceAbstractWorkspace
  12. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  13. def attachModelDir(filePath: String): String

    attaches the current model directory to a relative path, if necessary.

    attaches the current model directory to a relative path, if necessary. If filePath is an absolute path, this method simply returns it. If it's a relative path, then the current model directory is prepended to it. If this is a new model, the user's platform-dependent home directory is prepended instead.

    Definition Classes
    ExtendableWorkspaceMethods
    Annotations
    @throws( ... )
  14. def auxRNG(): MersenneTwisterFast
    Definition Classes
    AbstractWorkspaceRandomServices
  15. def beep(): Unit
    Definition Classes
    Workspace
  16. def behaviorSpaceExperimentName(name: String): Unit
    Definition Classes
    BehaviorSpaceInformation
  17. def behaviorSpaceExperimentName: String
    Definition Classes
    BehaviorSpaceInformation
  18. def behaviorSpaceRunNumber(n: Int): Unit
    Definition Classes
    BehaviorSpaceInformation
  19. def behaviorSpaceRunNumber: Int
    Definition Classes
    BehaviorSpaceInformation
  20. def benchmark(minTime: Int, maxTime: Int): Unit
    Definition Classes
    Benchmarking
  21. def breathe(): Unit

    Internal use only.

    Internal use only.

    Definition Classes
    HeadlessWorkspaceAbstractWorkspace
  22. def breathe(context: Context): Unit
    Definition Classes
    AbstractWorkspaceWorkspace
  23. def calculateHeight(worldHeight: Int, patchSize: Double): Int
  24. def calculateWidth(worldWidth: Int, patchSize: Double): Int
  25. def changeTopology(wrapX: Boolean, wrapY: Boolean): Unit
  26. def checkCommandSyntax(source: String): Unit
    Definition Classes
    Compiling
    Annotations
    @throws( classOf[CompilerException] )
  27. def checkReporterSyntax(source: String): Unit
    Definition Classes
    Compiling
    Annotations
    @throws( classOf[CompilerException] )
  28. def clearAll(): Unit
  29. def clearDrawing(): Unit
    Definition Classes
    HeadlessWorkspaceAbstractWorkspaceWorkspace
  30. def clearLastLogoException(): Unit
    Definition Classes
    Evaluating
  31. def clearOutput(): Unit

    Internal use only.

    Internal use only.

    Definition Classes
    HeadlessWorkspaceWorkspace
  32. def clearTicks(): Unit
    Definition Classes
    AbstractWorkspaceScalaWorkspace
  33. def clearTurtles(): Unit
  34. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  35. def command(source: String): Unit

    Runs NetLogo commands and waits for them to complete.

    Runs NetLogo commands and waits for them to complete.

    source

    The command or commands to run

    Definition Classes
    Evaluating
    Annotations
    @throws( classOf[CompilerException] ) @throws( classOf[LogoException] )
    Exceptions thrown

    org.nlogo.api.LogoException if the code fails to run

    org.nlogo.core.CompilerException if the code fails to compile

  36. def compileCommands(source: String, agentClass: AgentKind): Procedure
    Definition Classes
    Evaluating
    Annotations
    @throws( classOf[CompilerException] )
  37. def compileCommands(source: String): Procedure
    Definition Classes
    Evaluating
    Annotations
    @throws( classOf[CompilerException] )
  38. def compileForRun(source: String, context: Context, reporter: Boolean): Procedure
    Definition Classes
    AbstractWorkspaceWorkspace
  39. def compileReporter(source: String): Procedure
    Definition Classes
    Evaluating
    Annotations
    @throws( classOf[CompilerException] )
  40. val compiler: PresentationCompilerInterface
  41. var compilerTestingMode: Boolean

    Internal use only.

    Internal use only.

    Definition Classes
    HeadlessWorkspaceAbstractWorkspaceScalaExtendableWorkspaceWorkspace
  42. val completedActivations: WeakHashMap[Activation, Boolean]
    Definition Classes
    APIConformant
  43. def computePatchSize(width: Int, numPatches: Int): Double
  44. def convertToNormal(): String

    instantly converts the current model to ModelTypeJ.NORMAL.

    instantly converts the current model to ModelTypeJ.NORMAL. This is used by the edit command to enable quick saving of library models. It shouldn't be used anywhere else.

    Definition Classes
    ModelTracker
    Annotations
    @throws( classOf[IOException] )
  45. def currentPlot(plot: String): Unit
    Definition Classes
    Plotting
  46. val defaultOwner: SimpleJobOwner
    Definition Classes
    Evaluating
  47. def deleteLogFiles(): Nothing

    Internal use only.

    Internal use only.

    Definition Classes
    HeadlessWorkspaceLoggingWorkspace
  48. def dialect: Dialect
    Definition Classes
    Compiling
  49. def dispose(): Unit

    Shuts down the background thread associated with this workspace, allowing resources to be freed.

    Shuts down the background thread associated with this workspace, allowing resources to be freed.

    Definition Classes
    ComponentsAbstractWorkspaceWorkspace
    Annotations
    @throws( classOf[InterruptedException] )
  50. def doImport(importer: FileImporter): Unit
    Attributes
    protected[org.nlogo.workspace]
    Definition Classes
    AbstractWorkspace
  51. def doImport(importer: BufferedReaderImporter): Unit
    Definition Classes
    AbstractWorkspace
  52. def drawSpotlight: Boolean
    Definition Classes
    HeadlessWorkspaceAPIConformantViewSettings
  53. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  54. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  55. def evaluateCommands(owner: JobOwner, source: String, agents: AgentSet, waitForCompletion: Boolean): Unit
    Definition Classes
    Evaluating
    Annotations
    @throws( classOf[CompilerException] )
  56. def evaluateCommands(owner: JobOwner, source: String, agent: Agent, waitForCompletion: Boolean): Unit
    Definition Classes
    Evaluating
    Annotations
    @throws( classOf[CompilerException] )
  57. def evaluateCommands(owner: JobOwner, source: String, waitForCompletion: Boolean): Unit
    Definition Classes
    Evaluating
    Annotations
    @throws( classOf[CompilerException] )
  58. def evaluateCommands(owner: JobOwner, source: String): Unit
    Definition Classes
    Evaluating
    Annotations
    @throws( classOf[CompilerException] )
  59. def evaluateReporter(owner: JobOwner, source: String, agents: AgentSet): AnyRef
    Definition Classes
    Evaluating
    Annotations
    @throws( classOf[CompilerException] )
  60. def evaluateReporter(owner: JobOwner, source: String, agent: Agent): AnyRef
    Definition Classes
    Evaluating
    Annotations
    @throws( classOf[CompilerException] )
  61. def evaluateReporter(owner: JobOwner, source: String): AnyRef
    Definition Classes
    Evaluating
    Annotations
    @throws( classOf[CompilerException] )
  62. def exportAllPlots(filename: String): Unit
    Definition Classes
    Exporting
    Annotations
    @throws( classOf[IOException] )
  63. def exportDrawing(filename: String, format: String): Unit
    Definition Classes
    HeadlessWorkspaceWorkspace
  64. def exportDrawingToCSV(writer: PrintWriter): Unit
    Definition Classes
    HeadlessWorkspaceExporting
  65. def exportInterface(filename: String): Nothing

    Not implemented.

    Not implemented.

    Definition Classes
    HeadlessWorkspaceWorkspace
  66. def exportInterfaceGlobals(writer: PrintWriter): Unit
    Definition Classes
    Exporting
  67. def exportOutput(filename: String): Unit
    Definition Classes
    HeadlessWorkspaceWorkspace
  68. def exportOutputAreaToCSV(writer: PrintWriter): Unit
    Definition Classes
    HeadlessWorkspaceExporting
  69. def exportPlot(plotName: String, filename: String): Unit
    Definition Classes
    Exporting
    Annotations
    @throws( classOf[IOException] )
  70. def exportPlotsToCSV(writer: PrintWriter): Unit
    Definition Classes
    Exporting
  71. def exportView(filename: String, format: String): Unit
    Definition Classes
    HeadlessWorkspaceWorkspace
  72. def exportView: BufferedImage

    Get a snapshot of the 2D view.

    Get a snapshot of the 2D view.

    Definition Classes
    HeadlessWorkspaceWorkspace
  73. def exportWorld(writer: PrintWriter): Unit
    Definition Classes
    Exporting
  74. def exportWorld(filename: String): Unit
    Definition Classes
    Exporting
    Annotations
    @throws( classOf[IOException] )
  75. val fileManager: FileManager
    Definition Classes
    ModelTracker
  76. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  77. def findProcedurePositions(source: String): Map[String, ProcedureSyntax]
    Definition Classes
    Compiling
  78. def fontSize(i: Int): Unit
    Definition Classes
    APIConformant
  79. def fontSize: Int
    Definition Classes
    APIConformant
  80. def forceSaveAs: Boolean

    whether the user needs to enter a new filename to save this model.

    whether the user needs to enter a new filename to save this model. We need to do a "save as" if the model is new, from the models library, or converted.

    Basically, only normal models can get silently saved.

    Definition Classes
    ModelTracker
  81. def frameRate(frameRate: Double): Unit
  82. def frameRate: Double
  83. def getAndCreateDrawing(): BufferedImage
    Definition Classes
    HeadlessWorkspaceWorkspace
  84. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  85. def getCompilationEnvironment: CompilationEnvironment
    Definition Classes
    AbstractWorkspaceScalaWorkspace
  86. def getComponent[A <: AnyRef](componentClass: Class[A]): Option[A]
    Definition Classes
    ComponentsWorkspace
  87. def getExtensionManager(): ExtensionManager
    Definition Classes
    AbstractWorkspaceWorkspace
  88. def getGraphics(image: BufferedImage): Unit

    Get a snapshot of the 2D view, using an existing BufferedImage object.

  89. def getHubNetManager: Option[HubNetInterface]
    Definition Classes
    HubNetManager
  90. def getMinimumWidth: Int
  91. def getModelDir: String

    returns the full path to the directory from which the current model was loaded.

    returns the full path to the directory from which the current model was loaded. May be null if, for example, this is a new model.

    Definition Classes
    ModelTracker
  92. def getModelFileName: String

    returns the name of the file from which the current model was loaded.

    returns the name of the file from which the current model was loaded. May be null if, for example, this is a new model.

    Definition Classes
    ModelTracker
  93. def getModelFileUri: Option[URI]
    Definition Classes
    ModelTracker
  94. def getModelPath: String

    returns the full pathname of the currently loaded model, if any.

    returns the full pathname of the currently loaded model, if any. This may return null in some cases, for instance if this is a new model.

    Definition Classes
    ModelTracker
  95. def getModelType: ModelType
    Definition Classes
    ModelTracker
  96. def getPlot(plot: String): PlotInterface
    Definition Classes
    Plotting
  97. def getPropertiesInterface(): WorldPropertiesInterface
  98. def getSource(filename: String): String
    Definition Classes
    AbstractWorkspaceScala
    Annotations
    @throws( classOf[IOException] )
  99. def getTokenAtPosition(s: String, pos: Int): Token
    Definition Classes
    Compiling
  100. def graphicsChecksum: String
    Definition Classes
    Checksums
  101. def guessExportName(defaultName: String): String
    Definition Classes
    AbstractWorkspace
  102. def halt(): Unit

    Halts all running NetLogo code in this workspace.

    Halts all running NetLogo code in this workspace.

    Definition Classes
    HeadlessWorkspaceAbstractWorkspace
  103. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  104. def hubNetManager: Option[HubNetInterface]
    Definition Classes
    HubNetManager
  105. val hubNetManagerFactory: HubNetManagerFactory
    Definition Classes
    AbstractWorkspaceScalaHubNetManager
  106. def hubNetRunning: Boolean
    Definition Classes
    HubNetManager
  107. def hubNetRunning_=(running: Boolean): Unit
  108. def importDrawing(file: File): Unit
    Definition Classes
    HeadlessWorkspaceAbstractWorkspace
  109. def importDrawing(filename: String): Unit
    Definition Classes
    AbstractWorkspaceWorkspace
  110. def importExtensionData(name: String, data: List[Array[String]], handler: ImportErrorHandler): Unit
    Definition Classes
    AbstractWorkspaceImporterUser
  111. def importWorld(reader: Reader): Unit
    Definition Classes
    AbstractWorkspaceWorkspace
  112. def importWorld(filename: String): Unit
    Definition Classes
    AbstractWorkspaceWorkspace
  113. var importerErrorHandler: ErrorHandler
    Definition Classes
    HeadlessWorkspaceAbstractWorkspace
  114. def init(): Unit
    Definition Classes
    Procedures
  115. def initForTesting(d: WorldDimensions): Unit

    Internal use only.

  116. def initForTesting(d: WorldDimensions, source: String): Unit

    Internal use only.

  117. def initForTesting(minPxcor: Int, maxPxcor: Int, minPycor: Int, maxPycor: Int, source: String): Unit

    Internal use only.

  118. def initForTesting(worldSize: Int, modelString: String): Unit

    Internal use only.

  119. def initForTesting(worldSize: Int): Unit

    Internal use only.

  120. def insetWidth(): Int
  121. def inspectAgent(agentClass: AgentKind, agent: Agent, radius: Double): Unit
    Definition Classes
    HeadlessWorkspaceWorkspace
  122. def inspectAgent(agent: Agent, radius: Double): Unit
    Definition Classes
    HeadlessWorkspaceWorkspace
  123. def isConstant(s: String): Boolean
    Definition Classes
    Compiling
  124. def isExtensionName(name: String): Boolean
    Definition Classes
    AbstractWorkspaceImporterUser
  125. def isHeadless: Boolean

    Internal use only.

    Internal use only.

    Definition Classes
    HeadlessWorkspaceAbstractWorkspaceScalaViewSettings
  126. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  127. def isReporter(s: String): Boolean
    Definition Classes
    Compiling
  128. def isValidIdentifier(s: String): Boolean
    Definition Classes
    Compiling
  129. def joinForeverButtons(agent: Agent): Unit
    Definition Classes
    AbstractWorkspaceWorkspace
  130. var lastErrorReport: ErrorReport

    Internal use only.

  131. val lastLogoException: LogoException
    Definition Classes
    Evaluating
  132. val lastRunTimes: WeakHashMap[Job, WeakHashMap[Agent, WeakHashMap[Command, MutableLong]]]
  133. def loadFromModel(model: Model): Unit
    Attributes
    protected
    Definition Classes
    AbstractWorkspaceScala
  134. def loadWorld(view: View, worldInterface: WorldLoaderInterface): Unit
    Definition Classes
    AbstractWorkspaceScala
  135. def logCustomGlobals(nameValuePairs: Seq[(String, String)]): Unit
  136. def logCustomMessage(msg: String): Unit
  137. def magicOpen(name: String): Nothing

    Internal use only.

    Internal use only.

    Definition Classes
    HeadlessWorkspaceAbstractWorkspaceEditorWorkspace
  138. def mainRNG(): MersenneTwisterFast
    Definition Classes
    AbstractWorkspaceRandomServices
  139. def makeCommandThunk(source: String, jobOwnerName: String, rng: MersenneTwisterFast): CommandLogoThunk
    Definition Classes
    Evaluating
    Annotations
    @throws( classOf[CompilerException] )
  140. def makeCommandThunk(source: String, jobOwnerName: String): CommandLogoThunk
    Definition Classes
    Evaluating
    Annotations
    @throws( classOf[CompilerException] )
  141. def makeReporterThunk(source: String, jobOwnerName: String): ReporterLogoThunk
    Definition Classes
    Evaluating
    Annotations
    @throws( classOf[CompilerException] )
  142. def modelFileName: String
    Definition Classes
    ModelTracker
  143. def modelNameForDisplay: String
    Definition Classes
    ModelTracker
  144. def modelOpened: Boolean

    Has a model been opened in this workspace?

  145. def mouseDown: Boolean
    Definition Classes
    Workspace
  146. def mouseInside: Boolean
    Definition Classes
    Workspace
  147. def mouseXCor: Double
    Definition Classes
    Workspace
  148. def mouseYCor: Double
    Definition Classes
    Workspace
  149. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  150. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  151. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  152. def open(path: String): Unit

    Opens a model stored in a file.

    Opens a model stored in a file.

    path

    the path (absolute or relative) of the NetLogo model to open.

    Definition Classes
    HeadlessWorkspaceControllableAbstractWorkspaceWorkspaceControllable
    Annotations
    @throws( classOf[java.io.IOException] ) @throws( classOf[CompilerException] ) @throws( classOf[LogoException] )
  153. def openFromSource(source: String, extension: String): Unit

    Opens a model stored in a string.

    Opens a model stored in a string. Can only be called once per instance of HeadlessWorkspace

    source

    The complete model, including widgets and so forth, in the same format as it would be stored in a file.

  154. def openModel(model: Model): Unit
    Definition Classes
    HeadlessWorkspaceWorkspace
  155. def openString(modelContents: String): Unit

    Opens a model stored in a string

    Opens a model stored in a string

    Definition Classes
    HeadlessWorkspaceAbstractWorkspace
  156. val outputAreaBuffer: StringBuilder
  157. def outputObject(obj: AnyRef, owner: AnyRef, addNewline: Boolean, readable: Boolean, destination: OutputDestination): Unit
    Definition Classes
    APIConformant
  158. def ownerFinished(owner: JobOwner): Unit

    Internal use only.

    Internal use only.

    Definition Classes
    HeadlessWorkspaceJobManagerOwner
  159. def patchSize: Double
    Definition Classes
    HeadlessWorkspaceWorkspaceViewSettings
  160. def patchSize(patchSize: Double): Unit
  161. def periodicUpdate(): Unit

    Internal use only.

    Internal use only.

    Definition Classes
    HeadlessWorkspaceJobManagerOwner
  162. def perspective: Perspective
    Definition Classes
    HeadlessWorkspaceAPIConformantViewSettings
  163. val plotManager: PlotManager
    Definition Classes
    Plotting
  164. val plotRNG: MersenneTwisterFast
    Definition Classes
    Plotting
  165. var previewCommands: PreviewCommands
    Definition Classes
    AbstractWorkspaceScalaWorkspace
  166. def previewCommandsString: String
    Definition Classes
    APIConformant
  167. def procedures: ProceduresMap
    Definition Classes
    Procedures
  168. def procedures_=(procs: ProceduresMap): Unit
    Definition Classes
    Procedures
  169. def profilingEnabled: Boolean
    Definition Classes
    Traceable
  170. def profilingTracer: Tracer
    Definition Classes
    Traceable
  171. def readFromString(string: String): AnyRef
    Definition Classes
    Evaluating
    Annotations
    @throws( classOf[CompilerException] )
  172. def readNumberFromString(source: String): Double
    Definition Classes
    Compiling
    Annotations
    @throws( classOf[CompilerException] )
  173. def renderPerspective: Boolean
    Definition Classes
    HeadlessWorkspaceAPIConformantViewSettings
  174. val renderer: RendererInterface
    Definition Classes
    HeadlessWorkspaceWorkspace
  175. def report(source: String): AnyRef

    Runs a NetLogo reporter.

    Runs a NetLogo reporter.

    source

    The reporter to run

    returns

    the result reported; may be of type java.lang.Integer, java.lang.Double, java.lang.Boolean, java.lang.String, org.nlogo.core.LogoList, org.nlogo.api.Agent, AgentSet, or Nobody

    Definition Classes
    Evaluating
    Annotations
    @throws( classOf[CompilerException] ) @throws( classOf[LogoException] )
    Exceptions thrown

    org.nlogo.api.LogoException if the code fails to run

    org.nlogo.core.CompilerException if the code fails to compile

  176. def requestDisplayUpdate(force: Boolean): Unit

    Internal use only.

    Internal use only.

    Definition Classes
    HeadlessWorkspaceAbstractWorkspaceWorkspace
  177. def resetTicks(context: Context): Unit
    Definition Classes
    AbstractWorkspaceScalaWorkspace
  178. def resizeView(): Unit
    Definition Classes
    HeadlessWorkspaceWorldResizer
  179. def runCompiledCommands(owner: JobOwner, procedure: Procedure): Boolean
    Definition Classes
    Evaluating
  180. def runCompiledReporter(owner: JobOwner, procedure: Procedure): AnyRef
    Definition Classes
    Evaluating
  181. def runtimeError(owner: JobOwner, context: Context, instruction: Instruction, ex: Exception): Unit

    Internal use only.

    Internal use only.

    Definition Classes
    HeadlessWorkspaceJobManagerOwner
  182. def seedRNGs(seed: Int): Unit
    Definition Classes
    AbstractWorkspaceScalaRandomServices
  183. def sendOutput(oo: OutputObject, toOutputArea: Boolean): Unit

    Internal use only.

    Internal use only. Called from job thread.

    Definition Classes
    HeadlessWorkspaceAbstractWorkspace
  184. def setDimensions(d: WorldDimensions, patchSize: Double): Unit
  185. def setDimensions(d: WorldDimensions): Unit

    Kills all turtles, clears all patch variables, and makes a new patch grid.

    Kills all turtles, clears all patch variables, and makes a new patch grid.

    Definition Classes
    HeadlessWorkspaceWorldResizer
  186. def setModelPath(modelPath: String): Unit
    Definition Classes
    ModelTracker
  187. def setModelType(tpe: ModelType): Unit
    Definition Classes
    ModelTracker
  188. def setOpenModel(model: Model): Unit
  189. def setOutputAreaContents(text: String): Unit
    Definition Classes
    AbstractWorkspaceImporterUser
  190. def setProcedures(procs: ProceduresMap): Unit
    Definition Classes
    Procedures
  191. def setProfilingTracer(t: Tracer): Unit
    Definition Classes
    Traceable
  192. def setSize(x: Int, y: Int): Unit
  193. def setupPlots(c: Context): Unit
    Definition Classes
    Plotting
  194. def showTickCounter(showTickCounter: Boolean): Unit
  195. def showTickCounter: Boolean
  196. var silent: Boolean

    If true, don't send anything to standard output.

  197. def startLogging(properties: String): Nothing

    Internal use only.

    Internal use only.

    Definition Classes
    HeadlessWorkspaceLoggingWorkspace
  198. def stopInspectingAgent(agent: Agent): Unit
    Definition Classes
    HeadlessWorkspaceWorkspace
  199. def stopInspectingDeadAgents(): Unit
    Definition Classes
    HeadlessWorkspaceWorkspace
  200. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  201. def tick(context: Context, originalInstruction: Instruction): Unit
    Definition Classes
    AbstractWorkspaceScalaWorkspace
  202. def tickCounterLabel(s: String): Unit
  203. def tickCounterLabel: String
  204. def toString(): String
    Definition Classes
    AnyRef → Any
  205. def tokenizeForColorization(s: String): Array[Token]
    Definition Classes
    Compiling
  206. def tokenizeForColorizationIterator(s: String): Iterator[Token]
    Definition Classes
    Compiling
  207. def unsupported: Nothing
  208. def updateDisplay(haveWorldLockAlready: Boolean): Unit

    Internal use only.

    Internal use only.

    Definition Classes
    HeadlessWorkspaceJobManagerOwner
  209. def updateMode(updateMode: UpdateMode): Unit
  210. def updateMode(): UpdateMode
    Definition Classes
    AbstractWorkspace
  211. def updatePlots(c: Context): Unit
    Definition Classes
    Plotting
  212. def updateUI(): Unit
    Definition Classes
    Workspace
  213. def userDirectory: Option[String]
    Definition Classes
    Workspace
  214. def userFile: Option[String]
    Definition Classes
    Workspace
  215. def userInput(msg: String): Option[String]
    Definition Classes
    Workspace
  216. def userMessage(msg: String): Boolean
    Definition Classes
    Workspace
  217. def userNewFile: Option[String]
    Definition Classes
    Workspace
  218. def userOneOf(msg: String, xs: LogoList): Option[AnyRef]
    Definition Classes
    Workspace
  219. def userYesOrNo(msg: String): Option[Boolean]
    Definition Classes
    Workspace
  220. def viewHeight: Double
    Definition Classes
    HeadlessWorkspaceAPIConformantViewSettings
  221. def viewOffsetX: Double
    Definition Classes
    HeadlessWorkspaceAPIConformantViewSettings
  222. def viewOffsetY: Double
    Definition Classes
    HeadlessWorkspaceAPIConformantViewSettings
  223. def viewWidth: Double
    Definition Classes
    HeadlessWorkspaceAPIConformantViewSettings
  224. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  225. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  226. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  227. def waitFor(runnable: CommandRunnable): Unit

    Internal use only.

    Internal use only.

    Definition Classes
    HeadlessWorkspaceWorkspace
  228. def waitForQueuedEvents(): Unit

    Internal use only.

    Internal use only.

    Definition Classes
    HeadlessWorkspaceWorkspace
  229. def waitForResult[T](runnable: ReporterRunnable[T]): T

    Internal use only.

    Internal use only.

    Definition Classes
    HeadlessWorkspaceWorkspace
  230. def warningMessage(message: String): Boolean

    Displays a warning to the user, and determine whether to continue.

    Displays a warning to the user, and determine whether to continue. The default (non-GUI) implementation is to print the warning and always continue.

    Definition Classes
    AbstractWorkspaceExtendableWorkspaceWorkspace
  231. val world: World
    Definition Classes
    AbstractWorkspaceScalaWorkspaceWorkspace
  232. def worldChecksum: String
    Definition Classes
    Checksums
  233. def zipLogFiles(filename: String): Nothing

    Internal use only.

    Internal use only.

    Definition Classes
    HeadlessWorkspaceLoggingWorkspace

Inherited from WorldLoaderInterface

Inherited from Controllable

Inherited from AbstractWorkspaceScala

Inherited from Exporting

Inherited from Plotting

Inherited from HubNetManager

Inherited from Components

Inherited from Traceable

Inherited from BehaviorSpaceInformation

Inherited from Compiling

Inherited from Procedures

Inherited from ModelTracker

Inherited from Evaluating

Inherited from Checksums

Inherited from Benchmarking

Inherited from APIConformant

Inherited from AbstractWorkspace

Inherited from HubNetWorkspaceInterface

Inherited from CompilerServices

Inherited from LogoThunkFactory

Inherited from LoggingWorkspace

Inherited from ExtendableWorkspace

Inherited from EditorWorkspace

Inherited from Workspace

Inherited from JobManagerOwner

Inherited from Workspace

Inherited from Controllable

Inherited from ViewSettings

Inherited from RandomServices

Inherited from LiteralParser

Inherited from ImporterUser

Inherited from WorldResizer

Inherited from AnyRef

Inherited from Any

Ungrouped