cogames 0.3.49__py3-none-any.whl → 0.3.64__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (169) hide show
  1. cogames/cli/client.py +60 -6
  2. cogames/cli/docsync/__init__.py +0 -0
  3. cogames/cli/docsync/_nb_md_directive_processing.py +180 -0
  4. cogames/cli/docsync/_nb_md_sync.py +103 -0
  5. cogames/cli/docsync/_nb_py_sync.py +122 -0
  6. cogames/cli/docsync/_three_way_sync.py +115 -0
  7. cogames/cli/docsync/_utils.py +76 -0
  8. cogames/cli/docsync/docsync.py +156 -0
  9. cogames/cli/leaderboard.py +112 -28
  10. cogames/cli/mission.py +64 -53
  11. cogames/cli/policy.py +46 -10
  12. cogames/cli/submit.py +268 -67
  13. cogames/cogs_vs_clips/cog.py +79 -0
  14. cogames/cogs_vs_clips/cogs_vs_clips_mapgen.md +19 -16
  15. cogames/cogs_vs_clips/cogsguard_reward_variants.py +153 -0
  16. cogames/cogs_vs_clips/cogsguard_tutorial.py +56 -0
  17. cogames/cogs_vs_clips/evals/README.md +10 -16
  18. cogames/cogs_vs_clips/evals/cogsguard_evals.py +81 -0
  19. cogames/cogs_vs_clips/evals/diagnostic_evals.py +49 -444
  20. cogames/cogs_vs_clips/evals/difficulty_variants.py +13 -326
  21. cogames/cogs_vs_clips/evals/integrated_evals.py +5 -45
  22. cogames/cogs_vs_clips/evals/spanning_evals.py +9 -180
  23. cogames/cogs_vs_clips/mission.py +187 -146
  24. cogames/cogs_vs_clips/missions.py +46 -137
  25. cogames/cogs_vs_clips/procedural.py +8 -8
  26. cogames/cogs_vs_clips/sites.py +107 -3
  27. cogames/cogs_vs_clips/stations.py +198 -186
  28. cogames/cogs_vs_clips/tutorial_missions.py +1 -1
  29. cogames/cogs_vs_clips/variants.py +25 -476
  30. cogames/device.py +13 -1
  31. cogames/{policy/scripted_agent/README.md → docs/SCRIPTED_AGENT.md} +82 -58
  32. cogames/evaluate.py +18 -30
  33. cogames/main.py +1434 -243
  34. cogames/maps/canidate1_1000.map +1 -1
  35. cogames/maps/canidate1_1000_stations.map +2 -2
  36. cogames/maps/canidate1_500.map +1 -1
  37. cogames/maps/canidate1_500_stations.map +2 -2
  38. cogames/maps/canidate2_1000.map +1 -1
  39. cogames/maps/canidate2_1000_stations.map +2 -2
  40. cogames/maps/canidate2_500.map +1 -1
  41. cogames/maps/canidate2_500_stations.map +2 -2
  42. cogames/maps/canidate3_1000.map +1 -1
  43. cogames/maps/canidate3_1000_stations.map +2 -2
  44. cogames/maps/canidate3_500.map +1 -1
  45. cogames/maps/canidate3_500_stations.map +2 -2
  46. cogames/maps/canidate4_500.map +1 -1
  47. cogames/maps/canidate4_500_stations.map +2 -2
  48. cogames/maps/cave_base_50.map +2 -2
  49. cogames/maps/diagnostic_evals/diagnostic_agile.map +2 -2
  50. cogames/maps/diagnostic_evals/diagnostic_agile_hard.map +2 -2
  51. cogames/maps/diagnostic_evals/diagnostic_charge_up.map +2 -2
  52. cogames/maps/diagnostic_evals/diagnostic_charge_up_hard.map +2 -2
  53. cogames/maps/diagnostic_evals/diagnostic_chest_navigation1.map +2 -2
  54. cogames/maps/diagnostic_evals/diagnostic_chest_navigation1_hard.map +2 -2
  55. cogames/maps/diagnostic_evals/diagnostic_chest_navigation2.map +2 -2
  56. cogames/maps/diagnostic_evals/diagnostic_chest_navigation2_hard.map +2 -2
  57. cogames/maps/diagnostic_evals/diagnostic_chest_navigation3.map +2 -2
  58. cogames/maps/diagnostic_evals/diagnostic_chest_navigation3_hard.map +2 -2
  59. cogames/maps/diagnostic_evals/diagnostic_chest_near.map +2 -2
  60. cogames/maps/diagnostic_evals/diagnostic_chest_search.map +2 -2
  61. cogames/maps/diagnostic_evals/diagnostic_chest_search_hard.map +2 -2
  62. cogames/maps/diagnostic_evals/diagnostic_extract_lab.map +2 -2
  63. cogames/maps/diagnostic_evals/diagnostic_extract_lab_hard.map +2 -2
  64. cogames/maps/diagnostic_evals/diagnostic_memory.map +2 -2
  65. cogames/maps/diagnostic_evals/diagnostic_memory_hard.map +2 -2
  66. cogames/maps/diagnostic_evals/diagnostic_radial.map +2 -2
  67. cogames/maps/diagnostic_evals/diagnostic_radial_hard.map +2 -2
  68. cogames/maps/diagnostic_evals/diagnostic_resource_lab.map +2 -2
  69. cogames/maps/diagnostic_evals/diagnostic_unclip.map +2 -2
  70. cogames/maps/evals/eval_balanced_spread.map +9 -5
  71. cogames/maps/evals/eval_clip_oxygen.map +9 -5
  72. cogames/maps/evals/eval_collect_resources.map +9 -5
  73. cogames/maps/evals/eval_collect_resources_hard.map +9 -5
  74. cogames/maps/evals/eval_collect_resources_medium.map +9 -5
  75. cogames/maps/evals/eval_divide_and_conquer.map +9 -5
  76. cogames/maps/evals/eval_energy_starved.map +9 -5
  77. cogames/maps/evals/eval_multi_coordinated_collect_hard.map +9 -5
  78. cogames/maps/evals/eval_oxygen_bottleneck.map +9 -5
  79. cogames/maps/evals/eval_single_use_world.map +9 -5
  80. cogames/maps/evals/extractor_hub_100x100.map +9 -5
  81. cogames/maps/evals/extractor_hub_30x30.map +9 -5
  82. cogames/maps/evals/extractor_hub_50x50.map +9 -5
  83. cogames/maps/evals/extractor_hub_70x70.map +9 -5
  84. cogames/maps/evals/extractor_hub_80x80.map +9 -5
  85. cogames/maps/machina_100_stations.map +2 -2
  86. cogames/maps/machina_200_stations.map +2 -2
  87. cogames/maps/machina_200_stations_small.map +2 -2
  88. cogames/maps/machina_eval_exp01.map +2 -2
  89. cogames/maps/machina_eval_template_large.map +2 -2
  90. cogames/maps/machinatrainer4agents.map +2 -2
  91. cogames/maps/machinatrainer4agentsbase.map +2 -2
  92. cogames/maps/machinatrainerbig.map +2 -2
  93. cogames/maps/machinatrainersmall.map +2 -2
  94. cogames/maps/planky_evals/aligner_avoid_aoe.map +28 -0
  95. cogames/maps/planky_evals/aligner_full_cycle.map +28 -0
  96. cogames/maps/planky_evals/aligner_gear.map +24 -0
  97. cogames/maps/planky_evals/aligner_hearts.map +24 -0
  98. cogames/maps/planky_evals/aligner_junction.map +26 -0
  99. cogames/maps/planky_evals/exploration_distant.map +28 -0
  100. cogames/maps/planky_evals/maze.map +32 -0
  101. cogames/maps/planky_evals/miner_best_resource.map +26 -0
  102. cogames/maps/planky_evals/miner_deposit.map +24 -0
  103. cogames/maps/planky_evals/miner_extract.map +26 -0
  104. cogames/maps/planky_evals/miner_full_cycle.map +28 -0
  105. cogames/maps/planky_evals/miner_gear.map +24 -0
  106. cogames/maps/planky_evals/multi_role.map +28 -0
  107. cogames/maps/planky_evals/resource_chain.map +30 -0
  108. cogames/maps/planky_evals/scout_explore.map +32 -0
  109. cogames/maps/planky_evals/scout_gear.map +24 -0
  110. cogames/maps/planky_evals/scrambler_full_cycle.map +28 -0
  111. cogames/maps/planky_evals/scrambler_gear.map +24 -0
  112. cogames/maps/planky_evals/scrambler_target.map +26 -0
  113. cogames/maps/planky_evals/stuck_corridor.map +32 -0
  114. cogames/maps/planky_evals/survive_retreat.map +26 -0
  115. cogames/maps/training_facility_clipped.map +2 -2
  116. cogames/maps/training_facility_open_1.map +2 -2
  117. cogames/maps/training_facility_open_2.map +2 -2
  118. cogames/maps/training_facility_open_3.map +2 -2
  119. cogames/maps/training_facility_tight_4.map +2 -2
  120. cogames/maps/training_facility_tight_5.map +2 -2
  121. cogames/maps/vanilla_large.map +2 -2
  122. cogames/maps/vanilla_small.map +2 -2
  123. cogames/pickup.py +183 -0
  124. cogames/play.py +166 -33
  125. cogames/policy/chaos_monkey.py +54 -0
  126. cogames/policy/nim_agents/__init__.py +27 -10
  127. cogames/policy/nim_agents/agents.py +121 -60
  128. cogames/policy/nim_agents/thinky_eval.py +35 -222
  129. cogames/policy/pufferlib_policy.py +67 -32
  130. cogames/policy/starter_agent.py +184 -0
  131. cogames/policy/trainable_policy_template.py +4 -1
  132. cogames/train.py +51 -13
  133. cogames/verbose.py +2 -2
  134. cogames-0.3.64.dist-info/METADATA +1842 -0
  135. cogames-0.3.64.dist-info/RECORD +159 -0
  136. cogames-0.3.64.dist-info/licenses/LICENSE +21 -0
  137. cogames-0.3.64.dist-info/top_level.txt +2 -0
  138. metta_alo/__init__.py +0 -0
  139. metta_alo/job_specs.py +17 -0
  140. metta_alo/policy.py +16 -0
  141. metta_alo/pure_single_episode_runner.py +75 -0
  142. metta_alo/py.typed +0 -0
  143. metta_alo/rollout.py +322 -0
  144. metta_alo/scoring.py +168 -0
  145. cogames/maps/diagnostic_evals/diagnostic_assembler_near.map +0 -49
  146. cogames/maps/diagnostic_evals/diagnostic_assembler_search.map +0 -49
  147. cogames/maps/diagnostic_evals/diagnostic_assembler_search_hard.map +0 -89
  148. cogames/policy/nim_agents/common.nim +0 -887
  149. cogames/policy/nim_agents/install.sh +0 -1
  150. cogames/policy/nim_agents/ladybug_agent.nim +0 -984
  151. cogames/policy/nim_agents/nim_agents.nim +0 -55
  152. cogames/policy/nim_agents/nim_agents.nims +0 -14
  153. cogames/policy/nim_agents/nimby.lock +0 -3
  154. cogames/policy/nim_agents/racecar_agents.nim +0 -884
  155. cogames/policy/nim_agents/random_agents.nim +0 -68
  156. cogames/policy/nim_agents/test_agents.py +0 -53
  157. cogames/policy/nim_agents/thinky_agents.nim +0 -717
  158. cogames/policy/scripted_agent/baseline_agent.py +0 -1049
  159. cogames/policy/scripted_agent/demo_policy.py +0 -244
  160. cogames/policy/scripted_agent/pathfinding.py +0 -126
  161. cogames/policy/scripted_agent/starter_agent.py +0 -136
  162. cogames/policy/scripted_agent/types.py +0 -235
  163. cogames/policy/scripted_agent/unclipping_agent.py +0 -476
  164. cogames/policy/scripted_agent/utils.py +0 -385
  165. cogames-0.3.49.dist-info/METADATA +0 -406
  166. cogames-0.3.49.dist-info/RECORD +0 -136
  167. cogames-0.3.49.dist-info/top_level.txt +0 -1
  168. {cogames-0.3.49.dist-info → cogames-0.3.64.dist-info}/WHEEL +0 -0
  169. {cogames-0.3.49.dist-info → cogames-0.3.64.dist-info}/entry_points.txt +0 -0
