-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathindex.html
More file actions
132 lines (118 loc) · 5.54 KB
/
index.html
File metadata and controls
132 lines (118 loc) · 5.54 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
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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>SynthCity</title>
<meta name="description" content="An interactive audiovisual experience by Jeff Beene"/>
<meta http-equiv="expires" content="0">
<meta property="og:image" content="https://jeff-beene.com/synthcity/img/social.jpg">
<meta property="og:image:type" content="image/jpg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="675">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style-v6.css">
</head>
<body>
<div id="blocker">
<div id="container">
<div class="tCol leftCol">
<div class="tRow" style="height:100%;">
<div class="tHeader">>Terminal</div>
<div id="terminal">
<span id="cursor">▓</span>
</div>
</div>
</div>
<div class="tCol rightCol" style="width:calc(100% - 540px)">
<div class="tRow" style="height:25%">
<div class="tHeader">#Resources</div>
<div id="resources">>> No resources queued</div>
</div>
<div class="tRow" style="height:25%">
<div class="tHeader">#Settings</div>
<div id="settings" style="display: none;">
<div id="settingsLockMessage" class="g1" style="display:none; margin-bottom:10px;">
>> Settings locked: refresh page to unlock
</div>
<div style="margin-bottom: 5px;">
<span>Mode:</span>
<label class="formCheckContainer">
<input type="radio" checked="checked" name="settingsMode" value="drive">
<span class="checkmark">[Drive]</span>
</label>
<label class="formCheckContainer">
<input type="radio" name="settingsMode" value="freeroam">
<span class="checkmark">[Freeroam]</span>
</label>
</div>
<div style="margin-bottom: 5px;">
<span>World Seed:</span>
<label class="formCheckContainer">
<input type="radio" checked="checked" name="settingsWorldSeed" value="curated">
<span class="checkmark">[Curated]</span>
</label>
<label class="formCheckContainer">
<input type="radio" name="settingsWorldSeed" value="random">
<span class="checkmark">[Random]</span>
</label>
<label class="formCheckContainer">
<input type="radio" name="settingsWorldSeed" value="custom">
<span class="checkmark">[Custom]</span>
</label>
</div>
<div id="settingsWorldSeedValueContainer" style="display:none; margin-bottom: 5px;">
<span>Seed:</span>
<input type="number" id="settingsWorldSeedValue" name="settingsWorldSeedValue" value="0">
</div>
<div style="margin-bottom: 5px;">
<span>Render Scaling:</span>
<label class="formCheckContainer">
<input type="radio" checked="checked" name="settingsRenderScaling" value="1">
<span class="checkmark">[1.0x]</span>
</label>
<label class="formCheckContainer">
<input type="radio" name="settingsRenderScaling" value="1.5">
<span class="checkmark">[1.5x]</span>
</label>
<label class="formCheckContainer">
<input type="radio" name="settingsRenderScaling" value="2">
<span class="checkmark">[2.0x]</span>
</label>
</div>
<div id="settingsWindshieldShaderContainer" style="margin-bottom: 5px;">
<span>Windshield FX:</span>
<label class="formCheckContainer">
<input type="radio" checked="checked" name="settingsWindshieldShader" value="simple">
<span class="checkmark">[Simple]</span>
</label>
<label class="formCheckContainer">
<input type="radio" name="settingsWindshieldShader" value="advanced">
<span class="checkmark">[Advanced]</span>
</label>
</div>
</div>
</div>
<div class="tRow" style="height:25%">
<div class="tHeader">#Controls</div>
<div id="controls">>> No program loaded</div>
</div>
<div class="tRow" style="height:32px;">
<button id="enterBtn" style="display:none;">>>Launch<<</button>
</div>
</div>
</div>
</div>
<div id="crashMessage" style="display:none;">
<div class="g1">[ You crashed ]</div>
</div>
<canvas id="canvas" style="opacity:0;"></canvas>
<script src="js/ui-v3.js"></script>
<script src="js/alea.js"></script>
<script src="js/proc-noise.js"></script>
<script src="dist/main.4840b40f143ef03913fc.js" async></script>
</body>
</html>