mirror of
https://github.com/FlightControl-Master/MOOSE_MISSIONS.git
synced 2026-08-25 22:42:45 +00:00
31 lines
1.2 KiB
Lua
31 lines
1.2 KiB
Lua
---
|
|
-- Name: AID-A2A-009 - Border Test
|
|
-- Author: FlightControl
|
|
-- Date Created: 06 Aug 2017
|
|
|
|
|
|
-- Define a SET_GROUP object that builds a collection of groups that define the EWR network.
|
|
-- Here we build the network with all the groups that have a name starting with DF CCCP AWACS and DF CCCP EWR.
|
|
DetectionSetGroup = SET_GROUP:New()
|
|
DetectionSetGroup:FilterPrefixes( { "DF CCCP AWACS", "DF CCCP EWR" } )
|
|
DetectionSetGroup:FilterStart()
|
|
|
|
Detection = DETECTION_AREAS:New( DetectionSetGroup, 30000 )
|
|
|
|
-- Setup the A2A dispatcher, and initialize it.
|
|
A2ADispatcher = AI_A2A_DISPATCHER:New( Detection )
|
|
|
|
-- Setup the border zone.
|
|
-- In this case the border is a POLYGON,
|
|
-- which takes the waypoints of a late activated group with the name CCCP Border as the boundaries of the border area.
|
|
-- Any enemy crossing this border will be engaged.
|
|
CCCPBorderZone = ZONE_POLYGON:New( "CCCP Border", GROUP:FindByName( "CCCP Border" ) )
|
|
A2ADispatcher:SetBorderZone( CCCPBorderZone )
|
|
|
|
A2ADispatcher:SetTacticalDisplay( true )
|
|
|
|
-- Setup the squadrons.
|
|
|
|
A2ADispatcher:SetSquadron( "Sochi", AIRBASE.Caucasus.Sochi_Adler, { "SQ CCCP SU-27" } )
|
|
A2ADispatcher:SetSquadronGci( "Sochi", 1000, 1500 )
|