2017-11-09 13:37:41 +00:00
|
|
|
var Class = require('../utils/Class');
|
2017-11-13 18:39:32 +00:00
|
|
|
var NOOP = require('../utils/NOOP');
|
|
|
|
var EventDispatcher = require('../events/EventDispatcher');
|
2018-01-04 19:00:43 +00:00
|
|
|
var SoundEvent = require('./SoundEvent');
|
2018-01-03 20:28:45 +00:00
|
|
|
var SoundValueEvent = require('./SoundValueEvent');
|
2018-01-06 16:38:17 +00:00
|
|
|
/*!
|
|
|
|
* @author Pavle Goloskokovic <pgoloskokovic@gmail.com> (http://prunegames.com)
|
|
|
|
*/
|
2017-11-10 12:05:29 +00:00
|
|
|
var BaseSoundManager = new Class({
|
2018-01-06 16:38:17 +00:00
|
|
|
/**
|
|
|
|
* The sound manager is responsible for playing back audio via Web Audio API or HTML Audio tag as fallback.
|
|
|
|
* The audio file type and the encoding of those files are extremely important.
|
|
|
|
* Not all browsers can play all audio formats.
|
|
|
|
* There is a good guide to what's supported [here](https://developer.mozilla.org/en-US/Apps/Fundamentals/Audio_and_video_delivery/Cross-browser_audio_basics#Audio_Codec_Support).
|
|
|
|
*
|
|
|
|
* @class Phaser.Sound.BaseSoundManager
|
|
|
|
* @constructor
|
|
|
|
* @param {Phaser.Game} game - Reference to the current game instance.
|
|
|
|
*/
|
2017-11-13 18:39:32 +00:00
|
|
|
initialize: function BaseSoundManager(game) {
|
2017-11-10 18:05:26 +00:00
|
|
|
/**
|
2017-11-13 18:39:32 +00:00
|
|
|
* Local reference to game.
|
2017-11-16 14:23:35 +00:00
|
|
|
*
|
2018-01-06 16:40:23 +00:00
|
|
|
* @readonly
|
2017-11-13 18:39:32 +00:00
|
|
|
* @property {Phaser.Game} game
|
2017-11-10 18:05:26 +00:00
|
|
|
*/
|
|
|
|
this.game = game;
|
2018-01-03 20:55:51 +00:00
|
|
|
/**
|
2018-01-06 16:40:23 +00:00
|
|
|
* Event dispatcher used to handle all sound manager related events.
|
2018-01-03 20:55:51 +00:00
|
|
|
*
|
2018-01-06 16:40:23 +00:00
|
|
|
* @readonly
|
2018-01-03 20:55:51 +00:00
|
|
|
* @property {Phaser.Events.EventDispatcher} events
|
|
|
|
*/
|
|
|
|
this.events = new EventDispatcher();
|
2017-11-16 15:04:07 +00:00
|
|
|
/**
|
|
|
|
* An array containing all added sounds.
|
|
|
|
*
|
2017-12-04 21:09:41 +00:00
|
|
|
* @private
|
2018-01-06 16:40:23 +00:00
|
|
|
* @property {ISound[]} sounds
|
2017-11-16 15:04:07 +00:00
|
|
|
*/
|
|
|
|
this.sounds = [];
|
2017-11-13 18:39:32 +00:00
|
|
|
/**
|
|
|
|
* Global mute setting.
|
2017-11-16 14:23:35 +00:00
|
|
|
*
|
2017-11-13 18:39:32 +00:00
|
|
|
* @property {boolean} mute
|
|
|
|
*/
|
|
|
|
this.mute = false;
|
|
|
|
/**
|
|
|
|
* Global volume setting.
|
2017-11-16 14:23:35 +00:00
|
|
|
*
|
2017-11-13 18:39:32 +00:00
|
|
|
* @property {number} volume
|
|
|
|
*/
|
|
|
|
this.volume = 1;
|
|
|
|
/**
|
2018-01-04 18:24:28 +00:00
|
|
|
* Global playback rate at which all the sounds will be played.
|
2017-11-13 18:39:32 +00:00
|
|
|
* Value of 1.0 plays the audio at full speed, 0.5 plays the audio at half speed
|
|
|
|
* and 2.0 doubles the audio's playback speed.
|
2017-11-16 14:23:35 +00:00
|
|
|
*
|
2017-11-13 18:39:32 +00:00
|
|
|
* @property {number} rate
|
|
|
|
*/
|
|
|
|
this.rate = 1;
|
2017-11-16 16:21:49 +00:00
|
|
|
/**
|
|
|
|
* Global detuning of all sounds in [cents](https://en.wikipedia.org/wiki/Cent_%28music%29).
|
|
|
|
* The range of the value is -1200 to 1200, but we recommend setting it to [50](https://en.wikipedia.org/wiki/50_Cent).
|
|
|
|
*
|
|
|
|
* @property {number} detune
|
|
|
|
*/
|
|
|
|
this.detune = 0;
|
2017-11-13 18:39:32 +00:00
|
|
|
/**
|
2017-11-21 17:02:24 +00:00
|
|
|
* Flag indicating if sounds should be paused when game looses focus,
|
2018-01-06 16:40:23 +00:00
|
|
|
* for instance when user switches to another tab/program/app.
|
2017-11-21 17:02:24 +00:00
|
|
|
*
|
|
|
|
* @property {boolean} pauseOnBlur
|
2017-11-13 18:39:32 +00:00
|
|
|
*/
|
2017-11-21 17:02:24 +00:00
|
|
|
this.pauseOnBlur = true;
|
2017-11-21 17:06:18 +00:00
|
|
|
game.events.on('ON_BLUR', function () {
|
|
|
|
if (this.pauseOnBlur) {
|
|
|
|
this.onBlur();
|
|
|
|
}
|
|
|
|
}.bind(this));
|
|
|
|
game.events.on('ON_FOCUS', function () {
|
|
|
|
if (this.pauseOnBlur) {
|
|
|
|
this.onFocus();
|
|
|
|
}
|
|
|
|
}.bind(this));
|
2017-11-27 16:33:37 +00:00
|
|
|
/**
|
|
|
|
* Property that actually holds the value of global playback rate.
|
|
|
|
*
|
|
|
|
* @private
|
2018-01-06 16:40:23 +00:00
|
|
|
* @property {number} _rate
|
2017-11-27 16:33:37 +00:00
|
|
|
*/
|
|
|
|
this._rate = 1;
|
2017-11-27 16:34:27 +00:00
|
|
|
/**
|
|
|
|
* Property that actually holds the value of global detune.
|
|
|
|
*
|
|
|
|
* @private
|
2018-01-06 16:40:23 +00:00
|
|
|
* @property {number} _detune
|
2017-11-27 16:34:27 +00:00
|
|
|
*/
|
|
|
|
this._detune = 0;
|
2017-11-13 18:39:32 +00:00
|
|
|
},
|
2018-01-06 16:42:20 +00:00
|
|
|
/**
|
|
|
|
* Adds a new sound into the sound manager.
|
|
|
|
*
|
|
|
|
* @override
|
|
|
|
* @method Phaser.Sound.BaseSoundManager#add
|
|
|
|
* @param {string} key - Asset key for the sound.
|
|
|
|
* @param {ISoundConfig} [config] - An optional config object containing default sound settings.
|
|
|
|
* @returns {ISound} The new sound instance.
|
|
|
|
*/
|
2017-11-13 18:39:32 +00:00
|
|
|
add: NOOP,
|
2017-12-04 21:09:41 +00:00
|
|
|
/**
|
2018-01-06 16:44:27 +00:00
|
|
|
* Adds a new audio sprite sound into the sound manager.
|
2017-12-04 21:09:41 +00:00
|
|
|
*
|
2018-01-06 16:44:27 +00:00
|
|
|
* @method Phaser.Sound.BaseSoundManager#addAudioSprite
|
|
|
|
* @param {string} key - Asset key for the sound.
|
|
|
|
* @param {ISoundConfig} [config] - An optional config object containing default sound settings.
|
|
|
|
* @returns {IAudioSpriteSound} The new audio sprite sound instance.
|
2017-12-04 21:09:41 +00:00
|
|
|
*/
|
2017-11-30 21:14:20 +00:00
|
|
|
addAudioSprite: function (key, config) {
|
|
|
|
var sound = this.add(key, config);
|
|
|
|
/**
|
|
|
|
* Local reference to 'spritemap' object form json file generated by audiosprite tool.
|
|
|
|
*
|
|
|
|
* @property {object} spritemap
|
|
|
|
*/
|
|
|
|
sound.spritemap = this.game.cache.json.get(key).spritemap;
|
|
|
|
for (var markerName in sound.spritemap) {
|
2017-11-30 21:56:54 +00:00
|
|
|
if (!sound.spritemap.hasOwnProperty(markerName)) {
|
2017-11-30 21:14:20 +00:00
|
|
|
continue;
|
|
|
|
}
|
2017-11-30 21:56:54 +00:00
|
|
|
var marker = sound.spritemap[markerName];
|
2017-11-30 21:14:20 +00:00
|
|
|
sound.addMarker({
|
|
|
|
name: markerName,
|
|
|
|
start: marker.start,
|
|
|
|
duration: marker.end - marker.start,
|
|
|
|
config: config
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return sound;
|
|
|
|
},
|
2018-01-06 16:47:41 +00:00
|
|
|
/**
|
|
|
|
* Enables playing sound on the fly without the need to keep a reference to it.
|
|
|
|
* Sound will auto destroy once its playback ends.
|
|
|
|
*
|
|
|
|
* @method Phaser.Sound.BaseSoundManager#play
|
|
|
|
* @param {string} key - Asset key for the sound.
|
|
|
|
* @param {ISoundConfig | ISoundMarker} [extra] - An optional additional object containing settings to be applied to the sound. It could be either config or marker object.
|
|
|
|
*/
|
2018-01-04 18:27:12 +00:00
|
|
|
play: function (key, extra) {
|
2018-01-04 18:24:28 +00:00
|
|
|
var sound = this.add(key);
|
|
|
|
sound.events.once('SOUND_ENDED', sound.destroy.bind(sound));
|
2018-01-04 18:27:12 +00:00
|
|
|
if (extra) {
|
|
|
|
if (extra.name) {
|
|
|
|
sound.addMarker(extra);
|
|
|
|
sound.play(extra.name);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sound.play(extra);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sound.play();
|
|
|
|
}
|
2018-01-04 18:24:28 +00:00
|
|
|
},
|
2018-01-06 16:48:31 +00:00
|
|
|
/**
|
|
|
|
* Enables playing audio sprite sound on the fly without the need to keep a reference to it.
|
|
|
|
* Sound will auto destroy once its playback ends.
|
|
|
|
*
|
|
|
|
* @method Phaser.Sound.BaseSoundManager#playAudioSprite
|
|
|
|
* @param {string} key - Asset key for the sound.
|
|
|
|
* @param {string} spriteName - The name of the sound sprite to play.
|
|
|
|
* @param {ISoundConfig} [config] - An optional config object containing default sound settings.
|
|
|
|
*/
|
2018-01-04 18:28:34 +00:00
|
|
|
playAudioSprite: function (key, spriteName, config) {
|
|
|
|
var sound = this.addAudioSprite(key);
|
|
|
|
sound.events.once('SOUND_ENDED', sound.destroy.bind(sound));
|
|
|
|
sound.play(spriteName, config);
|
|
|
|
},
|
2018-01-04 18:44:22 +00:00
|
|
|
/**
|
2018-01-06 16:49:17 +00:00
|
|
|
* Removes a sound from the sound manager.
|
|
|
|
* The removed sound is destroyed before removal.
|
2018-01-04 18:44:22 +00:00
|
|
|
*
|
2018-01-06 16:49:17 +00:00
|
|
|
* @method Phaser.Sound.BaseSoundManager#remove
|
|
|
|
* @param {ISound} sound - The sound object to remove.
|
2018-01-04 18:44:22 +00:00
|
|
|
* @returns {boolean} True if the sound was removed successfully, otherwise false.
|
|
|
|
*/
|
2018-01-04 18:41:43 +00:00
|
|
|
remove: function (sound) {
|
|
|
|
var index = this.sounds.indexOf(sound);
|
|
|
|
if (index !== -1) {
|
2018-01-06 16:49:42 +00:00
|
|
|
sound.destroy();
|
2018-01-04 18:41:43 +00:00
|
|
|
this.sounds.splice(index, 1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
2018-01-04 18:44:22 +00:00
|
|
|
/**
|
2018-01-06 16:52:34 +00:00
|
|
|
* Removes all sounds from the sound manager that have an asset key matching the given value.
|
|
|
|
* The removed sounds are destroyed before removal.
|
2018-01-04 18:44:22 +00:00
|
|
|
*
|
2018-01-06 16:52:34 +00:00
|
|
|
* @method Phaser.Sound.BaseSoundManager#removeByKey
|
|
|
|
* @param {string} key - The key to match when removing sound objects.
|
2018-01-04 18:44:22 +00:00
|
|
|
* @returns {number} The number of matching sound objects that were removed.
|
|
|
|
*/
|
2018-01-04 18:43:41 +00:00
|
|
|
removeByKey: function (key) {
|
|
|
|
var removed = 0;
|
|
|
|
for (var i = this.sounds.length - 1; i >= 0; i--) {
|
2018-01-06 16:55:12 +00:00
|
|
|
var sound = this.sounds[i];
|
|
|
|
if (sound.key === key) {
|
|
|
|
sound.destroy();
|
2018-01-04 18:43:41 +00:00
|
|
|
this.sounds.splice(i, 1);
|
|
|
|
removed++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return removed;
|
|
|
|
},
|
2018-01-06 16:55:34 +00:00
|
|
|
/**
|
|
|
|
* Pauses all the sounds in the game.
|
|
|
|
*
|
|
|
|
* @method Phaser.Sound.BaseSoundManager#pauseAll
|
|
|
|
*/
|
2018-01-04 18:30:29 +00:00
|
|
|
pauseAll: function () {
|
2018-01-04 18:52:44 +00:00
|
|
|
this.forEachActiveSound(function (sound) {
|
2018-01-04 18:30:29 +00:00
|
|
|
sound.pause();
|
|
|
|
});
|
2018-01-04 19:00:43 +00:00
|
|
|
this.events.dispatch(new SoundEvent(this, 'SOUND_PAUSE'));
|
2018-01-04 18:30:29 +00:00
|
|
|
},
|
2018-01-04 18:32:10 +00:00
|
|
|
resumeAll: function () {
|
2018-01-04 18:52:44 +00:00
|
|
|
this.forEachActiveSound(function (sound) {
|
2018-01-04 18:32:10 +00:00
|
|
|
sound.resume();
|
|
|
|
});
|
2018-01-04 19:01:07 +00:00
|
|
|
this.events.dispatch(new SoundEvent(this, 'SOUND_RESUME'));
|
2018-01-04 18:32:10 +00:00
|
|
|
},
|
2018-01-04 14:59:44 +00:00
|
|
|
stopAll: function () {
|
2018-01-04 18:52:44 +00:00
|
|
|
this.forEachActiveSound(function (sound) {
|
2018-01-04 14:59:44 +00:00
|
|
|
sound.stop();
|
|
|
|
});
|
2018-01-04 19:01:19 +00:00
|
|
|
this.events.dispatch(new SoundEvent(this, 'SOUND_STOP'));
|
2018-01-04 14:59:44 +00:00
|
|
|
},
|
2017-12-04 21:09:41 +00:00
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
*/
|
2017-11-21 17:04:54 +00:00
|
|
|
onBlur: NOOP,
|
2017-12-04 21:09:41 +00:00
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
*/
|
2017-11-21 17:04:54 +00:00
|
|
|
onFocus: NOOP,
|
2017-11-26 15:59:12 +00:00
|
|
|
/**
|
|
|
|
* Update method called on every game step.
|
|
|
|
*
|
2017-12-04 21:09:41 +00:00
|
|
|
* @private
|
2017-11-26 15:59:12 +00:00
|
|
|
* @param {number} time - The current timestamp as generated by the Request Animation Frame or SetTimeout.
|
|
|
|
* @param {number} delta - The delta time elapsed since the last frame.
|
|
|
|
*/
|
|
|
|
update: function (time, delta) {
|
2018-01-05 19:14:34 +00:00
|
|
|
for (var i = this.sounds.length - 1; i >= 0; i--) {
|
2018-01-05 18:35:44 +00:00
|
|
|
if (this.sounds[i].pendingRemove) {
|
2018-01-05 19:14:34 +00:00
|
|
|
this.sounds.splice(i, 1);
|
2018-01-04 18:50:06 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-26 15:59:12 +00:00
|
|
|
this.sounds.forEach(function (sound) {
|
|
|
|
sound.update(time, delta);
|
|
|
|
});
|
|
|
|
},
|
2018-01-04 18:48:00 +00:00
|
|
|
destroy: function () {
|
|
|
|
this.game = null;
|
|
|
|
this.events.destroy();
|
|
|
|
this.events = null;
|
2018-01-04 18:53:15 +00:00
|
|
|
this.forEachActiveSound(function (sound) {
|
2018-01-04 18:48:00 +00:00
|
|
|
sound.destroy();
|
|
|
|
});
|
|
|
|
this.sounds = null;
|
2018-01-04 18:51:54 +00:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
* @param {(value: ISound, index: number, array: ISound[]) => void} callbackfn
|
|
|
|
* @param thisArg
|
|
|
|
*/
|
|
|
|
forEachActiveSound: function (callbackfn, thisArg) {
|
|
|
|
var _this = this;
|
|
|
|
this.sounds.forEach(function (sound, index) {
|
|
|
|
if (!sound.pendingRemove) {
|
|
|
|
callbackfn.call(thisArg || _this, sound, index, _this.sounds);
|
|
|
|
}
|
|
|
|
});
|
2018-01-04 18:48:00 +00:00
|
|
|
}
|
2017-11-10 18:05:26 +00:00
|
|
|
});
|
2017-11-27 16:35:09 +00:00
|
|
|
/**
|
|
|
|
* Global playback rate.
|
|
|
|
* @property {number} rate
|
|
|
|
*/
|
|
|
|
Object.defineProperty(BaseSoundManager.prototype, 'rate', {
|
|
|
|
get: function () {
|
|
|
|
return this._rate;
|
|
|
|
},
|
|
|
|
set: function (value) {
|
|
|
|
this._rate = value;
|
2018-01-04 18:53:47 +00:00
|
|
|
this.forEachActiveSound(function (sound) {
|
2017-11-27 16:35:09 +00:00
|
|
|
sound.setRate();
|
|
|
|
}, this);
|
2018-01-03 20:28:45 +00:00
|
|
|
this.events.dispatch(new SoundValueEvent(this, 'SOUND_RATE', value));
|
2017-11-27 16:35:09 +00:00
|
|
|
}
|
|
|
|
});
|
2017-11-27 16:35:35 +00:00
|
|
|
/**
|
|
|
|
* Global detune.
|
|
|
|
* @property {number} detune
|
|
|
|
*/
|
|
|
|
Object.defineProperty(BaseSoundManager.prototype, 'detune', {
|
|
|
|
get: function () {
|
|
|
|
return this._detune;
|
|
|
|
},
|
|
|
|
set: function (value) {
|
|
|
|
this._detune = value;
|
2018-01-04 18:53:47 +00:00
|
|
|
this.forEachActiveSound(function (sound) {
|
2017-11-27 16:35:35 +00:00
|
|
|
sound.setRate();
|
|
|
|
}, this);
|
2018-01-03 20:29:00 +00:00
|
|
|
this.events.dispatch(new SoundValueEvent(this, 'SOUND_DETUNE', value));
|
2017-11-27 16:35:35 +00:00
|
|
|
}
|
|
|
|
});
|
2017-11-10 12:05:29 +00:00
|
|
|
module.exports = BaseSoundManager;
|