@@ -1014,4 +1014,4 @@ char_to_map_name:
1014
1014
  "#": wall
1015
1015
  ".": empty
1016
1016
  "@": agent.agent
1017
- "&": assembler
1017
+ "&": hub
@@ -1016,8 +1016,8 @@ char_to_map_name:
1016
1016
  "S": silicon_extractor
1017
1017
  "C": carbon_extractor
1018
1018
  "O": oxygen_extractor
1019
- "+": charger
1019
+ "+": junction
1020
1020
  "G": germanium_extractor
1021
1021
  "@": agent.agent
1022
- "&": assembler
1022
+ "&": hub
1023
1023
  "=": chest
@@ -514,4 +514,4 @@ char_to_map_name:
514
514
  "#": wall
515
515
  ".": empty
516
516
  "@": agent.agent
517
- "&": assembler
517
+ "&": hub
@@ -513,11 +513,11 @@ map_data: |-
513
513
  char_to_map_name:
514
514
  "#": wall
515
515
  ".": empty
516
- "+": charger
516
+ "+": junction
517
517
  "S": silicon_extractor
518
518
  "C": carbon_extractor
519
519
  "G": germanium_extractor
520
520
  "O": oxygen_extractor
521
521
  "@": agent.agent
522
- "&": assembler
522
+ "&": hub
523
523
  "=": chest
