This file is indexed.

/usr/src/castle-game-engine-4.1.1/x3d/x3d_dis.inc is in castle-game-engine-src 4.1.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
{
  Copyright 2008-2013 Michalis Kamburelis.

  This file is part of "Castle Game Engine".

  "Castle Game Engine" is free software; see the file COPYING.txt,
  included in this distribution, for details about the copyright.

  "Castle Game Engine" is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

  ----------------------------------------------------------------------------
}

{$ifdef read_interface}
  { }
  TDISEntityManagerNode = class(TAbstractChildNode)
  public
    procedure CreateNode; override;
    class function ClassNodeTypeName: string; override;
    class function URNMatching(const URN: string): boolean; override;

    private FFdAddress: TSFString;
    public property FdAddress: TSFString read FFdAddress;

    private FFdApplicationID: TSFInt32;
    public property FdApplicationID: TSFInt32 read FFdApplicationID;

    private FFdMapping: TMFNode;
    public property FdMapping: TMFNode read FFdMapping;

    private FFdPort: TSFInt32;
    public property FdPort: TSFInt32 read FFdPort;

    private FFdSiteID: TSFInt32;
    public property FdSiteID: TSFInt32 read FFdSiteID;

    { Event: MFNode, out } { }
    private FEventAddedEntities: TX3DEvent;
    public property EventAddedEntities: TX3DEvent read FEventAddedEntities;

    { Event: MFNode, out } { }
    private FEventRemovedEntities: TX3DEvent;
    public property EventRemovedEntities: TX3DEvent read FEventRemovedEntities;
  end;

  TDISEntityTypeMappingNode = class(TAbstractInfoNode, IAbstractUrlObject)
  public
    procedure CreateNode; override;
    class function ClassNodeTypeName: string; override;
    class function URNMatching(const URN: string): boolean; override;

    private FFdUrl: TMFString;
    public property FdUrl: TMFString read FFdUrl;

    private FFdCategory: TSFInt32;
    public property FdCategory: TSFInt32 read FFdCategory;

    private FFdCountry: TSFInt32;
    public property FdCountry: TSFInt32 read FFdCountry;

    private FFdDomain: TSFInt32;
    public property FdDomain: TSFInt32 read FFdDomain;

    private FFdExtra: TSFInt32;
    public property FdExtra: TSFInt32 read FFdExtra;

    private FFdKind: TSFInt32;
    public property FdKind: TSFInt32 read FFdKind;

    private FFdSpecific: TSFInt32;
    public property FdSpecific: TSFInt32 read FFdSpecific;

    private FFdSubcategory: TSFInt32;
    public property FdSubcategory: TSFInt32 read FFdSubcategory;
  end;

  TEspduTransformNode = class(TAbstractX3DGroupingNode, IAbstractSensorNode)
  public
    procedure CreateNode; override;
    class function ClassNodeTypeName: string; override;
    class function URNMatching(const URN: string): boolean; override;

    { Event: SFFloat, in } { }
    private FEventSet_articulationParameterValue0: TX3DEvent;
    public property EventSet_articulationParameterValue0: TX3DEvent read FEventSet_articulationParameterValue0;

    { Event: SFFloat, in } { }
    private FEventSet_articulationParameterValue1: TX3DEvent;
    public property EventSet_articulationParameterValue1: TX3DEvent read FEventSet_articulationParameterValue1;

    { Event: SFFloat, in } { }
    private FEventSet_articulationParameterValue2: TX3DEvent;
    public property EventSet_articulationParameterValue2: TX3DEvent read FEventSet_articulationParameterValue2;

    { Event: SFFloat, in } { }
    private FEventSet_articulationParameterValue3: TX3DEvent;
    public property EventSet_articulationParameterValue3: TX3DEvent read FEventSet_articulationParameterValue3;

    { Event: SFFloat, in } { }
    private FEventSet_articulationParameterValue4: TX3DEvent;
    public property EventSet_articulationParameterValue4: TX3DEvent read FEventSet_articulationParameterValue4;

    { Event: SFFloat, in } { }
    private FEventSet_articulationParameterValue5: TX3DEvent;
    public property EventSet_articulationParameterValue5: TX3DEvent read FEventSet_articulationParameterValue5;

    { Event: SFFloat, in } { }
    private FEventSet_articulationParameterValue6: TX3DEvent;
    public property EventSet_articulationParameterValue6: TX3DEvent read FEventSet_articulationParameterValue6;

    { Event: SFFloat, in } { }
    private FEventSet_articulationParameterValue7: TX3DEvent;
    public property EventSet_articulationParameterValue7: TX3DEvent read FEventSet_articulationParameterValue7;

    private FFdAddress: TSFString;
    public property FdAddress: TSFString read FFdAddress;

    private FFdApplicationID: TSFInt32;
    public property FdApplicationID: TSFInt32 read FFdApplicationID;

    private FFdArticulationParameterCount: TSFInt32;
    public property FdArticulationParameterCount: TSFInt32 read FFdArticulationParameterCount;

    private FFdArticulationParameterDesignatorArray: TMFInt32;
    public property FdArticulationParameterDesignatorArray: TMFInt32 read FFdArticulationParameterDesignatorArray;

    private FFdArticulationParameterChangeIndicatorArray: TMFInt32;
    public property FdArticulationParameterChangeIndicatorArray: TMFInt32 read FFdArticulationParameterChangeIndicatorArray;

    private FFdArticulationParameterIdPartAttachedToArray: TMFInt32;
    public property FdArticulationParameterIdPartAttachedToArray: TMFInt32 read FFdArticulationParameterIdPartAttachedToArray;

    private FFdArticulationParameterTypeArray: TMFInt32;
    public property FdArticulationParameterTypeArray: TMFInt32 read FFdArticulationParameterTypeArray;

    private FFdArticulationParameterArray: TMFFloat;
    public property FdArticulationParameterArray: TMFFloat read FFdArticulationParameterArray;

    private FFdCenter: TSFVec3f;
    public property FdCenter: TSFVec3f read FFdCenter;

    private FFdCollisionType: TSFInt32;
    public property FdCollisionType: TSFInt32 read FFdCollisionType;

    private FFdDeadReckoning: TSFInt32;
    public property FdDeadReckoning: TSFInt32 read FFdDeadReckoning;

    private FFdDetonationLocation: TSFVec3f;
    public property FdDetonationLocation: TSFVec3f read FFdDetonationLocation;

    private FFdDetonationRelativeLocation: TSFVec3f;
    public property FdDetonationRelativeLocation: TSFVec3f read FFdDetonationRelativeLocation;

    private FFdDetonationResult: TSFInt32;
    public property FdDetonationResult: TSFInt32 read FFdDetonationResult;

    private FFdEnabled: TSFBool;
    public property FdEnabled: TSFBool read FFdEnabled;

    private FFdEntityCategory: TSFInt32;
    public property FdEntityCategory: TSFInt32 read FFdEntityCategory;

    private FFdEntityCountry: TSFInt32;
    public property FdEntityCountry: TSFInt32 read FFdEntityCountry;

    private FFdEntityDomain: TSFInt32;
    public property FdEntityDomain: TSFInt32 read FFdEntityDomain;

    private FFdEntityExtra: TSFInt32;
    public property FdEntityExtra: TSFInt32 read FFdEntityExtra;

    private FFdEntityID: TSFInt32;
    public property FdEntityID: TSFInt32 read FFdEntityID;

    private FFdEntityKind: TSFInt32;
    public property FdEntityKind: TSFInt32 read FFdEntityKind;

    private FFdEntitySpecific: TSFInt32;
    public property FdEntitySpecific: TSFInt32 read FFdEntitySpecific;

    private FFdEntitySubCategory: TSFInt32;
    public property FdEntitySubCategory: TSFInt32 read FFdEntitySubCategory;

    private FFdEventApplicationID: TSFInt32;
    public property FdEventApplicationID: TSFInt32 read FFdEventApplicationID;

    private FFdEventEntityID: TSFInt32;
    public property FdEventEntityID: TSFInt32 read FFdEventEntityID;

    private FFdEventNumber: TSFInt32;
    public property FdEventNumber: TSFInt32 read FFdEventNumber;

    private FFdEventSiteID: TSFInt32;
    public property FdEventSiteID: TSFInt32 read FFdEventSiteID;

    private FFdFired1: TSFBool;
    public property FdFired1: TSFBool read FFdFired1;

    private FFdFired2: TSFBool;
    public property FdFired2: TSFBool read FFdFired2;

    private FFdFireMissionIndex: TSFInt32;
    public property FdFireMissionIndex: TSFInt32 read FFdFireMissionIndex;

    private FFdFiringRange: TSFFloat;
    public property FdFiringRange: TSFFloat read FFdFiringRange;

    private FFdFiringRate: TSFInt32;
    public property FdFiringRate: TSFInt32 read FFdFiringRate;

    private FFdForceID: TSFInt32;
    public property FdForceID: TSFInt32 read FFdForceID;

    private FFdFuse: TSFInt32;
    public property FdFuse: TSFInt32 read FFdFuse;

    private FFdLinearVelocity: TSFVec3f;
    public property FdLinearVelocity: TSFVec3f read FFdLinearVelocity;

    private FFdLinearAcceleration: TSFVec3f;
    public property FdLinearAcceleration: TSFVec3f read FFdLinearAcceleration;

    private FFdMarking: TSFString;
    public property FdMarking: TSFString read FFdMarking;

    private FFdMulticastRelayHost: TSFString;
    public property FdMulticastRelayHost: TSFString read FFdMulticastRelayHost;

    private FFdMulticastRelayPort: TSFInt32;
    public property FdMulticastRelayPort: TSFInt32 read FFdMulticastRelayPort;

    private FFdMunitionApplicationID: TSFInt32;
    public property FdMunitionApplicationID: TSFInt32 read FFdMunitionApplicationID;

    private FFdMunitionEndPoint: TSFVec3f;
    public property FdMunitionEndPoint: TSFVec3f read FFdMunitionEndPoint;

    private FFdMunitionEntityID: TSFInt32;
    public property FdMunitionEntityID: TSFInt32 read FFdMunitionEntityID;

    private FFdMunitionQuantity: TSFInt32;
    public property FdMunitionQuantity: TSFInt32 read FFdMunitionQuantity;

    private FFdMunitionSiteID: TSFInt32;
    public property FdMunitionSiteID: TSFInt32 read FFdMunitionSiteID;

    private FFdMunitionStartPoint: TSFVec3f;
    public property FdMunitionStartPoint: TSFVec3f read FFdMunitionStartPoint;

    private FFdNetworkMode: TSFString;
    public property FdNetworkMode: TSFString read FFdNetworkMode;

    private FFdPort: TSFInt32;
    public property FdPort: TSFInt32 read FFdPort;

    private FFdReadInterval: TSFTime;
    public property FdReadInterval: TSFTime read FFdReadInterval;

    private FFdRotation: TSFRotation;
    public property FdRotation: TSFRotation read FFdRotation;

    private FFdScale: TSFVec3f;
    public property FdScale: TSFVec3f read FFdScale;

    private FFdScaleOrientation: TSFRotation;
    public property FdScaleOrientation: TSFRotation read FFdScaleOrientation;

    private FFdSiteID: TSFInt32;
    public property FdSiteID: TSFInt32 read FFdSiteID;

    private FFdTranslation: TSFVec3f;
    public property FdTranslation: TSFVec3f read FFdTranslation;

    private FFdWarhead: TSFInt32;
    public property FdWarhead: TSFInt32 read FFdWarhead;

    private FFdWriteInterval: TSFTime;
    public property FdWriteInterval: TSFTime read FFdWriteInterval;

    { Event: SFFloat, out } { }
    private FEventArticulationParameterValue0_changed: TX3DEvent;
    public property EventArticulationParameterValue0_changed: TX3DEvent read FEventArticulationParameterValue0_changed;

    { Event: SFFloat, out } { }
    private FEventArticulationParameterValue1_changed: TX3DEvent;
    public property EventArticulationParameterValue1_changed: TX3DEvent read FEventArticulationParameterValue1_changed;

    { Event: SFFloat, out } { }
    private FEventArticulationParameterValue2_changed: TX3DEvent;
    public property EventArticulationParameterValue2_changed: TX3DEvent read FEventArticulationParameterValue2_changed;

    { Event: SFFloat, out } { }
    private FEventArticulationParameterValue3_changed: TX3DEvent;
    public property EventArticulationParameterValue3_changed: TX3DEvent read FEventArticulationParameterValue3_changed;

    { Event: SFFloat, out } { }
    private FEventArticulationParameterValue4_changed: TX3DEvent;
    public property EventArticulationParameterValue4_changed: TX3DEvent read FEventArticulationParameterValue4_changed;

    { Event: SFFloat, out } { }
    private FEventArticulationParameterValue5_changed: TX3DEvent;
    public property EventArticulationParameterValue5_changed: TX3DEvent read FEventArticulationParameterValue5_changed;

    { Event: SFFloat, out } { }
    private FEventArticulationParameterValue6_changed: TX3DEvent;
    public property EventArticulationParameterValue6_changed: TX3DEvent read FEventArticulationParameterValue6_changed;

    { Event: SFFloat, out } { }
    private FEventArticulationParameterValue7_changed: TX3DEvent;
    public property EventArticulationParameterValue7_changed: TX3DEvent read FEventArticulationParameterValue7_changed;

    { Event: SFTime, out } { }
    private FEventCollideTime: TX3DEvent;
    public property EventCollideTime: TX3DEvent read FEventCollideTime;

    { Event: SFTime, out } { }
    private FEventDetonateTime: TX3DEvent;
    public property EventDetonateTime: TX3DEvent read FEventDetonateTime;

    { Event: SFTime, out } { }
    private FEventFiredTime: TX3DEvent;
    public property EventFiredTime: TX3DEvent read FEventFiredTime;

    { Event: SFBool, out } { }
    private FEventIsActive: TX3DEvent;
    public property EventIsActive: TX3DEvent read FEventIsActive;

    { Event: SFBool, out } { }
    private FEventIsCollided: TX3DEvent;
    public property EventIsCollided: TX3DEvent read FEventIsCollided;

    { Event: SFBool, out } { }
    private FEventIsDetonated: TX3DEvent;
    public property EventIsDetonated: TX3DEvent read FEventIsDetonated;

    { Event: SFBool, out } { }
    private FEventIsNetworkReader: TX3DEvent;
    public property EventIsNetworkReader: TX3DEvent read FEventIsNetworkReader;

    { Event: SFBool, out } { }
    private FEventIsNetworkWriter: TX3DEvent;
    public property EventIsNetworkWriter: TX3DEvent read FEventIsNetworkWriter;

    { Event: SFBool, out } { }
    private FEventIsRtpHeaderHeard: TX3DEvent;
    public property EventIsRtpHeaderHeard: TX3DEvent read FEventIsRtpHeaderHeard;

    { Event: SFBool, out } { }
    private FEventIsStandAlone: TX3DEvent;
    public property EventIsStandAlone: TX3DEvent read FEventIsStandAlone;

    { Event: SFTime, out } { }
    private FEventTimestamp: TX3DEvent;
    public property EventTimestamp: TX3DEvent read FEventTimestamp;

    private FFdRtpHeaderExpected: TSFBool;
    public property FdRtpHeaderExpected: TSFBool read FFdRtpHeaderExpected;
  end;

  TReceiverPduNode = class(TAbstractSensorNode, IAbstractBoundedObject)
  public
    procedure CreateNode; override;
    class function ClassNodeTypeName: string; override;
    class function URNMatching(const URN: string): boolean; override;

    private FFdAddress: TSFString;
    public property FdAddress: TSFString read FFdAddress;

    private FFdApplicationID: TSFInt32;
    public property FdApplicationID: TSFInt32 read FFdApplicationID;

    private FFdEntityID: TSFInt32;
    public property FdEntityID: TSFInt32 read FFdEntityID;

    private FFdMulticastRelayHost: TSFString;
    public property FdMulticastRelayHost: TSFString read FFdMulticastRelayHost;

    private FFdMulticastRelayPort: TSFInt32;
    public property FdMulticastRelayPort: TSFInt32 read FFdMulticastRelayPort;

    private FFdNetworkMode: TSFString;
    public property FdNetworkMode: TSFString read FFdNetworkMode;

    private FFdPort: TSFInt32;
    public property FdPort: TSFInt32 read FFdPort;

    private FFdRadioID: TSFInt32;
    public property FdRadioID: TSFInt32 read FFdRadioID;

    private FFdReadInterval: TSFFloat;
    public property FdReadInterval: TSFFloat read FFdReadInterval;

    private FFdReceivedPower: TSFFloat;
    public property FdReceivedPower: TSFFloat read FFdReceivedPower;

    private FFdReceiverState: TSFInt32;
    public property FdReceiverState: TSFInt32 read FFdReceiverState;

    private FFdRtpHeaderExpected: TSFBool;
    public property FdRtpHeaderExpected: TSFBool read FFdRtpHeaderExpected;

    private FFdSiteID: TSFInt32;
    public property FdSiteID: TSFInt32 read FFdSiteID;

    private FFdTransmitterApplicationID: TSFInt32;
    public property FdTransmitterApplicationID: TSFInt32 read FFdTransmitterApplicationID;

    private FFdTransmitterEntityID: TSFInt32;
    public property FdTransmitterEntityID: TSFInt32 read FFdTransmitterEntityID;

    private FFdTransmitterRadioID: TSFInt32;
    public property FdTransmitterRadioID: TSFInt32 read FFdTransmitterRadioID;

    private FFdTransmitterSiteID: TSFInt32;
    public property FdTransmitterSiteID: TSFInt32 read FFdTransmitterSiteID;

    private FFdWhichGeometry: TSFInt32;
    public property FdWhichGeometry: TSFInt32 read FFdWhichGeometry;

    private FFdWriteInterval: TSFFloat;
    public property FdWriteInterval: TSFFloat read FFdWriteInterval;

    { Event: SFBool, out } { }
    private FEventIsNetworkReader: TX3DEvent;
    public property EventIsNetworkReader: TX3DEvent read FEventIsNetworkReader;

    { Event: SFBool, out } { }
    private FEventIsNetworkWriter: TX3DEvent;
    public property EventIsNetworkWriter: TX3DEvent read FEventIsNetworkWriter;

    { Event: SFBool, out } { }
    private FEventIsRtpHeaderHeard: TX3DEvent;
    public property EventIsRtpHeaderHeard: TX3DEvent read FEventIsRtpHeaderHeard;

    { Event: SFBool, out } { }
    private FEventIsStandAlone: TX3DEvent;
    public property EventIsStandAlone: TX3DEvent read FEventIsStandAlone;

    { Event: SFTime, out } { }
    private FEventTimestamp: TX3DEvent;
    public property EventTimestamp: TX3DEvent read FEventTimestamp;

    private FFdBboxCenter: TSFVec3f;
    public property FdBboxCenter: TSFVec3f read FFdBboxCenter;

    private FFdBboxSize: TSFVec3f;
    public property FdBboxSize: TSFVec3f read FFdBboxSize;
  end;

  TSignalPduNode = class(TAbstractSensorNode, IAbstractBoundedObject)
  public
    procedure CreateNode; override;
    class function ClassNodeTypeName: string; override;
    class function URNMatching(const URN: string): boolean; override;

    private FFdAddress: TSFString;
    public property FdAddress: TSFString read FFdAddress;

    private FFdApplicationID: TSFInt32;
    public property FdApplicationID: TSFInt32 read FFdApplicationID;

    private FFdData: TMFInt32;
    public property FdData: TMFInt32 read FFdData;

    private FFdDataLength: TSFInt32;
    public property FdDataLength: TSFInt32 read FFdDataLength;

    private FFdEncodingScheme: TSFInt32;
    public property FdEncodingScheme: TSFInt32 read FFdEncodingScheme;

    private FFdEntityID: TSFInt32;
    public property FdEntityID: TSFInt32 read FFdEntityID;

    private FFdMulticastRelayHost: TSFString;
    public property FdMulticastRelayHost: TSFString read FFdMulticastRelayHost;

    private FFdMulticastRelayPort: TSFInt32;
    public property FdMulticastRelayPort: TSFInt32 read FFdMulticastRelayPort;

    private FFdNetworkMode: TSFString;
    public property FdNetworkMode: TSFString read FFdNetworkMode;

    private FFdPort: TSFInt32;
    public property FdPort: TSFInt32 read FFdPort;

    private FFdRadioID: TSFInt32;
    public property FdRadioID: TSFInt32 read FFdRadioID;

    private FFdReadInterval: TSFFloat;
    public property FdReadInterval: TSFFloat read FFdReadInterval;

    private FFdRtpHeaderExpected: TSFBool;
    public property FdRtpHeaderExpected: TSFBool read FFdRtpHeaderExpected;

    private FFdSampleRate: TSFInt32;
    public property FdSampleRate: TSFInt32 read FFdSampleRate;

    private FFdSamples: TSFInt32;
    public property FdSamples: TSFInt32 read FFdSamples;

    private FFdSiteID: TSFInt32;
    public property FdSiteID: TSFInt32 read FFdSiteID;

    private FFdTdlType: TSFInt32;
    public property FdTdlType: TSFInt32 read FFdTdlType;

    private FFdWhichGeometry: TSFInt32;
    public property FdWhichGeometry: TSFInt32 read FFdWhichGeometry;

    private FFdWriteInterval: TSFFloat;
    public property FdWriteInterval: TSFFloat read FFdWriteInterval;

    { Event: SFBool, out } { }
    private FEventIsNetworkReader: TX3DEvent;
    public property EventIsNetworkReader: TX3DEvent read FEventIsNetworkReader;

    { Event: SFBool, out } { }
    private FEventIsNetworkWriter: TX3DEvent;
    public property EventIsNetworkWriter: TX3DEvent read FEventIsNetworkWriter;

    { Event: SFBool, out } { }
    private FEventIsRtpHeaderHeard: TX3DEvent;
    public property EventIsRtpHeaderHeard: TX3DEvent read FEventIsRtpHeaderHeard;

    { Event: SFBool, out } { }
    private FEventIsStandAlone: TX3DEvent;
    public property EventIsStandAlone: TX3DEvent read FEventIsStandAlone;

    { Event: SFTime, out } { }
    private FEventTimestamp: TX3DEvent;
    public property EventTimestamp: TX3DEvent read FEventTimestamp;

    private FFdBboxCenter: TSFVec3f;
    public property FdBboxCenter: TSFVec3f read FFdBboxCenter;

    private FFdBboxSize: TSFVec3f;
    public property FdBboxSize: TSFVec3f read FFdBboxSize;
  end;

  TTransmitterPduNode = class(TAbstractSensorNode, IAbstractBoundedObject)
  public
    procedure CreateNode; override;
    class function ClassNodeTypeName: string; override;
    class function URNMatching(const URN: string): boolean; override;

    private FFdAddress: TSFString;
    public property FdAddress: TSFString read FFdAddress;

    private FFdAntennaLocation: TSFVec3f;
    public property FdAntennaLocation: TSFVec3f read FFdAntennaLocation;

    private FFdAntennaPatternLength: TSFInt32;
    public property FdAntennaPatternLength: TSFInt32 read FFdAntennaPatternLength;

    private FFdAntennaPatternType: TSFInt32;
    public property FdAntennaPatternType: TSFInt32 read FFdAntennaPatternType;

    private FFdApplicationID: TSFInt32;
    public property FdApplicationID: TSFInt32 read FFdApplicationID;

    private FFdCryptoKeyID: TSFInt32;
    public property FdCryptoKeyID: TSFInt32 read FFdCryptoKeyID;

    private FFdCryptoSystem: TSFInt32;
    public property FdCryptoSystem: TSFInt32 read FFdCryptoSystem;

    private FFdEntityID: TSFInt32;
    public property FdEntityID: TSFInt32 read FFdEntityID;

    private FFdFrequency: TSFInt32;
    public property FdFrequency: TSFInt32 read FFdFrequency;

    private FFdInputSource: TSFInt32;
    public property FdInputSource: TSFInt32 read FFdInputSource;

    private FFdLengthOfModulationParameters: TSFInt32;
    public property FdLengthOfModulationParameters: TSFInt32 read FFdLengthOfModulationParameters;

    private FFdModulationTypeDetail: TSFInt32;
    public property FdModulationTypeDetail: TSFInt32 read FFdModulationTypeDetail;

    private FFdModulationTypeMajor: TSFInt32;
    public property FdModulationTypeMajor: TSFInt32 read FFdModulationTypeMajor;

    private FFdModulationTypeSpreadSpectrum: TSFInt32;
    public property FdModulationTypeSpreadSpectrum: TSFInt32 read FFdModulationTypeSpreadSpectrum;

    private FFdModulationTypeSystem: TSFInt32;
    public property FdModulationTypeSystem: TSFInt32 read FFdModulationTypeSystem;

    private FFdMulticastRelayHost: TSFString;
    public property FdMulticastRelayHost: TSFString read FFdMulticastRelayHost;

    private FFdMulticastRelayPort: TSFInt32;
    public property FdMulticastRelayPort: TSFInt32 read FFdMulticastRelayPort;

    private FFdNetworkMode: TSFString;
    public property FdNetworkMode: TSFString read FFdNetworkMode;

    private FFdPort: TSFInt32;
    public property FdPort: TSFInt32 read FFdPort;

    private FFdPower: TSFFloat;
    public property FdPower: TSFFloat read FFdPower;

    private FFdRadioEntityTypeCategory: TSFInt32;
    public property FdRadioEntityTypeCategory: TSFInt32 read FFdRadioEntityTypeCategory;

    private FFdRadioEntityTypeCountry: TSFInt32;
    public property FdRadioEntityTypeCountry: TSFInt32 read FFdRadioEntityTypeCountry;

    private FFdRadioEntityTypeDomain: TSFInt32;
    public property FdRadioEntityTypeDomain: TSFInt32 read FFdRadioEntityTypeDomain;

    private FFdRadioEntityTypeKind: TSFInt32;
    public property FdRadioEntityTypeKind: TSFInt32 read FFdRadioEntityTypeKind;

    private FFdRadioEntityTypeNomenclature: TSFInt32;
    public property FdRadioEntityTypeNomenclature: TSFInt32 read FFdRadioEntityTypeNomenclature;

    private FFdRadioEntityTypeNomenclatureVersion: TSFInt32;
    public property FdRadioEntityTypeNomenclatureVersion: TSFInt32 read FFdRadioEntityTypeNomenclatureVersion;

    private FFdRadioID: TSFInt32;
    public property FdRadioID: TSFInt32 read FFdRadioID;

    private FFdReadInterval: TSFFloat;
    public property FdReadInterval: TSFFloat read FFdReadInterval;

    private FFdRelativeAntennaLocation: TSFVec3f;
    public property FdRelativeAntennaLocation: TSFVec3f read FFdRelativeAntennaLocation;

    private FFdRtpHeaderExpected: TSFBool;
    public property FdRtpHeaderExpected: TSFBool read FFdRtpHeaderExpected;

    private FFdSiteID: TSFInt32;
    public property FdSiteID: TSFInt32 read FFdSiteID;

    private FFdTransmitFrequencyBandwidth: TSFFloat;
    public property FdTransmitFrequencyBandwidth: TSFFloat read FFdTransmitFrequencyBandwidth;

    private FFdTransmitState: TSFInt32;
    public property FdTransmitState: TSFInt32 read FFdTransmitState;

    private FFdWhichGeometry: TSFInt32;
    public property FdWhichGeometry: TSFInt32 read FFdWhichGeometry;

    private FFdWriteInterval: TSFFloat;
    public property FdWriteInterval: TSFFloat read FFdWriteInterval;

    { Event: SFBool, out } { }
    private FEventIsNetworkReader: TX3DEvent;
    public property EventIsNetworkReader: TX3DEvent read FEventIsNetworkReader;

    { Event: SFBool, out } { }
    private FEventIsNetworkWriter: TX3DEvent;
    public property EventIsNetworkWriter: TX3DEvent read FEventIsNetworkWriter;

    { Event: SFBool, out } { }
    private FEventIsRtpHeaderHeard: TX3DEvent;
    public property EventIsRtpHeaderHeard: TX3DEvent read FEventIsRtpHeaderHeard;

    { Event: SFBool, out } { }
    private FEventIsStandAlone: TX3DEvent;
    public property EventIsStandAlone: TX3DEvent read FEventIsStandAlone;

    { Event: SFTime, out } { }
    private FEventTimestamp: TX3DEvent;
    public property EventTimestamp: TX3DEvent read FEventTimestamp;

    private FFdBboxCenter: TSFVec3f;
    public property FdBboxCenter: TSFVec3f read FFdBboxCenter;

    private FFdBboxSize: TSFVec3f;
    public property FdBboxSize: TSFVec3f read FFdBboxSize;
  end;

