From 6ab1a1f9073ac4fed68ad4b034818dcd8f036dc7 Mon Sep 17 00:00:00 2001 From: elsid Date: Sun, 28 Jun 2020 14:52:50 +0200 Subject: [PATCH] Make last cell a field of SoundManager and initialize --- apps/openmw/mwsound/soundmanagerimp.cpp | 7 +++---- apps/openmw/mwsound/soundmanagerimp.hpp | 3 +++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/apps/openmw/mwsound/soundmanagerimp.cpp b/apps/openmw/mwsound/soundmanagerimp.cpp index 42c8d9065..be7c68e64 100644 --- a/apps/openmw/mwsound/soundmanagerimp.cpp +++ b/apps/openmw/mwsound/soundmanagerimp.cpp @@ -887,7 +887,6 @@ namespace MWSound void SoundManager::updateWaterSound(float /*duration*/) { - static const ESM::Cell *LastCell; MWBase::World* world = MWBase::Environment::get().getWorld(); const MWWorld::ConstPtr player = world->getPlayerPtr(); const ESM::Cell *curcell = player.getCell()->getCell(); @@ -905,9 +904,9 @@ namespace MWSound bool soundIdChanged = false; Sound_Buffer *sfx = lookupSound(update.mId); - if(LastCell != curcell) + if (mLastCell != curcell) { - LastCell = curcell; + mLastCell = curcell; SoundMap::const_iterator snditer = mActiveSounds.find(MWWorld::Ptr()); if(snditer != mActiveSounds.end()) { @@ -932,7 +931,7 @@ namespace MWSound } else if (update.mVolume > 0.0f) { - LastCell = curcell; + mLastCell = curcell; mNearWaterSound = playSound(update.mId, update.mVolume, 1.0f, Type::Sfx, PlayMode::Loop); } } diff --git a/apps/openmw/mwsound/soundmanagerimp.hpp b/apps/openmw/mwsound/soundmanagerimp.hpp index b3d43dc88..85aa0a386 100644 --- a/apps/openmw/mwsound/soundmanagerimp.hpp +++ b/apps/openmw/mwsound/soundmanagerimp.hpp @@ -27,6 +27,7 @@ namespace VFS namespace ESM { struct Sound; + struct Cell; } namespace MWSound @@ -116,6 +117,8 @@ namespace MWSound float mTimePassed = 0; + const ESM::Cell *mLastCell = nullptr; + Sound_Buffer *insertSound(const std::string &soundId, const ESM::Sound *sound); Sound_Buffer *lookupSound(const std::string &soundId) const;