|
VR-Engage
2.2
|
Classes | |
| class | Callback |
| class | DtBaseMessage |
| class | DtBigEndianStreamReader |
| class | DtBigEndianStreamWriter |
| class | DtDelegate |
| class | DtElevationRequest |
| class | DtElevationResponse |
| struct | DtEntityDescription |
| class | DtEntityListRequest |
| class | DtEntityListResponse |
| class | DtEntityLocationRequest |
| class | DtEntityLocationResponse |
| class | DtHeartbeatMessage |
| class | DtImageRequest |
| class | DtImageResponse |
| struct | DtImageSize |
| class | DtIsarRequest |
| class | DtIsarResponse |
| class | DtLocklessQueue |
| class | DtMmwRequest |
| class | DtMmwResponse |
| class | DtOcclusionRequest |
| class | DtOcclusionResponse |
| class | DtRadarFxConnector |
| class | DtSarRequest |
| class | DtSarResponse |
| class | DtSensorListRequest |
| class | DtSensorListResponse |
| class | DtStreamReader |
| class | DtStreamWriter |
| class | DtVreMessageFactory |
| class | DtVreMessageHandler |
| class | MethodCallback |
| class | StaticFunctionCallback |
Typedefs | |
| typedef DtBaseMessage *(* | Decoder) (unsigned char *bytes, int length) |
| typedef DtDelegate< void, DtBaseMessage * > | DtVreMessageDelegate |
Enumerations | |
| enum | DtImageFormat { RAW , BMP , JPG , PNG , NITF , RAW_RG , GTIF } |
| enum | DtImageRotation { NORTH_UP , TRACK_UP } |
| enum | DtImageReturnMethod { STREAM = 0x1 , FILESYSTEM = 0x2 } |
| enum | DtImageDataType { BYTE , SHORT , FLOAT } |
| enum | DtImageError { IMAGE_NO_ERROR , FAILED_RENDER , FAILED_FILESAVE , FAILED_ENTITY_LOOKUP , FAILED_OTHER } |
| enum | DtImageWarning { NO_WARNING , WARNING_TERRAIN_TIMEOUT } |
Functions | |
| RFX_DLL_SHARED int | DtEncodedStringLength (std::string str) |
Variables | |
| const int | DtRadarFXPort = 4567 |
| typedef DtBaseMessage *(* makRadarFx::Decoder) (unsigned char *bytes, int length) |
Function pointer type for message decoder functions.
| bytes | Pointer to the encoded byte array |
| length | Length of the encoded byte array |
This type defines the signature for message decoder functions that convert encoded byte arrays back into message objects
| typedef DtDelegate<void, DtBaseMessage*> makRadarFx::DtVreMessageDelegate |
Delegate type for message callbacks.
This typedef defines a delegate that takes a DtBaseMessage pointer as a parameter and returns void. It is used for registering callback functions that will be invoked when messages of specific types are received.
Image format enumeration for radar images.
Defines the supported output formats for radar images generated by the server
Error codes for radar image responses.
Defines the possible error conditions that can occur when generating radar images
| RFX_DLL_SHARED int makRadarFx::DtEncodedStringLength | ( | std::string | str | ) |
Calculates the size in bytes of the string when encoded.
| str | String to calculate the encoded size for |
This function calculates the total number of bytes that will be required to encode the given string, including the size prefix.
References RFX_DLL_SHARED.
| const int makRadarFx::DtRadarFXPort = 4567 |
The default port that the RadarFX server listens on.
This constant defines the standard network port used for connecting to a RadarFX server when no custom port is specified
Referenced by makRadarFx::DtRadarFxConnector::connect().