@@ -1014,4 +1014,4 @@ char_to_map_name:
1014
1014
  "#": wall
1015
1015
  ".": empty
1016
1016
  "@": agent.agent
1017
- "&": assembler
1017
+ "&": hub
@@ -1013,11 +1013,11 @@ map_data: |-
1013
1013
  char_to_map_name:
1014
1014
  "#": wall
1015
1015
  ".": empty
1016
- "+": charger
1016
+ "+": junction
1017
1017
  "O": oxygen_extractor
1018
1018
  "S": silicon_extractor
1019
1019
  "C": carbon_extractor
1020
1020
  "G": germanium_extractor
1021
1021
  "@": agent.agent
1022
- "&": assembler
1022
+ "&": hub
1023
1023
  "=": chest
@@ -514,4 +514,4 @@ char_to_map_name:
514
514
  "#": wall
515
515
  ".": empty
516
516
  "@": agent.agent
517
- "&": assembler
517
+ "&": hub
@@ -514,9 +514,9 @@ char_to_map_name:
514
514
  "#": wall
515
515
  ".": empty
516
516
  "S": silicon_extractor
517
- "+": charger
517
+ "+": junction
518
518
  "G": germanium_extractor
519
519
  "O": oxygen_extractor
520
520
  "C": carbon_extractor
521
521
  "@": agent.agent
522
- "&": assembler
522
+ "&": hub
@@ -1014,4 +1014,4 @@ char_to_map_name:
1014
1014
  "#": wall
1015
1015
  ".": empty
1016
1016
  "@": agent.agent
1017
- "&": assembler
1017
+ "&": hub
@@ -1013,11 +1013,11 @@ map_data: |-
1013
1013
  char_to_map_name:
1014
1014
  "#": wall
1015
1015
  ".": empty
1016
- "+": charger
1016
+ "+": junction
1017
1017
  "S": silicon_extractor
1018
1018
  "G": germanium_extractor
1019
1019
  "C": carbon_extractor
1020
1020
  "O": oxygen_extractor
1021
1021
  "@": agent.agent
1022
- "&": assembler
1022
+ "&": hub
1023
1023
  "=": chest
@@ -514,4 +514,4 @@ char_to_map_name:
514
514
  "#": wall
515
515
  ".": empty
516
516
  "@": agent.agent
517
- "&": assembler
517
+ "&": hub
@@ -514,10 +514,10 @@ char_to_map_name:
514
514
  "#": wall
515
515
  ".": empty
516
516
  "S": silicon_extractor
517
- "+": charger
517
+ "+": junction
518
518
  "C": carbon_extractor
519
519
  "O": oxygen_extractor
520
520
  "G": germanium_extractor
521
521
  "@": agent.agent
522
- "&": assembler
522
+ "&": hub
523
523
  "=": chest
@@ -514,4 +514,4 @@ char_to_map_name:
514
514
  "#": wall
515
515
  ".": empty
516
516
  "@": agent.agent
