-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.json
119 lines (119 loc) · 2.76 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"_seed": "seed is either an unsigned int, or TIME",
"seed": "TIME",
"WorldSettings": {
"worldWidth": 7500,
"worldHeight": 7500,
"mushroomReproductionRate": 0.02,
"mushroomReproductionDistance": 120,
"mushroomReproductionNearLimit": 3,
"terrainSquare": 30,
"quadtreeLimit": 60,
"PopulatorEntries": [
{
"type": "Agent",
"targetCount": 100,
"rate": 0.25
},
{
"type": "Mushroom",
"targetCount": 750,
"rate": 0.14
},
{
"type": "BouncingBall",
"targetCount": 0,
"rate": 0.75
}
]
},
"AgentSettings": {
"mass": 1,
"friction": 0.01,
"maxSpeed": 1000,
"turnFactor": 65,
"punchTime": 1,
"actionCooldown": 2,
"energyToParent": 0.45,
"energyToChild": 0.3,
"energyLossRate": 0.2,
"movementEnergyLoss": 0.015,
"turnRateEnergyLoss": 0.00375,
"punchEnergy": 6,
"punchDamage": 30,
"mushroomEnergy": 20,
"maxEnergy": 100,
"maxMushroomCount": 20,
"canReproduce": true,
"canWalk": true,
"canTurn": true,
"canEat": true,
"canPlace": true,
"canPunch": true,
"memory": 4,
"memoryReactivity": 0.18,
"perceiveCollision": true,
"receptorCount": 7,
"perceiveColor": true,
"perceiveEnergyLevel": true,
"perceiveMushroomCount": true,
"FOV": 120,
"visibilityDistance": 350,
"visualReactivity": 1,
"mutation": 0.03,
"layerMin": 4,
"layerMax": 6,
"biasMin": -1,
"biasMax": 1,
"weightMin": -2,
"weightMax": 2,
"perceptronPerLayerMin": 6,
"perceptronPerLayerMax": 10
},
"Controls": {
"pause": "Space",
"close": "Escape",
"showInterface": "D",
"clearStats": "C",
"up": "Up",
"down": "Down",
"left": "Left",
"right": "Right",
"slowDown": "Comma",
"speedUp": "Period",
"keyboardCameraMove": 15,
"timeFactorInitial": 9,
"timeFactorDelta": 0.05,
"timeFactorMax": 20,
"scrollFactor": 0.05
},
"Rendering": {
"windowWidth": 1920,
"windowHeight": 1080,
"graphLine": false,
"graphPopulation": true,
"graphMeanGeneration": false,
"graphMeanPerceptrons": false,
"graphMeanAge": false,
"graphMeanChildren": false,
"graphMeanMurders": false,
"graphMeanEnergy": false,
"graphMeanMushrooms": false,
"graphMeanSpeed": false,
"graphSpectrogram": true,
"graphGeneration": true,
"graphPerceptrons": false,
"graphAge": false,
"graphChildren": false,
"graphMurders": false,
"graphEnergy": false,
"graphMushrooms": false,
"graphSpeed": false,
"bins": 50,
"showInterface": true,
"showWorldObjectBounds": false,
"showQuadtree": false,
"showQuadtreeEntities": false,
"showVision": true
}
}