{$endif read_interface}

{$ifdef read_implementation}
procedure TDISEntityManagerNode.CreateNode;
begin
  inherited;

  FFdAddress := TSFString.Create(Self, 'address', 'localhost');
  Fields.Add(FFdAddress);

  FFdApplicationID := TSFInt32.Create(Self, 'applicationID', 1);
  Fields.Add(FFdApplicationID);
  { X3D specification comment: [0,65535] }

  FFdMapping := TMFNode.Create(Self, 'mapping', [TDISEntityTypeMappingNode]);
  Fields.Add(FFdMapping);

  FFdPort := TSFInt32.Create(Self, 'port', 0);
  Fields.Add(FFdPort);
  { X3D specification comment: [0,65535] }

  FFdSiteID := TSFInt32.Create(Self, 'siteID', 0);
  Fields.Add(FFdSiteID);
  { X3D specification comment: [0,65535] }

  FEventAddedEntities := TX3DEvent.Create(Self, 'addedEntities', TMFNode, false);
  Events.Add(FEventAddedEntities);

  FEventRemovedEntities := TX3DEvent.Create(Self, 'removedEntities', TMFNode, false);
  Events.Add(FEventRemovedEntities);

  DefaultContainerField := 'children';
end;

class function TDISEntityManagerNode.ClassNodeTypeName: string;
begin
  Result := 'DISEntityManager';
