diff --git a/examples/DisDemo/build.run.log.txt b/examples/DisDemo/build.run.log.txt index 36a30e8b6d661811a821396db755c573d0cca71d..51bde247b8092ed10824131d468191d4de96528d 100644 --- a/examples/DisDemo/build.run.log.txt +++ b/examples/DisDemo/build.run.log.txt @@ -1,4 +1,4 @@ -ant -f C:\\x-nps-gitlab\\NetworkedGraphicsMV3500\\examples\\DisDemo -Dnb.internal.action.name=run run +ant -f C:\\x-nps-gitlab\\NetworkedGraphicsMV3500\\examples\\DisDemo -Dnb.internal.action.name=run.single -Djavac.includes=DisDemo/DisDemonstration.java -Drun.class=DisDemo.DisDemonstration run-single init: Deleting: C:\x-nps-gitlab\NetworkedGraphicsMV3500\examples\DisDemo\build\built-jar.properties deps-jar: @@ -6,48 +6,48 @@ Updating property file: C:\x-nps-gitlab\NetworkedGraphicsMV3500\examples\DisDemo Compiling 1 source file to C:\x-nps-gitlab\NetworkedGraphicsMV3500\examples\DisDemo\build\classes warning: [options] bootstrap class path not set in conjunction with -source 8 1 warning -compile: -run: +compile-single: +run-single: DisDemo.DisDemonstration: sending 20 ESPDU packets at 1000 msec (1.0 second) intervals on broadcast address=[/172.16.0.255] port 3000 Current position: 0.0, 1.0, 0.0 -... sent 1 of 20 +... sent DIS ESPDU 1 of 20 Current position: 0.0, 2.0, 0.0 -... sent 2 of 20 +... sent DIS ESPDU 2 of 20 Current position: 0.0, 3.0, 0.0 -... sent 3 of 20 +... sent DIS ESPDU 3 of 20 Current position: 0.0, 4.0, 0.0 -... sent 4 of 20 +... sent DIS ESPDU 4 of 20 Current position: 0.0, 5.0, 0.0 -... sent 5 of 20 +... sent DIS ESPDU 5 of 20 Current position: 0.0, 6.0, 0.0 -... sent 6 of 20 +... sent DIS ESPDU 6 of 20 Current position: 0.0, 7.0, 0.0 -... sent 7 of 20 +... sent DIS ESPDU 7 of 20 Current position: 0.0, 8.0, 0.0 -... sent 8 of 20 +... sent DIS ESPDU 8 of 20 Current position: 0.0, 9.0, 0.0 -... sent 9 of 20 +... sent DIS ESPDU 9 of 20 Current position: 0.0, 10.0, 0.0 -... sent 10 of 20 +... sent DIS ESPDU 10 of 20 Current position: 0.0, 11.0, 0.0 -... sent 11 of 20 +... sent DIS ESPDU 11 of 20 Current position: 0.0, 12.0, 0.0 -... sent 12 of 20 +... sent DIS ESPDU 12 of 20 Current position: 0.0, 13.0, 0.0 -... sent 13 of 20 +... sent DIS ESPDU 13 of 20 Current position: 0.0, 14.0, 0.0 -... sent 14 of 20 +... sent DIS ESPDU 14 of 20 Current position: 0.0, 15.0, 0.0 -... sent 15 of 20 +... sent DIS ESPDU 15 of 20 Current position: 0.0, 16.0, 0.0 -... sent 16 of 20 +... sent DIS ESPDU 16 of 20 Current position: 0.0, 17.0, 0.0 -... sent 17 of 20 +... sent DIS ESPDU 17 of 20 Current position: 0.0, 18.0, 0.0 -... sent 18 of 20 +... sent DIS ESPDU 18 of 20 Current position: 0.0, 19.0, 0.0 -... sent 19 of 20 +... sent DIS ESPDU 19 of 20 Current position: 0.0, 20.0, 0.0 -... sent 20 of 20 +... sent DIS ESPDU 20 of 20 BUILD SUCCESSFUL (total time: 21 seconds) diff --git a/examples/DisDemo/src/DisDemo/DisDemonstration.java b/examples/DisDemo/src/DisDemo/DisDemonstration.java index 36072265461cde357cf31e0cdb4c4d855a5f5889..783cbb9ab9f9c8e26cf55c021f6d7cb13170197b 100644 --- a/examples/DisDemo/src/DisDemo/DisDemonstration.java +++ b/examples/DisDemo/src/DisDemo/DisDemonstration.java @@ -106,7 +106,7 @@ public class DisDemonstration { packet = new DatagramPacket(buffer.array(), buffer.array().length, aBcast, PORT); socket.send(packet); } - System.out.println("... sent " + index + " of " + NUMBER_OF_SENDS); + System.out.println("... sent DIS ESPDU " + index + " of " + NUMBER_OF_SENDS); Thread.sleep(INTERVAL_MSEC); } }