You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.3 KiB

local _
local addonName, platerInternal = ...
local Plater = _G.Plater
local StopSound = StopSound
local PlaySoundFile = PlaySoundFile
local GetTime = GetTime
local validChannels = {
["Master"] = "Master",
["Music"] = "Music",
["SFX"] = "SFX",
["Ambience"] = "Ambience",
["Dialog"] = "Dialog",
}
local defaultAudioChannel = "Master"
platerInternal.LatestTimeForAudioPlayedByID = {}
---player an audio cue for a cast bar
---@param spellId number
function platerInternal.Audio.PlaySoundForCastStart(spellId)
local audioCue = Plater.db.profile.cast_audiocues[spellId]
if (audioCue) then
if (((platerInternal.LatestTimeForAudioPlayedByID[spellId] or 0) + 0.25) > GetTime()) then
return -- do not play, was played already within the last quarter of a second...
end
if (platerInternal.LatestHandleForAudioPlayed) then
StopSound(platerInternal.LatestHandleForAudioPlayed, 500)
end
local channel = validChannels[Plater.db.cast_audiocues_channel] or defaultAudioChannel
local willPlay, soundHandle = PlaySoundFile(audioCue, channel)
if (willPlay) then
platerInternal.LatestHandleForAudioPlayed = soundHandle
platerInternal.LatestTimeForAudioPlayedByID[spellId] = GetTime()
end
end
end