-
Notifications
You must be signed in to change notification settings - Fork 78
/
squeak_lively.js
102 lines (99 loc) · 4.22 KB
/
squeak_lively.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
/*
* Copyright (c) 2013-2024 Vanessa Freudenberg
*
* 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.
*/
"use strict";
//////////////////////////////////////////////////////////////////////////////
// This loads SqueakJS as a Lively module
// Refer to lively/README.md for running the visual VM debugger
//////////////////////////////////////////////////////////////////////////////
module('users.SqueakJS.squeak_lively').requires().toRun(function() {
Object.extend(users.SqueakJS.squeak_lively, {
loadSqueak: function(thenDo) {
// bail out if loaded already
if (Global.Squeak) return thenDo && thenDo();
// otherwise, load all
var files = [
"globals.js",
"vm.js",
"vm.object.js",
"vm.object.spur.js",
"vm.image.js",
"vm.interpreter.js",
"vm.interpreter.proxy.js",
"vm.instruction.stream.js",
"vm.instruction.stream.sista.js",
"vm.instruction.printer.js",
"vm.primitives.js",
"jit.js",
"vm.audio.browser.js",
"vm.display.js",
"vm.display.browser.js",
"vm.files.browser.js",
"vm.input.js",
"vm.input.browser.js",
"vm.plugins.js",
"vm.plugins.ffi.js",
"vm.plugins.javascript.js",
"vm.plugins.obsolete.js",
"vm.plugins.drop.browser.js",
"vm.plugins.file.browser.js",
"vm.plugins.jpeg2.browser.js",
"vm.plugins.scratch.browser.js",
"vm.plugins.sound.browser.js",
"plugins/ADPCMCodecPlugin.js",
"plugins/B2DPlugin.js",
"plugins/BitBltPlugin.js",
"plugins/CroquetPlugin.js",
"plugins/FFTPlugin.js",
"plugins/FloatArrayPlugin.js",
"plugins/GeniePlugin.js",
"plugins/JPEGReaderPlugin.js",
"plugins/KedamaPlugin.js",
"plugins/KedamaPlugin2.js",
"plugins/Klatt.js",
"plugins/LargeIntegers.js",
"plugins/Matrix2x3Plugin.js",
"plugins/MiscPrimitivePlugin.js",
"plugins/ScratchPlugin.js",
"plugins/SocketPlugin.js",
"plugins/SpeechPlugin.js",
"plugins/SqueakSSL.js",
"plugins/SoundGenerationPlugin.js",
"plugins/StarSqueakPlugin.js",
"plugins/ZipPlugin.js",
"lib/lz-string.js",
"lib/jszip.js",
"lib/FileSaver.js",
"lib/sha1.js",
];
var base = URL.root.withFilename("users/SqueakJS/");
JSLoader.resolveAndLoadAll(base, files, function() {
Object.extend(Squeak, {
vmPath: "/",
platformSubtype: "Browser",
osVersion: navigator.userAgent, // might want to parse
windowSystem: "HTML",
});
if (thenDo) thenDo();
});
},
});
});