forked from microsoft/pxt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathembed.ts
More file actions
407 lines (363 loc) · 12.5 KB
/
embed.ts
File metadata and controls
407 lines (363 loc) · 12.5 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
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
/// <reference path="../localtypings/pxtparts.d.ts"/>
namespace pxsim {
export interface SimulatorRunMessage extends SimulatorMessage {
type: "run";
id?: string;
boardDefinition?: BoardDefinition;
frameCounter?: number;
refCountingDebug?: boolean;
options?: any;
parts?: string[];
partDefinitions?: Map<PartDefinition>
fnArgs?: any;
code: string;
mute?: boolean;
highContrast?: boolean;
light?: boolean;
cdnUrl?: string;
localizedStrings?: Map<string>;
version?: string;
clickTrigger?: boolean;
breakOnStart?: boolean;
storedState?: Map<any>;
}
export interface SimulatorInstructionsMessage extends SimulatorMessage {
type: "instructions";
options: pxsim.instructions.RenderPartsOptions;
}
export interface SimulatorMuteMessage extends SimulatorMessage {
type: "mute";
mute: boolean;
}
export interface SimulatorStopSoundMessage extends SimulatorMessage {
type: "stopsound";
}
export interface SimulatorDocMessage extends SimulatorMessage {
type: "localtoken" | "docfailed";
docType?: string;
src?: string;
localToken?: string;
}
export interface SimulatorFileLoadedMessage extends SimulatorMessage {
type: "fileloaded";
name: string;
// localeInfo NOT userLanguage
locale: string;
content?: string;
}
export interface SimulatorReadyMessage extends SimulatorMessage {
type: "ready";
frameid: string;
}
export interface SimulatorTopLevelCodeFinishedMessage extends SimulatorMessage {
type: "toplevelcodefinished";
}
export interface SimulatorOpenDocMessage extends SimulatorMessage {
type: "opendoc";
url: string;
}
export interface SimulatorStateMessage extends SimulatorMessage {
type: "status";
frameid?: string;
runtimeid?: string;
state: string;
}
export interface SimulatorBroadcastMessage extends SimulatorMessage {
broadcast: boolean;
}
export interface SimulatorEventBusMessage extends SimulatorBroadcastMessage {
type: "eventbus";
broadcast: true;
id: number;
eventid: number;
value?: number;
}
export interface SimulatorSerialMessage extends SimulatorMessage {
type: "serial";
id: string;
data: string;
sim?: boolean;
receivedTime?: number;
}
export interface SimulatorBulkSerialMessage extends SimulatorMessage {
type: "bulkserial";
id: string;
data: { data: string, time: number }[];
sim?: boolean;
}
export interface SimulatorCommandMessage extends SimulatorMessage {
type: "simulator",
command: "modal" | "restart" | "reload" | "setstate" | "focus" | "blur"
stateKey?: string;
stateValue?: any;
header?: string;
body?: string;
copyable?: string;
linkButtonHref?: string;
linkButtonLabel?: string;
displayOnceId?: string; // An id for the modal command, if the sim wants the modal to be displayed only once in the session
modalContext?: string; // Modal context of where to show the modal
timestamp?: number;
}
export interface SimulatorRadioPacketMessage extends SimulatorBroadcastMessage {
type: "radiopacket";
broadcast: true;
rssi: number;
serial: number;
time: number;
payload: SimulatorRadioPacketPayload;
}
export interface SimulatorInfraredPacketMessage extends SimulatorBroadcastMessage {
type: "irpacket";
broadcast: true;
packet: Uint8Array; // base64 encoded
}
export interface SimulatorBLEPacketMessage extends SimulatorBroadcastMessage {
type: "blepacket";
broadcast: true;
packet: Uint8Array;
}
export interface SimulatorI2CMessage extends SimulatorMessage {
type: "i2c";
data: Uint8Array;
}
export interface SimulatorRadioPacketPayload {
type: number;
groupId: number;
stringData?: string;
numberData?: number;
}
export interface SimulatorCustomMessage extends SimulatorMessage {
type: "custom";
content: any;
}
export interface SimulatorScreenshotMessage extends SimulatorMessage {
type: "screenshot";
data: ImageData;
delay?: number;
}
export interface SimulatorRecorderMessage extends SimulatorMessage {
type: "recorder";
action: "start" | "stop";
width?: number;
}
export interface TutorialMessage extends SimulatorMessage {
type: "tutorial";
tutorial: string;
subtype: string;
}
export interface ImportFileMessage extends SimulatorMessage {
type: "importfile";
filename: string;
parts: (string | ArrayBuffer)[];
}
export interface TutorialStepInfo {
fullscreen?: boolean;
hasHint?: boolean;
contentMd?: string;
headerContentMd?: string;
}
export interface TutorialLoadedMessage extends TutorialMessage {
subtype: "loaded";
showCategories?: boolean;
stepInfo: TutorialStepInfo[];
toolboxSubset?: { [index: string]: number };
}
export interface TutorialStepChangeMessage extends TutorialMessage {
subtype: "stepchange";
step: number;
}
export interface TutorialFailedMessage extends TutorialMessage {
subtype: "error";
message?: string;
}
export interface RenderReadyResponseMessage extends SimulatorMessage {
source: "makecode",
type: "renderready"
}
export interface RenderBlocksRequestMessage extends SimulatorMessage {
type: "renderblocks",
id: string;
code?: string;
options?: {
packageId?: string;
package?: string;
snippetMode?: boolean;
}
}
export interface RenderBlocksResponseMessage extends SimulatorMessage {
source: "makecode",
type: "renderblocks",
id: string;
svg?: string;
width?: number;
height?: number;
css?: string;
uri?: string;
error?: string;
}
export function print(delay: number = 0) {
function p() {
try {
window.print();
}
catch (e) {
// oops
}
}
if (delay)
setTimeout(p, delay);
else p();
}
export namespace Embed {
export let frameid: string;
export function start() {
window.addEventListener("message", receiveMessage, false);
frameid = window.location.hash.slice(1)
initAppcache();
Runtime.postMessage(<SimulatorReadyMessage>{ type: 'ready', frameid: frameid });
}
function receiveMessage(event: MessageEvent) {
let origin = event.origin; // || (<any>event).originalEvent.origin;
// TODO: test origins
let data: SimulatorMessage = event.data || {};
let type = data.type;
if (!type) return;
switch (type) {
case "run": run(<SimulatorRunMessage>data); break;
case "instructions": pxsim.instructions.renderInstructions(<SimulatorInstructionsMessage>data); break;
case "stop": stop(); break;
case "mute": mute((<SimulatorMuteMessage>data).mute); break;
case "stopsound": stopSound(); break;
case "print": print(); break;
case 'recorder': recorder(<SimulatorRecorderMessage>data); break;
case "screenshot": Runtime.postScreenshotAsync(<SimulatorScreenshotMessage>data).done(); break;
case "custom":
if (handleCustomMessage)
handleCustomMessage((<SimulatorCustomMessage>data));
break;
case 'pxteditor':
break; //handled elsewhere
case 'debugger':
if (runtime)
runtime.handleDebuggerMsg(data as DebuggerMessage);
break;
case 'simulator':
let simData = data as SimulatorCommandMessage;
switch (simData.command) {
case "focus":
tickEvent("simulator.focus", { timestamp: simData.timestamp });
break;
case "blur":
tickEvent("simulator.blur", { timestamp: simData.timestamp });
break;
}
default: queue(data); break;
}
}
// TODO remove this; this should be using Runtime.runtime which gets
// set correctly depending on which runtime is currently running
let runtime: pxsim.Runtime;
export function stop() {
if (runtime) {
runtime.kill();
if (runtime.board)
runtime.board.kill();
}
}
export function run(msg: SimulatorRunMessage) {
stop();
if (msg.mute)
mute(msg.mute);
if (msg.localizedStrings)
pxsim.localization.setLocalizedStrings(msg.localizedStrings);
runtime = new Runtime(msg);
runtime.board.initAsync(msg)
.done(() => {
runtime.run((v) => {
pxsim.dumpLivePointers();
Runtime.postMessage({ type: "toplevelcodefinished" })
});
});
}
function mute(mute: boolean) {
AudioContextManager.mute(mute);
}
function stopSound() {
AudioContextManager.stopAll();
}
function queue(msg: SimulatorMessage) {
if (!runtime || runtime.dead) {
return;
}
runtime.board.receiveMessage(msg);
}
function recorder(rec: SimulatorRecorderMessage) {
if (!runtime) return;
switch (rec.action) {
case "start":
runtime.startRecording(rec.width);
break;
case "stop":
runtime.stopRecording();
break;
}
}
}
/**
* Log an event to the parent editor (allowSimTelemetry must be enabled in target)
* @param id The id of the event
* @param data Any custom values associated with this event
*/
export function tickEvent(id: string, data?: Map<string | number>) {
postMessageToEditor({
type: "pxtsim",
action: "event",
tick: id,
data
});
}
/**
* Log an error to the parent editor (allowSimTelemetry must be enabled in target)
* @param cat The category of the error
* @param msg The error message
* @param data Any custom values associated with this event
*/
export function reportError(cat: string, msg: string, data?: Map<string>) {
postMessageToEditor({
type: "pxtsim",
action: "event",
tick: "error",
category: cat,
message: msg,
data
});
}
function postMessageToEditor(message: any) {
if (typeof window !== 'undefined' && window.parent && window.parent !== window) {
window.parent.postMessage(message, "*");
}
}
function initAppcache() {
if (typeof window !== 'undefined' && window.applicationCache) {
if (window.applicationCache.status === window.applicationCache.UPDATEREADY)
reload();
window.applicationCache.addEventListener("updateready", () => {
if (window.applicationCache.status === window.applicationCache.UPDATEREADY)
reload();
});
}
}
export function reload() {
// Continuously send message just in case the editor isn't ready to handle it yet
setInterval(() => {
Runtime.postMessage({ type: "simulator", command: "reload" } as SimulatorCommandMessage)
}, 3000)
}
}
pxsim.util.injectPolyphils();
if (typeof window !== 'undefined') {
window.addEventListener('load', function (ev) {
pxsim.Embed.start();
});
}