517
- "&": assembler
517
+ "&": hub
@@ -516,8 +516,8 @@ char_to_map_name:
516
516
  "O": oxygen_extractor
517
517
  "G": germanium_extractor
518
518
  "S": silicon_extractor
519
- "+": charger
519
+ "+": junction
520
520
  "C": carbon_extractor
521
521
  "@": agent.agent
522
- "&": assembler
522
+ "&": hub
523
523
  "=": chest
@@ -63,11 +63,11 @@ map_data: |-
63
63
  char_to_map_name:
64
64
  "#": wall
65
65
  ".": empty
66
- "+": charger
66
+ "+": junction
67
67
  "C": carbon_extractor
68
68
  "O": oxygen_extractor
69
69
  "S": silicon_extractor
70
70
  "G": germanium_extractor
71
71
  "@": agent.agent
72
- "&": assembler
72
+ "&": hub
73
73
  "=": chest
@@ -24,8 +24,8 @@ char_to_map_name:
24
24
  "S": silicon_extractor
25
25
  "O": oxygen_extractor
26
26
  "G": germanium_extractor
27
- "+": charger
28
- "&": assembler
27
+ "+": junction
28
+ "&": hub
29
29
  "=": chest
30
30
  "@": agent.agent
31
31
  "1": agent.agent
@@ -50,8 +50,8 @@ char_to_map_name:
50
50
  "S": silicon_extractor
51
51
  "O": oxygen_extractor
52
52
  "G": germanium_extractor
53
- "+": charger
54
- "&": assembler
53
+ "+": junction
54
+ "&": hub
55
55
  "=": chest
56
56
  "@": agent.agent
57
57
  "1": agent.agent
@@ -11,11 +11,11 @@ char_to_map_name:
11
11
  ".": empty
12
12
  "O": oxygen_extractor
13
13
  "G": germanium_extractor
14
- "+": charger
14
+ "+": junction
15
15
  "C": carbon_extractor
16
16
  "S": silicon_extractor
17
17
  "@": agent.agent
18
- "&": assembler
18
+ "&": hub
19
19
  "=": chest
20
20
  "1": chest_carbon
21
21
  "2": chest_oxygen
@@ -22,11 +22,11 @@ char_to_map_name:
22
22
  ".": empty
23
23
  "O": oxygen_extractor
24
24
  "G": germanium_extractor
25
- "+": charger
25
+ "+": junction
26
26
  "C": carbon_extractor
27
27
  "S": silicon_extractor
28
28
  "@": agent.agent
29
- "&": assembler
29
+ "&": hub
30
30
  "=": chest
31
31
  "1": chest_carbon
32
32
  "2": chest_oxygen
@@ -24,11 +24,11 @@ char_to_map_name:
24
24
  ".": empty
25
25
  "O": oxygen_extractor
26
26
  "G": germanium_extractor
27
- "+": charger
27
+ "+": junction
28
28
  "C": carbon_extractor
29
29
  "S": silicon_extractor
30
30
  "@": agent.agent
31
- "&": assembler
31
+ "&": hub
32
32
  "=": chest
33
33
  "1": chest_carbon
34
34
  "2": chest_oxygen
@@ -42,11 +42,11 @@ char_to_map_name:
42
42
  ".": empty
43
43
  "O": oxygen_extractor
44
44
  "G": germanium_extractor
45
- "+": charger
45
+ "+": junction
46
46
  "C": carbon_extractor
47
47
  "S": silicon_extractor
48
48
  "@": agent.agent
49
- "&": assembler
49
+ "&": hub
50
50
  "=": chest
51
51
  "1": chest_carbon
52
52
  "2": chest_oxygen
@@ -24,11 +24,11 @@ char_to_map_name:
24
24
  ".": empty
25
25
  "O": oxygen_extractor
26
26
  "G": germanium_extractor
27
- "+": charger
27
+ "+": junction
28
28
  "C": carbon_extractor
29
29
  "S": silicon_extractor
30
30
  "@": agent.agent
31
- "&": assembler
31
+ "&": hub
32
32
  "=": chest
33
33
  "1": chest_carbon
34
34
  "2": chest_oxygen
@@ -41,11 +41,11 @@ char_to_map_name:
41
41
  ".": empty
