From 6afc34c06b1643451e59d312a5981fb641f3ef40 Mon Sep 17 00:00:00 2001 From: Marianne Gagnon Date: Tue, 10 Nov 2015 21:31:38 -0500 Subject: [PATCH] Try to fix audio potential issues --- src/audio/sfx_openal.cpp | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/audio/sfx_openal.cpp b/src/audio/sfx_openal.cpp index 59023e878..da411fdad 100644 --- a/src/audio/sfx_openal.cpp +++ b/src/audio/sfx_openal.cpp @@ -59,7 +59,6 @@ SFXOpenAL::SFXOpenAL(SFXBuffer* buffer, bool positional, float volume, if (SFXManager::get()->sfxAllowed()) { SFXManager::get()->queue(SFXManager::SFX_CREATE_SOURCE, this); - //init(); } } // SFXOpenAL @@ -158,6 +157,8 @@ void SFXOpenAL::setSpeed(float factor) */ void SFXOpenAL::reallySetSpeed(float factor) { + if (m_status != SFX_PLAYING || !SFXManager::get()->sfxAllowed()) return; + if(m_status==SFX_NOT_INITIALISED) { init(); @@ -315,7 +316,8 @@ void SFXOpenAL::reallyPauseNow() */ void SFXOpenAL::resume() { - if (m_status != SFX_PLAYING || !SFXManager::get()->sfxAllowed()) return; + //if (m_status != SFX_PLAYING || !SFXManager::get()->sfxAllowed()) return; + if (!SFXManager::get()->sfxAllowed()) return; SFXManager::get()->queue(SFXManager::SFX_RESUME, this); } // resume @@ -347,7 +349,7 @@ void SFXOpenAL::play() { if (m_status == SFX_UNKNOWN || !SFXManager::get()->sfxAllowed()) return; - if(m_status==SFX_STOPPED) + if(m_status==SFX_STOPPED || m_status==SFX_NOT_INITIALISED) m_play_time = 0.0f; // Technically the sfx is only playing after the sfx thread starts it, @@ -386,7 +388,7 @@ void SFXOpenAL::play(const Vec3 &position) { if (m_status == SFX_UNKNOWN || !SFXManager::get()->sfxAllowed()) return; - if(m_status==SFX_STOPPED) + if(m_status==SFX_STOPPED || m_status==SFX_NOT_INITIALISED) m_play_time = 0.0f; // Technically the sfx is only playing after the sfx thread starts it, @@ -466,7 +468,8 @@ void SFXOpenAL::reallySetPosition(const Vec3 &position) /** Shortcut that plays at a specified position. */ void SFXOpenAL::setSpeedPosition(float factor, const Vec3 &position) { - if (m_status != SFX_PLAYING || !SFXManager::get()->sfxAllowed()) return; + //if (m_status != SFX_PLAYING || !SFXManager::get()->sfxAllowed()) return; + if (!SFXManager::get()->sfxAllowed()) return; SFXManager::get()->queue(SFXManager::SFX_SPEED_POSITION, this, factor, position); @@ -478,6 +481,7 @@ void SFXOpenAL::setSpeedPosition(float factor, const Vec3 &position) */ void SFXOpenAL::reallySetSpeedPosition(float f, const Vec3 &position) { + if (m_status != SFX_PLAYING || !SFXManager::get()->sfxAllowed()) return; reallySetSpeed(f); reallySetPosition(position); } // reallySetSpeedPosition