Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Algorithms

Runeforge provides several common algorithms used in roguelike development.

  • Field of View (FOV): Calculate which tiles are visible to the player.
  • Pathfinding: Find the shortest path between two points (A*, Dijkstra).
  • Map Generation: Algorithms for procedural dungeon generation.
  • Noise: Procedural noise generation (Perlin, etc.).