mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2025-08-15 10:47:21 +00:00
134 lines
5.9 KiB
Lua
134 lines
5.9 KiB
Lua
--- **Functional** -- Provides defensive behaviour to a set of SAM sites within a running Mission.
|
|
--
|
|
-- ===
|
|
--
|
|
-- @module Functional.Sead
|
|
|
|
--- The SEAD class
|
|
-- @type SEAD
|
|
-- @extends Core.Base#BASE
|
|
SEAD = {
|
|
ClassName = "SEAD",
|
|
TargetSkill = {
|
|
Average = { Evade = 50, DelayOff = { 10, 25 }, DelayOn = { 10, 30 } } ,
|
|
Good = { Evade = 30, DelayOff = { 8, 20 }, DelayOn = { 20, 40 } } ,
|
|
High = { Evade = 15, DelayOff = { 5, 17 }, DelayOn = { 30, 50 } } ,
|
|
Excellent = { Evade = 10, DelayOff = { 3, 10 }, DelayOn = { 30, 60 } }
|
|
},
|
|
SEADGroupPrefixes = {}
|
|
}
|
|
|
|
--- Creates the main object which is handling defensive actions for SA sites or moving SA vehicles.
|
|
-- When an anti radiation missile is fired (KH-58, KH-31P, KH-31A, KH-25MPU, HARM missiles), the SA will shut down their radars and will take evasive actions...
|
|
-- Chances are big that the missile will miss.
|
|
-- @param table{string,...}|string SEADGroupPrefixes which is a table of Prefixes of the SA Groups in the DCSRTE on which evasive actions need to be taken.
|
|
-- @return SEAD
|
|
-- @usage
|
|
-- -- CCCP SEAD Defenses
|
|
-- -- Defends the Russian SA installations from SEAD attacks.
|
|
-- SEAD_RU_SAM_Defenses = SEAD:New( { 'RU SA-6 Kub', 'RU SA-6 Defenses', 'RU MI-26 Troops', 'RU Attack Gori' } )
|
|
function SEAD:New( SEADGroupPrefixes )
|
|
local self = BASE:Inherit( self, BASE:New() )
|
|
self:F( SEADGroupPrefixes )
|
|
if type( SEADGroupPrefixes ) == 'table' then
|
|
for SEADGroupPrefixID, SEADGroupPrefix in pairs( SEADGroupPrefixes ) do
|
|
self.SEADGroupPrefixes[SEADGroupPrefix] = SEADGroupPrefix
|
|
end
|
|
else
|
|
self.SEADGroupNames[SEADGroupPrefixes] = SEADGroupPrefixes
|
|
end
|
|
|
|
self:HandleEvent( EVENTS.Shot )
|
|
|
|
return self
|
|
end
|
|
|
|
--- Detects if an SA site was shot with an anti radiation missile. In this case, take evasive actions based on the skill level set within the ME.
|
|
-- @see SEAD
|
|
-- @param #SEAD
|
|
-- @param Core.Event#EVENTDATA EventData
|
|
function SEAD:OnEventShot( EventData )
|
|
self:F( { EventData } )
|
|
|
|
local SEADUnit = EventData.IniDCSUnit
|
|
local SEADUnitName = EventData.IniDCSUnitName
|
|
local SEADWeapon = EventData.Weapon -- Identify the weapon fired
|
|
local SEADWeaponName = EventData.WeaponName -- return weapon type
|
|
-- Start of the 2nd loop
|
|
self:T( "Missile Launched = " .. SEADWeaponName )
|
|
if SEADWeaponName == "KH-58" or SEADWeaponName == "KH-25MPU" or SEADWeaponName == "AGM-88" or SEADWeaponName == "KH-31A" or SEADWeaponName == "KH-31P" then -- Check if the missile is a SEAD
|
|
local _evade = math.random (1,100) -- random number for chance of evading action
|
|
local _targetMim = EventData.Weapon:getTarget() -- Identify target
|
|
local _targetMimname = Unit.getName(_targetMim)
|
|
local _targetMimgroup = Unit.getGroup(Weapon.getTarget(SEADWeapon))
|
|
local _targetMimgroupName = _targetMimgroup:getName()
|
|
local _targetMimcont= _targetMimgroup:getController()
|
|
local _targetskill = _DATABASE.Templates.Units[_targetMimname].Template.skill
|
|
self:T( self.SEADGroupPrefixes )
|
|
self:T( _targetMimgroupName )
|
|
local SEADGroupFound = false
|
|
for SEADGroupPrefixID, SEADGroupPrefix in pairs( self.SEADGroupPrefixes ) do
|
|
if string.find( _targetMimgroupName, SEADGroupPrefix, 1, true ) then
|
|
SEADGroupFound = true
|
|
self:T( 'Group Found' )
|
|
break
|
|
end
|
|
end
|
|
if SEADGroupFound == true then
|
|
if _targetskill == "Random" then -- when skill is random, choose a skill
|
|
local Skills = { "Average", "Good", "High", "Excellent" }
|
|
_targetskill = Skills[ math.random(1,4) ]
|
|
end
|
|
self:T( _targetskill )
|
|
if self.TargetSkill[_targetskill] then
|
|
if (_evade > self.TargetSkill[_targetskill].Evade) then
|
|
self:T( string.format("Evading, target skill " ..string.format(_targetskill)) )
|
|
local _targetMim = Weapon.getTarget(SEADWeapon)
|
|
local _targetMimname = Unit.getName(_targetMim)
|
|
local _targetMimgroup = Unit.getGroup(Weapon.getTarget(SEADWeapon))
|
|
local _targetMimcont= _targetMimgroup:getController()
|
|
routines.groupRandomDistSelf(_targetMimgroup,300,'Diamond',250,20) -- move randomly
|
|
local SuppressedGroups1 = {} -- unit suppressed radar off for a random time
|
|
local function SuppressionEnd1(id)
|
|
id.ctrl:setOption(AI.Option.Ground.id.ALARM_STATE,AI.Option.Ground.val.ALARM_STATE.GREEN)
|
|
SuppressedGroups1[id.groupName] = nil
|
|
end
|
|
local id = {
|
|
groupName = _targetMimgroup,
|
|
ctrl = _targetMimcont
|
|
}
|
|
local delay1 = math.random(self.TargetSkill[_targetskill].DelayOff[1], self.TargetSkill[_targetskill].DelayOff[2])
|
|
if SuppressedGroups1[id.groupName] == nil then
|
|
SuppressedGroups1[id.groupName] = {
|
|
SuppressionEndTime1 = timer.getTime() + delay1,
|
|
SuppressionEndN1 = SuppressionEndCounter1 --Store instance of SuppressionEnd() scheduled function
|
|
}
|
|
Controller.setOption(_targetMimcont, AI.Option.Ground.id.ALARM_STATE,AI.Option.Ground.val.ALARM_STATE.GREEN)
|
|
timer.scheduleFunction(SuppressionEnd1, id, SuppressedGroups1[id.groupName].SuppressionEndTime1) --Schedule the SuppressionEnd() function
|
|
--trigger.action.outText( string.format("Radar Off " ..string.format(delay1)), 20)
|
|
end
|
|
|
|
local SuppressedGroups = {}
|
|
local function SuppressionEnd(id)
|
|
id.ctrl:setOption(AI.Option.Ground.id.ALARM_STATE,AI.Option.Ground.val.ALARM_STATE.RED)
|
|
SuppressedGroups[id.groupName] = nil
|
|
end
|
|
local id = {
|
|
groupName = _targetMimgroup,
|
|
ctrl = _targetMimcont
|
|
}
|
|
local delay = math.random(self.TargetSkill[_targetskill].DelayOn[1], self.TargetSkill[_targetskill].DelayOn[2])
|
|
if SuppressedGroups[id.groupName] == nil then
|
|
SuppressedGroups[id.groupName] = {
|
|
SuppressionEndTime = timer.getTime() + delay,
|
|
SuppressionEndN = SuppressionEndCounter --Store instance of SuppressionEnd() scheduled function
|
|
}
|
|
timer.scheduleFunction(SuppressionEnd, id, SuppressedGroups[id.groupName].SuppressionEndTime) --Schedule the SuppressionEnd() function
|
|
--trigger.action.outText( string.format("Radar On " ..string.format(delay)), 20)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|