-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathshell-fullscreen.html
132 lines (114 loc) · 4.55 KB
/
shell-fullscreen.html
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Untitled</title>
<style>
* {
margin:0;
padding:0;
border:0;
line-height:0;
box-sizing:border-box;
}
html {
height:100%;
}
body {
height:100%;
background:#2f1f1f;
}
canvas {
width:100%;
height:100%;
overflow:hidden;
}
</style>
</head>
<body>
<canvas id="canvas" oncontextmenu="event.preventDefault()" tabindex=-1></canvas>
<script>
var canvasElement = document.getElementById('canvas');
var Module = {
preRun: [],
postRun: [],
print: (function() {
return function(text) {
if(arguments.length > 1) {
text = Array.prototype.slice.call(arguments).join(' ');
}
console.log(text);
};
})(),
printErr: function(text) {
if(arguments.length > 1) {
text = Array.prototype.slice.call(arguments).join(' ');
}
console.error(text);
},
canvas: (function() {
// As a default initial behavior, pop up an alert when webgl context is lost. To make your
// application robust, you may want to override this behavior before shipping!
// See http://www.khronos.org/registry/webgl/specs/latest/1.0/#5.15.2
canvasElement.addEventListener(
"webglcontextlost",
function(e) {
alert('WebGL context lost. You will need to reload the page.');
e.preventDefault();
},
false);
return canvasElement;
})(),
setStatus: function(text) {
if(!Module.setStatus.last) {
Module.setStatus.last = {
text: ''
};
}
text = text.trim();
if(text.length > 0 && text !== Module.setStatus.last.text) {
Module.setStatus.last.text = text;
if(!text.match(/([^(]+)\((\d+(\.\d+)?)\/(\d+)\)/)) {
Module.print(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...');
window.onerror = function(event) {
// TODO: do not warn on ok events like simulating an infinite loop or exitStatus
Module.setStatus('Exception thrown, see JavaScript console');
Module.setStatus = function(text) {
if(text) {
Module.printErr('[post-exception status] ' + text);
}
};
};
function audio_enable_fix() {
try {
if(Module.SDL2
&& Module.SDL2.audioContext
&& Module.SDL2.audioContext.resume) {
if(Module.SDL2.audioContext.state == 'suspended') {
Module.SDL2.audioContext.resume();
}
if(Module.SDL2.audioContext.state == 'running') {
document.removeEventListener('keydown', audio_enable_fix);
document.removeEventListener('click', audio_enable_fix);
}
}
} catch(e) {
Module.printErr(e.toString());
}
}
document.addEventListener('keydown', audio_enable_fix);
document.addEventListener('click', audio_enable_fix);
</script>
{{{ SCRIPT }}}
</body>
</html>