2018-01-08 18:25:11 +00:00
|
|
|
var Class = require('../../utils/Class');
|
|
|
|
var BaseSoundManager = require('../BaseSoundManager');
|
2018-01-08 18:26:32 +00:00
|
|
|
var HTML5AudioSound = require('./HTML5AudioSound');
|
2018-01-08 18:25:11 +00:00
|
|
|
var HTML5AudioSoundManager = new Class({
|
|
|
|
Extends: BaseSoundManager,
|
|
|
|
initialize: function HTML5AudioSoundManager(game) {
|
2018-01-08 18:34:23 +00:00
|
|
|
/**
|
|
|
|
* An array for keeping track of all the sounds
|
|
|
|
* that were paused when game lost focus.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @property {Phaser.Sound.HTML5AudioSound[]} onBlurPausedSounds
|
|
|
|
* @default []
|
|
|
|
*/
|
2018-01-08 18:27:44 +00:00
|
|
|
this.onBlurPausedSounds = [];
|
2018-01-08 18:34:41 +00:00
|
|
|
/**
|
|
|
|
* Property that actually holds the value of global mute
|
|
|
|
* for HTML5 Audio sound manager implementation.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @property {boolean} _mute
|
|
|
|
* @default false
|
|
|
|
*/
|
2018-01-08 18:30:42 +00:00
|
|
|
this._mute = false;
|
2018-01-08 18:34:55 +00:00
|
|
|
/**
|
|
|
|
* Property that actually holds the value of global volume
|
|
|
|
* for HTML5 Audio sound manager implementation.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @property {boolean} _volume
|
|
|
|
* @default 1
|
|
|
|
*/
|
2018-01-08 18:32:41 +00:00
|
|
|
this._volume = 1;
|
2018-01-08 18:25:11 +00:00
|
|
|
BaseSoundManager.call(this, game);
|
2018-01-08 18:26:32 +00:00
|
|
|
},
|
|
|
|
add: function (key, config) {
|
|
|
|
var sound = new HTML5AudioSound(this, key, config);
|
|
|
|
this.sounds.push(sound);
|
|
|
|
return sound;
|
2018-01-08 18:28:21 +00:00
|
|
|
},
|
|
|
|
onBlur: function () {
|
|
|
|
this.forEachActiveSound(function (sound) {
|
|
|
|
if (sound.isPlaying) {
|
|
|
|
this.onBlurPausedSounds.push(sound);
|
|
|
|
sound.pause();
|
|
|
|
}
|
|
|
|
});
|
2018-01-08 18:29:01 +00:00
|
|
|
},
|
|
|
|
onFocus: function () {
|
|
|
|
this.onBlurPausedSounds.forEach(function (sound) {
|
|
|
|
sound.resume();
|
|
|
|
});
|
|
|
|
this.onBlurPausedSounds.length = 0;
|
2018-01-08 18:29:16 +00:00
|
|
|
},
|
|
|
|
destroy: function () {
|
|
|
|
BaseSoundManager.prototype.destroy.call(this);
|
|
|
|
this.onBlurPausedSounds.length = 0;
|
|
|
|
this.onBlurPausedSounds = null;
|
2018-01-08 18:25:11 +00:00
|
|
|
}
|
|
|
|
});
|
2018-01-08 18:35:13 +00:00
|
|
|
/**
|
|
|
|
* Global mute setting.
|
|
|
|
*
|
|
|
|
* @name Phaser.Sound.HTML5AudioSoundManager#mute
|
|
|
|
* @property {boolean} mute
|
|
|
|
*/
|
2018-01-08 18:31:26 +00:00
|
|
|
Object.defineProperty(HTML5AudioSoundManager.prototype, 'mute', {
|
|
|
|
get: function () {
|
2018-01-08 18:32:09 +00:00
|
|
|
return this._mute;
|
2018-01-08 18:31:26 +00:00
|
|
|
},
|
|
|
|
set: function (value) {
|
2018-01-08 18:32:20 +00:00
|
|
|
this._mute = value;
|
|
|
|
this.forEachActiveSound(function (sound) {
|
|
|
|
sound.setMute();
|
|
|
|
});
|
2018-01-08 18:31:26 +00:00
|
|
|
}
|
|
|
|
});
|
2018-01-08 18:33:10 +00:00
|
|
|
Object.defineProperty(HTML5AudioSoundManager.prototype, 'volume', {
|
|
|
|
get: function () {
|
2018-01-08 18:33:23 +00:00
|
|
|
return this._volume;
|
2018-01-08 18:33:10 +00:00
|
|
|
},
|
|
|
|
set: function (value) {
|
2018-01-08 18:33:43 +00:00
|
|
|
this._volume = value;
|
|
|
|
this.forEachActiveSound(function (sound) {
|
|
|
|
sound.setVolume();
|
|
|
|
});
|
2018-01-08 18:33:10 +00:00
|
|
|
}
|
|
|
|
});
|
2018-01-08 18:25:11 +00:00
|
|
|
module.exports = HTML5AudioSoundManager;
|