VR-Link API Documentation for HLA Evolved
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
List of all members | Public Member Functions | Protected Member Functions
DtReflectedGenericObject Class Reference

Instances of DtReflectedGenericObject are used to represent "GenericObject" objects simulated remotely, that we hear about through the RTI. More...

+ Inheritance diagram for DtReflectedGenericObject:
+ Collaboration diagram for DtReflectedGenericObject:

Public Member Functions

 DtReflectedGenericObject (DtHlaObject *obj, DtExerciseConn *conn)
 constructor More...
 
virtual ~DtReflectedGenericObject ()
 destructor More...
 
virtual DtStateRepositorygenericStateRep () const
 Returns a pointer to the DtStateRepository, through which you can inspect current state information. More...
 
virtual DtStateRepositorygsr () const
 Synonym for genericStateRep(). More...
 
virtual DtReflectedGenericObjectnext () const
 Functions to get the next and previous objects in the list. More...
 
virtual DtReflectedGenericObjectprev () const
 
virtual DtReflectedGenericObjectwrapNext () const
 
virtual DtReflectedGenericObjectwrapPrev () const
 
virtual void addPostUpdateCallback (DtGenericObjectCallbackFunction cb, void *userData)
 Registration/deregistration of postUpdate callbacks. More...
 
virtual void removePostUpdateCallback (DtGenericObjectCallbackFunction cb, void *userData)
 
- Public Member Functions inherited from DtReflectedObject
 DtReflectedObject (DtExerciseConn *conn, DtStateRepository *stateRep)
 Primary constructor. More...
 
 DtReflectedObject (DtHlaObject *obj, DtExerciseConn *conn, DtBaseStateRepCreator creator)
 Older constructor. More...
 
 DtReflectedObject (const DtObjectId &id, const DtGlobalObjectDesignator &des, DtExerciseConn *conn, DtBaseStateRepCreator creator)
 Older constructor. More...
 
virtual ~DtReflectedObject ()
 destructor More...
 
virtual DtStateRepositorystateRep () const
 Returns a pointer to the StateRepository - through which you can inspect current state information. More...
 
virtual DtStateRepositorysr () const
 Synonym for stateRep(). More...
 
virtual DtHlaStateDecoderdecoder ()
 Returns a pointer to the Decoder being used to decode state messages into our SR. More...
 
virtual DtHlaObjectWithStateRephlaObject () const
 Get the entity's hlaObject (DtHlaObjectWithStateRep is derived from DtHlaObject). More...
 
virtual const DtObjectIdobjectId () const
 Get the HLA object's id. More...
 
virtual const DtObjectIdid () const
 Get the HLA object's id (local ID). More...
 
virtual const DtObjectIdlocalId () const
 Get the HLA object's id (local ID). More...
 
virtual const DtStringname () const
 Get the HLA object name. More...
 
virtual const
DtGlobalObjectDesignator
globalId () const
 Get the HLA object's global object designator - the object name in HLA. More...
 
virtual const DtStringlastProducingFederate () const
 Get the name of the last federate that produced a reflected update. More...
 
virtual DtTime lastSimTimeUpdated () const
 Returns the value of simulation time at the time an update was last received for the entity. More...
 
virtual DtTime lastReceivedTimeStamp () const
 Returns the value of the time send in the last Update received for this entity. More...
 
virtual void baseAddPostUpdateCallback (DtReflectedObjectCallbackFunction cb, void *userData)
 Object state callback registration/deregistration. More...
 
virtual void baseRemovePostUpdateCallback (DtReflectedObjectCallbackFunction cb, void *userData)
 
virtual DtReflectedObjectnextObj () const
 Get the next remote object. More...
 
virtual DtReflectedObjectprevObj () const
 Get the previous remote object. More...
 
virtual DtReflectedObjectwrapNextObj () const
 Get the next remote object. More...
 
virtual DtReflectedObjectwrapPrevObj () const
 Get the previous remote object. More...
 
void setHlaObject (DtHlaObject *obj, DtHlaStateDecoder *decoder=NULL)
 Start reflecting this object, using this decoder. More...
 
virtual void setNoHlaObject (const DtObjectId &id, const DtGlobalObjectDesignator &des)
 Used to set up a proxy DtReflectedEntity - one that is not actually managing a real reflected HLA object. More...
 
void detachHlaObject ()
 Ends managing of current HLA object. More...
 
