-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
198 lines (170 loc) · 6.42 KB
/
index.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="https://borg.games/"/>
<link rel="shortcut icon" href="/favicon.svg" sizes="any" type="image/svg+xml"/>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#0d0d0d">
<meta name="msapplication-TileColor" content="#101010">
<meta name="theme-color" content="#000000">
<title>Borg Demo</title>
<meta name="description" content="Demo">
<link rel="stylesheet" href="/css/style.css">
<style>
input {
min-width: 28em;
}
button {
margin: 0.5em;
min-width: 8em;
}
</style>
</head>
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-16572194743"></script>
<script>
console.debug('gtag');
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'AW-16572194743');
</script>
<body class="no-nodes release">
<h1 class="no-video"><span class="dev">DEV MODE -</span> Run in your browser <span id="network"></span>
<noscript><h1>Cloud gaming requires JavaScript</h1></noscript>
</h1>
<h4>For best experience use Google Chrome or Chromium-based browser</h4>
<div class="video-container">
<video autoplay playsInline disablePictureInPicture id="stream"></video>
<h1 id="game-status"></h1>
<button class="action" type="button" id="video-resume" style="display: none">Resume</button>
<div id="video-overlay">
<div class="header">
Resolution: <span id="video-resolution">unknown</span>
</div>
<div class="footer">
<label>
video quality: <span id="video-quality"></span>
<br/>
<input type="range" min="1" max="80" id="video-bitrate" value="2">
</label>
</div>
</div>
<div id="notifications"></div>
</div>
<div class="content no-video">
<div id="launch-config">
<h3>WIM uri</h3>
<input type="url" id="wim-uri" placeholder="http://your.srv/dir/game.wim">
<h3>Run</h3>
<input type="text" id="wim-run" placeholder="bin/game-x64.exe">
<h3>Args</h3>
<input type="text" id="wim-args" placeholder="-d3d11 -windowed -res=1280x720">
</div>
<p>
<button class="action" type="button" id="run">Run</button>
<button class="action" type="button" onclick="shareConfig()">share</button>
</p>
<p>
<a href="" id="this-config" style="display: none;"></a>
</p>
<p>
<a href="mailto:[email protected]">🐞 Report an issue 🐞</a>
</p>
</div>
<div class="footer">
<h4>For best experience use Google Chrome or Chromium-based browser</h4>
<h3 class="about"><a href="/about">© Borg Queen, LLC 2025</a></h3>
</div>
</body>
<script src="https://webrtc.github.io/adapter/adapter-9.0.1.js"
integrity="sha384-kOlMOLZNYoP5WSj2ag2vv9BgOnN1jTYirEjM0gTDQOhYuDWx964EPIkhdpbmN+OW"
crossorigin="anonymous"></script>
<script type="module">
import {devMode} from "./js/dev.js";
import {Ephemeral} from "./js/ephemeral.js";
import {Home} from "./js/home.js";
const uriIn = document.getElementById('wim-uri');
const runIn = document.getElementById('wim-run');
const argsIn = document.getElementById('wim-args');
// read initial values from query string
const urlParams = new URLSearchParams(window.location.search);
uriIn.value = urlParams.get('url');
runIn.value = urlParams.get('run');
argsIn.value = urlParams.get('args');
const NETWORK = new URLSearchParams(window.location.search).get('interlink');
const run = document.getElementById('run');
run.onclick = function () {
const wimUri = uriIn.value;
const wimRun = runIn.value;
const wimArgs = argsIn.value;
Home.launch({
demo: 'wim?url=' + encodeURIComponent(wimUri) + '&run=' + encodeURIComponent(wimRun)
+ '&args=' + encodeURIComponent(wimArgs),
nodeFilter: { verMin: '0.3.84' }
});
};
async function main() {
if (devMode()) {
document.body.classList.remove('release');
console.error('dev mode');
}
await Home.init();
const nodes = await Ephemeral.getNodes();
run.disabled = nodes.length === 0;
if (!run.disabled)
run.title = '';
if (nodes.length > 0) {
document.body.classList.remove('no-nodes');
if (NETWORK && NETWORK.startsWith('CES-')) {
document.getElementById('launch-config').remove();
document.getElementById('stream').muted = true;
run.click();
}
}
}
async function shareUrlClipboard(url) {
try {
await navigator.clipboard.writeText(url);
alert('Config URL copied to clipboard');
} catch (e) {
console.error('clipboard write failed', e);
}
const thisConfig = document.getElementById('this-config');
thisConfig.href = url;
thisConfig.innerText = 'Link to this config';
}
window.shareConfig = () => {
const uri = encodeURIComponent(uriIn.value);
const run = encodeURIComponent(runIn.value);
const args = encodeURIComponent(argsIn.value);
let url = window.location.origin + window.location.pathname + '?url=' + uri + '&run=' + run + '&args=' + args;
if (NETWORK)
url += '&interlink=' + NETWORK;
if (navigator.share) {
navigator.share({
title: 'Borg Demo',
text: 'Run GPU-accelerated app in your browser',
url: url
}).then(() => {
console.log('Config URL shared');
}).catch(_ => {
shareUrlClipboard(url);
});
return;
}
shareUrlClipboard(url);
}
main();
</script>
<script>
function toggleDev() {
localStorage.setItem('dev-mode', 1 - (+localStorage.getItem('dev-mode')));
window.location.reload();
}
</script>
</html>