Following up on the requirement #636 a new default management system has been built...

A lot of new methods have been added to set the default behaviour for:

*  function AI_A2A_DISPATCHER:SetDefaultTakeoff( Takeoff )
*  function AI_A2A_DISPATCHER:SetDefaultTakeoffFromParkingCold()
*  function AI_A2A_DISPATCHER:SetDefaultTakeoffFromParkingHot()
*  function AI_A2A_DISPATCHER:SetDefaultTakeoffFromRunway()
*  function AI_A2A_DISPATCHER:SetDefaultTakeoffInAir()
*  function AI_A2A_DISPATCHER:SetDefaultLanding( Landing )
*  function AI_A2A_DISPATCHER:SetDefaultLandingAtEngineShutdown()
*  function AI_A2A_DISPATCHER:SetDefaultLandingAtRunway()
*  function AI_A2A_DISPATCHER:SetDefaultLandingNearAirbase()
*  function AI_A2A_DISPATCHER:SetDefaultGrouping( Grouping )
*  function AI_A2A_DISPATCHER:SetDefaultOverhead( Overhead )
This commit is contained in:
FlightControl_Master
2017-07-27 11:56:03 +02:00
parent 600166fd80
commit 61fe3cf457
14 changed files with 1076 additions and 87 deletions

View File

@@ -292,6 +292,12 @@ and will be replaced by a navigation using Reference Zones.</p>
<td class="name" nowrap="nowrap"><a href="##(REPORT).ClassName">REPORT.ClassName</a></td>
<td class="summary">
</td>
</tr>
<tr>
<td class="name" nowrap="nowrap"><a href="##(REPORT).GetCount">REPORT:GetCount()</a></td>
<td class="summary">
<p>Gets the amount of report items contained in the report.</p>
</td>
</tr>
<tr>
@@ -322,6 +328,12 @@ and will be replaced by a navigation using Reference Zones.</p>
<td class="name" nowrap="nowrap"><a href="##(REPORT).SetIndent">REPORT:SetIndent(Indent)</a></td>
<td class="summary">
<p>Set indent of a REPORT.</p>
</td>
</tr>
<tr>
<td class="name" nowrap="nowrap"><a href="##(REPORT).SetTitle">REPORT:SetTitle(Title)</a></td>
<td class="summary">
<p>Sets the title of the report.</p>
</td>
</tr>
<tr>
@@ -997,6 +1009,24 @@ The name before the #-mark indicating the class of the Reference Zones.</p>
</dd>
</dl>
<dl class="function">
<dt>
<a id="#(REPORT).GetCount" >
<strong>REPORT:GetCount()</strong>
</a>
</dt>
<dd>
<p>Gets the amount of report items contained in the report.</p>
<h3>Return value</h3>
<p><em>#number:</em>
Returns the number of report items contained in the report. 0 is returned if no report items are contained in the report. The title is not counted for.</p>
</dd>
</dl>
<dl class="function">
@@ -1095,6 +1125,33 @@ The name before the #-mark indicating the class of the Reference Zones.</p>
<p><em><a href="##(REPORT)">#REPORT</a>:</em></p>
</dd>
</dl>
<dl class="function">
<dt>
<a id="#(REPORT).SetTitle" >
<strong>REPORT:SetTitle(Title)</strong>
</a>
</dt>
<dd>
<p>Sets the title of the report.</p>
<h3>Parameter</h3>
<ul>
<li>
<p><code><em>#string Title </em></code>:
The title of the report.</p>
</li>
</ul>
<h3>Return value</h3>
<p><em><a href="##(REPORT)">#REPORT</a>:</em></p>
</dd>
</dl>
<dl class="function">