Skip to content

Commit 5e5c216

Browse files
committedJan 11, 2021
initial commit
1 parent 68e0bb9 commit 5e5c216

36 files changed

+94553
-0
lines changed
 

‎.gitattributes

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
index.html linguist-generated=true
2+
assets/index.html linguist-generated=true
3+
assets/js/loader.js linguist-generated=true
4+
assets/js/binary.js linguist-generated=true
5+
assets/version.txt linguist-generated=true
+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
name: MakeCode Arcade Release
2+
3+
on:
4+
release:
5+
types:
6+
- created
7+
jobs:
8+
build:
9+
10+
runs-on: ubuntu-latest
11+
12+
strategy:
13+
matrix:
14+
node-version: [8.x]
15+
16+
steps:
17+
- uses: actions/checkout@v1
18+
- name: install node.js ${{ matrix.node-version }}
19+
uses: actions/setup-node@v1
20+
with:
21+
node-version: ${{ matrix.node-version }}
22+
- name: install makecode
23+
run: |
24+
npm install -g pxt
25+
pxt target arcade
26+
- name: build js
27+
run: |
28+
pxt clean
29+
pxt install
30+
pxt build --cloud
31+
- name: build D51
32+
continue-on-error: true
33+
run: |
34+
pxt clean
35+
pxt install --hw samd51
36+
pxt build --hw samd51 --cloud
37+
cp ./built/binary.uf2 binary-d51.uf2
38+
- name: build F4
39+
continue-on-error: true
40+
run: |
41+
pxt clean
42+
pxt install --hw stm32f401
43+
pxt build --hw stm32f401 --cloud
44+
cp ./built/binary.uf2 binary-f4.uf2
45+
- name: build P0
46+
continue-on-error: true
47+
run: |
48+
pxt clean
49+
pxt install --hw rpi
50+
pxt build --hw rpi --cloud
51+
cp ./built/binary.uf2 binary-p0.uf2
52+
- name: bundle all
53+
run: |
54+
cat binary-*.uf2 > built/arcade.uf2
55+
- name: upload bundled
56+
uses: actions/upload-release-asset@v1.0.1
57+
env:
58+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59+
with:
60+
upload_url: ${{ github.event.release.upload_url }}
61+
asset_path: ./built/arcade.uf2
62+
asset_name: arcade.uf2
63+
asset_content_type: application/octet-stream

‎.github/workflows/makecode.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: MakeCode
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
matrix:
12+
node-version: [8.x]
13+
14+
steps:
15+
- uses: actions/checkout@v1
16+
- name: Use Node.js ${{ matrix.node-version }}
17+
uses: actions/setup-node@v1
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
- name: npm install
21+
run: |
22+
npm install -g pxt
23+
pxt target arcade
24+
- name: build
25+
run: |
26+
pxt install
27+
pxt build --cloud
28+
env:
29+
CI: true

‎.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# MakeCode
2+
built
3+
node_modules
4+
yotta_modules
5+
yotta_targets
6+
pxt_modules
7+
_site
8+
*.db
9+
*.tgz
10+
.header.json
11+
.simstate.json

‎.vscode/settings.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"editor.formatOnType": true,
3+
"files.autoSave": "afterDelay",
4+
"files.watcherExclude": {
5+
"**/.git/objects/**": true,
6+
"**/built/**": true,
7+
"**/node_modules/**": true,
8+
"**/yotta_modules/**": true,
9+
"**/yotta_targets": true,
10+
"**/pxt_modules/**": true
11+
},
12+
"files.associations": {
13+
"*.blocks": "html",
14+
"*.jres": "json"
15+
},
16+
"search.exclude": {
17+
"**/built": true,
18+
"**/node_modules": true,
19+
"**/yotta_modules": true,
20+
"**/yotta_targets": true,
21+
"**/pxt_modules": true
22+
}
23+
}

‎.vscode/tasks.json

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
2+
// A task runner that calls the MakeCode (PXT) compiler
3+
{
4+
"version": "2.0.0",
5+
"tasks": [{
6+
"label": "pxt deploy",
7+
"type": "shell",
8+
"command": "pxt deploy --local",
9+
"group": "build",
10+
"problemMatcher": [ "$tsc" ]
11+
}, {
12+
"label": "pxt build",
13+
"type": "shell",
14+
"command": "pxt build --local",
15+
"group": "build",
16+
"problemMatcher": [ "$tsc" ]
17+
}, {
18+
"label": "pxt install",
19+
"type": "shell",
20+
"command": "pxt install",
21+
"group": "build",
22+
"problemMatcher": [ "$tsc" ]
23+
}, {
24+
"label": "pxt clean",
25+
"type": "shell",
26+
"command": "pxt clean",
27+
"group": "test",
28+
"problemMatcher": [ "$tsc" ]
29+
}]
30+
}

‎Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
source 'https://rubygems.org'
2+
gem 'github-pages', group: :jekyll_plugins

‎Makefile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
all: deploy
2+
3+
build:
4+
pxt build
5+
6+
deploy:
7+
pxt deploy
8+
9+
test:
10+
pxt test

‎_config.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
makecode:
2+
target: arcade
3+
platform: arcade
4+
home_url: https://arcade.makecode.com/
5+
theme: jekyll-theme-slate
6+
include:
7+
- assets
8+
- README.md

‎app.ts

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
namespace kodu {
2+
export class App {
3+
stageManager: StageManager;
4+
worldStage: WorldStage;
5+
6+
constructor() {
7+
// One interval delay to ensure all static constructors have executed.
8+
setTimeout(() => {
9+
icons.init();
10+
this.stageManager = new StageManager();
11+
this.worldStage = new WorldStage(this);
12+
this.pushStage(this.worldStage);
13+
}, 1);
14+
}
15+
16+
public saveProject() {
17+
this.worldStage.save();
18+
}
19+
20+
public pushStage(stage: Stage) {
21+
this.stageManager.push(stage);
22+
}
23+
24+
public popStage() {
25+
this.stageManager.pop();
26+
}
27+
}
28+
}

0 commit comments

Comments
 (0)
Please sign in to comment.