aboutsummaryrefslogtreecommitdiff
path: root/src/library_openal.js
blob: 80fed9f7cff835b78a87b723f49f735b6f85916f (plain)
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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
//"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) {
#if OPENAL_DEBUG
      console.log("The attrList argument of alcCreateContext is not supported yet");
#endif
      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;
    }
  },

  alDeleteSources: function(count, sources)
  {
    if (!AL.currentContext) {
#if OPENAL_DEBUG
      console.error("alDeleteSources called without a valid context");
#endif
      return;
    }
    for (var i = 0; i < count; ++i) {
      var sourceIdx = {{{ makeGetValue('sources', 'i', 'i32') }}} - 1;
      delete AL.currentContext.src[sourceIdx];
    }
  },

  alGenSources: function(count, sources) {
    if (!AL.currentContext) {
#if OPENAL_DEBUG
      console.error("alGenSources called without a valid context");
#endif
      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) {
#if OPENAL_DEBUG
      console.error("alSourcei called without a valid context");
#endif
      return;
    }
    if (source > AL.currentContext.src.length) {
#if OPENAL_DEBUG
      console.error("alSourcei called with an invalid source");
#endif
      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:
#if OPENAL_DEBUG
      console.log("alSourcei with param " + param + " not implemented yet");
#endif
      break;
    }
  },

  alSourcef: function(source, param, value) {
    if (!AL.currentContext) {
#if OPENAL_DEBUG
      console.error("alSourcef called without a valid context");
#endif
      return;
    }
    if (source > AL.currentContext.src.length) {
#if OPENAL_DEBUG
      console.error("alSourcef called with an invalid source");
#endif
      return;
    }
    switch (param) {
    case 0x100A /* AL_GAIN */:
      AL.currentContext.src[source - 1].gain.gain.value = value;
      break;
    case 0x1003 /* AL_PITCH */:
#if OPENAL_DEBUG
      console.log("alSourcef was called with AL_PITCH, but Web Audio does not support static pitch changes");
#endif
      break;
    default:
#if OPENAL_DEBUG
      console.log("alSourcef with param " + param + " not implemented yet");
#endif
      break;
    }
  },

  alSourcefv: function(source, param, value) {
    if (!AL.currentContext) {
#if OPENAL_DEBUG
      console.error("alSourcefv called without a valid context");
#endif
      return;
    }
    if (source > AL.currentContext.src.length) {
#if OPENAL_DEBUG
      console.error("alSourcefv called with an invalid source");
#endif
      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:
#if OPENAL_DEBUG
      console.log("alSourcefv with param " + param + " not implemented yet");
#endif
      break;
    }
  },

  alSourceQueueBuffers: function(source, count, buffers) {
    if (!AL.currentContext) {
#if OPENAL_DEBUG
      console.error("alSourceQueueBuffers called without a valid context");
#endif
      return;
    }
    if (source > AL.currentContext.src.length) {
#if OPENAL_DEBUG
      console.error("alSourceQueueBuffers called with an invalid source");
#endif
      return;
    }
    if (count != 1) {
#if OPENAL_DEBUG
      console.error("Queuing multiple buffers using alSourceQueueBuffers is not supported yet");
#endif
      return;
    }
    for (var i = 0; i < count; ++i) {
      var buffer = {{{ makeGetValue('buffers', 'i', 'i32') }}};
      if (buffer > AL.currentContext.buf.length) {
#if OPENAL_DEBUG
        console.error("alSourceQueueBuffers called with an invalid buffer");
#endif
        return;
      }
      AL.currentContext.src[source - 1].buffer = AL.currentContext.buf[buffer - 1].buf;
    }
  },

  alSourceUnqueueBuffers: function(source, count, buffers)
  {
    if (!AL.currentContext) {
#if OPENAL_DEBUG
      console.error("alSourceUnqueueBuffers called without a valid context");
#endif
      return;
    }
    if (source > AL.currentContext.src.length) {
#if OPENAL_DEBUG
      console.error("alSourceUnqueueBuffers called with an invalid source");
#endif
      return;
    }
    if (count != 1) {
#if OPENAL_DEBUG
      console.error("Queuing multiple buffers using alSourceUnqueueBuffers is not supported yet");
#endif
      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) {
#if OPENAL_DEBUG
      console.error("alDeleteBuffers called without a valid context");
#endif
      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) {
#if OPENAL_DEBUG
      console.error("alGenBuffers called without a valid context");
#endif
      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) {
#if OPENAL_DEBUG
      console.error("alBufferData called without a valid context");
#endif
      return;
    }
    if (buffer > AL.currentContext.buf.length) {
#if OPENAL_DEBUG
      console.error("alBufferData called with an invalid buffer");
#endif
      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:
#if OPENAL_DEBUG
      console.error("alBufferData called with invalid format " + format);
#endif
      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) {
#if OPENAL_DEBUG
      console.error("alSourcePlay called without a valid context");
#endif
      return;
    }
    if (source > AL.currentContext.src.length) {
#if OPENAL_DEBUG
      console.error("alSourcePlay called with an invalid source");
#endif
      return;
    }
    var offset = 0;
    if ("src" in AL.currentContext.src[source - 1] &&
        AL.currentContext.src[source - 1]["src"].buffer ==
        AL.currentContext.src[source - 1].buffer) {
      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;
      } else {
        // 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);
      }
    }
    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) {
#if OPENAL_DEBUG
      console.error("alSourceStop called without a valid context");
#endif
      return;
    }
    if (source > AL.currentContext.src.length) {
#if OPENAL_DEBUG
      console.error("alSourceStop called with an invalid source");
#endif
      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) {
#if OPENAL_DEBUG
      console.error("alSourcePause called without a valid context");
#endif
      return;
    }
    if (source > AL.currentContext.src.length) {
#if OPENAL_DEBUG
      console.error("alSourcePause called with an invalid source");
#endif
      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) {
#if OPENAL_DEBUG
      console.error("alGetSourcei called without a valid context");
#endif
      return;
    }
    if (source > AL.currentContext.src.length) {
#if OPENAL_DEBUG
      console.error("alGetSourcei called with an invalid source");
#endif
      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 */) {
#if OPENAL_DEBUG
      console.log("Only alDistanceModel(AL_NONE) is currently supported");
#endif
    }
  },

  alListenerfv: function(param, values) {
    if (!AL.currentContext) {
#if OPENAL_DEBUG
      console.error("alListenerfv called without a valid context");
#endif
      return;
    }
    switch (param) {
    case 0x1004 /* AL_POSITION */:
      AL.currentContext.ctx.listener.setPosition(
          {{{ makeGetValue('value', '0', 'float') }}},
          {{{ makeGetValue('value', '1', 'float') }}},
          {{{ makeGetValue('value', '2', 'float') }}}
        );
      break;
    case 0x1006 /* AL_VELOCITY */:
      AL.currentContext.ctx.listener.setVelocity(
          {{{ makeGetValue('value', '0', 'float') }}},
          {{{ makeGetValue('value', '1', 'float') }}},
          {{{ makeGetValue('value', '2', 'float') }}}
        );
      break;
    case 0x100F /* AL_ORIENTATION */:
      AL.currentContext.ctx.listener.setOrientation(
          {{{ makeGetValue('value', '0', 'float') }}},
          {{{ makeGetValue('value', '1', 'float') }}},
          {{{ makeGetValue('value', '2', 'float') }}},
          {{{ makeGetValue('value', '3', 'float') }}},
          {{{ makeGetValue('value', '4', 'float') }}},
          {{{ makeGetValue('value', '5', 'float') }}}
        );
      break;
    default:
#if OPENAL_DEBUG
      console.log("alListenerfv with param " + param + " not implemented yet");
#endif
      break;
    }
  },

  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);