pxt-ev3/sim/state/sounds.ts

37 lines
696 B
TypeScript
Raw Normal View History

2017-10-30 17:25:58 +00:00
namespace pxsim.music {
export function fromWAV(buf: RefBuffer) {
return buf
2017-10-30 17:25:58 +00:00
}
2017-12-13 16:31:42 -08:00
2017-12-15 10:42:44 -08:00
export function stopAllSounds() {
2017-12-13 16:31:42 -08:00
SoundMethods.stop()
}
pxsim.music.setVolume = (volume: number): void => {
pxsim.getAudioState().volume = volume;
};
export function volume() {
return pxsim.getAudioState().volume;
}
2017-10-30 17:25:58 +00:00
}
namespace pxsim.SoundMethods {
2017-12-13 16:31:42 -08:00
let audio: HTMLAudioElement;
2017-10-30 17:25:58 +00:00
export function buffer(buf: RefBuffer) {
return buf
2017-10-30 17:25:58 +00:00
}
export function play(buf: RefBuffer) {
return pxsim.AudioContextManager.playBufferAsync(buf);
2017-10-30 17:25:58 +00:00
}
2017-12-13 16:31:42 -08:00
export function stop() {
pxsim.AudioContextManager.stop();
2017-12-13 16:31:42 -08:00
}
2017-10-30 17:25:58 +00:00
}