mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2025-08-15 10:47:21 +00:00
AB v0.9.9.6w
This commit is contained in:
parent
3f2b3e0e1a
commit
ec155ed80c
@ -208,6 +208,8 @@
|
|||||||
-- @field #number collisiondist Distance up to which collision checks are done.
|
-- @field #number collisiondist Distance up to which collision checks are done.
|
||||||
-- @field #number Tmessage Default duration in seconds messages are displayed to players.
|
-- @field #number Tmessage Default duration in seconds messages are displayed to players.
|
||||||
-- @field #string soundfolder Folder within the mission (miz) file where airboss sound files are located.
|
-- @field #string soundfolder Folder within the mission (miz) file where airboss sound files are located.
|
||||||
|
-- @field #string soundfolderLSO Folder withing the mission (miz) file where LSO sound files are stored.
|
||||||
|
-- @field #string soundfolderMSH Folder withing the mission (miz) file where Marshal sound files are stored.
|
||||||
-- @field #boolean despawnshutdown Despawn group after engine shutdown.
|
-- @field #boolean despawnshutdown Despawn group after engine shutdown.
|
||||||
-- @field #number Tbeacon Last time the beacons were refeshed.
|
-- @field #number Tbeacon Last time the beacons were refeshed.
|
||||||
-- @field #number dTbeacon Time interval to refresh the beacons. Default 5 minutes.
|
-- @field #number dTbeacon Time interval to refresh the beacons. Default 5 minutes.
|
||||||
@ -1200,6 +1202,8 @@ AIRBOSS = {
|
|||||||
collisiondist = nil,
|
collisiondist = nil,
|
||||||
Tmessage = nil,
|
Tmessage = nil,
|
||||||
soundfolder = nil,
|
soundfolder = nil,
|
||||||
|
soundfolderLSO = nil,
|
||||||
|
soundfolderMSH = nil,
|
||||||
despawnshutdown= nil,
|
despawnshutdown= nil,
|
||||||
dTbeacon = nil,
|
dTbeacon = nil,
|
||||||
Tbeacon = nil,
|
Tbeacon = nil,
|
||||||
@ -1659,7 +1663,7 @@ AIRBOSS.MenuF10Root=nil
|
|||||||
|
|
||||||
--- Airboss class version.
|
--- Airboss class version.
|
||||||
-- @field #string version
|
-- @field #string version
|
||||||
AIRBOSS.version="0.9.9.5"
|
AIRBOSS.version="0.9.9.6w"
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||||
-- TODO list
|
-- TODO list
|
||||||
@ -4066,8 +4070,23 @@ end
|
|||||||
|
|
||||||
--- Init parameters for Marshal Voice overs by *Raynor*.
|
--- Init parameters for Marshal Voice overs by *Raynor*.
|
||||||
-- @param #AIRBOSS self
|
-- @param #AIRBOSS self
|
||||||
function AIRBOSS:SetVoiceOversMarshalByRaynor()
|
-- @param #string mizfolder (Optional) Folder within miz file where the sound files are located.
|
||||||
self:I(self.lid..string.format("Marshal Raynor reporting for duty!"))
|
function AIRBOSS:SetVoiceOversMarshalByRaynor(mizfolder)
|
||||||
|
|
||||||
|
-- Set sound files folder.
|
||||||
|
if mizfolder then
|
||||||
|
local lastchar=string.sub(mizfolder, -1)
|
||||||
|
if lastchar~="/" then
|
||||||
|
mizfolder=mizfolder.."/"
|
||||||
|
end
|
||||||
|
self.soundfolderMSH=mizfolder
|
||||||
|
else
|
||||||
|
-- Default is the general folder.
|
||||||
|
self.soundfolderMSH=self.soundfolder
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Report for duty.
|
||||||
|
self:I(self.lid..string.format("Marshal Raynor reporting for duty! Soundfolder=%s", tostring(self.soundfolderMSH)))
|
||||||
|
|
||||||
self.MarshalCall.AFFIRMATIVE.duration=0.70
|
self.MarshalCall.AFFIRMATIVE.duration=0.70
|
||||||
self.MarshalCall.ALTIMETER.duration=0.60
|
self.MarshalCall.ALTIMETER.duration=0.60
|
||||||
@ -4113,8 +4132,23 @@ end
|
|||||||
|
|
||||||
--- Set parameters for LSO Voice overs by *Raynor*.
|
--- Set parameters for LSO Voice overs by *Raynor*.
|
||||||
-- @param #AIRBOSS self
|
-- @param #AIRBOSS self
|
||||||
function AIRBOSS:SetVoiceOversLSOByRaynor()
|
-- @param #string mizfolder (Optional) Folder within miz file where the sound files are located.
|
||||||
self:I(self.lid..string.format("LSO Raynor reporting for duty!"))
|
function AIRBOSS:SetVoiceOversLSOByRaynor(mizfolder)
|
||||||
|
|
||||||
|
-- Set sound files folder.
|
||||||
|
if mizfolder then
|
||||||
|
local lastchar=string.sub(mizfolder, -1)
|
||||||
|
if lastchar~="/" then
|
||||||
|
mizfolder=mizfolder.."/"
|
||||||
|
end
|
||||||
|
self.soundfolderLSO=mizfolder
|
||||||
|
else
|
||||||
|
-- Default is the general folder.
|
||||||
|
self.soundfolderLSO=self.soundfolder
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Report for duty.
|
||||||
|
self:I(self.lid..string.format("LSO Raynor reporting for duty! Soundfolder=%s", tostring(self.soundfolderLSO)))
|
||||||
|
|
||||||
self.LSOCall.BOLTER.duration=0.75
|
self.LSOCall.BOLTER.duration=0.75
|
||||||
self.LSOCall.CALLTHEBALL.duration=0.625
|
self.LSOCall.CALLTHEBALL.duration=0.625
|
||||||
@ -4156,8 +4190,20 @@ end
|
|||||||
|
|
||||||
--- Set parameters for LSO Voice overs by *funkyfranky*.
|
--- Set parameters for LSO Voice overs by *funkyfranky*.
|
||||||
-- @param #AIRBOSS self
|
-- @param #AIRBOSS self
|
||||||
function AIRBOSS:SetVoiceOversLSOByFF()
|
-- @param #string mizfolder (Optional) Folder within miz file where the sound files are located.
|
||||||
self:I(self.lid..string.format("Marshal FF reporting for duty!"))
|
function AIRBOSS:SetVoiceOversLSOByFF(mizfolder)
|
||||||
|
|
||||||
|
-- Set sound files folder.
|
||||||
|
if mizfolder then
|
||||||
|
local lastchar=string.sub(mizfolder, -1)
|
||||||
|
if lastchar~="/" then
|
||||||
|
mizfolder=mizfolder.."/"
|
||||||
|
end
|
||||||
|
self.soundfolderLSO=mizfolder
|
||||||
|
else
|
||||||
|
-- Default is the general folder.
|
||||||
|
self.soundfolderLSO=self.soundfolder
|
||||||
|
end
|
||||||
|
|
||||||
self.LSOCall.BOLTER.duration=0.75
|
self.LSOCall.BOLTER.duration=0.75
|
||||||
self.LSOCall.CALLTHEBALL.duration=0.60
|
self.LSOCall.CALLTHEBALL.duration=0.60
|
||||||
@ -4197,8 +4243,23 @@ end
|
|||||||
|
|
||||||
--- Intit parameters for Marshal Voice overs by *funkyfranky*.
|
--- Intit parameters for Marshal Voice overs by *funkyfranky*.
|
||||||
-- @param #AIRBOSS self
|
-- @param #AIRBOSS self
|
||||||
function AIRBOSS:SetVoiceOversMarshalByFF()
|
-- @param #string mizfolder (Optional) Folder within miz file where the sound files are located.
|
||||||
self:I(self.lid..string.format("Marshal FF reporting for duty!"))
|
function AIRBOSS:SetVoiceOversMarshalByFF(mizfolder)
|
||||||
|
|
||||||
|
-- Set sound files folder.
|
||||||
|
if mizfolder then
|
||||||
|
local lastchar=string.sub(mizfolder, -1)
|
||||||
|
if lastchar~="/" then
|
||||||
|
mizfolder=mizfolder.."/"
|
||||||
|
end
|
||||||
|
self.soundfolderMSH=mizfolder
|
||||||
|
else
|
||||||
|
-- Default is the general folder.
|
||||||
|
self.soundfolderMSH=self.soundfolder
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Report for duty.
|
||||||
|
self:I(self.lid..string.format("Marshal FF reporting for duty! Soundfolder=%s", tostring(self.soundfolderMSH)))
|
||||||
|
|
||||||
self.MarshalCall.AFFIRMATIVE.duration=0.90
|
self.MarshalCall.AFFIRMATIVE.duration=0.90
|
||||||
self.MarshalCall.ALTIMETER.duration=0.85
|
self.MarshalCall.ALTIMETER.duration=0.85
|
||||||
@ -5020,7 +5081,7 @@ function AIRBOSS:SetVoiceOver(radiocall, duration, subtitle, subduration, filena
|
|||||||
radiocall.duration=duration
|
radiocall.duration=duration
|
||||||
radiocall.subtitle=subtitle or radiocall.subtitle
|
radiocall.subtitle=subtitle or radiocall.subtitle
|
||||||
radiocall.file=filename
|
radiocall.file=filename
|
||||||
radiocall.suffix=".ogg"
|
radiocall.suffix=suffix or ".ogg"
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Get optimal aircraft AoA parameters..
|
--- Get optimal aircraft AoA parameters..
|
||||||
@ -13955,7 +14016,7 @@ function AIRBOSS:Broadcast(radio, call, loud)
|
|||||||
local sender=self:_GetRadioSender(radio)
|
local sender=self:_GetRadioSender(radio)
|
||||||
|
|
||||||
-- Construct file name and subtitle.
|
-- Construct file name and subtitle.
|
||||||
local filename=self:_RadioFilename(call, loud)
|
local filename=self:_RadioFilename(call, loud, radio.alias)
|
||||||
|
|
||||||
-- Create subtitle for transmission.
|
-- Create subtitle for transmission.
|
||||||
local subtitle=self:_RadioSubtitle(radio, call, loud)
|
local subtitle=self:_RadioSubtitle(radio, call, loud)
|
||||||
@ -14064,7 +14125,7 @@ function AIRBOSS:Sound2Player(playerData, radio, call, loud, delay)
|
|||||||
if playerData.unit:IsInZone(self.zoneCCA) and call then
|
if playerData.unit:IsInZone(self.zoneCCA) and call then
|
||||||
|
|
||||||
-- Construct file name.
|
-- Construct file name.
|
||||||
local filename=self:_RadioFilename(call, loud)
|
local filename=self:_RadioFilename(call, loud, radio.alias)
|
||||||
|
|
||||||
-- Get Subtitle
|
-- Get Subtitle
|
||||||
local subtitle=self:_RadioSubtitle(radio, call, loud)
|
local subtitle=self:_RadioSubtitle(radio, call, loud)
|
||||||
@ -14134,25 +14195,34 @@ end
|
|||||||
-- @param #AIRBOSS self
|
-- @param #AIRBOSS self
|
||||||
-- @param #AIRBOSS.RadioCall call Radio sound files and subtitles.
|
-- @param #AIRBOSS.RadioCall call Radio sound files and subtitles.
|
||||||
-- @param #boolean loud Use loud version of file if available.
|
-- @param #boolean loud Use loud version of file if available.
|
||||||
|
-- @param #string channel Radio channel alias "LSO" or "LSOCall", "MARSHAL" or "MarshalCall".
|
||||||
-- @return #string The file name of the radio sound.
|
-- @return #string The file name of the radio sound.
|
||||||
function AIRBOSS:_RadioFilename(call, loud)
|
function AIRBOSS:_RadioFilename(call, loud, channel)
|
||||||
|
|
||||||
-- Construct file name and subtitle.
|
-- Construct file name and subtitle.
|
||||||
local prefix=call.file or ""
|
local prefix=call.file or ""
|
||||||
local suffix=call.suffix or "ogg"
|
local suffix=call.suffix or "ogg"
|
||||||
|
|
||||||
-- Path to sound files. Default is in the ME
|
-- Path to sound files. Default is in the ME
|
||||||
local path=self.soundfolder or "l10n/DEFAULT/"
|
local path=self.soundfolder or "l10n/DEFAULT/"
|
||||||
|
|
||||||
-- Loud version.
|
-- Check for special LSO and Marshal sound folders.
|
||||||
if loud then
|
if string.find(call.file, "LSO-") and channel and (channel=="LSO" or channel=="LSOCall") then
|
||||||
prefix=prefix.."_Loud"
|
path=self.soundfolderLSO or path
|
||||||
end
|
end
|
||||||
|
if string.find(call.file, "MARSHAL-") and channel and (channel=="MARSHAL" or channel=="MarshalCall") then
|
||||||
|
path=self.soundfolderMSH or path
|
||||||
|
end
|
||||||
|
|
||||||
-- File name inclusing path in miz file.
|
-- Loud version.
|
||||||
local filename=string.format("%s%s.%s", path, prefix, suffix)
|
if loud then
|
||||||
|
prefix=prefix.."_Loud"
|
||||||
|
end
|
||||||
|
|
||||||
return filename
|
-- File name inclusing path in miz file.
|
||||||
|
local filename=string.format("%s%s.%s", path, prefix, suffix)
|
||||||
|
|
||||||
|
return filename
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Send text message to player client.
|
--- Send text message to player client.
|
||||||
@ -14206,21 +14276,21 @@ function AIRBOSS:MessageToPlayer(playerData, message, sender, receiver, duration
|
|||||||
|
|
||||||
-- Negative.
|
-- Negative.
|
||||||
if string.find(text:lower(), "negative") then
|
if string.find(text:lower(), "negative") then
|
||||||
local filename=self:_RadioFilename(self.MarshalCall.NEGATIVE)
|
local filename=self:_RadioFilename(self.MarshalCall.NEGATIVE, false, "MARSHAL")
|
||||||
USERSOUND:New(filename):ToGroup(playerData.group, wait)
|
USERSOUND:New(filename):ToGroup(playerData.group, wait)
|
||||||
wait=wait+self.MarshalCall.NEGATIVE.duration
|
wait=wait+self.MarshalCall.NEGATIVE.duration
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Affirm.
|
-- Affirm.
|
||||||
if string.find(text:lower(), "affirm") then
|
if string.find(text:lower(), "affirm") then
|
||||||
local filename=self:_RadioFilename(self.MarshalCall.AFFIRMATIVE)
|
local filename=self:_RadioFilename(self.MarshalCall.AFFIRMATIVE, false, "MARSHAL")
|
||||||
USERSOUND:New(filename):ToGroup(playerData.group, wait)
|
USERSOUND:New(filename):ToGroup(playerData.group, wait)
|
||||||
wait=wait+self.MarshalCall.AFFIRMATIVE.duration
|
wait=wait+self.MarshalCall.AFFIRMATIVE.duration
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Roger.
|
-- Roger.
|
||||||
if string.find(text:lower(), "roger") then
|
if string.find(text:lower(), "roger") then
|
||||||
local filename=self:_RadioFilename(self.MarshalCall.ROGER)
|
local filename=self:_RadioFilename(self.MarshalCall.ROGER, false, "MARSHAL")
|
||||||
USERSOUND:New(filename):ToGroup(playerData.group, wait)
|
USERSOUND:New(filename):ToGroup(playerData.group, wait)
|
||||||
wait=wait+self.MarshalCall.ROGER.duration
|
wait=wait+self.MarshalCall.ROGER.duration
|
||||||
end
|
end
|
||||||
@ -14432,8 +14502,7 @@ function AIRBOSS:_Number2Sound(playerData, sender, number, delay)
|
|||||||
local call=self[Sender][N] --#AIRBOSS.RadioCall
|
local call=self[Sender][N] --#AIRBOSS.RadioCall
|
||||||
|
|
||||||
-- Create file name.
|
-- Create file name.
|
||||||
--local filename=string.format("%s.%s", call.file, call.suffix)
|
local filename=self:_RadioFilename(call, false, Sender)
|
||||||
local filename=self:_RadioFilename(call, false)
|
|
||||||
|
|
||||||
-- Play sound.
|
-- Play sound.
|
||||||
USERSOUND:New(filename):ToGroup(playerData.group, delay+wait)
|
USERSOUND:New(filename):ToGroup(playerData.group, delay+wait)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user