|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjas.engine.Sim
public class Sim
Sim is a top-level class keeping static references to engine and other system things. From every point of your code you can access the Sim object and obtain some useful services. This class ensures that only one engine is running on the current JVM. Each model will be attached to the same engine.
Title: JAS
Description: Java Agent-based Simulation library
Copyright (C) 2002 Michele Sonnessa
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
Changes (from ) --------------------------
Field Summary | |
---|---|
static java.lang.String[] |
cmdLineArguments
|
static int |
currentRunNumber
In a multi run model this variable is used to identify the current run number. |
static SimEngine |
engine
Reference to the engine running on the current JVM. |
static int |
EVENT_SHUTDOWN
Event descriptor for application quit. |
static int |
EVENT_SIMULATION_END
Event descriptor for engine stop. |
static int |
EVENT_SIMULATION_RESTART
Event descriptor for engine restart. |
static int |
EVENT_STEP
Generic step event used by simple agents. |
static int |
EVENT_UPDATE
Update event for each updatable object. |
static java.lang.String |
jasProjectsPath
Represents the standard root folder where JAS search for user's projects. |
static short |
majorVersion
The current major version of simulation engine. |
static short |
minorVersion
The current minor version of simulation engine. |
static java.lang.String |
version
The description of the current version. |
Constructor Summary | |
---|---|
Sim()
|
Method Summary | |
---|---|
static void |
addDirectoryToClassLoader(java.io.File directory)
Insert the specified directory to the local classpath of the SimClassLoader. |
static void |
editCode(java.lang.String filePath)
Open the file with the default editor. |
static void |
fatalError(java.lang.Object source,
java.lang.String errorDescription)
This method should be called when a fatal event occurs, such that the simulation cannot be continued. |
static long |
getAbsoluteTime()
Returns the current absolute simulation time. |
static java.lang.String |
getCurrentDirectoryPath()
Return the current user directory path. |
static java.lang.String |
getEditorPath()
Return the external path for the current code editor. |
static EventList |
getEventList()
Return a reference to the current event list of the simulation engine. |
ISimModel |
getModelWithID(java.lang.String id)
Returns a reference of a SimModel with the given id. |
SimMultiCastEvent |
getMultiCastService(java.lang.String multiCastService)
Return the multicast information service with the given name. |
static java.lang.String |
getPathOf(java.lang.Object targetObject)
Return the current path for the given object. |
static RandomGenerator |
getRnd()
Return a reference to the Sim random number generator. |
static DynamicClassLoader |
getSimClassLoader()
Returns the simulation class loader. |
static SimulationServer |
getSimulationServer()
Return the current simulation server. |
static java.lang.String |
getStartDirectory()
Return the directory from where JVM was started. |
static SimTime |
getTime()
Return the SimTime object used by engine. |
static void |
main(java.lang.String[] args)
The main method starts an engine and show the Control Panel. |
static ProbeFrame |
openProbe(java.lang.Object on,
java.lang.String title)
Opens a probe on the given object and return its reference. |
static ProbeFrame |
openProbe(java.lang.Object on,
java.lang.String title,
ISimModel ownerModel)
Opens a probe on the given object and return its reference. |
static void |
setCurrentClassLoader(DynamicClassLoader loader)
Set a new SimClassLoader. |
static void |
setCurrentDirectoryPath(java.lang.String newPath)
Set the current user directory path. |
static void |
setEditorPath(java.lang.String editorPath)
Set the external path for the code editor. |
static void |
setEngine(SimEngine eng)
Set the current simulation engine. |
static void |
showMessage(java.lang.String message)
Show a system message box with the given message. |
static void |
shutdownSimulationServer()
Shutdown and destroy the simulation server. |
static void |
startSimulationServer()
Create an instance of a SimulationServer and start the service. |
static void |
startSimulationServer(int onTcpPort)
Create an instance of a SimulationServer and start the service. |
static long |
toDays(int value)
Converts the given days to the absolute time value. |
static long |
toHours(int value)
Converts the given hours to the absolute time value. |
static long |
toMillis(int value)
Converts the given milliseconds to the absolute time value. |
static long |
toMins(int value)
Converts the given minutes to the absolute time value. |
static long |
toMonths(int value)
Converts the given months to the absolute time value. |
static long |
toSecs(int value)
Converts the given seconds to the absolute time value. |
static long |
toYears(int value)
Converts the given years to the absolute time value. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static java.lang.String[] cmdLineArguments
public static int currentRunNumber
public static SimEngine engine
public static final int EVENT_SHUTDOWN
public static final int EVENT_SIMULATION_END
public static final int EVENT_SIMULATION_RESTART
public static final int EVENT_STEP
public static final int EVENT_UPDATE
public static java.lang.String jasProjectsPath
public static final short majorVersion
public static final short minorVersion
public static final java.lang.String version
Constructor Detail |
---|
public Sim()
Method Detail |
---|
public static void addDirectoryToClassLoader(java.io.File directory)
directory
- The directory or jar file to be added.public static void editCode(java.lang.String filePath)
filePath
- A fully qualified path to a source code file.public static void fatalError(java.lang.Object source, java.lang.String errorDescription)
source
- The object generated the error.*errorDescription
- A short error description.public static long getAbsoluteTime()
public static java.lang.String getCurrentDirectoryPath()
public static java.lang.String getEditorPath()
public static EventList getEventList()
public ISimModel getModelWithID(java.lang.String id)
id
- The string describing the SimModel. It must be equal to the
returning String of the SimModel.getID() method.
public SimMultiCastEvent getMultiCastService(java.lang.String multiCastService)
public static java.lang.String getPathOf(java.lang.Object targetObject)
targetObject
- A generic object loaded by a simulation model.
public static RandomGenerator getRnd()
public static DynamicClassLoader getSimClassLoader()
public static SimulationServer getSimulationServer()
public static java.lang.String getStartDirectory()
public static SimTime getTime()
public static void main(java.lang.String[] args)
args
- The command prompt list of arguments.public static ProbeFrame openProbe(java.lang.Object on, java.lang.String title)
on
- Object to be probed. If on implements the IProbeFields interface
the probe will use this set of fields.title
- The title of the probe frame.
public static ProbeFrame openProbe(java.lang.Object on, java.lang.String title, ISimModel ownerModel)
on
- Object to be probed. If on implements the IProbeFields interface
the probe will use this set of fields.title
- The title of the probe frame.ownerModel
- The caller SimModel.
public static void setCurrentClassLoader(DynamicClassLoader loader)
loader
- An instance of a class-loader to be used as SimClassLoader.public static void setCurrentDirectoryPath(java.lang.String newPath)
newPath
- The string representing the new working directory.public static void setEditorPath(java.lang.String editorPath)
public static void setEngine(SimEngine eng)
eng
- The simulation engine.public static void showMessage(java.lang.String message)
message
- The message string to be shown.public static void shutdownSimulationServer()
public static void startSimulationServer()
public static void startSimulationServer(int onTcpPort)
onTcpPort
- The TCP port to be attached to the server.public static long toDays(int value)
value
- The number to be converted.
public static long toHours(int value)
value
- The number to be converted.
public static long toMillis(int value)
value
- The number to be converted.
public static long toMins(int value)
value
- The number to be converted.
public static long toMonths(int value)
value
- The number to be converted.
public static long toSecs(int value)
value
- The number to be converted.
public static long toYears(int value)
value
- The number to be converted.
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |