Merge branch 'FC/ATC_Ground'
@ -1,6 +1,10 @@
|
||||
--- **Functional** -- The ATC_GROUND classes monitor airbase traffic and regulate speed while taxiing.
|
||||
--
|
||||
-- ===
|
||||
--
|
||||
-- 
|
||||
--
|
||||
-- ===
|
||||
--
|
||||
-- ### Contributions: Dutch Baron - Concept & Testing
|
||||
-- ### Author: FlightControl - Framework Design & Programming
|
||||
@ -256,13 +260,17 @@ end
|
||||
--- @type ATC_GROUND_CAUCASUS
|
||||
-- @extends #ATC_GROUND
|
||||
|
||||
--- # ATC_GROUND_CAUCASUS, extends @{#ATC_GROUND}
|
||||
--- # ATC\_GROUND\_CAUCASUS, extends @{#ATC_GROUND}
|
||||
--
|
||||
-- 
|
||||
--
|
||||
-- The ATC_GROUND_CAUCASUS class monitors the speed of the airplanes at the airbase during taxi.
|
||||
-- The ATC\_GROUND\_CAUCASUS class monitors the speed of the airplanes at the airbase during taxi.
|
||||
-- The pilots may not drive faster than the maximum speed for the airbase, or they will be despawned.
|
||||
--
|
||||
-- ---
|
||||
--
|
||||
-- 
|
||||
--
|
||||
-- ---
|
||||
--
|
||||
-- The maximum speed for the airbases at Caucasus is **50 km/h**.
|
||||
--
|
||||
-- The pilot will receive 3 times a warning during speeding. After the 3rd warning, if the pilot is still driving
|
||||
@ -273,29 +281,29 @@ end
|
||||
-- # Airbases monitored
|
||||
--
|
||||
-- The following airbases are monitored at the Caucasus region.
|
||||
-- Use the AIRBASE.Caucasus enumeration to select the airbases to be monitored.
|
||||
-- Use the @{Airbase#AIRBASE.Caucasus} enumeration to select the airbases to be monitored.
|
||||
--
|
||||
-- * ´AIRBASE.Caucasus.Anapa_Vityazevo´
|
||||
-- * ´AIRBASE.Caucasus.Batumi´
|
||||
-- * ´AIRBASE.Caucasus.Beslan´
|
||||
-- * ´AIRBASE.Caucasus.Gelendzhik´
|
||||
-- * ´AIRBASE.Caucasus.Gudauta´
|
||||
-- * ´AIRBASE.Caucasus.Kobuleti´
|
||||
-- * ´AIRBASE.Caucasus.Krasnodar_Center´
|
||||
-- * ´AIRBASE.Caucasus.Krasnodar_Pashkovsky´
|
||||
-- * ´AIRBASE.Caucasus.Krymsk´
|
||||
-- * ´AIRBASE.Caucasus.Kutaisi´
|
||||
-- * ´AIRBASE.Caucasus.Maykop_Khanskaya´
|
||||
-- * ´AIRBASE.Caucasus.Mineralnye_Vody´
|
||||
-- * ´AIRBASE.Caucasus.Mozdok´
|
||||
-- * ´AIRBASE.Caucasus.Nalchik´
|
||||
-- * ´AIRBASE.Caucasus.Novorossiysk´
|
||||
-- * ´AIRBASE.Caucasus.Senaki_Kolkhi´
|
||||
-- * ´AIRBASE.Caucasus.Sochi_Adler´
|
||||
-- * ´AIRBASE.Caucasus.Soganlug´
|
||||
-- * ´AIRBASE.Caucasus.Sukhumi_Babushara´
|
||||
-- * ´AIRBASE.Caucasus.Tbilisi_Lochini´
|
||||
-- * ´AIRBASE.Caucasus.Vaziani´
|
||||
-- * `AIRBASE.Caucasus.Anapa_Vityazevo`
|
||||
-- * `AIRBASE.Caucasus.Batumi`
|
||||
-- * `AIRBASE.Caucasus.Beslan`
|
||||
-- * `AIRBASE.Caucasus.Gelendzhik`
|
||||
-- * `AIRBASE.Caucasus.Gudauta`
|
||||
-- * `AIRBASE.Caucasus.Kobuleti`
|
||||
-- * `AIRBASE.Caucasus.Krasnodar_Center`
|
||||
-- * `AIRBASE.Caucasus.Krasnodar_Pashkovsky`
|
||||
-- * `AIRBASE.Caucasus.Krymsk`
|
||||
-- * `AIRBASE.Caucasus.Kutaisi`
|
||||
-- * `AIRBASE.Caucasus.Maykop_Khanskaya`
|
||||
-- * `AIRBASE.Caucasus.Mineralnye_Vody`
|
||||
-- * `AIRBASE.Caucasus.Mozdok`
|
||||
-- * `AIRBASE.Caucasus.Nalchik`
|
||||
-- * `AIRBASE.Caucasus.Novorossiysk`
|
||||
-- * `AIRBASE.Caucasus.Senaki_Kolkhi`
|
||||
-- * `AIRBASE.Caucasus.Sochi_Adler`
|
||||
-- * `AIRBASE.Caucasus.Soganlug`
|
||||
-- * `AIRBASE.Caucasus.Sukhumi_Babushara`
|
||||
-- * `AIRBASE.Caucasus.Tbilisi_Lochini`
|
||||
-- * `AIRBASE.Caucasus.Vaziani`
|
||||
--
|
||||
--
|
||||
-- # Installation
|
||||
@ -318,7 +326,7 @@ end
|
||||
--
|
||||
-- # Script it!
|
||||
--
|
||||
-- ## 1. ATC_GROUND_CAUCASUS Constructor
|
||||
-- ## 1. ATC\_GROUND\_CAUCASUS Constructor
|
||||
--
|
||||
-- Creates a new ATC_GROUND_CAUCASUS object that will monitor pilots taxiing behaviour.
|
||||
--
|
||||
@ -841,7 +849,6 @@ function ATC_GROUND_CAUCASUS:New( AirbaseNames )
|
||||
-- self.Airbases.Template.ZoneRunways[1] = ZONE_POLYGON:New( "Template Runway 1", TemplateRunway1 ):SmokeZone(SMOKECOLOR.Red):Flush()
|
||||
|
||||
return self
|
||||
|
||||
end
|
||||
|
||||
|
||||
@ -851,11 +858,18 @@ end
|
||||
-- @extends #ATC_GROUND
|
||||
|
||||
|
||||
--- # ATC_GROUND_NEVADA, extends @{#ATC_GROUND}
|
||||
--- # ATC\_GROUND\_NEVADA, extends @{#ATC_GROUND}
|
||||
--
|
||||
-- The ATC\_GROUND\_NEVADA class monitors the speed of the airplanes at the airbase during taxi.
|
||||
-- The pilots may not drive faster than the maximum speed for the airbase, or they will be despawned.
|
||||
--
|
||||
-- ---
|
||||
--
|
||||
-- 
|
||||
--
|
||||
-- The ATC_GROUND_NEVADA class monitors the speed of the airplanes at the airbase during taxi.
|
||||
-- ---
|
||||
--
|
||||
-- The ATC\_GROUND\_NEVADA class monitors the speed of the airplanes at the airbase during taxi.
|
||||
-- The pilots may not drive faster than the maximum speed for the airbase, or they will be despawned.
|
||||
--
|
||||
-- The pilot will receive 3 times a warning during speeding. After the 3rd warning, if the pilot is still driving
|
||||
@ -866,7 +880,7 @@ end
|
||||
-- # Airbases monitored
|
||||
--
|
||||
-- The following airbases are monitored at the Nevada region.
|
||||
-- Use the AIRBASE.Nevada enumeration to select the airbases to be monitored.
|
||||
-- Use the @{Airbase#AIRBASE.Nevada} enumeration to select the airbases to be monitored.
|
||||
--
|
||||
-- * `AIRBASE.Nevada.Beatty_Airport`
|
||||
-- * `AIRBASE.Nevada.Boulder_City_Airport`
|
||||
@ -1367,17 +1381,25 @@ function ATC_GROUND_NEVADA:New( AirbaseNames )
|
||||
|
||||
--]]
|
||||
|
||||
return self
|
||||
end
|
||||
|
||||
--- @type ATC_GROUND_NORMANDY
|
||||
-- @extends #ATC_GROUND
|
||||
|
||||
|
||||
--- # ATC_GROUND_NORMANDY, extends @{#ATC_GROUND}
|
||||
--- # ATC\_GROUND\_NORMANDY, extends @{#ATC_GROUND}
|
||||
--
|
||||
-- The ATC\_GROUND\_NORMANDY class monitors the speed of the airplanes at the airbase during taxi.
|
||||
-- The pilots may not drive faster than the maximum speed for the airbase, or they will be despawned.
|
||||
--
|
||||
-- ---
|
||||
--
|
||||
-- 
|
||||
--
|
||||
-- The ATC_GROUND_NORMANDY class monitors the speed of the airplanes at the airbase during taxi.
|
||||
-- ---
|
||||
--
|
||||
-- The ATC\_GROUND\_NORMANDY class monitors the speed of the airplanes at the airbase during taxi.
|
||||
-- The pilots may not drive faster than the maximum speed for the airbase, or they will be despawned.
|
||||
--
|
||||
-- The pilot will receive 3 times a warning during speeding. After the 3rd warning, if the pilot is still driving
|
||||
@ -1388,39 +1410,39 @@ end
|
||||
-- # Airbases monitored
|
||||
--
|
||||
-- The following airbases are monitored at the Normandy region.
|
||||
-- Use the AIRBASE.Normandy enumeration to select the airbases to be monitored.
|
||||
-- Use the @{Airbase#AIRBASE.Normandy} enumeration to select the airbases to be monitored.
|
||||
--
|
||||
-- * ´AIRBASE.Normandy.Azeville´
|
||||
-- * ´AIRBASE.Normandy.Bazenville´
|
||||
-- * ´AIRBASE.Normandy.Beny_sur_Mer´
|
||||
-- * ´AIRBASE.Normandy.Beuzeville´
|
||||
-- * ´AIRBASE.Normandy.Biniville´
|
||||
-- * ´AIRBASE.Normandy.Brucheville´
|
||||
-- * ´AIRBASE.Normandy.Cardonville´
|
||||
-- * ´AIRBASE.Normandy.Carpiquet´
|
||||
-- * ´AIRBASE.Normandy.Chailey´
|
||||
-- * ´AIRBASE.Normandy.Chippelle´
|
||||
-- * ´AIRBASE.Normandy.Cretteville´
|
||||
-- * ´AIRBASE.Normandy.Cricqueville_en_Bessin´
|
||||
-- * ´AIRBASE.Normandy.Deux_Jumeaux´
|
||||
-- * ´AIRBASE.Normandy.Evreux´
|
||||
-- * ´AIRBASE.Normandy.Ford´
|
||||
-- * ´AIRBASE.Normandy.Funtington´
|
||||
-- * ´AIRBASE.Normandy.Lantheuil´
|
||||
-- * ´AIRBASE.Normandy.Le_Molay´
|
||||
-- * ´AIRBASE.Normandy.Lessay´
|
||||
-- * ´AIRBASE.Normandy.Lignerolles´
|
||||
-- * ´AIRBASE.Normandy.Longues_sur_Mer´
|
||||
-- * ´AIRBASE.Normandy.Maupertus´
|
||||
-- * ´AIRBASE.Normandy.Meautis´
|
||||
-- * ´AIRBASE.Normandy.Needs_Oar_Point´
|
||||
-- * ´AIRBASE.Normandy.Picauville´
|
||||
-- * ´AIRBASE.Normandy.Rucqueville´
|
||||
-- * ´AIRBASE.Normandy.Saint_Pierre_du_Mont´
|
||||
-- * ´AIRBASE.Normandy.Sainte_Croix_sur_Mer´
|
||||
-- * ´AIRBASE.Normandy.Sainte_Laurent_sur_Mer´
|
||||
-- * ´AIRBASE.Normandy.Sommervieu´
|
||||
-- * ´AIRBASE.Normandy.Tangmere´
|
||||
-- * `AIRBASE.Normandy.Azeville`
|
||||
-- * `AIRBASE.Normandy.Bazenville`
|
||||
-- * `AIRBASE.Normandy.Beny_sur_Mer`
|
||||
-- * `AIRBASE.Normandy.Beuzeville`
|
||||
-- * `AIRBASE.Normandy.Biniville`
|
||||
-- * `AIRBASE.Normandy.Brucheville`
|
||||
-- * `AIRBASE.Normandy.Cardonville`
|
||||
-- * `AIRBASE.Normandy.Carpiquet`
|
||||
-- * `AIRBASE.Normandy.Chailey`
|
||||
-- * `AIRBASE.Normandy.Chippelle`
|
||||
-- * `AIRBASE.Normandy.Cretteville`
|
||||
-- * `AIRBASE.Normandy.Cricqueville_en_Bessin`
|
||||
-- * `AIRBASE.Normandy.Deux_Jumeaux`
|
||||
-- * `AIRBASE.Normandy.Evreux`
|
||||
-- * `AIRBASE.Normandy.Ford`
|
||||
-- * `AIRBASE.Normandy.Funtington`
|
||||
-- * `AIRBASE.Normandy.Lantheuil`
|
||||
-- * `AIRBASE.Normandy.Le_Molay`
|
||||
-- * `AIRBASE.Normandy.Lessay`
|
||||
-- * `AIRBASE.Normandy.Lignerolles`
|
||||
-- * `AIRBASE.Normandy.Longues_sur_Mer`
|
||||
-- * `AIRBASE.Normandy.Maupertus`
|
||||
-- * `AIRBASE.Normandy.Meautis`
|
||||
-- * `AIRBASE.Normandy.Needs_Oar_Point`
|
||||
-- * `AIRBASE.Normandy.Picauville`
|
||||
-- * `AIRBASE.Normandy.Rucqueville`
|
||||
-- * `AIRBASE.Normandy.Saint_Pierre_du_Mont`
|
||||
-- * `AIRBASE.Normandy.Sainte_Croix_sur_Mer`
|
||||
-- * `AIRBASE.Normandy.Sainte_Laurent_sur_Mer`
|
||||
-- * `AIRBASE.Normandy.Sommervieu`
|
||||
-- * `AIRBASE.Normandy.Tangmere`
|
||||
--
|
||||
-- # Installation
|
||||
--
|
||||
@ -2136,6 +2158,7 @@ function ATC_GROUND_NORMANDY:New( AirbaseNames )
|
||||
|
||||
--]]
|
||||
|
||||
return self
|
||||
end
|
||||
|
||||
|
||||
|
||||
@ -936,9 +936,6 @@ Use the method <a href="##(AI_PATROL_ZONE).ManageDamage">AI<em>PATROL</em>ZONE.M
|
||||
|
||||
|
||||
|
||||
|
||||
<p> This table contains the targets detected during patrol.</p>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="function">
|
||||
|
||||
@ -119,6 +119,10 @@
|
||||
|
||||
|
||||
|
||||
<hr/>
|
||||
|
||||
<p><img src="..\Presentations\ATC_GROUND\Dia1.JPG" alt="Banner Image"/></p>
|
||||
|
||||
<hr/>
|
||||
|
||||
<h3>Contributions: Dutch Baron - Concept & Testing</h3>
|
||||
@ -138,31 +142,25 @@
|
||||
<tr>
|
||||
<td class="name" nowrap="nowrap"><a href="#ATC_GROUND_CAUCASUS">ATC_GROUND_CAUCASUS</a></td>
|
||||
<td class="summary">
|
||||
<h1>ATC<em>GROUND</em>CAUCASUS, extends <a href="##(ATC_GROUND)">#ATC_GROUND</a></h1>
|
||||
<h1>ATC_GROUND_CAUCASUS, extends <a href="##(ATC_GROUND)">#ATC_GROUND</a></h1>
|
||||
|
||||
<p><img src="..\Presentations\ATC_GROUND\Dia1.JPG" alt="Banner Image"/></p>
|
||||
|
||||
<p>The ATC<em>GROUND</em>CAUCASUS class monitors the speed of the airplanes at the airbase during taxi.</p>
|
||||
<p>The ATC_GROUND_CAUCASUS class monitors the speed of the airplanes at the airbase during taxi.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name" nowrap="nowrap"><a href="#ATC_GROUND_NEVADA">ATC_GROUND_NEVADA</a></td>
|
||||
<td class="summary">
|
||||
<h1>ATC<em>GROUND</em>NEVADA, extends <a href="##(ATC_GROUND)">#ATC_GROUND</a></h1>
|
||||
<h1>ATC_GROUND_NEVADA, extends <a href="##(ATC_GROUND)">#ATC_GROUND</a></h1>
|
||||
|
||||
<p><img src="..\Presentations\ATC_GROUND\Dia1.JPG" alt="Banner Image"/></p>
|
||||
|
||||
<p>The ATC<em>GROUND</em>NEVADA class monitors the speed of the airplanes at the airbase during taxi.</p>
|
||||
<p>The ATC_GROUND_NEVADA class monitors the speed of the airplanes at the airbase during taxi.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name" nowrap="nowrap"><a href="#ATC_GROUND_NORMANDY">ATC_GROUND_NORMANDY</a></td>
|
||||
<td class="summary">
|
||||
<h1>ATC<em>GROUND</em>NORMANDY, extends <a href="##(ATC_GROUND)">#ATC_GROUND</a></h1>
|
||||
<h1>ATC_GROUND_NORMANDY, extends <a href="##(ATC_GROUND)">#ATC_GROUND</a></h1>
|
||||
|
||||
<p><img src="..\Presentations\ATC_GROUND\Dia1.JPG" alt="Banner Image"/></p>
|
||||
|
||||
<p>The ATC<em>GROUND</em>NORMANDY class monitors the speed of the airplanes at the airbase during taxi.</p>
|
||||
<p>The ATC_GROUND_NORMANDY class monitors the speed of the airplanes at the airbase during taxi.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -291,15 +289,19 @@
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
<h1>ATC<em>GROUND</em>CAUCASUS, extends <a href="##(ATC_GROUND)">#ATC_GROUND</a></h1>
|
||||
<h1>ATC_GROUND_CAUCASUS, extends <a href="##(ATC_GROUND)">#ATC_GROUND</a></h1>
|
||||
|
||||
<p><img src="..\Presentations\ATC_GROUND\Dia1.JPG" alt="Banner Image"/></p>
|
||||
|
||||
<p>The ATC<em>GROUND</em>CAUCASUS class monitors the speed of the airplanes at the airbase during taxi.</p>
|
||||
<p>The ATC_GROUND_CAUCASUS class monitors the speed of the airplanes at the airbase during taxi.</p>
|
||||
|
||||
|
||||
<p>The pilots may not drive faster than the maximum speed for the airbase, or they will be despawned.</p>
|
||||
|
||||
<hr/>
|
||||
|
||||
<p><img src="..\Presentations\ATC_GROUND\Dia1.JPG" alt="Banner Image"/></p>
|
||||
|
||||
<hr/>
|
||||
|
||||
<p>The maximum speed for the airbases at Caucasus is <strong>50 km/h</strong>.</p>
|
||||
|
||||
<p>The pilot will receive 3 times a warning during speeding. After the 3rd warning, if the pilot is still driving
|
||||
@ -310,30 +312,30 @@ faster than the maximum allowed speed, the pilot will be kicked.</p>
|
||||
<h1>Airbases monitored</h1>
|
||||
|
||||
<p>The following airbases are monitored at the Caucasus region.
|
||||
Use the AIRBASE.Caucasus enumeration to select the airbases to be monitored.</p>
|
||||
Use the <a href="Airbase.html##(AIRBASE).Caucasus">Airbase#AIRBASE.Caucasus</a> enumeration to select the airbases to be monitored.</p>
|
||||
|
||||
<ul>
|
||||
<li>´AIRBASE.Caucasus.Anapa_Vityazevo´</li>
|
||||
<li>´AIRBASE.Caucasus.Batumi´</li>
|
||||
<li>´AIRBASE.Caucasus.Beslan´</li>
|
||||
<li>´AIRBASE.Caucasus.Gelendzhik´</li>
|
||||
<li>´AIRBASE.Caucasus.Gudauta´</li>
|
||||
<li>´AIRBASE.Caucasus.Kobuleti´</li>
|
||||
<li>´AIRBASE.Caucasus.Krasnodar_Center´</li>
|
||||
<li>´AIRBASE.Caucasus.Krasnodar_Pashkovsky´</li>
|
||||
<li>´AIRBASE.Caucasus.Krymsk´</li>
|
||||
<li>´AIRBASE.Caucasus.Kutaisi´</li>
|
||||
<li>´AIRBASE.Caucasus.Maykop_Khanskaya´</li>
|
||||
<li>´AIRBASE.Caucasus.Mineralnye_Vody´</li>
|
||||
<li>´AIRBASE.Caucasus.Mozdok´</li>
|
||||
<li>´AIRBASE.Caucasus.Nalchik´</li>
|
||||
<li>´AIRBASE.Caucasus.Novorossiysk´</li>
|
||||
<li>´AIRBASE.Caucasus.Senaki_Kolkhi´</li>
|
||||
<li>´AIRBASE.Caucasus.Sochi_Adler´</li>
|
||||
<li>´AIRBASE.Caucasus.Soganlug´</li>
|
||||
<li>´AIRBASE.Caucasus.Sukhumi_Babushara´</li>
|
||||
<li>´AIRBASE.Caucasus.Tbilisi_Lochini´</li>
|
||||
<li>´AIRBASE.Caucasus.Vaziani´</li>
|
||||
<li><code>AIRBASE.Caucasus.Anapa_Vityazevo</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Batumi</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Beslan</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Gelendzhik</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Gudauta</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Kobuleti</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Krasnodar_Center</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Krasnodar_Pashkovsky</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Krymsk</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Kutaisi</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Maykop_Khanskaya</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Mineralnye_Vody</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Mozdok</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Nalchik</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Novorossiysk</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Senaki_Kolkhi</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Sochi_Adler</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Soganlug</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Sukhumi_Babushara</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Tbilisi_Lochini</code></li>
|
||||
<li><code>AIRBASE.Caucasus.Vaziani</code></li>
|
||||
</ul>
|
||||
|
||||
|
||||
@ -357,7 +359,7 @@ ATC</em>GROUND is communicating with this modified script to kick players!</p>
|
||||
|
||||
<h1>Script it!</h1>
|
||||
|
||||
<h2>1. ATC<em>GROUND</em>CAUCASUS Constructor</h2>
|
||||
<h2>1. ATC_GROUND_CAUCASUS Constructor</h2>
|
||||
|
||||
<p>Creates a new ATC<em>GROUND</em>CAUCASUS object that will monitor pilots taxiing behaviour.</p>
|
||||
|
||||
@ -388,15 +390,22 @@ ATC_Ground = ATC_GROUND_CAUCASUS:New(
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
<h1>ATC<em>GROUND</em>NEVADA, extends <a href="##(ATC_GROUND)">#ATC_GROUND</a></h1>
|
||||
<h1>ATC_GROUND_NEVADA, extends <a href="##(ATC_GROUND)">#ATC_GROUND</a></h1>
|
||||
|
||||
<p><img src="..\Presentations\ATC_GROUND\Dia1.JPG" alt="Banner Image"/></p>
|
||||
|
||||
<p>The ATC<em>GROUND</em>NEVADA class monitors the speed of the airplanes at the airbase during taxi.</p>
|
||||
<p>The ATC_GROUND_NEVADA class monitors the speed of the airplanes at the airbase during taxi.</p>
|
||||
|
||||
|
||||
<p>The pilots may not drive faster than the maximum speed for the airbase, or they will be despawned.</p>
|
||||
|
||||
<hr/>
|
||||
|
||||
<p><img src="..\Presentations\ATC_GROUND\Dia1.JPG" alt="Banner Image"/></p>
|
||||
|
||||
<hr/>
|
||||
|
||||
<p>The ATC_GROUND_NEVADA class monitors the speed of the airplanes at the airbase during taxi.
|
||||
The pilots may not drive faster than the maximum speed for the airbase, or they will be despawned.</p>
|
||||
|
||||
<p>The pilot will receive 3 times a warning during speeding. After the 3rd warning, if the pilot is still driving
|
||||
faster than the maximum allowed speed, the pilot will be kicked.</p>
|
||||
|
||||
@ -405,7 +414,7 @@ faster than the maximum allowed speed, the pilot will be kicked.</p>
|
||||
<h1>Airbases monitored</h1>
|
||||
|
||||
<p>The following airbases are monitored at the Nevada region.
|
||||
Use the AIRBASE.Nevada enumeration to select the airbases to be monitored.</p>
|
||||
Use the <a href="Airbase.html##(AIRBASE).Nevada">Airbase#AIRBASE.Nevada</a> enumeration to select the airbases to be monitored.</p>
|
||||
|
||||
<ul>
|
||||
<li><code>AIRBASE.Nevada.Beatty_Airport</code></li>
|
||||
@ -482,15 +491,22 @@ ATC_Ground = ATC_GROUND_NEVADA:New(
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
<h1>ATC<em>GROUND</em>NORMANDY, extends <a href="##(ATC_GROUND)">#ATC_GROUND</a></h1>
|
||||
<h1>ATC_GROUND_NORMANDY, extends <a href="##(ATC_GROUND)">#ATC_GROUND</a></h1>
|
||||
|
||||
<p><img src="..\Presentations\ATC_GROUND\Dia1.JPG" alt="Banner Image"/></p>
|
||||
|
||||
<p>The ATC<em>GROUND</em>NORMANDY class monitors the speed of the airplanes at the airbase during taxi.</p>
|
||||
<p>The ATC_GROUND_NORMANDY class monitors the speed of the airplanes at the airbase during taxi.</p>
|
||||
|
||||
|
||||
<p>The pilots may not drive faster than the maximum speed for the airbase, or they will be despawned.</p>
|
||||
|
||||
<hr/>
|
||||
|
||||
<p><img src="..\Presentations\ATC_GROUND\Dia1.JPG" alt="Banner Image"/></p>
|
||||
|
||||
<hr/>
|
||||
|
||||
<p>The ATC_GROUND_NORMANDY class monitors the speed of the airplanes at the airbase during taxi.
|
||||
The pilots may not drive faster than the maximum speed for the airbase, or they will be despawned.</p>
|
||||
|
||||
<p>The pilot will receive 3 times a warning during speeding. After the 3rd warning, if the pilot is still driving
|
||||
faster than the maximum allowed speed, the pilot will be kicked.</p>
|
||||
|
||||
@ -499,40 +515,40 @@ faster than the maximum allowed speed, the pilot will be kicked.</p>
|
||||
<h1>Airbases monitored</h1>
|
||||
|
||||
<p>The following airbases are monitored at the Normandy region.
|
||||
Use the AIRBASE.Normandy enumeration to select the airbases to be monitored.</p>
|
||||
Use the <a href="Airbase.html##(AIRBASE).Normandy">Airbase#AIRBASE.Normandy</a> enumeration to select the airbases to be monitored.</p>
|
||||
|
||||
<ul>
|
||||
<li>´AIRBASE.Normandy.Azeville´</li>
|
||||
<li>´AIRBASE.Normandy.Bazenville´</li>
|
||||
<li>´AIRBASE.Normandy.Beny<em>sur</em>Mer´</li>
|
||||
<li>´AIRBASE.Normandy.Beuzeville´</li>
|
||||
<li>´AIRBASE.Normandy.Biniville´</li>
|
||||
<li>´AIRBASE.Normandy.Brucheville´</li>
|
||||
<li>´AIRBASE.Normandy.Cardonville´</li>
|
||||
<li>´AIRBASE.Normandy.Carpiquet´</li>
|
||||
<li>´AIRBASE.Normandy.Chailey´</li>
|
||||
<li>´AIRBASE.Normandy.Chippelle´</li>
|
||||
<li>´AIRBASE.Normandy.Cretteville´</li>
|
||||
<li>´AIRBASE.Normandy.Cricqueville<em>en</em>Bessin´</li>
|
||||
<li>´AIRBASE.Normandy.Deux_Jumeaux´</li>
|
||||
<li>´AIRBASE.Normandy.Evreux´</li>
|
||||
<li>´AIRBASE.Normandy.Ford´</li>
|
||||
<li>´AIRBASE.Normandy.Funtington´</li>
|
||||
<li>´AIRBASE.Normandy.Lantheuil´</li>
|
||||
<li>´AIRBASE.Normandy.Le_Molay´</li>
|
||||
<li>´AIRBASE.Normandy.Lessay´</li>
|
||||
<li>´AIRBASE.Normandy.Lignerolles´</li>
|
||||
<li>´AIRBASE.Normandy.Longues<em>sur</em>Mer´</li>
|
||||
<li>´AIRBASE.Normandy.Maupertus´</li>
|
||||
<li>´AIRBASE.Normandy.Meautis´</li>
|
||||
<li>´AIRBASE.Normandy.Needs<em>Oar</em>Point´</li>
|
||||
<li>´AIRBASE.Normandy.Picauville´</li>
|
||||
<li>´AIRBASE.Normandy.Rucqueville´</li>
|
||||
<li>´AIRBASE.Normandy.Saint<em>Pierre</em>du_Mont´</li>
|
||||
<li>´AIRBASE.Normandy.Sainte<em>Croix</em>sur_Mer´</li>
|
||||
<li>´AIRBASE.Normandy.Sainte<em>Laurent</em>sur_Mer´</li>
|
||||
<li>´AIRBASE.Normandy.Sommervieu´</li>
|
||||
<li>´AIRBASE.Normandy.Tangmere´</li>
|
||||
<li><code>AIRBASE.Normandy.Azeville</code></li>
|
||||
<li><code>AIRBASE.Normandy.Bazenville</code></li>
|
||||
<li><code>AIRBASE.Normandy.Beny_sur_Mer</code></li>
|
||||
<li><code>AIRBASE.Normandy.Beuzeville</code></li>
|
||||
<li><code>AIRBASE.Normandy.Biniville</code></li>
|
||||
<li><code>AIRBASE.Normandy.Brucheville</code></li>
|
||||
<li><code>AIRBASE.Normandy.Cardonville</code></li>
|
||||
<li><code>AIRBASE.Normandy.Carpiquet</code></li>
|
||||
<li><code>AIRBASE.Normandy.Chailey</code></li>
|
||||
<li><code>AIRBASE.Normandy.Chippelle</code></li>
|
||||
<li><code>AIRBASE.Normandy.Cretteville</code></li>
|
||||
<li><code>AIRBASE.Normandy.Cricqueville_en_Bessin</code></li>
|
||||
<li><code>AIRBASE.Normandy.Deux_Jumeaux</code></li>
|
||||
<li><code>AIRBASE.Normandy.Evreux</code></li>
|
||||
<li><code>AIRBASE.Normandy.Ford</code></li>
|
||||
<li><code>AIRBASE.Normandy.Funtington</code></li>
|
||||
<li><code>AIRBASE.Normandy.Lantheuil</code></li>
|
||||
<li><code>AIRBASE.Normandy.Le_Molay</code></li>
|
||||
<li><code>AIRBASE.Normandy.Lessay</code></li>
|
||||
<li><code>AIRBASE.Normandy.Lignerolles</code></li>
|
||||
<li><code>AIRBASE.Normandy.Longues_sur_Mer</code></li>
|
||||
<li><code>AIRBASE.Normandy.Maupertus</code></li>
|
||||
<li><code>AIRBASE.Normandy.Meautis</code></li>
|
||||
<li><code>AIRBASE.Normandy.Needs_Oar_Point</code></li>
|
||||
<li><code>AIRBASE.Normandy.Picauville</code></li>
|
||||
<li><code>AIRBASE.Normandy.Rucqueville</code></li>
|
||||
<li><code>AIRBASE.Normandy.Saint_Pierre_du_Mont</code></li>
|
||||
<li><code>AIRBASE.Normandy.Sainte_Croix_sur_Mer</code></li>
|
||||
<li><code>AIRBASE.Normandy.Sainte_Laurent_sur_Mer</code></li>
|
||||
<li><code>AIRBASE.Normandy.Sommervieu</code></li>
|
||||
<li><code>AIRBASE.Normandy.Tangmere</code></li>
|
||||
</ul>
|
||||
|
||||
<h1>Installation</h1>
|
||||
|
||||
@ -3805,7 +3805,6 @@ The range till cargo will board.</p>
|
||||
<dl class="function">
|
||||
<dt>
|
||||
|
||||
<em>#number</em>
|
||||
<a id="#(CARGO_UNIT).RunCount" >
|
||||
<strong>CARGO_UNIT.RunCount</strong>
|
||||
</a>
|
||||
|
||||
@ -1106,7 +1106,7 @@ function below will use the range 1-7 just in case</p>
|
||||
<dl class="function">
|
||||
<dt>
|
||||
|
||||
<em></em>
|
||||
<em>#number</em>
|
||||
<a id="#(DESIGNATE).LaseDuration" >
|
||||
<strong>DESIGNATE.LaseDuration</strong>
|
||||
</a>
|
||||
|
||||
@ -4059,7 +4059,7 @@ Return false to cancel Transition.</p>
|
||||
<dl class="function">
|
||||
<dt>
|
||||
|
||||
<em>#number</em>
|
||||
<em></em>
|
||||
<a id="#(DETECTION_BASE).RefreshTimeInterval" >
|
||||
<strong>DETECTION_BASE.RefreshTimeInterval</strong>
|
||||
</a>
|
||||
|
||||
@ -1608,7 +1608,7 @@ A string defining the start state.</p>
|
||||
<dl class="function">
|
||||
<dt>
|
||||
|
||||
<em>#string</em>
|
||||
<em></em>
|
||||
<a id="#(FSM)._StartState" >
|
||||
<strong>FSM._StartState</strong>
|
||||
</a>
|
||||
@ -1907,6 +1907,7 @@ A string defining the start state.</p>
|
||||
<dl class="function">
|
||||
<dt>
|
||||
|
||||
<em></em>
|
||||
<a id="#(FSM).current" >
|
||||
<strong>FSM.current</strong>
|
||||
</a>
|
||||
|
||||
@ -1250,7 +1250,7 @@ true if metric.</p>
|
||||
<dl class="function">
|
||||
<dt>
|
||||
|
||||
<em></em>
|
||||
<em>#boolean</em>
|
||||
<a id="#(SETTINGS).Metric" >
|
||||
<strong>SETTINGS.Metric</strong>
|
||||
</a>
|
||||
|
||||
@ -848,12 +848,6 @@ and any spaces before and after the resulting name are removed.</p>
|
||||
<td class="name" nowrap="nowrap"><a href="##(SPAWN)._TranslateRotate">SPAWN:_TranslateRotate(SpawnIndex, SpawnRootX, SpawnRootY, SpawnX, SpawnY, SpawnAngle)</a></td>
|
||||
<td class="summary">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name" nowrap="nowrap"><a href="##(SPAWN).uncontrolled">SPAWN.uncontrolled</a></td>
|
||||
<td class="summary">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -3003,9 +2997,6 @@ when nothing was spawned.</p>
|
||||
|
||||
|
||||
|
||||
|
||||
<p> By default, no InitLimit</p>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="function">
|
||||
@ -3041,7 +3032,7 @@ when nothing was spawned.</p>
|
||||
<dl class="function">
|
||||
<dt>
|
||||
|
||||
<em>#number</em>
|
||||
<em></em>
|
||||
<a id="#(SPAWN).SpawnMaxGroups" >
|
||||
<strong>SPAWN.SpawnMaxGroups</strong>
|
||||
</a>
|
||||
@ -3058,7 +3049,7 @@ when nothing was spawned.</p>
|
||||
<dl class="function">
|
||||
<dt>
|
||||
|
||||
<em>#number</em>
|
||||
<em></em>
|
||||
<a id="#(SPAWN).SpawnMaxUnitsAlive" >
|
||||
<strong>SPAWN.SpawnMaxUnitsAlive</strong>
|
||||
</a>
|
||||
@ -3990,20 +3981,6 @@ True = Continue Scheduler</p>
|
||||
|
||||
</li>
|
||||
</ul>
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="function">
|
||||
<dt>
|
||||
|
||||
<em></em>
|
||||
<a id="#(SPAWN).uncontrolled" >
|
||||
<strong>SPAWN.uncontrolled</strong>
|
||||
</a>
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
||||
@ -490,7 +490,6 @@ ptional) The name of the new static.</p>
|
||||
<dl class="function">
|
||||
<dt>
|
||||
|
||||
<em>#number</em>
|
||||
<a id="#(SPAWNSTATIC).SpawnIndex" >
|
||||
<strong>SPAWNSTATIC.SpawnIndex</strong>
|
||||
</a>
|
||||
|
||||
@ -562,7 +562,7 @@ based on the tasking capabilities defined in <a href="Task.html##(TASK)">Task#TA
|
||||
<dl class="function">
|
||||
<dt>
|
||||
|
||||
<em></em>
|
||||
<em><a href="Core.Cargo.html##(CARGO)">Core.Cargo#CARGO</a></em>
|
||||
<a id="#(FSM_PROCESS).Cargo" >
|
||||
<strong>FSM_PROCESS.Cargo</strong>
|
||||
</a>
|
||||
@ -576,6 +576,7 @@ based on the tasking capabilities defined in <a href="Task.html##(TASK)">Task#TA
|
||||
<dl class="function">
|
||||
<dt>
|
||||
|
||||
<em></em>
|
||||
<a id="#(FSM_PROCESS).DeployZone" >
|
||||
<strong>FSM_PROCESS.DeployZone</strong>
|
||||
</a>
|
||||
|
||||
@ -489,7 +489,6 @@ The name of the player.</p>
|
||||
<dl class="function">
|
||||
<dt>
|
||||
|
||||
<em></em>
|
||||
<a id="#(ZONE_GOAL).SmokeTime" >
|
||||
<strong>ZONE_GOAL.SmokeTime</strong>
|
||||
</a>
|
||||
@ -498,9 +497,6 @@ The name of the player.</p>
|
||||
|
||||
|
||||
|
||||
|
||||
<p>self.SmokeColor = nil</p>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="function">
|
||||
|
||||
|
Before Width: | Height: | Size: 180 KiB After Width: | Height: | Size: 87 KiB |
|
Before Width: | Height: | Size: 196 KiB After Width: | Height: | Size: 90 KiB |
|
Before Width: | Height: | Size: 211 KiB After Width: | Height: | Size: 97 KiB |
|
Before Width: | Height: | Size: 182 KiB After Width: | Height: | Size: 84 KiB |
|
Before Width: | Height: | Size: 216 KiB After Width: | Height: | Size: 106 KiB |
|
Before Width: | Height: | Size: 246 KiB After Width: | Height: | Size: 113 KiB |