A Thread about Navigation Mesh and Sunset Overdrive...

Published August 04, 2019 by Jonathan Adamczewski, posted by GameDev.net
Do you see issues with this article? Let us know.
Advertisement

This thread on Navigation Meshes in Sunset Overdrive was posted by Jonathan Adamczewski (@twoscomplement on Twitter). You can view the full original thread at https://twitter.com/twoscomplement/status/1119362111556083712

Navigation mesh encodes where in the game world an agent can stand, and where it can go. (here "agent" means bot, actor, enemy, NPC, etc). At runtime, the main thing navigation mesh is used for is to find paths between points using an algorithm like A* https://en.wikipedia.org/wiki/A*_search_algorithm.

 

In Insomniac's engine, navigation mesh is made of triangles. Triangle edge midpoints define a connected graph for pathfinding purposes. In addition to triangles, we have off-mesh links ("Custom Nav Clues" in Insomniac parlance) that describe movement that isn't across the ground.

These are used to represent any kind of off-mesh connection - could be jumping over a car or railing, climbing up to a rooftop, climbing down a ladder, etc. Exactly what it means for a particular type of bot is handled by clue markup and game code. These links are placed by artists and designers in the game environment, and included in prefabs for commonly used bot-traversible objects in the world, like railings and cars.

Navigation mesh makes a certain operations much, much simpler than it would be if done by trying to reason about render or physics geometry. 

Our game work is made up of a lot of small objects, which are each typically made from many triangles. Using render or physics geometry to answer the question "can this bot stand here" hundreds of times every frame is not scalable. (Sunset Overdrive had 33ms frames. That's not a lot of time.)

It's much faster to ask: is there navigation mesh where this bot is? Navigation mesh is relatively sparse and simple, so the question can be answered quickly. 

Also, we pre-compute bounding volumes for navmesh, to make answering that question even faster. Also, if a bot was standing on navmesh last frame, it's even less work to reason about where they are this frame.

In addition to path-finding, navmesh can be useful to quickly and safely limit movement in a single direction. We sweep lines across navmesh to find boundaries to clamp bot movement. e.g. a bot animating through a somersault will have its movement through the world clamped to the edge of navmesh, rather than rolling off into who-knows-what.

(If you're making a game where you want bots to be able to freely somersault in any direction, you can ignore the navmesh ?)

Building navmesh requires a complete view of the static world. The generated mesh is only correct when it accounts for all objects: interactions between objects affect the generated mesh in ways that are not easy (or fast) to reason about independently.

Intersecting objects can become obstructions to movement. Or they can form new surfaces that an agent can stand upon. You can't really tell what it means to an agent until you mash it all together. To do as little work as possible at runtime, we required *all* of the static objects to be loaded at one time to pre-build mesh for Sunset City. We keep that pre-built navmesh loading during the game at all times. For the final version of the game (with both of the areas added via DLC) this required ~55MB memory.

We use Recast to generate the triangle mesh, and (mostly for historical reasons) repack this into our own custom format.

Two meshes, one for "normal" humanoid-sized bots (2m tall, 0.5m radius) and one for "large" bots (4.5m tall, 1.35m radius). Both meshes are generated as 16x16m tiles, and use a cell size of 0.125m when rasterizing collision geometry. There were a few tools used in Sunset Overdrive to add some sense of dynamism to the static environment:
 

navmesh_sunsetoverdrive_2.jpgnavmesh_sunsetoverdrive_3.jpg

 


 

 

 

 

 

For pathfinding and bot-steering, we have runtime systems to control bot movement around dynamic obstacles. Also, for custom nav clues, we keep track of whether they are in use, to make it less likely that multiple bots are jumping over the same thing at the same time. This can help fan-out groups of bots, forcing them to take distinctly different paths.

Since Sunset Overdrive, we've added a dynamic obstruction system based on Detour to temporarily cut holes in navmesh for larger impermanent obstacles like stopped cars or temporary structures.

Relevant tweet:

We also have a way to mark-up areas of navmesh so that they could be toggled in a controlled fashion from script. It's less flexible than the dyanamic obstruction system - but it is very fast: toggling flags for tris rather than retriangulation.

I spoke about Sunset Overdrive at the AI Summit a few years back - my slide deck is here: https://www.gdcvault.com/play/1022274/Sunset-City-Express-Improving-the.

Here's some navigation mesh, using the default in-engine debug draw.

navmesh_sunsetoverdrive4.jpg

What are we looking at? This is a top-down orthographic view of a location in the middle of Sunset City. The different colors indicate different islands of navigation mesh - groups of triangles that are reachable from other islands via custom nav clues. Bright sections are where sections of navmesh overlap in the X-Z plane.

I literally just had a coworker looking over my shoulder ask "Is that Tron" ?

There are multiple visualization modes for navmesh. Usually, this is displayed over some in-game geometry - it exists to debug/understand the data in game and editor. Depending on what the world looks like, some colors are easier to read than others. 

navmesh_sunsetoverdrive_5.jpg

navmesh_sunsetoverdrive_6.jpgnavmesh_sunsetoverdrive_7.jpgD4jaSIPUwAAWfVb.jpg

 

 

 

 

 

 

 

 

 

 

 

 

 

 

The second image shows the individual triangles - adjacent triangles do not reliably have different colors. And there is stable color selection as the camera moves, almost. :) Also, if you squint, you can make out the 16x16m tile boundaries, so you can get a sense of scale.

A map of the entirety of Sunset City.

navmesh_sunsetoverdrive_9.jpg

 

(These images are being recompressed, which is reducing the detail & changing the colors - I'll upload some pngs sometime later)

"The Mystery of the Mooil Rig" DLC area

navmesh_sunsetoverdrive_10.jpg

"Dawn of the Rise of the Fallen Machine" DLC area

navmesh_sunsetoverdrive_11.jpg

Referencing the comments from up-thread, these maps represent the places where agents can be. Additionally, there is connectivity information - we have visualization for that as well.

This image has a few extra in-engine annotations, and some that I added.

navmesh_sunsetoverdrive_12.jpg

The purple lines represent custom nav clues - one line in each direction that is connected. Also marked are some railings with clues placed at regular intervals, a car with clues crisscrossing it, and moored boats with clues that allow enemies to chase the player. Also in this image (and nearly entirely lost thanks to recompression) are very faint lines on the mesh that show connectivity between triangles.

When a bot is failing to navigate, it can be useful to visualize the connectivity that the mesh thinks it has. The radio tower where the fight with Fizzie takes place.

navmesh_sunsetoverdrive_14.pngnavmesh_sunsetoverdrive_13.jpg

 

 

 

 

 

 

 

 

 

 

 

 

The roller coaster

navmesh_sunsetoverdrive_15.jpgnavmesh_sunsetoverdrive_14.jpg

 

 

 

 

 

 

 

 

 

 

 

The roller coaster tracks are one single, continuous and complete island of navmesh.

That's all I've got for now - hit me up if you have any questions!

navmesh_sunsetoverdrive_1.png

Cancel Save
0 Likes 0 Comments

Comments

Nobody has left a comment. You can be the first!
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!
Advertisement