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

Commit

Permalink
some more sample configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
t-ah committed Aug 3, 2020
1 parent 995aa4b commit a39ab66
Show file tree
Hide file tree
Showing 3 changed files with 104 additions and 1 deletion.
5 changes: 4 additions & 1 deletion server/conf/SampleConfig2.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,12 @@
],

"match" : [
"$(sim-test/small-world.json)",
"$(sim-test/big-world.json)",
"$(sim-test/tasks.json)",
"$(sim-test/large-events.json)",
"$(sim-test/more-obstacles.json)"
"$(sim-test/more-obstacles.json)",
"$(sim-test/grid-on-fire.json)"
],

"teams" : {
Expand Down
50 changes: 50 additions & 0 deletions server/conf/sim-test/big-world.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"description": "50 agents, small clusters, non-square map, complex layout",

"NOsetup" : "conf/setup/test.txt",

"steps" : 750,
"randomSeed" : 17,
"randomFail" : 1,
"entities" : {"standard" : 50},
"clusterBounds" : [1,5],

"clearSteps" : 3,
"clearEnergyCost" : 30,
"disableDuration" : 4,
"maxEnergy" : 300,
"attachLimit" : 10,

"grid" : {
"height" : 50,
"width" : 100,
"instructions": [
["cave", 0.55, 9, 5, 4]
],
"goals": {
"number" : 3,
"size" : [1,2]
}
},

"blockTypes" : [3, 3],
"dispensers" : [10, 15],

"tasks" : {
"size" : [1, 4],
"duration" : [100, 200],
"taskboards" : 5,
"probability" : 0.1,
"rewardDecay" : [1, 1],
"lowerRewardLimit" : 10,
"distanceToTaskboards" : 10
},

"events" : {
"chance" : 15,
"radius" : [3, 5],
"warning" : 5,
"create" : [-3, 1],
"perimeter" : 2
}
}
50 changes: 50 additions & 0 deletions server/conf/sim-test/small-world.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"description" : "small grid, non-square, small clusters, few goals etc., simpler tasks",

"NOsetup" : "conf/setup/test.txt",

"steps" : 750,
"randomSeed" : 17,
"randomFail" : 1,
"entities" : {"standard" : 30},
"clusterBounds" : [1,2],

"clearSteps" : 3,
"clearEnergyCost" : 30,
"disableDuration" : 4,
"maxEnergy" : 300,
"attachLimit" : 10,

"grid" : {
"height" : 32,
"width" : 64,
"instructions": [
["cave", 0.45, 9, 5, 4]
],
"goals": {
"number" : 2,
"size" : [1,1]
}
},

"blockTypes" : [2, 2],
"dispensers" : [5, 7],

"tasks" : {
"size" : [1, 3],
"duration" : [100, 200],
"probability" : 0.1,
"taskboards" : 2,
"rewardDecay" : [1, 1],
"lowerRewardLimit" : 15,
"distanceToTaskboards" : 9
},

"events" : {
"chance" : 15,
"radius" : [3, 5],
"warning" : 5,
"create" : [-3, 1],
"perimeter" : 2
}
}

0 comments on commit a39ab66

Please sign in to comment.