end;

class function TDISEntityManagerNode.URNMatching(const URN: string): boolean;
begin
  Result := (inherited URNMatching(URN)) or
    (URN = URNX3DNodes + ClassNodeTypeName);
end;

procedure TDISEntityTypeMappingNode.CreateNode;
begin
  inherited;

  FFdUrl := TMFString.Create(Self, 'url', []);
  Fields.Add(FFdUrl);
  { X3D specification comment: [URI] }

  FFdCategory := TSFInt32.Create(Self, 'category', 0);
  FFdCategory.Exposed := false;
  Fields.Add(FFdCategory);
  { X3D specification comment: [0,255] }

  FFdCountry := TSFInt32.Create(Self, 'country', 0);
  FFdCountry.Exposed := false;
  Fields.Add(FFdCountry);
  { X3D specification comment: [0,65535] }

  FFdDomain := TSFInt32.Create(Self, 'domain', 0);
  FFdDomain.Exposed := false;
  Fields.Add(FFdDomain);
  { X3D specification comment: [0,255] }

  FFdExtra := TSFInt32.Create(Self, 'extra', 0);
  FFdExtra.Exposed := false;
  Fields.Add(FFdExtra);
  { X3D specification comment: [0,255] }

  FFdKind := TSFInt32.Create(Self, 'kind', 0);
  FFdKind.Exposed := false;
  Fields.Add(FFdKind);
  { X3D specification comment: [0,255] }

  FFdSpecific := TSFInt32.Create(Self, 'specific', 0);
  FFdSpecific.Exposed := false;
  Fields.Add(FFdSpecific);
  { X3D specification comment: [0,255] }

  FFdSubcategory := TSFInt32.Create(Self, 'subcategory', 0);
  FFdSubcategory.Exposed := false;
  Fields.Add(FFdSubcategory);
  { X3D specification comment: [0,255] }

  DefaultContainerField := 'children';
