|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjas.engine.SimEngine
public class SimEngine
The simulation engine. The engine keeps a reference to an EventList object to manage temporal sequence of events. Every object of the running simulation can schedule events at a specified time point and the engine will notify to it at the right time. The SimEngine stores a list of windows created by models. Using the addSimWindow() method each simulation windows is managed by the engine. It is able to show windows detroyed by user. When the windows is shown the engine put the windows in the location where it was when the project document was saved to disk. The window size is stored, too.
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.
Constructor Summary | |
---|---|
SimEngine()
Build a new SimEngine with the TIME-TICKS time unit. |
|
SimEngine(int timeUnit)
Build a new SimEngine with the given time unit. |
Method Summary | |
---|---|
void |
addEngineListener(ISimEngineListener engineListener)
Install a listener for events generated by the simulation engine. |
void |
addModel(ISimModel model)
Notify the engine to manage a SimModel. |
void |
addSimWindow(ISimModel owner,
java.awt.Container window)
Add a frame window to a local windowBag. |
void |
buildModels()
Call the buildModel() method of each active SimModel. |
void |
disableRealTime()
Disable the real time mode. |
java.lang.Class[] |
disposeModels()
Dispose from memory all running models. |
void |
enableRealTime()
Enable the real time mode. |
void |
end()
Stops the simulation and call the simulationEnd method of each running model. |
java.util.ArrayList |
getEngineListeners()
|
EventList |
getEventList()
Return a reference to the current EventList. |
boolean |
getModelBuildStatus()
Return true if buildModels() method has been called. |
java.lang.Object[] |
getModels()
Return an array representing the running SimModels. |
ISimModel |
getModelWithID(java.lang.String id)
Return a model with the given id string. |
long |
getRandomSeed()
Return the current random seed. |
RandomGenerator |
getRnd()
Return a reference to the current Random generator. |
boolean |
getRunningStatus()
Return the current running status. |
SimTime |
getTime()
Return a reference to the current SimTime. |
IWindowManager |
getWindowManager()
Return the current window manager. |
boolean |
isRealTimeMode()
Test the time mode. |
void |
performAction(int actionType)
React to system events. |
void |
quit()
Stop the simulation, dispose everything and the quit the JVM. |
void |
rebuildModels()
Dispose and rebuild each running model. |
void |
removeEngineListener(ISimEngineListener engineListener)
|
void |
setRandomSeed(long newSeed)
Set the current random seed. |
void |
setRunning(boolean status)
Set the current running status. |
void |
setWindowManager(IWindowManager manager)
|
void |
start()
Start simulation. |
void |
step()
Make one simulation step. |
void |
step(int forSteps)
Make forSteps simulation steps. |
void |
stepTime()
Make simulation steps until next time unit. |
void |
stop()
Stop simulation. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SimEngine()
public SimEngine(int timeUnit)
timeUnit
- The time uint id. See the public constants in the SimTime class.Method Detail |
---|
public void addEngineListener(ISimEngineListener engineListener)
engineListener
- An object implementing the ISimEngineListener interface.public void addModel(ISimModel model)
model
- The model to be added.public void addSimWindow(ISimModel owner, java.awt.Container window)
owner
- The owner model.window
- The frame to be added.public void buildModels()
public void disableRealTime()
public java.lang.Class[] disposeModels()
public void enableRealTime()
public void end()
public java.util.ArrayList getEngineListeners()
public EventList getEventList()
public boolean getModelBuildStatus()
public java.lang.Object[] getModels()
public ISimModel getModelWithID(java.lang.String id)
id
- The string representing model. It must equals to the return of the getID() method of the SimModel class.
public long getRandomSeed()
public RandomGenerator getRnd()
public boolean getRunningStatus()
public SimTime getTime()
public IWindowManager getWindowManager()
public boolean isRealTimeMode()
public void performAction(int actionType)
performAction
in interface ISimEventListener
actionType
- Reacts in case of EVENT_SIMULATION_END, EVENT_SIMULATION_RESTART,
EVENT_SHUTDOWN events.public void quit()
public void rebuildModels()
public void removeEngineListener(ISimEngineListener engineListener)
public void setRandomSeed(long newSeed)
newSeed
- The new random seed.public void setRunning(boolean status)
status
- If true the simulation starts, if false it stops.public void setWindowManager(IWindowManager manager)
manager
- public void start()
public void step()
public void step(int forSteps)
forSteps
- The number of steps to be done.public void stepTime()
public void stop()
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |