Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
Applevangelist 2023-12-25 11:08:03 +01:00
commit d855788e19

View File

@ -109,10 +109,10 @@
-- --
-- Use a specific voice with the @{#MSRS.SetVoice} function, e.g, `:SetVoice("Microsoft Hedda Desktop")`. -- Use a specific voice with the @{#MSRS.SetVoice} function, e.g, `:SetVoice("Microsoft Hedda Desktop")`.
-- Note that this must be installed on your windows system. -- Note that this must be installed on your windows system.
-- --
-- Note that you can set voices for each provider via the @{#MSRS.SetVoiceProvider} function. Also shortcuts are available, *i.e.* -- Note that you can set voices for each provider via the @{#MSRS.SetVoiceProvider} function. Also shortcuts are available, *i.e.*
-- @{#MSRS.SetVoiceWindows}, @{#MSRS.SetVoiceGoogle}, @{#MSRS.SetVoiceAzure} and @{#MSRS.SetVoiceAmazon}. -- @{#MSRS.SetVoiceWindows}, @{#MSRS.SetVoiceGoogle}, @{#MSRS.SetVoiceAzure} and @{#MSRS.SetVoiceAmazon}.
-- --
-- For voices there are enumerators in this class to help you out on voice names: -- For voices there are enumerators in this class to help you out on voice names:
-- --
-- MSRS.Voices.Microsoft -- e.g. MSRS.Voices.Microsoft.Hedda - the Microsoft enumerator contains all voices known to work with SRS -- MSRS.Voices.Microsoft -- e.g. MSRS.Voices.Microsoft.Hedda - the Microsoft enumerator contains all voices known to work with SRS
@ -134,32 +134,32 @@
-- ## Config file for many variables, auto-loaded by Moose -- ## Config file for many variables, auto-loaded by Moose
-- --
-- See @{#MSRS.LoadConfigFile} for details on how to set this up. -- See @{#MSRS.LoadConfigFile} for details on how to set this up.
-- --
-- ## TTS Providers -- ## TTS Providers
-- --
-- The default provider for generating speech from text is the native Windows TTS service. Note that you need to install the voices you want to use. -- The default provider for generating speech from text is the native Windows TTS service. Note that you need to install the voices you want to use.
-- --
-- **Pro-Tip** - use the command line with power shell to call `DCS-SR-ExternalAudio.exe` - it will tell you what is missing -- **Pro-Tip** - use the command line with power shell to call `DCS-SR-ExternalAudio.exe` - it will tell you what is missing
-- and also the Google Console error, in case you have missed a step in setting up your Google TTS. -- and also the Google Console error, in case you have missed a step in setting up your Google TTS.
-- For example, `.\DCS-SR-ExternalAudio.exe -t "Text Message" -f 255 -m AM -c 2 -s 2 -z -G "Path_To_You_Google.Json"` -- For example, `.\DCS-SR-ExternalAudio.exe -t "Text Message" -f 255 -m AM -c 2 -s 2 -z -G "Path_To_You_Google.Json"`
-- plays a message on 255 MHz AM for the blue coalition in-game. -- plays a message on 255 MHz AM for the blue coalition in-game.
-- --
-- ### Google -- ### Google
-- --
-- In order to use Google Cloud for TTS you need to use @{#MSRS.SetProvider} and @{MSRS.SetProviderOptionsGoogle} functions: -- In order to use Google Cloud for TTS you need to use @{#MSRS.SetProvider} and @{MSRS.SetProviderOptionsGoogle} functions:
-- --
-- msrs:SetProvider(MSRS.Provider.GOOGLE) -- msrs:SetProvider(MSRS.Provider.GOOGLE)
-- msrs:SetProviderOptionsGoogle(CredentialsFile, AccessKey) -- msrs:SetProviderOptionsGoogle(CredentialsFile, AccessKey)
-- --
-- The parameter `CredentialsFile` is used with the default 'DCS-SR-ExternalAudio.exe' backend and must be the full path to the credentials JSON file. -- The parameter `CredentialsFile` is used with the default 'DCS-SR-ExternalAudio.exe' backend and must be the full path to the credentials JSON file.
-- The `AccessKey` parameter is used with the DCS-gRPC backend (see below). -- The `AccessKey` parameter is used with the DCS-gRPC backend (see below).
-- --
-- You can set the voice to use with Google via @{#MSRS.SetVoiceGoogle}. -- You can set the voice to use with Google via @{#MSRS.SetVoiceGoogle}.
-- --
-- When using Google it also allows you to utilize SSML in your text for more flexibility. -- When using Google it also allows you to utilize SSML in your text for more flexibility.
-- For more information on setting up a cloud account, visit: https://cloud.google.com/text-to-speech -- For more information on setting up a cloud account, visit: https://cloud.google.com/text-to-speech
-- Google's supported SSML reference: https://cloud.google.com/text-to-speech/docs/ssml -- Google's supported SSML reference: https://cloud.google.com/text-to-speech/docs/ssml
-- --
-- ### Amazon Web Service [Only DCS-gRPC backend] -- ### Amazon Web Service [Only DCS-gRPC backend]
-- --
-- In order to use Amazon Web Service (AWS) for TTS you need to use @{#MSRS.SetProvider} and @{MSRS.SetProviderOptionsAmazon} functions: -- In order to use Amazon Web Service (AWS) for TTS you need to use @{#MSRS.SetProvider} and @{MSRS.SetProviderOptionsAmazon} functions:
@ -172,21 +172,21 @@
-- You can set the voice to use with AWS via @{#MSRS.SetVoiceAmazon}. -- You can set the voice to use with AWS via @{#MSRS.SetVoiceAmazon}.
-- --
-- ### Microsoft Azure [Only DCS-gRPC backend] -- ### Microsoft Azure [Only DCS-gRPC backend]
-- --
-- In order to use Microsoft Azure for TTS you need to use @{#MSRS.SetProvider} and @{MSRS.SetProviderOptionsAzure} functions: -- In order to use Microsoft Azure for TTS you need to use @{#MSRS.SetProvider} and @{MSRS.SetProviderOptionsAzure} functions:
-- --
-- msrs:SetProvider(MSRS.Provider.AZURE) -- msrs:SetProvider(MSRS.Provider.AZURE)
-- msrs:SetProviderOptionsAmazon(AccessKey, Region) -- msrs:SetProviderOptionsAmazon(AccessKey, Region)
-- --
-- The parameter `AccessKey` is your Azure access key. The parameter `Region` is your [Azure region](https://learn.microsoft.com/en-us/azure/cognitive-services/speech-service/regions). -- The parameter `AccessKey` is your Azure access key. The parameter `Region` is your [Azure region](https://learn.microsoft.com/en-us/azure/cognitive-services/speech-service/regions).
-- --
-- You can set the voice to use with Azure via @{#MSRS.SetVoiceAzure}. -- You can set the voice to use with Azure via @{#MSRS.SetVoiceAzure}.
-- --
-- ## Backend -- ## Backend
-- --
-- The default interface to SRS is via calling the 'DCS-SR-ExternalAudio.exe'. As noted above, this has the unavoidable drawback that a pop-up briefly appears -- The default interface to SRS is via calling the 'DCS-SR-ExternalAudio.exe'. As noted above, this has the unavoidable drawback that a pop-up briefly appears
-- and DCS might be put out of focus. -- and DCS might be put out of focus.
-- --
-- ## DCS-gRPC as an alternative to 'DCS-SR-ExternalAudio.exe' for TTS -- ## DCS-gRPC as an alternative to 'DCS-SR-ExternalAudio.exe' for TTS
-- --
-- Another interface to SRS is [DCS-gRPC](https://github.com/DCS-gRPC/rust-server). This does not call an exe file and therefore avoids the annoying pop-up window. -- Another interface to SRS is [DCS-gRPC](https://github.com/DCS-gRPC/rust-server). This does not call an exe file and therefore avoids the annoying pop-up window.
@ -466,11 +466,11 @@ function MSRS:New(Path, Frequency, Modulation, Backend)
end end
if Frequency then if Frequency then
self:SetFrequencies(Frequency) self:SetFrequencies(Frequency)
end end
if Modulation then if Modulation then
self:SetModulations(Modulation) self:SetModulations(Modulation)
end end
end end
@ -561,7 +561,7 @@ function MSRS:SetPath(Path)
-- Debug output. -- Debug output.
self:T(string.format("SRS path=%s", self:GetPath())) self:T(string.format("SRS path=%s", self:GetPath()))
return self return self
end end
@ -752,9 +752,9 @@ end
-- @param #string Provider Provider. Default is as set by @{#MSRS.SetProvider}, which itself defaults to `MSRS.Provider.WINDOWS` if not set. -- @param #string Provider Provider. Default is as set by @{#MSRS.SetProvider}, which itself defaults to `MSRS.Provider.WINDOWS` if not set.
-- @return #MSRS self -- @return #MSRS self
function MSRS:SetVoiceProvider(Voice, Provider) function MSRS:SetVoiceProvider(Voice, Provider)
self.poptions=self.poptions or {} self.poptions=self.poptions or {}
self.poptions[Provider or self:GetProvider()]=Voice self.poptions[Provider or self:GetProvider()]=Voice
return self return self
@ -812,7 +812,7 @@ end
function MSRS:GetVoice(Provider) function MSRS:GetVoice(Provider)
Provider=Provider or self.provider Provider=Provider or self.provider
if Provider and self.poptions[Provider] and self.poptions[Provider].voice then if Provider and self.poptions[Provider] and self.poptions[Provider].voice then
return self.poptions[Provider].voice return self.poptions[Provider].voice
else else
@ -841,7 +841,7 @@ function MSRS:SetGoogle(PathToCredentials)
if PathToCredentials then if PathToCredentials then
self.provider = MSRS.Provider.GOOGLE self.provider = MSRS.Provider.GOOGLE
self:SetProviderOptionsGoogle(PathToCredentials, PathToCredentials) self:SetProviderOptionsGoogle(PathToCredentials, PathToCredentials)
end end
@ -855,15 +855,15 @@ end
-- @return #MSRS self -- @return #MSRS self
function MSRS:SetGoogleAPIKey(APIKey) function MSRS:SetGoogleAPIKey(APIKey)
if APIKey then if APIKey then
self.provider = MSRS.Provider.GOOGLE self.provider = MSRS.Provider.GOOGLE
if self.poptions[MSRS.Provider.GOOGLE] then if self.poptions[MSRS.Provider.GOOGLE] then
self.poptions[MSRS.Provider.GOOGLE].key=APIKey self.poptions[MSRS.Provider.GOOGLE].key=APIKey
else else
self:SetProviderOptionsGoogle(nil ,APIKey) self:SetProviderOptionsGoogle(nil ,APIKey)
end end
end end
return self return self
end end
@ -871,14 +871,14 @@ end
--- Set provider used to generate text-to-speech. --- Set provider used to generate text-to-speech.
-- These options are available: -- These options are available:
-- --
-- - `MSRS.Provider.WINDOWS`: Microsoft Windows (default) -- - `MSRS.Provider.WINDOWS`: Microsoft Windows (default)
-- - `MSRS.Provider.GOOGLE`: Google Cloud -- - `MSRS.Provider.GOOGLE`: Google Cloud
-- - `MSRS.Provider.AZURE`: Microsoft Azure (only with DCS-gRPC backend) -- - `MSRS.Provider.AZURE`: Microsoft Azure (only with DCS-gRPC backend)
-- - `MSRS.Provier.AMAZON`: Amazone Web Service (only with DCS-gRPC backend) -- - `MSRS.Provier.AMAZON`: Amazone Web Service (only with DCS-gRPC backend)
-- --
-- Note that all providers except Microsoft Windows need as additonal information the credentials of your account. -- Note that all providers except Microsoft Windows need as additonal information the credentials of your account.
-- --
-- @param #MSRS self -- @param #MSRS self
-- @param #string Provider -- @param #string Provider
-- @return #MSRS self -- @return #MSRS self
@ -904,21 +904,21 @@ end
-- @param #string Region Region to use. -- @param #string Region Region to use.
-- @return #MSRS.ProviderOptions Provider optionas table. -- @return #MSRS.ProviderOptions Provider optionas table.
function MSRS:SetProviderOptions(Provider, CredentialsFile, AccessKey, SecretKey, Region) function MSRS:SetProviderOptions(Provider, CredentialsFile, AccessKey, SecretKey, Region)
local option=MSRS._CreateProviderOptions(Provider, CredentialsFile, AccessKey, SecretKey, Region) local option=MSRS._CreateProviderOptions(Provider, CredentialsFile, AccessKey, SecretKey, Region)
if self then if self then
self.poptions=self.poptions or {} self.poptions=self.poptions or {}
self.poptions[Provider]=option self.poptions[Provider]=option
else else
MSRS.poptions=MSRS.poptions or {} MSRS.poptions=MSRS.poptions or {}
MSRS.poptions[Provider]=option MSRS.poptions[Provider]=option
end end
return option return option
@ -934,7 +934,7 @@ end
function MSRS._CreateProviderOptions(Provider, CredentialsFile, AccessKey, SecretKey, Region) function MSRS._CreateProviderOptions(Provider, CredentialsFile, AccessKey, SecretKey, Region)
local option={} --#MSRS.ProviderOptions local option={} --#MSRS.ProviderOptions
option.provider=Provider option.provider=Provider
option.credentials=CredentialsFile option.credentials=CredentialsFile
option.key=AccessKey option.key=AccessKey
@ -952,7 +952,7 @@ end
function MSRS:SetProviderOptionsGoogle(CredentialsFile, AccessKey) function MSRS:SetProviderOptionsGoogle(CredentialsFile, AccessKey)
self:SetProviderOptions(MSRS.Provider.GOOGLE, CredentialsFile, AccessKey) self:SetProviderOptions(MSRS.Provider.GOOGLE, CredentialsFile, AccessKey)
return self return self
end end
@ -965,7 +965,7 @@ end
function MSRS:SetProviderOptionsAmazon(AccessKey, SecretKey, Region) function MSRS:SetProviderOptionsAmazon(AccessKey, SecretKey, Region)
self:SetProviderOptions(MSRS.Provider.AMAZON, nil, AccessKey, SecretKey, Region) self:SetProviderOptions(MSRS.Provider.AMAZON, nil, AccessKey, SecretKey, Region)
return self return self
end end
@ -977,7 +977,7 @@ end
function MSRS:SetProviderOptionsAzure(AccessKey, Region) function MSRS:SetProviderOptionsAzure(AccessKey, Region)
self:SetProviderOptions(MSRS.Provider.AZURE, nil, AccessKey, nil, Region) self:SetProviderOptions(MSRS.Provider.AZURE, nil, AccessKey, nil, Region)
return self return self
end end
@ -1096,22 +1096,22 @@ function MSRS:PlaySoundText(SoundText, Delay)
if Delay and Delay>0 then if Delay and Delay>0 then
self:ScheduleOnce(Delay, MSRS.PlaySoundText, self, SoundText, 0) self:ScheduleOnce(Delay, MSRS.PlaySoundText, self, SoundText, 0)
else else
if self.backend==MSRS.Backend.GRPC then if self.backend==MSRS.Backend.GRPC then
self:_DCSgRPCtts(SoundText.text, nil, SoundText.gender, SoundText.culture, SoundText.voice, SoundText.volume, SoundText.label, SoundText.coordinate) self:_DCSgRPCtts(SoundText.text, nil, SoundText.gender, SoundText.culture, SoundText.voice, SoundText.volume, SoundText.label, SoundText.coordinate)
else else
-- Get command. -- Get command.
local command=self:_GetCommand(nil, nil, nil, SoundText.gender, SoundText.voice, SoundText.culture, SoundText.volume, SoundText.speed) local command=self:_GetCommand(nil, nil, nil, SoundText.gender, SoundText.voice, SoundText.culture, SoundText.volume, SoundText.speed)
-- Append text. -- Append text.
command=command..string.format(" --text=\"%s\"", tostring(SoundText.text)) command=command..string.format(" --text=\"%s\"", tostring(SoundText.text))
-- Execute command. -- Execute command.
self:_ExecCommand(command) self:_ExecCommand(command)
end end
end end
@ -1130,17 +1130,17 @@ function MSRS:PlayText(Text, Delay, Coordinate)
if Delay and Delay>0 then if Delay and Delay>0 then
self:ScheduleOnce(Delay, MSRS.PlayText, self, Text, nil, Coordinate) self:ScheduleOnce(Delay, MSRS.PlayText, self, Text, nil, Coordinate)
else else
if self.backend==MSRS.Backend.GRPC then if self.backend==MSRS.Backend.GRPC then
self:T(self.lid.."Transmitting") self:T(self.lid.."Transmitting")
self:_DCSgRPCtts(Text, nil, nil , nil, nil, nil, nil, Coordinate) self:_DCSgRPCtts(Text, nil, nil , nil, nil, nil, nil, Coordinate)
else else
self:PlayTextExt(Text, Delay, nil, nil, nil, nil, nil, nil, nil, Coordinate) self:PlayTextExt(Text, Delay, nil, nil, nil, nil, nil, nil, nil, Coordinate)
end end
end end
@ -1165,25 +1165,25 @@ function MSRS:PlayTextExt(Text, Delay, Frequencies, Modulations, Gender, Culture
if Delay and Delay>0 then if Delay and Delay>0 then
self:ScheduleOnce(Delay, MSRS.PlayTextExt, self, Text, 0, Frequencies, Modulations, Gender, Culture, Voice, Volume, Label, Coordinate) self:ScheduleOnce(Delay, MSRS.PlayTextExt, self, Text, 0, Frequencies, Modulations, Gender, Culture, Voice, Volume, Label, Coordinate)
else else
Frequencies = Frequencies or self:GetFrequencies() Frequencies = Frequencies or self:GetFrequencies()
Modulations = Modulations or self:GetModulations() Modulations = Modulations or self:GetModulations()
if self.backend==MSRS.Backend.SRSEXE then if self.backend==MSRS.Backend.SRSEXE then
-- Get command line. -- Get command line.
local command=self:_GetCommand(UTILS.EnsureTable(Frequencies, false), UTILS.EnsureTable(Modulations, false), nil, Gender, Voice, Culture, Volume, nil, nil, Label, Coordinate) local command=self:_GetCommand(UTILS.EnsureTable(Frequencies, false), UTILS.EnsureTable(Modulations, false), nil, Gender, Voice, Culture, Volume, nil, nil, Label, Coordinate)
-- Append text. -- Append text.
command=command..string.format(" --text=\"%s\"", tostring(Text)) command=command..string.format(" --text=\"%s\"", tostring(Text))
-- Execute command. -- Execute command.
self:_ExecCommand(command) self:_ExecCommand(command)
elseif self.backend==MSRS.Backend.GRPC then elseif self.backend==MSRS.Backend.GRPC then
self:_DCSgRPCtts(Text, Frequencies, Gender, Culture, Voice, Volume, Label, Coordinate) self:_DCSgRPCtts(Text, Frequencies, Gender, Culture, Voice, Volume, Label, Coordinate)
end end
end end
@ -1239,8 +1239,8 @@ end
--- Get lat, long and alt from coordinate. --- Get lat, long and alt from coordinate.
-- @param #MSRS self -- @param #MSRS self
-- @param Core.Point#Coordinate Coordinate Coordinate. Can also be a DCS#Vec3. -- @param Core.Point#Coordinate Coordinate Coordinate. Can also be a DCS#Vec3.
-- @return #number Latitude (or 0 if no input coordinate was given). -- @return #number Latitude (or 0 if no input coordinate was given).
-- @return #number Longitude (or 0 if no input coordinate was given). -- @return #number Longitude (or 0 if no input coordinate was given).
-- @return #number Altitude (or 0 if no input coordinate was given). -- @return #number Altitude (or 0 if no input coordinate was given).
function MSRS:_GetLatLongAlt(Coordinate) function MSRS:_GetLatLongAlt(Coordinate)
@ -1322,7 +1322,7 @@ function MSRS:_GetCommand(freqs, modus, coal, gender, voice, culture, volume, sp
-- Set provider options -- Set provider options
if self.provider==MSRS.Provider.GOOGLE then if self.provider==MSRS.Provider.GOOGLE then
local pops=self:GetProviderOptions() local pops=self:GetProviderOptions()
command=command..string.format(' --ssml -G "%s"', pops.credentials) command=command..string.format(' --ssml -G "%s"', pops.credentials)
elseif self.provider==MSRS.Provider.WINDOWS then elseif self.provider==MSRS.Provider.WINDOWS then
-- Nothing to do. -- Nothing to do.
@ -1470,20 +1470,20 @@ end
-- @return #MSRS self -- @return #MSRS self
function MSRS:_DCSgRPCtts(Text, Frequencies, Gender, Culture, Voice, Volume, Label, Coordinate) function MSRS:_DCSgRPCtts(Text, Frequencies, Gender, Culture, Voice, Volume, Label, Coordinate)
-- Debug info. -- Debug info.
self:T("MSRS_BACKEND_DCSGRPC:_DCSgRPCtts()") self:T("MSRS_BACKEND_DCSGRPC:_DCSgRPCtts()")
self:T({Text, Frequencies, Gender, Culture, Voice, Volume, Label, Coordinate}) self:T({Text, Frequencies, Gender, Culture, Voice, Volume, Label, Coordinate})
local options = {} -- #MSRS.GRPCOptions local options = {} -- #MSRS.GRPCOptions
local ssml = Text or '' local ssml = Text or ''
-- Get frequenceies. -- Get frequenceies.
Frequencies = UTILS.EnsureTable(Frequencies, true) or self:GetFrequencies() Frequencies = UTILS.EnsureTable(Frequencies, true) or self:GetFrequencies()
-- Plain text (not really used. -- Plain text (not really used.
options.plaintext=Text options.plaintext=Text
-- Name shows as sender. -- Name shows as sender.
options.srsClientName = Label or self.Label options.srsClientName = Label or self.Label
@ -1491,8 +1491,8 @@ function MSRS:_DCSgRPCtts(Text, Frequencies, Gender, Culture, Voice, Volume, Lab
if self.coordinate then if self.coordinate then
options.position = {} options.position = {}
options.position.lat, options.position.lon, options.position.alt = self:_GetLatLongAlt(self.coordinate) options.position.lat, options.position.lon, options.position.alt = self:_GetLatLongAlt(self.coordinate)
end end
-- Coalition (gRPC expects lower case) -- Coalition (gRPC expects lower case)
options.coalition = UTILS.GetCoalitionName(self.coalition):lower() options.coalition = UTILS.GetCoalitionName(self.coalition):lower()
@ -1502,7 +1502,7 @@ function MSRS:_DCSgRPCtts(Text, Frequencies, Gender, Culture, Voice, Volume, Lab
-- Provider options: voice, credentials -- Provider options: voice, credentials
options.provider = {} options.provider = {}
options.provider[provider] = self:GetProviderOptions(provider) options.provider[provider] = self:GetProviderOptions(provider)
-- Voice -- Voice
Voice=Voice or self:GetVoice(self.provider) or self.voice Voice=Voice or self:GetVoice(self.provider) or self.voice
@ -1511,9 +1511,9 @@ function MSRS:_DCSgRPCtts(Text, Frequencies, Gender, Culture, Voice, Volume, Lab
options.provider[provider].voice = Voice options.provider[provider].voice = Voice
else else
-- DCS-gRPC doesn't directly support language/gender, but can use SSML -- DCS-gRPC doesn't directly support language/gender, but can use SSML
local preTag, genderProp, langProp, postTag = '', '', '', '' local preTag, genderProp, langProp, postTag = '', '', '', ''
local gender="" local gender=""
if self.gender then if self.gender then
gender=string.format(' gender=\"\%s\"', self.gender) gender=string.format(' gender=\"\%s\"', self.gender)
@ -1527,7 +1527,7 @@ function MSRS:_DCSgRPCtts(Text, Frequencies, Gender, Culture, Voice, Volume, Lab
ssml=string.format("<voice%s%s>%s</voice>", gender, language, Text) ssml=string.format("<voice%s%s>%s</voice>", gender, language, Text)
end end
end end
for _,freq in pairs(Frequencies) do for _,freq in pairs(Frequencies) do
self:T("GRPC.tts") self:T("GRPC.tts")
self:T(ssml) self:T(ssml)
@ -1572,7 +1572,7 @@ end
-- -- Windows -- -- Windows
-- win = { -- win = {
-- voice = "Microsoft Hazel Desktop", -- voice = "Microsoft Hazel Desktop",
-- }, -- },
-- -- Google Cloud -- -- Google Cloud
-- gcloud = { -- gcloud = {
-- voice = "en-GB-Standard-A", -- The Google Cloud voice to use (see https://cloud.google.com/text-to-speech/docs/voices). -- voice = "en-GB-Standard-A", -- The Google Cloud voice to use (see https://cloud.google.com/text-to-speech/docs/voices).
@ -1588,7 +1588,7 @@ end
-- }, -- },
-- -- Microsoft Azure -- -- Microsoft Azure
-- azure = { -- azure = {
-- voice="en-US-AriaNeural", --The default Azure voice to use (see https://learn.microsoft.com/azure/cognitive-services/speech-service/language-support). -- voice="en-US-AriaNeural", --The default Azure voice to use (see https://learn.microsoft.com/azure/cognitive-services/speech-service/language-support).
-- key="Your access key", -- Your Azure access key. -- key="Your access key", -- Your Azure access key.
-- region="westeurope", -- The Azure region to use (see https://learn.microsoft.com/en-us/azure/cognitive-services/speech-service/regions). -- region="westeurope", -- The Azure region to use (see https://learn.microsoft.com/en-us/azure/cognitive-services/speech-service/regions).
-- }, -- },
@ -1628,23 +1628,23 @@ function MSRS:LoadConfigFile(Path,Filename)
env.info("*****Note - lfs and os need to be desanitized for MSRS to work!") env.info("*****Note - lfs and os need to be desanitized for MSRS to work!")
return false return false
end end
local path = Path or lfs.writedir()..MSRS.ConfigFilePath local path = Path or lfs.writedir()..MSRS.ConfigFilePath
local file = Filename or MSRS.ConfigFileName or "Moose_MSRS.lua" local file = Filename or MSRS.ConfigFileName or "Moose_MSRS.lua"
local pathandfile = path..file local pathandfile = path..file
local filexsists = UTILS.FileExists(pathandfile) local filexsists = UTILS.FileExists(pathandfile)
if filexsists and not MSRS.ConfigLoaded then if filexsists and not MSRS.ConfigLoaded then
env.info("FF reading config file") env.info("FF reading config file")
-- Load global MSRS_Config -- Load global MSRS_Config
assert(loadfile(path..file))() assert(loadfile(path..file))()
if MSRS_Config then if MSRS_Config then
local Self = self or MSRS --#MSRS local Self = self or MSRS --#MSRS
Self.path = MSRS_Config.Path or "C:\\Program Files\\DCS-SimpleRadio-Standalone" Self.path = MSRS_Config.Path or "C:\\Program Files\\DCS-SimpleRadio-Standalone"
Self.port = MSRS_Config.Port or 5002 Self.port = MSRS_Config.Port or 5002
Self.backend = MSRS_Config.Backend or MSRS.Backend.SRSEXE Self.backend = MSRS_Config.Backend or MSRS.Backend.SRSEXE
@ -1665,13 +1665,13 @@ function MSRS:LoadConfigFile(Path,Filename)
Self.poptions[provider]=MSRS_Config[provider] Self.poptions[provider]=MSRS_Config[provider]
end end
end end
Self.ConfigLoaded = true Self.ConfigLoaded = true
end end
env.info("MSRS - Successfully loaded default configuration from disk!",false) env.info("MSRS - Successfully loaded default configuration from disk!",false)
end end
if not filexsists then if not filexsists then
env.info("MSRS - Cannot find default configuration file!",false) env.info("MSRS - Cannot find default configuration file!",false)
return false return false