2017-11-17 13:17:59 +00:00
|
|
|
var Class = require('../../utils/Class');
|
|
|
|
var BaseSoundManager = require('../BaseSoundManager');
|
2017-11-14 16:35:44 +00:00
|
|
|
var WebAudioSound = require('./WebAudioSound');
|
2018-01-03 20:27:53 +00:00
|
|
|
var SoundValueEvent = require('../SoundValueEvent');
|
2018-01-06 18:14:17 +00:00
|
|
|
/*!
|
|
|
|
* @author Pavle Goloskokovic <pgoloskokovic@gmail.com> (http://prunegames.com)
|
|
|
|
*/
|
2017-11-10 11:55:32 +00:00
|
|
|
var WebAudioSoundManager = new Class({
|
2017-11-10 12:05:29 +00:00
|
|
|
Extends: BaseSoundManager,
|
2018-01-06 18:14:17 +00:00
|
|
|
/**
|
|
|
|
* Web Audio API implementation of the sound manager.
|
|
|
|
*
|
|
|
|
* @class Phaser.Sound.WebAudioSoundManager
|
|
|
|
* @constructor
|
|
|
|
* @param {Phaser.Game} game - Reference to the current game instance.
|
|
|
|
*/
|
2017-11-14 15:49:01 +00:00
|
|
|
initialize: function WebAudioSoundManager(game) {
|
2017-11-10 11:55:32 +00:00
|
|
|
/**
|
2017-11-15 13:38:45 +00:00
|
|
|
* The AudioContext being used for playback.
|
|
|
|
*
|
2017-12-04 21:09:41 +00:00
|
|
|
* @private
|
2017-11-15 13:38:45 +00:00
|
|
|
* @property {AudioContext} context
|
2017-11-10 11:55:32 +00:00
|
|
|
*/
|
2017-11-15 14:11:37 +00:00
|
|
|
this.context = this.createAudioContext(game);
|
2017-11-15 16:49:23 +00:00
|
|
|
/**
|
2018-01-06 18:14:43 +00:00
|
|
|
* Gain node responsible for controlling global muting.
|
2017-11-15 16:49:23 +00:00
|
|
|
*
|
2017-12-04 21:09:41 +00:00
|
|
|
* @private
|
2017-11-15 16:49:23 +00:00
|
|
|
* @property {GainNode} masterMuteNode
|
|
|
|
*/
|
2018-01-06 14:12:39 +00:00
|
|
|
this.masterMuteNode = this.context.createGain();
|
2017-11-15 13:38:45 +00:00
|
|
|
/**
|
2018-01-06 18:14:43 +00:00
|
|
|
* Gain node responsible for controlling global volume.
|
2017-11-15 13:38:45 +00:00
|
|
|
*
|
2017-12-04 21:09:41 +00:00
|
|
|
* @private
|
2017-11-15 13:38:45 +00:00
|
|
|
* @property {GainNode} masterVolumeNode
|
|
|
|
*/
|
2018-01-06 14:12:39 +00:00
|
|
|
this.masterVolumeNode = this.context.createGain();
|
2017-11-15 16:49:23 +00:00
|
|
|
this.masterMuteNode.connect(this.masterVolumeNode);
|
|
|
|
this.masterVolumeNode.connect(this.context.destination);
|
2017-11-15 13:46:12 +00:00
|
|
|
/**
|
|
|
|
* Destination node for connecting individual sounds to.
|
|
|
|
*
|
2017-12-04 21:09:41 +00:00
|
|
|
* @private
|
2017-11-15 13:46:12 +00:00
|
|
|
* @property {AudioNode} destination
|
|
|
|
*/
|
2017-11-15 16:49:23 +00:00
|
|
|
this.destination = this.masterMuteNode;
|
2017-11-21 14:43:10 +00:00
|
|
|
this.unlock();
|
2017-11-15 14:11:37 +00:00
|
|
|
BaseSoundManager.call(this, game);
|
2017-11-10 11:55:32 +00:00
|
|
|
},
|
2017-11-26 15:19:56 +00:00
|
|
|
/**
|
2018-01-06 18:17:19 +00:00
|
|
|
* Method responsible for instantiating and returning AudioContext instance.
|
|
|
|
* If an instance of an AudioContext class was provided trough the game config,
|
|
|
|
* that instance will be returned instead. This can come in handy if you are reloading
|
|
|
|
* a Phaser game on a page that never properly refreshes (such as in an SPA project)
|
|
|
|
* and you want to reuse already instantiated AudioContext.
|
|
|
|
*
|
2017-11-26 15:19:56 +00:00
|
|
|
* @private
|
2018-01-06 18:17:19 +00:00
|
|
|
* @method Phaser.Sound.WebAudioSoundManager#createAudioContext
|
|
|
|
* @param {Phaser.Game} game - Reference to the current game instance.
|
|
|
|
* @returns {AudioContext} The AudioContext instance to be used for playback.
|
2017-11-26 15:19:56 +00:00
|
|
|
*/
|
2017-11-15 14:11:37 +00:00
|
|
|
createAudioContext: function (game) {
|
|
|
|
var audioConfig = game.config.audio;
|
2017-11-14 15:49:01 +00:00
|
|
|
if (audioConfig && audioConfig.context) {
|
2017-11-10 18:05:26 +00:00
|
|
|
return audioConfig.context;
|
2017-11-10 11:55:32 +00:00
|
|
|
}
|
|
|
|
return new (window['AudioContext'] || window['webkitAudioContext'])();
|
2017-11-14 16:35:44 +00:00
|
|
|
},
|
2018-01-06 18:18:00 +00:00
|
|
|
/**
|
|
|
|
* Adds a new sound into the sound manager.
|
|
|
|
*
|
|
|
|
* @method Phaser.Sound.WebAudioSoundManager#add
|
|
|
|
* @param {string} key - Asset key for the sound.
|
|
|
|
* @param {ISoundConfig} [config] - An optional config object containing default sound settings.
|
|
|
|
* @returns {Phaser.Sound.WebAudioSound} The new sound instance.
|
|
|
|
*/
|
2017-11-14 16:35:44 +00:00
|
|
|
add: function (key, config) {
|
|
|
|
var sound = new WebAudioSound(this, key, config);
|
|
|
|
this.sounds.push(sound);
|
|
|
|
return sound;
|
2017-11-21 14:43:10 +00:00
|
|
|
},
|
2017-11-26 15:19:56 +00:00
|
|
|
/**
|
2018-01-06 18:18:48 +00:00
|
|
|
* Unlocks Web Audio API on iOS devices on the initial touch event.
|
|
|
|
* Read more about how this issue is handled here in [this article](TODO add link).
|
|
|
|
*
|
2017-11-26 15:19:56 +00:00
|
|
|
* @private
|
2018-01-06 18:18:48 +00:00
|
|
|
* @method Phaser.Sound.WebAudioSoundManager#unlock
|
2017-11-26 15:19:56 +00:00
|
|
|
*/
|
2017-11-21 14:43:10 +00:00
|
|
|
unlock: function () {
|
|
|
|
var _this = this;
|
2018-01-06 14:03:28 +00:00
|
|
|
if (this.context.state === 'suspended' && 'ontouchstart' in window) {
|
2017-11-21 14:43:10 +00:00
|
|
|
var unlock_1 = function () {
|
2017-11-30 13:41:46 +00:00
|
|
|
_this.context.resume().then(function () {
|
|
|
|
document.body.removeEventListener('touchstart', unlock_1);
|
|
|
|
document.body.removeEventListener('touchend', unlock_1);
|
|
|
|
});
|
2017-11-21 14:43:10 +00:00
|
|
|
};
|
2017-11-30 13:39:24 +00:00
|
|
|
document.body.addEventListener('touchstart', unlock_1, false);
|
2017-11-30 12:37:31 +00:00
|
|
|
document.body.addEventListener('touchend', unlock_1, false);
|
2017-11-21 14:43:10 +00:00
|
|
|
}
|
2017-11-21 17:09:30 +00:00
|
|
|
},
|
2018-01-06 18:19:37 +00:00
|
|
|
/**
|
|
|
|
* @protected
|
|
|
|
* @method Phaser.Sound.WebAudioSoundManager#onBlur
|
|
|
|
*/
|
2017-11-21 17:09:30 +00:00
|
|
|
onBlur: function () {
|
|
|
|
this.context.suspend();
|
|
|
|
},
|
|
|
|
onFocus: function () {
|
|
|
|
this.context.resume();
|
2017-11-10 11:55:32 +00:00
|
|
|
}
|
|
|
|
});
|
2017-11-15 14:11:37 +00:00
|
|
|
/**
|
2017-11-15 16:49:23 +00:00
|
|
|
* Global mute setting.
|
|
|
|
* @property {boolean} mute
|
2017-11-15 14:11:37 +00:00
|
|
|
*/
|
2017-11-15 16:49:23 +00:00
|
|
|
Object.defineProperty(WebAudioSoundManager.prototype, 'mute', {
|
2017-11-15 14:11:37 +00:00
|
|
|
get: function () {
|
2017-11-15 16:49:23 +00:00
|
|
|
return this.masterMuteNode.gain.value === 0;
|
2017-11-15 14:11:37 +00:00
|
|
|
},
|
|
|
|
set: function (value) {
|
2017-11-21 18:47:43 +00:00
|
|
|
this.masterMuteNode.gain.setValueAtTime(value ? 0 : 1, 0);
|
2018-01-03 20:27:53 +00:00
|
|
|
this.events.dispatch(new SoundValueEvent(this, 'SOUND_MUTE', value));
|
2017-11-15 14:11:37 +00:00
|
|
|
}
|
|
|
|
});
|
2017-11-15 14:31:24 +00:00
|
|
|
/**
|
2017-11-15 16:49:23 +00:00
|
|
|
* Global volume setting.
|
|
|
|
* @property {number} volume
|
2017-11-15 14:31:24 +00:00
|
|
|
*/
|
2017-11-15 16:49:23 +00:00
|
|
|
Object.defineProperty(WebAudioSoundManager.prototype, 'volume', {
|
2017-11-15 14:31:24 +00:00
|
|
|
get: function () {
|
2017-11-15 16:49:23 +00:00
|
|
|
return this.masterVolumeNode.gain.value;
|
2017-11-15 14:31:24 +00:00
|
|
|
},
|
|
|
|
set: function (value) {
|
2017-11-21 18:47:43 +00:00
|
|
|
this.masterVolumeNode.gain.setValueAtTime(value, 0);
|
2018-01-03 20:28:13 +00:00
|
|
|
this.events.dispatch(new SoundValueEvent(this, 'SOUND_VOLUME', value));
|
2017-11-15 14:31:24 +00:00
|
|
|
}
|
|
|
|
});
|
2017-11-10 11:55:32 +00:00
|
|
|
module.exports = WebAudioSoundManager;
|