Skip to content
Andreas Habel edited this page Dec 23, 2020 · 2 revisions

Fork of FS19_AutoDrive

This is a fork of the FS19 mod by Stephan-S/FS19_AutoDrive. The main purpose is to try out some ideas and improvements.

Roadmap

be aware that this is not the roadmap of the "official" mod, but topics I want concentrate on

  • Implement Pathfinding Constraints

Details

Pathfinding Constraints

Right now, AD tries to always find the shortest path based on distance. However there is no possibility to limit certain routes to specific constraints. For example small ways should be passable by small vehicles but maybe not by your big combine. It would be nice to be able to somehow limit pathfinding based on your vehicle metadata like turning circle or length or at least just by it's type.

First approach is to extend the options for MapMarkers in the AutoDrive_config.xml with very simple true/false options.

<mm3>
   <id>11.000000</id>
   <name>Restrictive Map Marker</name>
   <group>All</group>
   <restriction>true</restriction>
</mm3>

Later this should be way more configurable then just "block everything from passing".

Clone this wiki locally