mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 09:24:26 +03:00
143 lines
5.0 KiB
HTML
143 lines
5.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script type="module">
|
|
import { default as init } from './fifteen_min.js';
|
|
|
|
function isWebGL1Supported() {
|
|
try {
|
|
var canvas = document.createElement('canvas');
|
|
return !!canvas.getContext('webgl');
|
|
} catch(e) {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
function isWebGL2Supported() {
|
|
try {
|
|
var canvas = document.createElement('canvas');
|
|
return !!canvas.getContext('webgl2');
|
|
} catch(e) {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
function prettyPrintBytes(bytes) {
|
|
if (bytes < 1024 ** 2) {
|
|
return Math.round(bytes / 1024) + " KB";
|
|
}
|
|
return Math.round(bytes / 1024 ** 2) + " MB";
|
|
}
|
|
|
|
function main() {
|
|
let webGL1Supported = isWebGL1Supported();
|
|
let webGL2Supported = isWebGL2Supported();
|
|
console.log("supports WebGL 1.0: " + webGL1Supported + ", WebGL 2.0: " + webGL2Supported);
|
|
if (webGL1Supported || webGL2Supported) {
|
|
fetchWithProgress();
|
|
} else {
|
|
showUnsupported();
|
|
}
|
|
}
|
|
|
|
function setElementVisibility(elementId, isVisible) {
|
|
let el = document.getElementById(elementId);
|
|
if (!el) {
|
|
console.error("element missing: ", elementId);
|
|
}
|
|
if (isVisible) {
|
|
el.style.display = "block";
|
|
} else {
|
|
el.style.display = "none";
|
|
}
|
|
}
|
|
|
|
function showUnsupported() {
|
|
setElementVisibility('progress', false);
|
|
setElementVisibility('unsupported', true);
|
|
document.getElementById('unsupported-proceed-btn').onclick = function() {
|
|
fetchWithProgress();
|
|
};
|
|
}
|
|
|
|
async function fetchWithProgress() {
|
|
setElementVisibility('progress', true);
|
|
setElementVisibility('unsupported', false);
|
|
const t0 = performance.now();
|
|
console.log("Started loading WASM");
|
|
let response = await fetch('./fifteen_min_bg.wasm');
|
|
const contentLength = response.headers.get('Content-Length');
|
|
const reader = response.body.getReader();
|
|
let receivedLength = 0;
|
|
let chunks = [];
|
|
while (true) {
|
|
const {done, value} = await reader.read();
|
|
if (done) {
|
|
break;
|
|
}
|
|
chunks.push(value);
|
|
receivedLength += value.length;
|
|
document.getElementById("progress-text").innerText = prettyPrintBytes(receivedLength) + " / " + prettyPrintBytes(contentLength);
|
|
document.getElementById("progress-bar").style.width = (100.0 * receivedLength / contentLength) + "%";
|
|
}
|
|
document.getElementById("progress-text").innerText = "Loaded " + prettyPrintBytes(contentLength) + ", now initializing WASM module";
|
|
let blob = new Blob(chunks);
|
|
let buffer = await blob.arrayBuffer();
|
|
const t1 = performance.now();
|
|
console.log(`It took ${t1 - t0} ms to download WASM, now initializing it`);
|
|
await init(buffer);
|
|
}
|
|
|
|
main();
|
|
</script>
|
|
<style type="text/css">
|
|
body {
|
|
background-color: white;
|
|
}
|
|
#loading {
|
|
background-color: #94C84A;
|
|
padding: 40px;
|
|
color: black;
|
|
font-family: arial;
|
|
border: solid black 3px;
|
|
border-radius: 4px;
|
|
max-width: 500px;
|
|
margin: auto;
|
|
}
|
|
#progress-bar {
|
|
/* complementary to #loading:background-color */
|
|
background-color: #FF5733;
|
|
margin-bottom: 8px;
|
|
}
|
|
#loading h1 {
|
|
text-align: center;
|
|
}
|
|
#unsupported-proceed-btn {
|
|
display: block;
|
|
margin: auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="widgetry-canvas"><div id="loading">
|
|
<h1>15-minute Neighborhood Explorer</h1>
|
|
<div id="progress" style="display: none">
|
|
<h2>Loading...</h2>
|
|
<div style="width: 100%; background-color: white;">
|
|
<div style="width: 1%; height: 30px;" id="progress-bar"></div>
|
|
</div>
|
|
<div id="progress-text"></div>
|
|
<p>If you think something has broken, check your browser's developer console (Ctrl+Shift+I or similar)</p>
|
|
<p>(Your browser must support WebGL and WebAssembly)</p>
|
|
</div>
|
|
<div id="unsupported" style="display: none;">
|
|
<h2>😭 Looks like your browser doesn't support WebGL.</h2>
|
|
|
|
<button id="unsupported-proceed-btn" type="button">Load Anyway</button>
|
|
<p><strong>This will surely fail unless you enable WebGL first.</strong></p>
|
|
</div>
|
|
</div></div>
|
|
</body>
|
|
<html>
|