19 #include <vlpi/disEnums.h>
73 virtual const char*
type()
const override;
76 virtual bool init()
override;
91 virtual void tick()
override;
95 virtual bool createTriggerPort();
98 virtual bool createQuantityOutputPort();
101 virtual bool createLoadedPort();
104 virtual bool createLosOutputPort();
107 virtual bool createLosInputPort();
110 virtual bool createWeaponsHoldInputPort();
112 virtual bool createTargetToAcquireOutputPort();
114 virtual void setLoadAmmoTime(
DtTime loadAmmoTime);
115 virtual DtTime loadAmmoTime()
const;
117 virtual void setUnloadAmmoTime(
DtTime unloadAmmoTime);
118 virtual DtTime unloadAmmoTime()
const;
134 virtual bool chooseAmmo(
const DtEntityType& targetType,
136 munition, DtDetonatorFuze& fuze,
int& ammoAvailable);
139 virtual bool checkCurrentAmmo(
int& ammoAvailable);
143 virtual bool ammoOKToUse(
const DtEntityType& targetType);
146 virtual void initProcessSR();
158 virtual void enable()
override;
161 virtual void disable()
override;
180 virtual void lookupAndCacheProcessSR();
187 static void fireBallisticGunTaskCallback(
DtSimMessage* msg,
void* usr);
192 virtual void processFireBallisticGunTask(
DtSimMessage* msg);
198 bool updateFireBallisticGunTask();
215 void getMunitionResources(std::list<DtString>& resourceList);
218 virtual void updateResourceList();
222 virtual bool weaponsHoldState();
227 static void setResourceCallback(
DtSimMessage * msg,
void * usrData);
234 static void setRestoreCallback(
DtSimMessage * msg,
void * usrData);
239 bool outOfAmmo()
const;
242 virtual bool isSurrenderedLifeform(
const DtSimObject* entity)
const;
246 virtual bool positionWithinTargetRegion(
const DtVector& localPosition);
247 virtual void setupRegionEvaluator();
249 virtual void updateRegionEvaluator();
281 bool isFireBallisticGunTasked()
const;
284 bool hasTarget()
const;
286 void setRoundsFiredUponTarget(
const int& roundsFired);
287 const int roundsFiredUponTarget()
const;
288 const int totalRoundsToFireUponTarget()
const;
289 void setIsExplicitlyTasked(
const bool& explicitlyTasked);
290 const bool isExplicitlyTasked()
const;
291 void setIsInFiringCycle(
const bool isIn);
292 const bool isInFiringCycle()
const;
293 void setWeaponStatus(
const int weaponStatus);
294 const int weaponStatus()
const;
DtWeaponComponentInterface * myWeaponComponentInterface
Interface between this weapon controller and the entity's DtTargetSelectionController.
Definition: ballisticGunController.h:396
UUID is a unique ID wrapper class.
Definition: uuid.h:59
#define DT_DLL_vrfmodel
This file is used to determine how to build.
Definition: vrfmodelDefines.h:24
DtBooleanOutputPort * myTriggerPort
Output Port Name: trigger Output Port Description: Sends a new True value when trigger is pulled...
Definition: ballisticGunController.h:319
DtGenericWeaponInfo * myWeaponInfo
The weapon information shared with the rest of components on the entity.
Definition: ballisticGunController.h:399
virtual void disable() override
Overridden to allow tasks controllers that can be disabled to call task complete. ...
virtual bool postAddComponentsInit() override
Calls enableTaskTypes()
DtOutputPortGroup * myGunControlPortGroup
Output Port Group Name: gun-control Output Port Group Description:
Definition: ballisticGunController.h:346
virtual const char * type() const override=0
Returns a string identifies the class type of component. Type values are defined in compTypes...
DtEntityListOutputPort * myTargetToAcquireOutputPort
Output Port Name: target-to-acquire Output Port Description: When there is a target in the weapon int...
Definition: ballisticGunController.h:360
Instances of DtBooleanOutputPort are output ports through which data producers can send boolean data...
Definition: boolIOPort.h:45
DtIntegerOutputPort * myLosOutputPort
Output Port Name: line-of-sight Output Port Description: Indicates the result of a line of sight calc...
Definition: ballisticGunController.h:342
virtual bool createWorkingTargetPoint(const DtVector worldLoc)
virtual void registerTaskMsgCallbacks()
AcceptLevel
Levels that a task controller can accept a task it has registered for.
Definition: taskControllerComponent.h:55
virtual void preFirstTickInit()
This function can be overridden to initialize a component before it is ticked for the first time...
This class provides a base class for all controllers that are capable of executing a DtSimTask...
Definition: singleTaskControllerComponent.h:22
Holds a position of some form. May be an absolute position, or a reference to another object...
Definition: rwLocationReference.h:25
bool myWaitingForFire
This flag is set to true when the controller pulls the trigger; it won't do anything in the tick func...
Definition: ballisticGunController.h:389
bool myOutOfAmmoWarn
Flag so an out-of-ammo warning is only sent once per target.
Definition: ballisticGunController.h:392
Definition: readerWriter.h:85
A readable, writable type whose name is the name of a component and that has a list of component name...
Definition: componentDescriptor.h:49
DtTime myLastRegionEvaluatorUpdateTime
Definition: ballisticGunController.h:402
Definition: readerWriterRegistry.h:39
DtOutputPortGroup is a data port group of a data provider. It may contain any number of DtOutputPorts...
Definition: outputPortGroup.h:34
DtBooleanInputPort * myWeaponsHoldInputPort
Input Port Name: weapons-hold Input Port Description: When true, all firing is disabled. Connecting to this port is optional. If no connection is made, it will default to false. Input Port Range: True/False Input Port Default Value: False .
Definition: ballisticGunController.h:354
This file contains the class declaration for the.
virtual bool init() override
Calls setRadio()
int myRoundsAvailable
The quantity of the current munition in the resources store.
Definition: ballisticGunController.h:372
Instances of DtEntityListOutputPort are output ports through which data producers can send a list of ...
Definition: entListIOPort.h:45
An implementation of DtWeaponInforInterface that allows for flexible registering of functions from ot...
Definition: genericWeaponInfo.h:17
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 ...
An abstract base class for all evaluators of spatial filters. The evaluation of spatial filters is sp...
Definition: spatialFilterEvaluator.h:30
DtBallisticGunController provides ammunition loading, unloading, and trigger inputs for use by a ball...
Definition: ballisticGunController.h:50
DtIntegerResource implements the required functions for a resource that can be measured by an integer...
Definition: integerResource.h:17
DtWeaponStatus
The status items below are used as bit fields. To set a state, OR the enumerated value into the weapo...
Definition: baseWeaponComponentInterface.h:34
TargetApplicability
Definition: weaponInfoInterface.h:21
DtVrfBalGunPSR * myProcessState
Pointer to a process state repository used to store state data associated with this component...
Definition: ballisticGunController.h:379
virtual bool createPorts()
Called by init. Derived classes should override this method to create all their input/output ports an...
virtual bool createPortGroups()
Called by init. Derived classes should override this method to create all their input/output port gro...
DtSimMunition myCurrentMunition
The correct munition and fuze for our current target.
Definition: ballisticGunController.h:368
Central access point of all non-object-specific the services and managers that are available for use ...
Definition: simulationServices.h:94
The DtSimComponent class is the base class for the entire simulation model component hierarchy...
Definition: simComponent.h:91
DtIntegerOutputPort * myQuantityOutputPort
Output Port Name: quantity Output Port Description: Sends the number of rounds to be fired with a sin...
Definition: ballisticGunController.h:327
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
const DtTaskControllerComponent & operator=(const DtTaskControllerComponent &orig)
assignment operator
virtual void enable() override
Overridden to call registerTaskMsgCallbacks().
DtSimTask is an abstract base class from which real tasks can derive. It manages the read/write capab...
Definition: simTask.h:30
virtual void clearTask() override
If component is currently tasked, calls clearPendingSubtasks(), sets the tasked flag to false...
DtDetonatorFuze myCurrentFuze
Definition: ballisticGunController.h:369
DtIntegerInputPort * myLosInputPort
Input Port Name: line-of-sight Input Port Description: Indicates the result of a line of sight calcul...
Definition: ballisticGunController.h:312
virtual AcceptLevel acceptTask(const DtTaskMessage &task)
Called by the task manager when this controller is being considered to execute a task. Only tasks which already match types that this controller has registered for will be passed. This is used for the case where multiple task controllers have registered for the same task type. This gives the controller a chance to look at the parameters of the task and to reject the execution of the task based on parameters. Controllers can return any of the AcceptLevel levels. The task manager will choose a controller with the lowest AcceptLevel to execute, but will not choose any controller that returns AcceptLevel_NoAccept. Default implementation returns AcceptLevel_Accept. Override this to check parameters and conditionally return a different AccpetLevel.
DtBoost::shared_ptr< DtSpatialFilterEvaluator > myRegionEvaluator
Definition: ballisticGunController.h:401
Instances of DtIntegerOutputPort are output ports through which data producers can send integer value...
Definition: integerIOPort.h:45
Task for firing the ballistic gun at a target.
Definition: fireBallisticGunTask.h:25
const DtBallisticGunControllerDescriptor * myGunDescriptor
Get ammo select tables from here.
Definition: ballisticGunController.h:382
DtSimMunition class.
Definition: simMunition.h:31
DtUUID myPreviousTarget
Maintain the target we had last tick (if any) to detect changes in target (which will kick off possib...
Definition: ballisticGunController.h:365
DtBallisticGunControllerDescriptor, descriptor for the DtBallisticGunController component.
Definition: ballisticGunControllerDescriptor.h:28
DtBooleanOutputPort * myLoadedPort
Output Port Name: loaded Output Port Description: True when the gun is loaded. Output Port Range: Ou...
Definition: ballisticGunController.h:334
Class DtVrfBalGunPSR: Used to hold checkpointable state for the processes associated with ballistic g...
Definition: vrfBalGunPSR.h:36
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
virtual void deleteWorkingTargetPoint()
Represents the interface between the DtTargetSelectionController and a weapon system.
Definition: weaponComponentInterface.h:20
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