end;

class function TDISEntityTypeMappingNode.ClassNodeTypeName: string;
begin
  Result := 'DISEntityTypeMapping';
end;

class function TDISEntityTypeMappingNode.URNMatching(const URN: string): boolean;
begin
  Result := (inherited URNMatching(URN)) or
    (URN = URNX3DNodes + ClassNodeTypeName);
end;

procedure TEspduTransformNode.CreateNode;
begin
  inherited;

  FEventSet_articulationParameterValue0 := TX3DEvent.Create(Self, 'set_articulationParameterValue0', TSFFloat, true);
  Events.Add(FEventSet_articulationParameterValue0);

  FEventSet_articulationParameterValue1 := TX3DEvent.Create(Self, 'set_articulationParameterValue1', TSFFloat, true);
  Events.Add(FEventSet_articulationParameterValue1);

  FEventSet_articulationParameterValue2 := TX3DEvent.Create(Self, 'set_articulationParameterValue2', TSFFloat, true);
  Events.Add(FEventSet_articulationParameterValue2);

  FEventSet_articulationParameterValue3 := TX3DEvent.Create(Self, 'set_articulationParameterValue3', TSFFloat, true);
  Events.Add(FEventSet_articulationParameterValue3);

  FEventSet_articulationParameterValue4 := TX3DEvent.Create(Self, 'set_articulationParameterValue4', TSFFloat, true);
  Events.Add(FEventSet_articulationParameterValue4);

  FEventSet_articulationParameterValue5 := TX3DEvent.Create(Self, 'set_articulationParameterValue5', TSFFloat, true);
  Events.Add(FEventSet_articulationParameterValue5);

  FEventSet_articulationParameterValue6 := TX3DEvent.Create(Self, 'set_articulationParameterValue6', TSFFloat, true);
  Events.Add(FEventSet_articulationParameterValue6);

  FEventSet_articulationParameterValue7 := TX3DEvent.Create(Self, 'set_articulationParameterValue7', TSFFloat, true);
  Events.Add(FEventSet_articulationParameterValue7);

  FFdAddress := TSFString.Create(Self, 'address', 'localhost');
  Fields.Add(FFdAddress);

  FFdApplicationID := TSFInt32.Create(Self, 'applicationID', 1);
  Fields.Add(FFdApplicationID);
  { X3D specification comment: [0,65535] }

  FFdArticulationParameterCount := TSFInt32.Create(Self, 'articulationParameterCount', 0);
  Fields.Add(FFdArticulationParameterCount);
  { X3D specification comment: [0,78] }

  FFdArticulationParameterDesignatorArray := TMFInt32.Create(Self, 'articulationParameterDesignatorArray', []);
  Fields.Add(FFdArticulationParameterDesignatorArray);
  { X3D specification comment: [0,255] }

  FFdArticulationParameterChangeIndicatorArray := TMFInt32.Create(Self, 'articulationParameterChangeIndicatorArray', []);
  Fields.Add(FFdArticulationParameterChangeIndicatorArray);
  { X3D specification comment: [0,255] }

  FFdArticulationParameterIdPartAttachedToArray := TMFInt32.Create(Self, 'articulationParameterIdPartAttachedToArray', []);
  Fields.Add(FFdArticulationParameterIdPartAttachedToArray);
  { X3D specification comment: [0,65535] }

  FFdArticulationParameterTypeArray := TMFInt32.Create(Self, 'articulationParameterTypeArray', []);
  Fields.Add(FFdArticulationParameterTypeArray);

  FFdArticulationParameterArray := TMFFloat.Create(Self, 'articulationParameterArray', []);
  Fields.Add(FFdArticulationParameterArray);
  { X3D specification comment: (-Inf,Inf) }

  FFdCenter := TSFVec3f.Create(Self, 'center', Vector3Single(0, 0, 0));
  Fields.Add(FFdCenter);
  { X3D specification comment: (-Inf,Inf) }

  FFdCollisionType := TSFInt32.Create(Self, 'collisionType', 0);
  Fields.Add(FFdCollisionType);
  { X3D specification comment: [0,255] }

  FFdDeadReckoning := TSFInt32.Create(Self, 'deadReckoning', 0);
  Fields.Add(FFdDeadReckoning);
  { X3D specification comment: [0,255] }

  FFdDetonationLocation := TSFVec3f.Create(Self, 'detonationLocation', Vector3Single(0, 0, 0));
  Fields.Add(FFdDetonationLocation);
  { X3D specification comment: (-Inf,Inf) }

  FFdDetonationRelativeLocation := TSFVec3f.Create(Self, 'detonationRelativeLocation', Vector3Single(0, 0, 0));
  Fields.Add(FFdDetonationRelativeLocation);
  { X3D specification comment: (-Inf,Inf) }

  FFdDetonationResult := TSFInt32.Create(Self, 'detonationResult', 0);
  Fields.Add(FFdDetonationResult);
  { X3D specification comment: [0,255] }

  FFdEnabled := TSFBool.Create(Self, 'enabled', true);
  Fields.Add(FFdEnabled);

  FFdEntityCategory := TSFInt32.Create(Self, 'entityCategory', 0);
  Fields.Add(FFdEntityCategory);
  { X3D specification comment: [0,255] }

  FFdEntityCountry := TSFInt32.Create(Self, 'entityCountry', 0);
  Fields.Add(FFdEntityCountry);
  { X3D specification comment: [0,65535] }

  FFdEntityDomain := TSFInt32.Create(Self, 'entityDomain', 0);
  Fields.Add(FFdEntityDomain);
  { X3D specification comment: [0,255] }

  FFdEntityExtra := TSFInt32.Create(Self, 'entityExtra', 0);
  Fields.Add(FFdEntityExtra);
  { X3D specification comment: [0,255] }

  FFdEntityID := TSFInt32.Create(Self, 'entityID', 0);
  Fields.Add(FFdEntityID);
  { X3D specification comment: [0,65535] }

  FFdEntityKind := TSFInt32.Create(Self, 'entityKind', 0);
  Fields.Add(FFdEntityKind);
  { X3D specification comment: [0,255] }

  FFdEntitySpecific := TSFInt32.Create(Self, 'entitySpecific', 0);
  Fields.Add(FFdEntitySpecific);
  { X3D specification comment: [0,255] }

  FFdEntitySubCategory := TSFInt32.Create(Self, 'entitySubCategory', 0);
  Fields.Add(FFdEntitySubCategory);
  { X3D specification comment: [0,255] }

  FFdEventApplicationID := TSFInt32.Create(Self, 'eventApplicationID', 1);
  Fields.Add(FFdEventApplicationID);
  { X3D specification comment: [0,65535] }

  FFdEventEntityID := TSFInt32.Create(Self, 'eventEntityID', 0);
  Fields.Add(FFdEventEntityID);
  { X3D specification comment: [0,65535] }

  FFdEventNumber := TSFInt32.Create(Self, 'eventNumber', 0);
  Fields.Add(FFdEventNumber);
  { X3D specification comment: [0,65355] }

  FFdEventSiteID := TSFInt32.Create(Self, 'eventSiteID', 0);
  Fields.Add(FFdEventSiteID);
  { X3D specification comment: [0,65535] }

  FFdFired1 := TSFBool.Create(Self, 'fired1', false);
  Fields.Add(FFdFired1);

  FFdFired2 := TSFBool.Create(Self, 'fired2', false);
  Fields.Add(FFdFired2);

  FFdFireMissionIndex := TSFInt32.Create(Self, 'fireMissionIndex', 0);
  Fields.Add(FFdFireMissionIndex);
  { X3D specification comment: [0,65535] }

  FFdFiringRange := TSFFloat.Create(Self, 'firingRange', 0.0);
  Fields.Add(FFdFiringRange);
  { X3D specification comment: (0,Inf) }

  FFdFiringRate := TSFInt32.Create(Self, 'firingRate', 0);
  Fields.Add(FFdFiringRate);
  { X3D specification comment: [0,65535] }

  FFdForceID := TSFInt32.Create(Self, 'forceID', 0);
  Fields.Add(FFdForceID);
  { X3D specification comment: [0,255] }

  FFdFuse := TSFInt32.Create(Self, 'fuse', 0);
  Fields.Add(FFdFuse);
  { X3D specification comment: [0,65535] }

  FFdLinearVelocity := TSFVec3f.Create(Self, 'linearVelocity', Vector3Single(0, 0, 0));
  Fields.Add(FFdLinearVelocity);
  { X3D specification comment: (-Inf,Inf) }

  FFdLinearAcceleration := TSFVec3f.Create(Self, 'linearAcceleration', Vector3Single(0, 0, 0));
  Fields.Add(FFdLinearAcceleration);
  { X3D specification comment: (-Inf,Inf) }

  FFdMarking := TSFString.Create(Self, 'marking', '');
  Fields.Add(FFdMarking);

  FFdMulticastRelayHost := TSFString.Create(Self, 'multicastRelayHost', '');
  Fields.Add(FFdMulticastRelayHost);

  FFdMulticastRelayPort := TSFInt32.Create(Self, 'multicastRelayPort', 0);
  Fields.Add(FFdMulticastRelayPort);

  FFdMunitionApplicationID := TSFInt32.Create(Self, 'munitionApplicationID', 1);
  Fields.Add(FFdMunitionApplicationID);
  { X3D specification comment: [0,65535] }

  FFdMunitionEndPoint := TSFVec3f.Create(Self, 'munitionEndPoint', Vector3Single(0, 0, 0));
  Fields.Add(FFdMunitionEndPoint);
  { X3D specification comment: (-Inf,Inf) }

  FFdMunitionEntityID := TSFInt32.Create(Self, 'munitionEntityID', 0);
  Fields.Add(FFdMunitionEntityID);
  { X3D specification comment: [0,65535] }

  FFdMunitionQuantity := TSFInt32.Create(Self, 'munitionQuantity', 0);
  Fields.Add(FFdMunitionQuantity);
  { X3D specification comment: [0,65535] }

  FFdMunitionSiteID := TSFInt32.Create(Self, 'munitionSiteID', 0);
  Fields.Add(FFdMunitionSiteID);
  { X3D specification comment: [0,65535] }

  FFdMunitionStartPoint := TSFVec3f.Create(Self, 'munitionStartPoint', Vector3Single(0, 0, 0));
  Fields.Add(FFdMunitionStartPoint);
  { X3D specification comment: (-Inf,Inf) }

  FFdNetworkMode := TSFString.Create(Self, 'networkMode', 'standAlone');
  Fields.Add(FFdNetworkMode);
  { X3D specification comment: ["standAlone"|"networkReader"|"networkWriter"] }

  FFdPort := TSFInt32.Create(Self, 'port', 0);
  Fields.Add(FFdPort);
  { X3D specification comment: [0,65535] }

  FFdReadInterval := TSFTime.Create(Self, 'readInterval', 0.1);
  Fields.Add(FFdReadInterval);
  { X3D specification comment: [0,Inf) }

  FFdRotation := TSFRotation.Create(Self, 'rotation', Vector3Single(0, 0, 1), 0);
  Fields.Add(FFdRotation);
  { X3D specification comment: (-Inf,Inf)|[-1,1] }

  FFdScale := TSFVec3f.Create(Self, 'scale', Vector3Single(1, 1, 1));
  Fields.Add(FFdScale);
  { X3D specification comment: (-Inf,Inf) }

  FFdScaleOrientation := TSFRotation.Create(Self, 'scaleOrientation', Vector3Single(0, 0, 1), 0);
  Fields.Add(FFdScaleOrientation);
  { X3D specification comment: (-Inf,Inf)|[-1,1] }

  FFdSiteID := TSFInt32.Create(Self, 'siteID', 0);
  Fields.Add(FFdSiteID);
  { X3D specification comment: [0,65535] }

  FFdTranslation := TSFVec3f.Create(Self, 'translation', Vector3Single(0, 0, 0));
  Fields.Add(FFdTranslation);
  { X3D specification comment: (-Inf,Inf) }

  FFdWarhead := TSFInt32.Create(Self, 'warhead', 0);
  Fields.Add(FFdWarhead);
  { X3D specification comment: [0,65535] }

  FFdWriteInterval := TSFTime.Create(Self, 'writeInterval', 1.0);
  Fields.Add(FFdWriteInterval);
  { X3D specification comment: [0,Inf) }

  FEventArticulationParameterValue0_changed := TX3DEvent.Create(Self, 'articulationParameterValue0_changed', TSFFloat, false);
  Events.Add(FEventArticulationParameterValue0_changed);

  FEventArticulationParameterValue1_changed := TX3DEvent.Create(Self, 'articulationParameterValue1_changed', TSFFloat, false);
  Events.Add(FEventArticulationParameterValue1_changed);

  FEventArticulationParameterValue2_changed := TX3DEvent.Create(Self, 'articulationParameterValue2_changed', TSFFloat, false);
  Events.Add(FEventArticulationParameterValue2_changed);

  FEventArticulationParameterValue3_changed := TX3DEvent.Create(Self, 'articulationParameterValue3_changed', TSFFloat, false);
  Events.Add(FEventArticulationParameterValue3_changed);

  FEventArticulationParameterValue4_changed := TX3DEvent.Create(Self, 'articulationParameterValue4_changed', TSFFloat, false);
  Events.Add(FEventArticulationParameterValue4_changed);

  FEventArticulationParameterValue5_changed := TX3DEvent.Create(Self, 'articulationParameterValue5_changed', TSFFloat, false);
  Events.Add(FEventArticulationParameterValue5_changed);

  FEventArticulationParameterValue6_changed := TX3DEvent.Create(Self, 'articulationParameterValue6_changed', TSFFloat, false);
  Events.Add(FEventArticulationParameterValue6_changed);

  FEventArticulationParameterValue7_changed := TX3DEvent.Create(Self, 'articulationParameterValue7_changed', TSFFloat, false);
  Events.Add(FEventArticulationParameterValue7_changed);

  FEventCollideTime := TX3DEvent.Create(Self, 'collideTime', TSFTime, false);
  Events.Add(FEventCollideTime);

  FEventDetonateTime := TX3DEvent.Create(Self, 'detonateTime', TSFTime, false);
  Events.Add(FEventDetonateTime);

  FEventFiredTime := TX3DEvent.Create(Self, 'firedTime', TSFTime, false);
  Events.Add(FEventFiredTime);

  FEventIsActive := TX3DEvent.Create(Self, 'isActive', TSFBool, false);
  Events.Add(FEventIsActive);

  FEventIsCollided := TX3DEvent.Create(Self, 'isCollided', TSFBool, false);
  Events.Add(FEventIsCollided);

  FEventIsDetonated := TX3DEvent.Create(Self, 'isDetonated', TSFBool, false);
  Events.Add(FEventIsDetonated);

  FEventIsNetworkReader := TX3DEvent.Create(Self, 'isNetworkReader', TSFBool, false);
  Events.Add(FEventIsNetworkReader);

  FEventIsNetworkWriter := TX3DEvent.Create(Self, 'isNetworkWriter', TSFBool, false);
  Events.Add(FEventIsNetworkWriter);

  FEventIsRtpHeaderHeard := TX3DEvent.Create(Self, 'isRtpHeaderHeard', TSFBool, false);
  Events.Add(FEventIsRtpHeaderHeard);

  FEventIsStandAlone := TX3DEvent.Create(Self, 'isStandAlone', TSFBool, false);
  Events.Add(FEventIsStandAlone);

  FEventTimestamp := TX3DEvent.Create(Self, 'timestamp', TSFTime, false);
  Events.Add(FEventTimestamp);

  FFdRtpHeaderExpected := TSFBool.Create(Self, 'rtpHeaderExpected', false);
  FFdRtpHeaderExpected.Exposed := false;
  Fields.Add(FFdRtpHeaderExpected);

  DefaultContainerField := 'children';
