From d349ed12a978ee538e2dca4068a0170550c14624 Mon Sep 17 00:00:00 2001 From: FlightControl_Master Date: Sun, 6 Aug 2017 07:40:55 +0200 Subject: [PATCH] Engage Range test --- Moose Development/Moose/AI/AI_A2A_Dispatcher.lua | 10 ++++++---- docs/Documentation/AI_A2A_Dispatcher.html | 10 ++++++---- docs/Documentation/Cargo.html | 2 -- docs/Documentation/Designate.html | 1 - docs/Documentation/Fsm.html | 3 ++- docs/Documentation/Movement.html | 4 ++++ docs/Documentation/Positionable.html | 1 - docs/Documentation/Settings.html | 2 +- docs/Documentation/Spawn.html | 8 +------- docs/Documentation/SpawnStatic.html | 1 + docs/Documentation/Task_Cargo.html | 5 +++-- 11 files changed, 24 insertions(+), 23 deletions(-) diff --git a/Moose Development/Moose/AI/AI_A2A_Dispatcher.lua b/Moose Development/Moose/AI/AI_A2A_Dispatcher.lua index 6a067d8ef..f55f25d8c 100644 --- a/Moose Development/Moose/AI/AI_A2A_Dispatcher.lua +++ b/Moose Development/Moose/AI/AI_A2A_Dispatcher.lua @@ -293,11 +293,13 @@ do -- AI_A2A_DISPATCHER -- Use the method @{#AI_A2A_DISPATCHER.SetEngageRadius}() to set a specific Engage Radius. -- **The Engage Radius is defined for ALL squadrons which are operational.** -- - -- In this example an Engage Radius is set to 80km. + -- Demonstration Mission: [AID-019 - AI_A2A - Engage Range Test](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/release-2-2-pre/AID-019%20-%20AI_A2A%20-%20Engage%20Range%20Test) -- - -- -- Initialize the dispatcher, setting up a radius of 80km where any airborne friendly - -- -- without an assignment within 80km radius from a detected target, will engage that target. - -- A2ADispatcher:SetEngageRadius( 80000 ) + -- In this example an Engage Radius is set to 50km. + -- + -- -- Initialize the dispatcher, setting up a radius of 50km where any airborne friendly + -- -- without an assignment within 50km radius from a detected target, will engage that target. + -- A2ADispatcher:SetEngageRadius( 50000 ) -- -- ## 4. Set the **Ground Controlled Intercept Radius** or **Gci radius**: -- diff --git a/docs/Documentation/AI_A2A_Dispatcher.html b/docs/Documentation/AI_A2A_Dispatcher.html index 1801dd884..9314977c1 100644 --- a/docs/Documentation/AI_A2A_Dispatcher.html +++ b/docs/Documentation/AI_A2A_Dispatcher.html @@ -1093,11 +1093,13 @@ will be considered to receive the command to engage that target area.

Use the method AIA2ADISPATCHER.SetEngageRadius() to set a specific Engage Radius. The Engage Radius is defined for ALL squadrons which are operational.

-

In this example an Engage Radius is set to 80km.

+

Demonstration Mission: AID-019 - AI_A2A - Engage Range Test

-
-- Initialize the dispatcher, setting up a radius of 80km where any airborne friendly 
--- without an assignment within 80km radius from a detected target, will engage that target.
-A2ADispatcher:SetEngageRadius( 80000 )
+

In this example an Engage Radius is set to 50km.

+ +
-- Initialize the dispatcher, setting up a radius of 50km where any airborne friendly 
+-- without an assignment within 50km radius from a detected target, will engage that target.
+A2ADispatcher:SetEngageRadius( 50000 )
 

4. Set the Ground Controlled Intercept Radius or Gci radius:

diff --git a/docs/Documentation/Cargo.html b/docs/Documentation/Cargo.html index 21b706849..9f6098452 100644 --- a/docs/Documentation/Cargo.html +++ b/docs/Documentation/Cargo.html @@ -3417,7 +3417,6 @@ The range till cargo will board.

- CARGO_UNIT.CargoCarrier @@ -3543,7 +3542,6 @@ The range till cargo will board.

- #number CARGO_UNIT.RunCount diff --git a/docs/Documentation/Designate.html b/docs/Documentation/Designate.html index 36c6d0e0f..c80c67564 100644 --- a/docs/Documentation/Designate.html +++ b/docs/Documentation/Designate.html @@ -923,7 +923,6 @@ function below will use the range 1-7 just in case

- DESIGNATE.LaserCodes diff --git a/docs/Documentation/Fsm.html b/docs/Documentation/Fsm.html index 177f34281..e0276d335 100644 --- a/docs/Documentation/Fsm.html +++ b/docs/Documentation/Fsm.html @@ -1598,7 +1598,7 @@ A string defining the start state.

- #string + FSM._StartState @@ -1897,6 +1897,7 @@ A string defining the start state.

+ FSM.current diff --git a/docs/Documentation/Movement.html b/docs/Documentation/Movement.html index 4307c3aaa..be5ce073c 100644 --- a/docs/Documentation/Movement.html +++ b/docs/Documentation/Movement.html @@ -227,6 +227,7 @@ on defined intervals (currently every minute).

+ #number MOVEMENT.AliveUnits @@ -235,6 +236,9 @@ on defined intervals (currently every minute).

+ +

Contains the counter how many units are currently alive

+
diff --git a/docs/Documentation/Positionable.html b/docs/Documentation/Positionable.html index 82d94f58f..78befb2bf 100644 --- a/docs/Documentation/Positionable.html +++ b/docs/Documentation/Positionable.html @@ -1838,7 +1838,6 @@ self

- Core.Spot#SPOT POSITIONABLE.Spot diff --git a/docs/Documentation/Settings.html b/docs/Documentation/Settings.html index 318968720..6836574d8 100644 --- a/docs/Documentation/Settings.html +++ b/docs/Documentation/Settings.html @@ -1142,7 +1142,7 @@ true if metric.

- + #boolean SETTINGS.Metric diff --git a/docs/Documentation/Spawn.html b/docs/Documentation/Spawn.html index 21bd4013c..4bc8d4b5f 100644 --- a/docs/Documentation/Spawn.html +++ b/docs/Documentation/Spawn.html @@ -2200,9 +2200,6 @@ The group that was spawned. You can use this group for further actions.

- -

Don't repeat the group from Take-Off till Landing and back Take-Off by ReSpawning.

-
@@ -2741,9 +2738,6 @@ when nothing was spawned.

- -

Overwrite unit names by default with group name.

-
@@ -3138,7 +3132,7 @@ Spawn_BE_KA50 = SPAWN:New( 'BE KA-50@RAMP-Ground Defense' ):Schedule( 600, 0.5 )
- #boolean + SPAWN.SpawnUnControlled diff --git a/docs/Documentation/SpawnStatic.html b/docs/Documentation/SpawnStatic.html index bc91b9624..d8aa5e633 100644 --- a/docs/Documentation/SpawnStatic.html +++ b/docs/Documentation/SpawnStatic.html @@ -436,6 +436,7 @@ ptional) The name of the new static.

+ #number SPAWNSTATIC.SpawnIndex diff --git a/docs/Documentation/Task_Cargo.html b/docs/Documentation/Task_Cargo.html index cf19dab00..5ccba6643 100644 --- a/docs/Documentation/Task_Cargo.html +++ b/docs/Documentation/Task_Cargo.html @@ -552,7 +552,7 @@ based on the tasking capabilities defined in Task#TA
- Core.Cargo#CARGO_GROUP + Core.Cargo#CARGO FSM_PROCESS.Cargo @@ -566,6 +566,7 @@ based on the tasking capabilities defined in Task#TA
+ FSM_PROCESS.DeployZone @@ -630,7 +631,7 @@ based on the tasking capabilities defined in Task#TA
- #number + TASK_CARGO.CargoLimit