• gridbugs
  • About
  • Tags
  • External Links
  • Daily Posts
  • Roguelike Tutorial 2020
  • Itch
  • Github
  • first
  • prev
  • next
  • last
  • 7 Day Roguelike 2016: Pathfinding

    2016-03-09 in gamedev roguelikes 7drl

    The most notable change from tonight is that I turned on pathfinding for NPCs for the first time. Up until now they had been stationary, and could be injured or killed, or affected by vacuum, but could never observe the world or take actions. Enabling AI is scary because it greatly increases the amount of work the computer is doing between human turns. The vision system is now running once per NPC turn as well as the player. Then there’s the additional cost of pathfinding for each NPC. I use Dijkstra maps for pathfinding which are explained in detail on roguebasin. This post is about solving a performance problem introduced by all the extra characters.

    Read more...
  • 7 Day Roguelike 2016: Procedural Generation

    2016-03-08 in gamedev roguelikes 7drl

    This is my second attempt at a procedurally generated space ship. The first attempt involved generating the hull first by starting with a large rectangle and stripping smaller rectangular pieces away until I got something roughly hull-looking. I would then attempt to fill the hull with rooms. Adding rooms to a preexisting hull proved messy and prone to difficult edge cases.

    Here’s what it looked like at the point where I gave up: old

    Read more...
  • 7 Day Roguelike 2016: Day 1

    2016-03-06 in gamedev roguelikes 7drl

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

    screenshot

    Read more...
  • 7 Day Roguelike 2016: Plan

    2016-03-05 in gamedev roguelikes 7drl

    The 7 Day Roguelike Challenge is a game jam where participants make a roguelike in 7 days. This year I’m making a game called “Skeleton Crew” where you fight undead things on a spaceship. I’ll post updates to this site as I make progress.

    Read more...
  • first
  • prev
  • next
  • last
© 2024 gridbugs.org