MOOSE generated documentation [skip ci]

This commit is contained in:
Applevangelist
2022-10-29 08:17:27 +00:00
parent 0f55b75634
commit c2cbd9d497
77 changed files with 1913 additions and 1872 deletions

View File

@@ -1649,7 +1649,7 @@ So a mission can be much more than just shoot stuff ... It can be a combination
<p>A mission can be in a specific state during the simulation run. For more information about these states, please check the <a href="Tasking.Mission.html">Tasking.Mission</a> section.</p>
<p>To achieve the mission goal, a mission administers <a href="Tasking.Task.html">Tasking.Task</a>s that are set to achieve the mission goal by the human players.
<p>To achieve the mission goal, a mission administers <a href="##(TASK)">#TASK</a>s that are set to achieve the mission goal by the human players.
Each of these tasks can be <strong>dynamically created</strong> using a task dispatcher, or <strong>coded</strong> by the mission designer.
Each mission has a separate <strong>Mission Menu</strong>, that focuses on the administration of these tasks.</p>
@@ -1754,7 +1754,7 @@ or to load/unload cargo.</p>
<p><img src="../Tasking/Menu_CommandCenter.JPG" alt="Command Center"/></p>
<p>When we take back the command center menu, you see two addtional <strong>Assign Task</strong> menu items.
<p>When we take back the command center menu, you see two additional <strong>Assign Task</strong> menu items.
The menu <strong>Assign Task On</strong> will automatically allocate a task to the player.
After the selection of this menu, the menu will change into <strong>Assign Task Off</strong>,
and will need to be selected again by the player to switch of the automatic task assignment.</p>
@@ -1804,7 +1804,7 @@ The scoring is fully flexible, and different levels of awarding can be provided
<p>The state completion is by default set to <strong>Success</strong>, if the goals of the task have been reached, but can be overruled by a goal method.</p>
<p>Depending on the tactical situation, a task can be <strong>Cancelled</strong> by the mission governer.
<p>Depending on the tactical situation, a task can be <strong>Cancelled</strong> by the mission governor.
It is actually the mission designer who has the flexibility to decide at which conditions a task would be set to <strong>Success</strong>, <strong>Failed</strong> or <strong>Cancelled</strong>.
This decision all depends on the task goals, and the phase/evolution of the task conditions that would accomplish the goals.</p>
@@ -1813,16 +1813,16 @@ the task goal could be set to <strong>Failed</strong>, or .. <strong>Cancelled</
However, it could very well be also acceptable that the task would be flagged as <strong>Success</strong>.</p>
<p>The tasking mechanism governs beside the progress also a scoring mechanism, and in case of goal completion without any active pilot involved
in the execution of the task, could result in a <strong>Success</strong> task completion status, but no score would be awared, as there were no players involved. </p>
in the execution of the task, could result in a <strong>Success</strong> task completion status, but no score would be awarded, as there were no players involved. </p>
<p>These different completion states are important for the mission designer to reflect scoring to a player.
A success could mean a positive score to be given, while a failure could mean a negative score or penalties to be awarded.</p>
<hr/>
<h3>Author: <strong>FlightControl</strong></h3>
<h3>Author(s): <strong>FlightControl</strong></h3>
<h3>Contributions:</h3>
<h3>Contribution(s):</h3>
<hr/>
@@ -1924,7 +1924,7 @@ You can do this with the OnAfterGoal method.</p>
<pre><code> function Task:OnAfterGoal()
if condition == true then
self:Success() -- This will flag the task to Succcess when the condition is true.
self:Success() -- This will flag the task to Success when the condition is true.
else
if condition2 == true and condition3 == true then
self:Fail() -- This will flag the task to Failed, when condition2 and condition3 would be true.
@@ -2002,13 +2002,13 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).AssignToGroup">TASK:AssignToGroup(TaskGroup)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Assign the <a href="Task.html">Task</a> to a <a href="Wrapper.Group.html">Wrapper.Group</a>.</p>
<p>Assign the <a href="##(TASK)">#TASK</a> to a <a href="Wrapper.Group.html">Wrapper.Group</a>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).AssignToUnit">TASK:AssignToUnit(TaskUnit)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Assign the <a href="Task.html">Task</a> to an alive <a href="Wrapper.Unit.html">Wrapper.Unit</a>.</p>
<p>Assign the <a href="##(TASK)">#TASK</a> to an alive <a href="Wrapper.Unit.html">Wrapper.Unit</a>.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2020,7 +2020,7 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).ClearGroupAssignment">TASK:ClearGroupAssignment(TaskGroup)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Clear the <a href="Wrapper.Group.html">Wrapper.Group</a> assignment from the <a href="Task.html">Task</a>.</p>
<p>Clear the <a href="Wrapper.Group.html">Wrapper.Group</a> assignment from the <a href="##(TASK)">#TASK</a>.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2092,7 +2092,7 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).GetBriefing">TASK:GetBriefing()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Gets the <a href="Task.html">Task</a> briefing.</p>
<p>Gets the <a href="##(TASK)">#TASK</a> briefing.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2146,7 +2146,7 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).GetProcessTemplate">TASK:GetProcessTemplate(ProcessName)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Get the default or currently assigned <a href="Process.html">Process</a> template with key ProcessName.</p>
<p>Get the default or currently assigned <a href="Core.Fsm.html##(FSM_PROCESS)">Core.Fsm#FSM_PROCESS</a> template with key ProcessName.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2158,19 +2158,19 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).GetStateMachine">TASK:GetStateMachine(TaskUnit)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Gets the FiniteStateMachine of <a href="Task.html">Task</a> with key Task<a href="Wrapper.Unit.html">Wrapper.Unit</a></p>
<p>Gets the FiniteStateMachine of <a href="##(TASK)">#TASK</a> with key <a href="Wrapper.Unit.html">Wrapper.Unit</a>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).GetStateString">TASK:GetStateString()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Gets the <a href="Task.html">Task</a> status.</p>
<p>Gets the <a href="##(TASK)">#TASK</a> status.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).GetTaskBriefing">TASK:GetTaskBriefing()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Returns the <a href="Task.html">Task</a> briefing.</p>
<p>Returns the <a href="##(TASK)">#TASK</a> briefing.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2188,7 +2188,7 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).GetTaskName">TASK:GetTaskName()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Returns the <a href="Task.html">Task</a> name.</p>
<p>Returns the <a href="##(TASK)">#TASK</a> name.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2212,7 +2212,7 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).HasAliveUnits">TASK:HasAliveUnits()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Returns if the <a href="Task.html">Task</a> has still alive and assigned Units.</p>
<p>Returns if the <a href="##(TASK)">#TASK</a> has still alive and assigned Units.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2224,7 +2224,7 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).HasStateMachine">TASK:HasStateMachine(TaskUnit)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Checks if there is a FiniteStateMachine assigned to Task<a href="Wrapper.Unit.html">Wrapper.Unit</a> for <a href="Task.html">Task</a></p>
<p>Checks if there is a FiniteStateMachine assigned to <a href="Wrapper.Unit.html">Wrapper.Unit</a> for <a href="##(TASK)">#TASK</a>.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2236,55 +2236,55 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).IsGroupAssigned">TASK:IsGroupAssigned(TaskGroup)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Returns if the <a href="Task.html">Task</a> is assigned to the Group.</p>
<p>Returns if the <a href="##(TASK)">#TASK</a> is assigned to the Group.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).IsStateAborted">TASK:IsStateAborted()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Is the <a href="Task.html">Task</a> status <strong>Aborted</strong>.</p>
<p>Is the <a href="##(TASK)">#TASK</a> status <strong>Aborted</strong>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).IsStateAssigned">TASK:IsStateAssigned()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Is the <a href="Task.html">Task</a> status <strong>Assigned</strong>.</p>
<p>Is the <a href="##(TASK)">#TASK</a> status <strong>Assigned</strong>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).IsStateCancelled">TASK:IsStateCancelled()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Is the <a href="Task.html">Task</a> status <strong>Cancelled</strong>.</p>
<p>Is the <a href="##(TASK)">#TASK</a> status <strong>Cancelled</strong>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).IsStateFailed">TASK:IsStateFailed()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Is the <a href="Task.html">Task</a> status <strong>Failed</strong>.</p>
<p>Is the <a href="##(TASK)">#TASK</a> status <strong>Failed</strong>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).IsStateHold">TASK:IsStateHold()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Is the <a href="Task.html">Task</a> status <strong>Hold</strong>.</p>
<p>Is the <a href="##(TASK)">#TASK</a> status <strong>Hold</strong>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).IsStatePlanned">TASK:IsStatePlanned()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Is the <a href="Task.html">Task</a> status <strong>Planned</strong>.</p>
<p>Is the <a href="##(TASK)">#TASK</a> status <strong>Planned</strong>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).IsStateReplanned">TASK:IsStateReplanned()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Is the <a href="Task.html">Task</a> status <strong>Replanned</strong>.</p>
<p>Is the <a href="##(TASK)">#TASK</a> status <strong>Replanned</strong>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).IsStateSuccess">TASK:IsStateSuccess()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Is the <a href="Task.html">Task</a> status <strong>Success</strong>.</p>
<p>Is the <a href="##(TASK)">#TASK</a> status <strong>Success</strong>.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2338,7 +2338,7 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).MessageToGroups">TASK:MessageToGroups(Message)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Send a message of the <a href="Task.html">Task</a> to the assigned <a href="Wrapper.Group.html">Wrapper.Group</a>s.</p>
<p>Send a message of the <a href="##(TASK)">#TASK</a> to the assigned <a href="Wrapper.Group.html">Wrapper.Group</a>s.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2386,7 +2386,7 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).RefreshMenus">TASK:RefreshMenus(TaskGroup, MenuTime)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Remove the menu option of the <a href="Task.html">Task</a> for a <a href="Wrapper.Group.html">Wrapper.Group</a>.</p>
<p>Remove the menu option of the <a href="##(TASK)">#TASK</a> for a <a href="Wrapper.Group.html">Wrapper.Group</a>.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2404,19 +2404,19 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).RemoveAssignedMenuForGroup">TASK:RemoveAssignedMenuForGroup(TaskGroup, MenuTime)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Remove the assigned menu option of the <a href="Task.html">Task</a> for a <a href="Wrapper.Group.html">Wrapper.Group</a>.</p>
<p>Remove the assigned menu option of the <a href="##(TASK)">#TASK</a> for a <a href="Wrapper.Group.html">Wrapper.Group</a>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).RemoveMenu">TASK:RemoveMenu(MenuTime)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Remove the menu options of the <a href="Task.html">Task</a> to all the groups in the SetGroup.</p>
<p>Remove the menu options of the <a href="##(TASK)">#TASK</a> to all the groups in the SetGroup.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).RemoveStateMachine">TASK:RemoveStateMachine(TaskUnit)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Remove FiniteStateMachines from <a href="Task.html">Task</a> with key Task<a href="Wrapper.Unit.html">Wrapper.Unit</a></p>
<p>Remove FiniteStateMachines from <a href="##(TASK)">#TASK</a> with key <a href="Wrapper.Unit.html">Wrapper.Unit</a>.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2452,7 +2452,7 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).SendBriefingToAssignedGroups">TASK:SendBriefingToAssignedGroups()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Send the briefng message of the <a href="Task.html">Task</a> to the assigned <a href="Wrapper.Group.html">Wrapper.Group</a>s.</p>
<p>Send the briefing message of the <a href="##(TASK)">#TASK</a> to the assigned <a href="Wrapper.Group.html">Wrapper.Group</a>s.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2464,13 +2464,13 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).SetAssignedMenuForGroup">TASK:SetAssignedMenuForGroup(TaskGroup, MenuTime)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Set the assigned menu options of the <a href="Task.html">Task</a>.</p>
<p>Set the assigned menu options of the <a href="##(TASK)">#TASK</a>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).SetBriefing">TASK:SetBriefing(TaskBriefing)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Sets a <a href="Task.html">Task</a> briefing.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> briefing.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2500,7 +2500,7 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).SetGroupAssigned">TASK:SetGroupAssigned(TaskGroup)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Set <a href="Wrapper.Group.html">Wrapper.Group</a> assigned to the <a href="Task.html">Task</a>.</p>
<p>Set <a href="Wrapper.Group.html">Wrapper.Group</a> assigned to the <a href="##(TASK)">#TASK</a>.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2512,7 +2512,7 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).SetMenu">TASK:SetMenu(MenuTime)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Set the menu options of the <a href="Task.html">Task</a> to all the groups in the SetGroup.</p>
<p>Set the menu options of the <a href="##(TASK)">#TASK</a> to all the groups in the SetGroup.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2530,7 +2530,7 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).SetPlannedMenuForGroup">TASK:SetPlannedMenuForGroup(TaskGroup, MenuText, MenuTime)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Set the planned menu option of the <a href="Task.html">Task</a>.</p>
<p>Set the planned menu option of the <a href="##(TASK)">#TASK</a>.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2554,13 +2554,13 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).SetStateMachine">TASK:SetStateMachine(TaskUnit, Fsm)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Add a FiniteStateMachine to <a href="Task.html">Task</a> with key Task<a href="Wrapper.Unit.html">Wrapper.Unit</a></p>
<p>Add a FiniteStateMachine to <a href="##(TASK)">#TASK</a> with key <a href="Wrapper.Unit.html">Wrapper.Unit</a>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).SetTimeOut">TASK:SetTimeOut(Timer)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Sets the TimeOut for the <a href="Task.html">Task</a>.</p>
<p>Sets the TimeOut for the <a href="##(TASK)">#TASK</a>.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2578,49 +2578,49 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).StateAborted">TASK:StateAborted()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Sets a <a href="Task.html">Task</a> to status <strong>Aborted</strong>.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> to status <strong>Aborted</strong>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).StateAssigned">TASK:StateAssigned()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Sets a <a href="Task.html">Task</a> to status <strong>Assigned</strong>.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> to status <strong>Assigned</strong>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).StateCancelled">TASK:StateCancelled()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Sets a <a href="Task.html">Task</a> to status <strong>Cancelled</strong>.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> to status <strong>Cancelled</strong>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).StateFailed">TASK:StateFailed()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Sets a <a href="Task.html">Task</a> to status <strong>Failed</strong>.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> to status <strong>Failed</strong>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).StateHold">TASK:StateHold()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Sets a <a href="Task.html">Task</a> to status <strong>Hold</strong>.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> to status <strong>Hold</strong>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).StatePlanned">TASK:StatePlanned()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Sets a <a href="Task.html">Task</a> to status <strong>Planned</strong>.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> to status <strong>Planned</strong>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).StateReplanned">TASK:StateReplanned()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Sets a <a href="Task.html">Task</a> to status <strong>Replanned</strong>.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> to status <strong>Replanned</strong>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).StateSuccess">TASK:StateSuccess()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Sets a <a href="Task.html">Task</a> to status <strong>Success</strong>.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> to status <strong>Success</strong>.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2692,19 +2692,19 @@ but can separately be modified later in your mission using the
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).UnAssignFromGroup">TASK:UnAssignFromGroup(TaskGroup)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>UnAssign the <a href="Task.html">Task</a> from a <a href="Wrapper.Group.html">Wrapper.Group</a>.</p>
<p>UnAssign the <a href="##(TASK)">#TASK</a> from a <a href="Wrapper.Group.html">Wrapper.Group</a>.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).UnAssignFromGroups">TASK:UnAssignFromGroups()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>UnAssign the <a href="Task.html">Task</a> from the <a href="Wrapper.Group.html">Wrapper.Group</a>s.</p>
<p>UnAssign the <a href="##(TASK)">#TASK</a> from the <a href="Wrapper.Group.html">Wrapper.Group</a>s.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(TASK).UnAssignFromUnit">TASK:UnAssignFromUnit(TaskUnit)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>UnAssign the <a href="Task.html">Task</a> from an alive <a href="Wrapper.Unit.html">Wrapper.Unit</a>.</p>
<p>UnAssign the <a href="##(TASK)">#TASK</a> from an alive <a href="Wrapper.Unit.html">Wrapper.Unit</a>.</p>
</td>
</tr>
<tr class="w3-border">
@@ -3222,7 +3222,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).AssignToGroup" ><strong>TASK:AssignToGroup(TaskGroup)</strong></a></h2>
</div>
<p>Assign the <a href="Task.html">Task</a> to a <a href="Wrapper.Group.html">Wrapper.Group</a>.</p>
<p>Assign the <a href="##(TASK)">#TASK</a> to a <a href="Wrapper.Group.html">Wrapper.Group</a>.</p>
<div id= "#Functions##AssignToGroup" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -3264,7 +3264,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).AssignToUnit" ><strong>TASK:AssignToUnit(TaskUnit)</strong></a></h2>
</div>
<p>Assign the <a href="Task.html">Task</a> to an alive <a href="Wrapper.Unit.html">Wrapper.Unit</a>.</p>
<p>Assign the <a href="##(TASK)">#TASK</a> to an alive <a href="Wrapper.Unit.html">Wrapper.Unit</a>.</p>
<div id= "#Functions##AssignToUnit" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -3328,7 +3328,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).ClearGroupAssignment" ><strong>TASK:ClearGroupAssignment(TaskGroup)</strong></a></h2>
</div>
<p>Clear the <a href="Wrapper.Group.html">Wrapper.Group</a> assignment from the <a href="Task.html">Task</a>.</p>
<p>Clear the <a href="Wrapper.Group.html">Wrapper.Group</a> assignment from the <a href="##(TASK)">#TASK</a>.</p>
<div id= "#Functions##ClearGroupAssignment" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -3439,8 +3439,8 @@ but can separately be modified later in your mission using the
<p> TODO: Obscolete?
- Fail processes from <a href="Task.html">Task</a> with key <a href="Wrapper.Unit.html">Wrapper.Unit</a>
<p> TODO: Obsolete?
- Fail processes from <a href="##(TASK)">#TASK</a> with key <a href="Wrapper.Unit.html">Wrapper.Unit</a>.
@param #TASK self
@param #string TaskUnitName
@return #TASK self</p>
@@ -3473,7 +3473,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).GetBriefing" ><strong>TASK:GetBriefing()</strong></a></h2>
</div>
<p>Gets the <a href="Task.html">Task</a> briefing.</p>
<p>Gets the <a href="##(TASK)">#TASK</a> briefing.</p>
<div id= "#Functions##GetBriefing" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -3743,7 +3743,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).GetProcessTemplate" ><strong>TASK:GetProcessTemplate(ProcessName)</strong></a></h2>
</div>
<p>Get the default or currently assigned <a href="Process.html">Process</a> template with key ProcessName.</p>
<p>Get the default or currently assigned <a href="Core.Fsm.html##(FSM_PROCESS)">Core.Fsm#FSM_PROCESS</a> template with key ProcessName.</p>
<div id= "#Functions##GetProcessTemplate" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -3815,7 +3815,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).GetStateMachine" ><strong>TASK:GetStateMachine(TaskUnit)</strong></a></h2>
</div>
<p>Gets the FiniteStateMachine of <a href="Task.html">Task</a> with key Task<a href="Wrapper.Unit.html">Wrapper.Unit</a></p>
<p>Gets the FiniteStateMachine of <a href="##(TASK)">#TASK</a> with key <a href="Wrapper.Unit.html">Wrapper.Unit</a>.</p>
<div id= "#Functions##GetStateMachine" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -3857,7 +3857,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).GetStateString" ><strong>TASK:GetStateString()</strong></a></h2>
</div>
<p>Gets the <a href="Task.html">Task</a> status.</p>
<p>Gets the <a href="##(TASK)">#TASK</a> status.</p>
<div id= "#Functions##GetStateString" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -3876,7 +3876,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).GetTaskBriefing" ><strong>TASK:GetTaskBriefing()</strong></a></h2>
</div>
<p>Returns the <a href="Task.html">Task</a> briefing.</p>
<p>Returns the <a href="##(TASK)">#TASK</a> briefing.</p>
<div id= "#Functions##GetTaskBriefing" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -3990,7 +3990,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).GetTaskName" ><strong>TASK:GetTaskName()</strong></a></h2>
</div>
<p>Returns the <a href="Task.html">Task</a> name.</p>
<p>Returns the <a href="##(TASK)">#TASK</a> name.</p>
<div id= "#Functions##GetTaskName" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -4137,7 +4137,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).HasAliveUnits" ><strong>TASK:HasAliveUnits()</strong></a></h2>
</div>
<p>Returns if the <a href="Task.html">Task</a> has still alive and assigned Units.</p>
<p>Returns if the <a href="##(TASK)">#TASK</a> has still alive and assigned Units.</p>
<div id= "#Functions##HasAliveUnits" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -4209,7 +4209,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).HasStateMachine" ><strong>TASK:HasStateMachine(TaskUnit)</strong></a></h2>
</div>
<p>Checks if there is a FiniteStateMachine assigned to Task<a href="Wrapper.Unit.html">Wrapper.Unit</a> for <a href="Task.html">Task</a></p>
<p>Checks if there is a FiniteStateMachine assigned to <a href="Wrapper.Unit.html">Wrapper.Unit</a> for <a href="##(TASK)">#TASK</a>.</p>
<div id= "#Functions##HasStateMachine" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -4294,7 +4294,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).IsGroupAssigned" ><strong>TASK:IsGroupAssigned(TaskGroup)</strong></a></h2>
</div>
<p>Returns if the <a href="Task.html">Task</a> is assigned to the Group.</p>
<p>Returns if the <a href="##(TASK)">#TASK</a> is assigned to the Group.</p>
<div id= "#Functions##IsGroupAssigned" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -4336,7 +4336,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).IsStateAborted" ><strong>TASK:IsStateAborted()</strong></a></h2>
</div>
<p>Is the <a href="Task.html">Task</a> status <strong>Aborted</strong>.</p>
<p>Is the <a href="##(TASK)">#TASK</a> status <strong>Aborted</strong>.</p>
<div id= "#Functions##IsStateAborted" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -4355,7 +4355,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).IsStateAssigned" ><strong>TASK:IsStateAssigned()</strong></a></h2>
</div>
<p>Is the <a href="Task.html">Task</a> status <strong>Assigned</strong>.</p>
<p>Is the <a href="##(TASK)">#TASK</a> status <strong>Assigned</strong>.</p>
<div id= "#Functions##IsStateAssigned" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -4374,7 +4374,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).IsStateCancelled" ><strong>TASK:IsStateCancelled()</strong></a></h2>
</div>
<p>Is the <a href="Task.html">Task</a> status <strong>Cancelled</strong>.</p>
<p>Is the <a href="##(TASK)">#TASK</a> status <strong>Cancelled</strong>.</p>
<div id= "#Functions##IsStateCancelled" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -4393,7 +4393,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).IsStateFailed" ><strong>TASK:IsStateFailed()</strong></a></h2>
</div>
<p>Is the <a href="Task.html">Task</a> status <strong>Failed</strong>.</p>
<p>Is the <a href="##(TASK)">#TASK</a> status <strong>Failed</strong>.</p>
<div id= "#Functions##IsStateFailed" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -4412,7 +4412,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).IsStateHold" ><strong>TASK:IsStateHold()</strong></a></h2>
</div>
<p>Is the <a href="Task.html">Task</a> status <strong>Hold</strong>.</p>
<p>Is the <a href="##(TASK)">#TASK</a> status <strong>Hold</strong>.</p>
<div id= "#Functions##IsStateHold" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -4431,7 +4431,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).IsStatePlanned" ><strong>TASK:IsStatePlanned()</strong></a></h2>
</div>
<p>Is the <a href="Task.html">Task</a> status <strong>Planned</strong>.</p>
<p>Is the <a href="##(TASK)">#TASK</a> status <strong>Planned</strong>.</p>
<div id= "#Functions##IsStatePlanned" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -4450,7 +4450,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).IsStateReplanned" ><strong>TASK:IsStateReplanned()</strong></a></h2>
</div>
<p>Is the <a href="Task.html">Task</a> status <strong>Replanned</strong>.</p>
<p>Is the <a href="##(TASK)">#TASK</a> status <strong>Replanned</strong>.</p>
<div id= "#Functions##IsStateReplanned" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -4469,7 +4469,7 @@ but can separately be modified later in your mission using the
<h2><a id="#(TASK).IsStateSuccess" ><strong>TASK:IsStateSuccess()</strong></a></h2>
</div>
<p>Is the <a href="Task.html">Task</a> status <strong>Success</strong>.</p>
<p>Is the <a href="##(TASK)">#TASK</a> status <strong>Success</strong>.</p>
<div id= "#Functions##IsStateSuccess" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -4713,7 +4713,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).MessageToGroups" ><strong>TASK:MessageToGroups(Message)</strong></a></h2>
</div>
<p>Send a message of the <a href="Task.html">Task</a> to the assigned <a href="Wrapper.Group.html">Wrapper.Group</a>s.</p>
<p>Send a message of the <a href="##(TASK)">#TASK</a> to the assigned <a href="Wrapper.Group.html">Wrapper.Group</a>s.</p>
<div id= "#Functions##MessageToGroups" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -5146,7 +5146,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).RefreshMenus" ><strong>TASK:RefreshMenus(TaskGroup, MenuTime)</strong></a></h2>
</div>
<p>Remove the menu option of the <a href="Task.html">Task</a> for a <a href="Wrapper.Group.html">Wrapper.Group</a>.</p>
<p>Remove the menu option of the <a href="##(TASK)">#TASK</a> for a <a href="Wrapper.Group.html">Wrapper.Group</a>.</p>
<div id= "#Functions##RefreshMenus" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -5300,7 +5300,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).RemoveAssignedMenuForGroup" ><strong>TASK:RemoveAssignedMenuForGroup(TaskGroup, MenuTime)</strong></a></h2>
</div>
<p>Remove the assigned menu option of the <a href="Task.html">Task</a> for a <a href="Wrapper.Group.html">Wrapper.Group</a>.</p>
<p>Remove the assigned menu option of the <a href="##(TASK)">#TASK</a> for a <a href="Wrapper.Group.html">Wrapper.Group</a>.</p>
<div id= "#Functions##RemoveAssignedMenuForGroup" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -5353,7 +5353,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).RemoveMenu" ><strong>TASK:RemoveMenu(MenuTime)</strong></a></h2>
</div>
<p>Remove the menu options of the <a href="Task.html">Task</a> to all the groups in the SetGroup.</p>
<p>Remove the menu options of the <a href="##(TASK)">#TASK</a> to all the groups in the SetGroup.</p>
<div id= "#Functions##RemoveMenu" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -5395,7 +5395,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).RemoveStateMachine" ><strong>TASK:RemoveStateMachine(TaskUnit)</strong></a></h2>
</div>
<p>Remove FiniteStateMachines from <a href="Task.html">Task</a> with key Task<a href="Wrapper.Unit.html">Wrapper.Unit</a></p>
<p>Remove FiniteStateMachines from <a href="##(TASK)">#TASK</a> with key <a href="Wrapper.Unit.html">Wrapper.Unit</a>.</p>
<div id= "#Functions##RemoveStateMachine" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -5636,7 +5636,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).SendBriefingToAssignedGroups" ><strong>TASK:SendBriefingToAssignedGroups()</strong></a></h2>
</div>
<p>Send the briefng message of the <a href="Task.html">Task</a> to the assigned <a href="Wrapper.Group.html">Wrapper.Group</a>s.</p>
<p>Send the briefing message of the <a href="##(TASK)">#TASK</a> to the assigned <a href="Wrapper.Group.html">Wrapper.Group</a>s.</p>
<div id= "#Functions##SendBriefingToAssignedGroups" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -5686,7 +5686,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).SetAssignedMenuForGroup" ><strong>TASK:SetAssignedMenuForGroup(TaskGroup, MenuTime)</strong></a></h2>
</div>
<p>Set the assigned menu options of the <a href="Task.html">Task</a>.</p>
<p>Set the assigned menu options of the <a href="##(TASK)">#TASK</a>.</p>
<div id= "#Functions##SetAssignedMenuForGroup" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -5739,7 +5739,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).SetBriefing" ><strong>TASK:SetBriefing(TaskBriefing)</strong></a></h2>
</div>
<p>Sets a <a href="Task.html">Task</a> briefing.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> briefing.</p>
<div id= "#Functions##SetBriefing" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -5917,7 +5917,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).SetGroupAssigned" ><strong>TASK:SetGroupAssigned(TaskGroup)</strong></a></h2>
</div>
<p>Set <a href="Wrapper.Group.html">Wrapper.Group</a> assigned to the <a href="Task.html">Task</a>.</p>
<p>Set <a href="Wrapper.Group.html">Wrapper.Group</a> assigned to the <a href="##(TASK)">#TASK</a>.</p>
<div id= "#Functions##SetGroupAssigned" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -5990,7 +5990,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).SetMenu" ><strong>TASK:SetMenu(MenuTime)</strong></a></h2>
</div>
<p>Set the menu options of the <a href="Task.html">Task</a> to all the groups in the SetGroup.</p>
<p>Set the menu options of the <a href="##(TASK)">#TASK</a> to all the groups in the SetGroup.</p>
<div id= "#Functions##SetMenu" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -6115,7 +6115,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).SetPlannedMenuForGroup" ><strong>TASK:SetPlannedMenuForGroup(TaskGroup, MenuText, MenuTime)</strong></a></h2>
</div>
<p>Set the planned menu option of the <a href="Task.html">Task</a>.</p>
<p>Set the planned menu option of the <a href="##(TASK)">#TASK</a>.</p>
<div id= "#Functions##SetPlannedMenuForGroup" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -6385,7 +6385,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).SetStateMachine" ><strong>TASK:SetStateMachine(TaskUnit, Fsm)</strong></a></h2>
</div>
<p>Add a FiniteStateMachine to <a href="Task.html">Task</a> with key Task<a href="Wrapper.Unit.html">Wrapper.Unit</a></p>
<p>Add a FiniteStateMachine to <a href="##(TASK)">#TASK</a> with key <a href="Wrapper.Unit.html">Wrapper.Unit</a>.</p>
<div id= "#Functions##SetStateMachine" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -6438,10 +6438,10 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).SetTimeOut" ><strong>TASK:SetTimeOut(Timer)</strong></a></h2>
</div>
<p>Sets the TimeOut for the <a href="Task.html">Task</a>.</p>
<p>Sets the TimeOut for the <a href="##(TASK)">#TASK</a>.</p>
<p>If <a href="Task.html">Task</a> stayed planned for longer than TimeOut, it gets into Cancelled status.</p>
<p>If <a href="##(TASK)">#TASK</a> stayed planned for longer than TimeOut, it gets into Cancelled status.</p>
<div id= "#Functions##SetTimeOut" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -6558,7 +6558,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).StateAborted" ><strong>TASK:StateAborted()</strong></a></h2>
</div>
<p>Sets a <a href="Task.html">Task</a> to status <strong>Aborted</strong>.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> to status <strong>Aborted</strong>.</p>
<div id= "#Functions##StateAborted" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -6577,7 +6577,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).StateAssigned" ><strong>TASK:StateAssigned()</strong></a></h2>
</div>
<p>Sets a <a href="Task.html">Task</a> to status <strong>Assigned</strong>.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> to status <strong>Assigned</strong>.</p>
<div id= "#Functions##StateAssigned" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -6596,7 +6596,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).StateCancelled" ><strong>TASK:StateCancelled()</strong></a></h2>
</div>
<p>Sets a <a href="Task.html">Task</a> to status <strong>Cancelled</strong>.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> to status <strong>Cancelled</strong>.</p>
<div id= "#Functions##StateCancelled" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -6615,7 +6615,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).StateFailed" ><strong>TASK:StateFailed()</strong></a></h2>
</div>
<p>Sets a <a href="Task.html">Task</a> to status <strong>Failed</strong>.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> to status <strong>Failed</strong>.</p>
<div id= "#Functions##StateFailed" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -6634,7 +6634,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).StateHold" ><strong>TASK:StateHold()</strong></a></h2>
</div>
<p>Sets a <a href="Task.html">Task</a> to status <strong>Hold</strong>.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> to status <strong>Hold</strong>.</p>
<div id= "#Functions##StateHold" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -6653,7 +6653,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).StatePlanned" ><strong>TASK:StatePlanned()</strong></a></h2>
</div>
<p>Sets a <a href="Task.html">Task</a> to status <strong>Planned</strong>.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> to status <strong>Planned</strong>.</p>
<div id= "#Functions##StatePlanned" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -6672,7 +6672,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).StateReplanned" ><strong>TASK:StateReplanned()</strong></a></h2>
</div>
<p>Sets a <a href="Task.html">Task</a> to status <strong>Replanned</strong>.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> to status <strong>Replanned</strong>.</p>
<div id= "#Functions##StateReplanned" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -6691,7 +6691,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).StateSuccess" ><strong>TASK:StateSuccess()</strong></a></h2>
</div>
<p>Sets a <a href="Task.html">Task</a> to status <strong>Success</strong>.</p>
<p>Sets a <a href="##(TASK)">#TASK</a> to status <strong>Success</strong>.</p>
<div id= "#Functions##StateSuccess" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -6732,7 +6732,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).UnAssignFromGroup" ><strong>TASK:UnAssignFromGroup(TaskGroup)</strong></a></h2>
</div>
<p>UnAssign the <a href="Task.html">Task</a> from a <a href="Wrapper.Group.html">Wrapper.Group</a>.</p>
<p>UnAssign the <a href="##(TASK)">#TASK</a> from a <a href="Wrapper.Group.html">Wrapper.Group</a>.</p>
<div id= "#Functions##UnAssignFromGroup" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -6763,7 +6763,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).UnAssignFromGroups" ><strong>TASK:UnAssignFromGroups()</strong></a></h2>
</div>
<p>UnAssign the <a href="Task.html">Task</a> from the <a href="Wrapper.Group.html">Wrapper.Group</a>s.</p>
<p>UnAssign the <a href="##(TASK)">#TASK</a> from the <a href="Wrapper.Group.html">Wrapper.Group</a>s.</p>
<div id= "#Functions##UnAssignFromGroups" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
@@ -6782,7 +6782,7 @@ If the Unit is part of the Task, true is returned.</p>
<h2><a id="#(TASK).UnAssignFromUnit" ><strong>TASK:UnAssignFromUnit(TaskUnit)</strong></a></h2>
</div>
<p>UnAssign the <a href="Task.html">Task</a> from an alive <a href="Wrapper.Unit.html">Wrapper.Unit</a>.</p>
<p>UnAssign the <a href="##(TASK)">#TASK</a> from an alive <a href="Wrapper.Unit.html">Wrapper.Unit</a>.</p>
<div id= "#Functions##UnAssignFromUnit" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">