42
42
  "O": oxygen_extractor
43
43
  "G": germanium_extractor
44
- "+": charger
44
+ "+": junction
45
45
  "C": carbon_extractor
46
46
  "S": silicon_extractor
47
47
  "@": agent.agent
48
- "&": assembler
48
+ "&": hub
49
49
  "=": chest
50
50
  "1": chest_carbon
51
51
  "2": chest_oxygen
@@ -22,11 +22,11 @@ char_to_map_name:
22
22
  ".": empty
23
23
  "O": oxygen_extractor
24
24
  "G": germanium_extractor
25
- "+": charger
25
+ "+": junction
26
26
  "C": carbon_extractor
27
27
  "S": silicon_extractor
28
28
  "@": agent.agent
29
- "&": assembler
29
+ "&": hub
30
30
  "=": chest
31
31
  "1": chest_carbon
32
32
  "2": chest_oxygen
@@ -48,11 +48,11 @@ char_to_map_name:
48
48
  ".": empty
49
49
  "O": oxygen_extractor
50
50
  "G": germanium_extractor
51
- "+": charger
51
+ "+": junction
52
52
  "C": carbon_extractor
53
53
  "S": silicon_extractor
54
54
  "@": agent.agent
55
- "&": assembler
55
+ "&": hub
56
56
  "=": chest
57
57
  "1": chest_carbon
58
58
  "2": chest_oxygen
@@ -37,11 +37,11 @@ char_to_map_name:
37
37
  ".": empty
38
38
  "O": oxygen_extractor
39
39
  "G": germanium_extractor
40
- "+": charger
40
+ "+": junction
41
41
  "C": carbon_extractor
42
42
  "S": silicon_extractor
43
43
  "@": agent.agent
44
- "&": assembler
44
+ "&": hub
45
45
  "=": chest
46
46
  "1": chest_carbon
47
47
  "2": chest_oxygen
@@ -37,11 +37,11 @@ char_to_map_name:
37
37
  ".": empty
38
38
  "O": oxygen_extractor
39
39
  "G": germanium_extractor
40
- "+": charger
40
+ "+": junction
41
41
  "C": carbon_extractor
42
42
  "S": silicon_extractor
43
43
  "@": agent.agent
44
- "&": assembler
44
+ "&": hub
45
45
  "=": chest
46
46
  "1": chest_carbon
47
47
  "2": chest_oxygen
@@ -119,11 +119,11 @@ char_to_map_name:
119
119
  ".": empty
120
120
  "O": oxygen_extractor
121
121
  "G": germanium_extractor
122
- "+": charger
122
+ "+": junction
123
123
  "C": carbon_extractor
124
124
  "S": silicon_extractor
125
125
  "@": agent.agent
126
- "&": assembler
126
+ "&": hub
127
127
  "=": chest
128
128
  "1": chest_carbon
129
129
  "2": chest_oxygen
@@ -21,11 +21,11 @@ char_to_map_name:
21
21
  ".": empty
22
22
  "O": oxygen_extractor
23
23
  "G": germanium_extractor
24
- "+": charger
24
+ "+": junction
25
25
  "C": carbon_extractor
26
26
  "S": silicon_extractor
27
27
  "@": agent.agent
28
- "&": assembler
28
+ "&": hub
29
29
  "=": chest
30
30
  "_": empty
31
31
  "1": chest_carbon
@@ -36,11 +36,11 @@ char_to_map_name:
36
36
  ".": empty
37
37
  "O": oxygen_extractor
38
38
  "G": germanium_extractor
39
- "+": charger
39
+ "+": junction
40
40
  "C": carbon_extractor
41
41
  "S": silicon_extractor
42
42
  "@": agent.agent
43
- "&": assembler
43
+ "&": hub
44
44
  "=": chest
45
45
  "_": empty
46
46
  "1": chest_carbon
@@ -43,11 +43,11 @@ char_to_map_name:
43
43
  ".": empty
44
44
  "O": oxygen_extractor
45
45
  "G": germanium_extractor
46
- "+": charger
46
+ "+": junction
47
47
  "C": carbon_extractor
48
48
  "S": silicon_extractor
49
49
  "@": agent.agent
50
- "&": assembler
50
+ "&": hub
51
51
  "=": chest
