| 1 | # Configuration settings for the CAD Server |
|---|
| 2 | # |
|---|
| 3 | # CAD Server is started before any other subsystem in the TMCSim. |
|---|
| 4 | # The filename of this file is specified as the default in CADServer.java. |
|---|
| 5 | # The default can be overriden by specifying -DPROP_FILE= on the java command, |
|---|
| 6 | # for example, by scripts in the bin folder. |
|---|
| 7 | # |
|---|
| 8 | # CADClientPort : The port number to use for remote CAD Client connections. |
|---|
| 9 | # CoordinatorRMIPort : The port number to use for binding the Coordinator. |
|---|
| 10 | # CMSDiversionXML : The filepath for the xml file containing initialization data |
|---|
| 11 | # for the Diversion "database." |
|---|
| 12 | # AudioFileLocation : The root directory path where audio files are accessed. |
|---|
| 13 | # ParamicsProperties : The filepath for the properties file to initialize the |
|---|
| 14 | # ParamicsControlManager. |
|---|
| 15 | # ATMSProperties : The filepath for the properties file to initialize the |
|---|
| 16 | # ATMSManager. |
|---|
| 17 | # MediaProperties : The filepath for the properties file to initialize the |
|---|
| 18 | # MediaManager. |
|---|
| 19 | # TrafficMgrProperties : The filepath for the properties file to initialize the Traffic Manager. |
|---|
| 20 | # ElapsedTimeFile : The location where the Coordinator writes the simulation time, where it is accessed by other subsystems. |
|---|
| 21 | # CADcommentsLog : The location where the Coordinator writes the CAD comments log, where it is accessed by the Unified Logging system. |
|---|
| 22 | # UserInterface : The class that serves as the UI for the Server. |
|---|
| 23 | |
|---|
| 24 | #https://stackoverflow.com/questions/31505644/file-separator-in-properties (from 2015) |
|---|
| 25 | |
|---|
| 26 | UserInterface = tmcsim.cadsimulator.viewer.CADServerViewer |
|---|
| 27 | |
|---|
| 28 | CADClientPort = 4444 |
|---|
| 29 | CoordinatorRMIPort = 4445 |
|---|
| 30 | CADRmiPort = 4446 |
|---|
| 31 | AudioFileLocation = Scenarios/Audio/ |
|---|
| 32 | ElapsedTimeFile = webapps/dynamicdata/sim_elapsedtime.json |
|---|
| 33 | CADcommentsLog = webapps/dynamicdata/CADcomments.log |
|---|
| 34 | CMSDiversionXML = config/cmsdiversions.xml |
|---|
| 35 | |
|---|
| 36 | TrafficMgrProperties = config/devlinux/traffic_model_config.properties |
|---|
| 37 | MediaProperties = config/cad_server_media.properties |
|---|
| 38 | ParamicsProperties = config/cad_server_paramics.properties |
|---|
| 39 | ATMSProperties = config/cad_server_atms.properties |
|---|
| 40 | |
|---|
| 41 | #Alternate text user interface for the CADServer |
|---|
| 42 | #UserInterface = tmcsim.cadsimulator.viewer.CADConsoleViewer |
|---|
| 43 | |
|---|