forked from hexanome/airport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
46 lines (46 loc) · 1.4 KB
/
config.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
{
"port" : 80,
"debug" : 10,
"auto" : true,
"airport" : {
"height" : 200,
"width": 200,
"bags" : [22,31,1,15],
"wagons" : [
{ "speed":3.14, "bags":1, "x":165, "y":45 },
{ "speed":15, "bags":0, "x":165, "y":45 },
{ "speed":0, "bags":0, "x":165, "y":45 },
{ "speed":200, "bags":2, "x":165, "y":45 }
],
"nodes" : [
{ "x":50,"y":50,"type":"branch" },
{ "x":120,"y":50,"type":"branch" },
{ "x":130,"y":50,"type":"branch" },
{ "x":140,"y":50,"type":"branch" },
{ "x":170,"y":50,"type":"branch" },
{ "x":50,"y":70,"type":"branch" },
{ "x":50,"y":100,"type":"branch" },
{ "x":50,"y":120,"type":"branch" },
{ "x":120,"y":120,"type":"branch" },
{ "x":130,"y":120,"type":"branch" },
{ "x":140,"y":120,"type":"branch" },
{ "x":170,"y":120,"type":"branch" },
{ "x":20,"y":70,"type":"branch" },
{ "x":20,"y":100,"type":"branch" },
{ "x":50,"y":80,"type":"slide" },
{ "x":30,"y":50,"type":"desk" }
],
"rails" : [
{ "points":[4,3], "after":[1] },
{ "points":[3,2], "after":[2] },
{ "points":[2,1], "after":[3] },
{ "points":[1,0,5], "after":[4,9] },
{ "points":[5,6], "after":[5] },
{ "points":[6,7,8], "after":[6] },
{ "points":[8,9], "after":[7] },
{ "points":[9,10], "after":[8] },
{ "points":[10,11,4], "after":[0] },
{ "points":[5,12,13,6], "after":[5] }
]
}
}