Contour bombing cave generation algorithm

Intro


To generate procedural caves and caverns, there are not so many algorithms out there that a programmer can use in his wide array of tools. Most developers use a cellular automata to generate complete cavelike levels, which is relatively nice algorithm that outputs decent layouts. The second method is the random walk method, a fairly…