blob: 26cda205a2c964e751266327b431fa2722f4dd47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#pragma once
#include <vector>
#include <filesystem>
#include <regex>
#include <shared_mutex>
enum class AudioSelectionStrategy
{
INVALID = -1,
SEQUENTIAL,
RANDOM
};
class EventOverrideData
{
public:
EventOverrideData(const std::string&, const fs::path&);
EventOverrideData();
public:
bool LoadedSuccessfully = false;
std::vector<std::string> EventIds = {};
std::vector<std::pair<std::string, std::regex>> EventIdsRegex = {};
std::vector<std::pair<size_t, std::unique_ptr<uint8_t[]>>> Samples = {};
AudioSelectionStrategy Strategy = AudioSelectionStrategy::SEQUENTIAL;
size_t CurrentIndex = 0;
bool EnableOnLoopedSounds = false;
};
class CustomAudioManager
{
public:
bool TryLoadAudioOverride(const fs::path&);
void ClearAudioOverrides();
std::shared_mutex m_loadingMutex;
std::unordered_map<std::string, std::shared_ptr<EventOverrideData>> m_loadedAudioOverrides = {};
std::unordered_map<std::string, std::shared_ptr<EventOverrideData>> m_loadedAudioOverridesRegex = {};
};
extern CustomAudioManager g_CustomAudioManager;
|