forked from aceholecousins/acechase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscreen.html
More file actions
99 lines (85 loc) · 4.49 KB
/
screen.html
File metadata and controls
99 lines (85 loc) · 4.49 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta property="og:url" content="https://aceholecousins.github.io/acechase/" />
<meta property="og:type" content="product" />
<meta property="og:title" content="AceChase" />
<meta property="og:description" content="A free Massive Multiplayer Couch Vehicular Combat Game by AceholeCousins" />
<meta property="og:image" content="https://raw.githubusercontent.com/aceholecousins/acechase/master/media/images/banner.jpg" />
<link rel="icon" href="media/images/hbfav.ico" type="image/vnd.microsoft.icon">
<title>AceChase</title>
<style>
body {
margin: 0px;
background-color: #000000;
overflow: hidden;
}
td {
text-align: center;
}
</style>
</head>
<body>
<table id ="splashscreen" style="position:absolute;
top:20%; left:20%; width:60%; height:60%; zIndex:1000;">
<tr><td style="color:black; background-color:white; font-size:30pt; font-family:monospace; font-variant: small-caps;
vertical-align:middle; text-align:center; padding:5%;
border-radius:15px 50px; background: url(media/images/quotebg.jpg);
-webkit-background-size: cover; -moz-background-size: cover;
-o-background-size: cover; background-size: cover;">
<span id="splashscreentext"></span>
</td></tr></table>
<script src="config.js"></script> <!-- configuration file -->
<script src="src/game.js"></script>
<script>
readParams();
</script>
<script src="https://www.airconsole.com/api/airconsole-1.7.0.js"></script> <!-- air console api -->
<script src="src/misc/quotes.js"></script> <!-- quotes to nicen loading time -->
<script src="src/jslibs/three.js"></script> <!-- WebGL wrapper, main framework (http://threejs.org) -->
<!--<script src="src/jslibs/math.min.js"></script>--> <!-- math functions (http://mathjs.org/) (SEEMS BUGGY)-->
<script src="src/jslibs/OrbitControls.js"></script> <!-- camera orbit controls, part of three.js -->
<script src="src/jslibs/p2.js"></script> <!-- p2 physics engine (https://schteppe.github.io/p2.js) -->
<script src="src/jslibs/stats.min.js"></script> <!-- framerate display -->
<script src="src/jslibs/DDSLoader.js"></script> <!-- file loader, part of three.js -->
<script src="src/jslibs/OBJLoader.js"></script> <!-- file loader, part of three.js -->
<script src="src/jslibs/MTLLoader.js"></script> <!-- file loader, part of three.js -->
<script src="src/jslibs/distancetf.js"></script> <!-- distance transform for boolean images (extracted from https://parmanoir.com/distance) -->
<script src="src/jslibs/buffer-loader.js"></script> <!-- loader that was used by the sound tutorial page http://www.html5rocks.com/en/tutorials/webaudio/intro/ -->
<script src="src/jslibs/GPUComputationRenderer.js"></script> <!-- for water cellular automata https://github.com/mrdoob/three.js/blob/dev/examples/js/GPUComputationRenderer.js -->
<script src="src/jslibs/THREE.MeshLine.js"></script> <!-- for trails https://github.com/spite/THREE.MeshLine -->
<script src="src/utils/tools.js"></script>
<script src="src/utils/imglib.js"></script>
<script src="src/environment/mechanics.js"></script>
<script src="src/environment/scene.js"></script>
<script src="src/environment/sound.js"></script>
<script src="src/environment/hbobject.js"></script>
<script src="src/environment/camera.js"></script>
<script src="src/fx/effect.js"></script>
<script src="src/fx/trail.js"></script>
<script src="src/fx/explosion.js"></script>
<script src="src/fx/flame.js"></script>
<script src="src/control/screencontrol.js"></script>
<script src="src/control/control.js"></script>
<script src="src/control/mouse.js"></script>
<script src="src/control/gamepad.js"></script>
<script src="src/control/keyboard.js"></script>
<script src="src/control/mobiledevice.js"></script>
<script src="src/control/airconsole.js"></script>
<script src="src/things/hovercraft.js"></script>
<script src="src/things/phaser.js"></script>
<script src="src/things/missile.js"></script>
<script src="src/things/seamine.js"></script>
<script src="src/things/powerups.js"></script>
<script src="src/things/targets.js"></script>
<script src="src/arena/arenasvgloader.js"></script>
<script src="src/arena/arena.js"></script>
<script src="src/arena/water.js"></script>
<script src="src/misc/scoretable.js"></script>
<script src="src/misc/medals.js"></script>
<script type="text/javascript">
init();
</script>
</body>
</html>