Add sounds (only simulator for now)

This commit is contained in:
Michal Moskal
2017-10-30 17:25:58 +00:00
parent a8a7267851
commit ebbbe6e86c
10 changed files with 541 additions and 39 deletions

33
sim/state/sounds.ts Normal file
View File

@ -0,0 +1,33 @@
namespace pxsim.music {
export function fromWAV(buf: RefBuffer) {
return incr(buf)
}
}
namespace pxsim.SoundMethods {
export function buffer(buf: RefBuffer) {
return incr(buf)
}
export function uint8ArrayToString(input: Uint8Array) {
let len = input.length;
let res = ""
for (let i = 0; i < len; ++i)
res += String.fromCharCode(input[i]);
return res;
}
export function play(buf: RefBuffer, volume: number) {
return new Promise<void>(resolve => {
let url = "data:audio/wav;base64," + btoa(uint8ArrayToString(buf.data))
let audio = new Audio(url)
audio.onended = () => {
resolve()
}
audio.play()
})
}
}