52
52
  "1": chest_carbon
53
53
  "2": chest_oxygen
@@ -77,11 +77,11 @@ char_to_map_name:
77
77
  ".": empty
78
78
  "O": oxygen_extractor
79
79
  "G": germanium_extractor
80
- "+": charger
80
+ "+": junction
81
81
  "C": carbon_extractor
82
82
  "S": silicon_extractor
83
83
  "@": agent.agent
84
- "&": assembler
84
+ "&": hub
85
85
  "=": chest
86
86
  "1": chest_carbon
87
87
  "2": chest_oxygen
@@ -52,12 +52,12 @@ map_data: |-
52
52
  char_to_map_name:
53
53
  "#": wall
54
54
  ".": empty
55
- "+": charger
55
+ "+": junction
56
56
  "G": germanium_extractor
57
57
  "C": carbon_extractor
58
58
  "S": silicon_extractor
59
59
  "O": oxygen_extractor
60
- "&": assembler
60
+ "&": hub
61
61
  "=": chest
62
62
  "@": agent.agent
63
63
  "1": agent.agent
@@ -161,12 +161,12 @@ map_data: |-
161
161
  char_to_map_name:
162
162
  "#": wall
163
163
  ".": empty
164
- "+": charger
164
+ "+": junction
165
165
  "G": germanium_extractor
166
166
  "C": carbon_extractor
167
167
  "S": silicon_extractor
168
168
  "O": oxygen_extractor
169
- "&": assembler
169
+ "&": hub
170
170
  "=": chest
171
171
  "@": agent.agent
172
172
  "1": agent.agent
@@ -37,11 +37,11 @@ char_to_map_name:
37
37
  ".": empty
38
38
  "O": oxygen_extractor
39
39
  "G": germanium_extractor
40
- "+": charger
40
+ "+": junction
41
41
  "C": carbon_extractor
42
42
  "S": silicon_extractor
43
43
  "@": agent.agent
44
- "&": assembler
44
+ "&": hub
45
45
  "=": chest
46
46
  "1": chest_carbon
47
47
  "2": chest_oxygen
@@ -37,11 +37,11 @@ char_to_map_name:
37
37
  ".": empty
38
38
  "O": oxygen_extractor
39
39
  "G": germanium_extractor
40
- "+": charger
40
+ "+": junction
41
41
  "C": carbon_extractor
42
42
  "S": silicon_extractor
43
43
  "@": agent.agent
44
- "&": assembler
44
+ "&": hub
45
45
  "=": chest
46
46
  "1": chest_carbon
47
47
  "2": chest_oxygen
@@ -15,9 +15,9 @@ map_data: |-
15
15
  #.....####.C....O......................#
16
16
  #C.......#.......................G.....#
17
17
  #......C.#.....###.....###.............#
18
- #........#.....#O.......G#...........O.#
19
- #.....#........#....=....#......#......#
20
- #.....#.....G...................##.....#
18
+ #........#.....#O...m...G#...........O.#
19
+ #.....#........#...a=r...#......#......#
20
+ #.....#.....G.......t...........##.....#
21
21
  #....C#.............&....S.......##....#
22
22
  #.....#.............@@@@@@@@......#....#
23
23
  #.....#....C...........................#
@@ -45,9 +45,13 @@ char_to_map_name:
45
45
  ".": empty
46
46
  "O": oxygen_extractor
47
47
  "G": germanium_extractor
48
- "+": charger
48
+ "+": junction
49
49
  "C": carbon_extractor
50
50
  "S": silicon_extractor
51
51
  "@": agent.agent
52
- "&": assembler
52
+ "&": hub
53
53
  "=": chest
54
+ "a": aligner_station
55
+ "r": scrambler_station
56
+ "m": miner_station
57
+ "t": scout_station
@@ -15,9 +15,9 @@ map_data: |-
15
15
  #.....####.............................#
16
16
  #........#.............................#
17
17
  #........#.....###.....###.............#
18
- #........#.....#O.......G#.............#
19
- #.....#........#....=....#......#......#
20
- #.....#.........................##.....#
18
+ #........#.....#O...m...G#.............#
19
+ #.....#........#...a=r...#......#......#
20
+ #.....#.............t...........##.....#
21
21
  #.....#.............&............##....#
