mirror of
https://github.com/kichikuou/xsystem35-sdl2.git
synced 2026-09-28 01:37:58 +03:00
53 lines
1.5 KiB
JavaScript
53 lines
1.5 KiB
JavaScript
mergeInto(LibraryManager.library, {
|
|
wait_vsync: function() {
|
|
EmterpreterAsync.handle(function(resume) {
|
|
window.requestAnimationFrame(function() {
|
|
if (ABORT) return; // do this manually; we can't call into Browser.safeSetTimeout, because that is paused/resumed!
|
|
resume();
|
|
});
|
|
});
|
|
},
|
|
muspcm_init: function() {
|
|
return 0; // OK
|
|
},
|
|
muspcm_exit: function() {
|
|
return 0; // OK
|
|
},
|
|
muspcm_load_no: function(slot, no) { // emterpreter sync
|
|
return xsystem35.audio.pcm_load(slot, no);
|
|
},
|
|
muspcm_load_mixlr: function(slot, noL, noR) { // emterpreter sync
|
|
return xsystem35.audio.pcm_load_mixlr(slot, noL, noR);
|
|
},
|
|
muspcm_start: function(slot, loop) {
|
|
return xsystem35.audio.pcm_start(slot, loop);
|
|
},
|
|
muspcm_stop: function(slot) {
|
|
return xsystem35.audio.pcm_stop(slot);
|
|
},
|
|
muspcm_fadeout: function(slot, msec) {
|
|
return xsystem35.audio.pcm_fadeout(slot, msec);
|
|
},
|
|
muspcm_pause: function(slot) {
|
|
console.log('muspcm_pause: not implemented');
|
|
return -1; // NG
|
|
},
|
|
muspcm_unpause: function(slot) {
|
|
console.log('muspcm_unpause: not implemented');
|
|
return -1; // NG
|
|
},
|
|
muspcm_getpos: function(slot) {
|
|
return xsystem35.audio.pcm_getpos(slot);
|
|
},
|
|
muspcm_setvol: function(dev, slot, lv) {
|
|
return xsystem35.audio.pcm_setvol(slot, lv);
|
|
},
|
|
muspcm_getwavelen: function(slot) {
|
|
var len = xsystem35.audio.pcm_getwavelen(slot);
|
|
return len > 65535 ? 65535 : len;
|
|
},
|
|
muspcm_isplaying: function(slot) {
|
|
return xsystem35.audio.pcm_isplaying(slot);
|
|
}
|
|
});
|