The C++ API for the IEEE 1516-2010 HLA Standard, called HLA Evolved.
The HLA Evolved API consists of the RTIambassador, the FederateAmbassador and the LogicalTime classes and supporting types.
Centralized RTI interface header
- RTI1516.h - This file is simply a convenience provided for those developers that would like to include everything all at once.
The rti1516e::RTIambassador class defines the interface used by the federate to access the services of the RTI. This is one of two key classes in the HLA C++ Interface, The implementation is provided by the RTI. An RTIambassadorFactory class provides a mechanism for creating instances of an RTIambassador.
The rti1516e::FederateAmbassador class defines a pure abstract interface used by the RTI to evoke callbacks on the federate. All federates must provide an implementation of this class for their federate. It is the seconf key class in the HLA C++ Interface Specification.
Supporting types
- Enums.h - This file contains enumerations used by the interface.
- Exception.h - This file contains exceptions used by the interface.
- Handle.h - This file contains the designator or handle classes used by the interface.
- RangeBounds.h - This file contains the interface for DDM region ranges.
- SpecificConfig.h - This file contains definitions that are used to isolate platform-specific elements of the API.
- Typedefs.h - This file contains the standard RTI types that are defined in namespace rti1516.
- VariableLengthData.h - This file contains a class to hold an arbitrary array of bytes for encoded values, attribute values, parameter values, etc.
The LogicalTime and LogicalTimeInterval classes define a pure abstract interface for the representation of federation time. The RTI uses the LogicalTimeFactory to create instances of these time representations. The LogicalTime classes are used by the RTI interface and implementation; however, a concrete implementation must be provided for use by the federate. A double floating point and an unsigned integer representation are provided as example implementations.
- LogicalTime.h - This file contains the abstract class interface for the logical time representation.
- LogicalTimeFactory.h - This file contains the abstract class interface for the logical time factory.
- LogicalTimeInterval.h - This file contains the abstract class interface for the logical time interval representation.
Double floating point representation
Unsigned integer representation
Encoding Helpers
The datatype classes define common datatypes used in HLA that are the C++ equivalents of those defined in the HLA Standard MIM.
- HLAvariantRecord.h - This file contains a class defining an HLA variant record datatype.
- HLAvariableArray.h - This file contains a class defining an HLA variable array datatype.
- HLAopaqueData.h - This file contains a class defining an HLA opaque data datatype.
- HLAfixedRecord.h - This file contains a class defining an HLA fixed record datatype.
- HLAfixedArray.h - This file contains a class defining an HLA fixed array datatype.
- EncodingExceptions.h - This file contains a class defining an encoder exception.
- EncodingConfig.h - This file contains platform specific typedefs.
- DataElement.h - This file contains the abstract class interface for the data element representation.
- BasicDataElements.h - This file contains macros which define encoding helper classes for basic datatypes.