blob: 7dec4c3a509a0fa9a0ffdca91afb62f4a87764e2 (
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
47
48
49
50
51
|
/**
* @file audio.cpp
* Handles audio loading and playback
*
* Copyright (C) 2019 Clyne Sullivan
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "audio.hpp"
AudioSystem::AudioSystem(void) :
device(nullptr, [](ALCdevice *d) { alcCloseDevice(d); }),
context(nullptr, [](ALCcontext *c) { alcDestroyContext(c); }) {}
AudioSystem::~AudioSystem(void)
{
// Delete context before device
context.get_deleter()(context.get());
}
void AudioSystem::configure([[maybe_unused]] entityx::EntityManager& entities,
[[maybe_unused]] entityx::EventManager& events)
{
// Access device
device.reset(alcOpenDevice(nullptr));
if (!device)
return; // TODO Uh oh
// Create context
context.reset(alcCreateContext(device.get(), nullptr));
if (!alcMakeContextCurrent(context.get()))
return; // TODO Another uh oh
}
void AudioSystem::update([[maybe_unused]] entityx::EntityManager& entities,
[[maybe_unused]] entityx::EventManager& events,
[[maybe_unused]] entityx::TimeDelta dt)
{}
|