-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathscenarios.json
105 lines (96 loc) · 1.78 KB
/
scenarios.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"environment" : {
"energy": {
"cost_per_reasoning_cycle": 4.5
}
},
"scenarios": [
{
"id": 1,
"ag_count":1,
"full_screen": "no",
"energy_category": "very_high",
"obstacle_density": "none",
"height": 25,
"rs_count": 5,
"rs_dist": 5,
"rs_types": [2],
"width": 25
},
{
"id": 2,
"ag_count":1,
"full_screen": "yes",
"energy_category": "high",
"obstacle_density": "low",
"height": 30,
"rs_count": 3,
"rs_dist": 5,
"rs_types": [2],
"width": 30
},
{
"id": 3,
"ag_count":2,
"full_screen": "yes",
"energy_category": "medium",
"obstacle_density": "very_low",
"height": 40,
"rs_count": 3,
"rs_dist": 6,
"rs_types": [2, 4],
"width": 40
},
{
"id": 4,
"ag_count":4,
"full_screen": "yes",
"energy_category": "medium",
"obstacle_density": "low",
"height": 48,
"rs_count": 2,
"rs_dist": 10,
"rs_types": [2, 4],
"width": 48
},
{
"id": 5,
"ag_count":6,
"full_screen": "yes",
"energy_category": "low",
"obstacle_density": "low",
"type": "random",
"rs_types": [2, 4]
},
{
"id": 0,
"agents": [
{ "x": 35, "y": 35 }
],
"base": {"x": 0, "y": 0 },
"energy_category": "75000",
"height": 48,
"obstacles": [
{"x": 41, "y": 40 }
],
"resources":[
{ "qty": 1, "type": 4, "x": 40, "y": 40 }
],
"width": 48
}
],
"meta": {
"version": "1.0.0",
"note": "This object is meant to supply additional information for the construction of new maps",
"energy_categories": [
"very_low", "low", "medium", "high", "very_high", "extreemely_high"
],
"obstacle_densities": [
"very_low", "low", "medium", "high", "very_high", "extreemely_high"
],
"resource_types": {
"gold": 2,
"diamond": 4
}
}
}