cambridge/load/bgm.lua

98 lines
1.7 KiB
Lua
Raw Normal View History

2019-05-22 22:57:34 -05:00
bgm = {
credit_roll = {
gm3 = love.audio.newSource("res/bgm/tgm_credit_roll.mp3", "stream"),
},
pacer_test = love.audio.newSource("res/bgm/pacer_test.mp3", "stream"),
}
local current_bgm = nil
local pitch = 1
2020-12-20 14:08:53 -06:00
local bgm_locked = false
2019-05-22 22:57:34 -05:00
function switchBGM(sound, subsound)
2023-07-15 01:18:43 -05:00
if bgm_locked then
return
end
2019-05-22 22:57:34 -05:00
if current_bgm ~= nil then
current_bgm:stop()
end
2023-07-15 01:18:43 -05:00
if config.bgm_volume <= 0 then
current_bgm = nil
2019-05-22 22:57:34 -05:00
elseif sound ~= nil then
if subsound ~= nil then
current_bgm = bgm[sound][subsound]
else
current_bgm = bgm[sound]
end
2019-05-22 22:57:34 -05:00
else
current_bgm = nil
end
if current_bgm ~= nil then
resetBGMFadeout()
end
2019-05-22 22:57:34 -05:00
end
function switchBGMLoop(sound, subsound)
switchBGM(sound, subsound)
if current_bgm then current_bgm:setLooping(true) end
2019-05-22 22:57:34 -05:00
end
function lockBGM()
bgm_locked = true
end
function unlockBGM()
bgm_locked = false
end
2019-05-22 22:57:34 -05:00
local fading_bgm = false
local fadeout_time = 0
local total_fadeout_time = 0
function fadeoutBGM(time)
if fading_bgm == false then
fading_bgm = true
fadeout_time = time
total_fadeout_time = time
end
end
function resetBGMFadeout(time)
2020-12-20 14:26:32 -06:00
current_bgm:setVolume(config.bgm_volume)
2019-05-22 22:57:34 -05:00
fading_bgm = false
resumeBGM()
2019-05-22 22:57:34 -05:00
end
function processBGMFadeout(dt)
if current_bgm and fading_bgm then
2019-05-22 22:57:34 -05:00
fadeout_time = fadeout_time - dt
if fadeout_time < 0 then
fadeout_time = 0
fading_bgm = false
end
2023-07-15 01:18:43 -05:00
current_bgm:setVolume(
fadeout_time * config.bgm_volume / total_fadeout_time
)
2019-05-22 22:57:34 -05:00
end
end
2023-07-15 01:18:43 -05:00
function pauseBGM()
2019-05-22 22:57:34 -05:00
if current_bgm ~= nil then
current_bgm:pause()
end
end
2023-07-15 01:18:43 -05:00
function resumeBGM()
2019-05-22 22:57:34 -05:00
if current_bgm ~= nil then
current_bgm:play()
current_bgm:setPitch(pitch)
end
end
function pitchBGM(new_pitch)
pitch = new_pitch
if current_bgm ~= nil then
current_bgm:setPitch(pitch)
2019-05-22 22:57:34 -05:00
end
end