12 #include <tbb/spin_mutex.h>
13 #include <boost/signals2.hpp>
62 virtual void clearQueue();
66 return mySimulationServices;
80 static void deliverRadioMessageCallback(
DtSimMessage* msg,
void* usr);
81 virtual void processDeliverRadioMessage(
DtSimMessage* msg);
87 virtual void processUUIDChanged(
const DtUUID& oldUUID,
const DtUUID& newUUID);
92 typedef boost::unordered_map<DtUUID, std::set<DtSimInternalCommunicationInterface*> >
DtCommInterfaceList;
std::deque< DtVrfObjectMessage * > DtMessageDeque
Definition: simInternalCommunicationManager.h:95
UUID is a unique ID wrapper class.
Definition: rwUUID.h:229
boost::unordered_map< DtUUID, std::set< DtSimInternalCommunicationInterface * > > DtCommInterfaceList
Definition: simInternalCommunicationManager.h:92
The handler for all SimInternal messages that are sent to and from a specified DtLocalObject. This class is the central interface of a DtLocalObject to the SimInternal message system of inter-VrfObject communication. Callbacks can be registered for message receipt and messages can be sent. Normally, components on an entity will register with 3CommunicationInterface instead of with this object directly.
Definition: simInternalCommunicationInterface.h:20
The manager for SimInternal messages on a single simulation engine. This class manages the passing of...
Definition: simInternalCommunicationManager.h:27
DtCommInterfaceList myCommInterfaceList
Definition: simInternalCommunicationManager.h:93
DtMessageDeque myMessagesToDeliver
Queue which stores messages that need to be delivered.
Definition: simInternalCommunicationManager.h:97
boost::signals2::scoped_connection myUUIDChangedConnection
Definition: simInternalCommunicationManager.h:104
Arguments passed by the DtLocalObjectManager::addUUIDChangedCallback callbacks.
Definition: localObjectManager.h:119
DtSimulationServices * simulationServices() const
Definition: simInternalCommunicationManager.h:64
DtSimulationServices * mySimulationServices
Definition: simInternalCommunicationManager.h:91
#define DT_DLL_vrfobjcore
This file is used to determine how to build.
Definition: vrfobjcoreDefines.h:24
File: simMsg.h.
Definition: simMessage.h:35
The base class for all messages to/from a specific DtVrfObject. Various subclasses of this class will...
Definition: vrfObjectMessage.h:30
Central access point of all non-object-specific the services and managers that are available for use ...
Definition: simulationServices.h:90
DT_DLL_DEBUGDRAWRENDERER void init(makVrv::DtDe &de)
Work function for the plugin initialization.
tbb::spin_mutex Mutex
Definition: simInternalCommunicationManager.h:99
Mutex myMessageMutex
Definition: simInternalCommunicationManager.h:100
tbb::spin_mutex myInterfaceMutex
Definition: simInternalCommunicationManager.h:102
A locally simulated VRF object. Holds all internal and external data for the object, and provides access to both the current frame and next frame state data for the object. All current frame data is read-only, and next-frame data can be written to. No thread safety guarantees are made on this object during the simulation frame and it should only be accessed by the thread that is simulating the object.
Definition: localObject.h:86