Skip to content

Commit

Permalink
chore: update doom-wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
yHSJ committed Dec 10, 2024
1 parent 2b5b627 commit 0ab7de3
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
Binary file modified public/websockets-doom.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion public/websockets-doom.wasm.map

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions websockets-doom.js
Original file line number Diff line number Diff line change
Expand Up @@ -506,31 +506,31 @@ var tempDouble;
var tempI64;

var ASM_CONSTS = {
449298: $0 => {
449394: $0 => {
var str = UTF8ToString($0) + "\n\n" + "Abort/Retry/Ignore/AlwaysIgnore? [ariA] :";
var reply = window.prompt(str, "i");
if (reply === null) {
reply = "i";
}
return allocate(intArrayFromString(reply), "i8", ALLOC_NORMAL);
},
449523: () => {
449619: () => {
if (typeof (AudioContext) !== "undefined") {
return true;
} else if (typeof (webkitAudioContext) !== "undefined") {
return true;
}
return false;
},
449670: () => {
449766: () => {
if ((typeof (navigator.mediaDevices) !== "undefined") && (typeof (navigator.mediaDevices.getUserMedia) !== "undefined")) {
return true;
} else if (typeof (navigator.webkitGetUserMedia) !== "undefined") {
return true;
}
return false;
},
449904: $0 => {
45e4: $0 => {
if (typeof (Module["SDL2"]) === "undefined") {
Module["SDL2"] = {};
}
Expand All @@ -552,11 +552,11 @@ var ASM_CONSTS = {
}
return SDL2.audioContext === undefined ? -1 : 0;
},
450397: () => {
450493: () => {
var SDL2 = Module["SDL2"];
return SDL2.audioContext.sampleRate;
},
450465: ($0, $1, $2, $3) => {
450561: ($0, $1, $2, $3) => {
var SDL2 = Module["SDL2"];
var have_microphone = function(stream) {
if (SDL2.capture.silenceTimer !== undefined) {
Expand Down Expand Up @@ -597,7 +597,7 @@ var ASM_CONSTS = {
}, have_microphone, no_microphone);
}
},
452117: ($0, $1, $2, $3) => {
452213: ($0, $1, $2, $3) => {
var SDL2 = Module["SDL2"];
SDL2.audio.scriptProcessorNode = SDL2.audioContext["createScriptProcessor"]($1, 0, $0);
SDL2.audio.scriptProcessorNode["onaudioprocess"] = function(e) {
Expand All @@ -609,7 +609,7 @@ var ASM_CONSTS = {
};
SDL2.audio.scriptProcessorNode["connect"](SDL2.audioContext["destination"]);
},
452527: ($0, $1) => {
452623: ($0, $1) => {
var SDL2 = Module["SDL2"];
var numChannels = SDL2.capture.currentCaptureBuffer.numberOfChannels;
for (var c = 0; c < numChannels; ++c) {
Expand All @@ -628,7 +628,7 @@ var ASM_CONSTS = {
}
}
},
453132: ($0, $1) => {
453228: ($0, $1) => {
var SDL2 = Module["SDL2"];
var numChannels = SDL2.audio.currentOutputBuffer["numberOfChannels"];
for (var c = 0; c < numChannels; ++c) {
Expand All @@ -641,7 +641,7 @@ var ASM_CONSTS = {
}
}
},
453612: $0 => {
453708: $0 => {
var SDL2 = Module["SDL2"];
if ($0) {
if (SDL2.capture.silenceTimer !== undefined) {
Expand Down Expand Up @@ -679,7 +679,7 @@ var ASM_CONSTS = {
SDL2.audioContext = undefined;
}
},
454784: ($0, $1, $2) => {
454880: ($0, $1, $2) => {
var w = $0;
var h = $1;
var pixels = $2;
Expand Down Expand Up @@ -750,7 +750,7 @@ var ASM_CONSTS = {
}
SDL2.ctx.putImageData(SDL2.image, 0, 0);
},
456253: ($0, $1, $2, $3, $4) => {
456349: ($0, $1, $2, $3, $4) => {
var w = $0;
var h = $1;
var hot_x = $2;
Expand Down Expand Up @@ -787,19 +787,19 @@ var ASM_CONSTS = {
stringToUTF8(url, urlBuf, url.length + 1);
return urlBuf;
},
457242: $0 => {
457338: $0 => {
if (Module["canvas"]) {
Module["canvas"].style["cursor"] = UTF8ToString($0);
}
},
457325: () => {
457421: () => {
if (Module["canvas"]) {
Module["canvas"].style["cursor"] = "none";
}
},
457394: () => window.innerWidth,
457424: () => window.innerHeight,
457455: ($0, $1) => {
457490: () => window.innerWidth,
457520: () => window.innerHeight,
457551: ($0, $1) => {
alert(UTF8ToString($0) + "\n\n" + UTF8ToString($1));
}
};
Expand Down Expand Up @@ -8659,9 +8659,9 @@ var _asyncify_start_rewind = a0 => (_asyncify_start_rewind = wasmExports["asynci

var _asyncify_stop_rewind = () => (_asyncify_stop_rewind = wasmExports["asyncify_stop_rewind"])();

var ___start_em_js = Module["___start_em_js"] = 447888;
var ___start_em_js = Module["___start_em_js"] = 447984;

var ___stop_em_js = Module["___stop_em_js"] = 449298;
var ___stop_em_js = Module["___stop_em_js"] = 449394;

function intArrayFromBase64(s) {
if (typeof ENVIRONMENT_IS_NODE != "undefined" && ENVIRONMENT_IS_NODE) {
Expand Down

0 comments on commit 0ab7de3

Please sign in to comment.