Tiles to Curves: Fun With Voronoi Graphs (part 1)

Published July 10, 2019 by Joris Dormans, posted by GameDev.net
Do you see issues with this article? Let us know.
Advertisement

titleImage.png

This is a blog about our development of Unexplored 2: The Wayfarer's Legacy. This game features state-of-the-art content generation, generative storytelling, emergent gameplay, adaptive music, and a vibrant art style.

 

The content generator of Unexplored 2 generates tile maps. Typical output looks like this (you can read more about our level generator here?

roadTilesCropped.png

 

These tile maps are stacked, using different tiles to indicate tiles ground types (grass or dirt in this example) and various decorations. In this case there are some bushes (large green circles), Rocks (black circles), plants (small green circles), flowers (white circles), and decorative textures (grey squares). There also are special tiles that indicate gameplay data such as the spawning point marked with an 's'. In addition, tiles can be tagged with additional information such as elevation or special subtypes.

Tile maps are a convenient data structure for generators to work with. But they also are quite rigid, and often the grid has a tendency to be visible in game. Yet, in our case when the data is loaded into the game and assets are placed the result looks like this:

Complete.png

 

I like to think we did a pretty good job at hiding the tiles, and here's how we did it.

 

Voronoi Magic

The trick is that individual tiles are matched to the cells in a Voronoi diagram. Which can be used to generate shapes that are much more natural looking. A Voronoi diagram is created from seeding a plane with random points and partitioning off cells so that each point in the plane belongs to the cell that corresponds to the closest seed point. There are quite a few interesting applications of Voronoi diagrams for procedural content generation (PCG).

A typical Voronoi diagram created from a random but fairly even distribution of seed points looks something like this:

Voronoi.png

 

For Unexplored 2 we use a different type of distribution of seed points. To start with, we seed one point for each tile. That way we are certain every tile in the tilemap can be mapped to one cell in the Voronoi diagram.

Now, if you place the seed points in the middle of each cell you end up with straight grid that looks exactly like a tile map (for this image and the others below I also made a checkered version where half of the tiles are rendered yellow so you can see the patterns a little bit better):

Straight.pngStraightCheckered.png

 

A simple way of making this look better is to simply randomize the position of each seed point. When shifting the points it helps to make sure the point does not move outside its original tile.

The result looks something like this:

Randomized.pngRandomizedCheckered.png

 

Better, but very noisy, and you don't get nice flowing lines in this way. It can be improved by 'relaxing' the Voronoi diagram (a standard technique associated with Voronoi diagrams I won't go into here). But it will always stay a little noisy, and it is difficult to effectively suggest shapes on a scale that surpasses the scale of the individual tiles.

To get around this you need to do is to move the points around smarter than simply using random displacement. Different types of movement have very different effects. For example, using Perlin noise can create interesting curved tilemaps. Or you can turn the whole thing into hexagonal shaped tiles simply by moving every other row of seed points to the left:

 

HexGrid.pngHexGridCheckered.png

 

The real breakthrough comes when we start moving around the seed points in particular patterns to create rounded corners. The first step of this process is already taken inside the level generator. Corners are detected between ground types and the corner tiles are marked with different shapes, indicating how they should be deformed to generate a better-looking environment:

roadGroundTilesCropped.png

 

In this case, elevation differences also cause corners to appear in the tilemap. That's the reason you see the extra rounded corners in the grass in the top right and bottom left where slopes were generated.

The game uses this information to displace the seed points of the Voronoi graph. Each rounded corner shifts the location of the seed point (see image below). In addition, it also shifts the seed points of its four orthogonal neighbors. This process is cumulative; seed points can be shifted multiple times if they are near several corners. However, after all displacement are processed, the seed points are randomized a little (about 10% of the width of a tile in either direction), and the final displacement is restricted to a maximum of 40% of the width of a tile.

displacement.png

 

The result is already pretty astonishing:

Displaced.pngDisplacedCheckered.png

 

But we're not there yet...

 

Smart Decoration

The overall shape is better, but the edges are still very straight and somewhat ragged in appearance. The way we cover that up is by using curved assets placed along the edges where the colors are different. The real trick, however, is that one curve is often placed over two edges, using their relative angles to determine the direction of the curve.

borders.png

 

The result looks like this:

DisplacedBorders.png

 

Next, we use 3D assets to give extra texture to the cliffs:

DisplacedBordersCliffs.png

 

And finally, we add the other assets to fill out the level. The placement of these assets is dictated by the level data generated earlier, and in general follows a simple philosophy. We use smaller assets to surround larger ones creating natural and nice transitions. Of particular note is the rocks added to the bottom of cliffs to create more variety and to visually dampen the vertical slopes dictated by the gameplay:

 

Local Variation

The corners are not the only type of displacement we use. For example, near artificial structures (such as the ruined walls below) you want the edges to be straighter:

ruinsComplete.png

 

In our system, this effect is easy to achieve. We simply introduce a different displacement rule that makes sure that tiles featuring artificial structures are not displaced. The generator uses smaller squares to mark these tiles and the game simply makes sure that all displacements are ignored:

ruinTilesCropped.pngruinGroundTilesCropped.png

 

If you look at the ground you can clearly see how specific areas can be made straight while others curve more naturally:

ruinsGround.png

 

Isn't that neat?

There are a few other rules you can use easily mix in with this technique. For example, we occasionally force the tiles into a hexagonal pattern to make sure narrow paths are wide enough to be traversed. And I am sure we will find other uses for other patterns as well.

This is one of the many reasons I really love Voronoi diagrams. Another time I will write about how we use them to generate and decorate Unexplored 2 world maps.

 

If you are interested in learning more about the game please check us out on Fig.co or on Steam.

 

Note: This article was originally published on the Ludomotion website, and is reproduced here with the kind permission of the author.

Cancel Save
20 Likes 4 Comments

Comments

KoMaXX

That was very enlightening, thank you!

July 12, 2019 10:48 AM
rexgnu

Thank you, inspiring to read!

July 13, 2019 05:21 AM
Mussi

Absolutely love this kind of stuff, thank you for sharing!

August 09, 2019 10:32 AM
Crazy Coder NJ

Big thanks to you Joris for your wonderful article. It's so interesting and your words with the pictures to illustrate it's a great job!

Congrats and I hope to read more from you in future!

August 15, 2019 01:03 AM
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!
Advertisement