AIRBOSS v0.4.5

This commit is contained in:
Frank 2018-12-04 23:37:56 +01:00
parent 047df5917a
commit a83008aad3
3 changed files with 189 additions and 126 deletions

View File

@ -460,7 +460,7 @@ do -- COORDINATE
-- @param #COORDINATE self -- @param #COORDINATE self
-- @param DCS#Distance Distance The Distance to be added in meters. -- @param DCS#Distance Distance The Distance to be added in meters.
-- @param DCS#Angle Angle The Angle in degrees. Defaults to 0 if not specified (nil). -- @param DCS#Angle Angle The Angle in degrees. Defaults to 0 if not specified (nil).
-- @return #COORDINATE The new calculated COORDINATE. -- @return Core.Point#COORDINATE The new calculated COORDINATE.
function COORDINATE:Translate( Distance, Angle ) function COORDINATE:Translate( Distance, Angle )
local SX = self.x local SX = self.x
local SY = self.z local SY = self.z

View File

@ -125,8 +125,8 @@
-- @field #AIRBOSS -- @field #AIRBOSS
AIRBOSS = { AIRBOSS = {
ClassName = "AIRBOSS", ClassName = "AIRBOSS",
Debug = false,
lid = nil, lid = nil,
Debug = true,
carrier = nil, carrier = nil,
carriertype = nil, carriertype = nil,
carrierparam = {}, carrierparam = {},
@ -407,76 +407,76 @@ AIRBOSS.LSOCall={
subtitle="Paddles, radio check", subtitle="Paddles, radio check",
duration=1.0, duration=1.0,
}, },
N0={
file="LSO-N0",
suffix="ogg",
louder=false,
subtitle="0",
duration=0.5,
},
N1={ N1={
file="LSO-N1", file="LSO-N1",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="1",
duration=0.3, duration=0.3,
}, },
N2={ N2={
file="LSO-N2", file="LSO-N2",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="2",
duration=0.3, duration=0.3,
}, },
N3={ N3={
file="LSO-N3", file="LSO-N3",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="3",
duration=0.4, duration=0.4,
}, },
N4={ N4={
file="LSO-N4", file="LSO-N4",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="4",
duration=0.4, duration=0.4,
}, },
N5={ N5={
file="LSO-N5", file="LSO-N5",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="5",
duration=0.4, duration=0.4,
}, },
N6={ N6={
file="LSO-N6", file="LSO-N6",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="6",
duration=0.6, duration=0.6,
}, },
N7={ N7={
file="LSO-N7", file="LSO-N7",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="7",
duration=0.6, duration=0.6,
}, },
N8={ N8={
file="LSO-N8", file="LSO-N8",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="8",
duration=0.4, duration=0.4,
}, },
N9={ N9={
file="LSO-N9", file="LSO-N9",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="9",
duration=0.5, duration=0.5,
}, },
N0={
file="LSO-N0",
suffix="ogg",
louder=false,
subtitle="",
duration=0.4,
},
} }
--- Marshal radio calls. --- Marshal radio calls.
@ -492,76 +492,76 @@ AIRBOSS.LSOCall={
-- @field #AIRBOSS.RadioSound N9 "Nine" call. -- @field #AIRBOSS.RadioSound N9 "Nine" call.
-- @field #AIRBOSS.RadioSound N0 "Zero" call. -- @field #AIRBOSS.RadioSound N0 "Zero" call.
AIRBOSS.MarshalCall={ AIRBOSS.MarshalCall={
N0={
file="LSO-N0",
suffix="ogg",
louder=false,
subtitle="0",
duration=0.5,
},
N1={ N1={
file="LSO-N1", file="LSO-N1",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="1",
duration=0.3, duration=0.3,
}, },
N2={ N2={
file="LSO-N2", file="LSO-N2",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="2",
duration=0.3, duration=0.3,
}, },
N3={ N3={
file="LSO-N3", file="LSO-N3",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="3",
duration=0.4, duration=0.4,
}, },
N4={ N4={
file="LSO-N4", file="LSO-N4",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="4",
duration=0.4, duration=0.4,
}, },
N5={ N5={
file="LSO-N5", file="LSO-N5",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="5",
duration=0.4, duration=0.4,
}, },
N6={ N6={
file="LSO-N6", file="LSO-N6",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="6",
duration=0.6, duration=0.6,
}, },
N7={ N7={
file="LSO-N7", file="LSO-N7",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="7",
duration=0.6, duration=0.6,
}, },
N8={ N8={
file="LSO-N8", file="LSO-N8",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="8",
duration=0.4, duration=0.4,
}, },
N9={ N9={
file="LSO-N9", file="LSO-N9",
suffix="ogg", suffix="ogg",
louder=false, louder=false,
subtitle="", subtitle="9",
duration=0.5, duration=0.5,
}, },
N0={
file="LSO-N0",
suffix="ogg",
louder=false,
subtitle="",
duration=0.4,
},
} }
--- Difficulty level. --- Difficulty level.
@ -684,7 +684,7 @@ AIRBOSS.MenuF10={}
--- Airboss class version. --- Airboss class version.
-- @field #string version -- @field #string version
AIRBOSS.version="0.4.4w" AIRBOSS.version="0.4.5"
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- TODO list -- TODO list
@ -769,7 +769,7 @@ function AIRBOSS:New(carriername, alias)
-- Set up Airboss radio. -- Set up Airboss radio.
self.Carrierradio=RADIO:New(self.carrier) self.Carrierradio=RADIO:New(self.carrier)
self.Carrierradio:SetAlias("AIRBOSS") self.Carrierradio:SetAlias("MARSHAL")
self:SetCarrierradio() self:SetCarrierradio()
-- Set up LSO radio. -- Set up LSO radio.
@ -1916,6 +1916,7 @@ function AIRBOSS:_MarshalPlayer(playerData)
-- Flight is not registered yet. -- Flight is not registered yet.
local text="you are not yet registered inside the CCA. Marshal request denied!" local text="you are not yet registered inside the CCA. Marshal request denied!"
self:MessageToPlayer(playerData, text, "MARSHAL") self:MessageToPlayer(playerData, text, "MARSHAL")
end end
end end
@ -2079,7 +2080,7 @@ function AIRBOSS:_AddMarshalGroup(flight, stack)
text=text..string.format("Altimeter %.2f. Report see me.", P) text=text..string.format("Altimeter %.2f. Report see me.", P)
-- Message to all players. -- Message to all players.
self:MessageToAll(text, "MARSHAL") self:MessageToAll(text, "MARSHAL", flight.onboard)
-- Add to marshal queue. -- Add to marshal queue.
table.insert(self.Qmarshal, flight) table.insert(self.Qmarshal, flight)
@ -2812,7 +2813,8 @@ function AIRBOSS:OnEventBirth(EventData)
-- Debug. -- Debug.
if self.Debug then if self.Debug then
self:_Number2Sound(self.LSOradio, "0123456789", 10) -- self:_Number2Sound(self.LSOradio, "0123456789", 10)
self:_Number2Sound(self.Carrierradio, "0123456789", 10)
--self:_MarkCase23Zones(_unit:GetName()) --self:_MarkCase23Zones(_unit:GetName())
end end
@ -4283,24 +4285,25 @@ function AIRBOSS:_GetZoneCorridor(case)
self:I(string.format("FF l = %.1f NM", l)) self:I(string.format("FF l = %.1f NM", l))
self:I(string.format("FF d = %.1f NM", d)) self:I(string.format("FF d = %.1f NM", d))
self:I(string.format("FF y = %.1f NM", y)) self:I(string.format("FF y = %.1f NM", y))
--self:I(string.format("FF C = %.1f NM", C)) self:I(string.format("FF C = %.1f NM", C))
--self:I(string.format("FF b = %.1f NM", b)) self:I(string.format("FF b = %.1f NM", b))
--self:I(string.format("FF a = %.1f NM", a)) self:I(string.format("FF a = %.1f NM", a))
self:I(string.format("FF x = %.1f NM", y)) self:I(string.format("FF x = %.1f NM", x))
self:I(string.format("FF k = %.1f NM", k)) self:I(string.format("FF k = %.1f NM", k))
-- TODO: Still not right! -- TODO: Still not right!
-- TODO: Does this still work with alpha=0?e -- TODO: Does this still work with alpha=0?e
local c={} local c={}
c[1]=self:GetCoordinate() -- Carrier coordinate c[1]=self:GetCoordinate() -- Carrier coordinate
c[2]=c[1]:Translate( UTILS.NMToMeters(w/2), radial-90) -- 1 Right of carrier c[2]=c[1]:Translate( UTILS.NMToMeters(w/2), radial-90) -- 1 Right of carrier CORRECT!
c[3]=c[2]:Translate( UTILS.NMToMeters(d+w/2), radial) -- 13 "south" @ 1 right c[3]=c[2]:Translate( UTILS.NMToMeters(d+w/2), radial) -- 13 "south" @ 1 right
c[4]=c[3]:Translate( UTILS.NMToMeters(y+x), radial+90) -- y+x left @ 13 south c[4]=c[3]:Translate( UTILS.NMToMeters(y+a/2), radial+90) -- y+x left @ 13 south
c[5]=c[4]:Translate( UTILS.NMToMeters(l), offset) -- 10 NM to back wall (angled) c[5]=c[4]:Translate( UTILS.NMToMeters(l), offset) -- 10 NM to back wall (angled)
c[6]=c[5]:Translate( UTILS.NMToMeters(w), offset+90) -- Back wall (angled) c[6]=c[5]:Translate( UTILS.NMToMeters(w), offset+90) -- Back wall (angled)
c[7]=c[6]:Translate(-UTILS.NMToMeters(l+k), offset) -- 10+a Back along X & Z c[7]=c[6]:Translate(-UTILS.NMToMeters(l+a), offset) -- 10+a Back along X & Z
c[8]=c[7]:Translate( UTILS.NMToMeters(y-x), radial-90) -- y-x back along X --c[8]=c[7]:Translate( UTILS.NMToMeters(y-a/2), radial-90) -- y-x back along X
c[9]=c[1]:Translate( UTILS.NMToMeters(w/2), radial+90) -- 1 left of carrier c[9]=c[1]:Translate( UTILS.NMToMeters(w/2), radial+90) -- 1 left of carrier CORRECT!
c[8]=c[9]:Translate( UTILS.NMToMeters(d-w/2), radial) -- 1 left and 11 behind of carrier CORRECT!
-- Create an array of a square! -- Create an array of a square!
local p={} local p={}
@ -5776,7 +5779,7 @@ function AIRBOSS:_CheckRadioQueue(radioqueue, name)
local function _sort(a, b) local function _sort(a, b)
return (a.Tplay < b.Tplay) or (a.Tplay==b.Tplay and a.prio < b.prio) return (a.Tplay < b.Tplay) or (a.Tplay==b.Tplay and a.prio < b.prio)
end end
table.sort(radioqueue, _sort) --table.sort(radioqueue, _sort)
local playing=false local playing=false
local next=nil --#AIRBOSS.Radioitem local next=nil --#AIRBOSS.Radioitem
@ -5861,7 +5864,7 @@ function AIRBOSS:RadioTransmission(radio, call, loud, delay)
table.insert(self.RQLSO, transmission) table.insert(self.RQLSO, transmission)
elseif radio:GetAlias()=="AIRBOSS" then elseif radio:GetAlias()=="MARSHAL" then
table.insert(self.RQMarshal, transmission) table.insert(self.RQMarshal, transmission)
@ -5975,18 +5978,31 @@ end
-- @param #number duration Display message duration. Default 10 seconds. -- @param #number duration Display message duration. Default 10 seconds.
-- @param #boolean clear If true, clear screen from previous messages. -- @param #boolean clear If true, clear screen from previous messages.
-- @param #number delay Delay in seconds, before the message is displayed. -- @param #number delay Delay in seconds, before the message is displayed.
function AIRBOSS:MessageToAll(message, sender, receiver, duration, clear, delay) -- @param #boolean soundoff If true, do not play boad number message.
function AIRBOSS:MessageToAll(message, sender, receiver, duration, clear, delay, soundoff)
local playit=true -- In case two have the same flight number.
for _,_player in pairs(self.players) do for _,_player in pairs(self.players) do
local player=_player --#AIRBOSS.PlayerData local playerData=_player --#AIRBOSS.PlayerData
-- Message to all players in CCA. -- Message to all players in CCA.
-- TODO: could make something to all in pattern or all in marshal queue depending on sender. -- TODO: could make something to all in pattern or all in marshal queue depending on sender.
if player.unit:IsInZone(self.zoneCCA) then if playerData.unit:IsInZone(self.zoneCCA) then
-- Play receiver board number. Best we can do if no voice over for the whole message is there.
if receiver==playerData.onboard and playit and not soundoff then
if sender then
if sender=="LSO" or sender =="AIRBOSS" then
self:_Number2Sound(self.LSOradio, receiver, delay)
elseif sender=="MARSHAL" then
self:_Number2Sound(self.Carrierradio, receiver, delay)
end
end
playit=false -- Play only once, in case two have the same flight number.
end
-- No sound here. -- Message to player.
-- TODO: Need to improve? depending on sender. self:MessageToPlayer(playerData, message, sender, receiver, duration, clear, delay, true)
self:MessageToPlayer(player, message, sender, receiver, duration, clear, delay, true)
end end
@ -6012,14 +6028,18 @@ function AIRBOSS:_Number2Sound(radio, number, delay)
return chars return chars
end end
-- Get radio alias.
local alias=radio:GetAlias() local alias=radio:GetAlias()
local sender="" local sender=""
if alias=="LSO" then if alias=="LSO" then
sender="LSOCall" sender="LSOCall"
elseif alias=="MARSHAL" then elseif alias=="MARSHAL" then
sender="MarshalCall" sender="MarshalCall"
elseif alias=="AIRBOSS" then --elseif alias=="AIRBOSS" then
sender="AirbossCall" -- sender="AirbossCall"
else
self:E(self.lid.."ERROR: Unknown radio alias!")
end end
-- Split string into characters. -- Split string into characters.
@ -6051,7 +6071,7 @@ function AIRBOSS:_Number2Sound(radio, number, delay)
elseif n=="9" then elseif n=="9" then
self:RadioTransmission(radio, AIRBOSS[sender].N9, false, delay) self:RadioTransmission(radio, AIRBOSS[sender].N9, false, delay)
else else
self:E(self.lid..string.format("ERROR: Unknown number %s", tostring(n))) self:E(self.lid..string.format("ERROR: Unknown number %s!", tostring(n)))
end end
end end
@ -6075,69 +6095,67 @@ function AIRBOSS:_AddF10Commands(_unitName)
-- Get group and ID. -- Get group and ID.
local group=_unit:GetGroup() local group=_unit:GetGroup()
local _gid=group:GetID() local gid=group:GetID()
if group and _gid then if group and gid then
if not self.menuadded[_gid] then if not self.menuadded[gid] then
-- Enable switch so we don't do this twice. -- Enable switch so we don't do this twice.
self.menuadded[_gid]=true self.menuadded[gid]=true
-- Main F10 menu: F10/Airboss/<Carrier Name>/ -- Main F10 menu: F10/Airboss/<Carrier Name>/
if AIRBOSS.MenuF10[_gid]==nil then if AIRBOSS.MenuF10[gid]==nil then
AIRBOSS.MenuF10[_gid]=missionCommands.addSubMenuForGroup(_gid, "Airboss") AIRBOSS.MenuF10[gid]=missionCommands.addSubMenuForGroup(gid, "Airboss")
end end
-- Player Data. -- Player Data.
local playerData=self.players[playername] local playerData=self.players[playername]
-- F10/Airboss/<Carrier Name> -- F10/Airboss/<Carrier>
local _rootPath=missionCommands.addSubMenuForGroup(_gid, self.alias, AIRBOSS.MenuF10[_gid]) local _rootPath=missionCommands.addSubMenuForGroup(gid, self.alias, AIRBOSS.MenuF10[gid])
-- F10/Airboss/<Carrier Name>/Results -- F10/Airboss/<Carrier>/Help
local _statsPath=missionCommands.addSubMenuForGroup(_gid, "Results", _rootPath) local _helpPath=missionCommands.addSubMenuForGroup(gid, "Help", _rootPath)
-- F10/Airboss/<Carrier>/Help/Skill Level
local _skillPath=missionCommands.addSubMenuForGroup(gid, "Skill Level", _helpPath)
-- F10/Airboss/<Carrier>/Help/Skill Level/
missionCommands.addCommandForGroup(gid, "Flight Student", _skillPath, self._SetDifficulty, self, playername, AIRBOSS.Difficulty.EASY)
missionCommands.addCommandForGroup(gid, "Naval Aviator", _skillPath, self._SetDifficulty, self, playername, AIRBOSS.Difficulty.NORMAL)
missionCommands.addCommandForGroup(gid, "TOPGUN Graduate", _skillPath, self._SetDifficulty, self, playername, AIRBOSS.Difficulty.HARD)
-- F10/Airboss/<Carrier>/Help/Mark Zones
local _markPath=missionCommands.addSubMenuForGroup(gid, "Mark Zones", _helpPath)
-- F10/Airboss/<Carrier>/Help/Mark Zones/
missionCommands.addCommandForGroup(gid, "Smoke My Marshal Zone", _markPath, self._MarkMarshalZone, self, _unitName, false)
missionCommands.addCommandForGroup(gid, "Flare My Marshal Zone", _markPath, self._MarkMarshalZone, self, _unitName, true)
missionCommands.addCommandForGroup(gid, "Smoke Pattern Zones", _markPath, self._MarkCase23Zones, self, _unitName, false)
missionCommands.addCommandForGroup(gid, "Flare Pattern Zones", _markPath, self._MarkCase23Zones, self, _unitName, true)
-- F10/Airboss/<Carrier>/Help/
missionCommands.addCommandForGroup(gid, "Radio Check LSO", _helpPath, self._LSORadioCheck, self, _unitName)
missionCommands.addCommandForGroup(gid, "Radio Check Marshal", _helpPath, self._MarshalRadioCheck, self, _unitName)
missionCommands.addCommandForGroup(gid, "Attitude Monitor ON/OFF", _helpPath, self._AttitudeMonitor, self, playername)
missionCommands.addCommandForGroup(gid, "[Reset My Status]", _helpPath, self._ResetPlayerStatus, self, _unitName)
-- F10/Airboss/<Carrier Name>/My Settings/Skil Level -- F10/Airboss/<Carrier>/Kneeboard
local _skillPath=missionCommands.addSubMenuForGroup(_gid, "Skill Level", _rootPath) local _kneeboardPath=missionCommands.addSubMenuForGroup(gid, "Kneeboard", _rootPath)
-- F10/Airboss/<Carrier>/Kneeboard/Results
local _resultsPath=missionCommands.addSubMenuForGroup(gid, "Results", _kneeboardPath)
-- F10/Airboss/<Carrier>/Kneeboard/Results/
missionCommands.addCommandForGroup(gid, "Greenie Board", _resultsPath, self._DisplayScoreBoard, self, _unitName)
missionCommands.addCommandForGroup(gid, "My LSO Grades", _resultsPath, self._DisplayPlayerGrades, self, _unitName)
missionCommands.addCommandForGroup(gid, "Last Debrief", _resultsPath, self._DisplayDebriefing, self, _unitName)
-- F10/Airboss/<Carrier/Kneeboard/
missionCommands.addCommandForGroup(gid, "Carrier Info", _kneeboardPath, self._DisplayCarrierInfo, self, _unitName)
missionCommands.addCommandForGroup(gid, "Weather Report", _kneeboardPath, self._DisplayCarrierWeather, self, _unitName)
missionCommands.addCommandForGroup(gid, "My Status", _kneeboardPath, self._DisplayPlayerStatus, self, _unitName)
-- F10/Airboss/<Carrier Name>/My Settings/Skil Level
local _helpPath=missionCommands.addSubMenuForGroup(_gid, "Help", _rootPath)
-- F10/Airboss/<Carrier Name>/My Settings/Kneeboard -- F10/Airboss/<Carrier>/
local _kneeboardPath=missionCommands.addSubMenuForGroup(_gid, "Kneeboard", _rootPath) missionCommands.addCommandForGroup(gid, "Request Marshal", _rootPath, self._RequestMarshal, self, _unitName)
missionCommands.addCommandForGroup(gid, "Request Commencing", _rootPath, self._RequestCommence, self, _unitName)
-- F10/Airboss/<Carrier Name>/Results/ missionCommands.addCommandForGroup(gid, "Request Refueling", _rootPath, self._RequestRefueling, self, _unitName)
missionCommands.addCommandForGroup(_gid, "Greenie Board", _statsPath, self._DisplayScoreBoard, self, _unitName) missionCommands.addCommandForGroup(gid, "Set Section", _rootPath, self._SetSection, self, _unitName)
missionCommands.addCommandForGroup(_gid, "My LSO Grades", _statsPath, self._DisplayPlayerGrades, self, _unitName)
missionCommands.addCommandForGroup(_gid, "Last Debrief", _statsPath, self._DisplayDebriefing, self, _unitName)
--missionCommands.addCommandForGroup(_gid, "(Clear ALL Results)", _statsPath, self._ResetRangeStats, self, _unitName)
-- F10/Airboss/<Carrier Name>/Skill Level
missionCommands.addCommandForGroup(_gid, "Flight Student", _skillPath, self._SetDifficulty, self, playername, AIRBOSS.Difficulty.EASY)
missionCommands.addCommandForGroup(_gid, "Naval Aviator", _skillPath, self._SetDifficulty, self, playername, AIRBOSS.Difficulty.NORMAL)
missionCommands.addCommandForGroup(_gid, "TOPGUN Graduate", _skillPath, self._SetDifficulty, self, playername, AIRBOSS.Difficulty.HARD)
-- F10/Airboss/<Carrier Name>/Help
missionCommands.addCommandForGroup(_gid, "Attitude Monitor ON/OFF", _helpPath, self._AttitudeMonitor, self, playername)
missionCommands.addCommandForGroup(_gid, "Smoke Marshal Zone", _helpPath, self._MarkMarshalZone, self, _unitName, false)
missionCommands.addCommandForGroup(_gid, "Flare Marshal Zone", _helpPath, self._MarkMarshalZone, self, _unitName, true)
missionCommands.addCommandForGroup(_gid, "Smoke Pattern Zones", _helpPath, self._MarkCase23Zones, self, _unitName, false)
missionCommands.addCommandForGroup(_gid, "Flare Pattern Zones", _helpPath, self._MarkCase23Zones, self, _unitName, true)
missionCommands.addCommandForGroup(_gid, "[Reset My Status]", _helpPath, self._ResetPlayerStatus, self, _unitName)
-- F10/Airboss/<Carrier Name>/Kneeboard
missionCommands.addCommandForGroup(_gid, "Carrier Info", _kneeboardPath, self._DisplayCarrierInfo, self, _unitName)
missionCommands.addCommandForGroup(_gid, "Weather Report", _kneeboardPath, self._DisplayCarrierWeather, self, _unitName)
missionCommands.addCommandForGroup(_gid, "My Status", _kneeboardPath, self._DisplayPlayerStatus, self, _unitName)
-- F10/Airboss/<Carrier Name>/
missionCommands.addCommandForGroup(_gid, "Request Marshal?", _rootPath, self._RequestMarshal, self, _unitName)
missionCommands.addCommandForGroup(_gid, "Commencing!", _rootPath, self._RequestCommence, self, _unitName)
missionCommands.addCommandForGroup(_gid, "Request Refueling?", _rootPath, self._RequestRefueling, self, _unitName)
missionCommands.addCommandForGroup(_gid, "Set Section!", _rootPath, self._SetSection, self, _unitName)
missionCommands.addCommandForGroup(_gid, "Radio Check LSO", _rootPath, self._LSORadioCheck, self, _unitName)
missionCommands.addCommandForGroup(_gid, "Radio Check Marshal", _rootPath, self._MarshalRadioCheck,self, _unitName)
end end
else else
self:T(self.lid.."Could not find group or group ID in AddF10Menu() function. Unit name: ".._unitName) self:T(self.lid.."Could not find group or group ID in AddF10Menu() function. Unit name: ".._unitName)
@ -7007,23 +7025,23 @@ function AIRBOSS:_MarkCase23Zones(_unitName, flare)
-- Case II/III: arc in/out if offset>0. -- Case II/III: arc in/out if offset>0.
if case==2 or case==3 then if case==2 or case==3 then
if math.abs(self.holdingoffset)>0 then if math.abs(self.holdingoffset)>0 then
self:_GetZoneArcIn(case):SmokeZone(SMOKECOLOR.Red, 45) self:_GetZoneArcIn(case):SmokeZone(SMOKECOLOR.Blue, 45)
text=text.."* arc turn in with YELLOW flares\n" text=text.."* arc turn in with BLUE smoke\n"
self:_GetZoneArcOut(case):SmokeZone(SMOKECOLOR.Orange, 45) self:_GetZoneArcOut(case):SmokeZone(SMOKECOLOR.Blue, 45)
text=text.."* arc trun out with WHITE flares\n" text=text.."* arc trun out with BLUE smoke\n"
end end
end end
-- Case III: dirty up -- Case III: dirty up
if case==3 then if case==3 then
text=text.."* dirty up with ORANGE flares\n" text=text.."* dirty up with ORANGE smoke\n"
self:_GetZoneDirtyUp(case):SmokeZone(SMOKECOLOR.Orange, 45) self:_GetZoneDirtyUp(case):SmokeZone(SMOKECOLOR.Orange, 45)
end end
-- Case III: dirty up -- Case III: bullseye
if case==3 then if case==3 then
text=text.."* bullseye with BLUE smoke\n" text=text.."* bullseye with WHITE smoke\n"
self:_GetZoneBullseye(case):SmokeZone(SMOKECOLOR.Blue, 45) self:_GetZoneBullseye(case):SmokeZone(SMOKECOLOR.White, 45)
end end
end end

View File

@ -179,7 +179,7 @@
-- @field #RECOVERYTANKER -- @field #RECOVERYTANKER
RECOVERYTANKER = { RECOVERYTANKER = {
ClassName = "RECOVERYTANKER", ClassName = "RECOVERYTANKER",
Debug = false, Debug = true,
carrier = nil, carrier = nil,
carriertype = nil, carriertype = nil,
tankergroupname = nil, tankergroupname = nil,
@ -210,7 +210,7 @@ RECOVERYTANKER = {
--- Class version. --- Class version.
-- @field #string version -- @field #string version
RECOVERYTANKER.version="0.9.5w" RECOVERYTANKER.version="0.9.6"
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- TODO list -- TODO list
@ -271,8 +271,10 @@ function RECOVERYTANKER:New(carrierunit, tankergroupname)
self:SetPatternUpdateHeading() self:SetPatternUpdateHeading()
self:SetPatternUpdateInterval() self:SetPatternUpdateInterval()
-- Moving zone: Zone 1 NM astern the carrier with radius of 1.0 km. -- Moving zone: Zone 1 NM astern the carrier with radius of 1 NM.
self.zoneUpdate=ZONE_UNIT:New("Pattern Update Zone", self.carrier, 1*1000, {dx=-UTILS.NMToMeters(1), dy=0, relative_to_unit=true}) self.zoneUpdate=ZONE_UNIT:New("Pattern Update Zone", self.carrier, UTILS.NMToMeters(1), {dx=-UTILS.NMToMeters(1), dy=0, relative_to_unit=true})
self.zoneUpdate:SmokeZone(SMOKECOLOR.White, 45)
----------------------- -----------------------
--- FSM Transitions --- --- FSM Transitions ---
@ -629,7 +631,6 @@ function RECOVERYTANKER:onafterStart(From, Event, To)
self:HandleEvent(EVENTS.EngineShutdown) self:HandleEvent(EVENTS.EngineShutdown)
self:HandleEvent(EVENTS.Refueling, self._RefuelingStart) --Need explcit functions sice OnEventRefueling and OnEventRefuelingStop did not hook. self:HandleEvent(EVENTS.Refueling, self._RefuelingStart) --Need explcit functions sice OnEventRefueling and OnEventRefuelingStop did not hook.
self:HandleEvent(EVENTS.RefuelingStop, self._RefuelingStop) self:HandleEvent(EVENTS.RefuelingStop, self._RefuelingStop)
--self:HandleEvent(EVENTS.Crash)
-- Spawn tanker. -- Spawn tanker.
local Spawn=SPAWN:New(self.tankergroupname):InitUnControlled(false) local Spawn=SPAWN:New(self.tankergroupname):InitUnControlled(false)
@ -710,7 +711,7 @@ function RECOVERYTANKER:onafterStatus(From, Event, To)
-- Get fuel of tanker. -- Get fuel of tanker.
local fuel=self.tanker:GetFuel()*100 local fuel=self.tanker:GetFuel()*100
local text=string.format("Recovery tanker %s: state=%s fuel=%.1f", self.tanker:GetName(), self:GetState(), fuel) local text=string.format("Recovery tanker %s: state=%s fuel=%.1f", self.tanker:GetName(), self:GetState(), fuel)
self:T(text) self:I(text)
-- Check if tanker flies through pattern update zone. -- Check if tanker flies through pattern update zone.
-- TODO: Check if this can be used to update the pattern without too much disruption. -- TODO: Check if this can be used to update the pattern without too much disruption.
@ -800,7 +801,7 @@ function RECOVERYTANKER:onafterPatternUpdate(From, Event, To)
local Carrier=self.carrier:GetCoordinate() local Carrier=self.carrier:GetCoordinate()
-- Define race-track pattern. -- Define race-track pattern.
local p0=self.tanker:GetCoordinate():Translate(2000, self.tanker:GetHeading()) local p0=self.tanker:GetCoordinate():Translate(3000, self.tanker:GetHeading())
local p1=Carrier:SetAltitude(self.altitude):Translate(self.distStern, hdg) local p1=Carrier:SetAltitude(self.altitude):Translate(self.distStern, hdg)
local p2=Carrier:SetAltitude(self.altitude):Translate(self.distBow, hdg) local p2=Carrier:SetAltitude(self.altitude):Translate(self.distBow, hdg)
@ -821,6 +822,8 @@ function RECOVERYTANKER:onafterPatternUpdate(From, Event, To)
wp[1]=self.tanker:GetCoordinate():WaypointAirTurningPoint(nil , self.speed, {}, "Current Position") wp[1]=self.tanker:GetCoordinate():WaypointAirTurningPoint(nil , self.speed, {}, "Current Position")
wp[2]=p0:WaypointAirTurningPoint(nil, self.speed, {taskorbit}, "Tanker Orbit") wp[2]=p0:WaypointAirTurningPoint(nil, self.speed, {taskorbit}, "Tanker Orbit")
--local wp=self:_Pattern()
-- Initialize WP and route tanker. -- Initialize WP and route tanker.
self.tanker:WayPointInitialize(wp) self.tanker:WayPointInitialize(wp)
@ -837,6 +840,48 @@ function RECOVERYTANKER:onafterPatternUpdate(From, Event, To)
self.Tupdate=timer.getTime() self.Tupdate=timer.getTime()
end end
--- Self made race track pattern.
-- @param #RECOVERYTANKER self
-- @return #table Table of pattern waypoints.
function RECOVERYTANKER:_Pattern()
-- Carrier heading.
local hdg=self.carrier:GetHeading()
-- Pattern altitude
local alt=self.altitude
-- Carrier position.
local Carrier=self.carrier:GetCoordinate()
local width=UTILS.NMToMeters(8)
-- Not working as desired, since tanker changes course too rapidly after each waypoint.
-- Define race-track pattern.
local p={}
p[1]=self.tanker:GetCoordinate() -- Tanker position
p[2]=Carrier:SetAltitude(alt) -- Carrier position
p[3]=p[2]:Translate(self.distBow, hdg) -- In front of carrier
p[4]=p[3]:Translate(width/math.sqrt(2), hdg-45) -- Middle front for smoother curve
-- Probably need one more to make it go -hdg at the waypoint.
p[5]=p[3]:Translate(width, hdg-90) -- In front on port
p[6]=p[5]:Translate(self.distStern-self.distBow, hdg) -- Behind on port (sterndist<0!)
p[7]=p[2]:Translate(self.distStern, hdg) -- Behind carrier
local wp={}
for i=1,#p do
local coord=p[i] --Core.Point#COORDINATE
coord:MarkToAll(string.format("Waypoint %d", i))
--table.insert(wp, coord:WaypointAirFlyOverPoint(nil , self.speed))
table.insert(wp, coord:WaypointAirTurningPoint(nil , self.speed))
end
return wp
end
--- On after "RTB" event. Send tanker back to carrier. --- On after "RTB" event. Send tanker back to carrier.
-- @param #RECOVERYTANKER self -- @param #RECOVERYTANKER self
-- @param #string From From state. -- @param #string From From state.
@ -1029,7 +1074,7 @@ function RECOVERYTANKER:_InitRoute(dist, delay)
-- Waypoints. -- Waypoints.
local wp={} local wp={}
if self.takeoff==SPAWN.Takeoff.Air then if self.takeoff==SPAWN.Takeoff.Air then
wp[#wp+1]=self.tanker:GetCoordinate():SetAltitude(self.altitude):WaypointAirTurningPoint(nil, self.speed, {}, "Spawn Position") wp[#wp+1]=self.tanker:GetCoordinate():SetAltitude(self.altitude):WaypointAirTurningPoint(nil, self.speed, {}, "Spawn Position")
else else
wp[#wp+1]=Carrier:WaypointAirTakeOffParking() wp[#wp+1]=Carrier:WaypointAirTakeOffParking()
end end
@ -1131,7 +1176,7 @@ function RECOVERYTANKER:_ActivateTACAN(delay)
end end
--- Calculate distances between carrier and tanker. --- Calculate distances between carrier and tanker.
-- @param #AIRBOSS self -- @param #RECOVERYTANKER self
-- @return #number Distance [m] in the direction of the orientation of the carrier. -- @return #number Distance [m] in the direction of the orientation of the carrier.
-- @return #number Distance [m] perpendicular to the orientation of the carrier. -- @return #number Distance [m] perpendicular to the orientation of the carrier.
-- @return #number Distance [m] to the carrier. -- @return #number Distance [m] to the carrier.