"Procedural Zoom," my procedural generation approach compared to other methods

Started by Legend, Apr 05, 2020, 05:05 PM

previous topic - next topic

0 Members and 1 Guest are viewing this topic.

Legend

A long while back when No Man's Sky was coming out we talked a lot about procedural generation. Would be cool if we could talk about it again.

There are 4 basic types of procedural generation, plus the "new" one I'm working on.

#1 Noise
Think Minecraft and NMS terrain. A random infinite pattern is used over and over to make the world. It's very fast and can get really good looking results when done right, but it tends to have a specific feel to it.


#2 Parameters
Lots of numbers are used to describe the object and then said object is generated. Character creators are a great example of this. It can be used for pretty much anything and allows the results to be "searched." Great method for specific things.


#3 Part Swapping
Real easy method of just assembling premade parts. Lots and lots of games use this method to make levels that are random but not that random. Warframe, God of War 2018, etc. This method also works great for buildings and objects. It's essentially LEGO.


#4 Simulation
Simulating erosion, simulating society, simulating plant growth, etc. This is used a lot during game development to speed things up for artists, but it is also used real time in games.



#5 Procedural Zooming
This is the method I've been working on for a few years. Zooming doesn't specifically refer to camera movement, but instead refers to how it works. A basic design is generated and then the system zooms in to add details. After that it can zoom in to add more details over and over again. This is like using AI to increase a picture's resolution over and over again.

As a result, it always looks good both at the macro and micro scale. With planets this means they can look great in space and on the surface. With worldbuilding this means individual battles fit within larger wars.

It also works as a good middle ground between the speed of noise generation and the power of other methods.


I use all 5 methods in The Forged Kingdoms. Noise for local biomes, parameters for plants and animals, parts for cities, simulations for npcs, and zooming for plant gen. There is lots of overlap and in practice most methods use other methods too.

kitler53

yeah, procedural generation has the potential to make game development cost (and time) stop being so astronomical.  ..but as a gamer i still hate them. 

you can always feel that the game was procedurally generated.  repetition becomes noticeable fast.  game play always feels a bit off compared to hand crafted environments.  to be frank,.. procedural games are generally more buggy which is probably is a reflection of play testing not really being able test what the player will play.


Featured Artist: Vanessa Hudgens

Legend

Apr 06, 2020, 05:45 AM Last Edit: Apr 06, 2020, 05:48 AM by Legend
yeah, procedural generation has the potential to make game development cost (and time) stop being so astronomical.  ..but as a gamer i still hate them.

you can always feel that the game was procedurally generated.  repetition becomes noticeable fast.  game play always feels a bit off compared to hand crafted environments.  to be frank,.. procedural games are generally more buggy which is probably is a reflection of play testing not really being able test what the player will play.
I think a large problem is that good procedural generation is harder to spot.

For example Horizon Zero Dawn has more procedural generation than God of War, yet most people just think of gow's procedural dungeon.

Horizon's GPU powered procedural object placement is something most players miss.



Also "human in the loop" procedural generation is just so much cheaper for 99% of games so why would they invest in the full thing? Take Spore for example. They made a parameter based planet generator that produced some really good and really bad planets depending on the numbers put in. Instead of spending the money to improve this, they just picked a few thousand good ones and put their info in a list. The game only shows planets that a human has approved.


I hope I can avoid the pitfalls of most procedural games. I think my cities may end up feeling a bit procedural but I'm pretty confident in my natural environments.



Legend

I'm almost ready to show off some demos but on the lighter side, I think I've come up with a better name.

Nested Procedural Details



Not to be confused with the other NPD.