mirror of https://github.com/axmolengine/axmol.git
77 lines
2.2 KiB
C++
77 lines
2.2 KiB
C++
|
|
#include "config.h"
|
|
|
|
#include "device.h"
|
|
|
|
#include <numeric>
|
|
#include <stddef.h>
|
|
|
|
#include "albit.h"
|
|
#include "alconfig.h"
|
|
#include "backends/base.h"
|
|
#include "core/bformatdec.h"
|
|
#include "core/bs2b.h"
|
|
#include "core/front_stablizer.h"
|
|
#include "core/hrtf.h"
|
|
#include "core/logging.h"
|
|
#include "core/mastering.h"
|
|
#include "core/uhjfilter.h"
|
|
|
|
|
|
namespace {
|
|
|
|
using voidp = void*;
|
|
|
|
} // namespace
|
|
|
|
|
|
/* This should be in core/device.cpp. */
|
|
DeviceBase::DeviceBase(DeviceType type) : Type{type}, mContexts{&sEmptyContextArray}
|
|
{
|
|
}
|
|
|
|
DeviceBase::~DeviceBase()
|
|
{
|
|
auto *oldarray = mContexts.exchange(nullptr, std::memory_order_relaxed);
|
|
if(oldarray != &sEmptyContextArray) delete oldarray;
|
|
}
|
|
|
|
|
|
ALCdevice::~ALCdevice()
|
|
{
|
|
TRACE("Freeing device %p\n", voidp{this});
|
|
|
|
Backend = nullptr;
|
|
|
|
size_t count{std::accumulate(BufferList.cbegin(), BufferList.cend(), size_t{0u},
|
|
[](size_t cur, const BufferSubList &sublist) noexcept -> size_t
|
|
{ return cur + static_cast<uint>(al::popcount(~sublist.FreeMask)); })};
|
|
if(count > 0)
|
|
WARN("%zu Buffer%s not deleted\n", count, (count==1)?"":"s");
|
|
|
|
count = std::accumulate(EffectList.cbegin(), EffectList.cend(), size_t{0u},
|
|
[](size_t cur, const EffectSubList &sublist) noexcept -> size_t
|
|
{ return cur + static_cast<uint>(al::popcount(~sublist.FreeMask)); });
|
|
if(count > 0)
|
|
WARN("%zu Effect%s not deleted\n", count, (count==1)?"":"s");
|
|
|
|
count = std::accumulate(FilterList.cbegin(), FilterList.cend(), size_t{0u},
|
|
[](size_t cur, const FilterSubList &sublist) noexcept -> size_t
|
|
{ return cur + static_cast<uint>(al::popcount(~sublist.FreeMask)); });
|
|
if(count > 0)
|
|
WARN("%zu Filter%s not deleted\n", count, (count==1)?"":"s");
|
|
}
|
|
|
|
void ALCdevice::enumerateHrtfs()
|
|
{
|
|
mHrtfList = EnumerateHrtf(ConfigValueStr(DeviceName.c_str(), nullptr, "hrtf-paths"));
|
|
if(auto defhrtfopt = ConfigValueStr(DeviceName.c_str(), nullptr, "default-hrtf"))
|
|
{
|
|
auto iter = std::find(mHrtfList.begin(), mHrtfList.end(), *defhrtfopt);
|
|
if(iter == mHrtfList.end())
|
|
WARN("Failed to find default HRTF \"%s\"\n", defhrtfopt->c_str());
|
|
else if(iter != mHrtfList.begin())
|
|
std::rotate(mHrtfList.begin(), iter, iter+1);
|
|
}
|
|
}
|