Esempio n. 1
0
 private void process(final boolean parallel) {
   if (sim != null) {
     sim.stopAndWait();
   }
   try {
     sim = null;
     final Future<Result<T>> fenv = EnvironmentBuilder.build(new FileInputStream(xml));
     final IEnvironment<T> env = fenv.get().getEnvironment();
     rand = fenv.get().getRandomEngine();
     sim = new Simulation<>(env, new DoubleTime(Double.POSITIVE_INFINITY), parallel);
     bar.setSimulation(sim);
     scp.setSimulation(sim);
     final Thread simThread = new Thread(sim);
     createMonitor();
     simThread.start();
     final TimeStepMonitor<T> tm = bar.getTimeMonitor();
     sim.addOutputMonitor(tm);
     bar.setRandom(rand.getSeed());
     bar.setFileOK(true);
     bar.setProcessOK(true);
     effectsTab.setEnabled(true);
     status.setOK();
     status.setText(r(Res.FILE_PROCESSED) + ": " + xml.getAbsolutePath());
   } catch (Exception e) {
     processError(e);
   }
 }
Esempio n. 2
0
 private void setMainDisplay(final SwingOutputMonitor<T> gom) {
   if (main != null) {
     sim.removeOutputMonitor(main);
     gom.setStep(main.getStep());
     gom.setRealTime(main.isRealTime());
     remove((Component) main);
     main.dispose();
   }
   main = gom;
   if (sim != null) {
     new Thread(() -> sim.addOutputMonitor(main)).start();
   }
   add((Component) main, BorderLayout.CENTER);
   revalidate();
   effectsTab.setMonitor(gom);
   gom.setDrawLinks(effectsTab.isDrawingLinks());
 }
Esempio n. 3
0
 private void dispose() {
   if (main != null) {
     main.dispose();
     if (sim != null) {
       sim.removeOutputMonitor(main);
     }
     remove((Component) main);
   }
   main = null;
   sim = null;
   effectsTab.setMonitor(null);
 }
Esempio n. 4
0
  /** Builds a new SAPERE perspective. */
  public Perspective() {
    super();
    setLayout(new BorderLayout());

    bar = new UpperBar(scp);
    add(bar, BorderLayout.NORTH);
    bar.addActionListener(this);
    bar.addChangeListener(this);

    status = new StatusBar();
    status.setText(r(Res.SAPERE_PERSPECTIVE));
    add(status, BorderLayout.SOUTH);

    effectsTab = new JEffectsTab<>();
    effectsTab.addLinksToggleActionListener(this);
    effectsTab.setEnabled(false);

    bar.registerTab(effectsTab);

    setMainDisplay(new Generic2DDisplay<T>());
  }
Esempio n. 5
0
 @Override
 public void actionPerformed(final ActionEvent e) {
   if (Commands.OPEN.equalsToString(e.getActionCommand())) {
     openXML();
   } else if (Commands.PARALLEL.equalsToString(e.getActionCommand())) {
     process(true);
   } else if (Commands.PROCESS.equalsToString(e.getActionCommand())) {
     process(false);
   } else if (Commands.DICE.equalsToString(e.getActionCommand())) {
     setRandom();
   } else if (SimControlCommand.PLAY.equalsToString(e.getActionCommand())) {
     sim.play();
     bar.setPlay(true);
   } else if (SimControlCommand.PAUSE.equalsToString(e.getActionCommand())) {
     sim.pause();
     bar.setPlay(false);
   } else if (SimControlCommand.STEP.equalsToString(e.getActionCommand())) {
     sim.play();
     sim.pause();
   } else if (SimControlCommand.STOP.equalsToString(e.getActionCommand())) {
     sim.stop();
     bar.setFileOK(true);
   } else if (Commands.PAINT_LINKS.equalsToString(e.getActionCommand())) {
     main.setDrawLinks(effectsTab.isDrawingLinks()); // side.isDrawingLinks());
   } else if (Commands.REACTIVITY.equalsToString(e.getActionCommand())) {
     switch (bar.getReactivityStatus()) {
       case MAX_REACTIVITY:
         main.setStep(1);
         main.setRealTime(false);
         break;
       case REAL_TIME:
         main.setRealTime(true);
         main.setStep(1);
         break;
       case USER_SELECTED:
         main.setStep(bar.getReactivity());
         main.setRealTime(false);
         break;
       default:
         break;
     }
   } else {
     dispose();
   }
 }