Navmesh Cutting

Navmeshes in the A* Pathfinding Project have been awesome when you have static worlds, but often very low-performing when any kind of dynamic updates are required.
The experimental version which has been released for a while (but now superseded by the beta version) improves that by enabling tiled recast graphs so that individual tiles can be recalculated.
This is however quite slow as well. It works, but it’s not something you want to do without player interaction, and definitely not several times per second.

So what I have been working on is to enable navmesh cutting. What navmesh cutting does is to take a valid navmesh (for example the one generated at start by a recast graph), punches holes in it to make room for dynamic obstacles (boolean operations), fixes it up a bit (fixing triangles not fulfilling the delaunay criteria) and then puts it back to be used for pathfinding. And it’s a lot quicker than recalculating a tile using recast.
The downside is of course that it only works for obstacles, not for something like moving bridges (or whatever) which must add new ground for the player to pathfind on. Luckily, you most often have these kinds of subtractive obstacles that are dynamic.

Enough words, here is a video:

This feature will be available in the next release.

8 comments

  1. Ivan Garcia FIlho says:

    Hi Aron I purchased a long time ago “Map magic” to generate an infinite desert with lots of randomly scattered debris and some buildings … Node AI and APex Path didn’t their work and i just wated my money …

    I have series of 2 kinds of mobs :
    1 – Flying drones;
    2 – Mechanic spiders;

    I would like to know :
    1 If it’s possible to calculate for spiders their way through an infinite map like “map magic” to chase and flee from protagonist …
    2 If it’s possible to handle my flying drones with your AI to help them chase / flee from protagonist and even avoid pillars, rocks and floating rocks;

    tks

  2. Draco18s says:

    I wonder if this is what might get a project I’ve been working on to have a little better pathfinding.

    I generate a map completely procedurally at runtime, but I haven’t found a package that offers run-time nav *mesh* generation. My maps don’t change during play, but getting that initial pathfind map up has been a real kicker. Right now I’m running off a hand-build A* + JPS algorithm (its still got a few bugs) but I’d really like a navmesh.

      • Lexie says:

        Are there plans to add this functionality to Navmesh Graphs?
        If not, some functions to create Recast Graph manually would be nice.

      • Lexie says:

        Amazing work! took me a while to figure out how to manually voxelize the world.
        We already have a voxelize representation of our geometry that is more accurate then voxelizing the collision mesh. Using precomputed voxels means it only takes 33ms rather then 300-400ms to generate the recast gragh.

        Here is a before after of our new pathfinding graph.
        http://hitboxteam.tumblr.com/image/68995212282

        Thanks so much for this amazing package!

    • Aron Granberg says:

      Hi

      C#
      No, not like that one. That recalculates the tiles, I only cut the tiles using boolean operations and fix them up. It is more limited, but faster. Recalculation of tiles is also possible in the system, but it is slower. Unfortunately C# is a bit too slow to make recalculation of tiles feasible in real time (it is not extermely slow though, just too slow for real time).

Comments are closed.