16 #include <vlutil/vlString.h>
18 #include <tbb/spin_rw_mutex.h>
20 #include <boost/unordered_map.hpp>
21 #include <boost/signals2.hpp>
52 virtual void sendSyncMatrixList();
56 virtual void setPlansCompletionStatus(
const DtUUID& syncMatrix,
bool status);
59 virtual bool plansCompletionStatus(
const DtUUID& syncMatrix)
const;
62 virtual void removePlansCompletionStatusEntry(
const DtUUID& syncMatrix);
66 virtual void registerInterfaceMessageCallbacks();
69 static void syncMatrixListRequestCallback(
DtSimMessage* msg,
void* usr);
70 virtual void processSyncMatrixListRequest(
DtSimMessage* msg);
73 static void syncMatrixAddRequestCallback(
DtSimMessage* msg,
void* usr);
74 virtual void processSyncMatrixAddRequest(
DtSimMessage* msg);
77 static void syncMatrixRemoveRequestCallback(
DtSimMessage* msg,
void* usr);
78 virtual void processSyncMatrixRemoveRequest(
DtSimMessage* msg);
83 virtual bool deleteSyncMatrix(
const DtUUID& uuid);
class DtIfPlan:
Definition: ifPlan.h:61
UUID is a unique ID wrapper class.
Definition: uuid.h:59
class DtLocalObjectManager:
Definition: localObjectManager.h:151
Contains the DtUUID class declaration.
The synchronization matrix manager maintains the list of synchronization matrices. These are locally simulated objects that manage a list of phases where during each phase, scenario entities can be assigned with plans.
Definition: syncMatrixManager.h:40
#define DT_DLL_vrfobjcore
This file is used to determine how to build.
Definition: vrfobjcoreDefines.h:24
File: simMsg.h.
Definition: simMessage.h:35
class DtPlan:
Definition: plan.h:92
Central access point of all non-object-specific the services and managers that are available for use ...
Definition: simulationServices.h:95
Represents a single simulation object in the exercise. Object may be VRF simulation, or non-VRF simulated, and may be simulated by the local sim engine, or by a remote sim engine. Only public (external) state of the object is available. All data is read-only. All access to data of the object is thread safe within the simulation frame.
Definition: simObject.h:88
class DtSimStatement:
Definition: simStatement.h:38
DT_DLL_DEBUGDRAWRENDERER void init(makVrv::DtDe &de)
Work function for the plugin initialization.
DtSimulationServices * mySimulationServices
Definition: syncMatrixManager.h:94
std::map< DtUUID, bool > myPlansCompletionStatusMap
stores the plans completion status of a sync matrix object
Definition: syncMatrixManager.h:98
Arguments passed by the DtLocalObjectManager::addNameChangedCallback callbacks.
Definition: localObjectManager.h:111
DtLocalObjectManager * myObjectManager
Definition: syncMatrixManager.h:95
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