![]() |
VR-Link API Documentation for HLA 1.3
|
00001 /********************************************************************* 00002 ** Copyright (c) 1992-2010 VT MAK 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 00006 #ifndef _DETONATIONP_H_ 00007 #define _DETONATIONP_H_ 1 00008 00012 00013 #include <vlpi/NetStructs.h> 00014 #include <vl/eventId.h> 00015 #include "pduHeader.h" 00016 00017 /* ---------------------- detonation ---------------------- */ 00018 00019 /* per Document IST-CR-93-15 Section 5.4.4.1.2 */ 00020 typedef struct DtNetDetonationPdu 00021 { 00022 DtNetPduHeader DtHeader; 00023 DtNetEntityIdentifier DtAttackerId; 00024 DtNetEntityIdentifier DtTargetId; 00025 DtNetEntityIdentifier DtMunitionId; 00026 DtNetEventId DtEventId; 00027 DtNetLinearVelocity DtVelocity; 00028 DtNetWorldCoordinates DtWorldLocation; 00029 DtNetBurstDescriptor DtBurst; 00030 DtNetEntityCoordinates DtEntityLocation; 00031 DtNetU8 DtResult; 00032 DtNetU8 DtNumArtParams; 00033 DtNet16Bits unused_16; 00034 #define DtMaxNumDetArtRecords 10 00035 00036 DtNetArtPartRecord DtParts[DtMaxNumDetArtRecords]; 00037 } DtNetDetonationPdu; 00038 00039 #endif /* _DETONATIONP_H_ */ 00040 00041 00042