Changeset 170 in tmcsimulator
- Timestamp:
- 10/23/2017 07:04:39 PM (9 years ago)
- Files:
-
- 2 added
- 7 edited
-
branches/FEPSimulator/FEPSim.h (modified) (1 diff)
-
branches/FEPSimulator/nbproject/Makefile-Debug.mk (modified) (2 diffs)
-
branches/FEPSimulator/nbproject/configurations.xml (modified) (1 diff)
-
branches/FEPSimulator/nbproject/private/private.xml (modified) (1 diff)
-
trunk/config/vds_data/extend_lds_file.txt (added)
-
trunk/config/vds_data/extend_loop_file.txt (added)
-
trunk/src/atmsdriver/model/Highways.java (modified) (1 diff)
-
trunk/src/tmcsim/application.properties (modified) (1 diff)
-
trunk/src/tmcsim/client/ATMSBatchDriver.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/FEPSimulator/FEPSim.h
r86 r170 43 43 #include <unistd.h> 44 44 45 const int BUFF_SIZE = 1000000;45 const int BUFF_SIZE = 5500000; 46 46 47 47 class FEPSim { -
branches/FEPSimulator/nbproject/Makefile-Debug.mk
r117 r170 58 58 59 59 # Link Libraries and Options 60 LDLIBSOPTIONS=tinyxml/ tinyxml.a60 LDLIBSOPTIONS=tinyxml/libosxtinyxml.a 61 61 62 62 # Build Targets … … 64 64 "${MAKE}" -f nbproject/Makefile-${CND_CONF}.mk ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/fepsimulator 65 65 66 ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/fepsimulator: tinyxml/ tinyxml.a66 ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/fepsimulator: tinyxml/libosxtinyxml.a 67 67 68 68 ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/fepsimulator: ${OBJECTFILES} -
branches/FEPSimulator/nbproject/configurations.xml
r117 r170 53 53 <linkerTool> 54 54 <linkerLibItems> 55 <linkerLibFileItem>tinyxml/ tinyxml.a</linkerLibFileItem>55 <linkerLibFileItem>tinyxml/libosxtinyxml.a</linkerLibFileItem> 56 56 </linkerLibItems> 57 57 </linkerTool> -
branches/FEPSimulator/nbproject/private/private.xml
r162 r170 7 7 <editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/> 8 8 <open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2"> 9 <group> 10 <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/network.h</file> 11 <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/NetworkReader.cpp</file> 12 <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/DataPacker.h</file> 13 <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/DataPacker.cpp</file> 14 <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/FEPSim.cpp</file> 15 <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/fep.h</file> 16 <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/NetworkReader.h</file> 17 <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/FEPSim.h</file> 18 </group> 9 <group/> 19 10 </open-files> 20 11 </project-private> -
trunk/src/atmsdriver/model/Highways.java
r128 r170 214 214 Socket sock = new Socket(FEPHostName /*"192.168.251.130"*/, 8080); 215 215 PrintWriter out = new PrintWriter(sock.getOutputStream(), true); 216 System.out.println("BYTES: " + this.toXML().toCharArray().length + 1); 216 217 out.println(this.toXML()); 217 218 sock.close(); -
trunk/src/tmcsim/application.properties
r162 r170 1 #Mon, 23 Oct 2017 11:00:55-07001 #Mon, 23 Oct 2017 20:10:38 -0700 2 2 3 Application.revision=16 13 Application.revision=169 4 4 5 5 Application.buildnumber=53 -
trunk/src/tmcsim/client/ATMSBatchDriver.java
r158 r170 144 144 incidents = new HashMap<String, List<String>> (); 145 145 highways = new Highways( 146 "config/vds_data/ lds.txt",147 "config/vds_data/ loop.txt",146 "config/vds_data/extend_lds_file.txt", 147 "config/vds_data/extend_loop_file.txt", 148 148 "config/vds_data/highwaysMeta.txt", 149 "192.168.251.46", 8080); //IP address of FEP Sim Linux VM150 //"localhost", 8080);149 // "192.168.251.46", 8080); //IP address of FEP Sim Linux VM 150 "localhost", 8080); 151 151 // Create console driver but don't start run() method 152 152 console = new ConsoleDriver(highways);
Note: See TracChangeset
for help on using the changeset viewer.
