TDME2 1.9.121
AudioStream.cpp
Go to the documentation of this file.
2
3#if defined(__APPLE__)
4 #include <OpenAL/al.h>
5#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__linux__) || defined(_WIN32) || defined(__HAIKU__)
6 #include <AL/al.h>
7#endif
8
9#include <array>
10#include <string>
11#include <vector>
12
13#include <tdme/tdme.h>
14#include <tdme/audio/Audio.h>
15#include <tdme/math/Vector3.h>
19
20using std::array;
21using std::string;
22using std::to_string;
23using std::vector;
24
30
31AudioStream::AudioStream(const string& id) : AudioEntity(id)
32{
33 initiated = false;
35 sampleRate = 0;
36 channels = 0;
37 data = nullptr;
38 format = -1;
39}
40
42}
43
44void AudioStream::setParameters(uint32_t sampleRate, uint8_t channels, const uint32_t bufferSize) {
45 this->sampleRate = sampleRate;
46 this->channels = channels;
47 if (this->data != nullptr) delete data;
48 this->data = ByteBuffer::allocate(bufferSize);
49}
50
52 ALint state;
53 alGetSourcei(alSourceId, AL_SOURCE_STATE, &state);
54 return state == AL_PLAYING;
55}
56
58{
59 return isPlayingBuffers() == true || playing == true;
60}
61
63{
64}
65
67{
68 if (initiated == false)
69 return;
70
71 //
72 stop();
73
74 // update AL properties
76 ALsizei buffersToPlay = 0;
77 for (auto i = 0; i < alBufferIds.size(); i++) {
78 data->clear();
80 // skip if no more data is available
81 if (data->getPosition() == 0) break;
82 // otherwise upload
83 alBufferData(alBufferIds[i], format, data->getBuffer(), data->getPosition(), sampleRate);
84 //
85 if (alGetError() != AL_NO_ERROR) {
86 Console::println(string("AudioStream::play(): '"+ id + "': Could not upload buffer"));
87 }
88 buffersToPlay++;
89 }
90
91 alSourceQueueBuffers(alSourceId, buffersToPlay, alBufferIds.data());
92 if (alGetError() != AL_NO_ERROR) {
93 Console::println(string("AudioStream::play(): '" + id + "': Could not queue buffers"));
94 }
95 alSourcePlay(alSourceId);
96 if (alGetError() != AL_NO_ERROR) {
97 Console::println(string("AudioStream::play(): '"+ id + "': Could not play source"));
98 }
99
100 //
101 playing = true;
102}
103
105{
106 if (initiated == false)
107 return;
108
109 alSourcePause(alSourceId);
110 if (alGetError() != AL_NO_ERROR) {
111 Console::println(string("AudioStream::pause(): '" + id + "': Could not pause"));
112 }
113}
114
116{
117 if (initiated == false)
118 return;
119
120 alSourceStop(alSourceId);
121 if (alGetError() != AL_NO_ERROR) {
122 Console::println(string("AudioStream::stop(): '" + id + "': Could not stop"));
123 }
124 // determine queued buffers
125 ALint queuedBuffers;
126 alGetSourcei(alSourceId, AL_BUFFERS_QUEUED, &queuedBuffers);
127 if (alGetError() != AL_NO_ERROR) {
128 Console::println(string("AudioStream::stop(): '" + id + "': Could not determine queued buffers"));
129 }
130 // unqueue buffers
131 if (queuedBuffers > 0) {
132 vector<uint32_t> removedBuffers;
133 removedBuffers.resize(queuedBuffers);
134 alSourceUnqueueBuffers(alSourceId, queuedBuffers, removedBuffers.data());
135 if (alGetError() != AL_NO_ERROR) {
136 Console::println(string("AudioStream::stop(): '" + id + "': Could not unqueue buffers"));
137 }
138 }
139
140 //
141 playing = false;
142}
143
145{
146 switch (channels) {
147 case(1): format = AL_FORMAT_MONO16; break;
148 case(2): format = AL_FORMAT_STEREO16; break;
149 default:
150 Console::println(string("AudioStream::initialize(): '" + id + "': Unsupported number of channels"));
151 }
152
153 alGenBuffers(alBufferIds.size(), alBufferIds.data());
154 if (alGetError() != AL_NO_ERROR) {
155 Console::println(string("AudioStream::initialize(): '" + id + "': Could not generate buffer"));
156 return false;
157 }
158 // create source
159 alGenSources(1, &alSourceId);
160 if (alGetError() != AL_NO_ERROR) {
161 Console::println(string("AudioStream::initialize(): '" + id + "': Could not generate source"));
162 dispose();
163 return false;
164 }
165 // initiate sound properties
167 initiated = true;
168 return true;
169}
170
172{
173 if (initiated == false)
174 return;
175
176 // determine processed buffers
177 int32_t processedBuffers;
178 alGetSourcei(alSourceId, AL_BUFFERS_PROCESSED, &processedBuffers);
179 if (alGetError() != AL_NO_ERROR) {
180 Console::println(string("AudioStream::update(): '" + id + "': Could not determine processed buffers"));
181 }
182 if (isPlayingBuffers() == false && playing == true) {
183 play();
184 } else {
185 while (processedBuffers > 0) {
186 // get a processed buffer id and unqueue it
187 uint32_t processedBufferId;
188 alSourceUnqueueBuffers(alSourceId, 1, &processedBufferId);
189 if (alGetError() != AL_NO_ERROR) {
190 Console::println(string("AudioStream::update(): '" + id + "': Could not unqueue buffers"));
191 }
192 // fill processed buffer again
193 data->clear();
195 // stop buffer if not filled
196 if (data->getPosition() == 0) {
197 playing = false;
198 } else {
199 // upload buffer data
200 alBufferData(processedBufferId, format, data->getBuffer(), data->getPosition(), sampleRate);
201 if (alGetError() != AL_NO_ERROR) {
202 Console::println(string("AudioStream::update(): '" + id + "': Could not upload buffer"));
203 }
204 // queue it
205 alSourceQueueBuffers(alSourceId, 1, &processedBufferId);
206 if (alGetError() != AL_NO_ERROR) {
207 Console::println(string("AudioStream::update(): '" + id + "': Could not queue buffer"));
208 }
209 // stop buffer if not filled completely
210 if (data->getPosition() < data->getCapacity()) {
211 playing = false;
212 }
213 }
214 // processed it
215 processedBuffers--;
216 }
217 }
218 // update AL properties
220}
221
223{
224 // update sound properties
225 alSourcef(alSourceId, AL_PITCH, pitch);
226 alSourcef(alSourceId, AL_GAIN, gain);
227 alSourcefv(alSourceId, AL_POSITION, sourcePosition.getArray().data());
228 alSourcefv(alSourceId, AL_DIRECTION, sourceDirection.getArray().data());
229 alSourcefv(alSourceId, AL_VELOCITY, sourceVelocity.getArray().data());
230 if (fixed == true) {
231 alSourcef(alSourceId, AL_ROLLOFF_FACTOR, 0.0f);
232 alSourcei(alSourceId, AL_SOURCE_RELATIVE, AL_TRUE);
233 } else {
234 alSourcef(alSourceId, AL_ROLLOFF_FACTOR, 1.0f);
235 alSourcei(alSourceId, AL_SOURCE_RELATIVE, AL_FALSE);
236 }
237}
238
240{
241 if (initiated == false)
242 return;
243
245 alDeleteSources(1, &alSourceId);
246 if (alGetError() != AL_NO_ERROR) {
247 Console::println(string("AudioStream::dispose(): '" + id + "': Could not delete source"));
248 }
250 }
251 // if (alBufferIds != nullptr) {
252 alDeleteBuffers(alBufferIds.size(), alBufferIds.data());
253 if (alGetError() != AL_NO_ERROR) {
254 Console::println(string("AudioStream::dispose(): '" + id + "': Could not delete buffers"));
255 }
256 // alBufferIds = nullptr;
257 // }
258
259 if (data != nullptr) {
260 delete data;
261 data = nullptr;
262 }
263 initiated = false;
264}
Audio entity base class.
Definition: AudioEntity.h:20
virtual void play() override
Plays this audio entity.
Definition: AudioStream.cpp:66
virtual void rewind() override
Rewinds this audio entity.
Definition: AudioStream.cpp:62
virtual void dispose() override
Dispose this entity from OpenAL.
void updateProperties()
Updates properties to Open AL.
virtual void update() override
Commits properties to OpenAl.
virtual bool initialize() override
Initiates this OpenAL entity to OpenAl.
virtual void setParameters(uint32_t sampleRate, uint8_t channels, const uint32_t bufferSize=32768)
Set audio initialization parameters.
Definition: AudioStream.cpp:44
virtual bool isPlaying() override
Definition: AudioStream.cpp:57
array< uint32_t, 2 > alBufferIds
Definition: AudioStream.h:29
virtual void fillBuffer(ByteBuffer *data)=0
Fill buffer.
virtual ~AudioStream()
Destructor.
Definition: AudioStream.cpp:41
virtual void stop() override
Stops this audio entity.
virtual void pause() override
Pauses this audio entity.
Interface to audio module.
Definition: Audio.h:30
static constexpr int32_t ALSOURCEID_NONE
Definition: Audio.h:37
3D vector 3 class
Definition: Vector3.h:22
array< float, 3 > & getArray() const
Definition: Vector3.h:171
uint8_t * getBuffer()
Definition: Buffer.h:131
virtual int32_t getPosition()
Definition: Buffer.h:84
virtual int32_t getCapacity()
Definition: Buffer.h:77
Buffer * clear()
Clear.
Definition: Buffer.h:69
Byte buffer class.
Definition: ByteBuffer.h:24
Console class.
Definition: Console.h:26