-
Notifications
You must be signed in to change notification settings - Fork 16
PDUConversions_BPFL
PDU Conversions Blueprint Function Library. Houses functions for converting PDU structs to bytes prior to sending out via a UDP send socket.
class UPDUConversions_BPFL
: public UBlueprintFunctionLibrary
None
Access | Return | Name | Description | |
---|---|---|---|---|
Public | static | TArray<uint8> | ConvertDetonationPDUToBytes(FDetonationPDU DetonationPDUIn) | Converts a detonation PDU into bytes |
Public | static | TArray<uint8> | ConvertEntityInfoFamilyPDUToBytes(FEntityInformationFamilyPDU EntityInfoFamilyPDUIn) | Converts an entity information family PDU into bytes |
Public | static | TArray<uint8> | ConvertEntityStatePDUToBytes(FEntityStatePDU EntityStatePDUIn) | Converts an entity state PDU into bytes |
Public | static | TArray<uint8> | ConvertEntityStateUpdatePDUToBytes(FEntityStateUpdatePDU EntityStateUpdatePDUIn) | Converts an entity state update PDU into bytes |
Public | static | TArray<uint8> | ConvertFirePDUToBytes(FFirePDU FirePDUIn) | Converts a fire PDU into bytes |
Public | static | TArray<uint8> | ConvertPDUToBytes(FPDU PDUIn) | Converts a PDU into bytes |
Public | static | TArray<uint8> | ConvertRemoveEntityPDUToBytes(FRemoveEntityPDU RemoveEntityPDUIn) | Converts a remove entity PDU into bytes |
Public | static | TArray<uint8> | ConvertSimManagementFamilyPDUToBytes(FSimManagementFamilyPDU SimManagementFamilyPDUIn) | Converts a simulation management family PDU into bytes |
Public | static | TArray<uint8> | ConvertStartResumePDUToBytes(FStartResumePDU StartResumePDUIn) | Converts a start/resume PDU into bytes |
Public | static | TArray<uint8> | ConvertStopFreezePDUToBytes(FStopFreezePDU StopFreezePDUIn) | Converts a stop/freeze PDU into bytes |
Public | static | TArray<uint8> | ConvertWarfareFamilyPDUToBytes(FWarfareFamilyPDU WarfareFamilyPDUIn) | Converts a warfare family PDU into bytes |
public static TArray<uint8> ConvertDetonationPDUToBytes
(
FDetonationPDU DetonationPDUIn
)
Converts a detonation PDU into bytes.
Category: GRILL DIS|PDU Conversions
Parameter | Description |
---|---|
DetonationPDUIn | The detonation PDU to be converted |
public static TArray<uint8> ConvertEntityInfoFamilyPDUToBytes
(
FEntityInformationFamilyPDU EntityInfoFamilyPDUIn
)
Converts an information family PDU into bytes.
Category: GRILL DIS|PDU Conversions
Parameter | Description |
---|---|
EntityInfoFamilyPDUIn | The information family PDU to be converted |
Returns |
---|
The byte representation of the information stored in the given information family PDU |
public static TArray<uint8> ConvertEntityStatePDUToBytes
(
FEntityStatePDU EntityStatePDUIn
)
Converts an entity state PDU into bytes.
Category: GRILL DIS|PDU Conversions
Parameter | Description |
---|---|
EntityStatePDU | The entity state pdu to convert |
Returns |
---|
The byte representation of the given entity state PDU |
public static TArray<uint8> ConvertEntityStateUpdatePDUToBytes
(
FEntityStateUpdatePDU EntityStateUpdatePDUIn
)
Converts an entity state update PDU into bytes.
Category: GRILL DIS|PDU Conversions
Paramerter | Description |
---|---|
EntityStateUpdatePDUIn | The entity state update PDU to be converted |
Returns |
---|
The byte representation of the given entity state update PDU |
public static TArray<uint8> ConvertFirePDUToBytes
(
FFirePDU FirePDUIn
)
Converts a fire PDU into bytes.
Category: GRILL DIS|PDU Conversions
Parameter | Description |
---|---|
FirePDUIn | The fire PDU to be converted |
Returns |
---|
The byte representation of the given fire PDU |
public static TArray<uint8> ConvertPDUToBytes
(
FPDU PDUIn
)
Converts a PDU into bytes
Category: GRILL DIS|PDU Conversions
Parameter | Description |
---|---|
PDUIn | The PDU to convert |
Returns |
---|
The byte representation of the given PDU |
public static TArray<uint8> ConvertRemoveEntityPDUToBytes
(
FRemoveEntityPDU RemoveEntityPDUIn
)
Converts a remove entity PDU into bytes.
Parameter | Description |
---|---|
RemoveEntityPDUIn | The remove entity PDU to be converted |
Returns |
---|
The byte representation of the given remove entity PDU |
public static TArary<uint8> ConvertSimManagementFamilyPDUToBytes
(
FSimulationManagementFamilyPDU SimManagementFamilyPDUIn
)
Converts a simulation management family PDU into bytes.
Category: GRILL DIS|PDU Conversions
Parameter | Description |
---|---|
SimManagementFamilyPDUIn | The simulation management family PDU to convert |
Returns |
---|
The byte representation of the given simulation management family PDU |
public static TArary<uint8> ConvertStartResumePDUToBytes
(
FStartResumePDU StartResumePDUIn
)
Converts a start/resume PDU into bytes.
Category: GRILL DIS|PDU Conversions
Parameter | Description |
---|---|
StartResumePDUIn | The start/resume pdu to be converted |
Returns |
---|
The byte representation of the given start/resume PDU |
public static TArary<uint8> ConvertStopFreezePDUToBytes
(
FStopFreezePDU StopFreezePDUIn
)
Converts a stop/freeze PDU into bytes.
Category: GRILL DIS|PDU Conversions
Parameter | Description |
---|---|
StopFreezePDUIn | The stop/freeze pdu to be converted |
Returns |
---|
The byte representation of the given stop/freeze PDU |
public static TArary<uint8> ConvertWarfareFamilyPDUToBytes
(
FWarfareFamilyPDU WarfareFamilyPDUIn
)
Converts a warfare family PDU into bytes.
Category: GRILL DIS|PDU Conversions
Parameter | Description |
---|---|
WarfareFamilyPDUIn | The warfare family pdu to be converted |
Returns |
---|
The byte representation of the given warfare family PDU |