mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-05 19:31:04 +00:00
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
// Luanti
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
// Copyright (C) 2023 DS
|
|
|
|
#include "al_extensions.h"
|
|
|
|
#include "settings.h"
|
|
#include "util/string.h"
|
|
#include <unordered_set>
|
|
|
|
namespace sound {
|
|
|
|
ALExtensions::ALExtensions(const ALCdevice *deviceHandle [[maybe_unused]])
|
|
{
|
|
auto blacklist_vec = str_split(g_settings->get("sound_extensions_blacklist"), ',');
|
|
for (auto &s : blacklist_vec) {
|
|
s = trim(s);
|
|
}
|
|
std::unordered_set<std::string> blacklist;
|
|
blacklist.insert(blacklist_vec.begin(), blacklist_vec.end());
|
|
|
|
{
|
|
constexpr const char *ext_name = "AL_SOFT_direct_channels_remix";
|
|
bool blacklisted = blacklist.find(ext_name) != blacklist.end();
|
|
if (blacklisted)
|
|
infostream << "ALExtensions: Blacklisted: " << ext_name << std::endl;
|
|
#ifndef AL_SOFT_direct_channels_remix
|
|
infostream << "ALExtensions: Not compiled with: " << ext_name << std::endl;
|
|
#else
|
|
bool found = alIsExtensionPresent(ext_name);
|
|
if (found)
|
|
infostream << "ALExtensions: Found: " << ext_name << std::endl;
|
|
else
|
|
infostream << "ALExtensions: Not found: " << ext_name << std::endl;
|
|
|
|
if (found && !blacklisted) {
|
|
have_ext_AL_SOFT_direct_channels_remix = true;
|
|
}
|
|
#endif
|
|
}
|
|
}
|
|
|
|
}
|