Changeset 128 in tmcsimulator for trunk/src/atmsdriver/ConsoleDriver.java


Ignore:
Timestamp:
10/17/2017 09:11:22 AM (9 years ago)
Author:
jdalbey
Message:

ATMSBatchDriver.java Added a GUI to display event queue. Highways.java modified to throw an exception when writeToFEP can't connect to FEP_Sim.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/atmsdriver/ConsoleDriver.java

    r127 r128  
    1313import java.util.logging.Level; 
    1414import java.util.logging.Logger; 
     15import tmcsim.common.SimulationException; 
    1516 
    1617/** 
     
    198199        } 
    199200        System.out.println(""); 
    200         highways.writeToFEP(); 
     201        try { 
     202            highways.writeToFEP(); 
     203        } catch (SimulationException ex) { 
     204            System.out.println("Skipping writeToFEP..."); 
     205        } 
    201206    } 
    202207     
Note: See TracChangeset for help on using the changeset viewer.