2013-05-14 18:38:42 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en-us">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
|
<title>FTE QuakeWorld</title>
|
|
|
|
<style>
|
2013-08-07 14:20:24 +00:00
|
|
|
body { background-color:#000000; color:#808080; height:100%;width:100%;margin:0;padding:0;}
|
2013-05-14 18:38:42 +00:00
|
|
|
.emscripten { padding-right: 0; margin-left: auto; margin-right: auto; display: block; }
|
2013-08-07 14:20:24 +00:00
|
|
|
div.emscripten { text-align: center; padding:0; margin: 0;}
|
|
|
|
div.emscripten_border { padding:0; margin: 0; }
|
2013-05-14 18:38:42 +00:00
|
|
|
/* the canvas *must not* have any border or padding, or mouse coords will be wrong */
|
2013-08-07 14:20:24 +00:00
|
|
|
canvas.emscripten { border: 0px none; width:100%; height:100%; padding:0; margin: 0;}
|
2013-05-14 18:38:42 +00:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="emscripten" id="status">Is javascript enabled?</div>
|
|
|
|
<div class="emscripten">
|
|
|
|
<progress value="0" max="100" id="progress" hidden=1></progress>
|
|
|
|
</div>
|
|
|
|
<div class="emscripten_border">
|
|
|
|
<canvas class="emscripten" id="canvas" oncontextmenu="event.preventDefault()"></canvas>
|
|
|
|
</div>
|
2013-08-07 14:20:24 +00:00
|
|
|
<!-- <div class="emscripten">
|
2013-05-14 18:38:42 +00:00
|
|
|
<input type="checkbox" id="resize">Resize canvas
|
|
|
|
<input type="checkbox" id="pointerLock" checked>Lock/hide mouse pointer
|
|
|
|
|
|
|
|
<input type="button" value="Fullscreen" onclick="Module.requestFullScreen(document.getElementById('pointerLock').checked,
|
|
|
|
document.getElementById('resize').checked)">
|
|
|
|
</div>
|
2013-08-07 14:20:24 +00:00
|
|
|
-->
|
2013-05-14 18:38:42 +00:00
|
|
|
<script type='text/javascript'>
|
|
|
|
// connect to canvas
|
|
|
|
var Module = {
|
|
|
|
preRun: [],
|
|
|
|
postRun: [],
|
|
|
|
print: (function() {
|
|
|
|
})(),
|
|
|
|
printErr: function(text) {
|
|
|
|
text = Array.prototype.slice.call(arguments).join(' ');
|
|
|
|
if (0) { // XXX disabled for safety typeof dump == 'function') {
|
|
|
|
dump(text + '\n'); // fast, straight to the real console
|
|
|
|
} else {
|
|
|
|
console.log(text);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
canvas: document.getElementById('canvas'),
|
|
|
|
setStatus: function(text) {
|
|
|
|
if (Module.setStatus.interval) clearInterval(Module.setStatus.interval);
|
|
|
|
var m = text.match(/([^(]+)\((\d+(\.\d+)?)\/(\d+)\)/);
|
|
|
|
var statusElement = document.getElementById('status');
|
|
|
|
var progressElement = document.getElementById('progress');
|
|
|
|
if (m) {
|
|
|
|
text = m[1];
|
|
|
|
progressElement.value = parseInt(m[2])*100;
|
|
|
|
progressElement.max = parseInt(m[4])*100;
|
|
|
|
progressElement.hidden = false;
|
|
|
|
} else {
|
|
|
|
progressElement.value = null;
|
|
|
|
progressElement.max = null;
|
|
|
|
progressElement.hidden = true;
|
|
|
|
}
|
|
|
|
statusElement.innerHTML = text;
|
|
|
|
},
|
|
|
|
totalDependencies: 0,
|
|
|
|
monitorRunDependencies: function(left) {
|
|
|
|
this.totalDependencies = Math.max(this.totalDependencies, left);
|
|
|
|
Module.setStatus(left ? 'Preparing... (' + (this.totalDependencies-left) + '/' + this.totalDependencies + ')' : 'All downloads complete.');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Module.setStatus('Downloading...');
|
|
|
|
</script>
|
|
|
|
<script type='text/javascript'>
|
|
|
|
|
|
|
|
{{{ SCRIPT_CODE }}}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|