end;

class function TEspduTransformNode.ClassNodeTypeName: string;
begin
  Result := 'EspduTransform';
end;

class function TEspduTransformNode.URNMatching(const URN: string): boolean;
begin
  Result := (inherited URNMatching(URN)) or
    (URN = URNX3DNodes + ClassNodeTypeName);
end;

procedure TReceiverPduNode.CreateNode;
begin
  inherited;

  FFdAddress := TSFString.Create(Self, 'address', 'localhost');
  Fields.Add(FFdAddress);

  FFdApplicationID := TSFInt32.Create(Self, 'applicationID', 1);
  Fields.Add(FFdApplicationID);
  { X3D specification comment: [0,65535] }

  FFdEntityID := TSFInt32.Create(Self, 'entityID', 0);
  Fields.Add(FFdEntityID);
  { X3D specification comment: [0,65535] }

  FFdMulticastRelayHost := TSFString.Create(Self, 'multicastRelayHost', '');
  Fields.Add(FFdMulticastRelayHost);

  FFdMulticastRelayPort := TSFInt32.Create(Self, 'multicastRelayPort', 0);
  Fields.Add(FFdMulticastRelayPort);

  FFdNetworkMode := TSFString.Create(Self, 'networkMode', 'standAlone');
  Fields.Add(FFdNetworkMode);
  { X3D specification comment: ["standAlone"|"networkReader"|"networkWriter"] }

  FFdPort := TSFInt32.Create(Self, 'port', 0);
  Fields.Add(FFdPort);
  { X3D specification comment: [0,65535] }

  FFdRadioID := TSFInt32.Create(Self, 'radioID', 0);
  Fields.Add(FFdRadioID);
  { X3D specification comment: [0,65535] }

  FFdReadInterval := TSFFloat.Create(Self, 'readInterval', 0.1);
  Fields.Add(FFdReadInterval);
  { X3D specification comment: [0,Inf) }

  FFdReceivedPower := TSFFloat.Create(Self, 'receivedPower', 0.0);
  Fields.Add(FFdReceivedPower);
  { X3D specification comment: [0,Inf) }

  FFdReceiverState := TSFInt32.Create(Self, 'receiverState', 0);
  Fields.Add(FFdReceiverState);
  { X3D specification comment: [0,65535] }

  FFdRtpHeaderExpected := TSFBool.Create(Self, 'rtpHeaderExpected', false);
  Fields.Add(FFdRtpHeaderExpected);

  FFdSiteID := TSFInt32.Create(Self, 'siteID', 0);
  Fields.Add(FFdSiteID);
  { X3D specification comment: [0,65535] }

  FFdTransmitterApplicationID := TSFInt32.Create(Self, 'transmitterApplicationID', 1);
  Fields.Add(FFdTransmitterApplicationID);
  { X3D specification comment: [0,65535] }

  FFdTransmitterEntityID := TSFInt32.Create(Self, 'transmitterEntityID', 0);
  Fields.Add(FFdTransmitterEntityID);
  { X3D specification comment: [0,65535] }

  FFdTransmitterRadioID := TSFInt32.Create(Self, 'transmitterRadioID', 0);
  Fields.Add(FFdTransmitterRadioID);
  { X3D specification comment: [0,65535] }

  FFdTransmitterSiteID := TSFInt32.Create(Self, 'transmitterSiteID', 0);
  Fields.Add(FFdTransmitterSiteID);
  { X3D specification comment: [0,65535] }

  FFdWhichGeometry := TSFInt32.Create(Self, 'whichGeometry', 1);
  Fields.Add(FFdWhichGeometry);
  { X3D specification comment: [-1,Inf) }

  FFdWriteInterval := TSFFloat.Create(Self, 'writeInterval', 1.0);
  Fields.Add(FFdWriteInterval);
  { X3D specification comment: [0,Inf) }

  FEventIsNetworkReader := TX3DEvent.Create(Self, 'isNetworkReader', TSFBool, false);
  Events.Add(FEventIsNetworkReader);

  FEventIsNetworkWriter := TX3DEvent.Create(Self, 'isNetworkWriter', TSFBool, false);
  Events.Add(FEventIsNetworkWriter);

  FEventIsRtpHeaderHeard := TX3DEvent.Create(Self, 'isRtpHeaderHeard', TSFBool, false);
  Events.Add(FEventIsRtpHeaderHeard);

  FEventIsStandAlone := TX3DEvent.Create(Self, 'isStandAlone', TSFBool, false);
  Events.Add(FEventIsStandAlone);

  FEventTimestamp := TX3DEvent.Create(Self, 'timestamp', TSFTime, false);
  Events.Add(FEventTimestamp);

  FFdBboxCenter := TSFVec3f.Create(Self, 'bboxCenter', Vector3Single(0, 0, 0));
  FFdBboxCenter.Exposed := false;
  Fields.Add(FFdBboxCenter);
  { X3D specification comment: (-Inf,Inf) }

  FFdBboxSize := TSFVec3f.Create(Self, 'bboxSize', Vector3Single(-1, -1, -1));
  FFdBboxSize.Exposed := false;
  Fields.Add(FFdBboxSize);
  { X3D specification comment: [0,Inf) [0,Inf) [0,Inf) or -1 -1 -1 }

  DefaultContainerField := 'children';
