-
Notifications
You must be signed in to change notification settings - Fork 16
EntityInformationFamilyPDU
huggins edited this page May 3, 2023
·
4 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(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
(
DIS::EntityInformationFamilyPdu* EntityInfoFamilyPDUIn
)
Converts an OpenDIS EntityInformationFamilyPdu struct to an FEntityInformationFamilyPDU struct.
Parameter | Description |
---|---|
EntityInfoFamilyPDUIn | The OpenDIS EntityInformationFamilyPdu struct to convert. |
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. |
virtual TArray<uint8> ToBytes() override
Conversion to OpenDIS EntityInformationFamilyPdu struct
Returns |
---|
An array of bytes containing the information from this FEntityInformationFamilyPDU. |