pxt-common-packages 10.2.2 → 10.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/built/common-sim.d.ts +1 -1
  2. package/built/common-sim.js +7 -3
  3. package/libs/azureiot/built/debug/binary.js +461 -461
  4. package/libs/color/built/debug/binary.js +8 -8
  5. package/libs/color-sensor/built/debug/binary.js +8 -8
  6. package/libs/controller/built/debug/binary.js +6956 -6956
  7. package/libs/controller---none/built/debug/binary.js +6936 -6936
  8. package/libs/datalogger/built/debug/binary.js +63 -63
  9. package/libs/edge-connector/built/debug/binary.js +9 -9
  10. package/libs/esp32/built/debug/binary.js +462 -462
  11. package/libs/game/assetTemplates.ts +10 -0
  12. package/libs/game/built/debug/binary.js +6875 -6875
  13. package/libs/game/sim/keymap.ts +1 -1
  14. package/libs/game/sim/multiplayer.ts +8 -3
  15. package/libs/lcd/built/debug/binary.js +8 -8
  16. package/libs/light-spectrum-sensor/built/debug/binary.js +8 -8
  17. package/libs/lora/built/debug/binary.js +8 -8
  18. package/libs/matrix-keypad/built/debug/binary.js +8 -8
  19. package/libs/mixer/instrument.ts +776 -0
  20. package/libs/mixer/melody.h +1 -1
  21. package/libs/mixer/melody.ts +29 -1
  22. package/libs/mixer/pxt.json +2 -0
  23. package/libs/mixer/sequencer.ts +88 -0
  24. package/libs/mqtt/built/debug/binary.js +176 -176
  25. package/libs/net/built/debug/binary.js +176 -176
  26. package/libs/net-game/built/debug/binary.js +8464 -8464
  27. package/libs/palette/built/debug/binary.js +6874 -6874
  28. package/libs/pixel/built/debug/binary.js +8 -8
  29. package/libs/power/built/debug/binary.js +8 -8
  30. package/libs/proximity/built/debug/binary.js +8 -8
  31. package/libs/radio/built/debug/binary.js +8 -8
  32. package/libs/radio-broadcast/built/debug/binary.js +8 -8
  33. package/libs/rotary-encoder/built/debug/binary.js +8 -8
  34. package/libs/screen/built/debug/binary.js +50 -50
  35. package/libs/servo/built/debug/binary.js +8 -8
  36. package/libs/sprite-scaling/built/debug/binary.js +6874 -6874
  37. package/libs/storyboard/built/debug/binary.js +6874 -6874
  38. package/package.json +1 -1
@@ -160,7 +160,7 @@ namespace pxsim {
160
160
 
161
161
  private clearMap(name: string) {
162
162
  const keyCodes = this.mappings[name];
163
- keyCodes?.forEach(keyCode => delete this.keymap[keyCode]);
163
+ keyCodes && keyCodes.forEach(keyCode => delete this.keymap[keyCode]);
164
164
  delete this.mappings[name];
165
165
  }
166
166
  }
