Creates a new MapBasedMovement based on a Settings object's settings. @param settings The Settings object where the settings are read from
(Settings settings)
| 70 | * @param settings The Settings object where the settings are read from |
| 71 | */ |
| 72 | public MapBasedMovement(Settings settings) { |
| 73 | super(settings); |
| 74 | map = readMap(); |
| 75 | readOkMapNodeTypes(settings); |
| 76 | maxPathLength = 100; |
| 77 | minPathLength = 10; |
| 78 | backAllowed = false; |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Creates a new MapBasedMovement based on a Settings object's settings |
nothing calls this directly
no test coverage detected