Exemplo n.º 1
0
  public Object buildObjects() {
    super.buildObjects();

    Globals.env.createArchivedProbeDisplay(this, "observerSwarm");

    getControlPanel().setStateStopped();

    // First, create a colormap: this is a global resource, the information

    colorMap = new ColormapImpl(this);
    colorMap.setColor$ToName((byte) 10, "blue");
    colorMap.setColor$ToName((byte) 1, "red");
    colorMap.setColor$ToName((byte) 0, "white");

    // Next, create a 2d window for display, set its size, zoom factor, title

    worldRaster = new ZoomRasterImpl(this);
    worldRaster.setColormap(colorMap);
    worldRaster.setZoomFactor(4);
    worldRaster.setWidth$Height(worldSizeX, worldSizeY);
    worldRaster.setWindowTitle("Conway's world");
    worldRaster.pack();

    conwayWorld = new ConwayWorld(this, worldSizeX, worldSizeY);
    // ConwayWorld(this) cannnot initialize DblBuffer2d correctly.

    conwayWorld.setSizeX$Y(worldSizeX, worldSizeY);
    conwayWorld.setObserver(this);

    try {
      valueDisplay = new Value2dDisplayImpl(this, worldRaster, colorMap, conwayWorld);
    } catch (Exception e) {
      System.err.println("Exception: " + e.getMessage());
      System.exit(1);
    }

    try {
      worldRaster.setButton$Client$Message(
          3, conwayWorld, new Selector(conwayWorld.getClass(), "swapColorAtX$Y", false));
    } catch (Exception e) {
      System.err.println("Exception: " + e.getMessage());
      System.exit(1);
    }
    return this;
  }
Exemplo n.º 2
0
  public Object buildActions() {

    // Create an ActionGroup for display
    displayActions = new ActionGroupImpl(this);

    // Schedule up the methods to draw the display of the world
    try {
      displayActions.createActionTo$message(
          valueDisplay, new Selector(valueDisplay.getClass(), "display", false));
      displayActions.createActionTo$message(
          worldRaster, new Selector(worldRaster.getClass(), "drawSelf", false));
      displayActions.createActionTo$message(
          conwayWorld, new Selector(conwayWorld.getClass(), "stepRule", false));
      displayActions.createActionTo$message(
          getActionCache(), new Selector(getActionCache().getClass(), "doTkEvents", true));
    } catch (Exception e) {
      System.err.println("Exception: " + e.getMessage());
      System.exit(1);
    }
    displaySchedules = new ScheduleImpl(this, displayFrequency);
    displaySchedules.at$createAction(0, displayActions);

    return this;
  }
Exemplo n.º 3
0
 public Object eraseCOnway() {
   if (conwayWorld.getClass() != null) conwayWorld.eraseAll();
   return this;
 }