@@ -42,7 +42,7 @@ namespace pxsim {
42
42
  export interface MultiplayerImageMessage extends SimulatorMultiplayerMessage {
43
43
  content: "Image";
44
44
  goal: string; // goal of message; e.g. "broadcast-screen"
45
- image: RefImage;
45
+ image: RefBuffer;
46
46
  }
47
47
 
48
48
  export interface MultiplayerButtonEvent extends SimulatorMultiplayerMessage {
@@ -51,11 +51,13 @@ namespace pxsim {
51
51
  state: "Pressed" | "Released" | "Held";
52
52
  }
53
53
 
54
+ let postScreenInterval: any;
54
55
  export class MultiplayerState {
55
56
  lastMessageId: number;
56
57
  origin: string;
57
58
  backgroundImage: RefImage;
58
59
 
60
+
59
61
  constructor() {
60
62
  this.lastMessageId = 0;
61
63
  }
@@ -74,7 +76,10 @@ namespace pxsim {
74
76
  init(origin: string) {
75
77
  this.origin = origin;
76
78
  runtime.board.addMessageListener(msg => this.messageHandler(msg));
77
- setInterval(() => {
79
+ if (postScreenInterval) {
80
+ clearInterval(postScreenInterval)
81
+ }
82
+ postScreenInterval = setInterval(() => {
78
83
  if (this.origin === "server") {
79
84
  const b = board() as ScreenBoard;
80
85
  const screenState = b && b.screenState;
@@ -109,7 +114,7 @@ namespace pxsim {
109
114
  }
110
115
  } else if (isButtonMessage(msg)) {
111
116
  if (this.origin === "server") {
112
- (board() as any).setButton(
117
+ (board() as any).handleKeyEvent(
113
118
  msg.button + (7 * (msg.clientNumber || 1)), // + 7 to make it player 2 controls,
114
119
  msg.state === "Pressed" || msg.state === "Held"
115
120
  );
@@ -56,7 +56,7 @@ const pxsim_pxtrt = pxsim.pxtrt;
56
56
  const pxsim_numops = pxsim.numops;
57
57
 
58
58
 
59
- function _main___P48346(s) {
59
+ function _main___P48480(s) {
60
60
  let r0 = s.r0, step = s.pc;
61
61
  s.pc = -1;
62
62
 
@@ -66,19 +66,19 @@ if (yieldSteps-- < 0 && maybeYield(s, step, r0) || runtime !== pxsim.runtime) re
66
66
  switch (step) {
67
67
  case 0:
68
68
 
69
- globals._intervals___48589 = (undefined);
70
- globals._pollEventQueue___48602 = (undefined);
69
+ globals._intervals___48723 = (undefined);
70
+ globals._pollEventQueue___48736 = (undefined);
71
71
  r0 = undefined;
72
72
  return leave(s, r0)
73
73
  default: oops()
74
74
  } } }
75
- _main___P48346.info = {"start":0,"length":0,"line":0,"column":0,"endLine":0,"endColumn":0,"fileName":"characterlcd.ts","functionName":"<main>","argumentNames":[]}
76
- _main___P48346.continuations = [ ]
75
+ _main___P48480.info = {"start":0,"length":0,"line":0,"column":0,"endLine":0,"endColumn":0,"fileName":"characterlcd.ts","functionName":"<main>","argumentNames":[]}
76
+ _main___P48480.continuations = [ ]
77
77
 
78
- function _main___P48346_mk(s) {
78
+ function _main___P48480_mk(s) {
79
79
  checkStack(s.depth);
80
80
  return {
81
- parent: s, fn: _main___P48346, depth: s.depth + 1,
81
+ parent: s, fn: _main___P48480, depth: s.depth + 1,
82
82
  pc: 0, retval: undefined, r0: undefined, overwrittenPC: false, lambdaArgs: null,
83
83
  } }
84
84
 
@@ -88,5 +88,5 @@ function _main___P48346_mk(s) {
88
88
 
89
89
  const breakpoints = setupDebugger(1, [])
90
90
 
91
- return _main___P48346
91
+ return _main___P48480
92
92
  })
@@ -56,7 +56,7 @@ const pxsim_pxtrt = pxsim.pxtrt;
56
56
  const pxsim_numops = pxsim.numops;
57
57
 
58
58
 
59
- function _main___P97370(s) {
59
+ function _main___P97772(s) {
60
60
  let r0 = s.r0, step = s.pc;
61
61
  s.pc = -1;
62
62
 
@@ -66,19 +66,19 @@ if (yieldSteps-- < 0 && maybeYield(s, step, r0) || runtime !== pxsim.runtime) re
66
66
  switch (step) {
67
67
  case 0:
68
68
 
69
- globals._intervals___97613 = (undefined);
70
- globals._pollEventQueue___97626 = (undefined);
69
+ globals._intervals___98015 = (undefined);
70
+ globals._pollEventQueue___98028 = (undefined);
71
71
  r0 = undefined;
72
72
  return leave(s, r0)
73
73
  default: oops()
74
74
  } } }
75
- _main___P97370.info = {"start":0,"length":0,"line":0,"column":0,"endLine":0,"endColumn":0,"fileName":"tsl2591.ts","functionName":"<main>","argumentNames":[]}
76
- _main___P97370.continuations = [ ]
75
+ _main___P97772.info = {"start":0,"length":0,"line":0,"column":0,"endLine":0,"endColumn":0,"fileName":"tsl2591.ts","functionName":"<main>","argumentNames":[]}
76
+ _main___P97772.continuations = [ ]
77
77
 
78
- function _main___P97370_mk(s) {
78
+ function _main___P97772_mk(s) {
79
79
  checkStack(s.depth);
80
80
  return {
81
- parent: s, fn: _main___P97370, depth: s.depth + 1,
81
+ parent: s, fn: _main___P97772, depth: s.depth + 1,
82
82
  pc: 0, retval: undefined, r0: undefined, overwrittenPC: false, lambdaArgs: null,
83
83
  } }
84
84
 
@@ -88,5 +88,5 @@ function _main___P97370_mk(s) {
88
88
 
89
89
  const breakpoints = setupDebugger(1, [])
90
90
 
91
- return _main___P97370
91
+ return _main___P97772
92
92
  })
@@ -56,7 +56,7 @@ const pxsim_pxtrt = pxsim.pxtrt;
56
56
  const pxsim_numops = pxsim.numops;
57
57
 
58
58
 
59
- function _main___P59648(s) {
59
+ function _main___P59782(s) {
60
60
  let r0 = s.r0, step = s.pc;
61
61
  s.pc = -1;
62
62
 
@@ -66,19 +66,19 @@ if (yieldSteps-- < 0 && maybeYield(s, step, r0) || runtime !== pxsim.runtime) re
66
66
  switch (step) {
67
67
  case 0:
68
68
 
69
- globals._intervals___59891 = (undefined);
70
- globals._pollEventQueue___59904 = (undefined);
69
+ globals._intervals___60025 = (undefined);
70
+ globals._pollEventQueue___60038 = (undefined);
71
71
  r0 = undefined;
72
72
  return leave(s, r0)
73
73
  default: oops()
74
74
  } } }
75
- _main___P59648.info = {"start":0,"length":0,"line":0,"column":0,"endLine":0,"endColumn":0,"fileName":"lora.ts","functionName":"<main>","argumentNames":[]}
76
- _main___P59648.continuations = [ ]
75
+ _main___P59782.info = {"start":0,"length":0,"line":0,"column":0,"endLine":0,"endColumn":0,"fileName":"lora.ts","functionName":"<main>","argumentNames":[]}
76
+ _main___P59782.continuations = [ ]
77
77
 
78
- function _main___P59648_mk(s) {
78
+ function _main___P59782_mk(s) {
79
79
  checkStack(s.depth);
80
80
  return {
81
- parent: s, fn: _main___P59648, depth: s.depth + 1,
81
+ parent: s, fn: _main___P59782, depth: s.depth + 1,
82
82
  pc: 0, retval: undefined, r0: undefined, overwrittenPC: false, lambdaArgs: null,
83
83
  } }
84
84
 
@@ -88,5 +88,5 @@ function _main___P59648_mk(s) {
88
88
 
89
89
  const breakpoints = setupDebugger(1, [])
90
90
 
91
- return _main___P59648
91
+ return _main___P59782
92
92
  })
@@ -56,7 +56,7 @@ const pxsim_pxtrt = pxsim.pxtrt;
56
56
  const pxsim_numops = pxsim.numops;
57
57
 
58
58
 
59
- function _main___P188942(s) {
59
+ function _main___P189880(s) {
60
60
  let r0 = s.r0, step = s.pc;
61
61
  s.pc = -1;
62
62
 
@@ -66,19 +66,19 @@ if (yieldSteps-- < 0 && maybeYield(s, step, r0) || runtime !== pxsim.runtime) re
66
66
  switch (step) {
67
67
  case 0:
68
68
 
69
- globals._intervals___189185 = (undefined);
70
- globals._pollEventQueue___189198 = (undefined);
69
+ globals._intervals___190123 = (undefined);
70
+ globals._pollEventQueue___190136 = (undefined);
71
71
  r0 = undefined;
72
72
  return leave(s, r0)
73
73
  default: oops()
74
74
  } } }
75
- _main___P188942.info = {"start":0,"length":0,"line":0,"column":0,"endLine":0,"endColumn":0,"fileName":"keypad.ts","functionName":"<main>","argumentNames":[]}
76
- _main___P188942.continuations = [ ]
75
+ _main___P189880.info = {"start":0,"length":0,"line":0,"column":0,"endLine":0,"endColumn":0,"fileName":"keypad.ts","functionName":"<main>","argumentNames":[]}
76
+ _main___P189880.continuations = [ ]
77
77
 
78
- function _main___P188942_mk(s) {
78
+ function _main___P189880_mk(s) {
79
79
  checkStack(s.depth);
80
80
  return {
81
- parent: s, fn: _main___P188942, depth: s.depth + 1,
81
+ parent: s, fn: _main___P189880, depth: s.depth + 1,
82
82
  pc: 0, retval: undefined, r0: undefined, overwrittenPC: false, lambdaArgs: null,
83
83
  } }
84
84
 
@@ -88,5 +88,5 @@ function _main___P188942_mk(s) {
88
88
 
89
89
  const breakpoints = setupDebugger(1, [])
90
90
 
91
- return _main___P188942
91
+ return _main___P189880
92
92
  })