22 #include <vlpi/disEnums.h>
23 #include <matrix/vlVector.h>
65 virtual const char*
type()
const;
84 virtual void findWeaponControlInterfaces();
87 virtual void setCurrentTargetLocation(
const DtVector& location);
89 virtual const DtVector& currentTargetLocation();
111 static void indirectFireAtLocationTaskCallback(
DtSimMessage* msg,
void* usr);
112 virtual void processIndirectFireAtLocationTask(
DtSimMessage* msg);
115 static void indirectFireAtTargetTaskCallback(
DtSimMessage* msg,
void* usr);
116 virtual void processIndirectFireAtTargetTask(
DtSimMessage* msg);
120 static void FFEOnTargetCallback(
DtSimMessage * msg,
void * usr);
122 static void FFEOnEntityCallback(
DtSimMessage * msg,
void * usr);
124 static void FFEOnLocationCallback(
DtSimMessage * msg,
void * usr);
126 static void userTaskCallback(
DtSimMessage * msg,
void * usr);
134 virtual bool processFFEOnTargetTask(
DtSimMessage * msg);
135 virtual bool processFFEOnLocationTask(
DtSimMessage * msg);
136 virtual bool processFFEOnEntityTask(
DtSimMessage * msg);
148 static void fireCruiseMissileCallback(
DtSimMessage * msg,
void * usr);
149 virtual bool processFireCruiseMissileTask(
DtSimMessage * msg);
174 void makeDisplayNamesUnique();
181 virtual bool createPSR();
UUID is a unique ID wrapper class.
Definition: rwUUID.h:229
DtFireCruiseMissileTask is a task message for launching cruise missiles. It contains a target object...
Definition: fireCruiseMissileTask.h:22
#define DT_DLL_vrfmodel
This file is used to determine how to build.
Definition: vrfmodelDefines.h:24
DtIndirectFireControllerPSR * myProcessState
Container for state data associated with this component. This state is saved and restored as part of ...
Definition: indirectFireController.h:202
DtIndirectFireControllerPSR is a process state repository which holds state variables for the DtIndir...
Definition: indirectFireControllerPSR.h:18
virtual void registerTaskMsgCallbacks()
This class provides a base class for all controllers that are capable of executing a DtSimTask...
Definition: singleTaskControllerComponent.h:20
Description: Readable, Writable DtString Variable substitutions are done on this object when it is re...
Definition: rwString.h:20
A readable, writable type whose name is the name of a component and that has a list of component name...
Definition: componentDescriptor.h:49
Description: Readable, Writable DtTaitBryan.
Definition: rwTaitBryan.h:20
Definition: readerWriterRegistry.h:39
virtual const char * type() const =0
Returns a string identifies the class type of component. Type values are defined in compTypes...
virtual bool init()
Calls setRadio()
virtual void taskComplete(bool success=true)
If we are currently tasked, this will cause us to notify the entity that we're done and delete the ta...
DtUUID myCurrentTarget
Definition: indirectFireController.h:211
virtual void clearTask()
If component is currently tasked, calls clearPendingSubtasks(), sets the tasked flag to false...
DtIndirectFireController is responsible for processing the fire for effect tasks including fire for e...
Definition: indirectFireController.h:42
DtIndirectFireSupportControllerDescriptor * myFireSupportDescriptor
Descriptor to initialize this controller which controlls all the indirect fire weapons attached to th...
Definition: indirectFireController.h:210
std::list< DtIndirectWeaponComponentInterface * > DtIndirectWeaponInterfaceList
Definition: indirectFireController.h:47
File: simMsg.h.
Definition: simMessage.h:35
virtual void tick()
This gives the thread of control to the component. The component is ticked once each simulation from ...
DtIndirectWeaponInterfaceList myWeaponInterfaceList
List of weapon interfaces through which the indirect fire controller interfaces with the various indi...
Definition: indirectFireController.h:206
The base class for all messages to/from a specific DtVrfObject. Various subclasses of this class will...
Definition: vrfObjectMessage.h:30
DtVector myCurrentTargetLocation
Definition: indirectFireController.h:212
Central access point of all non-object-specific the services and managers that are available for use ...
Definition: simulationServices.h:90
The DtSimComponent class is the base class for the entire simulation model component hierarchy...
Definition: simComponent.h:70
Instances of DtIndirectFireSupportControllerDescriptor are used to specify the parameters for a DtAim...
Definition: indirectFireSupportControllerDescriptor.h:17
Represents the interface between the DtIndirectFireController and an indirect fire weapon system...
Definition: indirectWeaponComponentInterface.h:24
const DtTaskControllerComponent & operator=(const DtTaskControllerComponent &orig)
assignment operator
virtual bool postAddComponentsInit()
Calls enableTaskTypes()
File: fireForEff.h.
Definition: fireForEffectTask.h:32
A DtTaskMsg is a DtRadioMsg with a pointer to a task. The type of the taskMsg is just the type of the...
Definition: taskMessage.h:21
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