end;

class function TReceiverPduNode.ClassNodeTypeName: string;
begin
  Result := 'ReceiverPdu';
end;

class function TReceiverPduNode.URNMatching(const URN: string): boolean;
begin
  Result := (inherited URNMatching(URN)) or
    (URN = URNX3DNodes + ClassNodeTypeName);
end;

procedure TSignalPduNode.CreateNode;
begin
  inherited;

  FFdAddress := TSFString.Create(Self, 'address', 'localhost');
  Fields.Add(FFdAddress);

  FFdApplicationID := TSFInt32.Create(Self, 'applicationID', 1);
  Fields.Add(FFdApplicationID);
  { X3D specification comment: [0,65535] }

  FFdData := TMFInt32.Create(Self, 'data', []);
  Fields.Add(FFdData);
  { X3D specification comment: [0,255] }

  FFdDataLength := TSFInt32.Create(Self, 'dataLength', 0);
  Fields.Add(FFdDataLength);
  { X3D specification comment: [0,65535] }

  FFdEncodingScheme := TSFInt32.Create(Self, 'encodingScheme', 0);
  Fields.Add(FFdEncodingScheme);
  { X3D specification comment: [0,65535] }

  FFdEntityID := TSFInt32.Create(Self, 'entityID', 0);
  Fields.Add(FFdEntityID);
  { X3D specification comment: [0,65535] }

  FFdMulticastRelayHost := TSFString.Create(Self, 'multicastRelayHost', '');
  Fields.Add(FFdMulticastRelayHost);

  FFdMulticastRelayPort := TSFInt32.Create(Self, 'multicastRelayPort', 0);
  Fields.Add(FFdMulticastRelayPort);

  FFdNetworkMode := TSFString.Create(Self, 'networkMode', 'standAlone');
  Fields.Add(FFdNetworkMode);
  { X3D specification comment: ["standAlone"|"networkReader"|"networkWriter"] }

  FFdPort := TSFInt32.Create(Self, 'port', 0);
  Fields.Add(FFdPort);
  { X3D specification comment: [0,65535] }

  FFdRadioID := TSFInt32.Create(Self, 'radioID', 0);
  Fields.Add(FFdRadioID);
  { X3D specification comment: [0,65535] }

  FFdReadInterval := TSFFloat.Create(Self, 'readInterval', 0.1);
  Fields.Add(FFdReadInterval);
  { X3D specification comment: [0,Inf) }

  FFdRtpHeaderExpected := TSFBool.Create(Self, 'rtpHeaderExpected', false);
  Fields.Add(FFdRtpHeaderExpected);

  FFdSampleRate := TSFInt32.Create(Self, 'sampleRate', 0);
  Fields.Add(FFdSampleRate);
  { X3D specification comment: [0,65535] }

  FFdSamples := TSFInt32.Create(Self, 'samples', 0);
  Fields.Add(FFdSamples);
  { X3D specification comment: [0,65535] }

  FFdSiteID := TSFInt32.Create(Self, 'siteID', 0);
  Fields.Add(FFdSiteID);
  { X3D specification comment: [0,65535] }

  FFdTdlType := TSFInt32.Create(Self, 'tdlType', 0);
  Fields.Add(FFdTdlType);
  { X3D specification comment: [0,65535] }

  FFdWhichGeometry := TSFInt32.Create(Self, 'whichGeometry', 1);
  Fields.Add(FFdWhichGeometry);
  { X3D specification comment: [-1,Inf) }

  FFdWriteInterval := TSFFloat.Create(Self, 'writeInterval', 1.0);
  Fields.Add(FFdWriteInterval);
  { X3D specification comment: [0,Inf) }

  FEventIsNetworkReader := TX3DEvent.Create(Self, 'isNetworkReader', TSFBool, false);
  Events.Add(FEventIsNetworkReader);

  FEventIsNetworkWriter := TX3DEvent.Create(Self, 'isNetworkWriter', TSFBool, false);
  Events.Add(FEventIsNetworkWriter);

  FEventIsRtpHeaderHeard := TX3DEvent.Create(Self, 'isRtpHeaderHeard', TSFBool, false);
  Events.Add(FEventIsRtpHeaderHeard);

  FEventIsStandAlone := TX3DEvent.Create(Self, 'isStandAlone', TSFBool, false);
  Events.Add(FEventIsStandAlone);

  FEventTimestamp := TX3DEvent.Create(Self, 'timestamp', TSFTime, false);
  Events.Add(FEventTimestamp);

  FFdBboxCenter := TSFVec3f.Create(Self, 'bboxCenter', Vector3Single(0, 0, 0));
  FFdBboxCenter.Exposed := false;
  Fields.Add(FFdBboxCenter);
  { X3D specification comment: (-Inf,Inf) }

  FFdBboxSize := TSFVec3f.Create(Self, 'bboxSize', Vector3Single(-1, -1, -1));
  FFdBboxSize.Exposed := false;
  Fields.Add(FFdBboxSize);
  { X3D specification comment: [0,Inf) or -1 -1 -1 }

  DefaultContainerField := 'children';
