-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.json
88 lines (88 loc) · 2.68 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"port" : 80,
"debug" : 10,
"auto" : true,
"background": "/img/airport.png",
"airport" : {
"height" : 500,
"width": 500,
"scale": 2,
"desksize" : 10,
"slidesize" : 10,
"treadsize" : 10,
"carouselsize" : 10,
"flights" : [
{ "id":815, "node":17 },
{ "id":316, "node":17 },
{ "id":627, "node":17 }
],
"bags" : [
{ "id":22, "pos":15, "dest":18, "time":5 },
{ "id":31, "pos":14, "dest":19, "time":15 },
{ "id":1, "pos":15, "dest":19, "time":1 },
{ "id":84, "pos":15, "dest":19, "time":2 },
{ "id":21, "pos":14, "dest":18, "time":5 },
{ "id":12, "pos":14, "dest":18, "time":1 },
{ "id":45, "pos":17, "dest":16, "time":8 },
{ "id":24, "pos":15, "dest":18, "time":11 },
{ "id":8, "pos":14, "dest":19, "time":26 },
{ "id":4, "pos":15, "dest":18, "time":50 }
],
"wagons" : [
{ "speed":0.015, "bags":1, "x":190, "y":85 },
{ "speed":0.02, "bags":0, "x":190, "y":85 },
{ "speed":0.01, "bags":0, "x":190, "y":85 },
{ "speed":0.03, "bags":2, "x":190, "y":85 }
],
"nodes" : [
{ "x":50,"y":50,"type":"branch" },
{ "x":100,"y":50,"type":"branch" },
{ "x":120,"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":100,"y":120,"type":"branch" },
{ "x":120,"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":140,"y":10,"type":"desk" },
{ "x":120,"y":10,"type":"desk" },
{ "x":100,"y":15,"type":"carousel" },
{ "x":100,"y":135,"type":"tread" },
{ "x":120,"y":140,"type":"slide" },
{ "x":140,"y":140,"type":"slide" },
{ "x":190,"y":85,"type":"parking" }
],
"rails" : [
{ "points":[4,3] },
{ "points":[3,2] },
{ "points":[2,1] },
{ "points":[1,0,5] },
{ "points":[5,6] },
{ "points":[6,7,8] },
{ "points":[8,9] },
{ "points":[9,10] },
{ "points":[10,11] },
{ "points":[11,4] },
{ "points":[5,12,13,6] },
{ "points":[14,3] },
{ "points":[3,14] },
{ "points":[15,2] },
{ "points":[2,15] },
{ "points":[1,16] },
{ "points":[16,1] },
{ "points":[17,8] },
{ "points":[8,17] },
{ "points":[9,18] },
{ "points":[18,9] },
{ "points":[10,19] },
{ "points":[19,10] },
{ "points":[11,20] },
{ "points":[20,4] }
]
}
}