Skip to content
This repository was archived by the owner on Oct 15, 2023. It is now read-only.

Commit 16ef714

Browse files
committed
add qualification candidate config
1 parent a39ab66 commit 16ef714

File tree

3 files changed

+121
-0
lines changed

3 files changed

+121
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"server" : {
3+
"tournamentMode" : "round-robin",
4+
"teamsPerMatch" : 1,
5+
"launch" : "key",
6+
"port" : 12300,
7+
"backlog" : 10000,
8+
"agentTimeout" : 4000,
9+
"resultPath" : "results",
10+
"logLevel" : "normal",
11+
"logPath" : "logs",
12+
"replayPath" : "replays",
13+
"maxPacketLength" : 65536,
14+
"waitBetweenSimulations" : 5000
15+
},
16+
17+
"match" : [
18+
"$(sim/sim-q1.json)",
19+
"$(sim/sim-q2.json)"
20+
],
21+
22+
"teams" : {
23+
"A" : {"prefix" : "agent", "password" : "1"}
24+
}
25+
}

server/conf/sim/sim-q1.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"description" : "qualification round 1 (candidate) config. goal: complete 1 task.",
3+
4+
"steps" : 300,
5+
"randomSeed" : 17,
6+
"randomFail" : 1,
7+
"entities" : {"standard" : 15},
8+
"clusterBounds" : [1,3],
9+
10+
"clearSteps" : 3,
11+
"clearEnergyCost" : 30,
12+
"disableDuration" : 4,
13+
"maxEnergy" : 300,
14+
"attachLimit" : 10,
15+
16+
"grid" : {
17+
"height" : 70,
18+
"width" : 70,
19+
"instructions": [
20+
["cave", 0.45, 9, 5, 4]
21+
],
22+
"goals": {
23+
"number" : 3,
24+
"size" : [1,2]
25+
}
26+
},
27+
28+
"blockTypes" : [3, 3],
29+
"dispensers" : [5, 10],
30+
31+
"tasks" : {
32+
"size" : [2, 3],
33+
"duration" : [100, 200],
34+
"probability" : 0.1,
35+
"taskboards" : 3,
36+
"rewardDecay" : [1, 2],
37+
"lowerRewardLimit" : 10,
38+
"distanceToTaskboards" : 8
39+
},
40+
41+
"events" : {
42+
"chance" : 15,
43+
"radius" : [3, 5],
44+
"warning" : 5,
45+
"create" : [-3, 1],
46+
"perimeter" : 2
47+
}
48+
}

server/conf/sim/sim-q2.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"description" : "qualification round 2 (candidate) config. goal: complete 1 task.",
3+
4+
"steps" : 300,
5+
"randomSeed" : 17,
6+
"randomFail" : 1,
7+
"entities" : {"standard" : 50},
8+
"clusterBounds" : [3,10],
9+
10+
"clearSteps" : 3,
11+
"clearEnergyCost" : 30,
12+
"disableDuration" : 4,
13+
"maxEnergy" : 300,
14+
"attachLimit" : 10,
15+
16+
"grid" : {
17+
"height" : 60,
18+
"width" : 100,
19+
"instructions": [
20+
["cave", 0.45, 9, 5, 4]
21+
],
22+
"goals": {
23+
"number" : 4,
24+
"size" : [1,2]
25+
}
26+
},
27+
28+
"blockTypes" : [3, 3],
29+
"dispensers" : [5, 10],
30+
31+
"tasks" : {
32+
"size" : [2, 3],
33+
"duration" : [100, 200],
34+
"taskboards" : 5,
35+
"probability" : 0.1,
36+
"rewardDecay" : [1, 2],
37+
"lowerRewardLimit" : 10,
38+
"distanceToTaskboards" : 10
39+
},
40+
41+
"events" : {
42+
"chance" : 15,
43+
"radius" : [3, 5],
44+
"warning" : 5,
45+
"create" : [-3, 1],
46+
"perimeter" : 2
47+
}
48+
}

0 commit comments

Comments
 (0)