scratch-vm/README.md

106 lines
3.2 KiB
Markdown
Raw Normal View History

2016-04-08 13:10:37 -04:00
## scratch-vm
2016-05-10 12:40:52 -04:00
#### Scratch VM is a library for representing, running, and maintaining the state of computer programs written using [Scratch Blocks](https://github.com/LLK/scratch-blocks).
2016-04-08 13:10:37 -04:00
2016-05-17 21:09:15 -04:00
[![Build Status](https://travis-ci.org/LLK/scratch-vm.svg?branch=develop)](https://travis-ci.org/LLK/scratch-vm)
2016-05-17 09:44:54 -04:00
[![Dependency Status](https://david-dm.org/LLK/scratch-vm.svg)](https://david-dm.org/LLK/scratch-vm)
[![devDependency Status](https://david-dm.org/LLK/scratch-vm/dev-status.svg)](https://david-dm.org/LLK/scratch-vm#info=devDependencies)
2016-04-18 17:22:23 -04:00
2016-04-08 13:10:37 -04:00
## Installation
2016-08-29 10:12:57 -04:00
In your own node environment/application:
2016-04-08 13:10:37 -04:00
```bash
npm install https://github.com/LLK/scratch-vm.git
2016-04-08 13:10:37 -04:00
```
2016-08-26 09:46:02 -04:00
If you want to edit/play yourself:
```bash
git clone git@github.com:LLK/scratch-vm.git
cd scratch-vm
npm install
```
2016-04-08 13:10:37 -04:00
2016-04-18 17:20:30 -04:00
## Setup
For an extended setup example, check out the /playground directory, which includes a fully running VM instance.
2016-04-08 13:10:37 -04:00
```js
2016-04-18 17:20:30 -04:00
var VirtualMachine = require('scratch-vm');
var vm = new VirtualMachine();
2016-04-08 13:10:37 -04:00
2016-04-18 17:20:30 -04:00
// Block events
workspace.addChangeListener(vm.blockListener);
var flyoutWorkspace = workspace.toolbox_.flyout_.workspace_;
flyoutWorkspace.addChangeListener(vm.flyoutBlockListener);
2016-04-18 17:20:30 -04:00
2016-05-10 12:12:31 -04:00
// Run threads
vm.runtime.start();
2016-04-18 17:20:30 -04:00
```
## Development Server and Playground
For convenience, we've included a development server with the VM. This is useful because the VM can take advantage of executing in a WebWorker, which is not permitted in a local file. To start the server, run:
```bash
make serve
```
and go to [http://localhost:8080/](http://localhost:8080/) - you will be redirected to the playground, which demonstrates various tools and internal state.
![VM Playground Screenshot](https://i.imgur.com/nOCNqEc.gif)
2016-04-18 17:20:30 -04:00
## Standalone Build
```bash
make build
```
```html
<script src="/path/to/vm.js"></script>
<script>
var vm = new window.VirtualMachine();
// do things
</script>
2016-04-08 13:10:37 -04:00
```
## Abstract Syntax Tree
#### Overview
2016-05-10 12:12:31 -04:00
The Virtual Machine constructs and maintains the state of an [Abstract Syntax Tree](https://en.wikipedia.org/wiki/Abstract_syntax_tree) (AST) by listening to events emitted by the [scratch-blocks](https://github.com/LLK/scratch-blocks) workspace via the `blockListener`. At any time, the current state of the AST can be viewed by inspecting the `vm.runtime.blocks` object.
#### Anatomy of a Block
```json
{
"7AJZR#NA;m*b}R]pdq63": {
"id": "7AJZR#NA;m*b}R]pdq63",
"opcode": "control_wait",
"inputs": {
"DURATION": {
"name": "DURATION",
"block": ",xA8/S!Z6+kR,9dph.rO"
}
},
"fields": {},
"next": null,
"topLevel": true
},
",xA8/S!Z6+kR,9dph.rO": {
"id": ",xA8/S!Z6+kR,9dph.rO",
"opcode": "math_number",
"inputs": {},
"fields": {
"NUM": {
"name": "NUM",
"value": "1"
}
},
"next": null,
"topLevel": false
}
}
```
2016-04-08 13:10:37 -04:00
## Testing
```bash
make test
```
```bash
make coverage
```
2016-05-10 12:18:03 -04:00
2016-05-17 08:49:54 -04:00
## Donate
2016-08-29 10:12:57 -04:00
We provide [Scratch](https://scratch.mit.edu) free of charge, and want to keep it that way! Please consider making a [donation](https://secure.donationpay.org/scratchfoundation/) to support our continued engineering, design, community, and resource development efforts. Donations of any size are appreciated. Thank you!