-
Notifications
You must be signed in to change notification settings - Fork 22
/
renpy-pre.js
115 lines (104 loc) · 4.31 KB
/
renpy-pre.js
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
/*
Emscripten hooks - downloads external Ren'Py game on demand
Copyright (C) 2019, 2020, 2021 Sylvain Beucler
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation files
(the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
// Download specified game.zip and extract&run it
Module['onRuntimeInitialized'] = function() {
_GET = {};
if (location.search.length > 0) {
location.search.substr(1).split('&').forEach(function(item) {
_GET[item.split("=")[0]] = item.split("=")[1]
});
}
//var query_string = '?';
//for (i in _GET) { query_string += i+'='+_GET[i]+'&'; }
//query_string = query_string.slice(0, -1);
var url = DEFAULT_GAME_FILENAME;
if (_GET['game']) {
if (_GET['game'].match(/^[0-9a-z._-]+$/i)) {
url = _GET['game'];
} else {
// XSS: prevent executing untrusted remote/relative Python code
// (that could steal or modify same-origin data)
throw "Invalid game filename.";
}
}
var xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.responseType = 'arraybuffer';
xhr.onprogress = function(event) {
var size = -1;
if (event.total) size = event.total;
if (event.loaded) {
if (!xhr.addedTotal) {
xhr.addedTotal = true;
if (!Module.dataFileDownloads) Module.dataFileDownloads = {};
Module.dataFileDownloads[url] = {
loaded: event.loaded,
total: size
};
} else {
Module.dataFileDownloads[url].loaded = event.loaded;
}
var total = 0;
var loaded = 0;
var num = 0;
for (var download in Module.dataFileDownloads) {
var data = Module.dataFileDownloads[download];
total += data.total;
loaded += data.loaded;
num++;
}
total = Math.ceil(total * Module.expectedDataFileDownloads/num);
if (Module['setStatus']) Module['setStatus']('Downloading Story... (' + loaded + '/' + total + ')');
} else if (!Module.dataFileDownloads) {
if (Module['setStatus']) Module['setStatus']('Downloading Story...');
}
};
xhr.onerror = function(event) {
console.log(xhr);
console.log(event);
Module.print("Cannot download Story. Maybe the download was blocked, see the JavaScript console for more information.\n");
}
xhr.onload = function(event) {
if (xhr.status == 200 || xhr.status == 304 || xhr.status == 206 || (xhr.status == 0 && xhr.response)) {
FS.writeFile('game.zip', new Uint8Array(xhr.response), {canOwn:true});
if (Module['setStatus']) Module['setStatus']('');
Module.print("Extracting Story...\n");
window.setTimeout(function() { gameExtractAndRun(); }, 200);
} else {
console.log(xhr);
console.log(event);
Module.print("Error while downloading Story " + xhr.responseURL
+ " : " + xhr.statusText + " (status code " + xhr.status + ")\n");
}
};
xhr.send(null);
}
// Don't throw uncatchable async exception on sys.exit()
Module['quit'] = function() {
console.log('RenPyWeb: quit');
Module['setStatus']('Bye!');
// avoid callback loop
if (noExitRuntime) {
noExitRuntime = false; // cf. emscripten_force_exit
// delete Module['quit']; // not preventing loop
exit(0);
}
}