2017-11-14 15:00:24 +00:00
|
|
|
var Class = require('../utils/Class');
|
|
|
|
var Extend = require('../utils/object/Extend');
|
|
|
|
var EventDispatcher = require('../events/EventDispatcher');
|
|
|
|
// Phaser.Sound.BaseSound
|
|
|
|
var BaseSound = new Class({
|
|
|
|
initialize: function BaseSound(manager, key, config) {
|
|
|
|
/**
|
2017-11-15 16:26:20 +00:00
|
|
|
* Local reference to the sound manager.
|
|
|
|
*
|
2017-11-14 15:00:24 +00:00
|
|
|
* @property {Phaser.Sound.BaseSoundManager} manager
|
|
|
|
*/
|
|
|
|
this.manager = manager;
|
2017-11-15 16:26:20 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @property {string} key
|
|
|
|
*/
|
2017-11-14 15:00:24 +00:00
|
|
|
this.key = key;
|
2017-11-15 16:26:20 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* Duration set explicitly, rest of default values
|
|
|
|
* will be set by other properties setters.
|
|
|
|
*
|
|
|
|
* @property {ISoundConfig} config
|
|
|
|
*/
|
2017-11-22 16:45:57 +00:00
|
|
|
this.config = {};
|
2017-11-16 13:29:28 +00:00
|
|
|
/**
|
|
|
|
* Reference to the currently used config.
|
|
|
|
* It could be default config or marker config.
|
|
|
|
*
|
|
|
|
* @property {ISoundConfig} currentConfig
|
|
|
|
*/
|
|
|
|
this.currentConfig = this.config;
|
2017-11-15 16:26:20 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @property {boolean} mute
|
|
|
|
*/
|
2017-11-14 15:00:24 +00:00
|
|
|
this.mute = false;
|
2017-11-15 16:26:20 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @property {number} volume
|
|
|
|
*/
|
2017-11-14 15:00:24 +00:00
|
|
|
this.volume = 1;
|
2017-11-15 16:26:20 +00:00
|
|
|
/**
|
2017-11-16 14:23:04 +00:00
|
|
|
* Defines the speed at which the audio asset will be played.
|
|
|
|
* 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.
|
|
|
|
* This value gets multiplied by global rate to have the final playback speed.
|
2017-11-15 16:26:20 +00:00
|
|
|
*
|
|
|
|
* @property {number} rate
|
|
|
|
*/
|
2017-11-14 15:00:24 +00:00
|
|
|
this.rate = 1;
|
2017-11-16 15:41:48 +00:00
|
|
|
/**
|
|
|
|
* Represents detuning of sound 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).
|
|
|
|
*
|
2017-11-20 13:54:33 +00:00
|
|
|
* Standards based Web Audio implementation only.
|
|
|
|
* Webkit Web Audio implementation and HTML5 Audio don't support this.
|
|
|
|
*
|
2017-11-16 15:41:48 +00:00
|
|
|
* @property {number} detune
|
|
|
|
*/
|
|
|
|
this.detune = 0;
|
2017-11-15 16:26:20 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @property {number} seek
|
|
|
|
*/
|
2017-11-14 15:00:24 +00:00
|
|
|
this.seek = 0;
|
2017-11-15 16:26:20 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @property {boolean} loop
|
|
|
|
*/
|
2017-11-14 15:00:24 +00:00
|
|
|
this.loop = false;
|
2017-11-15 16:26:20 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @property {number} pan
|
|
|
|
*/
|
2017-11-14 15:00:24 +00:00
|
|
|
this.pan = 0;
|
2017-11-15 16:26:20 +00:00
|
|
|
this.config = Extend(this.config, config);
|
2017-11-22 16:47:18 +00:00
|
|
|
/**
|
|
|
|
* A value representing the duration, in seconds.
|
|
|
|
* It could be total sound duration or a marker duration.
|
|
|
|
*
|
|
|
|
* @readonly
|
|
|
|
* @property {number} duration
|
|
|
|
*/
|
|
|
|
this.duration = 0;
|
2017-11-22 16:48:10 +00:00
|
|
|
/**
|
|
|
|
* Duration of the entire sound.
|
|
|
|
*
|
|
|
|
* @readonly
|
|
|
|
* @property {number}
|
|
|
|
*/
|
|
|
|
this.totalDuration = 0;
|
2017-11-15 16:26:20 +00:00
|
|
|
/**
|
|
|
|
* Flag indicating if sound is currently playing.
|
|
|
|
*
|
|
|
|
* @property {boolean} isPlaying
|
|
|
|
*/
|
|
|
|
this.isPlaying = false;
|
2017-11-17 13:51:23 +00:00
|
|
|
/**
|
|
|
|
* Flag indicating if sound is currently paused.
|
|
|
|
*
|
|
|
|
* @property {boolean} isPaused
|
|
|
|
*/
|
|
|
|
this.isPaused = false;
|
2017-11-15 16:26:20 +00:00
|
|
|
/**
|
|
|
|
* Object containing markers definitions.
|
|
|
|
*
|
|
|
|
* @property {{}} markers
|
|
|
|
*/
|
|
|
|
this.markers = {};
|
|
|
|
/**
|
2017-11-22 17:03:44 +00:00
|
|
|
* Currently playing marker.
|
|
|
|
* 'null' if whole sound is playing.
|
2017-11-15 16:26:20 +00:00
|
|
|
*
|
2017-11-22 17:03:44 +00:00
|
|
|
* @property {ISoundMarker} currentMarker
|
2017-11-15 16:26:20 +00:00
|
|
|
*/
|
2017-11-22 17:03:44 +00:00
|
|
|
this.currentMarker = null;
|
2017-11-15 16:26:20 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @property {Phaser.Tween}
|
|
|
|
*/
|
|
|
|
this.fadeTween = null; // TODO see how to use global tween
|
|
|
|
/**
|
|
|
|
* Event dispatches used to handle all sound instance
|
|
|
|
* relevant events.
|
|
|
|
*
|
|
|
|
* @property {Phaser.Events.EventDispatcher}
|
|
|
|
*/
|
2017-11-14 15:00:24 +00:00
|
|
|
this.events = new EventDispatcher();
|
|
|
|
},
|
2017-11-15 16:26:20 +00:00
|
|
|
// TODO set default methods to NOOP if not used
|
2017-11-14 15:00:24 +00:00
|
|
|
addMarker: function (marker) {
|
2017-11-23 11:31:34 +00:00
|
|
|
if (!marker) {
|
2017-11-23 11:52:19 +00:00
|
|
|
console.error('addMarker - Marker object has to be provided!');
|
2017-11-23 11:31:34 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-11-23 11:34:43 +00:00
|
|
|
if (!marker.name || typeof marker.name !== 'string') {
|
2017-11-23 11:52:19 +00:00
|
|
|
console.error('addMarker - Marker has to have a valid name!');
|
2017-11-23 11:37:10 +00:00
|
|
|
return false;
|
2017-11-23 11:34:43 +00:00
|
|
|
}
|
2017-11-23 11:35:55 +00:00
|
|
|
if (this.markers[marker.name]) {
|
2017-11-23 11:52:19 +00:00
|
|
|
console.error('addMarker - Marker with name \'' + marker.name + '\' already exists for sound \'' + this.key + '\'!');
|
2017-11-23 11:37:10 +00:00
|
|
|
return false;
|
2017-11-23 11:35:55 +00:00
|
|
|
}
|
2017-11-23 11:33:56 +00:00
|
|
|
marker = Extend(true, {
|
|
|
|
name: '',
|
|
|
|
start: 0,
|
|
|
|
duration: this.totalDuration,
|
|
|
|
config: {
|
|
|
|
mute: false,
|
|
|
|
volume: 1,
|
|
|
|
rate: 1,
|
|
|
|
detune: 0,
|
|
|
|
seek: 0,
|
|
|
|
loop: false,
|
|
|
|
pan: 0
|
|
|
|
}
|
|
|
|
}, marker);
|
2017-11-23 11:30:24 +00:00
|
|
|
this.markers[marker.name] = marker;
|
2017-11-23 11:35:55 +00:00
|
|
|
return true;
|
2017-11-14 15:00:24 +00:00
|
|
|
},
|
2017-11-23 11:41:41 +00:00
|
|
|
updateMarker: function (marker) {
|
2017-11-23 11:55:22 +00:00
|
|
|
if (!marker) {
|
|
|
|
console.error('updateMarker - Marker object has to be provided!');
|
|
|
|
return false;
|
|
|
|
}
|
2017-11-23 11:56:06 +00:00
|
|
|
if (!marker.name || typeof marker.name !== 'string') {
|
|
|
|
console.error('updateMarker - Marker has to have a valid name!');
|
|
|
|
return false;
|
|
|
|
}
|
2017-11-23 11:56:32 +00:00
|
|
|
if (!this.markers[marker.name]) {
|
|
|
|
console.error('updateMarker - Marker with name \'' + marker.name + '\' does not exist for sound \'' + this.key + '\'!');
|
|
|
|
return false;
|
|
|
|
}
|
2017-11-23 11:54:47 +00:00
|
|
|
this.markers[marker.name] = Extend(true, this.markers[marker.name], marker);
|
|
|
|
return true;
|
2017-11-23 11:41:41 +00:00
|
|
|
},
|
2017-11-14 15:00:24 +00:00
|
|
|
removeMarker: function (markerName) {
|
|
|
|
return false;
|
|
|
|
},
|
2017-11-22 17:05:18 +00:00
|
|
|
play: function (markerName, config) {
|
|
|
|
if (markerName === void 0) { markerName = ''; }
|
|
|
|
if (typeof markerName === 'object') {
|
|
|
|
config = markerName;
|
|
|
|
markerName = '';
|
2017-11-16 13:54:08 +00:00
|
|
|
}
|
2017-11-22 17:05:18 +00:00
|
|
|
if (typeof markerName !== 'string') {
|
2017-11-16 13:19:04 +00:00
|
|
|
console.error('Sound marker name has to be a string!');
|
|
|
|
return null;
|
|
|
|
}
|
2017-11-22 17:05:18 +00:00
|
|
|
if (!markerName) {
|
2017-11-16 13:19:04 +00:00
|
|
|
this.currentConfig = this.config;
|
2017-11-22 17:00:53 +00:00
|
|
|
this.duration = this.totalDuration;
|
2017-11-16 13:19:04 +00:00
|
|
|
}
|
|
|
|
else {
|
2017-11-22 17:05:18 +00:00
|
|
|
if (!this.markers[markerName]) {
|
|
|
|
console.error('No marker with name \'' + markerName + '\' found for sound \'' + this.key + '\'!');
|
2017-11-16 13:19:04 +00:00
|
|
|
return null;
|
|
|
|
}
|
2017-11-22 17:05:18 +00:00
|
|
|
this.currentMarker = this.markers[markerName];
|
2017-11-22 17:03:44 +00:00
|
|
|
this.currentConfig = this.currentMarker.config;
|
2017-11-22 17:00:53 +00:00
|
|
|
this.duration = this.currentMarker.duration;
|
2017-11-16 13:19:04 +00:00
|
|
|
}
|
|
|
|
this.currentConfig = Extend(this.currentConfig, config);
|
2017-11-17 14:14:57 +00:00
|
|
|
this.isPlaying = true;
|
|
|
|
this.isPaused = false;
|
2017-11-14 15:00:24 +00:00
|
|
|
return this;
|
|
|
|
},
|
|
|
|
pause: function () {
|
2017-11-17 17:37:49 +00:00
|
|
|
if (this.isPaused || !this.isPlaying) {
|
2017-11-17 16:16:06 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-11-17 14:16:25 +00:00
|
|
|
this.isPlaying = false;
|
|
|
|
this.isPaused = true;
|
2017-11-17 16:16:06 +00:00
|
|
|
return true;
|
2017-11-14 15:00:24 +00:00
|
|
|
},
|
|
|
|
resume: function () {
|
2017-11-17 17:37:49 +00:00
|
|
|
if (!this.isPaused || this.isPlaying) {
|
2017-11-17 16:16:06 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-11-17 14:18:51 +00:00
|
|
|
this.isPlaying = true;
|
|
|
|
this.isPaused = false;
|
2017-11-17 16:16:06 +00:00
|
|
|
return true;
|
2017-11-14 15:00:24 +00:00
|
|
|
},
|
|
|
|
stop: function () {
|
2017-11-17 17:37:49 +00:00
|
|
|
if (!this.isPaused && !this.isPlaying) {
|
2017-11-17 16:16:06 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-11-17 14:03:59 +00:00
|
|
|
this.isPlaying = false;
|
|
|
|
this.isPaused = false;
|
2017-11-17 16:16:06 +00:00
|
|
|
return true;
|
2017-11-14 15:00:24 +00:00
|
|
|
},
|
2017-11-16 12:32:35 +00:00
|
|
|
applyConfig: function () {
|
|
|
|
this.mute = this.currentConfig.mute;
|
|
|
|
this.volume = this.currentConfig.volume;
|
2017-11-16 14:23:04 +00:00
|
|
|
this.rate = this.currentConfig.rate;
|
2017-11-16 16:21:00 +00:00
|
|
|
this.detune = this.currentConfig.detune;
|
2017-11-16 12:32:35 +00:00
|
|
|
// TODO assign other config values to buffer source
|
|
|
|
},
|
2017-11-14 15:00:24 +00:00
|
|
|
fadeTo: function (volume, duration) {
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
update: function () {
|
|
|
|
},
|
|
|
|
destroy: function () {
|
|
|
|
}
|
|
|
|
});
|
|
|
|
module.exports = BaseSound;
|