One feature I was interested in was making an AI which is capable of driving a vehicle.
The main challenge that type of AI creates is that Unity's default nav mesh agent does not work because there is no sense of a turning radius
This means some parts of the NavMesh API can be used, but the pathfinding needs to be done using custom code. Additionally, the approach I am looking to use should work in realtime. It should also be possible for multiple vehicles to simultaneously exist without slowing down the game's framerate.
In order to perform the pathfinding, I decided to employ hybrid A*. This means that the pathfinding takes in the parameters of a vehicle and can generate subsections of a route using the vehicle's parameters as opposed to just walking through the nav mesh as it would if it was a standard "nav agent".
I was able to make this work by employing hybrid A* from one point to another and using BFS to expand the search depth. One challenge is that the number of routes evaluated needs to be greatly reduced because it would create performance issues to evaluate a large number of routes in a single frame.
The results look like this:
The lines in the image represent:
At runtime, the vehicles also use a hierarchical state machine to traverse the routes. The routes can also be cached so that as one route is completed, subsequent substates can reuse the same path without needing redundant pathfinding requests.
Future iterations of this could include features such as detecting when a vehicle is stuck and creating an algorithm to "unstuck" the vehicle. Secondarily, accounting for the vehicle's velocity during pathfinding's evaluation of route options could help avoid picking routes which require driving slowly in reverse for a long time/attempting to drive in reverse while already driving forward at a high velocity.