22
22
  #.....#.............@@@@@@@@......#....#
23
23
  #.....#........S.......................#
@@ -45,11 +45,15 @@ char_to_map_name:
45
45
  ".": empty
46
46
  "O": oxygen_extractor
47
47
  "G": germanium_extractor
48
- "+": charger
48
+ "+": junction
49
49
  "C": carbon_extractor
50
50
  "S": silicon_extractor
51
51
  "@": agent.agent
52
- "&": assembler
52
+ "&": hub
53
53
  "=": chest
54
54
 
55
55
 
56
+ "a": aligner_station
57
+ "r": scrambler_station
58
+ "m": miner_station
59
+ "t": scout_station
@@ -15,9 +15,9 @@ map_data: |-
15
15
  #.....####...........C.................#
16
16
  #....S...#........................O....#
17
17
  #........#.....###.....###.............#
18
- #........#.....#O.......G#.............#
19
- #.....#........#.@..=..@.#......#......#
20
- #.....#................@........##.....#
18
+ #........#.....#O...m...G#.............#
19
+ #.....#........#.@.a=r.@.#......#......#
20
+ #.....#.............t..@........##.....#
21
21
  #.....#...C......@..&............##....#
22
22
  #.....#.............@..@..........#....#
23
23
  #.....#..........@.......@.............#
@@ -45,11 +45,15 @@ char_to_map_name:
45
45
  ".": empty
46
46
  "O": oxygen_extractor
47
47
  "G": germanium_extractor
48
- "+": charger
48
+ "+": junction
49
49
  "C": carbon_extractor
50
50
  "S": silicon_extractor
51
51
  "@": agent.agent
52
- "&": assembler
52
+ "&": hub
53
53
  "=": chest
54
54
 
55
55
 
56
+ "a": aligner_station
57
+ "r": scrambler_station
58
+ "m": miner_station
59
+ "t": scout_station
@@ -15,9 +15,9 @@ map_data: |-
15
15
  #.....####.............................#
16
16
  #........#.............................#
17
17
  #........#.....###.....###.............#
18
- #........#.....#.........#.............#
19
- #.....#........#....=....#......#......#
20
- #.....#.........................##.....#
18
+ #........#.....#....m....#.............#
19
+ #.....#........#...a=r...#......#......#
20
+ #.....#.............t...........##.....#
21
21
  #.....#.............&............##....#
22
22
  #.....#.............@@@@@@@@......#....#
23
23
  #.....#................................#
@@ -45,11 +45,15 @@ char_to_map_name:
45
45
  ".": empty
46
46
  "O": oxygen_extractor
47
47
  "G": germanium_extractor
48
- "+": charger
48
+ "+": junction
49
49
  "C": carbon_extractor
50
50
  "S": silicon_extractor
51
51
  "@": agent.agent
52
- "&": assembler
52
+ "&": hub
53
53
  "=": chest
54
54
 
55
55
 
56
+ "a": aligner_station
57
+ "r": scrambler_station
58
+ "m": miner_station
59
+ "t": scout_station
@@ -15,9 +15,9 @@ map_data: |-
15
15
  #.....####.............................#
16
16
  #........#.............................#
17
17
  #........#.....###.....###...........G.#
18
- #........#.....#.........#.............#
19
- #.....#........#....=....#......#......#
20
- #.....#......C..................##.....#
18
+ #........#.....#....m....#.............#
19
+ #.....#........#...a=r...#......#......#
20
+ #.....#......C......t...........##.....#
21
21
  #.....#.............&............##....#
22
22
  #.....#.............@@@@@@@@......#....#
23
23
  #.....#................................#
@@ -45,11 +45,15 @@ char_to_map_name:
45
45
  ".": empty
46
46
  "O": oxygen_extractor
47
47
  "G": germanium_extractor
48
- "+": charger
48
+ "+": junction
49
49
  "C": carbon_extractor
50
50
  "S": silicon_extractor
51
51
  "@": agent.agent
52
- "&": assembler
52
+ "&": hub
53
53
  "=": chest
54
54
 
55
55
 
56
+ "a": aligner_station
57
+ "r": scrambler_station
58
+ "m": miner_station
59
+ "t": scout_station