SFXPlayer.js

  1. /* global platypus */
  2. import {arrayCache, greenSplice} from './utils/array.js';
  3. import Sound from 'pixi-sound';
  4. /**
  5. * This class plays sfx audio and manages Springroll volume changes.
  6. *
  7. * @memberof platypus
  8. * @class SFXPlayer
  9. */
  10. export default class SFXPlayer {
  11. constructor () {
  12. this.volume = 1;
  13. this.player = Sound;
  14. this.playingAudio = arrayCache.setUp();
  15. this.sounds = arrayCache.setUp();
  16. }
  17. /**
  18. * Plays a sound.
  19. *
  20. * @method platypus.SFXPlayer#play
  21. * @param {String} sound Sound Id to play.
  22. * @param {Object} data PixiSound data to inform sound playback.
  23. * @return {pixiSound.MediaInstance} The media instance of the playing sound.
  24. * @public
  25. */
  26. play (sound, data) {
  27. const
  28. audio = sound.play ? sound.play(data) : this.player.play(sound, data);
  29. audio.initialVolume = (typeof data.initialVolume === 'number' ? data.initialVolume : audio.volume);
  30. audio.set('volume', audio.volume * this.volume);
  31. this.playingAudio.push(audio);
  32. this.sounds.push(sound);
  33. audio.on('end', () => {
  34. const index = this.playingAudio.indexOf(audio);
  35. greenSplice(this.playingAudio, index);
  36. greenSplice(this.sounds, index);
  37. });
  38. return audio;
  39. }
  40. /**
  41. * Plays a sound.
  42. *
  43. * @method platypus.SFXPlayer#stop
  44. * @param {pixiSound.MediaInstance} audio Audio to stop.
  45. * @public
  46. */
  47. stop (audio) {
  48. const index = this.playingAudio.indexOf(audio);
  49. audio.stop();
  50. if (index >= 0) {
  51. greenSplice(this.playingAudio, index);
  52. greenSplice(this.sounds, index);
  53. } else {
  54. platypus.debug.warn('SFXPlayer: Did not find "' + audio.soundId + '"');
  55. }
  56. }
  57. /**
  58. * Sets volume on all playing sound effects.
  59. *
  60. * @method platypus.SFXPlayer#setVolume
  61. * @param {Number} volume A value between 0-1 to set volume on all playing sound effects.
  62. * @public
  63. */
  64. setVolume (volume) {
  65. const
  66. playingAudio = this.playingAudio;
  67. this.volume = volume;
  68. for (let i = 0; i < playingAudio.length; i++) {
  69. const
  70. audio = playingAudio[i];
  71. audio.set('volume', audio.initialVolume * this.volume);
  72. }
  73. }
  74. /**
  75. * Cleans up this SFXPlayer.
  76. * @method platypus.SFXPlayer#destroy
  77. * @public
  78. */
  79. destroy () {
  80. arrayCache.recycle(this.playingAudio);
  81. this.playingAudio = null;
  82. arrayCache.recycle(this.sounds);
  83. this.sounds = null;
  84. }
  85. };