TDME2 1.9.121
Audio.cpp
Go to the documentation of this file.
1#include <tdme/audio/Audio.h>
2
3#if defined(__APPLE__)
4 #include <OpenAL/al.h>
5 #include <OpenAL/alc.h>
6#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__linux__) || defined(_WIN32) || defined(_WIN64) || defined(__HAIKU__)
7 #include <AL/al.h>
8 #include <AL/alc.h>
9#endif
10
11#include <array>
12#include <map>
13#include <string>
14#include <vector>
15
16#include <tdme/tdme.h>
18#include <tdme/math/Vector3.h>
20
21using std::array;
22using std::map;
23using std::string;
24using std::vector;
25
30
31Audio::Audio()
32{
33 // TODO: error handling
34 device = alcOpenDevice(NULL);
35 context = alcCreateContext(device, NULL);
36 alcMakeContextCurrent(context);
37
38 //
39 listenerPosition.set(0.0f, 0.0f, 0.0);
40 listenerVelocity.set(0.0f, 0.0f, 0.0);
41 listenerOrientationAt.set(0.0f, 0.0f, 1.0f);
42 listenerOrientationUp.set(0.0f, 1.0f, 0.0f);
43
44 // init listener position
45 update();
46}
47
48Audio* Audio::instance = nullptr;
49
50AudioEntity* Audio::getEntity(const string& id)
51{
52 auto audioEntityIt = audioEntities.find(id);
53 if (audioEntityIt == audioEntities.end()) return nullptr;
54 return audioEntityIt->second;
55}
56
58{
59 if (entity->initialize() == true) {
60 auto audioEntityIt = audioEntities.find(entity->getId());
61 if (audioEntityIt != audioEntities.end()) {
62 // check if we want to add this entity a second time
63 if (entity == audioEntityIt->second) {
64 Console::println("Audio::addEntity(): " + entity->getId() + ": entity already added!");
65 return;
66 }
67 // remove old other entity
68 removeEntity(entity->getId());
69 }
70 audioEntities[entity->getId()] = entity;
71 } else {
72 Console::println(string("Audio::addEntity(): adding '" + entity->getId() + "' failed"));
73 }
74}
75
76void Audio::removeEntity(const string& id)
77{
78 auto audioEntityIt = audioEntities.find(id);
79 if (audioEntityIt != audioEntities.end()) {
80 auto audioEntity = audioEntityIt->second;
81 audioEntity->stop();
82 audioEntity->dispose();
83 audioEntities.erase(audioEntityIt);
84 delete audioEntity;
85 }
86}
87
89{
90 // determine keys to remove
91 vector<string> keys;
92 for (auto it = audioEntities.begin(); it != audioEntities.end(); ++it) {
93 keys.push_back(it->first);
94 }
95
96 // remove entities
97 for (auto& key: keys) {
98 removeEntity(key);
99 }
100}
101
103{
104 reset();
105 alcCloseDevice(device);
106}
107
109{
110 // update audio entities
111 for (auto it = audioEntities.begin(); it != audioEntities.end(); ++it) {
112 it->second->update();
113 }
114
115 // update listener position
116 alListenerfv(AL_POSITION, listenerPosition.getArray().data());
117 alListenerfv(AL_VELOCITY, listenerVelocity.getArray().data());
118 auto& listenerOrientationAtArray = listenerOrientationAt.getArray();
119 auto& listenerOrientationUpArray = listenerOrientationUp.getArray();
120 array<float, 6> listenerOrientation = {
121 listenerOrientationAtArray[0],
122 listenerOrientationAtArray[1],
123 listenerOrientationAtArray[2],
124 listenerOrientationUpArray[0],
125 listenerOrientationUpArray[1],
126 listenerOrientationUpArray[2]
127 };
128 alListenerfv(AL_ORIENTATION, listenerOrientation.data());
129}
Audio entity base class.
Definition: AudioEntity.h:20
virtual bool initialize()=0
Initiates this OpenAL entity to OpenAl.
virtual const string & getId() const
Definition: AudioEntity.h:64
Interface to audio module.
Definition: Audio.h:30
Vector3 listenerOrientationAt
Definition: Audio.h:48
Vector3 listenerPosition
Definition: Audio.h:46
ALCdevice * device
Definition: Audio.h:40
void addEntity(AudioEntity *entity)
Adds a audio entity.
Definition: Audio.cpp:57
Vector3 listenerOrientationUp
Definition: Audio.h:49
map< string, AudioEntity * > audioEntities
Definition: Audio.h:43
void shutdown()
Shuts the audio down.
Definition: Audio.cpp:102
void removeEntity(const string &id)
Removes an audio entity.
Definition: Audio.cpp:76
void update()
Update and transfer audio entity states to open AL.
Definition: Audio.cpp:108
static STATIC_DLL_IMPEXT Audio * instance
Definition: Audio.h:38
AudioEntity * getEntity(const string &id)
Returns an audio entity identified by given id.
Definition: Audio.cpp:50
void reset()
Clears all audio entities.
Definition: Audio.cpp:88
Vector3 listenerVelocity
Definition: Audio.h:47
ALCcontext * context
Definition: Audio.h:41
3D vector 3 class
Definition: Vector3.h:22
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
array< float, 3 > & getArray() const
Definition: Vector3.h:171
Console class.
Definition: Console.h:26