# Configuration settings for the CAD Server # # CAD Server is started before any other subsystem in the TMCSim. # The filename of this file is specified as the default in CADServer.java. # The default can be overriden by specifying -DPROP_FILE= on the java command, # for example, by scripts in the bin folder. # # CADClientPort : The port number to use for remote CAD Client connections. # CoordinatorRMIPort : The port number to use for binding the Coordinator. # CMSDiversionXML : The filepath for the xml file containing initialization data # for the Diversion "database." # AudioFileLocation : The root directory path where audio files are accessed. # ParamicsProperties : The filepath for the properties file to initialize the # ParamicsControlManager. # ATMSProperties : The filepath for the properties file to initialize the # ATMSManager. # MediaProperties : The filepath for the properties file to initialize the # MediaManager. # TrafficMgrProperties : The filepath for the properties file to initialize the Traffic Manager. # ElapsedTimeFile : The location where the Coordinator writes the simulation time, where it is accessed by other subsystems. # CADcommentsLog : The location where the Coordinator writes the CAD comments log, where it is accessed by the Unified Logging system. # UserInterface : The class that serves as the UI for the Server. #https://stackoverflow.com/questions/31505644/file-separator-in-properties (from 2015) UserInterface = tmcsim.cadsimulator.viewer.CADServerViewer CADClientPort = 4444 CoordinatorRMIPort = 4445 CADRmiPort = 4446 AudioFileLocation = Scenarios/Audio/ ElapsedTimeFile = webapps/dynamicdata/sim_elapsedtime.json CADcommentsLog = webapps/dynamicdata/CADcomments.log CMSDiversionXML = config/cmsdiversions.xml TrafficMgrProperties = config/devlinux/traffic_model_config.properties MediaProperties = config/cad_server_media.properties ParamicsProperties = config/cad_server_paramics.properties ATMSProperties = config/cad_server_atms.properties #Alternate text user interface for the CADServer #UserInterface = tmcsim.cadsimulator.viewer.CADConsoleViewer