Sindbad~EG File Manager
H5P.SingleChoiceSet = H5P.SingleChoiceSet || {};
H5P.SingleChoiceSet.SoundEffects = (function () {
var isDefined = false;
var SoundEffects = {
types: [
'positive-short',
'negative-short'
]
};
/**
* Setup defined sounds
*
* @param {string} libraryPath
* @return {boolean} True if setup was successfull, otherwise false
*/
SoundEffects.setup = function (libraryPath) {
if (isDefined || !H5P.SoundJS.initializeDefaultPlugins()) {
return false;
}
H5P.SoundJS.alternateExtensions = ['mp3'];
for (var i = 0; i < SoundEffects.types.length; i++) {
var type = SoundEffects.types[i];
H5P.SoundJS.registerSound(libraryPath + 'sounds/' + type + '.ogg', type);
}
isDefined = true;
return true;
};
/**
* Play a sound
*
* @param {string} type Name of the sound as defined in [SoundEffects.types]{@link H5P.SoundEffects.SoundEffects#types}
* @param {number} delay Delay in milliseconds
*/
SoundEffects.play = function (type, delay) {
H5P.SoundJS.play(type, H5P.SoundJS.INTERRUPT_NONE, (delay || 0));
};
return SoundEffects;
})();
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists