Skip to content

Commit

Permalink
Create ruffle.js
Browse files Browse the repository at this point in the history
  • Loading branch information
starg3n authored Dec 6, 2024
1 parent 3614af0 commit 486043a
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions flashgames/ruffle.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
// eslint-disable-next-line no-unused-vars
/* global __webpack_public_path__:writable */

import { Setup } from "ruffle-core";

let currentScriptURL = null;

try {
if (
document.currentScript !== undefined &&
document.currentScript !== null &&
"src" in document.currentScript &&
document.currentScript.src !== ""
) {
let src = document.currentScript.src;

// CDNs allow omitting the filename. If it's omitted, append a slash to
// prevent the last component from being dropped.
if (!src.endsWith(".js") && !src.endsWith("/")) {
src += "/";
}

currentScriptURL = new URL(".", src);
}
// eslint-disable-next-line no-unused-vars
} catch (_e) {
console.warn("Unable to get currentScript URL");
}

function publicPath(config) {
// Default to the directory where this script resides.
let path = currentScriptURL?.href ?? "";
if (
"publicPath" in config &&
config.publicPath !== null &&
config.publicPath !== undefined
) {
path = config.publicPath;
}

// Webpack expects the paths to end with a slash.
if (path !== "" && !path.endsWith("/")) {
path += "/";
}

return path;
}

Setup.installRuffle("local", {
onFirstLoad: () => {
__webpack_public_path__ = publicPath(window.RufflePlayer?.config);
},
});

0 comments on commit 486043a

Please sign in to comment.