Returns the name of the map the simulation took place in
(self, recorder_str)
| 114 | sys.exit(-1) |
| 115 | |
| 116 | def _get_recorder_map(self, recorder_str): |
| 117 | """ |
| 118 | Returns the name of the map the simulation took place in |
| 119 | """ |
| 120 | |
| 121 | header = recorder_str.split("\n") |
| 122 | sim_map = header[1][5:] |
| 123 | |
| 124 | return sim_map |
| 125 | |
| 126 | |
| 127 | def main(): |