|
| 1 | +<!doctype html> |
| 2 | +<html lang="en-us"> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| 6 | + <title>Emscripten-Generated Code</title> |
| 7 | + <style> |
| 8 | + .emscripten { padding-right: 0; margin-left: auto; margin-right: auto; display: block; } |
| 9 | + textarea.emscripten { font-family: monospace; width: 80%; } |
| 10 | + div.emscripten { text-align: center; } |
| 11 | + div.emscripten_border { border: 1px solid black; } |
| 12 | + /* the canvas *must not* have any border or padding, or mouse coords will be wrong */ |
| 13 | + canvas.emscripten { border: 0px none; } |
| 14 | + |
| 15 | + .spinner { |
| 16 | + height: 50px; |
| 17 | + width: 50px; |
| 18 | + margin: 0px auto; |
| 19 | + -webkit-animation: rotation .8s linear infinite; |
| 20 | + -moz-animation: rotation .8s linear infinite; |
| 21 | + -o-animation: rotation .8s linear infinite; |
| 22 | + animation: rotation 0.8s linear infinite; |
| 23 | + border-left: 10px solid rgb(0,150,240); |
| 24 | + border-right: 10px solid rgb(0,150,240); |
| 25 | + border-bottom: 10px solid rgb(0,150,240); |
| 26 | + border-top: 10px solid rgb(100,0,200); |
| 27 | + border-radius: 100%; |
| 28 | + background-color: rgb(200,100,250); |
| 29 | + } |
| 30 | + @-webkit-keyframes rotation { |
| 31 | + from {-webkit-transform: rotate(0deg);} |
| 32 | + to {-webkit-transform: rotate(360deg);} |
| 33 | + } |
| 34 | + @-moz-keyframes rotation { |
| 35 | + from {-moz-transform: rotate(0deg);} |
| 36 | + to {-moz-transform: rotate(360deg);} |
| 37 | + } |
| 38 | + @-o-keyframes rotation { |
| 39 | + from {-o-transform: rotate(0deg);} |
| 40 | + to {-o-transform: rotate(360deg);} |
| 41 | + } |
| 42 | + @keyframes rotation { |
| 43 | + from {transform: rotate(0deg);} |
| 44 | + to {transform: rotate(360deg);} |
| 45 | + } |
| 46 | + |
| 47 | + </style> |
| 48 | + </head> |
| 49 | + <body> |
| 50 | + <hr/> |
| 51 | + <figure style="overflow:visible;" id="spinner"><div class="spinner"></div><center style="margin-top:0.5em"><strong>emscripten</strong></center></figure> |
| 52 | + <div class="emscripten" id="status">Downloading...</div> |
| 53 | + <div class="emscripten"> |
| 54 | + <progress value="0" max="100" id="progress" hidden=1></progress> |
| 55 | + </div> |
| 56 | + <div class="emscripten_border"> |
| 57 | + <canvas class="emscripten" id="canvas" oncontextmenu="event.preventDefault()"></canvas> |
| 58 | + </div> |
| 59 | + <hr/> |
| 60 | + <div class="emscripten"> |
| 61 | + <input type="checkbox" id="resize">Resize canvas |
| 62 | + <input type="checkbox" id="pointerLock" checked>Lock/hide mouse pointer |
| 63 | + |
| 64 | + <input type="button" value="Fullscreen" onclick="Module.requestFullScreen(document.getElementById('pointerLock').checked, |
| 65 | + document.getElementById('resize').checked)"> |
| 66 | + </div> |
| 67 | + |
| 68 | + <hr/> |
| 69 | + <textarea class="emscripten" id="output" rows="8"></textarea> |
| 70 | + <hr> |
| 71 | + <script type='text/javascript'> |
| 72 | + var statusElement = document.getElementById('status'); |
| 73 | + var progressElement = document.getElementById('progress'); |
| 74 | + var spinnerElement = document.getElementById('spinner'); |
| 75 | + |
| 76 | + var Module = { |
| 77 | + gotStdout: false, |
| 78 | + gotStderr: false, |
| 79 | + preRun: [], |
| 80 | + postRun: [], |
| 81 | + |
| 82 | + reportSuccess: function() { |
| 83 | + var xhr = new XMLHttpRequest(); |
| 84 | + xhr.open('GET', 'http://localhost:8888/report_result?0'); |
| 85 | + xhr.send(); |
| 86 | + setTimeout(function() { window.close() }, 1000); |
| 87 | + }, |
| 88 | + |
| 89 | + print: (function() { |
| 90 | + var element = document.getElementById('output'); |
| 91 | + if (element) element.value = ''; // clear browser cache |
| 92 | + return function(text) { |
| 93 | + text = Array.prototype.slice.call(arguments).join(' '); |
| 94 | + // These replacements are necessary if you render to raw HTML |
| 95 | + //text = text.replace(/&/g, "&"); |
| 96 | + //text = text.replace(/</g, "<"); |
| 97 | + //text = text.replace(/>/g, ">"); |
| 98 | + //text = text.replace('\n', '<br>', 'g'); |
| 99 | + console.log(text); |
| 100 | + if (text == 'hello!') { Module.gotStdout = true; if (Module.gotStderr) Module.reportSuccess(); } |
| 101 | + if (element) { |
| 102 | + element.value += text + "\n"; |
| 103 | + element.scrollTop = element.scrollHeight; // focus on bottom |
| 104 | + } |
| 105 | + }; |
| 106 | + })(), |
| 107 | + printErr: function(text) { |
| 108 | + text = Array.prototype.slice.call(arguments).join(' '); |
| 109 | + if (text == 'hello from stderr too!') { Module.gotStderr = true; if (Module.gotStdout) Module.reportSuccess(); } |
| 110 | + if (0) { // XXX disabled for safety typeof dump == 'function') { |
| 111 | + dump(text + '\n'); // fast, straight to the real console |
| 112 | + } else { |
| 113 | + console.error(text); |
| 114 | + } |
| 115 | + }, |
| 116 | + canvas: (function() { |
| 117 | + var canvas = document.getElementById('canvas'); |
| 118 | + |
| 119 | + // As a default initial behavior, pop up an alert when webgl context is lost. To make your |
| 120 | + // application robust, you may want to override this behavior before shipping! |
| 121 | + // See http://www.khronos.org/registry/webgl/specs/latest/1.0/#5.15.2 |
| 122 | + canvas.addEventListener("webglcontextlost", function(e) { alert('WebGL context lost. You will need to reload the page.'); e.preventDefault(); }, false); |
| 123 | + |
| 124 | + return canvas; |
| 125 | + })(), |
| 126 | + setStatus: function(text) { |
| 127 | + if (!Module.setStatus.last) Module.setStatus.last = { time: Date.now(), text: '' }; |
| 128 | + if (text === Module.setStatus.text) return; |
| 129 | + var m = text.match(/([^(]+)\((\d+(\.\d+)?)\/(\d+)\)/); |
| 130 | + var now = Date.now(); |
| 131 | + if (m && now - Date.now() < 30) return; // if this is a progress update, skip it if too soon |
| 132 | + if (m) { |
| 133 | + text = m[1]; |
| 134 | + progressElement.value = parseInt(m[2])*100; |
| 135 | + progressElement.max = parseInt(m[4])*100; |
| 136 | + progressElement.hidden = false; |
| 137 | + spinnerElement.hidden = false; |
| 138 | + } else { |
| 139 | + progressElement.value = null; |
| 140 | + progressElement.max = null; |
| 141 | + progressElement.hidden = true; |
| 142 | + if (!text) spinnerElement.hidden = true; |
| 143 | + } |
| 144 | + statusElement.innerHTML = text; |
| 145 | + }, |
| 146 | + totalDependencies: 0, |
| 147 | + monitorRunDependencies: function(left) { |
| 148 | + this.totalDependencies = Math.max(this.totalDependencies, left); |
| 149 | + Module.setStatus(left ? 'Preparing... (' + (this.totalDependencies-left) + '/' + this.totalDependencies + ')' : 'All downloads complete.'); |
| 150 | + } |
| 151 | + }; |
| 152 | + Module.setStatus('Downloading...'); |
| 153 | + window.onerror = function() { |
| 154 | + Module.setStatus('Exception thrown, see JavaScript console'); |
| 155 | + spinnerElement.style.display = 'none'; |
| 156 | + Module.setStatus = function(text) { |
| 157 | + if (text) Module.printErr('[post-exception status] ' + text); |
| 158 | + }; |
| 159 | + }; |
| 160 | + </script> |
| 161 | + {{{ SCRIPT }}} |
| 162 | + </body> |
| 163 | +</html> |
0 commit comments