-
Notifications
You must be signed in to change notification settings - Fork 20
EntityInformationFamilyPDU
huggins edited this page Apr 10, 2025
·
6 revisions
Struct container for all information that is contained inside of a Entity Information Family PDU.
struct FEntityInformationFamilyPDU
: public FPDU- CoreMinimal
- UObject/NoExportTypes.h
- <dis6/EntityInformationFamilyPdu.h>
- PDUs/GRILL_PDU.h
| Name | Description |
|---|---|
| FEntityInformationFamilyPDU() | Default constructor |
| Name | Description |
|---|---|
| ~FEntityInformationFamilyPDU() | Default destructor |
| Return | Name | Description |
|---|---|---|
| SetupFromOpenDIS(const DIS::EntityInformationFamilyPdu& EntityInfoFamilyPDUIn) | Converts an OpenDIS EntityInformationFamilyPdu struct to an FEntityInformationFamilyPDU struct. | |
| TArray<uint8> | ToBytes() | Conversion to an array of bytes. Allows for an FEntityInformationFamilyPDU struct to be sent out with a UDP send socket. |
| ToOpenDIS(DIS::EntityInformationFamilyPdu& EntityInfoFamilyPDUOut) | Conversion to OpenDIS EntityInformationFamilyPdu struct |
FEntityInformationFamilyPDU() : FPDU()Default constructor.
virtual ~FEntityInformationFamilyPDU()Default destructor.
void SetupFromOpenDIS
(
const DIS::EntityInformationFamilyPdu& EntityInfoFamilyPDUIn
)Converts an OpenDIS EntityInformationFamilyPdu struct to an FEntityInformationFamilyPDU struct.
| Parameter | Description |
|---|---|
| EntityInfoFamilyPDUIn | The OpenDIS EntityInformationFamilyPdu struct to convert. |
virtual TArray<uint8> ToBytes() overrideConversion to OpenDIS EntityInformationFamilyPdu struct
| Returns |
|---|
| An array of bytes containing the information from this FEntityInformationFamilyPDU. |
void ToOpenDIS
(
DIS::EntityInformationFamilyPdu& EntityInfoFamilyPDUOut
)Conversion to an array of bytes. Allows for an FEntityInformationFamilyPDU struct to be sent out with a UDP send socket.
| Parameter | Description |
|---|---|
| EntityInfoFamilyPDUOut | The OpenDIS EntityInformationFamilyPdu struct representation of this FEntityInformationFamilyPDU. |