Skip to content
Snippets Groups Projects
Commit 648baf0a authored by brutzman's avatar brutzman
Browse files

updated open-dis7 libraries, tested satisfactorily, provide example output

parent cb6e52c4
No related branches found
No related tags found
No related merge requests found
ant -f C:\\x-nps-gitlab\\NetworkedGraphicsMV3500\\examples\\DisDemo -Dnb.internal.action.name=run run
init:
Deleting: C:\x-nps-gitlab\NetworkedGraphicsMV3500\examples\DisDemo\build\built-jar.properties
deps-jar:
Updating property file: C:\x-nps-gitlab\NetworkedGraphicsMV3500\examples\DisDemo\build\built-jar.properties
Compiling 1 source file to C:\x-nps-gitlab\NetworkedGraphicsMV3500\examples\DisDemo\build\classes
warning: [options] system modules path not set in conjunction with -source 11
1 warning
compile:
run:
Sending 20 ESPDU packets on broadcast address=[/192.168.1.255] port 3000
Current position: 0.0, 1.0, 0.0
... sent 1
Current position: 0.0, 2.0, 0.0
... sent 2
Current position: 0.0, 3.0, 0.0
... sent 3
Current position: 0.0, 4.0, 0.0
... sent 4
Current position: 0.0, 5.0, 0.0
... sent 5
Current position: 0.0, 6.0, 0.0
... sent 6
Current position: 0.0, 7.0, 0.0
... sent 7
Current position: 0.0, 8.0, 0.0
... sent 8
Current position: 0.0, 9.0, 0.0
... sent 9
Current position: 0.0, 10.0, 0.0
... sent 10
Current position: 0.0, 11.0, 0.0
... sent 11
Current position: 0.0, 12.0, 0.0
... sent 12
Current position: 0.0, 13.0, 0.0
... sent 13
Current position: 0.0, 14.0, 0.0
... sent 14
Current position: 0.0, 15.0, 0.0
... sent 15
Current position: 0.0, 16.0, 0.0
... sent 16
Current position: 0.0, 17.0, 0.0
... sent 17
Current position: 0.0, 18.0, 0.0
... sent 18
Current position: 0.0, 19.0, 0.0
... sent 19
Current position: 0.0, 20.0, 0.0
... sent 20
BUILD SUCCESSFUL (total time: 21 seconds)
......@@ -28,6 +28,9 @@ public class DisDemo {
public static void main(String[] args) throws Exception
{
EntityStatePdu espdu = new EntityStatePdu();
int NUMBER_OF_SENDS = 20;
int PORT = 3000;
// Create a new coordinate system at the give latitude, longitude, and altitude
RangeCoordinates rangeCoordinates = new RangeCoordinates(31.435, 45.223, 17.0);
......@@ -53,7 +56,7 @@ public class DisDemo {
espdu.getMarking().setCharacters("lulz".getBytes());
espdu.setForceId(ForceID.FRIENDLY);
try (DatagramSocket socket = new DatagramSocket(3001))
try (DatagramSocket socket = new DatagramSocket(PORT))
{
// We set the starting position to (0,0,0) in the local coordinate
......@@ -75,7 +78,8 @@ public class DisDemo {
DatagramPacket packet;
// Do some movement for a while
for(int idx = 0; idx < 500; idx++)
System.out.println ("Sending " + NUMBER_OF_SENDS + " ESPDU packets on broadcast address=" + allBcasts + " port " + PORT);
for(int index = 1; index <= NUMBER_OF_SENDS; index++)
{
mover.step();
......@@ -94,12 +98,12 @@ public class DisDemo {
for(InetAddress aBcast: allBcasts)
{
packet = new DatagramPacket(buffer.array(), buffer.array().length, aBcast, 3000);
socket.send(packet);
packet = new DatagramPacket(buffer.array(), buffer.array().length, aBcast, PORT);
socket.send(packet);
}
Thread.sleep(1000);
System.out.println("sent " + idx);
System.out.println("... sent " + index);
}
}
catch(IOException | InterruptedException e)
......
ant -f C:\\x-nps-gitlab\\NetworkedGraphicsMV3500\\examples\\DisShooting -Dnb.internal.action.name=run run
init:
deps-jar:
compile:
run:
Announcing EntityID:
siteID: 17
applicationID: 42
entityID: 208
Announcing EntityID:
siteID: 17
applicationID: 42
entityID: 104
Going to sleep for 10 seconds to build a list of entities in the world
Adding entity (SiteID, AppID, ID): 17, 42, 104
Adding entity (SiteID, AppID, ID): 17, 42, 208
Adding entity (SiteID, AppID, ID): 17, 42, 208
Adding entity (SiteID, AppID, ID): 17, 42, 104
Adding entity (SiteID, AppID, ID): 17, 42, 104
Adding entity (SiteID, AppID, ID): 17, 42, 208
Adding entity (SiteID, AppID, ID): 17, 42, 208
Adding entity (SiteID, AppID, ID): 17, 42, 104
Adding entity (SiteID, AppID, ID): 17, 42, 104
Adding entity (SiteID, AppID, ID): 17, 42, 104
Number of entities in the world: 10
Target entity (ID, AppID, SiteID): 17, 42, 104
Target location (x, y, z): 3836082.550043152, 3866599.947492387, 3307716.3439103756
don't shoot, it's me!
Target entity (ID, AppID, SiteID): 17, 42, 208
Target location (x, y, z): 3813763.74593518, 3870225.455713479, 3329070.647929305
Target entity (ID, AppID, SiteID): 17, 42, 208
Target location (x, y, z): 3813763.74593518, 3870225.455713479, 3329070.647929305
Target entity (ID, AppID, SiteID): 17, 42, 104
Target location (x, y, z): 3836082.550043152, 3866599.947492387, 3307716.3439103756
don't shoot, it's me!
Target entity (ID, AppID, SiteID): 17, 42, 104
Target location (x, y, z): 3836082.550043152, 3866599.947492387, 3307716.3439103756
don't shoot, it's me!
Target entity (ID, AppID, SiteID): 17, 42, 104
Target location (x, y, z): 3836082.550043152, 3866599.947492387, 3307716.3439103756
don't shoot, it's me!
Target entity (ID, AppID, SiteID): 17, 42, 104
Target location (x, y, z): 3836082.550043152, 3866599.947492387, 3307716.3439103756
don't shoot, it's me!
Target entity (ID, AppID, SiteID): 17, 42, 104
Target location (x, y, z): 3836082.550043152, 3866599.947492387, 3307716.3439103756
don't shoot, it's me!
Target entity (ID, AppID, SiteID): 17, 42, 208
Target location (x, y, z): 3813763.74593518, 3870225.455713479, 3329070.647929305
Target entity (ID, AppID, SiteID): 17, 42, 208
Target location (x, y, z): 3813763.74593518, 3870225.455713479, 3329070.647929305
Going to sleep for 10 seconds to build a list of entities in the world
Adding entity (SiteID, AppID, ID): 17, 42, 104
Adding entity (SiteID, AppID, ID): 17, 42, 104
Got FirePdu:
firingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
munitionExpendibleID: EntityID:
siteID: 17
applicationID: 42
entityID: 18422
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 1
fireMissionIndex: 0
locationInWorldCoordinates: Vector3Double:
x: 3836082.550043152
y: 3866599.947492387
z: 3307716.3439103756
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 0 OTHER
domain: Other
country: Country 0 OTHER
category: 0
subCategory: 0
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 0 OTHER
fuse: MunitionDescriptorFuse 0 OTHER
quantity: 0
rate: 0
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
range: 0.0
Got DetonationPdu:
sourceEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
explodingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 18422
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 1
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
locationInWorldCoordinates: Vector3Double:
x: 3813763.74593518
y: 3870225.455713479
z: 3329070.647929305
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 2 MUNITION
domain: Land
country: Country 225 UNITED_STATES_OF_AMERICA_USA
category: 2
subCategory: 44
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 1600 HE_SHAPED_CHARGE
fuse: MunitionDescriptorFuse 1210 _100_MS_DELAY
quantity: 1
rate: 1
locationOfEntityCoordinates: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
detonationResult: DetonationResult 3 GROUND_IMPACT
pad: 0
variableParameters:
Got FirePdu:
firingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
munitionExpendibleID: EntityID:
siteID: 17
applicationID: 42
entityID: 22891
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 2
fireMissionIndex: 0
locationInWorldCoordinates: Vector3Double:
x: 3836082.550043152
y: 3866599.947492387
z: 3307716.3439103756
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 0 OTHER
domain: Other
country: Country 0 OTHER
category: 0
subCategory: 0
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 0 OTHER
fuse: MunitionDescriptorFuse 0 OTHER
quantity: 0
rate: 0
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
range: 0.0
Got DetonationPdu:
sourceEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
explodingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 22891
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 2
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
locationInWorldCoordinates: Vector3Double:
x: 3813763.74593518
y: 3870225.455713479
z: 3329070.647929305
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 2 MUNITION
domain: Land
country: Country 225 UNITED_STATES_OF_AMERICA_USA
category: 2
subCategory: 44
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 1600 HE_SHAPED_CHARGE
fuse: MunitionDescriptorFuse 1210 _100_MS_DELAY
quantity: 1
rate: 1
locationOfEntityCoordinates: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
detonationResult: DetonationResult 3 GROUND_IMPACT
pad: 0
variableParameters:
Got FirePdu:
firingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
munitionExpendibleID: EntityID:
siteID: 17
applicationID: 42
entityID: 24635
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 3
fireMissionIndex: 0
locationInWorldCoordinates: Vector3Double:
x: 3836082.550043152
y: 3866599.947492387
z: 3307716.3439103756
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 0 OTHER
domain: Other
country: Country 0 OTHER
category: 0
subCategory: 0
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 0 OTHER
fuse: MunitionDescriptorFuse 0 OTHER
quantity: 0
rate: 0
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
range: 0.0
Got DetonationPdu:
sourceEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
explodingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 24635
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 3
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
locationInWorldCoordinates: Vector3Double:
x: 3813763.74593518
y: 3870225.455713479
z: 3329070.647929305
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 2 MUNITION
domain: Land
country: Country 225 UNITED_STATES_OF_AMERICA_USA
category: 2
subCategory: 44
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 1600 HE_SHAPED_CHARGE
fuse: MunitionDescriptorFuse 1210 _100_MS_DELAY
quantity: 1
rate: 1
locationOfEntityCoordinates: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
detonationResult: DetonationResult 3 GROUND_IMPACT
pad: 0
variableParameters:
Got FirePdu:
firingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
munitionExpendibleID: EntityID:
siteID: 17
applicationID: 42
entityID: 4519
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 4
fireMissionIndex: 0
locationInWorldCoordinates: Vector3Double:
x: 3836082.550043152
y: 3866599.947492387
z: 3307716.3439103756
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 0 OTHER
domain: Other
country: Country 0 OTHER
category: 0
subCategory: 0
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 0 OTHER
fuse: MunitionDescriptorFuse 0 OTHER
quantity: 0
rate: 0
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
range: 0.0
Got DetonationPdu:
sourceEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
explodingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 4519
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 4
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
locationInWorldCoordinates: Vector3Double:
x: 3813763.74593518
y: 3870225.455713479
z: 3329070.647929305
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 2 MUNITION
domain: Land
country: Country 225 UNITED_STATES_OF_AMERICA_USA
category: 2
subCategory: 44
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 1600 HE_SHAPED_CHARGE
fuse: MunitionDescriptorFuse 1210 _100_MS_DELAY
quantity: 1
rate: 1
locationOfEntityCoordinates: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
detonationResult: DetonationResult 3 GROUND_IMPACT
pad: 0
variableParameters:
Adding entity (SiteID, AppID, ID): 17, 42, 104
Adding entity (SiteID, AppID, ID): 17, 42, 208
Adding entity (SiteID, AppID, ID): 17, 42, 208
Adding entity (SiteID, AppID, ID): 17, 42, 104
Adding entity (SiteID, AppID, ID): 17, 42, 208
Adding entity (SiteID, AppID, ID): 17, 42, 104
Adding entity (SiteID, AppID, ID): 17, 42, 208
Adding entity (SiteID, AppID, ID): 17, 42, 208
Number of entities in the world: 10
Target entity (ID, AppID, SiteID): 17, 42, 104
Target location (x, y, z): 3836082.550043152, 3866599.947492387, 3307716.3439103756
don't shoot, it's me!
Target entity (ID, AppID, SiteID): 17, 42, 208
Target location (x, y, z): 3813763.74593518, 3870225.455713479, 3329070.647929305
Got FirePdu:
firingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
munitionExpendibleID: EntityID:
siteID: 17
applicationID: 42
entityID: 19180
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 1
fireMissionIndex: 0
locationInWorldCoordinates: Vector3Double:
x: 3836082.550043152
y: 3866599.947492387
z: 3307716.3439103756
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 0 OTHER
domain: Other
country: Country 0 OTHER
category: 0
subCategory: 0
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 0 OTHER
fuse: MunitionDescriptorFuse 0 OTHER
quantity: 0
rate: 0
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
range: 0.0
Target entity (ID, AppID, SiteID): 17, 42, 208
Target location (x, y, z): 3813763.74593518, 3870225.455713479, 3329070.647929305
Got DetonationPdu:
sourceEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
explodingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 19180
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 1
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
locationInWorldCoordinates: Vector3Double:
x: 3813763.74593518
y: 3870225.455713479
z: 3329070.647929305
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 2 MUNITION
domain: Land
country: Country 225 UNITED_STATES_OF_AMERICA_USA
category: 2
subCategory: 44
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 1600 HE_SHAPED_CHARGE
fuse: MunitionDescriptorFuse 1210 _100_MS_DELAY
quantity: 1
rate: 1
locationOfEntityCoordinates: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
detonationResult: DetonationResult 3 GROUND_IMPACT
pad: 0
variableParameters:
Target entity (ID, AppID, SiteID): 17, 42, 104
Target location (x, y, z): 3836082.550043152, 3866599.947492387, 3307716.3439103756
don't shoot, it's me!
Got FirePdu:
firingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
munitionExpendibleID: EntityID:
siteID: 17
applicationID: 42
entityID: 9021
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 2
fireMissionIndex: 0
locationInWorldCoordinates: Vector3Double:
x: 3836082.550043152
y: 3866599.947492387
z: 3307716.3439103756
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 0 OTHER
domain: Other
country: Country 0 OTHER
category: 0
subCategory: 0
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 0 OTHER
fuse: MunitionDescriptorFuse 0 OTHER
quantity: 0
rate: 0
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
range: 0.0
Target entity (ID, AppID, SiteID): 17, 42, 104
Target location (x, y, z): 3836082.550043152, 3866599.947492387, 3307716.3439103756
don't shoot, it's me!
Target entity (ID, AppID, SiteID): 17, 42, 208
Target location (x, y, z): 3813763.74593518, 3870225.455713479, 3329070.647929305
Got DetonationPdu:
sourceEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
explodingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 9021
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 2
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
locationInWorldCoordinates: Vector3Double:
x: 3813763.74593518
y: 3870225.455713479
z: 3329070.647929305
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 2 MUNITION
domain: Land
country: Country 225 UNITED_STATES_OF_AMERICA_USA
category: 2
subCategory: 44
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 1600 HE_SHAPED_CHARGE
fuse: MunitionDescriptorFuse 1210 _100_MS_DELAY
quantity: 1
rate: 1
locationOfEntityCoordinates: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
detonationResult: DetonationResult 3 GROUND_IMPACT
pad: 0
variableParameters:
Target entity (ID, AppID, SiteID): 17, 42, 104
Target location (x, y, z): 3836082.550043152, 3866599.947492387, 3307716.3439103756
don't shoot, it's me!
Got FirePdu:
firingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
munitionExpendibleID: EntityID:
siteID: 17
applicationID: 42
entityID: 7320
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 3
fireMissionIndex: 0
locationInWorldCoordinates: Vector3Double:
x: 3836082.550043152
y: 3866599.947492387
z: 3307716.3439103756
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 0 OTHER
domain: Other
country: Country 0 OTHER
category: 0
subCategory: 0
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 0 OTHER
fuse: MunitionDescriptorFuse 0 OTHER
quantity: 0
rate: 0
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
range: 0.0
Target entity (ID, AppID, SiteID): 17, 42, 208
Target location (x, y, z): 3813763.74593518, 3870225.455713479, 3329070.647929305
Got DetonationPdu:
sourceEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
explodingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 7320
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 3
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
locationInWorldCoordinates: Vector3Double:
x: 3813763.74593518
y: 3870225.455713479
z: 3329070.647929305
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 2 MUNITION
domain: Land
country: Country 225 UNITED_STATES_OF_AMERICA_USA
category: 2
subCategory: 44
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 1600 HE_SHAPED_CHARGE
fuse: MunitionDescriptorFuse 1210 _100_MS_DELAY
quantity: 1
rate: 1
locationOfEntityCoordinates: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
detonationResult: DetonationResult 3 GROUND_IMPACT
pad: 0
variableParameters:
Target entity (ID, AppID, SiteID): 17, 42, 104
Target location (x, y, z): 3836082.550043152, 3866599.947492387, 3307716.3439103756
don't shoot, it's me!
Got FirePdu:
firingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
munitionExpendibleID: EntityID:
siteID: 17
applicationID: 42
entityID: 13591
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 4
fireMissionIndex: 0
locationInWorldCoordinates: Vector3Double:
x: 3836082.550043152
y: 3866599.947492387
z: 3307716.3439103756
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 0 OTHER
domain: Other
country: Country 0 OTHER
category: 0
subCategory: 0
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 0 OTHER
fuse: MunitionDescriptorFuse 0 OTHER
quantity: 0
rate: 0
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
range: 0.0
Target entity (ID, AppID, SiteID): 17, 42, 208
Target location (x, y, z): 3813763.74593518, 3870225.455713479, 3329070.647929305
Going to sleep for 10 seconds to build a list of entities in the world
Got DetonationPdu:
sourceEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
explodingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 13591
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 4
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
locationInWorldCoordinates: Vector3Double:
x: 3813763.74593518
y: 3870225.455713479
z: 3329070.647929305
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 2 MUNITION
domain: Land
country: Country 225 UNITED_STATES_OF_AMERICA_USA
category: 2
subCategory: 44
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 1600 HE_SHAPED_CHARGE
fuse: MunitionDescriptorFuse 1210 _100_MS_DELAY
quantity: 1
rate: 1
locationOfEntityCoordinates: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
detonationResult: DetonationResult 3 GROUND_IMPACT
pad: 0
variableParameters:
Got FirePdu:
firingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
munitionExpendibleID: EntityID:
siteID: 17
applicationID: 42
entityID: 27747
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 5
fireMissionIndex: 0
locationInWorldCoordinates: Vector3Double:
x: 3836082.550043152
y: 3866599.947492387
z: 3307716.3439103756
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 0 OTHER
domain: Other
country: Country 0 OTHER
category: 0
subCategory: 0
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 0 OTHER
fuse: MunitionDescriptorFuse 0 OTHER
quantity: 0
rate: 0
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
range: 0.0
Got DetonationPdu:
sourceEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
explodingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 27747
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 5
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
locationInWorldCoordinates: Vector3Double:
x: 3813763.74593518
y: 3870225.455713479
z: 3329070.647929305
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 2 MUNITION
domain: Land
country: Country 225 UNITED_STATES_OF_AMERICA_USA
category: 2
subCategory: 44
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 1600 HE_SHAPED_CHARGE
fuse: MunitionDescriptorFuse 1210 _100_MS_DELAY
quantity: 1
rate: 1
locationOfEntityCoordinates: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
detonationResult: DetonationResult 3 GROUND_IMPACT
pad: 0
variableParameters:
Adding entity (SiteID, AppID, ID): 17, 42, 104
Adding entity (SiteID, AppID, ID): 17, 42, 104
Adding entity (SiteID, AppID, ID): 17, 42, 104
Adding entity (SiteID, AppID, ID): 17, 42, 208
Adding entity (SiteID, AppID, ID): 17, 42, 104
Adding entity (SiteID, AppID, ID): 17, 42, 208
Adding entity (SiteID, AppID, ID): 17, 42, 208
Adding entity (SiteID, AppID, ID): 17, 42, 208
Adding entity (SiteID, AppID, ID): 17, 42, 208
Adding entity (SiteID, AppID, ID): 17, 42, 208
Number of entities in the world: 10
Target entity (ID, AppID, SiteID): 17, 42, 208
Target location (x, y, z): 3813763.74593518, 3870225.455713479, 3329070.647929305
Got FirePdu:
firingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
munitionExpendibleID: EntityID:
siteID: 17
applicationID: 42
entityID: 5924
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 1
fireMissionIndex: 0
locationInWorldCoordinates: Vector3Double:
x: 3836082.550043152
y: 3866599.947492387
z: 3307716.3439103756
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 0 OTHER
domain: Other
country: Country 0 OTHER
category: 0
subCategory: 0
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 0 OTHER
fuse: MunitionDescriptorFuse 0 OTHER
quantity: 0
rate: 0
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
range: 0.0
Target entity (ID, AppID, SiteID): 17, 42, 208
Target location (x, y, z): 3813763.74593518, 3870225.455713479, 3329070.647929305
Got DetonationPdu:
sourceEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
explodingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 5924
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 1
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
locationInWorldCoordinates: Vector3Double:
x: 3813763.74593518
y: 3870225.455713479
z: 3329070.647929305
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 2 MUNITION
domain: Land
country: Country 225 UNITED_STATES_OF_AMERICA_USA
category: 2
subCategory: 44
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 1600 HE_SHAPED_CHARGE
fuse: MunitionDescriptorFuse 1210 _100_MS_DELAY
quantity: 1
rate: 1
locationOfEntityCoordinates: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
detonationResult: DetonationResult 3 GROUND_IMPACT
pad: 0
variableParameters:
Target entity (ID, AppID, SiteID): 17, 42, 104
Got FirePdu:
firingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
munitionExpendibleID: EntityID:
siteID: 17
applicationID: 42
entityID: 24605
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 2
fireMissionIndex: 0
locationInWorldCoordinates: Vector3Double:
x: 3836082.550043152
y: 3866599.947492387
z: 3307716.3439103756
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 0 OTHER
domain: Other
country: Country 0 OTHER
category: 0
subCategory: 0
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 0 OTHER
fuse: MunitionDescriptorFuse 0 OTHER
quantity: 0
rate: 0
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
range: 0.0
Target location (x, y, z): 3836082.550043152, 3866599.947492387, 3307716.3439103756
don't shoot, it's me!
Target entity (ID, AppID, SiteID): 17, 42, 208
Target location (x, y, z): 3813763.74593518, 3870225.455713479, 3329070.647929305
Got DetonationPdu:
sourceEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
explodingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 24605
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 2
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
locationInWorldCoordinates: Vector3Double:
x: 3813763.74593518
y: 3870225.455713479
z: 3329070.647929305
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 2 MUNITION
domain: Land
country: Country 225 UNITED_STATES_OF_AMERICA_USA
category: 2
subCategory: 44
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 1600 HE_SHAPED_CHARGE
fuse: MunitionDescriptorFuse 1210 _100_MS_DELAY
quantity: 1
rate: 1
locationOfEntityCoordinates: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
detonationResult: DetonationResult 3 GROUND_IMPACT
pad: 0
variableParameters:
Got FirePdu:
firingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
munitionExpendibleID: EntityID:
siteID: 17
applicationID: 42
entityID: 24878
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 3
fireMissionIndex: 0
locationInWorldCoordinates: Vector3Double:
x: 3836082.550043152
y: 3866599.947492387
z: 3307716.3439103756
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 0 OTHER
domain: Other
country: Country 0 OTHER
category: 0
subCategory: 0
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 0 OTHER
fuse: MunitionDescriptorFuse 0 OTHER
quantity: 0
rate: 0
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
range: 0.0
Target entity (ID, AppID, SiteID): 17, 42, 208
Target location (x, y, z): 3813763.74593518, 3870225.455713479, 3329070.647929305
Got DetonationPdu:
sourceEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
explodingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 24878
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 3
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
locationInWorldCoordinates: Vector3Double:
x: 3813763.74593518
y: 3870225.455713479
z: 3329070.647929305
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 2 MUNITION
domain: Land
country: Country 225 UNITED_STATES_OF_AMERICA_USA
category: 2
subCategory: 44
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 1600 HE_SHAPED_CHARGE
fuse: MunitionDescriptorFuse 1210 _100_MS_DELAY
quantity: 1
rate: 1
locationOfEntityCoordinates: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
detonationResult: DetonationResult 3 GROUND_IMPACT
pad: 0
variableParameters:
Target entity (ID, AppID, SiteID): 17, 42, 208
Target location (x, y, z): 3813763.74593518, 3870225.455713479, 3329070.647929305
Got FirePdu:
firingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
munitionExpendibleID: EntityID:
siteID: 17
applicationID: 42
entityID: 23598
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 4
fireMissionIndex: 0
Exception in thread "Thread-2" java.util.ConcurrentModificationException
locationInWorldCoordinates: Vector3Double:
x: 3836082.550043152
y: 3866599.947492387
z: 3307716.3439103756
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 0 OTHER
domain: Other
country: Country 0 OTHER
category: 0
subCategory: 0
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 0 OTHER
fuse: MunitionDescriptorFuse 0 OTHER
quantity: 0
rate: 0
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
range: 0.0
Got DetonationPdu:
sourceEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
explodingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 23598
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 4
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
locationInWorldCoordinates: Vector3Double:
x: 3813763.74593518
y: 3870225.455713479
z: 3329070.647929305
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 2 MUNITION
domain: Land
country: Country 225 UNITED_STATES_OF_AMERICA_USA
category: 2
subCategory: 44
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 1600 HE_SHAPED_CHARGE
fuse: MunitionDescriptorFuse 1210 _100_MS_DELAY
quantity: 1
rate: 1
locationOfEntityCoordinates: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
detonationResult: DetonationResult 3 GROUND_IMPACT
pad: 0
variableParameters:
Target entity (ID, AppID, SiteID): 17, 42, 208
Got FirePdu:
firingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
munitionExpendibleID: EntityID:
siteID: 17
applicationID: 42
entityID: 16615
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 5
fireMissionIndex: 0
locationInWorldCoordinates: Vector3Double:
x: 3836082.550043152
y: 3866599.947492387
z: 3307716.3439103756
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 0 OTHER
domain: Other
country: Country 0 OTHER
category: 0
subCategory: 0
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 0 OTHER
fuse: MunitionDescriptorFuse 0 OTHER
quantity: 0
rate: 0
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
range: 0.0
Target location (x, y, z): 3813763.74593518, 3870225.455713479, 3329070.647929305
Got DetonationPdu:
sourceEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
explodingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 16615
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 5
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
locationInWorldCoordinates: Vector3Double:
x: 3813763.74593518
y: 3870225.455713479
z: 3329070.647929305
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 2 MUNITION
domain: Land
country: Country 225 UNITED_STATES_OF_AMERICA_USA
category: 2
subCategory: 44
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 1600 HE_SHAPED_CHARGE
fuse: MunitionDescriptorFuse 1210 _100_MS_DELAY
quantity: 1
rate: 1
locationOfEntityCoordinates: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
detonationResult: DetonationResult 3 GROUND_IMPACT
pad: 0
variableParameters:
Got FirePdu:
firingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
munitionExpendibleID: EntityID:
siteID: 17
applicationID: 42
entityID: 17932
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 6
fireMissionIndex: 0
locationInWorldCoordinates: Vector3Double:
x: 3836082.550043152
y: 3866599.947492387
z: 3307716.3439103756
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 0 OTHER
domain: Other
country: Country 0 OTHER
category: 0
subCategory: 0
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 0 OTHER
fuse: MunitionDescriptorFuse 0 OTHER
quantity: 0
rate: 0
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
range: 0.0
Target entity (ID, AppID, SiteID): 17, 42, 104
Target location (x, y, z): 3836082.550043152, 3866599.947492387, 3307716.3439103756
don't shoot, it's me!
Target entity (ID, AppID, SiteID): 17, 42, 104
Target location (x, y, z): 3836082.550043152, 3866599.947492387, 3307716.3439103756
don't shoot, it's me!
Got DetonationPdu:
sourceEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 104
targetEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 208
explodingEntityID: EntityID:
siteID: 17
applicationID: 42
entityID: 17932
eventID: EventIdentifier:
simulationAddress: SimulationAddress:
site: 17
application: 42
eventNumber: 6
velocity: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
locationInWorldCoordinates: Vector3Double:
x: 3813763.74593518
y: 3870225.455713479
z: 3329070.647929305
descriptor: MunitionDescriptor:
munitionType: EntityType:
entityKind: EntityKind 2 MUNITION
domain: Land
country: Country 225 UNITED_STATES_OF_AMERICA_USA
category: 2
subCategory: 44
specific: 0
extra: 0
warhead: MunitionDescriptorWarhead 1600 HE_SHAPED_CHARGE
fuse: MunitionDescriptorFuse 1210 _100_MS_DELAY
quantity: 1
rate: 1
locationOfEntityCoordinates: Vector3Float:
x: 0.0
y: 0.0
z: 0.0
detonationResult: DetonationResult 3 GROUND_IMPACT
pad: 0
variableParameters:
Target entity (ID, AppID, SiteID): 17, 42, 104
Target location (x, y, z): 3836082.550043152, 3866599.947492387, 3307716.3439103756
don't shoot, it's me!
Adding entity (SiteID, AppID, ID): 17, 42, 104
BUILD SUCCESSFUL (total time: 30 seconds)
# Finish, ENCODING_PLAINTEXT, 20201115_145232, DIS capture file, pduLog\PduCaptureLog1.dislog
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment