forked from pxscene/Lightning-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DevLauncher.js
156 lines (130 loc) · 4.39 KB
/
DevLauncher.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
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
import {} from "./js/lib/lightning-web.js";
import ux from "./js/src/ux.js";
export default class DevLauncher {
constructor() {
var useInterval = ux.Ui.getOption("useInterval");
if (useInterval) {
this._setupInterval(useInterval);
}
}
_setupInterval(useInterval) {
console.log('use interval instead of request animation frame');
var interval = parseInt(useInterval);
// Work-around for requestAnimationFrame bug.
var lastFrameTime = 0;
window.requestAnimationFrame = function(callback) {
var currentTime = Date.now();
var targetTime = Math.max(lastFrameTime + interval, currentTime);
return window.setTimeout(function() {
lastFrameTime = Date.now();
callback();
}, targetTime - currentTime);
};
}
launch(appType, lightningOptions, options = {}) {
this._appType = appType;
this._options = options;
return this._start(lightningOptions);
}
static set uxPath(uxPath) {
this._uxPath = uxPath;
}
_start(lightningOptions = {}) {
this._addStyles();
this._openFirewall();
this._lightningOptions = this._getLightningOptions(lightningOptions);
return this._startApp();
}
_startApp() {
ux.Ui.staticFilesPath = DevLauncher._uxPath;
return this._loadInspector().then(() => {
const bootstrap = new ux.Ui(this._lightningOptions);
bootstrap.startApp(this._appType);
const canvas = bootstrap.stage.getCanvas();
document.body.appendChild(canvas);
window.ui = bootstrap;
return bootstrap;
})
}
_loadInspector() {
if (this._options.useInspector) {
/* Attach the inspector to create a fake DOM that shows where lightning elements can be found. */
return this.loadScript(DevLauncher._uxPath + "./js/lib/lightning-inspect.js");
} else {
return Promise.resolve();
}
}
_addStyles() {
const style = document.createElement('style');
style.innerText = `
*,body{
margin:0;
padding:0;
}
canvas {
position: absolute;
z-index: 2;
}
body {
background: black;
}`;
document.head.appendChild(style);
}
loadScript(src) {
return new Promise(function (resolve, reject) {
var script = document.createElement('script');
script.onload = function() {
resolve();
};
script.onerror = function(e) {
reject(new Error("Script load error for " + src + ": " + e));
};
script.src = src;
document.head.appendChild(script);
});
}
_openFirewall() {
// Fetch app store to ensure that proxy/image servers firewall is opened.
fetch(`http://widgets.metrological.com/${encodeURIComponent(ux.Ui.getOption('operator') || 'metrological')}/nl/test`).then(() => {});
}
_getLightningOptions(customOptions = {}) {
let options = {stage: {w: 1920, h: 1080, clearColor: 0x00000000, canvas2d: false}, debug: false, keys: this._getNavigationKeys()};
const config = options.stage;
if (ux.Ui.hasOption("720") || window.innerHeight === 720) {
config['w'] = 1280;
config['h'] = 720;
config['precision'] = 0.6666666667;
} else {
config['w'] = 1920;
config['h'] = 1080;
config.useImageWorker = true;
}
if (!config.memoryPressure) {
const memoryPressure = ux.Ui.getOption('memoryPressure');
if (memoryPressure) {
config.memoryPressure = memoryPressure;
console.log('GPU memory pressure: ' + memoryPressure);
}
}
options = lng.tools.ObjMerger.merge(options, customOptions);
return options;
}
_getNavigationKeys() {
return {
8: "Back",
13: "Enter",
27: "Menu",
37: "Left",
38: "Up",
39: "Right",
40: "Down",
174: "ChannelDown",
175: "ChannelUp",
178: "Stop",
250: "PlayPause",
191: "Search", // Use "/" for keyboard
409: "Search"
};
}
}
DevLauncher._uxPath = "./node_modules/wpe-lightning-sdk/";