|
| | DtReflectedEntity (DtHlaObject *obj, DtExerciseConn *conn) |
| | constructor More...
|
| |
| | DtReflectedEntity (DtExerciseConn *conn, DtEntityStateRepository *esrToUse) |
| | Constructor with state rep to use passed in Note that setHlaObject() should be called after a reflected entity is created with this method. More...
|
| |
| | DtReflectedEntity (DtHlaObject *obj, DtExerciseConn *conn, DtBaseStateRepCreator esrToUse) |
| | Constructor with entity state repository creator passed in. More...
|
| |
| virtual | ~DtReflectedEntity () |
| | destructor More...
|
| |
| virtual DtEntityStateRepository * | entityStateRep () const |
| | Returns a pointer to the EntityStateRepository - through which you can inspect current state information. More...
|
| |
| virtual DtEntityStateRepository * | esr () const |
| | Synonym for entityStateRep(). More...
|
| |
| virtual DtReflectedEntity * | next () const |
| | Get the next remote entity. More...
|
| |
| virtual DtReflectedEntity * | prev () const |
| | Get the previous remote entity. More...
|
| |
| virtual DtReflectedEntity * | wrapNext () const |
| | Get the next remote entity. More...
|
| |
| virtual DtReflectedEntity * | wrapPrev () const |
| | Get the previous remote entity. More...
|
| |
| virtual void | addPostUpdateCallback (DtEntityCallbackFunction cb, void *userData) |
| | Entity state callback registration/deregistration. More...
|
| |
| virtual void | removePostUpdateCallback (DtEntityCallbackFunction cb, void *userData) |
| |
| virtual void | diGuyObjectUpdated () |
| |
| virtual DtOwnershipHandler * | setOwnershipHandler (DtOwnershipHandler *handler) |
| | Sets the current ownership handler to handler. More...
|
| |
| virtual void | acquireObject () |
| | Pass through to the ownership manager. More...
|
| |
| virtual RTI::ObjectHandle | entityObjectId () const |
| | For backwards compatibility. Use id() instead. More...
|
| |
| | 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 DtStateRepository * | stateRep () const |
| | Returns a pointer to the StateRepository - through which you can inspect current state information. More...
|
| |
| virtual DtStateRepository * | sr () const |
| | Synonym for stateRep(). More...
|
| |
| virtual DtHlaStateDecoder * | decoder () |
| | Returns a pointer to the Decoder being used to decode state messages into our SR. More...
|
| |
| virtual DtHlaObjectWithStateRep * | hlaObject () const |
| | Get the entity's hlaObject (DtHlaObjectWithStateRep is derived from DtHlaObject). More...
|
| |
| virtual const DtObjectId & | objectId () const |
| | Get the HLA object's id. More...
|
| |
| virtual const DtObjectId & | id () const |
| | Get the HLA object's id (local ID). More...
|
| |
| virtual const DtObjectId & | localId () const |
| | Get the HLA object's id (local ID). More...
|
| |
| virtual const DtString & | name () 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 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 DtReflectedObject * | nextObj () const |
| | Get the next remote object. More...
|
| |
| virtual DtReflectedObject * | prevObj () const |
| | Get the previous remote object. More...
|
| |
| virtual DtReflectedObject * | wrapNextObj () const |
| | Get the next remote object. More...
|
| |
| virtual DtReflectedObject * | wrapPrevObj () 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...
|
| |
Instances of DtReflectedEntity are used to represent a simulation entity reflected across a network (i.e.
this is not a full simulation running on this machine).