This repository has been archived by the owner on Dec 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathlife.json
64 lines (64 loc) · 1.47 KB
/
life.json
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
{
"lifeDemo": {
"class": "Machine",
"type": "LED",
"name": "Game of Life Demo",
"version": 2.00,
"autoStart": false,
"bindings": {
"reset": "resetLife",
"clear": "clearLife",
"print": "printLife"
},
"overrides": ["autoStart"]
},
"lifeClock": {
"class": "Time",
"cyclesPerSecond": 1,
"cyclesMinimum": 1,
"cyclesMaximum": 120,
"bindings": {
"run": "runLife",
"speed": "speedLife",
"step": "stepLife",
"throttle": "throttleLife"
},
"overrides": ["cyclesPerSecond","cyclesMinimum","cyclesMaximum"]
},
"lifeDisplay": {
"class": "LED",
"type": 1,
"cols": 38,
"rows": 26,
"color": "green",
"backgroundColor": "black",
"bindings": {
"container": "displayLife"
},
"overrides": ["color","backgroundColor"]
},
"lifeInput": {
"class": "Input",
"drag": true
},
"lifeCtrl": {
"class": "LEDCtrl",
"rule": "B3/S23",
"pattern": "gliderGun",
"patterns": {
"gliderGun": [
"#N Gosper Glider Gun",
"#C This was the first gun discovered.",
"#C As its name suggests, it was discovered by Bill Gosper.",
"x = 36, y = 9, rule = B3/S23",
"24bo$22bobo$12b2o6b2o12b2o$11bo3bo4b2o12b2o$2o8bo5bo3b2o$2o8bo3bob2o4b",
"obo$10bo5bo7bo$11bo3bo$12b2o!"
]
},
"bindings": {
"patterns": "patternsLife",
"saveToURL": "saveLife"
},
"overrides": ["wrap","pattern"]
}
}