top of page

Puzzle Generation

The most important element in Darknet’s gameplay is the hacking puzzle. The puzzles aren’t the only things you have to think about (there’s a lot of strategy on the “network layer” of gameplay as well), but every time the player hacks a network, they’ll have to complete at least a couple of puzzles to win. That’s why it’s so important to make every puzzle unique and challenging. To this end, every puzzle in Darknet is procedurally generated to create a challenge for which not even the designer knows the answer. I’ve written a lot about the puzzle mechanics as they’ve evolved, but here’s a short video if you need a quick idea of how they work.

The puzzle generation algorithm takes place in two stages. First, I create the “skeleton” of the puzzle, and then I populate it with antivirus programs and other obstacles. The skeleton starts out as a simple rectangle, with the dimensions determined by the size of the node:

puzzle1.png

That’s not a very interesting shape, visually or strategically, so the next step is to spice it up. I have two methods of doing this. First, I can carve out sections of the puzzle based on a premade image, like this one:

puzzle3.png
puzzle2.png

I usually cut out some sort of border, and I cut out one or two shapes from the interior as well in the hope of adding some interesting strategic twists.

There’s another, more randomized and organic technique for changing the image’s shape, though. Some of the time, I’ll use a classic “cave generation” algorithm, of the same sort used in games like Minecraft. Essentially, this technique starts by randomly removing sections of the skeleton, then adjusting it over and over again to clump the empty spots together into recognizable “caves”. After much tweaking, I ended up with an algorithm that produced some pretty interesting and randomized shapes:

puzzle4.png

That provides a good level of variety on the wider scale, but there are still a lot of boring open spaces. To spice it up more, I then cut out a bunch of spaces in the interior of the skeleton in an attempt to add some more interesting strategic texture:

puzzle5.png

At this point, I remove any disconnected “islands” and the skeleton is left in pretty good shape. Sometimes this process cuts too much out of the skeleton, and there’s almost nothing left, but in that case, I just rerun the algorithm until the puzzle skeleton is acceptable.

The next major stage of puzzle generation is to add the antivirus programs. These are the basic obstacles in the puzzle. However, critically, they’re also an important resource for the player, since they serve as the only locations where the player can inject viruses. If there were no antiviruses at all, the puzzle would be impossible to beat.

In the end, there are really just three variables that I change to control the difficulty of the puzzle. First, I adjust the density of the antiviruses (more dense = more difficult). Second, I adjust the minimum distance of an antivirus from the center (closer = easier). Lastly, I adjust the number of “unhackable” antivirus programs that surround the core (fewer = easier), which probably has the biggest effect on the difficulty. The end result looks something like this:

puzzle6.png

When the player has gained more skill and has started to take on greater challenges, there are a few more twists that I introduce into the game. They aren’t given official names in-game, but in the code I refer to them as “death mines” and “circuits”. These special elements add some extra twists to the gameplay. Like the antiviruses, they double as obstacles and resources for the player, though most of the time the resulting puzzle is more difficult:

puzzle7.png

This algorithm works quite well in practice, and its greatest feature is that it can scale up to create puzzles of enormous size and complexity:

puzzle8.png

My only worry about the puzzles is that, although they work well, they might monopolize the player’s time and pull focus away from the other interesting parts of the game. I see the puzzles as one of three main layers of gameplay, but if you spend 90% of your time solving them, the game as a whole might get boring before you can enjoy the rest.

Still, in the end, I’m quite proud of the puzzles. I’ve been solving these puzzles for a long time, and I still find it an interesting challenge. Hopefully, new players will have the same feeling, and the puzzles will serve as a strong foundation for the experience as a whole.


Featured Posts
Recent Posts
bottom of page