-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 22162db
Showing
18 changed files
with
1,241 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper | ||
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos | ||
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree) | ||
*/ | ||
|
||
/* | ||
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper | ||
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree) | ||
*/ | ||
|
||
/* | ||
* @copyright (c) 2016, Philipp Thürwächter, Pattrick Hüper | ||
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos | ||
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree) | ||
*/ | ||
|
||
/** | ||
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper | ||
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos | ||
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree) | ||
*/ | ||
|
||
/** | ||
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper | ||
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree) | ||
*/ | ||
|
||
//! @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos | ||
|
||
//! @copyright (c) 2015-present, Philipp Thürwächter, Pattrick Hüper & js-joda contributors | ||
|
||
//! @license BSD-3-Clause (see LICENSE in the root directory of this source tree) | ||
|
||
//! @version @js-joda/core - 3.2.0 |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Manifest-Version: 1.0 | ||
|
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
|
||
<title>Mini Games</title> | ||
<script type="application/javascript" src="skiko.js"></script> | ||
<script type="application/javascript" src="minigameswasmapp.js"></script> | ||
<style> | ||
html, body { | ||
width: 100%; | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
background-color: white; | ||
overflow: hidden; | ||
} | ||
|
||
#warning { | ||
position: absolute; | ||
top: 100px; | ||
left: 100px; | ||
max-width: 830px; | ||
z-index: 100; | ||
background-color: white; | ||
font-size: initial; | ||
display: none; | ||
} | ||
#warning li { | ||
padding-bottom: 15px; | ||
} | ||
|
||
#warning span.code { | ||
font-family: monospace; | ||
} | ||
|
||
ul { | ||
margin-top: 0; | ||
margin-bottom: 15px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<canvas id="minigamesCanvas"></canvas> | ||
|
||
<div id="warning"> | ||
⚠️ Please make sure that your runtime environment supports the latest version of Wasm GC and Exception-Handling proposals. | ||
For more information, see <a href="https://kotl.in/wasm-help">https://kotl.in/wasm-help</a>. | ||
<br/> | ||
<br/> | ||
<ul> | ||
<li>For <b>Chrome</b> and <b>Chromium-based</b> browsers (Edge, Brave etc.), it <b>should just work</b> since version 119.</li> | ||
<li>For <b>Firefox</b> 120 it <b>should just work</b>.</li> | ||
<li>For <b>Firefox</b> 119: | ||
<ol> | ||
<li>Open <span class="code">about:config</span> in the browser.</li> | ||
<li>Enable <strong>javascript.options.wasm_gc</strong>.</li> | ||
<li>Refresh this page.</li> | ||
</ol> | ||
</li> | ||
</ul> | ||
</div> | ||
</body> | ||
|
||
<script type="application/javascript" > | ||
const unhandledError = (event, error) => { | ||
if (error instanceof WebAssembly.CompileError) { | ||
document.getElementById("warning").style.display="initial"; | ||
|
||
// Hide a Scary Webpack Overlay which is less informative in this case. | ||
const webpackOverlay = document.getElementById("webpack-dev-server-client-overlay"); | ||
if (webpackOverlay != null) webpackOverlay.style.display="none"; | ||
} | ||
} | ||
addEventListener("error", (event) => unhandledError(event, event.error)); | ||
addEventListener("unhandledrejection", (event) => unhandledError(event, event.reason)); | ||
</script> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { instantiate } from './minigameswasmapp.uninstantiated.mjs'; | ||
|
||
await wasmSetup; | ||
|
||
instantiate({ skia: Module['asm'] }); |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.