-
Notifications
You must be signed in to change notification settings - Fork 20
BurstDescriptor
huggins edited this page Apr 10, 2025
·
6 revisions
Represents the firing of a round or a burst of ammunition in the DIS standard.
struct FBurstDescriptor| Type | Name | Description |
|---|---|---|
| FEntityType | EntityType | The entity type of the munition. |
| int32 | Fuse | The fuse shall be specified by a 16-bit enumeration and specify the type of fuse the munition has. |
| int32 | Quantity | Quantity shall represent the number of rounds fired in the burst for the munition specified. |
| int32 | Rate | The Rate shall represent the rounds per minute for the munition specified. |
| float | Warhead | The warhead shall be specified by a 16-bit enumeration and specify the type of warhead the munition has. |
| Name | Description |
|---|---|
| FBurstDescriptor() | Default constructor |
| FBurstDescriptor() | Constructor that takes in an OpenDIS Burst Descriptor struct |
| Return | Name | Description |
|---|---|---|
| DIS::BurstDescriptor | ToOpenDIS() | Conversion to OpenDIS BurstDescriptor struct |
FEntityType EntityTypeThe entity type of the munition.
Category: GRILL DIS|Structs
int32 FuseThe fuse shall be specified by a 16-bit enumeration and specify the type of fuse the munition has.
Category: GRILL DIS|Structs
int32 QuantityQuantity shall represent the number of rounds fired in the burst for the munition specified.
Category: GRILL DIS|Structs
int32 RateThe Rate shall represent the rounds per minute for the munition specified.
Category: GRILL DIS|Structs
int32 WarheadThe warhead shall be specified by a 16-bit enumeration and specify the type of warhead the munition has.
Category: GRILL DIS|Structs
FBurstDescriptor()Default constructor
FBurstDescriptor(DIS::BurstDescriptor BurstDescriptor)Constructor that takes in the OpenDIS BurstDescriptor struct
| Parameter | Description |
|---|---|
| BurstDescriptor | The OpenDIS BurstDescriptor struct to convert to an FBurstDescriptor struct. |
DIS::BurstDescriptor ToOpenDIS() constConversion to OpenDIS BurstDescriptor struct.
| Returns |
|---|
| The OpenDIS BurstDescriptor struct representation of this FBurstDescriptor. |