Module Wrapper.Controllable
Wrapper -- CONTROLLABLE is an intermediate class wrapping Group and Unit classes "controllers".
Author: FlightControl
Contributions:
Global(s)
Global CONTROLLABLE |
Wrapper class to handle the "DCS Controllable objects", which are Groups and Units:
|
Wrapper class to handle the "DCS Controllable objects", which are Groups and Units:
- Support all DCS Controllable APIs.
- Enhance with Controllable specific APIs not in the DCS Controllable API set.
- Handle local Controllable Controller.
- Manage the "state" of the DCS Controllable.
1) CONTROLLABLE constructor
The CONTROLLABLE class provides the following functions to construct a CONTROLLABLE instance:
- CONTROLLABLE.New(): Create a CONTROLLABLE instance.
2) CONTROLLABLE Task methods
Several controllable task methods are available that help you to prepare tasks. These methods return a string consisting of the task description, which can then be given to either a Wrapper.Controllable#CONTROLLABLE.PushTask or Wrapper.Controllable#SetTask method to assign the task to the CONTROLLABLE. Tasks are specific for the category of the CONTROLLABLE, more specific, for AIR, GROUND or AIR and GROUND. Each task description where applicable indicates for which controllable category the task is valid. There are 2 main subdivisions of tasks: Assigned tasks and EnRoute tasks.
2.1) Task assignment
Assigned task methods make the controllable execute the task where the location of the (possible) targets of the task are known before being detected. This is different from the EnRoute tasks, where the targets of the task need to be detected before the task can be executed.
Find below a list of the assigned task methods:
- CONTROLLABLE.TaskAttackGroup: (AIR) Attack a Controllable.
- CONTROLLABLE.TaskAttackMapObject: (AIR) Attacking the map object (building, structure, e.t.c).
- CONTROLLABLE.TaskAttackUnit: (AIR) Attack the Unit.
- CONTROLLABLE.TaskBombing: (AIR) Delivering weapon at the point on the ground.
- CONTROLLABLE.TaskBombingRunway: (AIR) Delivering weapon on the runway.
- CONTROLLABLE.TaskEmbarking: (AIR) Move the controllable to a Vec2 Point, wait for a defined duration and embark a controllable.
- CONTROLLABLE.TaskEmbarkToTransport: (GROUND) Embark to a Transport landed at a location.
- CONTROLLABLE.TaskEscort: (AIR) Escort another airborne controllable.
- CONTROLLABLE.TaskFAC_AttackGroup: (AIR + GROUND) The task makes the controllable/unit a FAC and orders the FAC to control the target (enemy ground controllable) destruction.
- CONTROLLABLE.TaskFireAtPoint: (GROUND) Fire some or all ammunition at a VEC2 point.
- CONTROLLABLE.TaskFollow: (AIR) Following another airborne controllable.
- CONTROLLABLE.TaskHold: (GROUND) Hold ground controllable from moving.
- CONTROLLABLE.TaskHoldPosition: (AIR) Hold position at the current position of the first unit of the controllable.
- CONTROLLABLE.TaskLand: (AIR HELICOPTER) Landing at the ground. For helicopters only.
- CONTROLLABLE.TaskLandAtZone: (AIR) Land the controllable at a CONTROLLABLE.TaskOrbitCircle: (AIR) Orbit at the current position of the first unit of the controllable at a specified alititude.
- CONTROLLABLE.TaskOrbitCircleAtVec2: (AIR) Orbit at a specified position at a specified alititude during a specified duration with a specified speed.
- CONTROLLABLE.TaskRefueling: (AIR) Refueling from the nearest tanker. No parameters.
- CONTROLLABLE.TaskRoute: (AIR + GROUND) Return a Misson task to follow a given route defined by Points.
- CONTROLLABLE.TaskRouteToVec2: (AIR + GROUND) Make the Controllable move to a given point.
- CONTROLLABLE.TaskRouteToVec3: (AIR + GROUND) Make the Controllable move to a given point.
- CONTROLLABLE.TaskRouteToZone: (AIR + GROUND) Route the controllable to a given zone.
- CONTROLLABLE.TaskReturnToBase: (AIR) Route the controllable to an airbase.
2.2) EnRoute assignment
EnRoute tasks require the targets of the task need to be detected by the controllable (using its sensors) before the task can be executed:
- CONTROLLABLE.EnRouteTaskAWACS: (AIR) Aircraft will act as an AWACS for friendly units (will provide them with information about contacts). No parameters.
- CONTROLLABLE.EnRouteTaskEngageControllable: (AIR) Engaging a controllable. The task does not assign the target controllable to the unit/controllable to attack now; it just allows the unit/controllable to engage the target controllable as well as other assigned targets.
- CONTROLLABLE.EnRouteTaskEngageTargets: (AIR) Engaging targets of defined types.
- CONTROLLABLE.EnRouteTaskEngageTargetsInZone: (AIR) Engaging a targets of defined types at circle-shaped zone.
- CONTROLLABLE.EnRouteTaskEWR: (AIR) Attack the Unit.
- CONTROLLABLE.EnRouteTaskFAC: (AIR + GROUND) The task makes the controllable/unit a FAC and lets the FAC to choose a targets (enemy ground controllable) around as well as other assigned targets.
- CONTROLLABLE.EnRouteTaskFAC_EngageControllable: (AIR + GROUND) The task makes the controllable/unit a FAC and lets the FAC to choose the target (enemy ground controllable) as well as other assigned targets.
- CONTROLLABLE.EnRouteTaskTanker: (AIR) Aircraft will act as a tanker for friendly units. No parameters.
2.3) Task preparation
There are certain task methods that allow to tailor the task behaviour:
- CONTROLLABLE.TaskWrappedAction: Return a WrappedAction Task taking a Command.
- CONTROLLABLE.TaskCombo: Return a Combo Task taking an array of Tasks.
- CONTROLLABLE.TaskCondition: Return a condition section for a controlled task.
- CONTROLLABLE.TaskControlled: Return a Controlled Task taking a Task and a TaskCondition.
2.4) Call a function as a Task
A function can be called which is part of a Task. The method CONTROLLABLE.TaskFunction() prepares a Task that can call a GLOBAL function from within the Controller execution. This method can also be used to embed a function call when a certain waypoint has been reached. See below the Tasks at Waypoints section.
Demonstration Mission: GRP-502 - Route at waypoint to random point
2.5) Tasks at Waypoints
Special Task methods are available to set tasks at certain waypoints. The method CONTROLLABLE.SetTaskWaypoint() helps preparing a Route, embedding a Task at the Waypoint of the Route.
This creates a Task element, with an action to call a function as part of a Wrapped Task.
2.6) Obtain the mission from controllable templates
Controllable templates contain complete mission descriptions. Sometimes you want to copy a complete mission from a controllable and assign it to another:
- CONTROLLABLE.TaskMission: (AIR + GROUND) Return a mission task from a mission template.
3) Command methods
Controllable command methods prepare the execution of commands using the CONTROLLABLE.SetCommand method:
- CONTROLLABLE.CommandDoScript: Do Script command.
- CONTROLLABLE.CommandSwitchWayPoint: Perform a switch waypoint command.
4) Routing of Controllables
Different routing methods exist to route GROUPs and UNITs to different locations:
- CONTROLLABLE.Route(): Make the Controllable to follow a given route.
- CONTROLLABLE.RouteGroundTo(): Make the GROUND Controllable to drive towards a specific coordinate.
- CONTROLLABLE.RouteAirTo(): Make the AIR Controllable to fly towards a specific coordinate.
5) Option methods
Controllable Option methods change the behaviour of the Controllable while being alive.
5.1) Rule of Engagement:
- CONTROLLABLE.OptionROEWeaponFree
- CONTROLLABLE.OptionROEOpenFire
- CONTROLLABLE.OptionROEReturnFire
- CONTROLLABLE.OptionROEEvadeFire
To check whether an ROE option is valid for a specific controllable, use:
- CONTROLLABLE.OptionROEWeaponFreePossible
- CONTROLLABLE.OptionROEOpenFirePossible
- CONTROLLABLE.OptionROEReturnFirePossible
- CONTROLLABLE.OptionROEEvadeFirePossible
5.2) Rule on thread:
- CONTROLLABLE.OptionROTNoReaction
- CONTROLLABLE.OptionROTPassiveDefense
- CONTROLLABLE.OptionROTEvadeFire
- CONTROLLABLE.OptionROTVertical
To test whether an ROT option is valid for a specific controllable, use:
- CONTROLLABLE.OptionROTNoReactionPossible
- CONTROLLABLE.OptionROTPassiveDefensePossible
- CONTROLLABLE.OptionROTEvadeFirePossible
- CONTROLLABLE.OptionROTVerticalPossible
5.3) Alarm state:
Type(s)
| Fields and Methods inherited from CONTROLLABLE | Description |
|---|---|
|
Clear all tasks from the controllable. |
|
|
Do Script command |
|
|
Create a stop route command, which returns a string containing the command. |
|
CONTROLLABLE:CommandSwitchWayPoint(FromWayPoint, ToWayPoint) |
Perform a switch waypoint command |
|
The name of the controllable. |
|
|
Return the route of a controllable by using the Core.Database#DATABASE class. |
|
|
The DCS controllable class. |
|
|
(AIR) Aircraft will act as an AWACS for friendly units (will provide them with information about contacts). |
|
|
(GROUND) Ground unit (EW-radar) will act as an EWR for friendly units (will provide them with information about contacts). |
|
|
(AIR) Engaging a controllable. |
|
CONTROLLABLE:EnRouteTaskEngageTargets(Distance, TargetTypes, Priority) |
(AIR) Engaging targets of defined types. |
CONTROLLABLE:EnRouteTaskEngageTargetsInZone(Vec2, Radius, TargetTypes, Priority) |
(AIR) Engaging a targets of defined types at circle-shaped zone. |
|
(AIR) Search and attack the Unit. |
|
|
(AIR + GROUND) The task makes the controllable/unit a FAC and lets the FAC to choose a targets (enemy ground controllable) around as well as other assigned targets. |
|
CONTROLLABLE:EnRouteTaskFAC_EngageGroup(AttackGroup, Priority, WeaponType, Designation, Datalink) |
(AIR + GROUND) The task makes the controllable/unit a FAC and lets the FAC to choose the target (enemy ground controllable) as well as other assigned targets. |
|
(AIR) Aircraft will act as a tanker for friendly units. |
|
|
Return the detected targets of the controllable. |
|
|
Returns relative amount of fuel (from 0.0 to 1.0) the unit has in its internal tanks. |
|
|
Returns relative average amount of fuel (from 0.0 to 1.0) a unit or group has in its internal tanks. |
|
|
Returns relative minimum amount of fuel (from 0.0 to 1.0) a unit or group has in its internal tanks. |
|
|
Returns the health. |
|
|
Returns the initial health. |
|
|
Return the mission template of the controllable. |
|
|
Return the mission route of the controllable. |
|
|
Get the current WayPoints set with the WayPoint functions( Note that the WayPoints can be nil, although there ARE waypoints). |
|
|
Checking the Task Queue of the controllable. |
|
|
Returns if the Controllable contains AirPlanes. |
|
|
Create a new CONTROLLABLE from a DCSControllable |
|
|
Alarm state to Auto: AI will automatically switch alarm states based on the presence of threats. |
|
|
Alarm state to Green: Group is not combat ready. |
|
|
Alarm state to Red: Group is combat ready and actively searching for targets. |
|
|
Holding weapons. |
|
|
Can the CONTROLLABLE hold their weapons? |
|
|
Openfire. |
|
|
Can the CONTROLLABLE attack designated targets? |
|
|
Return fire. |
|
|
Can the CONTROLLABLE attack returning on enemy fire? |
|
|
Weapon free. |
|
|
Can the CONTROLLABLE attack targets of opportunity? |
|
|
Evade on fire. |
|
|
Can the CONTROLLABLE evade on enemy fire? |
|
|
No evasion on enemy threats. |
|
|
Can the CONTROLLABLE ignore enemy fire? |
|
|
Evasion passive defense. |
|
|
Can the CONTROLLABLE evade using passive defenses? |
|
|
Evade on fire using vertical manoeuvres. |
|
|
Can the CONTROLLABLE evade on fire using vertical manoeuvres? |
|
|
Set RTB on ammo. |
|
|
Set RTB on bingo fuel. |
|
|
(GROUND) Patrol iteratively using the waypoints the for the (parent) group. |
|
CONTROLLABLE:PatrolRouteRandom(Speed, Formation, ToWaypoint) |
(GROUND) Patrol randomly to the waypoints the for the (parent) group. |
|
(GROUND) Patrol randomly to the waypoints the for the (parent) group. |
|
|
Popping current Task from the controllable. |
|
|
Pushing Task on the queue from the controllable. |
|
|
Make the controllable to follow a given route. |
|
CONTROLLABLE:RouteAirTo(ToCoordinate, AltType, Type, Action, Speed, DelaySeconds) |
Make the AIR Controllable fly towards a specific point. |
CONTROLLABLE:RouteGroundOnRailRoads(ToCoordinate, Speed, DelaySeconds) |
Make the TRAIN Controllable to drive towards a specific point using railroads. |
CONTROLLABLE:RouteGroundOnRoad(ToCoordinate, Speed, DelaySeconds, OffRoadFormation) |
Make the GROUND Controllable to drive towards a specific point using (mostly) roads. |
CONTROLLABLE:RouteGroundTo(ToCoordinate, Speed, Formation, DelaySeconds) |
Make the GROUND Controllable to drive towards a specific point. |
|
Make the controllable to push follow a given route. |
|
|
Resumes the movement of the vehicle on the route. |
|
|
Stops the movement of the vehicle on the route. |
|
|
(AIR + GROUND) Make the Controllable move to fly to a given point. |
|
|
(AIR + GROUND) Make the Controllable move to a given point. |
|
|
Executes a command action |
|
|
Clearing the Task Queue and Setting the Task on the queue from the controllable. |
|
|
Set a Task at a Waypoint using a Route list. |
|
|
Give an uncontrolled air controllable the start command. |
|
|
(AIR) Attack a Controllable. |
|
|
(AIR) Attacking the map object (building, structure, e.t.c). |
|
|
(AIR) Attack the Unit. |
|
|
(AIR) Delivering weapon at the point on the ground. |
|
|
(AIR) Delivering weapon on the runway. |
|
|
Return a Combo Task taking an array of Tasks. |
|
CONTROLLABLE:TaskCondition(time, userFlag, userFlagValue, condition, duration, lastWayPoint) |
Return a condition section for a controlled task. |
|
Return a Controlled Task taking a Task and a TaskCondition. |
|
|
Move to a defined Vec2 Point, and embark to a controllable when arrived within a defined Radius. |
|
CONTROLLABLE:TaskEmbarking(Point, Duration, EmbarkingControllable) |
(AIR) Move the controllable to a Vec2 Point, wait for a defined duration and embark a controllable. |
|
(AIR) Escort another airborne controllable. |
|
CONTROLLABLE:TaskFAC_AttackGroup(AttackGroup, WeaponType, Designation, Datalink) |
(AIR + GROUND) The task makes the controllable/unit a FAC and orders the FAC to control the target (enemy ground controllable) destruction. |
CONTROLLABLE:TaskFireAtPoint(Vec2, Radius, AmmoCount, WeaponType) |
(GROUND) Fire at a VEC2 point until ammunition is finished. |
CONTROLLABLE:TaskFollow(FollowControllable, Vec3, LastWaypointIndex) |
(AIR) Following another airborne controllable. |
|
This creates a Task element, with an action to call a function as part of a Wrapped Task. |
|
|
Make a task for a TRAIN Controllable to drive towards a specific point using railroad. |
|
CONTROLLABLE:TaskGroundOnRoad(ToCoordinate, Speed, OffRoadFormation, Shortcut, FromCoordinate) |
Make a task for a GROUND Controllable to drive towards a specific point using (mostly) roads. |
|
(GROUND) Hold ground controllable from moving. |
|
|
(AIR) Hold position at the current position of the first unit of the controllable. |
|
|
(AIR HELICOPTER) Landing at the ground. |
|
|
(AIR) Land the controllable at a @{Core.Zone#ZONE_RADIUS). |
|
|
(AIR + GROUND) Return a mission task from a mission template. |
|
|
(AIR) Orbit at the current position of the first unit of the controllable at a specified alititude. |
|
|
(AIR) Orbit at a specified position at a specified alititude during a specified duration with a specified speed. |
|
|
(AIR) Refueling from the nearest tanker. |
|
|
Return a Misson task to follow a given route defined by Points. |
|
|
(GROUND) Route the controllable to a given Vec2. |
|
CONTROLLABLE:TaskRouteToZone(Zone, Randomize, Speed, Formation) |
(AIR + GROUND) Route the controllable to a given zone. |
|
Return a WrappedAction Task taking a Command. |
|
|
Executes the WayPoint plan. |
|
CONTROLLABLE:WayPointFunction(WayPoint, WayPointIndex, WayPointFunction, ...) |
Registers a waypoint function that will be executed when the controllable moves over the WayPoint. |
|
Retrieve the controllable mission and allow to place function hooks within the mission waypoint plan. |
|
|
Get the controller for the CONTROLLABLE. |
| Fields and Methods inherited from POSITIONABLE | Description |
|---|---|
|
Add cargo. |
|
|
Get cargo item count. |
|
|
Clear all cargo. |
|
|
Destroys the POSITIONABLE. |
|
|
Signal a flare at the position of the POSITIONABLE. |
|
|
Signal a green flare at the position of the POSITIONABLE. |
|
|
Signal a red flare at the position of the POSITIONABLE. |
|
|
Signal a white flare at the position of the POSITIONABLE. |
|
|
Signal a yellow flare at the position of the POSITIONABLE. |
|
|
Returns the altitude of the POSITIONABLE. |
|
|
Returns the Angle of Attack of a positionable. |
|
|
Create a Core.Radio#BEACON, to allow this POSITIONABLE to broadcast beacon signals |
|
|
Get the bounding box of the underlying POSITIONABLE DCS Object. |
|
|
Get the bounding radius of the underlying POSITIONABLE DCS Object. |
|
|
Get all contained cargo. |
|
|
Get Cargo Bay Free Weight in kg. |
|
|
Returns the unit's climb or descent angle. |
|
|
Returns a COORDINATE object indicating the point in 3D of the POSITIONABLE within the mission. |
|
|
Returns the POSITIONABLE heading in degrees. |
|
|
Returns the POSITIONABLE height in meters. |
|
|
Get the last assigned laser code |
|
|
Returns a message with the callsign embedded (if there is one). |
|
|
Returns the message text with the callsign embedded (if there is one). |
|
|
Returns a message of a specified type with the callsign embedded (if there is one). |
|
|
Returns a {@DCS#Vec3} table of the objects current orientation in 3D space. |
|
|
Returns a {@DCS#Vec3} table of the objects current X orientation in 3D space, i.e. |
|
|
Returns a {@DCS#Vec3} table of the objects current Y orientation in 3D space, i.e. |
|
|
Returns a {@DCS#Vec3} table of the objects current Z orientation in 3D space, i.e. |
|
|
Returns the pitch angle of a unit. |
|
|
Returns a POINT_VEC2 object indicating the point in 2D of the POSITIONABLE within the mission. |
|
|
Returns a POINT_VEC3 object indicating the point in 3D of the POSITIONABLE within the mission. |
|
|
Returns a pos3 table of the objects current position and orientation in 3D space. |
|
|
Returns the DCS#Position3 position vectors indicating the point and direction vectors in 3D of the POSITIONABLE within the mission. |
|
|
Create a Core.Radio#RADIO, to allow radio transmission for this POSITIONABLE. |
|
|
Returns a random DCS#Vec3 vector within a range, indicating the point in 3D of the POSITIONABLE within the mission. |
|
|
Returns the roll angle of a unit. |
|
|
Get the Spot |
|
|
Returns the DCS#Vec2 vector indicating the point in 2D of the POSITIONABLE within the mission. |
|
|
Returns the DCS#Vec3 vector indicating the 3D vector of the POSITIONABLE within the mission. |
|
|
Returns the a Velocity object from the positionable. |
|
|
Returns the POSITIONABLE velocity in km/h. |
|
|
Returns the POSITIONABLE velocity in meters per second. |
|
|
Returns the POSITIONABLE velocity Vec3 vector. |
|
|
Returns the yaw angle of a unit. |
|
|
Returns if carrier has given cargo. |
|
|
Returns true if the POSITIONABLE is in the air. |
|
|
Returns if the Positionable is located above a runway. |
|
|
Returns if the unit is of an air category. |
|
|
Is cargo bay empty. |
|
|
Returns if the unit is of an ground category. |
|
|
Check if the POSITIONABLE is lasing a target |
|
|
Stop Lasing a POSITIONABLE |
|
|
Start Lasing a POSITIONABLE |
|
|
Send a message to the players in the Wrapper.Group. |
|
|
Send a message to all coalitions. |
|
|
Send a message to the blue coalition. |
|
CONTROLLABLE:MessageToClient(Message, Duration, Client, Name) |
Send a message to a client. |
CONTROLLABLE:MessageToCoalition(Message, Duration, MessageCoalition, Name) |
Send a message to a coalition. |
CONTROLLABLE:MessageToGroup(Message, Duration, MessageGroup, Name) |
Send a message to a Wrapper.Group. |
|
Send a message to the red coalition. |
|
CONTROLLABLE:MessageToSetGroup(Message, Duration, MessageSetGroup, Name) |
Send a message to a Core.Set#SET_GROUP. |
CONTROLLABLE:MessageTypeToCoalition(Message, MessageType, MessageCoalition, Name) |
Send a message to a coalition. |
CONTROLLABLE:MessageTypeToGroup(Message, MessageType, MessageGroup, Name) |
Send a message of a message type to a Wrapper.Group. |
|
Create a new POSITIONABLE from a DCSPositionable |
|
|
Remove cargo. |
|
|
Set Cargo Bay Weight Limit in kg. |
|
|
Smoke the POSITIONABLE. |
|
|
Smoke the POSITIONABLE Blue. |
|
|
Smoke the POSITIONABLE Green. |
|
|
Smoke the POSITIONABLE Orange. |
|
|
Smoke the POSITIONABLE Red. |
|
|
Smoke the POSITIONABLE White. |
|
| Fields and Methods inherited from IDENTIFIABLE | Description |
|---|---|
|
Gets the CallSign of the IDENTIFIABLE, which is a blank by default. |
|
|
Returns category of the DCS Identifiable. |
|
|
Returns the DCS Identifiable category name as defined within the DCS Identifiable Descriptor. |
|
|
Returns coalition of the Identifiable. |
|
|
Returns the name of the coalition of the Identifiable. |
|
|
Returns country of the Identifiable. |
|
|
Returns country name of the Identifiable. |
|
|
Returns Identifiable descriptor. |
|
|
Returns DCS Identifiable object name. |
|
|
Returns the type name of the DCS Identifiable. |
|
|
Check if the Object has the attribute. |
|
|
The name of the identifiable. |
|
|
Returns if the Identifiable is alive. |
|
|
Create a new IDENTIFIABLE from a DCSIdentifiable |
| Fields and Methods inherited from OBJECT | Description |
|---|---|
|
Destroys the OBJECT. |
|
|
Returns the unit's unique identifier. |
|
|
Create a new OBJECT from a DCSObject |
|
|
The name of the Object. |
| Fields and Methods inherited from BASE | Description |
|---|---|
|
The ID number of the class. |
|
|
The name of the class. |
|
|
The name of the class concatenated with the ID number of the class. |
|
|
Clear the state of an object. |
|
CONTROLLABLE:CreateEventBirth(EventTime, Initiator, IniUnitName, place, subplace) |
Creation of a Birth Event. |
|
Creation of a Crash Event. |
|
|
Creation of a Dead Event. |
|
|
Creation of a Remove Unit Event. |
|
|
Creation of a Takeoff Event. |
|
|
Log an exception which will be traced always. |
|
|
Returns the event dispatcher |
|
|
Remove all subscribed events |
|
|
Trace a function call. |
|
|
Trace a function call level 2. |
|
|
Trace a function call level 3. |
|
|
Get the ClassID of the class instance. |
|
|
Get the ClassName of the class instance. |
|
|
Get the ClassName + ClassID of the class instance. |
|
|
Get the Class Event processing Priority. |
|
|
This is the worker method to retrieve the Parent class. |
|
|
Get a Value given a Key from the Object. |
|
|
Subscribe to a DCS Event. |
|
|
Log an information which will be traced always. |
|
|
This is the worker method to inherit from a parent class. |
|
|
This is the worker method to check if an object is an (sub)instance of a class. |
|
|
Enquires if tracing is on (for the class). |
|
|
BASE constructor. |
|
|
Occurs when an object is completely destroyed. |
|
|
Occurs when a ground unit captures either an airbase or a farp. |
|
|
Occurs when any object is spawned into the mission. |
|
|
Occurs when any aircraft crashes into the ground and is completely destroyed. |
|
|
Occurs when an object is dead. |
|
|
Occurs when a pilot ejects from an aircraft initiator : The unit that has ejected |
|
|
Occurs when any aircraft shuts down its engines. |
|
|
Occurs when any aircraft starts its engines. |
|
|
Occurs whenever an object is hit by a weapon. |
|
|
Occurs when any system fails on a human controlled aircraft. |
|
|
Occurs when an aircraft lands at an airbase, farp or ship initiator : The unit that has landed place: Object that the unit landed on. |
|
|
Occurs when a mission ends |
|
|
Occurs when a mission starts |
|
|
Occurs when the pilot of an aircraft is killed. |
|
|
Occurs when any player assumes direct control of a unit. |
|
|
Occurs when any player relieves control of a unit to the AI. |
|
|
Occurs when an aircraft connects with a tanker and begins taking on fuel. |
|
|
Occurs when an aircraft is finished taking fuel. |
|
|
Occurs when any unit stops firing its weapon. |
|
|
Occurs when any unit begins firing a weapon that has a high rate of fire. |
|
|
Occurs whenever any unit in a mission fires a weapon. |
|
|
Occurs when an aircraft takes off from an airbase, farp, or ship. |
|
|
Schedule a new time event. |
|
CONTROLLABLE:ScheduleRepeat(Start, Repeat, RandomizeFactor, Stop, SchedulerFunction, ...) |
Schedule a new time event. |
|
Stops the Schedule. |
|
|
Set the Class Event processing Priority. |
|
|
Set a state or property of the Object given a Key and a Value. |
|
|
Trace a function logic level 1. |
|
|
Trace a function logic level 2. |
|
|
Trace a function logic level 3. |
|
|
Trace all methods in MOOSE |
|
|
Set tracing for a class |
|
|
Set tracing for a specific method of class |
|
|
Set trace level |
|
|
Set trace on or off Note that when trace is off, no BASE.Debug statement is performed, increasing performance! When Moose is loaded statically, (as one file), tracing is switched off by default. |
|
|
UnSubscribe to a DCS event. |
|
CONTROLLABLE:_F(Arguments, DebugInfoCurrentParam, DebugInfoFromParam) |
Trace a function call. |
CONTROLLABLE:_T(Arguments, DebugInfoCurrentParam, DebugInfoFromParam) |
Trace a function logic. |
Field(s)
The name of the controllable.
Function(s)
Clear all tasks from the controllable.
Do Script command
Create a stop route command, which returns a string containing the command.
Use the result in the method CONTROLLABLE.SetCommand(). A value of true will make the ground group stop, a value of false will make it continue. Note that this can only work on GROUP level, although individual UNITs can be commanded, the whole GROUP will react.
Example missions:
- GRP-310
Defined in:
CONTROLLABLE
Parameter:
#boolean StopRoute
true if the ground unit needs to stop, false if it needs to continue to move.
Return value:
Perform a switch waypoint command
Defined in:
CONTROLLABLE
Parameters:
#number FromWayPoint
#number ToWayPoint
Return value:
Usage:
--- This test demonstrates the use(s) of the SwitchWayPoint method of the GROUP class.
HeliGroup = GROUP:FindByName( "Helicopter" )
--- Route the helicopter back to the FARP after 60 seconds.
-- We use the SCHEDULER class to do this.
SCHEDULER:New( nil,
function( HeliGroup )
local CommandRTB = HeliGroup:CommandSwitchWayPoint( 2, 8 )
HeliGroup:SetCommand( CommandRTB )
end, { HeliGroup }, 90
)
Return the route of a controllable by using the Core.Database#DATABASE class.
Defined in:
CONTROLLABLE
Parameters:
#number Begin
The route point from where the copy will start. The base route point is 0.
#number End
The route point where the copy will end. The End point is the last point - the End point. The last point has base 0.
#boolean Randomize
Randomization of the route, when true.
#number Radius
When randomization is on, the randomization is within the radius.
(AIR) Aircraft will act as an AWACS for friendly units (will provide them with information about contacts).
No parameters.
(GROUND) Ground unit (EW-radar) will act as an EWR for friendly units (will provide them with information about contacts).
No parameters.
(AIR) Engaging a controllable.
The task does not assign the target controllable to the unit/controllable to attack now; it just allows the unit/controllable to engage the target controllable as well as other assigned targets.
Defined in:
CONTROLLABLE
Parameters:
Wrapper.Controllable#CONTROLLABLE AttackGroup
The Controllable to be attacked.
#number Priority
All en-route tasks have the priority parameter. This is a number (less value - higher priority) that determines actions related to what task will be performed first.
#number WeaponType
(optional) Bitmask of weapon types those allowed to use. If parameter is not defined that means no limits on weapon usage.
DCS#AI.Task.WeaponExpend WeaponExpend
(optional) Determines how much weapon will be released at each attack. If parameter is not defined the unit / controllable will choose expend on its own discretion.
#number AttackQty
(optional) This parameter limits maximal quantity of attack. The aicraft/controllable will not make more attack than allowed even if the target controllable not destroyed and the aicraft/controllable still have ammo. If not defined the aircraft/controllable will attack target until it will be destroyed or until the aircraft/controllable will run out of ammo.
DCS#Azimuth Direction
(optional) Desired ingress direction from the target to the attacking aircraft. Controllable/aircraft will make its attacks from the direction. Of course if there is no way to attack from the direction due the terrain controllable/aircraft will choose another direction.
DCS#Distance Altitude
(optional) Desired attack start altitude. Controllable/aircraft will make its attacks from the altitude. If the altitude is too low or too high to use weapon aircraft/controllable will choose closest altitude to the desired attack start altitude. If the desired altitude is defined controllable/aircraft will not attack from safe altitude.
#boolean AttackQtyLimit
(optional) The flag determines how to interpret attackQty parameter. If the flag is true then attackQty is a limit on maximal attack quantity for "AttackGroup" and "AttackUnit" tasks. If the flag is false then attackQty is a desired attack quantity for "Bombing" and "BombingRunway" tasks.
Return value:
The DCS task structure.
(AIR) Engaging targets of defined types.
Defined in:
CONTROLLABLE
Parameters:
DCS#Distance Distance
Maximal distance from the target to a route leg. If the target is on a greater distance it will be ignored.
DCS#AttributeNameArray TargetTypes
Array of target categories allowed to engage.
#number Priority
All enroute tasks have the priority parameter. This is a number (less value - higher priority) that determines actions related to what task will be performed first.
Return value:
The DCS task structure.
(AIR) Engaging a targets of defined types at circle-shaped zone.
Defined in:
CONTROLLABLE
Parameters:
DCS#Vec2 Vec2
2D-coordinates of the zone.
DCS#Distance Radius
Radius of the zone.
DCS#AttributeNameArray TargetTypes
Array of target categories allowed to engage.
#number Priority
All en-route tasks have the priority parameter. This is a number (less value - higher priority) that determines actions related to what task will be performed first.
Return value:
The DCS task structure.
(AIR) Search and attack the Unit.
Defined in:
CONTROLLABLE
Parameters:
Wrapper.Unit#UNIT EngageUnit
The UNIT.
#number Priority
(optional) All en-route tasks have the priority parameter. This is a number (less value - higher priority) that determines actions related to what task will be performed first.
#boolean GroupAttack
(optional) If true, all units in the group will attack the Unit when found.
DCS#AI.Task.WeaponExpend WeaponExpend
(optional) Determines how much weapon will be released at each attack. If parameter is not defined the unit / controllable will choose expend on its own discretion.
#number AttackQty
(optional) This parameter limits maximal quantity of attack. The aicraft/controllable will not make more attack than allowed even if the target controllable not destroyed and the aicraft/controllable still have ammo. If not defined the aircraft/controllable will attack target until it will be destroyed or until the aircraft/controllable will run out of ammo.
DCS#Azimuth Direction
(optional) Desired ingress direction from the target to the attacking aircraft. Controllable/aircraft will make its attacks from the direction. Of course if there is no way to attack from the direction due the terrain controllable/aircraft will choose another direction.
DCS#Distance Altitude
(optional) Desired altitude to perform the unit engagement.
#boolean Visible
(optional) Unit must be visible.
#boolean ControllableAttack
(optional) Flag indicates that the target must be engaged by all aircrafts of the controllable. Has effect only if the task is assigned to a controllable, not to a single aircraft.
Return value:
The DCS task structure.
(AIR + GROUND) The task makes the controllable/unit a FAC and lets the FAC to choose a targets (enemy ground controllable) around as well as other assigned targets.
The killer is player-controlled allied CAS-aircraft that is in contact with the FAC. If the task is assigned to the controllable lead unit will be a FAC.
Defined in:
CONTROLLABLE
Parameters:
DCS#Distance Radius
The maximal distance from the FAC to a target.
#number Priority
All en-route tasks have the priority parameter. This is a number (less value - higher priority) that determines actions related to what task will be performed first.
Return value:
The DCS task structure.
(AIR + GROUND) The task makes the controllable/unit a FAC and lets the FAC to choose the target (enemy ground controllable) as well as other assigned targets.
The killer is player-controlled allied CAS-aircraft that is in contact with the FAC. If the task is assigned to the controllable lead unit will be a FAC.
Defined in:
CONTROLLABLE
Parameters:
Wrapper.Controllable#CONTROLLABLE AttackGroup
Target CONTROLLABLE.
#number Priority
All en-route tasks have the priority parameter. This is a number (less value - higher priority) that determines actions related to what task will be performed first.
#number WeaponType
Bitmask of weapon types those allowed to use. If parameter is not defined that means no limits on weapon usage.
DCS#AI.Task.Designation Designation
(optional) Designation type.
#boolean Datalink
(optional) Allows to use datalink to send the target information to attack aircraft. Enabled by default.
Return value:
The DCS task structure.
(AIR) Aircraft will act as a tanker for friendly units.
No parameters.
Return the detected targets of the controllable.
The optional parametes specify the detection methods that can be applied. If no detection method is given, the detection will use all the available methods by default.
Defined in:
CONTROLLABLE
Parameters:
#boolean DetectVisual
(optional)
#boolean DetectOptical
(optional)
#boolean DetectRadar
(optional)
#boolean DetectIRST
(optional)
#boolean DetectRWR
(optional)
#boolean DetectDLINK
(optional)
Return value:
#table:
DetectedTargets
Returns relative amount of fuel (from 0.0 to 1.0) the unit has in its internal tanks.
This method returns nil to ensure polymorphic behaviour! This method needs to be overridden by GROUP or UNIT.
Defined in:
CONTROLLABLE
Return value:
#nil:
The CONTROLLABLE is not existing or alive.
Returns relative average amount of fuel (from 0.0 to 1.0) a unit or group has in its internal tanks.
This method returns nil to ensure polymorphic behaviour! This method needs to be overridden by GROUP or UNIT.
Defined in:
CONTROLLABLE
Return value:
#nil:
The CONTROLLABLE is not existing or alive.
Returns relative minimum amount of fuel (from 0.0 to 1.0) a unit or group has in its internal tanks.
This method returns nil to ensure polymorphic behaviour! This method needs to be overridden by GROUP or UNIT.
Defined in:
CONTROLLABLE
Return value:
#nil:
The CONTROLLABLE is not existing or alive.
Returns the health.
Dead controllables have health <= 1.0.
Defined in:
CONTROLLABLE
Return values:
#number:
The controllable health value (unit or group average).
#nil:
The controllable is not existing or alive.
Returns the initial health.
Defined in:
CONTROLLABLE
Return values:
#number:
The controllable health value (unit or group average).
#nil:
The controllable is not existing or alive.
Return the mission template of the controllable.
Defined in:
CONTROLLABLE
Return value:
#table:
The MissionTemplate TODO: Rework the method how to retrieve a template ...
Return the mission route of the controllable.
Defined in:
CONTROLLABLE
Return value:
#table:
The mission route defined by points.
Get the current WayPoints set with the WayPoint functions( Note that the WayPoints can be nil, although there ARE waypoints).
Defined in:
CONTROLLABLE
Return value:
#table:
WayPoints If WayPoints is given, then return the WayPoints structure.
Checking the Task Queue of the controllable.
Returns false if no task is on the queue. true if there is a task.
Returns if the Controllable contains AirPlanes.
Defined in:
CONTROLLABLE
Return value:
#boolean:
true if Controllable contains AirPlanes.
Defined in:
CONTROLLABLE
Parameters:
DCSObject
DetectVisual
DetectOptical
DetectRadar
DetectIRST
DetectRWR
DetectDLINK
Create a new CONTROLLABLE from a DCSControllable
Defined in:
CONTROLLABLE
Parameter:
#string ControllableName
The DCS Controllable name
Return value:
self
Alarm state to Auto: AI will automatically switch alarm states based on the presence of threats.
The AI kind of cheats in this regard.
Alarm state to Green: Group is not combat ready.
Sensors are stowed if possible.
Alarm state to Red: Group is combat ready and actively searching for targets.
Holding weapons.
Can the CONTROLLABLE hold their weapons?
Defined in:
CONTROLLABLE
Return value:
#boolean:
Openfire.
Can the CONTROLLABLE attack designated targets?
Defined in:
CONTROLLABLE
Return value:
#boolean:
Return fire.
Can the CONTROLLABLE attack returning on enemy fire?
Defined in:
CONTROLLABLE
Return value:
#boolean:
Weapon free.
Can the CONTROLLABLE attack targets of opportunity?
Defined in:
CONTROLLABLE
Return value:
#boolean:
Evade on fire.
Can the CONTROLLABLE evade on enemy fire?
Defined in:
CONTROLLABLE
Return value:
#boolean:
No evasion on enemy threats.
Can the CONTROLLABLE ignore enemy fire?
Defined in:
CONTROLLABLE
Return value:
#boolean:
Evasion passive defense.
Can the CONTROLLABLE evade using passive defenses?
Defined in:
CONTROLLABLE
Return value:
#boolean:
Evade on fire using vertical manoeuvres.
Can the CONTROLLABLE evade on fire using vertical manoeuvres?
Defined in:
CONTROLLABLE
Return value:
#boolean:
Set RTB on ammo.
Defined in:
CONTROLLABLE
Parameter:
#boolean WeaponsFlag
Weapons.flag enumerator.
Return value:
self
Set RTB on bingo fuel.
Defined in:
CONTROLLABLE
Parameter:
#boolean RTB
true if RTB on bingo fuel (default), false if no RTB on bingo fuel. Warning! When you switch this option off, the airborne group will continue to fly until all fuel has been consumed, and will crash.
Return value:
self
(GROUND) Patrol iteratively using the waypoints the for the (parent) group.
(GROUND) Patrol randomly to the waypoints the for the (parent) group.
A random waypoint will be picked and the group will move towards that point.
Defined in:
CONTROLLABLE
Parameters:
#number Speed
Speed in km/h.
#string Formation
The formation the group uses.
Core.Point#COORDINATE ToWaypoint
The waypoint where the group should move to.
Return value:
(GROUND) Patrol randomly to the waypoints the for the (parent) group.
A random waypoint will be picked and the group will move towards that point.
Defined in:
CONTROLLABLE
Parameters:
#table ZoneList
Table of zones.
#number Speed
Speed in km/h the group moves at.
#string Formation
(Optional) Formation the group should use.
Return value:
Popping current Task from the controllable.
Pushing Task on the queue from the controllable.
Defined in:
CONTROLLABLE
Parameters:
DCSTask
WaitTime
Return value:
Make the controllable to follow a given route.
Defined in:
CONTROLLABLE
Parameters:
#table Route
A table of Route Points.
#number DelaySeconds
(Optional) Wait for the specified seconds before executing the Route. Default is one second.
Return value:
The CONTROLLABLE.
Make the AIR Controllable fly towards a specific point.
Defined in:
CONTROLLABLE
Parameters:
Core.Point#COORDINATE ToCoordinate
A Coordinate to drive to.
The altitude type.
The route point type.
The route point action.
#number Speed
(optional) Speed in km/h. The default speed is 500 km/h.
#number DelaySeconds
Wait for the specified seconds before executing the Route.
Return value:
The CONTROLLABLE.
Make the TRAIN Controllable to drive towards a specific point using railroads.
Defined in:
CONTROLLABLE
Parameters:
Core.Point#COORDINATE ToCoordinate
A Coordinate to drive to.
#number Speed
(Optional) Speed in km/h. The default speed is 20 km/h.
#number DelaySeconds
(Optional) Wait for the specified seconds before executing the Route. Default is one second.
Return value:
The CONTROLLABLE.
Make the GROUND Controllable to drive towards a specific point using (mostly) roads.
Defined in:
CONTROLLABLE
Parameters:
Core.Point#COORDINATE ToCoordinate
A Coordinate to drive to.
#number Speed
(Optional) Speed in km/h. The default speed is 20 km/h.
#number DelaySeconds
(Optional) Wait for the specified seconds before executing the Route. Default is one second.
#string OffRoadFormation
(Optional) The formation at initial and final waypoint. Default is "Off Road".
Return value:
The CONTROLLABLE.
Make the GROUND Controllable to drive towards a specific point.
Defined in:
CONTROLLABLE
Parameters:
Core.Point#COORDINATE ToCoordinate
A Coordinate to drive to.
#number Speed
(optional) Speed in km/h. The default speed is 20 km/h.
#string Formation
(optional) The route point Formation, which is a text string that specifies exactly the Text in the Type of the route point, like "Vee", "Echelon Right".
#number DelaySeconds
Wait for the specified seconds before executing the Route.
Return value:
The CONTROLLABLE.
Make the controllable to push follow a given route.
Defined in:
CONTROLLABLE
Parameters:
#table Route
A table of Route Points.
#number DelaySeconds
(Optional) Wait for the specified seconds before executing the Route. Default is one second.
Return value:
The CONTROLLABLE.
Resumes the movement of the vehicle on the route.
Stops the movement of the vehicle on the route.
(AIR + GROUND) Make the Controllable move to fly to a given point.
Defined in:
CONTROLLABLE
Parameters:
DCS#Vec3 Point
The destination point in Vec3 format.
#number Speed
The speed [m/s] to travel.
Return value:
self
(AIR + GROUND) Make the Controllable move to a given point.
Defined in:
CONTROLLABLE
Parameters:
DCS#Vec3 Point
The destination point in Vec3 format.
#number Speed
The speed [m/s] to travel.
Return value:
self
Executes a command action
Clearing the Task Queue and Setting the Task on the queue from the controllable.
Defined in:
CONTROLLABLE
Parameters:
#DCS.Task DCSTask
DCS Task array.
#number WaitTime
Time in seconds, before the task is set.
Return value:
Set a Task at a Waypoint using a Route list.
Give an uncontrolled air controllable the start command.
Defined in:
CONTROLLABLE
Parameter:
#number delay
(Optional) Delay before start command in seconds.
Return value:
self
(AIR) Attack a Controllable.
Defined in:
CONTROLLABLE
Parameters:
Wrapper.Controllable#CONTROLLABLE AttackGroup
The Controllable to be attacked.
#number WeaponType
(optional) Bitmask of weapon types those allowed to use. If parameter is not defined that means no limits on weapon usage.
DCS#AI.Task.WeaponExpend WeaponExpend
(optional) Determines how much weapon will be released at each attack. If parameter is not defined the unit / controllable will choose expend on its own discretion.
#number AttackQty
(optional) This parameter limits maximal quantity of attack. The aicraft/controllable will not make more attack than allowed even if the target controllable not destroyed and the aicraft/controllable still have ammo. If not defined the aircraft/controllable will attack target until it will be destroyed or until the aircraft/controllable will run out of ammo.
DCS#Azimuth Direction
(optional) Desired ingress direction from the target to the attacking aircraft. Controllable/aircraft will make its attacks from the direction. Of course if there is no way to attack from the direction due the terrain controllable/aircraft will choose another direction.
DCS#Distance Altitude
(optional) Desired attack start altitude. Controllable/aircraft will make its attacks from the altitude. If the altitude is too low or too high to use weapon aircraft/controllable will choose closest altitude to the desired attack start altitude. If the desired altitude is defined controllable/aircraft will not attack from safe altitude.
#boolean AttackQtyLimit
(optional) The flag determines how to interpret attackQty parameter. If the flag is true then attackQty is a limit on maximal attack quantity for "AttackGroup" and "AttackUnit" tasks. If the flag is false then attackQty is a desired attack quantity for "Bombing" and "BombingRunway" tasks.
Return value:
The DCS task structure.
(AIR) Attacking the map object (building, structure, e.t.c).
Defined in:
CONTROLLABLE
Parameters:
DCS#Vec2 Vec2
2D-coordinates of the point to deliver weapon at.
#boolean GroupAttack
(optional) If true, all units in the group will attack the Unit when found.
DCS#AI.Task.WeaponExpend WeaponExpend
(optional) Determines how much weapon will be released at each attack. If parameter is not defined the unit / controllable will choose expend on its own discretion.
#number AttackQty
(optional) This parameter limits maximal quantity of attack. The aicraft/controllable will not make more attack than allowed even if the target controllable not destroyed and the aicraft/controllable still have ammo. If not defined the aircraft/controllable will attack target until it will be destroyed or until the aircraft/controllable will run out of ammo.
DCS#Azimuth Direction
(optional) Desired ingress direction from the target to the attacking aircraft. Controllable/aircraft will make its attacks from the direction. Of course if there is no way to attack from the direction due the terrain controllable/aircraft will choose another direction.
#number Altitude
(optional) The altitude from where to attack.
#number WeaponType
(optional) The WeaponType.
Return value:
The DCS task structure.
(AIR) Attack the Unit.
Defined in:
CONTROLLABLE
Parameters:
Wrapper.Unit#UNIT AttackUnit
The UNIT.
#boolean GroupAttack
(optional) If true, all units in the group will attack the Unit when found.
DCS#AI.Task.WeaponExpend WeaponExpend
(optional) Determines how much weapon will be released at each attack. If parameter is not defined the unit / controllable will choose expend on its own discretion.
#number AttackQty
(optional) This parameter limits maximal quantity of attack. The aicraft/controllable will not make more attack than allowed even if the target controllable not destroyed and the aicraft/controllable still have ammo. If not defined the aircraft/controllable will attack target until it will be destroyed or until the aircraft/controllable will run out of ammo.
DCS#Azimuth Direction
(optional) Desired ingress direction from the target to the attacking aircraft. Controllable/aircraft will make its attacks from the direction. Of course if there is no way to attack from the direction due the terrain controllable/aircraft will choose another direction.
#number Altitude
(optional) The altitude from where to attack.
#boolean Visible
(optional) not a clue.
#number WeaponType
(optional) The WeaponType.
Return value:
The DCS task structure.
(AIR) Delivering weapon at the point on the ground.
Defined in:
CONTROLLABLE
Parameters:
DCS#Vec2 Vec2
2D-coordinates of the point to deliver weapon at.
#boolean GroupAttack
(optional) If true, all units in the group will attack the Unit when found.
DCS#AI.Task.WeaponExpend WeaponExpend
(optional) Determines how much weapon will be released at each attack. If parameter is not defined the unit / controllable will choose expend on its own discretion.
#number AttackQty
(optional) This parameter limits maximal quantity of attack. The aicraft/controllable will not make more attack than allowed even if the target controllable not destroyed and the aicraft/controllable still have ammo. If not defined the aircraft/controllable will attack target until it will be destroyed or until the aircraft/controllable will run out of ammo.
DCS#Azimuth Direction
(optional) Desired ingress direction from the target to the attacking aircraft. Controllable/aircraft will make its attacks from the direction. Of course if there is no way to attack from the direction due the terrain controllable/aircraft will choose another direction.
#number Altitude
(optional) The altitude from where to attack.
#number WeaponType
(optional) The WeaponType.
#boolean Divebomb
(optional) Perform dive bombing. Default false.
Return value:
The DCS task structure.
(AIR) Delivering weapon on the runway.
Defined in:
CONTROLLABLE
Parameters:
Wrapper.Airbase#AIRBASE Airbase
Airbase to attack.
#number WeaponType
(optional) Bitmask of weapon types those allowed to use. If parameter is not defined that means no limits on weapon usage.
DCS#AI.Task.WeaponExpend WeaponExpend
(optional) Determines how much weapon will be released at each attack. If parameter is not defined the unit / controllable will choose expend on its own discretion.
#number AttackQty
(optional) This parameter limits maximal quantity of attack. The aicraft/controllable will not make more attack than allowed even if the target controllable not destroyed and the aicraft/controllable still have ammo. If not defined the aircraft/controllable will attack target until it will be destroyed or until the aircraft/controllable will run out of ammo.
DCS#Azimuth Direction
(optional) Desired ingress direction from the target to the attacking aircraft. Controllable/aircraft will make its attacks from the direction. Of course if there is no way to attack from the direction due the terrain controllable/aircraft will choose another direction.
#boolean ControllableAttack
(optional) Flag indicates that the target must be engaged by all aircrafts of the controllable. Has effect only if the task is assigned to a controllable, not to a single aircraft.
Return value:
The DCS task structure.
Return a Combo Task taking an array of Tasks.
Defined in:
CONTROLLABLE
Parameter:
DCS#TaskArray DCSTasks
Array of DCSTasking.Task#Task
Return value:
Return a condition section for a controlled task.
Return a Controlled Task taking a Task and a TaskCondition.
Defined in:
CONTROLLABLE
Parameters:
DCS#Task DCSTask
DCS#DCSStopCondition DCSStopCondition
Return value:
Move to a defined Vec2 Point, and embark to a controllable when arrived within a defined Radius.
(AIR) Move the controllable to a Vec2 Point, wait for a defined duration and embark a controllable.
Defined in:
CONTROLLABLE
Parameters:
DCS#Vec2 Point
The point where to wait.
#number Duration
The duration in seconds to wait.
#CONTROLLABLE EmbarkingControllable
The controllable to be embarked.
Return value:
The DCS task structure
(AIR) Escort another airborne controllable.
The unit / controllable will follow lead unit of another controllable, wingmens of both controllables will continue following their leaders. The unit / controllable will also protect that controllable from threats of specified types.
Defined in:
CONTROLLABLE
Parameters:
Wrapper.Controllable#CONTROLLABLE FollowControllable
The controllable to be escorted.
DCS#Vec3 Vec3
Position of the unit / lead unit of the controllable relative lead unit of another controllable in frame reference oriented by course of lead unit of another controllable. If another controllable is on land the unit / controllable will orbit around.
#number LastWaypointIndex
Detach waypoint of another controllable. Once reached the unit / controllable Follow task is finished.
#number EngagementDistance
Maximal distance from escorted controllable to threat. If the threat is already engaged by escort escort will disengage if the distance becomes greater than 1.5 * engagementDistMax.
DCS#AttributeNameArray TargetTypes
Array of AttributeName that is contains threat categories allowed to engage.
Return value:
The DCS task structure.
(AIR + GROUND) The task makes the controllable/unit a FAC and orders the FAC to control the target (enemy ground controllable) destruction.
The killer is player-controlled allied CAS-aircraft that is in contact with the FAC. If the task is assigned to the controllable lead unit will be a FAC.
Defined in:
CONTROLLABLE
Parameters:
Wrapper.Controllable#CONTROLLABLE AttackGroup
Target CONTROLLABLE.
#number WeaponType
Bitmask of weapon types those allowed to use. If parameter is not defined that means no limits on weapon usage.
DCS#AI.Task.Designation Designation
(optional) Designation type.
#boolean Datalink
(optional) Allows to use datalink to send the target information to attack aircraft. Enabled by default.
Return value:
The DCS task structure.
(GROUND) Fire at a VEC2 point until ammunition is finished.
Defined in:
CONTROLLABLE
Parameters:
DCS#Vec2 Vec2
The point to fire at.
DCS#Distance Radius
The radius of the zone to deploy the fire at.
#number AmmoCount
(optional) Quantity of ammunition to expand (omit to fire until ammunition is depleted).
#number WeaponType
(optional) Enum for weapon type ID. This value is only required if you want the group firing to use a specific weapon, for instance using the task on a ship to force it to fire guided missiles at targets within cannon range. See http://wiki.hoggit.us/view/DCS_enum_weapon_flag
Return value:
The DCS task structure.
(AIR) Following another airborne controllable.
The unit / controllable will follow lead unit of another controllable, wingmens of both controllables will continue following their leaders. If another controllable is on land the unit / controllable will orbit around.
Defined in:
CONTROLLABLE
Parameters:
Wrapper.Controllable#CONTROLLABLE FollowControllable
The controllable to be followed.
DCS#Vec3 Vec3
Position of the unit / lead unit of the controllable relative lead unit of another controllable in frame reference oriented by course of lead unit of another controllable. If another controllable is on land the unit / controllable will orbit around.
#number LastWaypointIndex
Detach waypoint of another controllable. Once reached the unit / controllable Follow task is finished.
Return value:
The DCS task structure.
This creates a Task element, with an action to call a function as part of a Wrapped Task.
This Task can then be embedded at a Waypoint by calling the method CONTROLLABLE.SetTaskWaypoint.
Defined in:
CONTROLLABLE
Parameters:
#string FunctionString
The function name embedded as a string that will be called.
...
The variable arguments passed to the function when called! These arguments can be of any type!
Return value:
Usage:
local ZoneList = {
ZONE:New( "ZONE1" ),
ZONE:New( "ZONE2" ),
ZONE:New( "ZONE3" ),
ZONE:New( "ZONE4" ),
ZONE:New( "ZONE5" )
}
GroundGroup = GROUP:FindByName( "Vehicle" )
--- @param Wrapper.Group#GROUP GroundGroup
function RouteToZone( Vehicle, ZoneRoute )
local Route = {}
Vehicle:E( { ZoneRoute = ZoneRoute } )
Vehicle:MessageToAll( "Moving to zone " .. ZoneRoute:GetName(), 10 )
-- Get the current coordinate of the Vehicle
local FromCoord = Vehicle:GetCoordinate()
-- Select a random Zone and get the Coordinate of the new Zone.
local RandomZone = ZoneList[ math.random( 1, #ZoneList ) ] -- Core.Zone#ZONE
local ToCoord = RandomZone:GetCoordinate()
-- Create a "ground route point", which is a "point" structure that can be given as a parameter to a Task
Route[#Route+1] = FromCoord:WaypointGround( 72 )
Route[#Route+1] = ToCoord:WaypointGround( 60, "Vee" )
local TaskRouteToZone = Vehicle:TaskFunction( "RouteToZone", RandomZone )
Vehicle:SetTaskWaypoint( Route[#Route], TaskRouteToZone ) -- Set for the given Route at Waypoint 2 the TaskRouteToZone.
Vehicle:Route( Route, math.random( 10, 20 ) ) -- Move after a random seconds to the Route. See the Route method for details.
end
RouteToZone( GroundGroup, ZoneList[1] )
Make a task for a TRAIN Controllable to drive towards a specific point using railroad.
Defined in:
CONTROLLABLE
Parameters:
Core.Point#COORDINATE ToCoordinate
A Coordinate to drive to.
#number Speed
(Optional) Speed in km/h. The default speed is 20 km/h.
Return value:
Task
Make a task for a GROUND Controllable to drive towards a specific point using (mostly) roads.
Defined in:
CONTROLLABLE
Parameters:
Core.Point#COORDINATE ToCoordinate
A Coordinate to drive to.
#number Speed
(Optional) Speed in km/h. The default speed is 20 km/h.
#string OffRoadFormation
(Optional) The formation at initial and final waypoint. Default is "Off Road".
#boolean Shortcut
(Optional) If true, controllable will take the direct route if the path on road is 10x longer or path on road is less than 5% of total path.
Core.Point#COORDINATE FromCoordinate
(Optional) Explicit initial coordinate. Default is the position of the controllable.
Return values:
Task.
#boolean:
If true, path on road is possible. If false, task will route the group directly to its destination.
(GROUND) Hold ground controllable from moving.
(AIR) Hold position at the current position of the first unit of the controllable.
Defined in:
CONTROLLABLE
Parameter:
#number Duration
The maximum duration in seconds to hold the position.
Return value:
self
(AIR HELICOPTER) Landing at the ground.
For helicopters only.
Defined in:
CONTROLLABLE
Parameters:
DCS#Vec2 Point
The point where to land.
#number Duration
The duration in seconds to stay on the ground.
Return value:
self
(AIR) Land the controllable at a @{Core.Zone#ZONE_RADIUS).
Defined in:
CONTROLLABLE
Parameters:
Core.Zone#ZONE Zone
The zone where to land.
#number Duration
The duration in seconds to stay on the ground.
RandomPoint
Return value:
self
(AIR + GROUND) Return a mission task from a mission template.
Defined in:
CONTROLLABLE
Parameter:
#table TaskMission
A table containing the mission task.
Return value:
(AIR) Orbit at the current position of the first unit of the controllable at a specified alititude.
Defined in:
CONTROLLABLE
Parameters:
#number Altitude
The altitude [m] to hold the position.
#number Speed
The speed [m/s] flying when holding the position.
Core.Point#COORDINATE Coordinate
The coordinate where to orbit.
Return value:
self
(AIR) Orbit at a specified position at a specified alititude during a specified duration with a specified speed.
Defined in:
CONTROLLABLE
Parameters:
DCS#Vec2 Point
The point to hold the position.
#number Altitude
The altitude [m] to hold the position.
#number Speed
The speed [m/s] flying when holding the position.
Return value:
self
(AIR) Refueling from the nearest tanker.
No parameters.
Return a Misson task to follow a given route defined by Points.
(GROUND) Route the controllable to a given Vec2.
A speed can be given in km/h. A given formation can be given.
Defined in:
CONTROLLABLE
Parameters:
DCS#Vec2 Vec2
The Vec2 where to route to.
#number Speed
The speed in m/s. Default is 5.555 m/s = 20 km/h.
Base#FORMATION Formation
The formation string.
(AIR + GROUND) Route the controllable to a given zone.
The controllable final destination point can be randomized. A speed can be given in km/h. A given formation can be given.
Defined in:
CONTROLLABLE
Parameters:
Core.Zone#ZONE Zone
The zone where to route to.
#boolean Randomize
Defines whether to target point gets randomized within the Zone.
#number Speed
The speed in m/s. Default is 5.555 m/s = 20 km/h.
Base#FORMATION Formation
The formation string.
Return a WrappedAction Task taking a Command.
Executes the WayPoint plan.
The function gets a WayPoint parameter, that you can use to restart the mission at a specific WayPoint. Note that when the WayPoint parameter is used, the new start mission waypoint of the controllable will be 1!
Defined in:
CONTROLLABLE
Parameters:
#number WayPoint
The WayPoint from where to execute the mission.
#number WaitTime
The amount seconds to wait before initiating the mission.
Return value:
Registers a waypoint function that will be executed when the controllable moves over the WayPoint.
Defined in:
CONTROLLABLE
Parameters:
#number WayPoint
The waypoint number. Note that the start waypoint on the route is WayPoint 1!
#number WayPointIndex
When defining multiple WayPoint functions for one WayPoint, use WayPointIndex to set the sequence of actions.
#function WayPointFunction
The waypoint function to be called when the controllable moves over the waypoint. The waypoint function takes variable parameters.
...
Return value:
Retrieve the controllable mission and allow to place function hooks within the mission waypoint plan.
Use the method Wrapper.Controllable#CONTROLLABLE to define the hook functions for specific waypoints. Use the method @{Controllable@CONTROLLABLE:WayPointExecute) to start the execution of the new mission plan. Note that when WayPointInitialize is called, the Mission of the controllable is RESTARTED!
Defined in:
CONTROLLABLE
Parameter:
#table WayPoints
If WayPoints is given, then use the route.
Return value:
Get the controller for the CONTROLLABLE.
Field(s)
The name of the controllable.
Function(s)
Add cargo.
Get cargo item count.
Destroys the POSITIONABLE.
Defined in:
Parameter:
#boolean GenerateEvent
(Optional) true if you want to generate a crash or dead event for the unit.
Return value:
#nil:
The DCS Unit is not existing or alive.
Usages:
-- Air unit example: destroy the Helicopter and generate a S_EVENT_CRASH for each unit in the Helicopter group. Helicopter = UNIT:FindByName( "Helicopter" ) Helicopter:Destroy( true )-- Ground unit example: destroy the Tanks and generate a S_EVENT_DEAD for each unit in the Tanks group. Tanks = UNIT:FindByName( "Tanks" ) Tanks:Destroy( true )-- Ship unit example: destroy the Ship silently. Ship = STATIC:FindByName( "Ship" ) Ship:Destroy()-- Destroy without event generation example. Ship = STATIC:FindByName( "Boat" ) Ship:Destroy( false ) -- Don't generate an event upon destruction.
Signal a flare at the position of the POSITIONABLE.
Signal a green flare at the position of the POSITIONABLE.
Defined in:
Signal a red flare at the position of the POSITIONABLE.
Defined in:
Signal a white flare at the position of the POSITIONABLE.
Defined in:
Signal a yellow flare at the position of the POSITIONABLE.
Defined in:
Returns the altitude of the POSITIONABLE.
Defined in:
Return values:
Returns the Angle of Attack of a positionable.
Create a Core.Radio#BEACON, to allow this POSITIONABLE to broadcast beacon signals
Get the bounding box of the underlying POSITIONABLE DCS Object.
Defined in:
Return values:
Get the bounding radius of the underlying POSITIONABLE DCS Object.
Defined in:
Parameter:
#number mindist
(Optional) If bounding box is smaller than this value, mindist is returned.
Return value:
The bounding radius of the POSITIONABLE or #nil if the POSITIONABLE is not existing or alive.
Get all contained cargo.
Get Cargo Bay Free Weight in kg.
Returns the unit's climb or descent angle.
Defined in:
Return value:
#number:
Climb or descent angle in degrees.
Returns a COORDINATE object indicating the point in 3D of the POSITIONABLE within the mission.
Defined in:
Return value:
The COORDINATE of the POSITIONABLE.
Returns the POSITIONABLE heading in degrees.
Defined in:
Return values:
#number:
The POSITIONABLE heading
#nil:
The POSITIONABLE is not existing or alive.
Returns the POSITIONABLE height in meters.
Defined in:
Return values:
Get the last assigned laser code
Returns a message with the callsign embedded (if there is one).
Defined in:
Parameters:
#string Message
The message text
DCS#Duration Duration
The duration of the message.
#string Name
(optional) The Name of the sender. If not provided, the Name is the type of the Positionable.
Return value:
Returns the message text with the callsign embedded (if there is one).
Defined in:
Parameters:
#string Message
The message text
#string Name
(optional) The Name of the sender. If not provided, the Name is the type of the Positionable.
Return value:
#string:
The message text
Returns a message of a specified type with the callsign embedded (if there is one).
Defined in:
Parameters:
#string Message
The message text
Core.Message#MESSAGE MessageType
MessageType The message type.
#string Name
(optional) The Name of the sender. If not provided, the Name is the type of the Positionable.
Return value:
Returns a {@DCS#Vec3} table of the objects current orientation in 3D space.
X, Y, Z values are unit vectors defining the objects orientation. X is the orientation parallel to the movement of the object, Z perpendicular and Y vertical orientation.
Defined in:
Return values:
Returns a {@DCS#Vec3} table of the objects current X orientation in 3D space, i.e.
along the direction of movement.
Defined in:
Return value:
X orientation, i.e. parallel to the direction of movement.
Returns a {@DCS#Vec3} table of the objects current Y orientation in 3D space, i.e.
vertical orientation.
Returns a {@DCS#Vec3} table of the objects current Z orientation in 3D space, i.e.
perpendicular to direction of movement.
Defined in:
Return value:
Z orientation, i.e. perpendicular to movement.
Returns the pitch angle of a unit.
Returns a POINT_VEC2 object indicating the point in 2D of the POSITIONABLE within the mission.
Defined in:
Return values:
The 2D point vector of the POSITIONABLE.
#nil:
The POSITIONABLE is not existing or alive.
Returns a POINT_VEC3 object indicating the point in 3D of the POSITIONABLE within the mission.
Defined in:
Return values:
The 3D point vector of the POSITIONABLE.
#nil:
The POSITIONABLE is not existing or alive.
Returns a pos3 table of the objects current position and orientation in 3D space.
X, Y, Z values are unit vectors defining the objects orientation. Coordinates are dependent on the position of the maps origin.
Defined in:
Return value:
Table consisting of the point and orientation tables.
Returns the DCS#Position3 position vectors indicating the point and direction vectors in 3D of the POSITIONABLE within the mission.
Defined in:
Return values:
The 3D position vectors of the POSITIONABLE.
#nil:
The POSITIONABLE is not existing or alive.
Create a Core.Radio#RADIO, to allow radio transmission for this POSITIONABLE.
Set parameters with the methods provided, then use RADIO:Broadcast() to actually broadcast the message
Returns a random DCS#Vec3 vector within a range, indicating the point in 3D of the POSITIONABLE within the mission.
Defined in:
Parameter:
#number Radius
Return values:
Usage:
-- If Radius is ignored, returns the DCS#Vec3 of first UNIT of the GROUP
Returns the roll angle of a unit.
Get the Spot
Returns the DCS#Vec2 vector indicating the point in 2D of the POSITIONABLE within the mission.
Defined in:
Return values:
Returns the DCS#Vec3 vector indicating the 3D vector of the POSITIONABLE within the mission.
Defined in:
Return values:
Returns the a Velocity object from the positionable.
Defined in:
Return values:
Velocity The Velocity object.
#nil:
The POSITIONABLE is not existing or alive.
Returns the POSITIONABLE velocity in km/h.
Returns the POSITIONABLE velocity in meters per second.
Defined in:
Return value:
#number:
The velocity in meters per second.
Returns the POSITIONABLE velocity Vec3 vector.
Defined in:
Return values:
Returns the yaw angle of a unit.
Returns if carrier has given cargo.
Defined in:
Parameter:
Cargo
Return value:
Cargo
Returns true if the POSITIONABLE is in the air.
Polymorphic, is overridden in GROUP and UNIT.
Defined in:
Return values:
#boolean:
true if in the air.
#nil:
The POSITIONABLE is not existing or alive.
Returns if the Positionable is located above a runway.
Defined in:
Return values:
#boolean:
true if Positionable is above a runway.
#nil:
The POSITIONABLE is not existing or alive.
Returns if the unit is of an air category.
If the unit is a helicopter or a plane, then this method will return true, otherwise false.
Defined in:
Return value:
#boolean:
Air category evaluation result.
Returns if the unit is of an ground category.
If the unit is a ground vehicle or infantry, this method will return true, otherwise false.
Defined in:
Return value:
#boolean:
Ground category evaluation result.
Check if the POSITIONABLE is lasing a target
Stop Lasing a POSITIONABLE
Start Lasing a POSITIONABLE
Send a message to the players in the Wrapper.Group.
The message will appear in the message area. The message will begin with the callsign of the group and the type of the first unit sending the message.
Defined in:
Parameters:
#string Message
The message text
DCS#Duration Duration
The duration of the message.
#string Name
(optional) The Name of the sender. If not provided, the Name is the type of the Positionable.
Send a message to all coalitions.
The message will appear in the message area. The message will begin with the callsign of the group and the type of the first unit sending the message.
Defined in:
Parameters:
#string Message
The message text
DCS#Duration Duration
The duration of the message.
#string Name
(optional) The Name of the sender. If not provided, the Name is the type of the Positionable.
Send a message to the blue coalition.
The message will appear in the message area. The message will begin with the callsign of the group and the type of the first unit sending the message.
Defined in:
Parameters:
#string Message
The message text
DCS#Duration Duration
The duration of the message.
#string Name
(optional) The Name of the sender. If not provided, the Name is the type of the Positionable.
Send a message to a client.
The message will appear in the message area. The message will begin with the callsign of the group and the type of the first unit sending the message.
Defined in:
Parameters:
#string Message
The message text
DCS#Duration Duration
The duration of the message.
Wrapper.Client#CLIENT Client
The client object receiving the message.
#string Name
(optional) The Name of the sender. If not provided, the Name is the type of the Positionable.
Send a message to a coalition.
The message will appear in the message area. The message will begin with the callsign of the group and the type of the first unit sending the message.
Defined in:
Parameters:
#string Message
The message text
DCS#Duration Duration
The duration of the message.
DCS#coalition MessageCoalition
The Coalition receiving the message.
#string Name
(optional) The Name of the sender. If not provided, the Name is the type of the Positionable.
Send a message to a Wrapper.Group.
The message will appear in the message area. The message will begin with the callsign of the group and the type of the first unit sending the message.
Defined in:
Parameters:
#string Message
The message text
DCS#Duration Duration
The duration of the message.
Wrapper.Group#GROUP MessageGroup
The GROUP object receiving the message.
#string Name
(optional) The Name of the sender. If not provided, the Name is the type of the Positionable.
Send a message to the red coalition.
The message will appear in the message area. The message will begin with the callsign of the group and the type of the first unit sending the message.
Defined in:
Parameters:
#string Message
The message text
DCS#Duration Duration
The duration of the message.
#string Name
(optional) The Name of the sender. If not provided, the Name is the type of the Positionable.
Send a message to a Core.Set#SET_GROUP.
The message will appear in the message area. The message will begin with the callsign of the group and the type of the first unit sending the message.
Defined in:
Parameters:
#string Message
The message text
DCS#Duration Duration
The duration of the message.
Core.Set#SET_GROUP MessageSetGroup
The SET_GROUP collection receiving the message.
#string Name
(optional) The Name of the sender. If not provided, the Name is the type of the Positionable.
Send a message to a coalition.
The message will appear in the message area. The message will begin with the callsign of the group and the type of the first unit sending the message.
Defined in:
Parameters:
#string Message
The message text
Core.Message#MESSAGE.Type MessageType
The message type that determines the duration.
DCS#coalition MessageCoalition
The Coalition receiving the message.
#string Name
(optional) The Name of the sender. If not provided, the Name is the type of the Positionable.
Send a message of a message type to a Wrapper.Group.
The message will appear in the message area. The message will begin with the callsign of the group and the type of the first unit sending the message.
Defined in:
Parameters:
#string Message
The message text
Core.Message#MESSAGE.Type MessageType
The message type that determines the duration.
Wrapper.Group#GROUP MessageGroup
The GROUP object receiving the message.
#string Name
(optional) The Name of the sender. If not provided, the Name is the type of the Positionable.
Create a new POSITIONABLE from a DCSPositionable
Defined in:
Parameter:
#string PositionableName
The POSITIONABLE name
Return value:
self
Remove cargo.
Set Cargo Bay Weight Limit in kg.
Smoke the POSITIONABLE.
Defined in:
Parameters:
Utilities.Utils#SMOKECOLOR SmokeColor
The color to smoke to positionable.
#number Range
The range in meters to randomize the smoking around the positionable.
#number AddHeight
The height in meters to add to the altitude of the positionable.
Smoke the POSITIONABLE Green.
Defined in:
Smoke the POSITIONABLE Orange.
Defined in:
Smoke the POSITIONABLE White.
Defined in:
Field(s)
The name of the controllable.
Function(s)
Gets the CallSign of the IDENTIFIABLE, which is a blank by default.
Defined in:
Return value:
#string:
The CallSign of the IDENTIFIABLE.
Returns category of the DCS Identifiable.
Returns the DCS Identifiable category name as defined within the DCS Identifiable Descriptor.
Defined in:
Return value:
#string:
The DCS Identifiable Category Name
Returns coalition of the Identifiable.
Defined in:
Return values:
Returns the name of the coalition of the Identifiable.
Defined in:
Return values:
#string:
The name of the coalition.
#nil:
The DCS Identifiable is not existing or alive.
Returns country of the Identifiable.
Defined in:
Return values:
Returns country name of the Identifiable.
Returns Identifiable descriptor.
Descriptor type depends on Identifiable category.
Defined in:
Return values:
Returns DCS Identifiable object name.
The function provides access to non-activated objects too.
Defined in:
Return values:
#string:
The name of the DCS Identifiable.
#nil:
The DCS Identifiable is not existing or alive.
Returns the type name of the DCS Identifiable.
Defined in:
Return values:
#string:
The type name of the DCS Identifiable.
#nil:
The DCS Identifiable is not existing or alive.
Check if the Object has the attribute.
Defined in:
Parameter:
#string AttributeName
The attribute name.
Return values:
#boolean:
true if the attribute exists.
#nil:
The DCS Identifiable is not existing or alive.
Returns if the Identifiable is alive.
If the Identifiable is not alive, nil is returned.
If the Identifiable is alive, true is returned.
Defined in:
Return values:
#boolean:
true if Identifiable is alive.
#nil:
if the Identifiable is not existing or is not alive.
Create a new IDENTIFIABLE from a DCSIdentifiable
Defined in:
Parameter:
#string IdentifiableName
The DCS Identifiable name
Return value:
self
Field(s)
The name of the controllable.
Function(s)
Destroys the OBJECT.
Defined in:
Return values:
#boolean:
true if the object is destroyed.
#nil:
The DCS Unit is not existing or alive.
Returns the unit's unique identifier.
Defined in:
Return value:
ObjectID or #nil if the DCS Object is not existing or alive. Note that the ID is passed as a string and not a number.
Create a new OBJECT from a DCSObject
Field(s)
The name of the controllable.
Function(s)
Clear the state of an object.
Defined in:
Parameters:
Object
The object that holds the Value set by the Key.
StateName
The key that is should be cleared.
Creation of a Birth Event.
Defined in:
Parameters:
DCS#Time EventTime
The time stamp of the event.
DCS#Object Initiator
The initiating object of the event.
#string IniUnitName
The initiating unit name.
place
subplace
Creation of a Crash Event.
Defined in:
Parameters:
DCS#Time EventTime
The time stamp of the event.
DCS#Object Initiator
The initiating object of the event.
Creation of a Dead Event.
Defined in:
Parameters:
DCS#Time EventTime
The time stamp of the event.
DCS#Object Initiator
The initiating object of the event.
Creation of a Remove Unit Event.
Defined in:
Parameters:
DCS#Time EventTime
The time stamp of the event.
DCS#Object Initiator
The initiating object of the event.
Creation of a Takeoff Event.
Defined in:
Parameters:
DCS#Time EventTime
The time stamp of the event.
DCS#Object Initiator
The initiating object of the event.
Log an exception which will be traced always.
Can be anywhere within the function logic.
Returns the event dispatcher
Remove all subscribed events
Trace a function call.
Must be at the beginning of the function logic.
Trace a function call level 2.
Must be at the beginning of the function logic.
Trace a function call level 3.
Must be at the beginning of the function logic.
Get the ClassID of the class instance.
Get the ClassName of the class instance.
Get the ClassName + ClassID of the class instance.
The ClassName + ClassID is formatted as '%s#%09d'.
Get the Class Event processing Priority.
The Event processing Priority is a number from 1 to 10, reflecting the order of the classes subscribed to the Event to be processed.
This is the worker method to retrieve the Parent class.
Note that the Parent class must be passed to call the parent class method.
self:GetParent(self):ParentMethod()
Defined in:
Parameters:
#BASE Child
is the Child class from which the Parent class needs to be retrieved.
FromClass
Return value:
Get a Value given a Key from the Object.
Note that if the Object is destroyed, nillified or garbage collected, then the Values and Keys will also be gone.
Defined in:
Parameters:
Object
The object that holds the Value set by the Key.
Key
The key that is used to retrieve the value. Note that the key can be a #string, but it can also be any other type!
Return value:
The Value retrieved or nil if the Key was not found and thus the Value could not be retrieved.
Subscribe to a DCS Event.
Defined in:
Parameters:
Core.Event#EVENTS Event
#function EventFunction
(optional) The function to be called when the event occurs for the unit.
Return value:
Log an information which will be traced always.
Can be anywhere within the function logic.
This is the worker method to inherit from a parent class.
Defined in:
Parameters:
Child
is the Child class that inherits.
#BASE Parent
is the Parent class that the Child inherits from.
Return value:
Child
This is the worker method to check if an object is an (sub)instance of a class.
Examples:
ZONE:New( 'some zone' ):IsInstanceOf( ZONE ) will return true
ZONE:New( 'some zone' ):IsInstanceOf( 'ZONE' ) will return true
ZONE:New( 'some zone' ):IsInstanceOf( 'zone' ) will return true
ZONE:New( 'some zone' ):IsInstanceOf( 'BASE' ) will return true
ZONE:New( 'some zone' ):IsInstanceOf( 'GROUP' ) will return false
Defined in:
Parameter:
ClassName
is the name of the class or the class itself to run the check against
Return value:
#boolean:
Enquires if tracing is on (for the class).
BASE constructor.
This is an example how to use the BASE:New() constructor in a new class definition when inheriting from BASE.
function EVENT:New()
local self = BASE:Inherit( self, BASE:New() ) -- #EVENT
return self
end
Occurs when an object is completely destroyed.
initiator : The unit that is was destroyed.
Occurs when a ground unit captures either an airbase or a farp.
initiator : The unit that captured the base place: The airbase that was captured, can be a FARP or Airbase. When calling place:getCoalition() the faction will already be the new owning faction.
Occurs when any object is spawned into the mission.
initiator : The unit that was spawned
Occurs when any aircraft crashes into the ground and is completely destroyed.
initiator : The unit that has crashed
Occurs when an object is dead.
initiator : The unit that is dead.
Occurs when a pilot ejects from an aircraft initiator : The unit that has ejected
Occurs when any aircraft shuts down its engines.
initiator : The unit that is stopping its engines.
Occurs when any aircraft starts its engines.
initiator : The unit that is starting its engines.
Occurs whenever an object is hit by a weapon.
initiator : The unit object the fired the weapon weapon: Weapon object that hit the target target: The Object that was hit.
Occurs when any system fails on a human controlled aircraft.
initiator : The unit that had the failure
Occurs when an aircraft lands at an airbase, farp or ship initiator : The unit that has landed place: Object that the unit landed on.
Can be an Airbase Object, FARP, or Ships
Occurs when a mission ends
Occurs when a mission starts
Occurs when the pilot of an aircraft is killed.
Can occur either if the player is alive and crashes or if a weapon kills the pilot without completely destroying the plane. initiator : The unit that the pilot has died in.
Occurs when any player assumes direct control of a unit.
initiator : The unit that is being taken control of.
Occurs when any player relieves control of a unit to the AI.
initiator : The unit that the player left.
Occurs when an aircraft connects with a tanker and begins taking on fuel.
initiator : The unit that is receiving fuel.
Occurs when an aircraft is finished taking fuel.
initiator : The unit that was receiving fuel.
Occurs when any unit stops firing its weapon.
Event will always correspond with a shooting start event. initiator : The unit that was doing the shooing.
Occurs when any unit begins firing a weapon that has a high rate of fire.
Most common with aircraft cannons (GAU-8), autocannons, and machine guns. initiator : The unit that is doing the shooing. target: The unit that is being targeted.
Occurs whenever any unit in a mission fires a weapon.
But not any machine gun or autocannon based weapon, those are handled by EVENT.ShootingStart.
Occurs when an aircraft takes off from an airbase, farp, or ship.
initiator : The unit that tookoff place: Object from where the AI took-off from. Can be an Airbase Object, FARP, or Ships
Schedule a new time event.
Note that the schedule will only take place if the scheduler is started. Even for a single schedule event, the scheduler needs to be started also.
Defined in:
Parameters:
#number Start
Specifies the amount of seconds that will be waited before the scheduling is started, and the event function is called.
#function SchedulerFunction
The event function to be called when a timer event occurs. The event function needs to accept the parameters specified in SchedulerArguments.
#table ...
Optional arguments that can be given as part of scheduler. The arguments need to be given as a table { param1, param 2, ... }.
Return value:
#number:
The ScheduleID of the planned schedule.
Schedule a new time event.
Note that the schedule will only take place if the scheduler is started. Even for a single schedule event, the scheduler needs to be started also.
Defined in:
Parameters:
#number Start
Specifies the amount of seconds that will be waited before the scheduling is started, and the event function is called.
#number Repeat
Specifies the interval in seconds when the scheduler will call the event function.
#number RandomizeFactor
Specifies a randomization factor between 0 and 1 to randomize the Repeat.
#number Stop
Specifies the amount of seconds when the scheduler will be stopped.
#function SchedulerFunction
The event function to be called when a timer event occurs. The event function needs to accept the parameters specified in SchedulerArguments.
#table ...
Optional arguments that can be given as part of scheduler. The arguments need to be given as a table { param1, param 2, ... }.
Return value:
#number:
The ScheduleID of the planned schedule.
Stops the Schedule.
Defined in:
Parameter:
#function SchedulerFunction
The event function to be called when a timer event occurs. The event function needs to accept the parameters specified in SchedulerArguments.
Set the Class Event processing Priority.
The Event processing Priority is a number from 1 to 10, reflecting the order of the classes subscribed to the Event to be processed.
Set a state or property of the Object given a Key and a Value.
Note that if the Object is destroyed, nillified or garbage collected, then the Values and Keys will also be gone.
Defined in:
Parameters:
Object
The object that will hold the Value set by the Key.
Key
The key that is used as a reference of the value. Note that the key can be a #string, but it can also be any other type!
Value
The value to is stored in the object.
Return value:
The Value set.
Trace a function logic level 1.
Can be anywhere within the function logic.
Trace a function logic level 2.
Can be anywhere within the function logic.
Trace a function logic level 3.
Can be anywhere within the function logic.
Trace all methods in MOOSE
Set tracing for a class
Set tracing for a specific method of class
Set trace on or off Note that when trace is off, no BASE.Debug statement is performed, increasing performance! When Moose is loaded statically, (as one file), tracing is switched off by default.
So tracing must be switched on manually in your mission if you are using Moose statically. When moose is loading dynamically (for moose class development), tracing is switched on by default.
Defined in:
Parameter:
#boolean TraceOnOff
Switch the tracing on or off.
Usage:
-- Switch the tracing On
BASE:TraceOnOff( true )
-- Switch the tracing Off
BASE:TraceOnOff( false )
UnSubscribe to a DCS event.
Trace a function call.
This function is private.
Defined in:
Parameters:
Arguments
A #table or any field.
DebugInfoCurrentParam
DebugInfoFromParam
Trace a function logic.
Defined in:
Parameters:
Arguments
A #table or any field.
DebugInfoCurrentParam
DebugInfoFromParam
TODO: Complete DCS#Event structure.
- The main event handling function... This function captures all events generated for the class.
@param #BASE self
@param DCS#Event event