end;

class function TSignalPduNode.ClassNodeTypeName: string;
begin
  Result := 'SignalPdu';
end;

class function TSignalPduNode.URNMatching(const URN: string): boolean;
begin
  Result := (inherited URNMatching(URN)) or
    (URN = URNX3DNodes + ClassNodeTypeName);
end;

procedure TTransmitterPduNode.CreateNode;
begin
  inherited;

  FFdAddress := TSFString.Create(Self, 'address', 'localhost');
  Fields.Add(FFdAddress);

  FFdAntennaLocation := TSFVec3f.Create(Self, 'antennaLocation', Vector3Single(0, 0, 0));
  Fields.Add(FFdAntennaLocation);
  { X3D specification comment: (-Inf,Inf) }

  FFdAntennaPatternLength := TSFInt32.Create(Self, 'antennaPatternLength', 0);
  Fields.Add(FFdAntennaPatternLength);
  { X3D specification comment: [0,65535] }

  FFdAntennaPatternType := TSFInt32.Create(Self, 'antennaPatternType', 0);
  Fields.Add(FFdAntennaPatternType);
  { X3D specification comment: [0,65535] }

  FFdApplicationID := TSFInt32.Create(Self, 'applicationID', 1);
  Fields.Add(FFdApplicationID);
  { X3D specification comment: [0,65535] }

  FFdCryptoKeyID := TSFInt32.Create(Self, 'cryptoKeyID', 0);
  Fields.Add(FFdCryptoKeyID);
  { X3D specification comment: [0,65535] }

  FFdCryptoSystem := TSFInt32.Create(Self, 'cryptoSystem', 0);
  Fields.Add(FFdCryptoSystem);
  { X3D specification comment: [0,65535] }

  FFdEntityID := TSFInt32.Create(Self, 'entityID', 0);
  Fields.Add(FFdEntityID);
  { X3D specification comment: [0,65535] }

  FFdFrequency := TSFInt32.Create(Self, 'frequency', 0);
  Fields.Add(FFdFrequency);

  FFdInputSource := TSFInt32.Create(Self, 'inputSource', 0);
  Fields.Add(FFdInputSource);
  { X3D specification comment: [0,255] }

  FFdLengthOfModulationParameters := TSFInt32.Create(Self, 'lengthOfModulationParameters', 0);
  Fields.Add(FFdLengthOfModulationParameters);
  { X3D specification comment: [0,255] }

  FFdModulationTypeDetail := TSFInt32.Create(Self, 'modulationTypeDetail', 0);
  Fields.Add(FFdModulationTypeDetail);
  { X3D specification comment: [0,65535] }

  FFdModulationTypeMajor := TSFInt32.Create(Self, 'modulationTypeMajor', 0);
  Fields.Add(FFdModulationTypeMajor);
  { X3D specification comment: [0,65535] }

  FFdModulationTypeSpreadSpectrum := TSFInt32.Create(Self, 'modulationTypeSpreadSpectrum', 0);
  Fields.Add(FFdModulationTypeSpreadSpectrum);
  { X3D specification comment: [0,65535] }

  FFdModulationTypeSystem := TSFInt32.Create(Self, 'modulationTypeSystem', 0);
  Fields.Add(FFdModulationTypeSystem);
  { X3D specification comment: [0,65535] }

  FFdMulticastRelayHost := TSFString.Create(Self, 'multicastRelayHost', '');
  Fields.Add(FFdMulticastRelayHost);

  FFdMulticastRelayPort := TSFInt32.Create(Self, 'multicastRelayPort', 0);
  Fields.Add(FFdMulticastRelayPort);

  FFdNetworkMode := TSFString.Create(Self, 'networkMode', 'standAlone');
  Fields.Add(FFdNetworkMode);
  { X3D specification comment: ["standAlone"|"networkReader"|"networkWriter"] }

  FFdPort := TSFInt32.Create(Self, 'port', 0);
  Fields.Add(FFdPort);
  { X3D specification comment: [0,65535] }

  FFdPower := TSFFloat.Create(Self, 'power', 0.0);
  Fields.Add(FFdPower);
  { X3D specification comment: [0,Inf) }

  FFdRadioEntityTypeCategory := TSFInt32.Create(Self, 'radioEntityTypeCategory', 0);
  Fields.Add(FFdRadioEntityTypeCategory);
  { X3D specification comment: [0,255] }

  FFdRadioEntityTypeCountry := TSFInt32.Create(Self, 'radioEntityTypeCountry', 0);
  Fields.Add(FFdRadioEntityTypeCountry);
  { X3D specification comment: [0,65535] }

  FFdRadioEntityTypeDomain := TSFInt32.Create(Self, 'radioEntityTypeDomain', 0);
  Fields.Add(FFdRadioEntityTypeDomain);
  { X3D specification comment: [0,255] }

  FFdRadioEntityTypeKind := TSFInt32.Create(Self, 'radioEntityTypeKind', 0);
  Fields.Add(FFdRadioEntityTypeKind);
  { X3D specification comment: [0,255] }

  FFdRadioEntityTypeNomenclature := TSFInt32.Create(Self, 'radioEntityTypeNomenclature', 0);
  Fields.Add(FFdRadioEntityTypeNomenclature);
  { X3D specification comment: [0,255] }

  FFdRadioEntityTypeNomenclatureVersion := TSFInt32.Create(Self, 'radioEntityTypeNomenclatureVersion', 0);
  Fields.Add(FFdRadioEntityTypeNomenclatureVersion);
  { X3D specification comment: [0,65535] }

  FFdRadioID := TSFInt32.Create(Self, 'radioID', 0);
  Fields.Add(FFdRadioID);
  { X3D specification comment: [0,255] }

  FFdReadInterval := TSFFloat.Create(Self, 'readInterval', 0.1);
  Fields.Add(FFdReadInterval);
  { X3D specification comment: [0,Inf) }

  FFdRelativeAntennaLocation := TSFVec3f.Create(Self, 'relativeAntennaLocation', Vector3Single(0, 0, 0));
  Fields.Add(FFdRelativeAntennaLocation);
  { X3D specification comment: (-Inf,Inf) }

  FFdRtpHeaderExpected := TSFBool.Create(Self, 'rtpHeaderExpected', false);
  Fields.Add(FFdRtpHeaderExpected);

  FFdSiteID := TSFInt32.Create(Self, 'siteID', 0);
  Fields.Add(FFdSiteID);
  { X3D specification comment: [0,65535] }

  FFdTransmitFrequencyBandwidth := TSFFloat.Create(Self, 'transmitFrequencyBandwidth', 0.0);
  Fields.Add(FFdTransmitFrequencyBandwidth);
  { X3D specification comment: (-Inf,Inf) }

  FFdTransmitState := TSFInt32.Create(Self, 'transmitState', 0);
  Fields.Add(FFdTransmitState);
  { X3D specification comment: [0,255] }

  FFdWhichGeometry := TSFInt32.Create(Self, 'whichGeometry', 1);
  Fields.Add(FFdWhichGeometry);
  { X3D specification comment: [-1,Inf) }

  FFdWriteInterval := TSFFloat.Create(Self, 'writeInterval', 1.0);
  Fields.Add(FFdWriteInterval);
  { X3D specification comment: [0,Inf) }

  FEventIsNetworkReader := TX3DEvent.Create(Self, 'isNetworkReader', TSFBool, false);
  Events.Add(FEventIsNetworkReader);

  FEventIsNetworkWriter := TX3DEvent.Create(Self, 'isNetworkWriter', TSFBool, false);
  Events.Add(FEventIsNetworkWriter);

  FEventIsRtpHeaderHeard := TX3DEvent.Create(Self, 'isRtpHeaderHeard', TSFBool, false);
  Events.Add(FEventIsRtpHeaderHeard);

  FEventIsStandAlone := TX3DEvent.Create(Self, 'isStandAlone', TSFBool, false);
  Events.Add(FEventIsStandAlone);

  FEventTimestamp := TX3DEvent.Create(Self, 'timestamp', TSFTime, false);
  Events.Add(FEventTimestamp);

  FFdBboxCenter := TSFVec3f.Create(Self, 'bboxCenter', Vector3Single(0, 0, 0));
  FFdBboxCenter.Exposed := false;
  Fields.Add(FFdBboxCenter);
  { X3D specification comment: (-Inf,Inf) }

  FFdBboxSize := TSFVec3f.Create(Self, 'bboxSize', Vector3Single(-1, -1, -1));
  FFdBboxSize.Exposed := false;
  Fields.Add(FFdBboxSize);
  { X3D specification comment: [0,Inf) [0,Inf) [0,Inf) or -1 -1 -1 }

  DefaultContainerField := 'children';
end;

class function TTransmitterPduNode.ClassNodeTypeName: string;
begin
  Result := 'TransmitterPdu';
end;

class function TTransmitterPduNode.URNMatching(const URN: string): boolean;
begin
  Result := (inherited URNMatching(URN)) or
    (URN = URNX3DNodes + ClassNodeTypeName);
end;

procedure RegisterDISNodes;
begin
  NodesManager.RegisterNodeClasses([
    TDISEntityManagerNode,
    TDISEntityTypeMappingNode,
    TEspduTransformNode,
    TReceiverPduNode,
    TSignalPduNode,
    TTransmitterPduNode
  ]);
end;

{$endif read_implementation}