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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
|
#include <exception>
#include <fstream>
#include "../../math/math.h"
#include "../../utils/macros.h"
#include "source.h"
#include "3rdparty/wav/wav.h"
#define STB_VORBIS_HEADER_ONLY
#include "3rdparty/stb/stb_vorbis.c"
namespace jin
{
namespace audio
{
typedef struct SDLSourceCommand
{
typedef enum Action
{
Nothing = 0, //
Play, // ͷʼ
Stop, // ֹͣ
Pause, //
Resume, //
Rewind, //
SetVolume, //
SetLoop, //
SetRate, //
};
Action action;
union {
int _integer;
float _float;
bool _boolean;
const char* _string;
} parameter;
SDLSource* source;
};
typedef MASK enum STATUS
{
PLAYING = 1,
PAUSED = 2,
STOPPED = 4
};
#define Command SDLSourceCommand
#define Action Command::Action
#define Manager SDLSourceManager
shared std::queue<Command*> Manager::commands;
shared std::stack<Command*> Manager::commandsPool;
shared std::vector<SDLSource*> Manager::sources;
shared Manager* Manager::manager = nullptr;
SDLSource* SDLSource::createSource(SourceType format, const char* file)
{
std::ifstream fs(file, std::ios::binary);
fs.seekg(0,std::ios::end);
int size = fs.tellg();
fs.seekg(0, std::ios::beg);
char* buffer = (char*)malloc(size);
memset(buffer, 0, size);
fs.read(buffer, size);
SDLSource* source = createSource(format, buffer, size);
free(buffer);
return source;
}
SDLSource* SDLSource::createSource(SourceType format, void* mem, size_t size)
{
if (mem == nullptr)
return nullptr;
SDLSource* source = new SDLSource();
memset(&source->status, 0, sizeof(status));
memset(&source->raw, 0, sizeof(raw));
try
{
switch (format)
{
case WAV:
source->loadWAV(mem, size);
break;
case OGG:
source->loadOGG(mem, size);
break;
}
}
catch (SourceException& exp)
{
delete source;
return nullptr;
};
return source;
}
SDLSource::SDLSource()
{
}
SDLSource::~SDLSource()
{
delete raw.data;
raw.end = 0;
raw.data = 0;
}
void SDLSource::loadWAV(void* mem, int size)
{
wav_t wav;
if (wav_read(&wav, mem, size) == 0)
{
raw.data = wav.data;
raw.size = wav.length * wav.bitdepth / 8;
raw.end = (char*)raw.data + raw.size;
raw.rate = wav.samplerate;
raw.bitdepth = wav.bitdepth;
raw.samples = raw.size / (wav.bitdepth / 8.f);
raw.channel = wav.channels;
raw.silence = 0;
}
else
throw SourceException();
}
void SDLSource::loadOGG(void* mem, int size)
{
raw.samples = stb_vorbis_decode_memory((unsigned char*)mem, size, (int*)&raw.channel, &raw.rate, (short**)&raw.data) << 1;
raw.size = raw.samples << 1; // 2 bytes each sample
raw.bitdepth = 16;
raw.end = (char*)raw.data + raw.size;
raw.silence = 0;
if (raw.samples < 0)
{
throw SourceException();
}
}
#define ActionNone(T)\
do{\
Command* cmd = Manager::get()->getCommand();\
cmd->action = Action::T; \
cmd->source = this; \
Manager::get()->pushCommand(cmd); \
} while (0)
#define ActionArg(T, ARGT, ARG)\
do{\
Command* cmd = Manager::get()->getCommand();\
cmd->action = Action::T; \
cmd->parameter.ARGT = ARG; \
cmd->source = this; \
Manager::get()->pushCommand(cmd); \
}while(0)
#define ActionInt(T, INT) ActionArg(T, _integer, INT)
#define ActionFloat(T, FLT) ActionArg(T, _float, FLT)
#define ActionString(T, STR) ActionArg(T, _string, STR)
#define ActionBool(T, BOL) ActionArg(T, _boolean, BOL)
void SDLSource::play()
{
ActionNone(Play);
}
void SDLSource::stop()
{
ActionNone(Stop);
}
void SDLSource::pause()
{
ActionNone(Pause);
}
void SDLSource::resume()
{
ActionNone(Resume);
}
void SDLSource::rewind()
{
ActionNone(Rewind);
}
inline bool SDLSource::isStopped() const
{
return is(STOPPED);
}
bool SDLSource::isPaused() const
{
return is(PAUSED);
}
void SDLSource::setPitch(float pitch)
{
}
void SDLSource::setVolume(float volume)
{
ActionFloat(SetVolume, volume);
}
bool SDLSource::setLoop(bool loop)
{
ActionBool(SetLoop, loop);
return false;
}
void SDLSource::setRate(float rate)
{
ActionFloat(SetRate, rate);
}
Manager* Manager::get()
{
return (manager == nullptr ? manager = new Manager() : manager);
}
shared void Manager::processCommands()
{
Command* cmd = nullptr;
SDLSource* source = nullptr;
while (!commands.empty())
{
cmd = commands.front();
source = cmd->source;
if (source != nullptr && cmd != nullptr)
{
switch (cmd->action)
{
case Command::Action::Play:
removeSource(source);
pushSource(source);
source->status.state = PLAYING;
source->status.pos = 0; // rewind
break;
case Command::Action::Stop:
manager->removeSource(source);
source->status.state = STOPPED;
source->status.pos = 0; // rewind
break;
case Command::Action::Pause:
manager->removeSource(source);
source->status.state = PAUSED;
break;
case Command::Action::Resume:
manager->removeSource(source);
manager->pushSource(source);
source->status.state = PLAYING;
break;
case Command::Action::Rewind:
source->status.state = PLAYING;
source->status.pos = 0;
break;
case Command::Action::SetVolume:
//float cmd->parameter._float;
break;
case Command::Action::SetLoop:
source->status.loop = cmd->parameter._boolean;
break;
/*case Command::Action::SetRate:
*/
}
}
commands.pop();
}
}
shared void Manager::processSources(Uint8* buffer, int len)
{
memset(buffer, 0, len);
int16_t* buf16 = (int16_t*)buffer;
int samples = len >> 1;
std::vector<SDLSource*>::iterator it = sources.begin();
SDLSource* source = nullptr;
for (; it != sources.end();)
{
source = *it;
int16_t* data16 = (int16_t*)source->raw.data;
if (source->is(STOPPED))
removeSource(source);
else if (source->is(PAUSED))
continue;
else if (source->is(PLAYING))
{
int16_t* src16 = (int16_t*)((char*)source->raw.data + source->status.pos);
int remainsample = (source->raw.size - source->status.pos) >> 1;
int bound = min(samples, remainsample);
for (int i = 0; i < bound; ++i)
{
buf16[i] += src16[i]; // mix sources
}
source->status.pos += (bound << 1);
if (remainsample < samples)
{
if (source->status.loop)
{
int j = 0;
for (int i = bound; i < samples; ++i)
{
int val = data16[j];
buf16[i] += val;
++j;
}
source->status.pos = (j << 1);
break;
}
else
{
it = sources.erase(it);
continue;
}
}
}
++it;
}
}
shared void Manager::removeSource(SDLSource* source)
{
std::vector<SDLSource*>::iterator it = sources.begin();
for (it = sources.begin(); it != sources.end(); )
{
if (*it == source)
{
it = sources.erase(it);
return;
}
++it;
}
}
shared void Manager::pushSource(SDLSource* source)
{
if(source != nullptr)
sources.push_back(source);
}
shared void Manager::pushCommand(SDLSourceCommand* cmd)
{
commands.push(cmd);
}
shared Command* Manager::getCommand()
{
if (!commandsPool.empty())
{
Command* cmd = commandsPool.top();
commandsPool.pop();
}
return new Command();
}
shared void Manager::collectCommand(Command* cmd)
{
if (cmd != nullptr)
{
commandsPool.push(cmd);
}
}
}
}
|