forked from usineur/bermuda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmixer_soft.cpp
More file actions
388 lines (348 loc) · 8.8 KB
/
mixer_soft.cpp
File metadata and controls
388 lines (348 loc) · 8.8 KB
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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
/*
* Bermuda Syndrome engine rewrite
* Copyright (C) 2007-2011 Gregory Montoir
*/
#include "file.h"
#include "mixer.h"
#include "systemstub.h"
#ifdef BERMUDA_VORBIS
#include <vorbis/vorbisfile.h>
#endif
static const int _fracStepBits = 8;
static const int _sfxVolume = 256;
static const int _musicVolume = 192;
struct LockAudioStack {
LockAudioStack(SystemStub *stub) : _stub(stub) {
_stub->lockAudio();
}
~LockAudioStack() {
_stub->unlockAudio();
}
SystemStub *_stub;
};
static void mixSample(int16_t &dst, int sample, int volume) {
int pcm = dst + ((sample * volume) >> 8);
if (pcm < -32768) {
pcm = -32768;
} else if (pcm > 32767) {
pcm = 32767;
}
dst = (int16_t)pcm;
}
struct MixerChannel {
virtual ~MixerChannel() {}
virtual bool load(File *f, int mixerSampleRate) = 0;
virtual int read(int16_t *dst, int samples) = 0;
int id;
};
struct MixerChannel_Wav : MixerChannel {
MixerChannel_Wav()
: _buf(0), _bufSize(0), _bufReadOffset(0), _bufReadStep(0) {
}
virtual ~MixerChannel_Wav() {
if (_buf) {
free(_buf);
_buf = 0;
}
}
virtual bool load(File *f, int mixerSampleRate) {
char buf[8];
f->seek(8); // skip RIFF header
f->read(buf, 8);
if (memcmp(buf, "WAVEfmt ", 8) == 0) {
f->readUint32LE(); // fmtLength
int compression = f->readUint16LE();
int channels = f->readUint16LE();
int sampleRate = f->readUint32LE();
f->readUint32LE(); // averageBytesPerSec
f->readUint16LE(); // blockAlign
_bitsPerSample = f->readUint16LE();
if (compression != 1 ||
(channels != 1 && channels != 2) ||
(sampleRate != 11025 && sampleRate != 22050 && sampleRate != 44100) ||
(_bitsPerSample != 8 && _bitsPerSample != 16)) {
warning("Unhandled wav/pcm format compression %d channels %d rate %d bits %d", compression, channels, sampleRate, _bitsPerSample);
return false;
}
_stereo = (channels == 2);
_bufReadStep = (sampleRate << _fracStepBits) / mixerSampleRate;
f->read(buf, 4);
if (memcmp(buf, "data", 4) == 0) {
_bufSize = f->readUint32LE();
_buf = (uint8_t *)malloc(_bufSize);
if (_buf) {
f->read(_buf, _bufSize);
return true;
}
}
}
return false;
}
bool readSample(int16_t &sample) {
switch (_bitsPerSample) {
case 8:
if ((_bufReadOffset >> _fracStepBits) >= _bufSize) { // end of buffer
return false;
}
sample = (_buf[_bufReadOffset >> _fracStepBits] << 8) ^ 0x8000;
break;
case 16:
if ((_bufReadOffset >> _fracStepBits) * 2 >= _bufSize) { // end of buffer
return false;
}
sample = READ_LE_UINT16(&_buf[(_bufReadOffset >> _fracStepBits) * 2]);
break;
}
_bufReadOffset += _bufReadStep;
return true;
}
virtual int read(int16_t *dst, int samples) {
for (int i = 0; i < samples; ++i) {
int16_t sampleL = 0, sampleR;
if (!readSample(sampleL)) {
return i;
}
sampleR = sampleL;
if (_stereo && !readSample(sampleR)) {
return i;
}
mixSample(*dst++, sampleL, _sfxVolume);
mixSample(*dst++, sampleR, _sfxVolume);
}
return samples;
}
uint8_t *_buf;
int _bufSize;
int _bufReadOffset;
int _bufReadStep;
int _bitsPerSample;
bool _stereo;
};
#ifdef BERMUDA_VORBIS
static size_t file_vorbis_read_helper(void *ptr, size_t size, size_t nmemb, void *datasource) {
if (size != 0 && nmemb != 0) {
int n = ((File *)datasource)->read(ptr, size * nmemb);
if (n > 0) {
return n / size;
}
}
return 0;
}
static int file_vorbis_seek_helper(void *datasource, ogg_int64_t offset, int whence) {
((File *)datasource)->seek(offset, whence);
return 0;
}
static int file_vorbis_close_helper(void *datasource) {
((File *)datasource)->close();
delete ((File *)datasource);
return 0;
}
static long file_vorbis_tell_helper(void *datasource) {
return ((File *)datasource)->tell();
}
struct MixerChannel_Vorbis : MixerChannel {
MixerChannel_Vorbis()
: _loop(true), _open(false), _readBuf(0), _readBufSize(0) {
}
virtual ~MixerChannel_Vorbis() {
if (_open) {
ov_clear(&_ovf);
}
free(_readBuf);
}
virtual bool load(File *f, int mixerSampleRate) {
ov_callbacks ovcb;
ovcb.read_func = file_vorbis_read_helper;
ovcb.seek_func = file_vorbis_seek_helper;
ovcb.close_func = file_vorbis_close_helper;
ovcb.tell_func = file_vorbis_tell_helper;
if (ov_open_callbacks(f, &_ovf, 0, 0, ovcb) < 0) {
warning("Invalid .ogg file");
return false;
}
_open = true;
vorbis_info *vi = ov_info(&_ovf, -1);
if (vi->channels != 2 || vi->rate != mixerSampleRate) {
warning("Unhandled ogg/pcm format ch %d rate %d", vi->channels, vi->rate);
return false;
}
return true;
}
virtual int read(int16_t *dst, int samples) {
int dstSize = samples * sizeof(int16_t) * 2;
if (dstSize > _readBufSize) {
_readBufSize = dstSize;
free(_readBuf);
_readBuf = (char *)malloc(_readBufSize);
if (!_readBuf) {
return 0;
}
}
int readSize = 0;
while (dstSize > 0) {
int len = ov_read(&_ovf, _readBuf, dstSize, 0, 2, 1, 0);
if (len < 0) {
// error in decoder
return 0;
}
if (len == 0) {
if (_loop) {
ov_raw_seek(&_ovf, 0);
continue;
}
break;
}
// mix pcm data
for (unsigned int i = 0; i < len / sizeof(int16_t); ++i) {
const int16_t sample = (int16_t)READ_LE_UINT16(&_readBuf[i * 2]);
mixSample(dst[readSize + i], sample, _musicVolume);
}
readSize += len / sizeof(int16_t);
dstSize -= len;
}
return readSize;
}
OggVorbis_File _ovf;
bool _loop;
bool _open;
char *_readBuf;
int _readBufSize;
};
#endif
struct MixerSoftware: Mixer {
static const int kMaxChannels = 4;
SystemStub *_stub;
int _channelIdSeed;
bool _open;
MixerChannel *_channels[kMaxChannels];
MixerSoftware(SystemStub *stub)
: _stub(stub), _channelIdSeed(0), _open(false) {
memset(_channels, 0, sizeof(_channels));
}
virtual ~MixerSoftware() {
for (int i = 0; i < kMaxChannels; ++i) {
if (_channels[i]) {
delete _channels[i];
}
}
}
virtual void open() {
if (!_open) {
_stub->startAudio(MixerSoftware::mixCallback, this);
_open = true;
}
}
virtual void close() {
if (_open) {
_stub->stopAudio();
_open = false;
}
}
void startSound(File *f, int *id, MixerChannel *mc) {
if (mc->load(f, _stub->getOutputSampleRate()) && bindChannel(mc, id)) {
return;
}
*id = kDefaultSoundId;
delete mc;
}
virtual void playSound(File *f, int *id) {
debug(DBG_MIXER, "Mixer::playSound()");
LockAudioStack las(_stub);
startSound(f, id, new MixerChannel_Wav);
}
virtual void playMusic(File *f, int *id) {
debug(DBG_MIXER, "Mixer::playMusic()");
#ifdef BERMUDA_VORBIS
LockAudioStack las(_stub);
startSound(f, id, new MixerChannel_Vorbis);
#endif
}
virtual bool isSoundPlaying(int id) {
debug(DBG_MIXER, "Mixer::isSoundPlaying() 0x%X", id);
if (id == kDefaultSoundId) {
return false;
}
LockAudioStack las(_stub);
const int channel = getChannelFromSoundId(id);
assert(channel >= 0 && channel < kMaxChannels);
MixerChannel *mc = _channels[channel];
return (mc && mc->id == id);
}
virtual void stopSound(int id) {
debug(DBG_MIXER, "Mixer::stopSound() 0x%X", id);
if (id == kDefaultSoundId) {
return;
}
LockAudioStack las(_stub);
const int channel = getChannelFromSoundId(id);
assert(channel >= 0 && channel < kMaxChannels);
MixerChannel *mc = _channels[channel];
if (mc && mc->id == id) {
delete mc;
_channels[channel] = 0;
}
}
virtual void stopAll() {
debug(DBG_MIXER, "Mixer::stopAll()");
LockAudioStack las(_stub);
for (int i = 0; i < kMaxChannels; ++i) {
if (_channels[i]) {
delete _channels[i];
_channels[i] = 0;
}
}
}
virtual void setMusicMix(void *param, void (*mix)(void *, uint8_t *, int)) {
if (mix) {
_stub->startAudio(mix, param);
} else {
_stub->startAudio(mixCallback, this);
}
}
void mix(int16_t *buf, int len) {
assert((len & 1) == 0);
memset(buf, 0, len * sizeof(int16_t));
for (int i = 0; i < kMaxChannels; ++i) {
MixerChannel *mc = _channels[i];
if (mc) {
if (mc->read(buf, len / 2) <= 0) {
delete mc;
_channels[i] = 0;
}
}
}
}
static void mixCallback(void *param, uint8_t *buf, int len) {
assert((len & 1) == 0);
((MixerSoftware *)param)->mix((int16_t *)buf, len / 2);
}
int generateSoundId(int channel) {
++_channelIdSeed;
_channelIdSeed &= 0xFFFF;
assert(channel >= 0 && channel < 16);
return (_channelIdSeed << 4) | channel;
}
int getChannelFromSoundId(int id) {
return id & 15;
}
bool bindChannel(MixerChannel *mc, int *id) {
for (int i = 0; i < kMaxChannels; ++i) {
if (!_channels[i]) {
_channels[i] = mc;
*id = mc->id = generateSoundId(i);
return true;
}
}
return false;
}
void unbindChannel(int channel) {
assert(channel >= 0 && channel < kMaxChannels);
if (_channels[channel]) {
delete _channels[channel];
_channels[channel] = 0;
}
}
};
Mixer *Mixer_Software_create(SystemStub *stub) {
return new MixerSoftware(stub);
}