sim.app.virus.VirusInfectionDemoWithUI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mason Show documentation
Show all versions of mason Show documentation
MASON is a fast discrete-event multiagent simulation library core in Java, designed to be the foundation for large custom-purpose Java simulations, and also to provide more than enough functionality for many lightweight simulation needs. MASON contains both a model library and an optional suite of visualization tools in 2D and 3D.
The newest version!
/*
Copyright 2006 by Sean Luke and George Mason University
Licensed under the Academic Free License version 3.0
See the file "LICENSE" for more information
*/
package sim.app.virus;
import sim.portrayal.continuous.*;
import sim.engine.*;
import sim.display.*;
import javax.swing.*;
import java.awt.Color;
public class VirusInfectionDemoWithUI extends GUIState
{
public Display2D display;
public JFrame displayFrame;
ContinuousPortrayal2D vidPortrayal = new ContinuousPortrayal2D();
public static void main(String[] args)
{
new VirusInfectionDemoWithUI().createController();
}
public VirusInfectionDemoWithUI() { super(new VirusInfectionDemo( System.currentTimeMillis())); }
public VirusInfectionDemoWithUI(SimState state) { super(state); }
public static String getName() { return "Virus Infection"; }
public void start()
{
super.start();
setupPortrayals();
}
public void load(SimState state)
{
super.load(state);
setupPortrayals();
}
public void setupPortrayals()
{
// tell the portrayals what to portray and how to portray them
vidPortrayal.setField(((VirusInfectionDemo)state).environment);
// reschedule the displayer
display.reset();
display.setBackdrop(Color.white);
// redraw the display
display.repaint();
}
public void init(Controller c)
{
super.init(c);
// make the displayer
display = new Display2D(800,600,this);
displayFrame = display.createFrame();
displayFrame.setTitle("Virus (Dis)Infection Demonstration Display");
c.registerFrame(displayFrame); // register the frame so it appears in the "Display" list
displayFrame.setVisible(true);
display.attach( vidPortrayal, "Agents" );
}
public void quit()
{
super.quit();
if (displayFrame!=null) displayFrame.dispose();
displayFrame = null;
display = null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy