5 #include <OpenAL/alc.h>
6#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__linux__) || defined(_WIN32) || defined(_WIN64) || defined(__HAIKU__)
34 device = alcOpenDevice(NULL);
54 return audioEntityIt->second;
63 if (entity == audioEntityIt->second) {
64 Console::println(
"Audio::addEntity(): " + entity->
getId() +
": entity already added!");
72 Console::println(
string(
"Audio::addEntity(): adding '" + entity->
getId() +
"' failed"));
80 auto audioEntity = audioEntityIt->second;
82 audioEntity->dispose();
93 keys.push_back(it->first);
97 for (
auto& key: keys) {
112 it->second->update();
120 array<float, 6> listenerOrientation = {
121 listenerOrientationAtArray[0],
122 listenerOrientationAtArray[1],
123 listenerOrientationAtArray[2],
124 listenerOrientationUpArray[0],
125 listenerOrientationUpArray[1],
126 listenerOrientationUpArray[2]
128 alListenerfv(AL_ORIENTATION, listenerOrientation.data());
virtual bool initialize()=0
Initiates this OpenAL entity to OpenAl.
virtual const string & getId() const
Interface to audio module.
Vector3 listenerOrientationAt
void addEntity(AudioEntity *entity)
Adds a audio entity.
Vector3 listenerOrientationUp
map< string, AudioEntity * > audioEntities
void shutdown()
Shuts the audio down.
void removeEntity(const string &id)
Removes an audio entity.
void update()
Update and transfer audio entity states to open AL.
static STATIC_DLL_IMPEXT Audio * instance
AudioEntity * getEntity(const string &id)
Returns an audio entity identified by given id.
void reset()
Clears all audio entities.
Vector3 & set(float x, float y, float z)
Set up vector.
array< float, 3 > & getArray() const