| /** |
| * @license |
| * Copyright 2010 The Emscripten Authors |
| * SPDX-License-Identifier: MIT |
| */ |
| |
| #if USE_CLOSURE_COMPILER |
| |
| // if (!Module)` is crucial for Closure Compiler here as it will |
| // otherwise replace every `Module` occurrence with the object below |
| var /** @type{Object} */ Module; |
| if (!Module) /** @suppress{checkTypes}*/Module = |
| #if AUDIO_WORKLET |
| globalThis.{{{ EXPORT_NAME }}} || |
| #endif |
| {"__EMSCRIPTEN_PRIVATE_MODULE_EXPORT_NAME_SUBSTITUTION__":1}; |
| |
| #elif !MODULARIZE && (ENVIRONMENT_MAY_BE_NODE || ENVIRONMENT_MAY_BE_SHELL) |
| |
| // When running on the web we expect Module to be defined externally, in the |
| // HTML. Otherwise we must define it here before its first use |
| var Module = |
| #if SUPPORTS_GLOBALTHIS |
| // As a small code size optimization, we can use 'globalThis' to refer to the global scope Module variable. |
| globalThis.{{{ EXPORT_NAME }}} || {}; |
| #else |
| // Otherwise do a good old typeof check. |
| typeof {{{ EXPORT_NAME }}} != 'undefined' ? {{{ EXPORT_NAME }}} : {}; |
| #endif |
| |
| #else |
| var Module = {{{ EXPORT_NAME }}}; |
| #endif |
| |
| #if MODULARIZE && EXPORT_READY_PROMISE |
| // Set up the promise that indicates the Module is initialized |
| var readyPromiseResolve, readyPromiseReject; |
| Module['ready'] = new Promise((resolve, reject) => { |
| readyPromiseResolve = resolve; |
| readyPromiseReject = reject; |
| }); |
| #if ASSERTIONS |
| {{{ addReadyPromiseAssertions("Module['ready']") }}} |
| #endif |
| #endif |
| |
| #if ENVIRONMENT_MAY_BE_NODE |
| var ENVIRONMENT_IS_NODE = typeof process == 'object'; |
| #endif |
| |
| #if ENVIRONMENT_MAY_BE_SHELL |
| var ENVIRONMENT_IS_SHELL = typeof read == 'function'; |
| #endif |
| |
| #if AUDIO_WORKLET |
| var ENVIRONMENT_IS_AUDIO_WORKLET = typeof AudioWorkletGlobalScope !== 'undefined'; |
| #endif |
| |
| #if ASSERTIONS || USE_PTHREADS |
| #if !ENVIRONMENT_MAY_BE_NODE && !ENVIRONMENT_MAY_BE_SHELL |
| var ENVIRONMENT_IS_WEB = true |
| #elif ENVIRONMENT && !ENVIRONMENT.includes(',') |
| var ENVIRONMENT_IS_WEB = {{{ ENVIRONMENT === 'web' }}}; |
| #elif ENVIRONMENT_MAY_BE_SHELL && ENVIRONMENT_MAY_BE_NODE |
| var ENVIRONMENT_IS_WEB = !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_SHELL; |
| #elif ENVIRONMENT_MAY_BE_SHELL |
| var ENVIRONMENT_IS_WEB = !ENVIRONMENT_IS_SHELL; |
| #else |
| var ENVIRONMENT_IS_WEB = !ENVIRONMENT_IS_NODE; |
| #endif |
| #endif // ASSERTIONS || USE_PTHREADS |
| |
| #if WASM_WORKERS |
| var ENVIRONMENT_IS_WASM_WORKER = Module['$ww']; |
| #endif |
| |
| #if ASSERTIONS && ENVIRONMENT_MAY_BE_NODE && ENVIRONMENT_MAY_BE_SHELL |
| if (ENVIRONMENT_IS_NODE && ENVIRONMENT_IS_SHELL) { |
| throw 'unclear environment'; |
| } |
| #endif |
| |
| #if !SINGLE_FILE |
| #if ENVIRONMENT_MAY_BE_NODE && ((WASM == 1 && (!WASM2JS || !MEM_INIT_IN_WASM)) || WASM == 2) |
| // Wasm or Wasm2JS loading: |
| |
| if (ENVIRONMENT_IS_NODE) { |
| var fs = require('fs'); |
| #if WASM == 2 |
| if (typeof WebAssembly != 'undefined') Module['wasm'] = fs.readFileSync(__dirname + '/{{{ TARGET_BASENAME }}}.wasm'); |
| else eval(fs.readFileSync(__dirname + '/{{{ TARGET_BASENAME }}}.wasm.js')+''); |
| #else |
| #if !WASM2JS |
| Module['wasm'] = fs.readFileSync(__dirname + '/{{{ TARGET_BASENAME }}}.wasm'); |
| #endif |
| #endif |
| #if MEM_INIT_METHOD == 1 && !MEM_INIT_IN_WASM |
| Module['mem'] = fs.readFileSync(__dirname + '/{{{ TARGET_BASENAME }}}.mem'); |
| #endif |
| } |
| #endif |
| |
| #if ENVIRONMENT_MAY_BE_SHELL && ((WASM == 1 && (!WASM2JS || !MEM_INIT_IN_WASM)) || WASM == 2) |
| if (ENVIRONMENT_IS_SHELL) { |
| #if WASM == 2 |
| if (typeof WebAssembly != 'undefined') Module['wasm'] = read('{{{ TARGET_BASENAME }}}.wasm', 'binary'); |
| else eval(read('{{{ TARGET_BASENAME }}}.wasm.js')+''); |
| #else |
| #if !WASM2JS |
| Module['wasm'] = read('{{{ TARGET_BASENAME }}}.wasm', 'binary'); |
| #endif |
| #endif |
| #if MEM_INIT_METHOD == 1 && !MEM_INIT_IN_WASM |
| Module['mem'] = read('{{{ TARGET_BASENAME }}}.mem', 'binary'); |
| #endif |
| } |
| #endif |
| |
| #endif // !SINGLE_FILE |
| |
| // Redefine these in a --pre-js to override behavior. If you would like to |
| // remove out() or err() altogether, you can no-op it out to function() {}, |
| // and build with --closure 1 to get Closure optimize out all the uses |
| // altogether. |
| |
| var out = (text) => console.log(text); |
| var err = (text) => console.error(text); |
| |
| // Override this function in a --pre-js file to get a signal for when |
| // compilation is ready. In that callback, call the function run() to start |
| // the program. |
| function ready() { |
| #if MODULARIZE && EXPORT_READY_PROMISE |
| readyPromiseResolve(Module); |
| #endif // MODULARIZE |
| #if INVOKE_RUN && HAS_MAIN |
| {{{ runIfMainThread("run();") }}} |
| #elif ASSERTIONS |
| out('ready() called, and INVOKE_RUN=0. The runtime is now ready for you to call run() to invoke application _main(). You can also override ready() in a --pre-js file to get this signal as a callback') |
| #endif |
| #if USE_PTHREADS |
| // This Worker is now ready to host pthreads, tell the main thread we can proceed. |
| if (ENVIRONMENT_IS_PTHREAD) { |
| startWorker(Module); |
| } |
| #endif |
| } |
| |
| #if POLYFILL |
| // See https://caniuse.com/mdn-javascript_builtins_object_assign |
| #if MIN_CHROME_VERSION < 45 || MIN_EDGE_VERSION < 12 || MIN_FIREFOX_VERSION < 34 || MIN_IE_VERSION != TARGET_NOT_SUPPORTED || MIN_SAFARI_VERSION < 90000 |
| #include "polyfill/objassign.js" |
| #endif |
| #endif |
| |
| // --pre-jses are emitted after the Module integration code, so that they can |
| // refer to Module (if they choose; they can also define Module) |
| {{{ preJS() }}} |
| |
| #if USE_PTHREADS |
| |
| #if !MODULARIZE |
| // In MODULARIZE mode _scriptDir needs to be captured already at the very top of the page immediately when the page is parsed, so it is generated there |
| // before the page load. In non-MODULARIZE modes generate it here. |
| var _scriptDir = (typeof document != 'undefined' && document.currentScript) ? document.currentScript.src : undefined; |
| #endif |
| |
| // MINIMAL_RUNTIME does not support --proxy-to-worker option, so Worker and Pthread environments |
| // coincide. |
| #if WASM_WORKERS |
| var ENVIRONMENT_IS_WORKER = typeof importScripts == 'function', |
| ENVIRONMENT_IS_PTHREAD = ENVIRONMENT_IS_WORKER && !ENVIRONMENT_IS_WASM_WORKER; |
| #else |
| var ENVIRONMENT_IS_WORKER = ENVIRONMENT_IS_PTHREAD = typeof importScripts == 'function'; |
| #endif |
| |
| var currentScriptUrl = typeof _scriptDir != 'undefined' ? _scriptDir : ((typeof document != 'undefined' && document.currentScript) ? document.currentScript.src : undefined); |
| #endif // USE_PTHREADS |