aboutsummaryrefslogtreecommitdiff
path: root/src/shell.html
blob: ac86e5e05dd5274332a421992c16c30353de9c41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<html>
  <head>
    <title>Emscripten-Generated Code</title>
  <body>
    <center>
      <canvas id='canvas' width='256' height='256'></canvas>
      <hr>
      <textarea id="output" style="font-family: monospace; width: 80%" rows="8" readonly></textarea>
      <hr>
      <div id='status'></div>
    </center>
    <hr>
    <script type='text/javascript'>
      // connect to canvas
      var Module = {
        print: (function() {
          var element = document.getElementById('output');
          element.value = ''; // clear browser cache
          return function(text) {
            text = text.replace(/&/g, "&amp;");
            text = text.replace(/</g, "&lt;");
            text = text.replace(/>/g, "&gt;");
            text = text.replace('\n', '<br>', 'g');
            element.value += text + "\n";
          };
        })(),
        canvas: document.getElementById('canvas'),
        totalDependencies: 0,
        monitorRunDependencies: function(left) {
          this.totalDependencies = Math.max(this.totalDependencies, left);
          document.getElementById('status').innerHTML = left ? 'Downloading files: ' + (this.totalDependencies-left) + '/' + this.totalDependencies :
                                                               'All downloads complete.';
        }
      };

      {{{ SCRIPT_CODE }}}
    </script>
  </body>
</html>