• Register

Reactor Heart’s a sandbox multiplayer game. The players build and use ships to explore and conquer territories within a boundless universe.The Gathering of precious resources becomes essential to create incredible spacecrafts, able to defeat the enemy’s fleet. At the same time, players will have to cooperate with their guild mates and fight for the control of planets and whole star systems. A wide range of creatures enter the scene to assist in your path to conquer the universe. Create the ship of your dreams and build it up using turrets , lasers and many other weapons. Design its controls or load custom scripts to create unique behaviours. In short, the construction and use of the ships is up to your imagination.

Report RSS How the procedural map generation works in Reactor Heart

How to proceduraly generate a huge 2D universe in real time.

Posted by on - Intermediate Mapping/Technical

This article sums up what I've learnt so far developing the procedural map generation system of Reactor Heart. What I expose here should not be considered the last word on the topic since I'm still looking for the way to enhance the system. In the beginning, I made lots of rookie-mistakes and learnt a lot overcoming them; I hope it proves useful for you and If anyone knows, I'll gladly accept any suggestion to make my system better.

When I started developing Reactor Heart I realised immediately that I had to create an infinite universe able to automatically expand itself. With a Restricted world I wouldn't have made so far so I started my research gathering information on many articles and white papers about procedural generation.

The first idea I came up with was create a giant sector generator to allocate planetary systems, asteroids, and many other things. So I began to code function to create the planetary system basic elements: planets, asteroids, moons, minor satellites, etc. The planets were circles with a variable length radio, the moons were the same but much smaller and for the asteroids I used and algorithm to create an outline with a logic and more or less round shape.

PlanetWithMoon Asteroid AsteroidPlanet

With those elements I defined the soon to be planetary system generation in which planets were located in determined orbits round a centre (Where I'd set a Star). They were defined with a random angle and distance from the center, restricted within a reasonable ranges to set them coherently.

Generation

The generation system worked as expected with the exception of four issues:

  • The whole process lasted 15 seconds
  • The shapes of the asteriods didn't match what I had in mind.
  • The generation of each asteroid took a lot of time using the algorithm I designed.
  • Due to the random location of the asteroid, lots of blank spaces might occur.

For a limited map, 15 seconds are trifle since the generation is done once. For limitless universe where the users are expected to travel for hours that's unacceptable. Moreover, the asteroids shape was kind of rhomboid and the system needed a lot of time to generate them.

The first issue I mended was the asteroids', which was the most obvious one. I created an asteroids' editor in which I could pre-design a set of asteroids and save them to load them later in the game. Without the asteroids generation equation, the loading time improved enormously. It did even better when I added pre-processing while exporting the files in the editor. In addition, the asteroids' shape were more coherent and, when combined, bigger asteroids with cool shaped were generated.

Despite fixing the asteroids issue, the loading time was still not good so I had two possibilities:

  • Work on revamp the algorithm by means of parallelism.
  • Lessen the generation system complexity.

In systems where Real Time generation was mandatory, they reduced the "unit" size and hence, reducing the amount time necessary for the generation. At first, my "unit" was the sector size and to follow this philosophy I decided to make it smaller. The sector would be an space of 6x6 chunks (the planetary system was 50x50) that might be occupied by a planet, a planet with some moons or asteroids, a cloud of asteroids, a nebula, a Star,etc.

The system worked wonderfully. And I managed to reduce the generation time to a mean of 0.007-0.1 seconds using this new method (and with some low-level optimizations in the process ).
Tip: The use of profiling tools like gprof is very helpful to seek those functions that do most of the calls and see which part of the code you should try to optimize.

SectorSystem

I haven't parallelized the system yet though I've designed it with an eye to the future to make it easier for subsequent versions to integrate it.And that has been my experience so far.

Original at Reactorheart.com

Post a comment

Your comment will be anonymous unless you join the community. Or sign in with your social account: