pxt-arcade 2.0.52 → 2.0.53
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.
- package/built/common-sim.d.ts +2 -8
- package/built/common-sim.js +3 -33
- package/built/sim.js +4 -56
- package/built/target-strings.json +1 -1
- package/built/target.js +1 -1
- package/built/target.json +1 -1
- package/built/targetlight.js +1 -1
- package/built/targetlight.json +1 -1
- package/package.json +4 -4
package/built/common-sim.d.ts
CHANGED
|
@@ -341,16 +341,10 @@ declare namespace pxsim.browserEvents {
|
|
|
341
341
|
ArrowRight = 39,
|
|
342
342
|
PageDown = 34,
|
|
343
343
|
End = 35,
|
|
344
|
-
Home = 36
|
|
345
|
-
LeftShift = 1016,
|
|
346
|
-
RightShift = 1017,
|
|
347
|
-
LeftControl = 1018,
|
|
348
|
-
RightControl = 1019,
|
|
349
|
-
Backspace = 8,
|
|
350
|
-
Delete = 46
|
|
344
|
+
Home = 36
|
|
351
345
|
}
|
|
352
346
|
function onKeyboardEvent(event: KeyboardEvent, pressed: boolean): void;
|
|
353
|
-
function getValueForKey(event: KeyboardEvent): 0 | Key
|
|
347
|
+
function getValueForKey(event: KeyboardEvent): 0 | Key;
|
|
354
348
|
}
|
|
355
349
|
declare namespace pxsim.browserEvents {
|
|
356
350
|
interface BrowserEventsBoard extends CommonBoard {
|
package/built/common-sim.js
CHANGED
|
@@ -813,42 +813,16 @@ var pxsim;
|
|
|
813
813
|
Key[Key["PageDown"] = 34] = "PageDown";
|
|
814
814
|
Key[Key["End"] = 35] = "End";
|
|
815
815
|
Key[Key["Home"] = 36] = "Home";
|
|
816
|
-
Key[Key["LeftShift"] = 1016] = "LeftShift";
|
|
817
|
-
Key[Key["RightShift"] = 1017] = "RightShift";
|
|
818
|
-
Key[Key["LeftControl"] = 1018] = "LeftControl";
|
|
819
|
-
Key[Key["RightControl"] = 1019] = "RightControl";
|
|
820
|
-
Key[Key["Backspace"] = 8] = "Backspace";
|
|
821
|
-
Key[Key["Delete"] = 46] = "Delete";
|
|
822
816
|
})(Key = browserEvents.Key || (browserEvents.Key = {}));
|
|
823
817
|
function onKeyboardEvent(event, pressed) {
|
|
824
|
-
const eventValue = getValueForKey(event);
|
|
825
|
-
fireEvent(eventValue, pressed);
|
|
826
|
-
if (eventValue === Key.Shift) {
|
|
827
|
-
if (event.location === event.DOM_KEY_LOCATION_LEFT) {
|
|
828
|
-
fireEvent(Key.LeftShift, pressed);
|
|
829
|
-
}
|
|
830
|
-
else if (event.location === event.DOM_KEY_LOCATION_RIGHT) {
|
|
831
|
-
fireEvent(Key.RightShift, pressed);
|
|
832
|
-
}
|
|
833
|
-
}
|
|
834
|
-
if (eventValue === Key.Control) {
|
|
835
|
-
if (event.location === event.DOM_KEY_LOCATION_LEFT) {
|
|
836
|
-
fireEvent(Key.LeftControl, pressed);
|
|
837
|
-
}
|
|
838
|
-
else if (event.location === event.DOM_KEY_LOCATION_RIGHT) {
|
|
839
|
-
fireEvent(Key.RightControl, pressed);
|
|
840
|
-
}
|
|
841
|
-
}
|
|
842
|
-
}
|
|
843
|
-
browserEvents.onKeyboardEvent = onKeyboardEvent;
|
|
844
|
-
function fireEvent(key, pressed) {
|
|
845
818
|
if (pressed) {
|
|
846
|
-
pxsim.board().bus.queue(6866,
|
|
819
|
+
pxsim.board().bus.queue(6866, getValueForKey(event));
|
|
847
820
|
}
|
|
848
821
|
else {
|
|
849
|
-
pxsim.board().bus.queue(6867,
|
|
822
|
+
pxsim.board().bus.queue(6867, getValueForKey(event));
|
|
850
823
|
}
|
|
851
824
|
}
|
|
825
|
+
browserEvents.onKeyboardEvent = onKeyboardEvent;
|
|
852
826
|
function getValueForKey(event) {
|
|
853
827
|
switch (event.key) {
|
|
854
828
|
case "0":
|
|
@@ -1024,10 +998,6 @@ var pxsim;
|
|
|
1024
998
|
return Key.End;
|
|
1025
999
|
case "Home":
|
|
1026
1000
|
return Key.Home;
|
|
1027
|
-
case "Delete":
|
|
1028
|
-
return Key.Delete;
|
|
1029
|
-
case "Backspace":
|
|
1030
|
-
return Key.Backspace;
|
|
1031
1001
|
default:
|
|
1032
1002
|
return 0;
|
|
1033
1003
|
}
|
package/built/sim.js
CHANGED
|
@@ -696,10 +696,8 @@ var pxsim;
|
|
|
696
696
|
}
|
|
697
697
|
kill() {
|
|
698
698
|
super.kill();
|
|
699
|
-
if (this.gameplayer)
|
|
700
|
-
this.gameplayer.setCursorVisible(true);
|
|
699
|
+
if (this.gameplayer)
|
|
701
700
|
this.gameplayer.dispose();
|
|
702
|
-
}
|
|
703
701
|
pxsim.Keyboard.cancelTextPrompt();
|
|
704
702
|
}
|
|
705
703
|
}
|
|
@@ -778,15 +776,6 @@ function isSafari() {
|
|
|
778
776
|
ButtonMethods.id = id;
|
|
779
777
|
})(ButtonMethods = pxsim.ButtonMethods || (pxsim.ButtonMethods = {}));
|
|
780
778
|
})(pxsim || (pxsim = {}));
|
|
781
|
-
(function (pxsim) {
|
|
782
|
-
var browserEvents;
|
|
783
|
-
(function (browserEvents) {
|
|
784
|
-
function _setCursorVisible(visible) {
|
|
785
|
-
pxsim.board().gameplayer.setCursorVisible(visible);
|
|
786
|
-
}
|
|
787
|
-
browserEvents._setCursorVisible = _setCursorVisible;
|
|
788
|
-
})(browserEvents = pxsim.browserEvents || (pxsim.browserEvents = {}));
|
|
789
|
-
})(pxsim || (pxsim = {}));
|
|
790
779
|
var pxsim;
|
|
791
780
|
(function (pxsim) {
|
|
792
781
|
var Keyboard;
|
|
@@ -1363,7 +1352,6 @@ var pxsim;
|
|
|
1363
1352
|
visuals.releaseButton(pxsim.Key.Reset);
|
|
1364
1353
|
};
|
|
1365
1354
|
}
|
|
1366
|
-
this.setCursorVisible(true);
|
|
1367
1355
|
}
|
|
1368
1356
|
buttonChanged(button, isPressed) {
|
|
1369
1357
|
this.joystick.buttonChanged(button, isPressed);
|
|
@@ -1435,16 +1423,6 @@ var pxsim;
|
|
|
1435
1423
|
this.reset && this.reset.setAttribute("aria-disabled", "true");
|
|
1436
1424
|
}
|
|
1437
1425
|
}
|
|
1438
|
-
setCursorVisible(visible) {
|
|
1439
|
-
if (!this.screen)
|
|
1440
|
-
return;
|
|
1441
|
-
if (visible) {
|
|
1442
|
-
this.screen.style.cursor = "unset";
|
|
1443
|
-
}
|
|
1444
|
-
else {
|
|
1445
|
-
this.screen.style.cursor = "none";
|
|
1446
|
-
}
|
|
1447
|
-
}
|
|
1448
1426
|
}
|
|
1449
1427
|
visuals.GamePlayer = GamePlayer;
|
|
1450
1428
|
})(visuals = pxsim.visuals || (pxsim.visuals = {}));
|
|
@@ -4569,42 +4547,16 @@ var pxsim;
|
|
|
4569
4547
|
Key[Key["PageDown"] = 34] = "PageDown";
|
|
4570
4548
|
Key[Key["End"] = 35] = "End";
|
|
4571
4549
|
Key[Key["Home"] = 36] = "Home";
|
|
4572
|
-
Key[Key["LeftShift"] = 1016] = "LeftShift";
|
|
4573
|
-
Key[Key["RightShift"] = 1017] = "RightShift";
|
|
4574
|
-
Key[Key["LeftControl"] = 1018] = "LeftControl";
|
|
4575
|
-
Key[Key["RightControl"] = 1019] = "RightControl";
|
|
4576
|
-
Key[Key["Backspace"] = 8] = "Backspace";
|
|
4577
|
-
Key[Key["Delete"] = 46] = "Delete";
|
|
4578
4550
|
})(Key = browserEvents.Key || (browserEvents.Key = {}));
|
|
4579
4551
|
function onKeyboardEvent(event, pressed) {
|
|
4580
|
-
const eventValue = getValueForKey(event);
|
|
4581
|
-
fireEvent(eventValue, pressed);
|
|
4582
|
-
if (eventValue === Key.Shift) {
|
|
4583
|
-
if (event.location === event.DOM_KEY_LOCATION_LEFT) {
|
|
4584
|
-
fireEvent(Key.LeftShift, pressed);
|
|
4585
|
-
}
|
|
4586
|
-
else if (event.location === event.DOM_KEY_LOCATION_RIGHT) {
|
|
4587
|
-
fireEvent(Key.RightShift, pressed);
|
|
4588
|
-
}
|
|
4589
|
-
}
|
|
4590
|
-
if (eventValue === Key.Control) {
|
|
4591
|
-
if (event.location === event.DOM_KEY_LOCATION_LEFT) {
|
|
4592
|
-
fireEvent(Key.LeftControl, pressed);
|
|
4593
|
-
}
|
|
4594
|
-
else if (event.location === event.DOM_KEY_LOCATION_RIGHT) {
|
|
4595
|
-
fireEvent(Key.RightControl, pressed);
|
|
4596
|
-
}
|
|
4597
|
-
}
|
|
4598
|
-
}
|
|
4599
|
-
browserEvents.onKeyboardEvent = onKeyboardEvent;
|
|
4600
|
-
function fireEvent(key, pressed) {
|
|
4601
4552
|
if (pressed) {
|
|
4602
|
-
pxsim.board().bus.queue(6866,
|
|
4553
|
+
pxsim.board().bus.queue(6866, getValueForKey(event));
|
|
4603
4554
|
}
|
|
4604
4555
|
else {
|
|
4605
|
-
pxsim.board().bus.queue(6867,
|
|
4556
|
+
pxsim.board().bus.queue(6867, getValueForKey(event));
|
|
4606
4557
|
}
|
|
4607
4558
|
}
|
|
4559
|
+
browserEvents.onKeyboardEvent = onKeyboardEvent;
|
|
4608
4560
|
function getValueForKey(event) {
|
|
4609
4561
|
switch (event.key) {
|
|
4610
4562
|
case "0":
|
|
@@ -4780,10 +4732,6 @@ var pxsim;
|
|
|
4780
4732
|
return Key.End;
|
|
4781
4733
|
case "Home":
|
|
4782
4734
|
return Key.Home;
|
|
4783
|
-
case "Delete":
|
|
4784
|
-
return Key.Delete;
|
|
4785
|
-
case "Backspace":
|
|
4786
|
-
return Key.Backspace;
|
|
4787
4735
|
default:
|
|
4788
4736
|
return 0;
|
|
4789
4737
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"(Diagnostics) Garbage Collection checks.":"(Diagnostics) Garbage Collection checks.","20 pin Edge Connector":"20 pin Edge Connector","A Corgi platformer":"A Corgi platformer","A micro-servo library":"A micro-servo library","A package for interacting with browser-only functionality like keyboard and mouse events":"A package for interacting with browser-only functionality like keyboard and mouse events","A sprite with path projection":"A sprite with path projection","A thermometer driver":"A thermometer driver","Adafruit Feather pinout":"Adafruit Feather pinout","Additional blocks for building multiplayer games":"Additional blocks for building multiplayer games","Additional scaling blocks for sprites":"Additional scaling blocks for sprites","Adds new blocks for message communication in the radio category":"Adds new blocks for message communication in the radio category","Advanced Livestream":"Advanced Livestream","Advanced state based animations for sprites":"Advanced state based animations for sprites","Arcade Compatible Devices":"Arcade Compatible Devices","Arts and Crafts":"Arts and Crafts","Azure IoT - beta":"Azure IoT - beta","Beginner Skillmaps":"Beginner Skillmaps","Blocks Games":"Blocks Games","Blocks for the color-coded tilemap":"Blocks for the color-coded tilemap","Button A and B drivers":"Button A and B drivers","Color manipulation":"Color manipulation","Community Games":"Community Games","Contains overriden or additional files for the default project template":"Contains overriden or additional files for the default project template","Courses":"Courses","DIY Hardware":"DIY Hardware","Develop your programming skills by quickly creating and modding retro arcade games with Blocks and JavaScript in the MakeCode editor":"Develop your programming skills by quickly creating and modding retro arcade games with Blocks and JavaScript in the MakeCode editor","Docs":"Docs","Driver for rotary encoder":"Driver for rotary encoder","ESP32 over SPI - beta":"ESP32 over SPI - beta","Empty game library - beta":"Empty game library - beta","Extra game controller functionalities":"Extra game controller functionalities","Forum":"Forum","Game Design Concepts":"Game Design Concepts","Game Jam":"Game Jam","Graphics and Math":"Graphics and Math","Hardware":"Hardware","Hardware definition - web-browser only":"Hardware definition - web-browser only","How to Make a Game Videos":"How to Make a Game Videos","JavaScript Games":"JavaScript Games","John Park's Workshop":"John Park's Workshop","Keyboard emulation over HID":"Keyboard emulation over HID","Lessons":"Lessons","Live Coding":"Live Coding","MQTT for MakeCode - beta":"MQTT for MakeCode - beta","Microsoft MakeCode Arcade":"Microsoft MakeCode Arcade","Mouse emulation over HID":"Mouse emulation over HID","Multiplayer Games":"Multiplayer Games","Multiplayer Games!":"Multiplayer Games!","Multiplayer Tutorials":"Multiplayer Tutorials","NRF52833 board":"NRF52833 board","NRF52840 board":"NRF52840 board","Networking abstractions":"Networking abstractions","Next Level Skillmaps":"Next Level Skillmaps","Onboard light level sensor":"Onboard light level sensor","Palette manipulations":"Palette manipulations","Power and sleep management":"Power and sleep management","RP2040 board":"RP2040 board","Raspberry Pi":"Raspberry Pi","SAMD51 board":"SAMD51 board","STM32F4 board":"STM32F4 board","Scene manager":"Scene manager","Settings storage in files":"Settings storage in files","Settings storage in internal flash":"Settings storage in internal flash","Seven segment digit display":"Seven segment digit display","The accelerometer library":"The accelerometer library","The base library":"The base library","The core library for Codal-based targets":"The core library for Codal-based targets","The fantasy game console library":"The fantasy game console library","The game and sprite library - beta":"The game and sprite library - beta","The microphone library":"The microphone library","The music library with a mixer":"The music library with a mixer","The programmable LED (WS2812b,APA102) driver.":"The programmable LED (WS2812b,APA102) driver.","The radio services":"The radio services","The screen library":"The screen library","Try Now":"Try Now","Tutorials":"Tutorials","UART communication":"UART communication","Utility methods for shading images":"Utility methods for shading images","VM":"VM","WiFi support in Arcade - beta":"WiFi support in Arcade - beta","arcade":"arcade","{id:color-theme-name}Dark":"Dark","{id:color-theme-name}High Contrast":"High Contrast","{id:color-theme-name}Light":"Light","{id:color-theme-name}Orange":"Orange","{id:extension-tag}Controller":"Controller","{id:extension-tag}Hardware":"Hardware","{id:extension-tag}Sprite Pack":"Sprite Pack","{id:extension-tag}Sprites":"Sprites","{id:extension-tag}Utility":"Utility","{id:extension-tag}Visual Effects":"Visual Effects","{id:game-description}A test of reflexes! Avoid the blue stingers while sending fireballs at the boss!":"A test of reflexes! Avoid the blue stingers while sending fireballs at the boss!","{id:game-description}Adventure through levels collecting jewels and avoiding obstacles!":"Adventure through levels collecting jewels and avoiding obstacles!","{id:game-description}Build a tower of goats!":"Build a tower of goats!","{id:game-description}Challenge your friend to a game of pool! Be sure to check out the (very silly) alternate rule sets! (requires two players)":"Challenge your friend to a game of pool! Be sure to check out the (very silly) alternate rule sets! (requires two players)","{id:game-description}Control both cats and use their unique strengths to solve puzzles! Press A to swap between characters. Up is jump and B triggers Ollie's tackle attack. (1-2 players)":"Control both cats and use their unique strengths to solve puzzles! Press A to swap between characters. Up is jump and B triggers Ollie's tackle attack. (1-2 players)","{id:game-description}Controlling a starship, both players will destroy the Galga forces, while avoiding enemies. Each player has 3 lives, game ends once a player runs out of lives.":"Controlling a starship, both players will destroy the Galga forces, while avoiding enemies. Each player has 3 lives, game ends once a player runs out of lives.","{id:game-description}Eat the leaves to grow, but watch out for walls!":"Eat the leaves to grow, but watch out for walls!","{id:game-description}Fly through the dangerous rooftops and ledges of New York City delivering messages!":"Fly through the dangerous rooftops and ledges of New York City delivering messages!","{id:game-description}Fly through the sky avoiding obstacles":"Fly through the sky avoiding obstacles","{id:game-description}Go on a mouse adventure in a haunted castle, battling bad guys, avoiding obstacles and collecting keys!":"Go on a mouse adventure in a haunted castle, battling bad guys, avoiding obstacles and collecting keys!","{id:game-description}Help your bunny hop over obstacles as they run through the forest":"Help your bunny hop over obstacles as they run through the forest","{id:game-description}Lead your constituents to find food and carry it back to the nest as fast as you can!":"Lead your constituents to find food and carry it back to the nest as fast as you can!","{id:game-description}Navigate your hot air balloon through the mountains avoiding birds and spaceships":"Navigate your hot air balloon through the mountains avoiding birds and spaceships","{id:game-description}Place arrows along the path to help Asphodel the witch find their way":"Place arrows along the path to help Asphodel the witch find their way","{id:game-description}Test your skills in this fast-paced game of reflexes and timing! Levels designed by members of the MakeCode Forum!":"Test your skills in this fast-paced game of reflexes and timing! Levels designed by members of the MakeCode Forum!","{id:game-description}Top-down racing game for 1-4 players. Press Left and Right to steer, A to use picked up item.":"Top-down racing game for 1-4 players. Press Left and Right to steer, A to use picked up item.","{id:game-description}Try to clean your side of the nest! Clear the leaves and collect acorns while messing up your opponent's side! (requires 2 players)":"Try to clean your side of the nest! Clear the leaves and collect acorns while messing up your opponent's side! (requires 2 players)","{id:game-description}Try to slice all the logs as quickly and evenly as you can! Press Left/Right to change direction and A to slice!":"Try to slice all the logs as quickly and evenly as you can! Press Left/Right to change direction and A to slice!","{id:game-description}Ultimate battle between cats and dogs! The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row is the winner as the best pet.":"Ultimate battle between cats and dogs! The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row is the winner as the best pet.","{id:game-description}Use the lasers on your spaceship to shoot falling asteroids!":"Use the lasers on your spaceship to shoot falling asteroids!","{id:game-description}Use your knowledge of the cycle of life to stack plants and dinosaurs!":"Use your knowledge of the cycle of life to stack plants and dinosaurs!","{id:game-name}Asphodel follows directions":"Asphodel follows directions","{id:game-name}Auto and Ollie":"Auto and Ollie","{id:game-name}BUG PRESIDENT: THE GAME":"BUG PRESIDENT: THE GAME","{id:game-name}Best Nest":"Best Nest","{id:game-name}Blocky Boss Battle":"Blocky Boss Battle","{id:game-name}Bunny Hop!":"Bunny Hop!","{id:game-name}Caterpillar":"Caterpillar","{id:game-name}Dino Zoo":"Dino Zoo","{id:game-name}Falling Duck":"Falling Duck","{id:game-name}Galga":"Galga","{id:game-name}Hot Air Balloon":"Hot Air Balloon","{id:game-name}Jewel Raider":"Jewel Raider","{id:game-name}Joey's Pool Sharks":"Joey's Pool Sharks","{id:game-name}MakeCode Racers":"MakeCode Racers","{id:game-name}Mouse Adventure":"Mouse Adventure","{id:game-name}NINJA":"NINJA","{id:game-name}Pigeon: Deliverance":"Pigeon: Deliverance","{id:game-name}Rhombus Rush!":"Rhombus Rush!","{id:game-name}Space Destroyer":"Space Destroyer","{id:game-name}Stack the Goats":"Stack the Goats","{id:game-name}TicTacTwo!":"TicTacTwo!","{id:game-subtitle}1-4 player":"1-4 player","{id:game-subtitle}4 player":"4 player","{id:game-title}Galga":"Galga","{id:game-title}Horse Race":"Horse Race","{id:game-title}Painting Together":"Painting Together","{id:game-title}Perfect Fit":"Perfect Fit","{id:hardware-description} Sleek hand-held game device with a hard case and a USB-C port.":" Sleek hand-held game device with a hard case and a USB-C port.","{id:hardware-description}A fun-sized console to play the games you code.":"A fun-sized console to play the games you code.","{id:hardware-description}A programmable modular console to create games, design wearables and make creative projects.":"A programmable modular console to create games, design wearables and make creative projects.","{id:hardware-description}A retro game console for STEM education from Kittenbot team":"A retro game console for STEM education from Kittenbot team","{id:hardware-description}ARCADE is a programmable gamepad for use with MakeCode Arcade.":"ARCADE is a programmable gamepad for use with MakeCode Arcade.","{id:hardware-description}It's a badge, it's an arcade, it's a PyBadge":"It's a badge, it's an arcade, it's a PyBadge","{id:hardware-description}It's the PyBadge with a zest of Machine learning":"It's the PyBadge with a zest of Machine learning","{id:hardware-description}Learn how BrainPad Arcade lets you run games on a small handheld console.":"Learn how BrainPad Arcade lets you run games on a small handheld console.","{id:hardware-description}Learn how to run your games on micro-controllers from Adafruit":"Learn how to run your games on micro-controllers from Adafruit","{id:hardware-description}The Retro has a big screen, colorful protective case, d-pad and vibration motor":"The Retro has a big screen, colorful protective case, d-pad and vibration motor","{id:hardware-description}The upgraded PyBadge":"The upgraded PyBadge","{id:hardware-description}Use the micro:bit with an expansion board from Elecfreaks":"Use the micro:bit with an expansion board from Elecfreaks","{id:hardware-description}Use the micro:bit with an expansion board from Kitronik":"Use the micro:bit with an expansion board from Kitronik","{id:hardware-description}Use the micro:bit with an expansion board from KittenBot":"Use the micro:bit with an expansion board from KittenBot","{id:hardware-description}Use the micro:bit with an expansion board from iCShop":"Use the micro:bit with an expansion board from iCShop","{id:type}Image":"Image","{id:type}Location":"Location","{id:type}Sprite":"Sprite","{id:var}myImage":"myImage","{id:var}myLocation":"myLocation","{id:var}mySprite":"mySprite"}
|
|
1
|
+
{"(Diagnostics) Garbage Collection checks.":"(Diagnostics) Garbage Collection checks.","20 pin Edge Connector":"20 pin Edge Connector","A Corgi platformer":"A Corgi platformer","A micro-servo library":"A micro-servo library","A package for interacting with browser-only functionality like keyboard and mouse events":"A package for interacting with browser-only functionality like keyboard and mouse events","A sprite with path projection":"A sprite with path projection","A thermometer driver":"A thermometer driver","Adafruit Feather pinout":"Adafruit Feather pinout","Additional blocks for building multiplayer games":"Additional blocks for building multiplayer games","Additional scaling blocks for sprites":"Additional scaling blocks for sprites","Adds new blocks for message communication in the radio category":"Adds new blocks for message communication in the radio category","Advanced Livestream":"Advanced Livestream","Advanced state based animations for sprites":"Advanced state based animations for sprites","Arcade Compatible Devices":"Arcade Compatible Devices","Arts and Crafts":"Arts and Crafts","Azure IoT - beta":"Azure IoT - beta","Beginner Skillmaps":"Beginner Skillmaps","Blocks Games":"Blocks Games","Blocks for the color-coded tilemap":"Blocks for the color-coded tilemap","Button A and B drivers":"Button A and B drivers","Color manipulation":"Color manipulation","Community Games":"Community Games","Contains overriden or additional files for the default project template":"Contains overriden or additional files for the default project template","Courses":"Courses","DIY Hardware":"DIY Hardware","Develop your programming skills by quickly creating and modding retro arcade games with Blocks and JavaScript in the MakeCode editor":"Develop your programming skills by quickly creating and modding retro arcade games with Blocks and JavaScript in the MakeCode editor","Docs":"Docs","Driver for rotary encoder":"Driver for rotary encoder","ESP32 over SPI - beta":"ESP32 over SPI - beta","Empty game library - beta":"Empty game library - beta","Extra game controller functionalities":"Extra game controller functionalities","Forum":"Forum","Game Design Concepts":"Game Design Concepts","Game Jam":"Game Jam","Graphics and Math":"Graphics and Math","Hardware":"Hardware","Hardware definition - web-browser only":"Hardware definition - web-browser only","How to Make a Game Videos":"How to Make a Game Videos","JavaScript Games":"JavaScript Games","John Park's Workshop":"John Park's Workshop","Keyboard emulation over HID":"Keyboard emulation over HID","Lessons":"Lessons","Live Coding":"Live Coding","MQTT for MakeCode - beta":"MQTT for MakeCode - beta","Microsoft MakeCode Arcade":"Microsoft MakeCode Arcade","Mouse emulation over HID":"Mouse emulation over HID","Multiplayer Games":"Multiplayer Games","Multiplayer Games!":"Multiplayer Games!","Multiplayer Tutorials":"Multiplayer Tutorials","NRF52833 board":"NRF52833 board","NRF52840 board":"NRF52840 board","Networking abstractions":"Networking abstractions","Next Level Skillmaps":"Next Level Skillmaps","Onboard light level sensor":"Onboard light level sensor","Palette manipulations":"Palette manipulations","Power and sleep management":"Power and sleep management","RP2040 board":"RP2040 board","Raspberry Pi":"Raspberry Pi","SAMD51 board":"SAMD51 board","STM32F4 board":"STM32F4 board","Scene manager":"Scene manager","Settings storage in files":"Settings storage in files","Settings storage in internal flash":"Settings storage in internal flash","Seven segment digit display":"Seven segment digit display","The accelerometer library":"The accelerometer library","The base library":"The base library","The core library for Codal-based targets":"The core library for Codal-based targets","The fantasy game console library":"The fantasy game console library","The game and sprite library - beta":"The game and sprite library - beta","The microphone library":"The microphone library","The music library with a mixer":"The music library with a mixer","The programmable LED (WS2812b,APA102) driver.":"The programmable LED (WS2812b,APA102) driver.","The radio services":"The radio services","The screen library":"The screen library","Try Now":"Try Now","Tutorials":"Tutorials","UART communication":"UART communication","Utility methods for shading images":"Utility methods for shading images","VM":"VM","WiFi support in Arcade - beta":"WiFi support in Arcade - beta","arcade":"arcade","{id:color-theme-name}Dark":"Dark","{id:color-theme-name}High Contrast":"High Contrast","{id:color-theme-name}Light":"Light","{id:color-theme-name}Orange":"Orange","{id:extension-tag}Controller":"Controller","{id:extension-tag}Hardware":"Hardware","{id:extension-tag}Sprite Pack":"Sprite Pack","{id:extension-tag}Sprites":"Sprites","{id:extension-tag}Utility":"Utility","{id:extension-tag}Visual Effects":"Visual Effects","{id:game-description}A test of reflexes! Avoid the blue stingers while sending fireballs at the boss!":"A test of reflexes! Avoid the blue stingers while sending fireballs at the boss!","{id:game-description}Adventure through levels collecting jewels and avoiding obstacles!":"Adventure through levels collecting jewels and avoiding obstacles!","{id:game-description}Build a tower of goats!":"Build a tower of goats!","{id:game-description}Challenge your friend to a game of pool! Be sure to check out the (very silly) alternate rule sets! (requires two players)":"Challenge your friend to a game of pool! Be sure to check out the (very silly) alternate rule sets! (requires two players)","{id:game-description}Control both cats and use their unique strengths to solve puzzles! Press A to swap between characters. Up is jump and B triggers Ollie's tackle attack. (1-2 players)":"Control both cats and use their unique strengths to solve puzzles! Press A to swap between characters. Up is jump and B triggers Ollie's tackle attack. (1-2 players)","{id:game-description}Controlling a starship, both players will destroy the Galga forces, while avoiding enemies. Each player has 3 lives, game ends once a player runs out of lives.":"Controlling a starship, both players will destroy the Galga forces, while avoiding enemies. Each player has 3 lives, game ends once a player runs out of lives.","{id:game-description}Eat the leaves to grow, but watch out for walls!":"Eat the leaves to grow, but watch out for walls!","{id:game-description}Fly through the dangerous rooftops and ledges of New York City delivering messages!":"Fly through the dangerous rooftops and ledges of New York City delivering messages!","{id:game-description}Fly through the sky avoiding obstacles":"Fly through the sky avoiding obstacles","{id:game-description}Go on a mouse adventure in a haunted castle, battling bad guys, avoiding obstacles and collecting keys!":"Go on a mouse adventure in a haunted castle, battling bad guys, avoiding obstacles and collecting keys!","{id:game-description}Help your bunny hop over obstacles as they run through the forest":"Help your bunny hop over obstacles as they run through the forest","{id:game-description}Lead your constituents to find food and carry it back to the nest as fast as you can!":"Lead your constituents to find food and carry it back to the nest as fast as you can!","{id:game-description}Navigate your hot air balloon through the mountains avoiding birds and spaceships":"Navigate your hot air balloon through the mountains avoiding birds and spaceships","{id:game-description}Place arrows along the path to help Asphodel the witch find their way":"Place arrows along the path to help Asphodel the witch find their way","{id:game-description}Test your skills in this fast-paced game of reflexes and timing! Levels designed by members of the MakeCode Forum!":"Test your skills in this fast-paced game of reflexes and timing! Levels designed by members of the MakeCode Forum!","{id:game-description}Top-down racing game for 1-4 players. Press Left and Right to steer, A to use picked up item.":"Top-down racing game for 1-4 players. Press Left and Right to steer, A to use picked up item.","{id:game-description}Try to clean your side of the nest! Clear the leaves and collect acorns while messing up your opponent's side! (requires 2 players)":"Try to clean your side of the nest! Clear the leaves and collect acorns while messing up your opponent's side! (requires 2 players)","{id:game-description}Try to slice all the logs as quickly and evenly as you can! Press Left/Right to change direction and A to slice!":"Try to slice all the logs as quickly and evenly as you can! Press Left/Right to change direction and A to slice!","{id:game-description}Ultimate battle between cats and dogs! The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row is the winner as the best pet.":"Ultimate battle between cats and dogs! The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row is the winner as the best pet.","{id:game-description}Use the lasers on your spaceship to shoot falling asteroids!":"Use the lasers on your spaceship to shoot falling asteroids!","{id:game-description}Use your knowledge of the cycle of life to stack plants and dinosaurs!":"Use your knowledge of the cycle of life to stack plants and dinosaurs!","{id:game-name}Asphodel follows directions":"Asphodel follows directions","{id:game-name}Auto and Ollie":"Auto and Ollie","{id:game-name}BUG PRESIDENT: THE GAME":"BUG PRESIDENT: THE GAME","{id:game-name}Best Nest":"Best Nest","{id:game-name}Blocky Boss Battle":"Blocky Boss Battle","{id:game-name}Bunny Hop!":"Bunny Hop!","{id:game-name}Caterpillar":"Caterpillar","{id:game-name}Dino Zoo":"Dino Zoo","{id:game-name}Falling Duck":"Falling Duck","{id:game-name}Galga":"Galga","{id:game-name}Hot Air Balloon":"Hot Air Balloon","{id:game-name}Jewel Raider":"Jewel Raider","{id:game-name}Joey's Pool Sharks":"Joey's Pool Sharks","{id:game-name}MakeCode Racers":"MakeCode Racers","{id:game-name}Mouse Adventure":"Mouse Adventure","{id:game-name}NINJA":"NINJA","{id:game-name}Pigeon: Deliverance":"Pigeon: Deliverance","{id:game-name}Rhombus Rush!":"Rhombus Rush!","{id:game-name}Space Destroyer":"Space Destroyer","{id:game-name}Stack the Goats":"Stack the Goats","{id:game-name}TicTacTwo!":"TicTacTwo!","{id:game-subtitle}1-4 player":"1-4 player","{id:game-subtitle}4 player":"4 player","{id:game-title}Galga":"Galga","{id:game-title}Horse Race":"Horse Race","{id:game-title}Painting Together":"Painting Together","{id:game-title}Perfect Fit":"Perfect Fit","{id:hardware-description} Sleek hand-held game device with a hard case and a USB-C port.":" Sleek hand-held game device with a hard case and a USB-C port.","{id:hardware-description}A fun-sized console to play the games you code.":"A fun-sized console to play the games you code.","{id:hardware-description}A programmable modular console to create games, design wearables and make creative projects.":"A programmable modular console to create games, design wearables and make creative projects.","{id:hardware-description}A retro game console for STEM education from Kittenbot team":"A retro game console for STEM education from Kittenbot team","{id:hardware-description}ARCADE is a programmable gamepad for use with MakeCode Arcade.":"ARCADE is a programmable gamepad for use with MakeCode Arcade.","{id:hardware-description}It's a badge, it's an arcade, it's a PyBadge":"It's a badge, it's an arcade, it's a PyBadge","{id:hardware-description}It's the PyBadge with a zest of Machine learning":"It's the PyBadge with a zest of Machine learning","{id:hardware-description}Learn how BrainPad Arcade lets you run games on a small handheld console.":"Learn how BrainPad Arcade lets you run games on a small handheld console.","{id:hardware-description}Learn how to run your games on micro-controllers from Adafruit":"Learn how to run your games on micro-controllers from Adafruit","{id:hardware-description}The Retro has a big screen, colorful protective case, d-pad and vibration motor":"The Retro has a big screen, colorful protective case, d-pad and vibration motor","{id:hardware-description}The upgraded PyBadge":"The upgraded PyBadge","{id:hardware-description}Use the micro:bit with an expansion board from Elecfreaks":"Use the micro:bit with an expansion board from Elecfreaks","{id:hardware-description}Use the micro:bit with an expansion board from Kitronik":"Use the micro:bit with an expansion board from Kitronik","{id:hardware-description}Use the micro:bit with an expansion board from KittenBot":"Use the micro:bit with an expansion board from KittenBot","{id:hardware-description}Use the micro:bit with an expansion board from iCShop":"Use the micro:bit with an expansion board from iCShop","{id:type}Location":"Location","{id:var}myImage":"myImage","{id:var}myLocation":"myLocation","{id:var}mySprite":"mySprite"}
|