7 Day Roguelike 2016: Day 1

It’s one day in. Here’s my progress so far!

screenshot

Completed features (from the plan I posted yesterday):

Guns have a “spread” parameter that determines how quickly bullets spread out. This screenshot was taken directly after firing a shotgun at the zombie. You can see the bullets in flight: gun-fired

We hit the zombie but we also hit the hull. The red tint indicates that that section of the ship is currently being vented into space. Venting takes place over several turns, during which things are sucked towards the hull breach. Note that items and characters have moved since the first screenshot. This was the most complicated mechanic to implement. It uses dijkstra maps to determine which way entities move. aftermath

After all the air has vented from a section of the ship, it changes to blue tinted and things stop getting sucked out. Eventually being it vacuum will drain oxygen from your suit, but this feature is not implemented yet. vacuum

If you open a door of a pressurized section of the ship that’s facing vacuum, that section starts venting. open-door

If you make it inside the venting room and close the door, atmosphere returns. closed-door

Coming soon:

Additionally, as this needs to be a game and not just a tech demo, I’m also planning on implementing:

The most interesting bug I’ve encountered so far is when shooting the hull with a machine gun, if the hull is breached while bullets are still leaving your gun, there’s a chance you will be sucked towards the hull, in front of bullets that haven’t been fired yet, resulting in you getting shot by your own bullets.