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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
|
//"use strict";
var LibraryOpenAL = {
$AL__deps: ['$Browser'],
$AL: {
contexts: [],
currentContext: null,
},
alcProcessContext: function(context) {},
alcSuspendContext: function(context) {},
alcMakeContextCurrent: function(context) {
if (context == 0) {
AL.currentContext = null;
} else {
AL.currentContext = AL.contexts[context - 1];
}
},
alcDestroyContext: function(context) {
// Stop playback, etc
},
alcCloseDevice: function(device) {
// Stop playback, etc
},
alcOpenDevice: function(deviceName) {
if (typeof(AudioContext) == "function" ||
typeof(webkitAudioContext) == "function") {
return 1; // non-null pointer -- we just simulate one device
} else {
return 0;
}
},
alcCreateContext: function(device, attrList) {
if (device != 1) {
return 0;
}
if (attrList) {
console.log("The attrList argument of alcCreateContext is not supported yet");
return 0;
}
var ctx;
try {
ctx = new AudioContext();
} catch (e) {
try {
ctx = new webkitAudioContext();
} catch (e) {}
}
if (ctx) {
AL.contexts.push({ctx: ctx, err: 0, src: [], buf: []});
return AL.contexts.length;
} else {
return 0;
}
},
alGetError: function() {
if (!AL.currentContext) {
return 0xA004 /* AL_INVALID_OPERATION */;
} else {
return AL.currentContext.err;
}
},
alGenSources: function(count, sources) {
if (!AL.currentContext) {
console.error("alGenSources called without a valid context");
return;
}
for (var i = 0; i < count; ++i) {
var gain = AL.currentContext.ctx.createGain();
var panner = AL.currentContext.ctx.createPanner();
if (typeof(webkitAudioContext) == 'function') {
gain.connect(panner);
panner.connect(AL.currentContext.ctx.destination);
} else {
// Work around a Firefox bug (bug 849916)
gain.connect(AL.currentContext.ctx.destination);
}
gain.gain.value = 1; // work around a Firefox bug (bug 850970)
AL.currentContext.src.push({
loop: false,
buffer: null,
gain: gain,
panner: panner,
paused: false,
playTime: -1,
pausedTime: 0
});
{{{ makeSetValue('sources', 'i', 'AL.currentContext.src.length', 'i32') }}};
}
},
alSourcei: function(source, param, value) {
if (!AL.currentContext) {
console.error("alSourcei called without a valid context");
return;
}
if (source > AL.currentContext.src.length) {
console.error("alSourcei called with an invalid source");
return;
}
switch (param) {
case 0x1007 /* AL_LOOPING */:
AL.currentContext.src[source - 1].loop = (value != 0 /* AL_FALSE */);
break;
case 0x1009 /* AL_BUFFER */:
if (value == 0) {
AL.currentContext.src[source - 1].buffer = null;
} else {
AL.currentContext.src[source - 1].buffer = AL.currentContext.buf[value - 1].buf;
}
break;
default:
console.log("alSourcei with param " + param + " not implemented yet");
break;
}
},
alSourcef: function(source, param, value) {
if (!AL.currentContext) {
consoue.error("alSourcef called without a valid context");
return;
}
if (source > AL.currentContext.src.length) {
console.error("alSourcef called with an invalid source");
return;
}
switch (param) {
case 0x100A /* AL_GAIN */:
AL.currentContext.src[source - 1].gain.gain.value = value;
break;
case 0x1003 /* AL_PITCH */:
console.log("alSourcef was called with AL_PITCH, but Web Audio does not support static pitch changes");
break;
default:
console.log("alSourcef with param " + param + " not implemented yet");
break;
}
},
alSourcefv: function(source, param, value) {
if (!AL.currentContext) {
consoue.error("alSourcefv called without a valid context");
return;
}
if (source > AL.currentContext.src.length) {
console.error("alSourcefv called with an invalid source");
return;
}
switch (param) {
case 0x1004 /* AL_POSITION */:
AL.currentContext.src[source - 1].panner.setPosition(
{{{ makeGetValue('value', '0', 'float') }}},
{{{ makeGetValue('value', '1', 'float') }}},
{{{ makeGetValue('value', '2', 'float') }}}
);
break;
case 0x1006 /* AL_VELOCITY */:
AL.currentContext.src[source - 1].panner.setVelocity(
{{{ makeGetValue('value', '0', 'float') }}},
{{{ makeGetValue('value', '1', 'float') }}},
{{{ makeGetValue('value', '2', 'float') }}}
);
break;
default:
console.log("alSourcefv with param " + param + " not implemented yet");
break;
}
},
alSourceQueueBuffers: function(source, count, buffers) {
if (!AL.currentContext) {
console.error("alSourceQueueBuffers called without a valid context");
return;
}
if (source > AL.currentContext.src.length) {
console.error("alSourceQueueBuffers called with an invalid source");
return;
}
if (count != 1) {
console.error("Queuing multiple buffers using alSourceQueueBuffers is not supported yet");
return;
}
for (var i = 0; i < count; ++i) {
var buffer = {{{ makeGetValue('buffers', 'i', 'i32') }}};
if (buffer > AL.currentContext.buf.length) {
console.error("alSourceQueueBuffers called with an invalid buffer");
return;
}
AL.currentCOntext.src[source - 1].buffer = AL.currentContext.buf[buffer - 1].buf;
}
},
alSourceUnqueueBuffers: function(source, count, buffers)
{
if (!AL.currentContext) {
console.error("alSourceUnqueueBuffers called without a valid context");
return;
}
if (source > AL.currentContext.src.length) {
console.error("alSourceUnqueueBuffers called with an invalid source");
return;
}
if (count != 1) {
console.error("Queuing multiple buffers using alSourceUnqueueBuffers is not supported yet");
return;
}
for (var i = 0; i < count; ++i) {
var buffer = AL.currentContext.src[source - 1].buffer;
for (var j = 0; j < AL.currentContext.buf.length; ++j) {
if (buffer == AL.currentContext.buf[j].buf) {
{{{ makeSetValue('buffers', 'i', 'j+1', 'i32') }}};
AL.currentContext.src[source - 1].buffer = null;
break;
}
}
}
},
alDeleteBuffers: function(count, buffers)
{
if (!AL.currentContext) {
console.error("alDeleteBuffers called without a valid context");
return;
}
for (var i = 0; i < count; ++i) {
var bufferIdx = {{{ makeGetValue('buffers', 'i', 'i32') }}} - 1;
var buffer = AL.currentContext.buf[bufferIdx].buf;
for (var j = 0; j < AL.currentContext.src.length; ++j) {
if (buffer == AL.currentContext.src[j].buffer) {
AL.currentContext.err = 0xA004 /* AL_INVALID_OPERATION */;
return;
}
}
delete AL.currentContext.buf[bufferIdx];
}
},
alGenBuffers: function(count, buffers) {
if (!AL.currentContext) {
console.error("alGenBuffers called without a valid context");
return;
}
for (var i = 0; i < count; ++i) {
AL.currentContext.buf.push({buf: null});
{{{ makeSetValue('buffers', 'i', 'AL.currentContext.buf.length', 'i32') }}};
}
},
alBufferData: function(buffer, format, data, size, freq) {
if (!AL.currentContext) {
console.error("alBufferData called without a valid context");
return;
}
if (buffer > AL.currentContext.buf.length) {
console.error("alBufferData called with an invalid buffer");
return;
}
var channels, bytes;
switch (format) {
case 0x1100 /* AL_FORMAT_MONO8 */:
bytes = 1;
channels = 1;
break;
case 0x1101 /* AL_FORMAT_MONO16 */:
bytes = 2;
channels = 1;
break;
case 0x1102 /* AL_FORMAT_STEREO8 */:
bytes = 1;
channels = 2;
break;
case 0x1103 /* AL_FORMAT_STEREO16 */:
bytes = 2;
channels = 2;
break;
default:
console.error("alBufferData called with invalid format " + format);
return;
}
AL.currentContext.buf[buffer - 1].buf = AL.currentContext.ctx.createBuffer(channels, size / (bytes * channels), freq);
var buf = new Array(channels);
for (var i = 0; i < channels; ++i) {
buf[i] = AL.currentContext.buf[buffer - 1].buf.getChannelData(i);
}
for (var i = 0; i < size / (bytes * channels); ++i) {
for (var j = 0; j < channels; ++j) {
switch (bytes) {
case 1:
var val = {{{ makeGetValue('data', 'i*channels+j', 'i8') }}};
buf[j][i] = -1.0 + val * (2/256);
break;
case 2:
var val = {{{ makeGetValue('data', '2*(i*channels+j)', 'i16') }}};
buf[j][i] = val/32768;
break;
}
}
}
},
alSourcePlay__deps: ["alSourceStop"],
alSourcePlay: function(source) {
if (!AL.currentContext) {
console.error("alSourcePlay called without a valid context");
return;
}
if (source > AL.currentContext.src.length) {
console.error("alSourcePlay called with an invalid source");
return;
}
var offset = 0;
if ("src" in AL.currentContext.src[source - 1]) {
// If the source is already playing, we need to resume from beginning.
// We do that by stopping the current source and replaying it.
_alSourceStop(source);
} else if (AL.currentContext.src[source - 1].paused) {
// So now we have to resume playback, remember the offset here.
offset = AL.currentContext.src[source - 1].pausedTime -
AL.currentContext.src[source - 1].playTime;
}
var src = AL.currentContext.ctx.createBufferSource();
src.loop = AL.currentContext.src[source - 1].loop;
src.buffer = AL.currentContext.src[source - 1].buffer;
src.connect(AL.currentContext.src[source - 1].gain);
src.start(0, offset);
// Work around Firefox bug 851338
AL.currentContext.src[source - 1].playTime = AL.currentContext.ctx.currentTime || 0;
AL.currentContext.src[source - 1].paused = false;
AL.currentContext.src[source - 1]['src'] = src;
},
alSourceStop: function(source) {
if (!AL.currentContext) {
console.error("alSourceStop called without a valid context");
return;
}
if (source > AL.currentContext.src.length) {
console.error("alSourceStop called with an invalid source");
return;
}
if ("src" in AL.currentContext.src[source - 1]) {
AL.currentContext.src[source - 1]["src"].stop(0);
delete AL.currentContext.src[source - 1]["src"];
}
},
alSourcePause: function(source) {
if (!AL.currentContext) {
console.error("alSourcePause called without a valid context");
return;
}
if (source > AL.currentContext.src.length) {
console.error("alSourcePause called with an invalid source");
return;
}
if ("src" in AL.currentContext.src[source - 1] &&
!AL.currentContext.src[source - 1].paused) {
AL.currentContext.src[source - 1].paused = true;
// Work around Firefox bug 851338
AL.currentContext.src[source - 1].pausedTime = AL.currentContext.ctx.currentTime || 0;
AL.currentContext.src[source - 1]["src"].stop(0);
delete AL.currentContext.src[source - 1].src;
}
},
alGetSourcei: function(source, param, value) {
if (!AL.currentContext) {
console.error("alGetSourcei called without a valid context");
return;
}
if (source > AL.currentContext.src.length) {
console.error("alGetSourcei called with an invalid source");
return;
}
switch (param) {
case 0x202 /* AL_SOURCE_RELATIVE */:
// Always return 1
{{{ makeSetValue('value', '0', '1', 'i32') }}};
break;
case 0x1009 /* AL_BUFFER */:
if (AL.currentContext.src[source - 1].buffer == null) {
{{{ makeSetValue('value', '0', '0', 'i32') }}};
} else {
var buf = AL.currentContext.src[source - 1].buffer;
for (var i = 0; i < AL.currentContext.buf.length; ++i) {
if (buf == AL.currentContext.buf[i].buf) {
{{{ makeSetValue('value', '0', 'i+1', 'i32') }}};
return;
}
}
{{{ makeSetValue('value', '0', '0', 'i32') }}};
}
break;
case 0x1010 /* AL_SOURCE_STATE */:
if ("src" in AL.currentContext.src[source - 1]) {
{{{ makeSetValue('value', '0', '0x1012', 'i32') }}} /* AL_PLAYING */;
} else if (AL.currentContext.src[source - 1].paused) {
{{{ makeSetValue('value', '0', '0x1013', 'i32') }}} /* AL_PAUSED */;
} else if (AL.currentContext.src[source - 1].playTime == -1) {
{{{ makeSetValue('value', '0', '0x1011', 'i32') }}} /* AL_INITIAL */;
} else {
{{{ makeSetValue('value', '0', '0x1014', 'i32') }}} /* AL_STOPPED */;
}
break;
case 0x1015 /* AL_BUFFERS_QUEUED */:
if (AL.currentContext.src[source - 1].buffer) {
{{{ makeSetValue('value', '0', '1', 'i32') }}}
} else {
{{{ makeSetValue('value', '0', '0', 'i32') }}}
}
break;
case 0x1016 /* AL_BUFFERS_PROCESSED */:
// Always return 1
{{{ makeSetValue('value', '0', '1', 'i32') }}}
break;
}
},
alDistanceModel: function(model) {
if (model != 0 /* AL_NONE */) {
console.log("Only alDistanceModel(AL_NONE) is currently supported");
}
},
alListenerfv: function(param, values) {
console.log("alListenerfv is not supported yet");
},
alIsExtensionPresent: function(extName) {
return 0;
},
alcIsExtensionPresent: function(device, extName) {
return 0;
},
alGetProcAddress: function(fname) {
return 0;
},
alcGetProcAddress: function(device, fname) {
return 0;
},
};
autoAddDeps(LibraryOpenAL, '$AL');
mergeInto(LibraryManager.library, LibraryOpenAL);
|