This commit is contained in:
Applevangelist 2022-04-16 18:58:43 +02:00
parent 061469840b
commit 0522036b80
2 changed files with 35 additions and 2 deletions

View File

@ -125,6 +125,9 @@ end
-- --
-- * (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min -- * (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min
-- --
-- @param #number length can also be passed as #string
-- @param #number speed Defaults to 1.0
-- @param #boolean isGoogle We're using Google TTS
function STTS.getSpeechTime(length,speed,isGoogle) function STTS.getSpeechTime(length,speed,isGoogle)
local maxRateRatio = 3 local maxRateRatio = 3

View File

@ -2413,7 +2413,22 @@ function FIFO:New()
self.uniquecounter = 0 self.uniquecounter = 0
-- Set some string id for output to DCS.log file. -- Set some string id for output to DCS.log file.
self.lid=string.format("%s (%s) | ", "FiFo", self.version) self.lid=string.format("%s (%s) | ", "FiFo", self.version)
self:I(self.lid .."Created.") self:T(self.lid .."Created.")
return self
end
--- Empty FIFO Stack
-- @param #FIFO self
-- @return #FIFO self
function FIFO:Clear()
self:T(self.lid.."Clear")
self.pointer = 0
self.counter = 0
self.stackbypointer = nil
self.stackbyid = nil
self.stackbypointer = {}
self.stackbyid = {}
self.uniquecounter = 0
return self return self
end end
@ -2658,7 +2673,22 @@ function LIFO:New()
self.stackbyid = {} self.stackbyid = {}
-- Set some string id for output to DCS.log file. -- Set some string id for output to DCS.log file.
self.lid=string.format("%s (%s) | ", "LiFo", self.version) self.lid=string.format("%s (%s) | ", "LiFo", self.version)
self:I(self.lid .."Created.") self:T(self.lid .."Created.")
return self
end
--- Empty LIFO Stack
-- @param #LIFO self
-- @return #LIFO self
function LIFO:Clear()
self:T(self.lid.."Clear")
self.pointer = 0
self.counter = 0
self.stackbypointer = nil
self.stackbyid = nil
self.stackbypointer = {}
self.stackbyid = {}
self.uniquecounter = 0
return self return self
end end