virtual void requestUpdate ()
 Request that the owner of this entity send an attribute update. More...
 
virtual DtTime keyTime () const
 Set/Get the time value used with ID to define a map key Key is used to store objects by time but still allow index by ID (using this keyTime) More...
 
virtual void setKeyTime (DtTime timeValue)
 Set/Get the time value used with ID to define a map key Key is used to store objects by time but still allow index by ID (using this keyTime) More...
 

Protected Member Functions

 DtReflectedGenericObject (const DtReflectedGenericObject &other)
 Copy Ctor – Not Implemented. More...
 
DtReflectedGenericObjectoperator= (const DtReflectedGenericObject &other)
 Assignment Operator – Not Implemented. More...
 
- Protected Member Functions inherited from DtReflectedObject
 DtReflectedObject (const DtReflectedObject &orig)
 copy constructor – Not Implemented More...
 
DtReflectedObjectoperator= (const DtReflectedObject &orig)
 assignment operator – Not Implemented More...
 
virtual void processPostUpdateCallbacks ()
 Process the post update callbacks. More...
 

Additional Inherited Members

- Public Types inherited from DtReflectedObject
typedef DtStateRepository *(* DtBaseStateRepCreator )()
 Function prototype for functions that create DtStateRepositories. More...
 
- Static Protected Member Functions inherited from DtReflectedObject
static void processPostUpdateCallbacksCb (const DtStateMsg &stateMsg, DtHlaObject *obj, void *usr)
 Callback from HlaObject to process post update callbacks. More...
 
- Protected Attributes inherited from DtReflectedObject
DtExerciseConnmyExConn
 
DtHlaObjectWithStateRepmyHlaObj
 
DtStateRepositorymyStateRep
 
DtHlaStateDecodermyDecoder
 
DtIntrusiveList myStateUpdateCallbacks
 
DtObjectId myId
 
DtString myName
 
DtTime myKeyTime
 
DtRefHlaObjectMap::iterator myReflIterator
 
DtRefHlaObjectMapmyReflMap
 

Detailed Description

Instances of DtReflectedGenericObject are used to represent "GenericObject" objects simulated remotely, that we hear about through the RTI.

Instances are created and deleted automatically by DtReflectedGenericObjectList in response to discover and remove RTI service invocations. This class is derived from DtDtReflectedObject, which does most of the work. The derived class mostly exists to provide type safety, and to configure the base class object.

Constructor & Destructor Documentation

DtReflectedGenericObject::DtReflectedGenericObject ( DtHlaObject obj,
DtExerciseConn conn 
)

constructor

virtual DtReflectedGenericObject::~DtReflectedGenericObject ( )
virtual

destructor

DtReflectedGenericObject::DtReflectedGenericObject ( const DtReflectedGenericObject other)
protected

Copy Ctor – Not Implemented.

Member Function Documentation

virtual void DtReflectedGenericObject::addPostUpdateCallback ( DtGenericObjectCallbackFunction  cb,
void *  userData 
)
virtual

Registration/deregistration of postUpdate callbacks.

virtual DtStateRepository* DtReflectedGenericObject::genericStateRep ( ) const
virtual

Returns a pointer to the DtStateRepository, through which you can inspect current state information.

virtual DtStateRepository* DtReflectedGenericObject::gsr ( ) const
virtual

Synonym for genericStateRep().

virtual DtReflectedGenericObject* DtReflectedGenericObject::next ( ) const
virtual

Functions to get the next and previous objects in the list.

The "wrap" functions cycle to the beginning/end of the list.

DtReflectedGenericObject& DtReflectedGenericObject::operator= ( const DtReflectedGenericObject other)
protected

Assignment Operator – Not Implemented.

virtual DtReflectedGenericObject* DtReflectedGenericObject::prev ( ) const
virtual
virtual void DtReflectedGenericObject::removePostUpdateCallback ( DtGenericObjectCallbackFunction  cb,
void *  userData 
)
virtual
virtual DtReflectedGenericObject* DtReflectedGenericObject::wrapNext ( ) const
virtual
virtual DtReflectedGenericObject* DtReflectedGenericObject::wrapPrev ( ) const
virtual

The documentation for this class was generated from the following file:

Document ID: Generated on Mon Apr 25 03:39:01 EDT 2022 from SVN revision 242502
Copyright © 2005-2021 MAK Technologies. All Rights Reserved (www.mak.com)