-
Notifications
You must be signed in to change notification settings - Fork 16
RemoveEntityPDU
huggins edited this page May 3, 2023
·
4 revisions
Struct container for all information that is contained inside of DIS Remove Entity PDUs.
struct FRemoveEntityPDU
: public FSimulationManagementFamilyPDU
- CoreMinimal
- UObject/NoExportTypes.h
- <dis6/RemoveEntityPdu.h>
- PDUs/SimManagementFamily/GRILL_SimulationManagementFamilyPDU.h
Type | Name | Description |
---|---|---|
int64 | RequestID | The specific and unique entity removal request ID. |
Name | Description |
---|---|
FRemoveEntityPDU() | Default constructor |
Name | Description |
---|---|
~FRemoveEntityPDU() | Default destructor |
Return | Name | Description |
---|---|---|
SetupFromOpenDIS(DIS::RemoveEntityPdu* PDUIn) | Converts an OpenDIS RemoveEntityPdu struct to an FRemoveEntityPDU struct. | |
TArray<uint8> | ToBytes() | Conversion to an array of bytes. Allows for an FRemoveEntityPDU struct to be sent out with a UDP send socket. |
ToOpenDIS(DIS::RemoveEntityPdu& PDUOut) | Conversion to OpenDIS RemoveEntityPdu struct |
int64 RequestID
The specific and unique entity removal request ID.
Category: GRILL DIS|Structs|PDUs|RemoveEntity
Range: [0, 4294967295]
FRemoveEntityPDU()
Default constructor.
virtual ~FRemoveEntityPDU()
Default destructor.
void SetupFromOpenDIS
(
DIS::RemoveEntityPdu* RemoveEntityPDUIn
)
Converts an OpenDIS RemoveEntityPdu struct to an FRemoveEntityPDU struct.
Parameter | Description |
---|---|
RemoveEntityPDUIn | The OpenDIS RemoveEntityPdu struct to convert. |
void ToOpenDIS
(
DIS::RemoveEntityPdu& RemoveEntityPDUOut
)
Conversion to an array of bytes. Allows for an FRemoveEntityPDU struct to be sent out with a UDP send socket.
Parameter | Description |
---|---|
RemoveEntityPDUOut | The OpenDIS RemoveEntityPdu struct representation of this FRemoveEntityPDU. |
virtual TArray<uint8> ToBytes() override
Conversion to OpenDIS RemoveEntityPdu struct
Returns |
---|
An array of bytes containing the information from this FRemoveEntityPDU. |