forked from open-dis/xmlpg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDIS2012.json
More file actions
8768 lines (8768 loc) · 231 KB
/
Copy pathDIS2012.json
File metadata and controls
8768 lines (8768 loc) · 231 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"classes": {
"java": {
"_imports": "java.util.*, java.io.*, edu.nps.moves.disenum.*, edu.nps.moves.disutil.*",
"_package": "edu.nps.moves.dis",
"_directory": "main/java/edu/nps/moves/dis",
"_usesJaxb": "true",
"_usesHibernate": "true"
},
"csharp": {
"_using": "System, System.Collections.Generic, System.Text, System.Diagnostics, System.Xml.Serialization, DISnet.DataStreamUtilities",
"_namespace": "DIS1998net",
"_directory": "CSharp/DIS"
},
"cpp": {
"_namespace": "DIS",
"_directory": "cpp/DIS"
},
"class": [
{
"attribute": [
{
"primitive": {
"_type": "unsigned short"
},
"_name": "acousticSystemName",
"_comment": "the system for a particular UA emitter, and an enumeration"
},
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "acousticFunction",
"_comment": "The function of the acoustic system"
},
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "acousticIDNumber",
"_comment": "The UA emitter identification number relative to a specific system"
}
],
"_name": "AcousticEmitter",
"_inheritsFrom": "root",
"_comment": " information about a specific UA emmtter. Section 6.2.2."
},
{
"attribute": [
{
"classRef": {
"_name": "SimulationAddress"
},
"_name": "simulationAddress",
"_comment": "Simulation address, ie site and application, the first two fields of the entity ID"
},
{
"primitive": {
"_type": "unsigned short"
},
"_name": "aggregateID",
"_comment": "the aggregate ID"
}
],
"_name": "AggregateIdentifier",
"_inheritsFrom": "root",
"_comment": "The unique designation of each aggrgate in an exercise is specified by an aggregate identifier record. The aggregate ID is not an entity and shall not be treated as such. Section 6.2.3."
},
{
"attribute": [
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "characterSet",
"_comment": "The character set"
},
{
"list": {
"primitive": {
"_type": "unsigned byte"
},
"_type": "fixed",
"_length": "31",
"_couldBeString": "true"
},
"_name": "characters",
"_comment": "The characters"
}
],
"_name": "AggregateMarking",
"_inheritsFrom": "root",
"_comment": "Specifies the character set used in the first byte, followed by up to 31 characters of text data. Section 6.2.4. "
},
{
"attribute": [
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "aggregateKind",
"_comment": "Grouping criterion used to group the aggregate. Enumeration from EBV document"
},
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "domain",
"_comment": "Domain of entity (air, surface, subsurface, space, etc) Zero means domain does not apply."
},
{
"primitive": {
"_type": "unsigned short"
},
"_name": "country",
"_comment": "country to which the design of the entity is attributed"
},
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "category",
"_comment": "category of entity"
},
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "subcategory",
"_comment": "subcategory of entity"
},
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "specificInfo",
"_comment": "specific info based on subcategory field. specific is a reserved word in sql."
},
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "extra"
}
],
"_name": "AggregateType",
"_inheritsFrom": "root",
"_comment": "Identifies the type and organization of an aggregate. Section 6.2.5"
},
{
"attribute": [
{
"primitive": {
"_type": "float",
"_defaultValue": "0"
},
"_name": "x",
"_comment": "velocity about the x axis"
},
{
"primitive": {
"_type": "float",
"_defaultValue": "0"
},
"_name": "y",
"_comment": "velocity about the y axis"
},
{
"primitive": {
"_type": "float",
"_defaultValue": "0"
},
"_name": "z",
"_comment": "velocity about the zaxis"
}
],
"_name": "AngularVelocityVector",
"_inheritsFrom": "root",
"_comment": "Angular velocity measured in radians per second out each of the entity's own coordinate axes. Order of measurement is angular velocity around the x, y, and z axis of the entity. The positive direction is determined by the right hand rule. Section 6.2.7"
},
{
"attribute": [
{
"classref": {
"_name": "Vector3Double"
},
"_name": "antennaLocation",
"_comment": "Location of the radiating portion of the antenna in world coordinates"
},
{
"classref": {
"_name": "Vector3Float"
},
"_name": "relativeAntennaLocation",
"_comment": "Location of the radiating portion of the antenna in entity coordinates"
}
],
"_name": "AntennaLocation",
"_inheritsFrom": "root",
"_comment": "Location of the radiating portion of the antenna, specified in world coordinates and entity coordinates. Section 6.2.8"
},
{
"attribute": [
{
"classref": {
"_name": "EulerAngles"
},
"_name": "beamDirection",
"_comment": "The rotation that transforms the reference coordinate sytem into the beam coordinate system. Either world coordinates or entity coordinates may be used as the reference coordinate system, as specified by the reference system field of the antenna pattern record."
},
{
"primitive": {
"_type": "float",
"_defaultValue": "0"
},
"_name": "azimuthBeamwidth",
"_commment": "Full width of the beam to the -3dB power density points in the x-y plane of the beam coordinnate system. Elevation beamwidth is represented by a 32 bit floating point number in units of radians."
},
{
"primitive": {
"_type": "float",
"_defaultValue": "0"
},
"_name": "elevationBeamwidth",
"_commment": "This field shall specify the full width of the beam to the –3 dB power density points in the x-z plane of the beam coordinate system. Elevation beamwidth shall be represented by a 32-bit floating point number in units of radians."
},
{
"primitive": {
"_type": "unsigned byte",
"_defaultValue": "0"
},
"_name": "referenceSystem",
"_commment": "The reference coordinate system wrt which beam direction is specified. This field should not change over the duration of an exercise. World coordindate systemis prefered for exercises. The entity coordinate system should be used only when highly directional antennas must be precisely modeled."
},
{
"primitive": {
"_type": "unsigned byte",
"_defaultValue": "0"
},
"_name": "padding1",
"_commment": "Padding"
},
{
"primitive": {
"_type": "unsigned short",
"_defaultValue": "0"
},
"_name": "padding2",
"_commment": "Padding"
},
{
"primitive": {
"_type": "float",
"_defaultValue": "0.0"
},
"_name": "ez",
"_comment": "This field shall specify the magnitude of the Z-component (in beam coordinates) of the Electrical field at some arbitrary single point in the main beam and in the far field of the antenna. "
},
{
"primitive": {
"_type": "float",
"_defaultValue": "0.0"
},
"_name": "ex",
"_comment": "This field shall specify the magnitude of the X-component (in beam coordinates) of the Electri- cal field at some arbitrary single point in the main beam and in the far field of the antenna."
},
{
"primitive": {
"_type": "float",
"_defaultValue": "0.0"
},
"_name": "phase",
"_comment": "This field shall specify the phase angle between EZ and EX in radians. If fully omni-direc- tional antenna is modeled using beam pattern type one, the omni-directional antenna shall be repre- sented by beam direction Euler angles psi, theta, and phi of zero, an azimuth beamwidth of 2PI, and an elevation beamwidth of PI"
},
{
"primitive": {
"_type": "unsigned int",
"_defaultValue": "0"
},
"_name": "padding3",
"_comment": "padding"
}
],
"_name": "BeamAntennaPattern",
"_inheritsFrom": "root",
"_comment": "Used when the antenna pattern type field has a value of 1. Specifies the direction, pattern, and polarization of radiation from an antenna. Section 6.2.9.2"
},
{
"attribute": [
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "associationType",
"_commment": "This field shall indicate the type of association. It shall be represented by an 8-bit enumeration. Values for this field are found in Section 14 of SISO-REF-010"
},
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "padding4",
"_commment": "Padding"
},
{
"classRef": {
"_name": "EntityID"
},
"_name": "associatedEntityID",
"_comment": "identity of associated entity. If none, NO_SPECIFIC_ENTITY"
},
{
"classRef": {
"_name": "Vector3Double"
},
"_name": "associatedLocation",
"_comment": "location, in world coordinates"
}
],
"_name": "Association",
"_inheritsFrom": "root",
"_comment": "An entity's associations with other entities and/or locations. For each association, this record shall specify the type of the association, the associated entity's EntityID and/or the associated location's world coordinates. This record may be used (optionally) in a transfer transaction to send internal state data from the divesting simulation to the acquiring simulation (see 5.9.4). This record may also be used for other purposes. Section 6.2.9"
},
{
"attribute": [
{
"primitive": {
"_type": "unsigned int"
},
"_name": "recordType",
"_commment": "The record type for this attribute. Enumeration"
},
{
"primitive": {
"_type": "unsigned short"
},
"_name": "recordLength",
"_commment": "Total length of the record in octets. The record shall end on a 64-bit boundary after any padding. = 6 + K + P"
},
{
"primitive": {
"_type": "unsigned long"
},
"_name": "recordSpecificFields",
"_commment": "The attribute data format conforming to that specified by the record type. K bytes long"
}
],
"_name": "Attribute",
"_inheritsFrom": "root",
"_comment": "Used to convey information for one or more attributes. Attributes conform to the standard variable record format of 6.2.82. Section 6.2.10. NOT COMPLETE"
},
{
"attribute": [
{
"primitive": {
"_type": "float"
},
"_name": "beamAzimuthCenter",
"_comment": "Specifies the beam azimuth an elevation centers and corresponding half-angles to describe the scan volume"
},
{
"primitive": {
"_type": "float"
},
"_name": "beamAzimuthSweep",
"_comment": "Specifies the beam azimuth sweep to determine scan volume"
},
{
"primitive": {
"_type": "float"
},
"_name": "beamElevationCenter",
"_comment": "Specifies the beam elevation center to determine scan volume"
},
{
"primitive": {
"_type": "float"
},
"_name": "beamElevationSweep",
"_comment": "Specifies the beam elevation sweep to determine scan volume"
},
{
"primitive": {
"_type": "float"
},
"_name": "beamSweepSync",
"_comment": "allows receiver to synchronize its regenerated scan pattern to that of the emmitter. Specifies the percentage of time a scan is through its pattern from its origion."
}
],
"_name": "BeamData",
"_inheritsFrom": "root",
"_comment": "Describes the scan volue of an emitter beam. Section 6.2.11."
},
{
"_name": "ChangeOptions",
"_comment": "This is wrong and breaks serialization. See section 6.2.13 aka B.2.41"
},
{
"attribute": {
"primitive": {
"_type": "unsigned byte"
},
"_name": "beamState",
"_comment": "First bit zero means beam is active, first bit = 1 means deactivated. The rest is padding."
},
"_name": "BeamStatus",
"_inheritsFrom": "root",
"_comment": "Information related to the status of a beam. This is contained in the beam status field of the electromagnitec emission PDU. The first bit determines whether the beam is active (0) or deactivated (1). Section 6.2.12."
},
{
"attribute": [
{
"primitive": {
"_type": "unsigned int"
},
"_name": "hour",
"_comment": "Hours in UTC"
},
{
"primitive": {
"_type": "unsigned int"
},
"_name": "timePastHour",
"_comment": "Time past the hour"
}
],
"_name": "ClockTime",
"_inheritsFrom": "root",
"_comment": "Time measurements that exceed one hour are represented by this record. The first field is the hours since the unix epoch (Jan 1 1970, used by most Unix systems and java) and the second field the timestamp units since the top of the hour. Section 6.2.14"
},
{
"attribute": [
{
"primitive": {
"_type": "unsigned int",
"_defaultValue": "4500",
"_comment": "record type is always 4500"
},
"_name": "recordType",
"_comment": "DE Record Type."
},
{
"primitive": {
"_type": "unsigned short",
"_defaultValue": "40"
},
"_name": "recordLength",
"_comment": "DE Record Length (bytes)."
},
{
"primitive": {
"_type": "unsigned short",
"_defaultValue": "0"
},
"_name": "padding",
"_comment": "padding."
},
{
"classref": {
"_name": "Vector3Float"
},
"_name": "damageLocation",
"_comment": "location of damage, relative to center of entity"
},
{
"primitive": {
"_type": "float"
},
"_name": "damageDiameter",
"_comment": "Size of damaged area, in meters."
},
{
"primitive": {
"_type": "float",
"_defaultValue": "-273.15"
},
"_name": "temperature",
"_comment": "average temp of the damaged area, in degrees celsius. If firing entitty does not model this, use a value of -273.15"
},
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "componentIdentification",
"_comment": "enumeration"
},
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "componentDamageStatus",
"_comment": "enumeration"
},
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "componentVisualDamageStatus",
"_comment": "enumeration"
},
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "componentVisualSmokeColor",
"_comment": "enumeration"
},
{
"classref": {
"_name": "EventIdentifier"
},
"_name": "fireEventID",
"_comment": "For any component damage resulting this field shall be set to the fire event ID from that PDU."
},
{
"primitive": {
"_type": "unsigned short",
"_defaultValue": "0"
},
"_name": "padding2",
"_comment": "padding"
}
],
"_name": "DirectedEnergyDamage",
"_inheritsFrom": "root",
"_comment": "Damage sustained by an entity due to directed energy. Location of the damage based on a relative x,y,z location from the center of the entity. Section 6.2.15.2"
},
{
"attribute": {
"primitive": {
"_type": "unsigned int",
"_comment": "Bit flags for fields"
},
"_name": "bitFlags",
"_comment": "Bitflags field"
},
"_name": "DataFilterRecord",
"_comment": "identify which of the optional data fields are contained in the Minefield Data PDU or requested in the Minefield Query PDU. This is a 32-bit record. For each field, true denotes that the data is requested or present and false denotes that the data is neither requested nor present. Section 6.2.16"
},
{
"attribute": {
"primitive": {
"_type": "unsigned int"
},
"_name": "val",
"_comment": "unsigned integer"
},
"_name": "UnsignedDISInteger",
"_comment": "container class not in specification",
"_inheritsFrom": "root"
},
{
"attribute": [
{
"primitive": {
"_type": "unsigned int"
},
"_name": "numberOfFixedDatums",
"_comment": "Number of fixed datums"
},
{
"primitive": {
"_type": "unsigned int"
},
"_name": "numberOfVariableDatums",
"_comment": "Number of variable datums"
},
{
"list": {
"classRef": {
"_name": "UnsignedDISInteger"
},
"_type": "variable",
"_countFieldName": "numberOfFixedDatums"
},
"_name": "fixedDatumIDList",
"_comment": "variable length list fixed datum IDs"
},
{
"list": {
"classRef": {
"_name": "UnsignedDISInteger"
},
"_type": "variable",
"_countFieldName": "numberOfVariableDatums"
},
"_name": "variableDatumIDList",
"_comment": "variable length list variable datum IDs"
}
],
"_name": "DataQueryDatumSpecification",
"_inheritsFrom": "root",
"_comment": "List of fixed and variable datum records. Section 6.2.17 "
},
{
"attribute": [
{
"primitive": {
"_type": "unsigned int"
},
"_name": "numberOfFixedDatums",
"_comment": "Number of fixed datums"
},
{
"primitive": {
"_type": "unsigned int"
},
"_name": "numberOfVariableDatums",
"_comment": "Number of variable datums"
},
{
"list": {
"classRef": {
"_name": "FixedDatum"
},
"_type": "variable",
"_countFieldName": "numberOfFixedDatums"
},
"_name": "fixedDatumIDList",
"_comment": "variable length list fixed datums"
},
{
"list": {
"classRef": {
"_name": "VariableDatum"
},
"_type": "variable",
"_countFieldName": "numberOfVariableDatums"
},
"_name": "variableDatumIDList",
"_comment": "variable length list variable datums"
}
],
"_name": "DatumSpecification",
"_inheritsFrom": "root",
"_comment": "List of fixed and variable datum records. Section 6.2.18 "
},
{
"attribute": [
{
"classRef": {
"_name": "EntityType"
},
"_name": "munitionType",
"_comment": "What munition was used in the burst"
},
{
"primitive": {
"_type": "unsigned short"
},
"_name": "warhead",
"_comment": "type of warhead enumeration"
},
{
"primitive": {
"_type": "unsigned short"
},
"_name": "fuse",
"_comment": "type of fuse used enumeration"
},
{
"primitive": {
"_type": "unsigned short"
},
"_name": "quantity",
"_comment": "how many of the munition were fired"
},
{
"primitive": {
"_type": "unsigned short"
},
"_name": "rate",
"_comment": "rate at which the munition was fired"
}
],
"_name": "MunitionDescriptor",
"_inheritsFrom": "root",
"_comment": "Represents the firing or detonation of a munition. Section 6.2.19.2"
},
{
"attribute": [
{
"classref": {
"_name": "EntityType"
},
"_name": "explodingObject",
"_comment": "Type of the object that exploded. See 6.2.30"
},
{
"primitive": {
"_type": "unsigned short"
},
"_name": "explosiveMaterial",
"_comment": "Material that exploded. Can be grain dust, tnt, gasoline, etc. Enumeration"
},
{
"primitive": {
"_type": "unsigned short",
"_defaultValue": "0"
},
"_name": "padding",
"_comment": "padding"
},
{
"primitive": {
"_type": "float"
},
"_name": "explosiveForce",
"_comment": "Force of explosion, in equivalent KG of TNT"
}
],
"_name": "ExplosionDescriptor",
"_inheritsFrom": "root",
"_comment": "Explosion of a non-munition. Section 6.2.19.3"
},
{
"attribute": [
{
"classref": {
"_name": "EntityType"
},
"_name": "expendableType",
"_comment": "Type of the object that exploded"
},
{
"primitive": {
"_type": "long",
"_defaultValue": "0"
},
"_name": "padding",
"_comment": "Padding"
}
],
"_name": "ExpendableDescriptor",
"_inheritsFrom": "root",
"_comment": "Burst of chaff or expendible device. Section 6.2.19.4"
},
{
"attribute": [
{
"primitive": {
"_type": "unsigned int",
"_defaultValue": "4001"
},
"_name": "recordType",
"_comment": "Type of Record enumeration"
},
{
"primitive": {
"_type": "unsigned short"
},
"_name": "recordLength",
"_comment": "Length of Record"
},
{
"primitive": {
"_type": "unsigned short",
"_defaultValue": "0"
},
"_name": "padding",
"_comment": "Padding"
},
{
"primitive": {
"_type": "unsigned short",
"_defaultValue": "0"
},
"_name": "beamAntennaPatternRecordCount",
"_comment": "Number of beam antenna pattern records"
},
{
"primitive": {
"_type": "unsigned short",
"_defaultValue": "0"
},
"_name": "directedEnergyTargetEnergyDepositionRecordCount",
"_comment": "Number of DE target energy depositon records"
},
{
"list": {
"classRef": {
"_name": "BeamAntennaPattern"
},
"_type": "variable",
"_countFieldName": "beamAntennaPatternRecordCount"
},
"_name": "beamAntennaParameterList",
"_comment": "list of beam antenna records. See 6.2.9.2"
},
{
"list": {
"classRef": {
"_name": "DirectedEnergyTargetEnergyDeposition"
},
"_type": "variable",
"_countFieldName": "directedEnergyTargetEnergyDepositionRecordCount"
},
"_name": "directedEnergyTargetEnergyDepositionRecordList",
"_comment": "list of DE target deposition records. See 6.2.21.4"
}
],
"_name": "DirectedEnergyAreaAimpoint",
"_inheritsFrom": "root",
"_comment": "DE Precision Aimpoint Record. NOT COMPLETE. Section 6.2.20.2"
},
{
"attribute": [
{
"primitive": {
"_type": "unsigned int",
"_defaultValue": "4000"
},
"_name": "recordType",
"_comment": "Type of Record"
},
{
"primitive": {
"_type": "unsigned short",
"_defaultValue": "88"
},
"_name": "recordLength",
"_comment": "Length of Record"
},
{
"primitive": {
"_type": "unsigned short",
"_defaultValue": "0"
},
"_name": "padding",
"_comment": "Padding"
},
{
"classref": {
"_name": "Vector3Double"
},
"_name": "targetSpotLocation",
"_comment": "Position of Target Spot in World Coordinates."
},
{
"classref": {
"_name": "Vector3Float"
},
"_name": "targetSpotEntityLocation",
"_comment": "Position (meters) of Target Spot relative to Entity Position."
},
{
"classref": {
"_name": "Vector3Float"
},
"_name": "targetSpotVelocity",
"_comment": "Velocity (meters/sec) of Target Spot."
},
{
"classref": {
"_name": "Vector3Float"
},
"_name": "targetSpotAcceleration",
"_comment": "Acceleration (meters/sec/sec) of Target Spot."
},
{
"classref": {
"_name": "EntityID"
},
"_name": "targetEntityID",
"_comment": "Unique ID of the target entity."
},
{
"primitive": {
"_type": "unsigned byte",
"_defaultValue": "0"
},
"_name": "targetComponentID",
"_comment": "Target Component ID ENUM, same as in DamageDescriptionRecord."
},
{
"primitive": {
"_type": "unsigned byte",
"_defaultValue": "0"
},
"_name": "beamSpotType",
"_comment": "Spot Shape ENUM."
},
{
"primitive": {
"_type": "float",
"_defaultValue": "0"
},
"_name": "beamSpotCrossSectionSemiMajorAxis",
"_comment": "Beam Spot Cross Section Semi-Major Axis."
},
{
"primitive": {
"_type": "float",
"_defaultValue": "0"
},
"_name": "beamSpotCrossSectionSemiMinorAxis",
"_comment": "Beam Spot Cross Section Semi-Major Axis."
},
{
"primitive": {
"_type": "float",
"_defaultValue": "0"
},
"_name": "beamSpotCrossSectionOrientationAngle",
"_comment": "Beam Spot Cross Section Orientation Angle."
},
{
"primitive": {
"_type": "float",
"_defaultValue": "0"
},
"_name": "peakIrradiance",
"_comment": "Peak irradiance"
},
{
"primitive": {
"_type": "unsigned int",
"_defaultValue": "0"
},
"_name": "padding2",
"_comment": "padding"
}
],
"_name": "DirectedEnergyPrecisionAimpoint",
"_inheritsFrom": "root",
"_comment": "DE Precision Aimpoint Record. Section 6.2.20.3"
},
{
"attribute": [
{
"classref": {
"_name": "EntityID"
},
"_name": "targetEntityID",
"_comment": "Unique ID of the target entity."
},
{
"primitive": {
"_type": "unsigned short",
"_defaultValue": "0"
},
"_name": "padding",
"_comment": "padding"
},
{
"primitive": {
"_type": "float"
},
"_name": "peakIrradiance",
"_comment": "Peak irrandiance"
}
],
"_name": "DirectedEnergyTargetEnergyDeposition",
"_inheritsFrom": "root",
"_comment": "DE energy depostion properties for a target entity. Section 6.2.20.4"
},
{
"attribute": [
{
"primitive": {
"_type": "int",
"_defaultValue": "3500"
},
"_name": "recordType",
"_commment": "record type"
},
{
"primitive": {
"_type": "unsigned short",
"_defaultValue": "40"
},
"_name": "recordLength",
"_commment": "the length of the Blanking Sector attribute record in octets."
},
{
"primitive": {
"_type": "unsigned short",
"_defaultValue": "0"
},
"_name": "padding",
"_commment": "Pading"
},
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "emitterNumber",
"_commment": "indicates the emitter system for which the blanking sector values are applicable"
},
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "beamNumber",
"_commment": "indicates the beam for which the blanking sector values are applicable."
},
{
"primitive": {
"_type": "unsigned byte"
},
"_name": "stateIndicator",