Buy It

It's out.




Latest Trailer

Throw a wrench, change the galaxy.




Screenshots

Mostly nebulae.



Platforms

Windows, dunno about others



Team

Design, Code, Writing

Tom Francis

Art

John Roberts

Code

John Winder

Music

John Halpart

Chris Harvey

Site

Tom Francis

John Roberts

Mailing List

Get on our mailing list so we can tell you when we release a new game.

Twitter

We're @HeatSig on there.

Randomly Generating Simple Spaceships In Heat Signature

The way Heat Signature randomly generates its ships at the moment is very basic – I’m new to random generation, and I don’t polish or improve things until all the other systems are in.

Its process for the ship’s shapes is probably obvious from the video:

  • Pick a random ‘length’ in ship modules
  • That many times:
  • Pick a random ‘width’ for this row
  • Generate that many modules
  • Center them along the ship’s middle

So they’re all symmetrical, and contain no gaps, holes or curves – conventional. You still get some interesting oddities – like the rare very wide ship that’s only one module long – but the pattern is pretty obvious.

For the layout of the internal rooms and corridors, I tried the same approach: just the simplest thing I could think of that would always work. But I think it’s harder to see the pattern in the results. Even knowing the rules, I still find layouts that surprise me.

Heat Signature Corridors

Curious about this, I asked from the game’s Twitter account if anyone could guess what the rules were from the video. I got lots of good suggestions, and one or two got an individual rule right, but none that I saw got the whole process. Here’s what it does:

  • When building a row, always add a doorway to the next module in the row.
  • Pick a random module position in this row that’s not empty in the next row, and make a doorway between the two.
  • If a module connects exactly two modules in a straight line, it’s a corridor. Otherwise, it’s a room.

This ensures every room is connected to every other room, so it’s never impossible to get somewhere, but also makes it unlikely that the route will be direct. It makes a lot of wildly unrealistic corridor layouts, but I was surprised at how varied they felt.

Heat Signature Corridors 2

I didn’t plan it this way, but it’s also quite similar to a Spelunky level laid down flat: a Spelunky level is a series of floors made up of chunks, and a randomly selected chunk will lead down to the next floor. It doesn’t guarantee every chunk is connected to every other, though, only the ‘leading down’ chunks.

I’ll change this a fair bit as I go – once guards are harder to get past, and there’s more incentive for stealth, I’ll open up multiple routes between rooms to give you more options.

I’ll also make the ship generation itself more varied, possibly by faction. At the very least I want ‘junk’ type ships that are cobbled together from old wrecks and not at all symmetrical. It’d also be interesting to have a type that are rotationally symmetric, or have a width-wise axis of symmetry instead. And I can vary module width and length independently, which’ll change the whole shape, look and feel both inside and out.

But it’s not worth tinkering with that stuff yet – after IndieCade, my next job will be to put ship systems in, so that rooms relate to ship capabilities and you can sabotage them. Once ship functions are tied to their layouts, there may be implications for ship generation I haven’t seen coming. More importantly, it’ll be a lot more fun to mess around with.

More ,

TylerFunk:

I was gonna say that the ships reminded me of Spelunkys level generation. This looks really awesome already! Have you got an idea of the graphics yet, or has that not come up yet? What are you using to make this btw, GameMaker, Unity, or something else?

Tom Francis:

Cheers! See: http://www.pentadact.com/2014-02-07-the-heat-signature-faq/ !

TylerFunk:

Haha yeah just saw that about 5 minutes after I posted. Good luck on your games!

Robson:

Very excited about this game and it’s interesting to read the behind-the-scenes explanations of how it’s being built. So-much-so that I converted your rules into code to make a spaceship generator. Here’s an output from it:
http://www.flickr.com/photos/_robson_/12391738953/

I Ain't:

That’s rather interesting. I had to re-read your room-generating rules a few times before I realized that the space in the next row not being empty meant there was physically part of the spaceship there, and not that there was already a room there. Are there any rules on where the airlock is placed, besides the obvious “next to a room”?

Tom Francis:

Ah, yeah. I guess I consider every module of the ship ‘non empty’ since the game treats a corridor as a type of room.

Airlocks: heh, they’re… always on the left. The row is randomly selected, but they’re always on the same side because it was sliiightly less code. Right now I can’t foresee a problem with that, but it’s easy to change if it does cause some unwanted trend.

superslug:

looking at the top picture I am reminded of captain forever, was that in your head at all when you were making this?

Procedural Generation Tutorials – Getting Started |:

[…] http://www.pentadact.com/2014-02-07-randomly-generating-simple-spaceships-in-heat-signature/ […]

Improving Heat Signature’s Randomly Generated Ships, Inside And Out - a post on the Heat Signature site:

[…] I talked about how I built that system at the time, and it’s really simple: […]